VTK  9.4.20250102
vtkXMLMultiBlockDataReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3// SPDX-License-Identifier: BSD-3-Clause
40#ifndef vtkXMLMultiBlockDataReader_h
41#define vtkXMLMultiBlockDataReader_h
42
43#include "vtkIOXMLModule.h" // For export macro
45
46VTK_ABI_NAMESPACE_BEGIN
48
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
56protected:
59
60 // Read the XML element for the subtree of a the composite dataset.
61 // dataSetIndex is used to rank the leaf nodes in an inorder traversal.
63 const char* filePath, unsigned int& dataSetIndex) override;
64
65 // Reads file version < 1.0.
66 virtual void ReadVersion0(vtkXMLDataElement* element, vtkCompositeDataSet* composite,
67 const char* filePath, unsigned int& dataSetIndex);
68
69 // Get the name of the data set being read.
70 const char* GetDataSetName() override;
71
72 int FillOutputPortInformation(int, vtkInformation* info) override;
73
75
76 virtual int FillMetaData(vtkCompositeDataSet* metadata, vtkXMLDataElement* element,
77 const std::string& filePath, unsigned int& dataSetIndex);
78
79private:
81 void operator=(const vtkXMLMultiBlockDataReader&) = delete;
82
83 bool DistributePiecesInMultiPieces;
84};
85
86VTK_ABI_NAMESPACE_END
87#endif
abstract superclass for composite (multi-block or AMR) datasets
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Composite dataset that organizes datasets into blocks.
Reader for multi-group datasets.
Represents an XML element and those nested inside.
Reader for multi-block datasets.
void ReadComposite(vtkXMLDataElement *element, vtkCompositeDataSet *composite, const char *filePath, unsigned int &dataSetIndex) override
static vtkXMLMultiBlockDataReader * New()
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillOutputPortInformation(int, vtkInformation *info) override
Fill the output port information objects for this algorithm.
~vtkXMLMultiBlockDataReader() override
virtual int FillMetaData(vtkCompositeDataSet *metadata, vtkXMLDataElement *element, const std::string &filePath, unsigned int &dataSetIndex)
const char * GetDataSetName() override
Get the name of the data set being read.
virtual void ReadVersion0(vtkXMLDataElement *element, vtkCompositeDataSet *composite, const char *filePath, unsigned int &dataSetIndex)