1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkHDFReader
* @brief Read VTK HDF files.
*
* Reader for data saved using the VTKHDF format, supporting
* image data, poly data, unstructured grid, overlapping AMR, hyper tree grid, partitioned dataset
* collection and multiblock.
*
* Serial and parallel reading are supported, with the possibility of piece selection.
*
* This reader provides an internal cache with the `UseCache` option,
* improving read performance for temporal datasets when the geometry is constant between time
* steps.
*
* For non-composite datasets, constant geometry does not change the MeshMTime between time steps.
*
* Major version of the specification should be incremented when older readers can no
* longer read files written for this reader. Minor versions are
* for added functionality that can be safely ignored by older
* readers.
*
* @note vtkHDF file format is defined here :
* https://docs.vtk.org/en/latest/design_documents/VTKFileFormats.html#hdf-file-formats
*/
#ifndef vtkHDFReader_h
#define vtkHDFReader_h
#include "vtkDataAssembly.h" // For vtkDataAssembly
#include "vtkDataObjectAlgorithm.h"
#include "vtkIOHDFModule.h" // For export macro
#include "vtkSmartPointer.h" // For vtkSmartPointer
#include <array> // For storing the time range
#include <memory> // For std::unique_ptr
#include <vector> // For storing list of values
VTK_ABI_NAMESPACE_BEGIN
class vtkAbstractArray;
class vtkCallbackCommand;
class vtkCellData;
class vtkCommand;
class vtkDataArraySelection;
class vtkDataObjectMeshCache;
class vtkDataSet;
class vtkDataSetAttributes;
class vtkHyperTreeGrid;
class vtkImageData;
class vtkInformationVector;
class vtkInformation;
class vtkMultiBlockDataSet;
class vtkOverlappingAMR;
class vtkPartitionedDataSet;
class vtkPartitionedDataSetCollection;
class vtkPointData;
class vtkPolyData;
class vtkUnstructuredGrid;
namespace vtkHDFUtilities
{
struct TemporalHyperTreeGridOffsets;
}
class VTKIOHDF_EXPORT vtkHDFReader : public vtkDataObjectAlgorithm
{
public:
static vtkHDFReader* New();
vtkTypeMacro(vtkHDFReader, vtkDataObjectAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) override;
///@{
/**
* Get/Set the name of the input file.
*/
vtkSetFilePathMacro(FileName);
vtkGetFilePathMacro(FileName);
///@}
/**
* Test whether the file (type) with the given name can be read by this
* reader. If the file has a newer version than the reader, we still say
* we can read the file type and we fail later, when we try to read the file.
* This enables clients (ParaView) to distinguish between failures when we
* need to look for another reader and failures when we don't.
*/
virtual int CanReadFile(VTK_FILEPATH const char* name);
///@{
/**
* Get the output as a vtkDataSet pointer.
*/
vtkDataSet* GetOutputAsDataSet();
vtkDataSet* GetOutputAsDataSet(int index);
///@}
///@{
/**
* Get the data array selection tables used to configure which data
* arrays are loaded by the reader.
*/
virtual vtkDataArraySelection* GetPointDataArraySelection();
virtual vtkDataArraySelection* GetCellDataArraySelection();
virtual vtkDataArraySelection* GetFieldDataArraySelection();
///@}
///@{
/**
* Get the number of point or cell arrays available in the input.
*/
int GetNumberOfPointArrays();
int GetNumberOfCellArrays();
///@}
///@{
/**
* Get the name of the point or cell array with the given index in
* the input.
*/
const char* GetPointArrayName(int index);
const char* GetCellArrayName(int index);
///@}
///@{
/**
* Getters and setters for temporal data
* - HasTemporalData is a boolean that flags whether the file has temporal data
* - NumberOfSteps is the number of time steps contained in the file
* - Step is the time step to be read or last read by the reader
* - TimeValue is the value corresponding to the Step property
* - TimeRange is an array with the {min, max} values of time for the data
*/
VTK_DEPRECATED_IN_9_4_0("Please use GetTemporalData method instead.")
virtual bool GetHasTransientData();
bool GetHasTemporalData();
vtkGetMacro(NumberOfSteps, vtkIdType);
vtkGetMacro(Step, vtkIdType);
vtkSetMacro(Step, vtkIdType);
vtkGetMacro(TimeValue, double);
const std::array<double, 2>& GetTimeRange() const { return this->TimeRange; }
///@}
///@{
/**
* Boolean property determining whether to use the internal cache or not (default is false).
*
* Internal cache is useful when reading temporal data to never re-read something that has
* already been cached.
*
* @note Incompatible with MergeParts as vtkAppendDataSet which is used internally doesn't
* support static mesh.
*/
vtkGetMacro(UseCache, bool);
vtkSetMacro(UseCache, bool);
vtkBooleanMacro(UseCache, bool);
///@}
///@{
/**
* /!\ Now deprecated due to its limitations regarding cache, please do not use!
* Settings this flag will have no effect.
* This option can be replaced by the vtkMergeBlocks filter.
*
* Boolean property determining whether to merge partitions when reading unstructured data.
*
* Merging partitions (true) allows the reader to return either `vtkUnstructuredGrid` or
* `vtkPolyData` directly while not merging (false) them returns a `vtkPartitionedDataSet`. It is
* advised to set this value to false when using the internal cache (UseCache == true) since the
* partitions are what are stored in the cache and merging them before outputting would
* effectively double the memory constraints.
*
* Default is false
*
* @note Incompatible with UseCache as vtkAppendDataSet which is used internally doesn't
* support static mesh.
*/
VTK_DEPRECATED_IN_9_5_0("Use vtkMergeBlocks or vtkAppendDataSets instead.")
vtkGetMacro(MergeParts, bool);
VTK_DEPRECATED_IN_9_5_0("Use vtkMergeBlocks vtkAppendDataSets instead.")
vtkSetMacro(MergeParts, bool);
VTK_DEPRECATED_IN_9_5_0("Use vtkMergeBlocks vtkAppendDataSets instead.")
virtual void MergePartsOn();
VTK_DEPRECATED_IN_9_5_0("Use vtkMergeBlocks vtkAppendDataSets instead.")
virtual void MergePartsOff();
///@}
///@{
/**
* Choose the maximum level to read for AMR structures.
* This only applies if LimitAMRLevelsToRead is active.
* The value 0 indicates that the level read is not limited.
* Default is 0.
*/
vtkSetMacro(MaximumLevelsToReadByDefaultForAMR, unsigned int);
vtkGetMacro(MaximumLevelsToReadByDefaultForAMR, unsigned int);
///@}
///@{
/**
* Get or Set the Original id name of an attribute (POINT, CELL, FIELD...)
*/
std::string GetAttributeOriginalIdName(vtkIdType attribute);
void SetAttributeOriginalIdName(vtkIdType attribute, const std::string& name);
///@}
protected:
vtkHDFReader();
~vtkHDFReader() override;
/**
* Test if the reader can read a file with the given version number.
*/
int CanReadFileVersion(int major, int minor);
///@{
/**
* Reads the 'data' requested in 'outInfo' (through extents or
* pieces) for a specialized data type.
* Returns 1 if successful, 0 otherwise.
*/
int Read(vtkInformation* outInfo, vtkImageData* data);
int Read(vtkInformation* outInfo, vtkUnstructuredGrid* data, vtkPartitionedDataSet* pData);
int Read(vtkInformation* outInfo, vtkPolyData* data, vtkPartitionedDataSet* pData);
int Read(vtkInformation* outInfo, vtkHyperTreeGrid* data, vtkPartitionedDataSet* pData);
int Read(vtkInformation* outInfo, vtkOverlappingAMR* data);
int Read(vtkInformation* outInfo, vtkPartitionedDataSetCollection* data);
int Read(vtkInformation* outInfo, vtkMultiBlockDataSet* data);
int ReadRecursively(vtkInformation* outInfo, vtkMultiBlockDataSet* data, const std::string& path);
///@}
/**
* Read 'pieceData' specified by 'filePiece' where
* number of points, cells and connectivity ids
* store those numbers for all pieces.
*/
int Read(const std::vector<vtkIdType>& numberOfPoints,
const std::vector<vtkIdType>& numberOfCells,
const std::vector<vtkIdType>& numberOfConnectivityIds, vtkIdType partOffset,
vtkIdType startingPointOffset, vtkIdType startingCellOffset,
vtkIdType startingConnectctivityIdOffset, int filePiece, vtkUnstructuredGrid* pieceData);
/**
* Read the field arrays from the file and add them to the dataset.
*/
int AddFieldArrays(vtkDataObject* data);
/**
* Modify this object when an array selection is changed.
*/
static void SelectionModifiedCallback(
vtkObject* caller, unsigned long eid, void* clientdata, void* calldata);
///@{
/**
* Standard functions to specify the type, information and read the data from
* the file.
*/
int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector,
vtkInformationVector* outputVector) override;
int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
vtkInformationVector* outputVector) override;
int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
vtkInformationVector* outputVector) override;
///@}
/**
* Print update number of pieces, piece number and ghost levels.
*/
void PrintPieceInformation(vtkInformation* outInfo);
/**
* Setup the information pass in parameter based on current vtkHDF file loaded.
*/
int SetupInformation(vtkInformation* outInfo);
/**
* The input file's name.
*/
char* FileName;
/**
* The array selections.
* in the same order as vtkDataObject::AttributeTypes: POINT, CELL, FIELD
*/
vtkDataArraySelection* DataArraySelection[3];
/**
* The observer to modify this object when the array selections are
* modified.
*/
vtkCallbackCommand* SelectionObserver;
///@{
/**
* Assembly used for PartitionedDataSetCollection
*/
vtkSmartPointer<vtkDataAssembly> Assembly;
///@{
/**
* Temporal data properties
*/
// VTK_DEPRECATED_IN_9_4_0( )
bool HasTransientData = false;
vtkIdType Step = 0;
vtkIdType NumberOfSteps = 1;
double TimeValue = 0.0;
std::array<double, 2> TimeRange;
///@}
/**
* /!\ Now deprecated, do not use
* Determine whether to merge the partitions (true) or return a vtkPartitionedDataSet (false)
*/
// VTK_DEPRECATED_IN_9_5_0( )
bool MergeParts = false;
unsigned int MaximumLevelsToReadByDefaultForAMR = 0;
bool UseCache = false;
struct DataCache;
std::shared_ptr<DataCache> Cache;
private:
vtkHDFReader(const vtkHDFReader&) = delete;
void operator=(const vtkHDFReader&) = delete;
class Implementation;
Implementation* Impl;
/**
* Read data requested in 'outInfo', dispatching to the right specialized method
* following the type of 'data'.
*/
bool ReadData(vtkInformation* outInfo, vtkDataObject* data);
/**
* Read a single HyperTreeGrid piece from the file.
* `htgTemporalOffsets` gives the information about the offsets for the current time step.
* Returns 1 if successful, 0 otherwise.
*/
int Read(const std::vector<vtkIdType>& numberOfTrees, const std::vector<vtkIdType>& numberOfCells,
const std::vector<vtkIdType>& numberOfDepths, const std::vector<vtkIdType>& descriptorSizes,
const vtkHDFUtilities::TemporalHyperTreeGridOffsets& htgTemporalOffsets, int filePiece,
vtkHyperTreeGrid* pieceData);
/**
* Setter for UseTemporalData.
*
* Useful to set privatly the deprecated UseTransientData variable to true when it's needed.
*/
void SetHasTemporalData(bool useTemporalData);
/**
* Generate the vtkDataAssembly used for vtkPartitionedDataSetCollection and store it in Assembly.
*/
void GenerateAssembly();
/**
* Retrieve the number of steps in each composite element of the dataset.
* Return false if the number of steps is inconsistent across components, true otherwise.
*/
bool RetrieveStepsFromAssembly();
/**
* Add array names from all composite elements to DataArraySelection array.
* Return true on success
*/
bool RetrieveDataArraysFromAssembly();
/**
* Helper function to add Ids in the attribute arrays of a dataset.
* Those ids are used in the DataObjectMeshCache to restore the
* corresponding attributes when copying the content of the cache.
* It returns a boolean indicating if the array was correctly added.
* Also returns false if the array already exists.
*/
bool AddOriginalIds(vtkDataSetAttributes* attributes, vtkIdType size, const std::string& name);
/**
* Removes the arrays for each partition from the object given in
* parameter containing the original ids use in the static mesh cache.
* It allows to avoid passing those arrays to subsequent pipeline
* elements.
*/
void CleanOriginalIds(vtkPartitionedDataSet* output);
bool MeshGeometryChangedFromPreviousTimeStep = true;
vtkNew<vtkDataObjectMeshCache> MeshCache;
std::map<vtkIdType, std::string> AttributesOriginalIdName{
{ vtkDataObject::POINT, "__pointsOriginalIds__" },
{ vtkDataObject::CELL, "__cellOriginalIds__" }, { vtkDataObject::FIELD, "__fieldOriginalIds__" }
};
bool HasTemporalData = false;
std::string CompositeCachePath; // Identifier for the current composite piece
};
VTK_ABI_NAMESPACE_END
#endif
|