VTK  9.4.20241108
vtkHDFUtilities.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
9#ifndef vtkHDFUtilities_h
10#define vtkHDFUtilities_h
11
12#include "vtkDataArray.h"
13#include "vtkHDF5ScopedHandle.h"
14#include "vtkIOHDFModule.h" // For export macro
15#include "vtkLogger.h"
16#include "vtkPolyData.h"
17#include "vtkSmartPointer.h"
18#include "vtkStringArray.h"
19#include "vtkType.h"
20
21#include <array>
22#include <string>
23#include <vector>
24
25VTK_ABI_NAMESPACE_BEGIN
26
27#if VTK_ID_TYPE_IMPL == VTK_LONG_LONG
28#define VTK_ID_H5T H5T_NATIVE_LLONG
29#elif VTK_ID_TYPE_IMPL == VTK_LONG
30#define VTK_ID_H5T H5T_NATIVE_LONG
31#elif VTK_ID_TYPE_IMPL == VTK_INT
32#define VTK_ID_H5T H5T_NATIVE_INT
33#else
34#error "No HDF5 type available for vtkIdType"
35#endif
36
37namespace vtkHDFUtilities
38{
39const std::string VTKHDF_ROOT_PATH = "/VTKHDF";
40
41/*
42 * The number of PolyData topologies saved in vtkHDF format
43 */
44constexpr std::size_t NUM_POLY_DATA_TOPOS = 4;
45
46/*
47 * A vector of the topology names that are saved in vtkHDF
48 * Can be used for the name of the HDF group only
49 */
50const std::vector<std::string> POLY_DATA_TOPOS{ "Vertices", "Lines", "Polygons", "Strips" };
51
52/*
53 * Attribute tag used in the cache storage to indicate arrays related to the geometry of the data
54 * set and not fields of the data set
55 */
56constexpr int GEOMETRY_ATTRIBUTE_TAG = -42;
57
58/*
59 * How many attribute types we have. This returns 3: point, cell and field
60 * attribute types.
61 */
62constexpr static int GetNumberOfAttributeTypes()
63{
64 return 3;
65}
66
67/*
68 * How many attribute types we have as data array. This returns 2: point and cell.
69 */
70constexpr static int GetNumberOfDataArrayTypes()
71{
72 return 2;
73}
74
75/*
76 * Make sure we replace any illegal characters in the objectName (slash, dot) by an underscore, as
77 * they would create a HDF5 subgroup.
78 */
79VTKIOHDF_EXPORT void MakeObjectNameValid(std::string& objectName);
80
81/*
82 * Returns the id to a HDF datatype (H5T) from a VTK datatype
83 * Returns H5I_INVALID_HID if no corresponding type is found
84 */
85VTKIOHDF_EXPORT hid_t getH5TypeFromVtkType(int dataType);
86
88 "Please use TemporalGeometryOffsets struct instead.") VTKIOHDF_EXPORT TransientGeometryOffsets
89{
90public:
91 bool Success = true;
92 vtkIdType PartOffset = 0;
93 vtkIdType PointOffset = 0;
94 std::vector<vtkIdType> CellOffsets;
95 std::vector<vtkIdType> ConnectivityOffsets;
96
97 template <class T>
99};
100
101/*
102 * @struct TemporalGeometryOffsets
103 * @brief Use to get the offsets for temporal vtkHDF.
104 *
105 * To use it, create an object using the templated constructor of this struct.
106 * It will fill the object with data that can be then retrieved.
107 */
108struct VTKIOHDF_EXPORT TemporalGeometryOffsets
109{
110public:
111 bool Success = true;
112 vtkIdType PartOffset = 0;
113 vtkIdType PointOffset = 0;
114 std::vector<vtkIdType> CellOffsets;
115 std::vector<vtkIdType> ConnectivityOffsets;
116
117 template <class T>
119};
120
125VTKIOHDF_EXPORT bool Open(const char* fileName, hid_t& fileID);
126
131template <typename T>
133
137template <typename T>
138VTKIOHDF_EXPORT bool GetAttribute(
139 hid_t group, const char* attributeName, size_t numberOfElements, T* value);
140
144VTKIOHDF_EXPORT std::size_t GetNumberOfSteps(hid_t groupID);
145
149VTKIOHDF_EXPORT std::vector<hsize_t> GetDimensions(hid_t fileID, const char* datasetName);
150
154VTKIOHDF_EXPORT bool RetrieveHDFInformation(hid_t& fileID, hid_t& groupID,
155 const std::string& rootName, std::array<int, 2>& version, int& dataSetType, int& numberOfPieces,
156 std::array<hid_t, 3>& attributeDataGroup);
157
161VTKIOHDF_EXPORT herr_t FileInfoCallBack(
162 hid_t loc_id, const char* name, const H5L_info_t* info, void* opdata);
163
167VTKIOHDF_EXPORT std::vector<std::string> GetArrayNames(
168 const std::array<hid_t, 3>& attributeDataGroup, int attributeType);
169
173VTKIOHDF_EXPORT std::vector<std::string> GetOrderedChildrenOfGroup(
174 hid_t groupID, const std::string& path);
175
182VTKIOHDF_EXPORT hid_t OpenDataSet(
183 hid_t group, const char* name, hid_t* nativeType, std::vector<hsize_t>& dims);
184
186
198VTKIOHDF_EXPORT vtkDataArray* NewArrayForGroup(hid_t dataset, hid_t nativeType,
199 const std::vector<hsize_t>& dims, const std::vector<hsize_t>& parameterExtent);
201 hid_t group, const char* name, const std::vector<hsize_t>& parameterExtent);
203
210VTKIOHDF_EXPORT std::vector<vtkIdType> GetMetadata(
211 hid_t group, const char* name, hsize_t size, hsize_t offset);
212
218VTKIOHDF_EXPORT std::array<vtkIdType, 2> GetFieldArraySize(
219 hid_t group, vtkIdType step, std::string name);
220
224VTKIOHDF_EXPORT vtkIdType GetArrayOffset(
225 hid_t group, vtkIdType step, int attributeType, std::string name);
226
232VTKIOHDF_EXPORT vtkAbstractArray* NewFieldArray(const std::array<hid_t, 3>& attributeDataGroup,
233 const char* name, vtkIdType offset, vtkIdType size, vtkIdType dimMaxSize);
234
236 hid_t dataset, std::vector<hsize_t> dims, std::vector<hsize_t> fileExtent);
237}
238
239VTK_ABI_NAMESPACE_END
240#include "vtkHDFUtilities.txx" // for template implementations
241
242#endif
243// VTK-HeaderTest-Exclude: vtkHDFUtilities.h
Abstract superclass for all arrays.
abstract superclass for arrays of numeric data
a vtkAbstractArray subclass for strings
Common utility variables and functions for reader and writer of vtkHDF.
VTKIOHDF_EXPORT bool RetrieveHDFInformation(hid_t &fileID, hid_t &groupID, const std::string &rootName, std::array< int, 2 > &version, int &dataSetType, int &numberOfPieces, std::array< hid_t, 3 > &attributeDataGroup)
Initialize meta information of the file.
VTKIOHDF_EXPORT std::vector< std::string > GetArrayNames(const std::array< hid_t, 3 > &attributeDataGroup, int attributeType)
Returns the names of arrays for 'attributeType' (point or cell).
VTKIOHDF_EXPORT hid_t OpenDataSet(hid_t group, const char *name, hid_t *nativeType, std::vector< hsize_t > &dims)
Opens the hdf5 dataset given the 'group' and 'name'.
VTKIOHDF_EXPORT vtkDataArray * NewArrayForGroup(hid_t dataset, hid_t nativeType, const std::vector< hsize_t > &dims, const std::vector< hsize_t > &parameterExtent)
Reads a vtkDataArray of type T from the attributeType, dataset The array has type 'T' and 'numberOfCo...
VTKIOHDF_EXPORT hid_t TemplateTypeToHdfNativeType()
Convert C++ template type T to HDF5 native type this can be constexpr in C++17 standard.
VTKIOHDF_EXPORT std::vector< vtkIdType > GetMetadata(hid_t group, const char *name, hsize_t size, hsize_t offset)
Reads a 1D metadata array in a DataArray or a vector of vtkIdType.
const std::vector< std::string > POLY_DATA_TOPOS
constexpr std::size_t NUM_POLY_DATA_TOPOS
constexpr int GEOMETRY_ATTRIBUTE_TAG
VTKIOHDF_EXPORT vtkStringArray * NewStringArray(hid_t dataset, std::vector< hsize_t > dims, std::vector< hsize_t > fileExtent)
const std::string VTKHDF_ROOT_PATH
static constexpr int GetNumberOfAttributeTypes()
VTKIOHDF_EXPORT std::vector< hsize_t > GetDimensions(hid_t fileID, const char *datasetName)
Returns the dimensions of a HDF dataset of a file.
VTKIOHDF_EXPORT std::size_t GetNumberOfSteps(hid_t groupID)
Read the number of steps of an HDF group.
VTKIOHDF_EXPORT void MakeObjectNameValid(std::string &objectName)
VTKIOHDF_EXPORT vtkIdType GetArrayOffset(hid_t group, vtkIdType step, int attributeType, std::string name)
Methods to query for array offsets for the HDF group when steps are present.
VTKIOHDF_EXPORT bool GetAttribute(hid_t group, const char *attributeName, size_t numberOfElements, T *value)
Reads an attribute from the group passed to it.
VTKIOHDF_EXPORT bool Open(const char *fileName, hid_t &fileID)
Open a VTK HDF file and checks if it is valid.
static constexpr int GetNumberOfDataArrayTypes()
VTKIOHDF_EXPORT hid_t getH5TypeFromVtkType(int dataType)
VTKIOHDF_EXPORT vtkAbstractArray * NewFieldArray(const std::array< hid_t, 3 > &attributeDataGroup, const char *name, vtkIdType offset, vtkIdType size, vtkIdType dimMaxSize)
Reads and returns a new vtkAbstractArray.
VTKIOHDF_EXPORT std::vector< std::string > GetOrderedChildrenOfGroup(hid_t groupID, const std::string &path)
Return the name of all children of an HDF group given its path.
VTKIOHDF_EXPORT herr_t FileInfoCallBack(hid_t loc_id, const char *name, const H5L_info_t *info, void *opdata)
Convenient callback method to retrieve a name when calling a H5Giterate()
VTKIOHDF_EXPORT std::array< vtkIdType, 2 > GetFieldArraySize(hid_t group, vtkIdType step, std::string name)
Return the field array size (components, tuples) for the HDF group.
TemporalGeometryOffsets(T *impl, vtkIdType step)
std::vector< vtkIdType > ConnectivityOffsets
std::vector< vtkIdType > ConnectivityOffsets
TransientGeometryOffsets(T *impl, vtkIdType step)
#define VTK_DEPRECATED_IN_9_4_0(reason)
int64_t hid_t
int vtkIdType
Definition vtkType.h:315