VTK  9.7.20260723
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
8
9#ifndef vtkHDFUtilities_h
10#define vtkHDFUtilities_h
11
12#include "vtkDataArray.h"
13#include "vtkDataObject.h"
14#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_7_0
15#include "vtkIOHDFModule.h" // For export macro
16#include "vtkStringArray.h"
17#include "vtkType.h"
18#include "vtk_hdf5.h"
19
20#include <array>
21#include <string>
22#include <vector>
23
24VTK_ABI_NAMESPACE_BEGIN
25
26#if VTK_ID_TYPE_IMPL == VTK_LONG_LONG
27#define VTK_ID_H5T H5T_NATIVE_LLONG
28#elif VTK_ID_TYPE_IMPL == VTK_LONG
29#define VTK_ID_H5T H5T_NATIVE_LONG
30#elif VTK_ID_TYPE_IMPL == VTK_INT
31#define VTK_ID_H5T H5T_NATIVE_INT
32#else
33#error "No HDF5 type available for vtkIdType"
34#endif
35
37
38namespace vtkHDFUtilities
39{
40const std::string VTKHDF_ROOT_PATH = "/VTKHDF";
41
42/*
43 * The number of PolyData topologies saved in vtkHDF format
44 */
45constexpr std::size_t NUM_POLY_DATA_TOPOS = 4;
46
47/*
48 * A vector of the topology names that are saved in vtkHDF
49 * Can be used for the name of the HDF group only
50 */
51const std::vector<std::string> POLY_DATA_TOPOS{ "Vertices", "Lines", "Polygons", "Strips" };
52
53/*
54 * Attribute tag used in the cache storage to indicate arrays related to the geometry of the data
55 * set and not fields of the data set
56 */
57constexpr int GEOMETRY_ATTRIBUTE_TAG = -42;
58
59/*
60 * How many attribute types we have. This returns 3: point, cell and field
61 * attribute types.
62 */
63VTKIOHDF_EXPORT std::vector<int> GetAttributeTypes();
64
70VTKIOHDF_EXPORT bool ReadDataSetType(hid_t groupID, int& dataSetType);
71
72/*
73 * Make sure we replace any illegal characters in the objectName (slash, dot) by an underscore, as
74 * they would create a HDF5 subgroup.
75 */
76VTKIOHDF_EXPORT void MakeObjectNameValid(std::string& objectName);
77
78/*
79 * Returns the id to a HDF datatype (H5T) from a VTK datatype
80 * Returns H5I_INVALID_HID if no corresponding type is found
81 */
82VTKIOHDF_EXPORT hid_t getH5TypeFromVtkType(int dataType);
83
84/*
85 * @struct TemporalGeometryOffsets
86 * @brief Use to get the offsets for temporal vtkHDF.
87 *
88 * To use it, create an object using the templated constructor of this struct.
89 * It will fill the object with data that can be then retrieved.
90 */
91struct VTKIOHDF_EXPORT TemporalGeometryOffsets
92{
93public:
95
98 std::vector<vtkIdType> CellOffsets;
99 std::vector<vtkIdType> ConnectivityOffsets;
100
101 // Polyhedron
105 bool HasPolyhedron = false;
106
107 template <class T>
108 bool GetOffsets(T* impl, vtkIdType step);
109};
110
111/*
112 * Offsets for temporalHyperTreeGrid
113 */
131
137VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the version with quiet arg.")
138VTKIOHDF_EXPORT bool Open(const char* fileName, hid_t& fileID);
139
144VTKIOHDF_EXPORT bool Open(const char* fileName, hid_t& fileID, bool quiet);
145
151VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the version with quiet arg.")
152VTKIOHDF_EXPORT bool Open(vtkMemoryResourceStream* stream, hid_t& fileImageID);
153
159VTKIOHDF_EXPORT bool Open(vtkMemoryResourceStream* stream, hid_t& fileImageID, bool quiet);
160
165template <typename T>
167
171template <typename T>
172VTKIOHDF_EXPORT bool GetAttribute(
173 hid_t group, const char* attributeName, size_t numberOfElements, T* value);
174
178VTKIOHDF_EXPORT bool GetStringAttribute(
179 hid_t groupID, const std::string& name, std::string& attribute);
180
184VTKIOHDF_EXPORT std::size_t GetNumberOfSteps(hid_t groupID);
185
189VTKIOHDF_EXPORT std::vector<hsize_t> GetDimensions(hid_t fileID, const char* datasetName);
190
194
196
210VTKIOHDF_EXPORT bool RetrieveHDFInformation(hid_t& rootID, const std::string& rootName,
211 const std::string& groupPrefix, hid_t& groupID, std::array<int, 2>& version, int& dataSetType,
212 int& numberOfPieces, std::map<int, hid_t>& attributeDataGroup);
213VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the groupPrefix version instead.")
214VTKIOHDF_EXPORT bool RetrieveHDFInformation(hid_t& fileID, hid_t& groupID,
215 const std::string& rootName, std::array<int, 2>& version, int& dataSetType, int& numberOfPieces,
216 std::array<hid_t, 3>& attributeDataGroup);
217VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the std::map version instead.")
218VTKIOHDF_EXPORT bool RetrieveHDFInformation(hid_t& rootID, const std::string& rootName,
219 const std::string& groupPrefix, hid_t& groupID, std::array<int, 2>& version, int& dataSetType,
220 int& numberOfPieces, std::array<hid_t, 3>& attributeDataGroup);
222
226VTKIOHDF_EXPORT herr_t FileInfoCallBack(
227 hid_t loc_id, const char* name, const H5L_info_t* info, void* opdata);
228
230
233VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the std::map version instead.")
234VTKIOHDF_EXPORT std::vector<std::string> GetArrayNames(
235 const std::array<hid_t, 3>& attributeDataGroup, int attributeType);
236VTKIOHDF_EXPORT std::vector<std::string> GetArrayNames(
237 const std::map<int, hid_t>& attributeDataGroup, int attributeType);
239
243VTKIOHDF_EXPORT std::vector<std::string> GetOrderedChildrenOfGroup(
244 hid_t groupID, const std::string& path);
245
252VTKIOHDF_EXPORT hid_t OpenDataSet(
253 hid_t group, const char* name, hid_t* nativeType, std::vector<hsize_t>& dims);
254
256
268VTKIOHDF_EXPORT vtkDataArray* NewArrayForGroup(hid_t dataset, hid_t nativeType,
269 const std::vector<hsize_t>& dims, const std::vector<hsize_t>& parameterExtent);
271 hid_t group, const char* name, const std::vector<hsize_t>& parameterExtent);
273
280VTKIOHDF_EXPORT std::vector<vtkIdType> GetMetadata(
281 hid_t group, const char* name, hsize_t size, hsize_t offset);
282
288VTKIOHDF_EXPORT std::array<vtkIdType, 2> GetFieldArraySize(
289 hid_t group, vtkIdType step, std::string name);
290
294VTKIOHDF_EXPORT vtkIdType GetArrayOffset(
295 hid_t group, vtkIdType step, int attributeType, std::string name);
296
298
303VTK_DEPRECATED_IN_9_7_0("Deprecated. Please use the std::map version instead.")
304VTKIOHDF_EXPORT vtkAbstractArray* NewFieldArray(const std::array<hid_t, 3>& attributeDataGroup,
305 const char* name, vtkIdType offset, vtkIdType size, vtkIdType dimMaxSize);
306VTKIOHDF_EXPORT vtkAbstractArray* NewFieldArray(const std::map<int, hid_t>& attributeDataGroup,
307 const char* name, vtkIdType offset, vtkIdType size, vtkIdType dimMaxSize);
309
311 hid_t dataset, std::vector<hsize_t> dims, std::vector<hsize_t> fileExtent);
312}
313
314VTK_ABI_NAMESPACE_END
315#include "vtkHDFUtilities.txx" // for template implementations
316
317#endif
318// VTK-HeaderTest-Exclude: vtkHDFUtilities.h
Abstract superclass for all arrays.
vtkResourceStream implementation for memory input.
a vtkAbstractArray subclass for strings
Common utility variables and functions for reader and writer of vtkHDF.
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 bool ReadDataSetType(hid_t groupID, int &dataSetType)
Read the dataset type string for the given group, and return the index of the type as defined in vtkT...
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
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 RetrieveHDFInformation(hid_t &rootID, const std::string &rootName, const std::string &groupPrefix, hid_t &groupID, std::array< int, 2 > &version, int &dataSetType, int &numberOfPieces, std::map< int, hid_t > &attributeDataGroup)
Initialize meta information of the file.
VTKIOHDF_EXPORT bool Open(const char *fileName, hid_t &fileID)
Open a VTK HDF file and checks if it is valid.
VTKIOHDF_EXPORT hid_t getH5TypeFromVtkType(int dataType)
VTKIOHDF_EXPORT bool GetStringAttribute(hid_t groupID, const std::string &name, std::string &attribute)
Get string argument, variable or fixed size.
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< int > GetAttributeTypes()
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.
bool GetOffsets(T *impl, vtkIdType step)
std::vector< vtkIdType > ConnectivityOffsets
TemporalHyperTreeGridOffsets(T *impl, vtkIdType step)
#define vtkDataArray
#define VTK_DEPRECATED_IN_9_7_0(reason)
int64_t hid_t
int vtkIdType
Definition vtkType.h:363