VTK
vtkXMLPolyDataReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLPolyDataReader.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 =========================================================================*/
34 #ifndef vtkXMLPolyDataReader_h
35 #define vtkXMLPolyDataReader_h
36 
37 #include "vtkIOXMLModule.h" // For export macro
39 
40 class vtkPolyData;
41 
43 {
44 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47  static vtkXMLPolyDataReader *New();
48 
50 
51  vtkPolyData *GetOutput();
52  vtkPolyData *GetOutput(int idx);
54 
56 
57  virtual vtkIdType GetNumberOfVerts();
58  virtual vtkIdType GetNumberOfLines();
59  virtual vtkIdType GetNumberOfStrips();
60  virtual vtkIdType GetNumberOfPolys();
62 
63 protected:
66 
67  const char* GetDataSetName();
68  void GetOutputUpdateExtent(int& piece, int& numberOfPieces, int& ghostLevel);
69  void SetupOutputTotals();
70  void SetupNextPiece();
71  void SetupPieces(int numPieces);
72  void DestroyPieces();
73 
74  void SetupOutputData();
75  int ReadPiece(vtkXMLDataElement* ePiece);
76  int ReadPieceData();
77 
78  // Read a data array whose tuples coorrespond to cells.
79  virtual int ReadArrayForCells(vtkXMLDataElement* da,
80  vtkAbstractArray* outArray);
81 
82  // Get the number of cells in the given piece. Valid after
83  // UpdateInformation.
84  virtual vtkIdType GetNumberOfCellsInPiece(int piece);
85 
86  virtual int FillOutputPortInformation(int, vtkInformation*);
87 
88  // The size of the UpdatePiece.
97 
98  // The cell elements for each piece.
107 
108  // For TimeStep support
110  unsigned long VertsOffset;
112  unsigned long LinesOffset;
114  unsigned long StripsOffset;
116  unsigned long PolysOffset;
117 
118 private:
119  vtkXMLPolyDataReader(const vtkXMLPolyDataReader&); // Not implemented.
120  void operator=(const vtkXMLPolyDataReader&); // Not implemented.
121 };
122 
123 #endif
vtkXMLDataElement ** LineElements
vtkXMLDataElement ** PolyElements
virtual const char * GetDataSetName()=0
Represents an XML element and those nested inside.
Read VTK XML PolyData files.
Store vtkAlgorithm input/output information.
Abstract superclass for all arrays.
virtual vtkIdType GetNumberOfCellsInPiece(int piece)=0
void SetupPieces(int numPieces)
Superclass for unstructured data XML readers.
int vtkIdType
Definition: vtkType.h:275
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
virtual int FillOutputPortInformation(int port, vtkInformation *info)
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKIOXML_EXPORT
vtkXMLDataElement ** StripElements
virtual void GetOutputUpdateExtent(int &piece, int &numberOfPieces, int &ghostLevel)=0
static vtkAlgorithm * New()
vtkXMLDataElement ** VertElements
virtual int ReadArrayForCells(vtkXMLDataElement *da, vtkAbstractArray *outArray)
virtual void SetupOutputTotals()
int ReadPiece(vtkXMLDataElement *ePiece)
void PrintSelf(ostream &os, vtkIndent indent)