VTK
vtkGenericDataObjectReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGenericDataObjectReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
38 #ifndef vtkGenericDataObjectReader_h
39 #define vtkGenericDataObjectReader_h
40 
41 #include "vtkIOLegacyModule.h" // For export macro
42 #include "vtkDataReader.h"
43 
44 class vtkDataObject;
45 class vtkGraph;
46 class vtkMolecule;
47 class vtkPolyData;
48 class vtkRectilinearGrid;
49 class vtkStructuredGrid;
51 class vtkTable;
52 class vtkTree;
54 
55 class VTKIOLEGACY_EXPORT vtkGenericDataObjectReader : public vtkDataReader
56 {
57 public:
60  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
66  vtkDataObject *GetOutput();
67  vtkDataObject *GetOutput(int idx);
69 
71 
78  vtkGraph *GetGraphOutput();
79  vtkMolecule *GetMoleculeOutput();
80  vtkPolyData *GetPolyDataOutput();
81  vtkRectilinearGrid *GetRectilinearGridOutput();
82  vtkStructuredGrid *GetStructuredGridOutput();
83  vtkStructuredPoints *GetStructuredPointsOutput();
84  vtkTable *GetTableOutput();
85  vtkTree *GetTreeOutput();
86  vtkUnstructuredGrid *GetUnstructuredGridOutput();
88 
93  virtual int ReadOutputType();
94 
98  int ReadMetaDataSimple(const std::string& fname,
99  vtkInformation* metadata) override;
100 
104  int ReadMeshSimple(const std::string& fname,
105  vtkDataObject* output) override;
106 
107 
108 protected:
110  ~vtkGenericDataObjectReader() override;
111 
112  vtkDataObject* CreateOutput(vtkDataObject* currentOutput) override;
113 
114  int FillOutputPortInformation(int, vtkInformation *) override;
115 
116 private:
118  void operator=(const vtkGenericDataObjectReader&) = delete;
119 
120  template<typename ReaderT, typename DataT>
121  void ReadData(
122  const char* fname, const char* dataClass, vtkDataObject* output);
123 
124  vtkSetStringMacro(Header);
125 
126 };
127 
128 #endif
a dataset that is topologically regular with variable spacing in the three coordinate directions ...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store vtkAlgorithm input/output information.
class describing a molecule
Definition: vtkMolecule.h:94
virtual vtkDataObject * CreateOutput(vtkDataObject *currentOutput)
This can be overridden by a subclass to create an output that is determined by the file being read...
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
int ReadMeshSimple(const std::string &, vtkDataObject *) override
Overridden with default implementation of doing nothing so that subclasses only override what is need...
Base class for graph data types.
Definition: vtkGraph.h:287
static vtkDataReader * New()
helper superclass for objects that read vtk data files
Definition: vtkDataReader.h:49
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Fill the output port information objects for this algorithm.
a simple class to control print indentation
Definition: vtkIndent.h:39
dataset represents arbitrary combinations of all possible cell types
class to read any type of vtk data object
virtual int ReadMetaDataSimple(const std::string &, vtkInformation *)
A subclass can override this method to provide meta data specific to a particular file...
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
A subclass of ImageData.
topologically regular array of data
A rooted tree data structure.
Definition: vtkTree.h:60
general representation of visualization data
Definition: vtkDataObject.h:64