forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLUnstructuredGridReader.cxx
396 lines (339 loc) · 13 KB
/
vtkXMLUnstructuredGridReader.cxx
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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLUnstructuredGridReader.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkXMLUnstructuredGridReader.h"
#include "vtkCellArray.h"
#include "vtkIdTypeArray.h"
#include "vtkObjectFactory.h"
#include "vtkUnsignedCharArray.h"
#include "vtkUnstructuredGrid.h"
#include "vtkXMLDataElement.h"
#include "vtkInformation.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include <assert.h>
vtkStandardNewMacro(vtkXMLUnstructuredGridReader);
//----------------------------------------------------------------------------
vtkXMLUnstructuredGridReader::vtkXMLUnstructuredGridReader()
{
this->CellElements = 0;
this->NumberOfCells = 0;
this->CellsTimeStep = -1;
this->CellsOffset = static_cast<unsigned long>(-1); // almost invalid state
}
//----------------------------------------------------------------------------
vtkXMLUnstructuredGridReader::~vtkXMLUnstructuredGridReader()
{
if(this->NumberOfPieces)
{
this->DestroyPieces();
}
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkUnstructuredGrid* vtkXMLUnstructuredGridReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkUnstructuredGrid* vtkXMLUnstructuredGridReader::GetOutput(int idx)
{
return vtkUnstructuredGrid::SafeDownCast( this->GetOutputDataObject(idx) );
}
//----------------------------------------------------------------------------
const char* vtkXMLUnstructuredGridReader::GetDataSetName()
{
return "UnstructuredGrid";
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::GetOutputUpdateExtent(int& piece,
int& numberOfPieces,
int& ghostLevel)
{
vtkInformation* outInfo = this->GetCurrentOutputInformation();
piece = outInfo->Get(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER());
numberOfPieces = outInfo->Get(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES());
ghostLevel = outInfo->Get(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS());
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::SetupOutputTotals()
{
this->Superclass::SetupOutputTotals();
// Find the total size of the output.
int i;
this->TotalNumberOfCells = 0;
for(i=this->StartPiece; i < this->EndPiece; ++i)
{
this->TotalNumberOfCells += this->NumberOfCells[i];
}
// Data reading will start at the beginning of the output.
this->StartCell = 0;
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::SetupPieces(int numPieces)
{
this->Superclass::SetupPieces(numPieces);
this->NumberOfCells = new vtkIdType[numPieces];
this->CellElements = new vtkXMLDataElement*[numPieces];
for(int i=0;i < numPieces; ++i)
{
this->CellElements[i] = 0;
}
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::DestroyPieces()
{
delete [] this->CellElements;
delete [] this->NumberOfCells;
this->Superclass::DestroyPieces();
}
//----------------------------------------------------------------------------
vtkIdType vtkXMLUnstructuredGridReader::GetNumberOfCellsInPiece(int piece)
{
return this->NumberOfCells[piece];
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::SetupOutputData()
{
this->Superclass::SetupOutputData();
vtkUnstructuredGrid* output = vtkUnstructuredGrid::SafeDownCast(
this->GetCurrentOutput());
// Setup the output's cell arrays.
vtkUnsignedCharArray* cellTypes = vtkUnsignedCharArray::New();
cellTypes->SetNumberOfTuples(this->GetNumberOfCells());
vtkCellArray* outCells = vtkCellArray::New();
vtkIdTypeArray* locations = vtkIdTypeArray::New();
locations->SetNumberOfTuples(this->GetNumberOfCells());
output->SetCells(cellTypes, locations, outCells);
locations->Delete();
outCells->Delete();
cellTypes->Delete();
}
//----------------------------------------------------------------------------
int vtkXMLUnstructuredGridReader::ReadPiece(vtkXMLDataElement* ePiece)
{
if(!this->Superclass::ReadPiece(ePiece))
{
return 0;
}
int i;
if(!ePiece->GetScalarAttribute("NumberOfCells",
this->NumberOfCells[this->Piece]))
{
vtkErrorMacro("Piece " << this->Piece
<< " is missing its NumberOfCells attribute.");
this->NumberOfCells[this->Piece] = 0;
return 0;
}
// Find the Cells element in the piece.
this->CellElements[this->Piece] = 0;
for(i=0; i < ePiece->GetNumberOfNestedElements(); ++i)
{
vtkXMLDataElement* eNested = ePiece->GetNestedElement(i);
if((strcmp(eNested->GetName(), "Cells") == 0)
&& (eNested->GetNumberOfNestedElements() > 0))
{
this->CellElements[this->Piece] = eNested;
}
}
if(!this->CellElements[this->Piece])
{
vtkErrorMacro("A piece is missing its Cells element.");
return 0;
}
return 1;
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridReader::SetupNextPiece()
{
this->Superclass::SetupNextPiece();
this->StartCell += this->NumberOfCells[this->Piece];
}
//----------------------------------------------------------------------------
int vtkXMLUnstructuredGridReader::ReadPieceData()
{
// The amount of data read by the superclass's ReadPieceData comes
// from point/cell data and point specifications (we read cell
// specifications here).
vtkIdType superclassPieceSize =
((this->NumberOfPointArrays+1)*this->GetNumberOfPointsInPiece(this->Piece)+
this->NumberOfCellArrays*this->GetNumberOfCellsInPiece(this->Piece));
// Total amount of data in this piece comes from cell/face data arrays.
// Three of them are for standard vtkUnstructuredGrid cell specification:
// connectivities, offsets and types. Two optional arrays are for face
// specification of polyhedron cells: faces and face offsets.
// Note: We don't know exactly the array size of cell connectivities and
// faces until we actually read the file. The following progress computation
// assumes that each array cost the same time to read.
vtkIdType totalPieceSize =
superclassPieceSize + 5*this->GetNumberOfCellsInPiece(this->Piece);
if(totalPieceSize == 0)
{
totalPieceSize = 1;
}
// Split the progress range based on the approximate fraction of
// data that will be read by each step in this method. The cell
// specification reads two arrays, and then the cell types array is
// one more.
float progressRange[2] = {0,0};
this->GetProgressRange(progressRange);
float fractions[5] =
{
0,
float(superclassPieceSize) / totalPieceSize,
((float(superclassPieceSize) +
2*this->GetNumberOfCellsInPiece(this->Piece)) / totalPieceSize),
((float(superclassPieceSize) +
3*this->GetNumberOfCellsInPiece(this->Piece)) / totalPieceSize),
1
};
// Set the range of progress for the superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass read its data.
if(!this->Superclass::ReadPieceData())
{
return 0;
}
vtkUnstructuredGrid* output = vtkUnstructuredGrid::SafeDownCast(
this->GetCurrentOutput());
// Save the start location where the new cell connectivity will be
// appended.
vtkIdType startLoc = 0;
if(output->GetCells()->GetData())
{
startLoc = output->GetCells()->GetData()->GetNumberOfTuples();
}
// Set the range of progress for the cell specifications.
this->SetProgressRange(progressRange, 1, fractions);
// Read the Cells.
vtkXMLDataElement* eCells = this->CellElements[this->Piece];
if(!eCells)
{
vtkErrorMacro("Cannot find cell arrays in piece " << this->Piece);
return 0;
}
// int needToRead = this->CellsNeedToReadTimeStep(eNested,
// this->CellsTimeStep, this->CellsOffset);
// if( needToRead )
{
// Read the array.
if(!this->ReadCellArray(this->NumberOfCells[this->Piece],
this->TotalNumberOfCells,
eCells,
output->GetCells()))
{
return 0;
}
}
// Construct the cell locations.
vtkIdTypeArray* locations = output->GetCellLocationsArray();
vtkIdType* locs = locations->GetPointer(this->StartCell);
vtkIdType* begin = output->GetCells()->GetData()->GetPointer(startLoc);
vtkIdType* cur = begin;
vtkIdType i;
for(i=0; i < this->NumberOfCells[this->Piece]; ++i)
{
locs[i] = startLoc + cur - begin;
cur += *cur + 1;
}
// Set the range of progress for the cell types.
this->SetProgressRange(progressRange, 2, fractions);
// Read the corresponding cell types.
vtkIdType numberOfCells = this->NumberOfCells[this->Piece];
vtkXMLDataElement* eTypes = this->FindDataArrayWithName(eCells, "types");
if(!eTypes)
{
vtkErrorMacro("Cannot read cell types from " << eCells->GetName()
<< " in piece " << this->Piece
<< " because the \"types\" array could not be found.");
return 0;
}
vtkAbstractArray* ac2 = this->CreateArray(eTypes);
vtkDataArray* c2 = vtkDataArray::SafeDownCast(ac2);
if(!c2 || (c2->GetNumberOfComponents() != 1))
{
vtkErrorMacro("Cannot read cell types from " << eCells->GetName()
<< " in piece " << this->Piece
<< " because the \"types\" array could not be created"
<< " with one component.");
if (ac2) { ac2->Delete(); }
return 0;
}
c2->SetNumberOfTuples(numberOfCells);
if(!this->ReadArrayValues(eTypes, 0, c2, 0, numberOfCells))
{
vtkErrorMacro("Cannot read cell types from " << eCells->GetName()
<< " in piece " << this->Piece
<< " because the \"types\" array is not long enough.");
return 0;
}
vtkUnsignedCharArray* cellTypes = this->ConvertToUnsignedCharArray(c2);
if(!cellTypes)
{
vtkErrorMacro("Cannot read cell types from " << eCells->GetName()
<< " in piece " << this->Piece
<< " because the \"types\" array could not be converted"
<< " to a vtkUnsignedCharArray.");
return 0;
}
// Copy the cell type data.
memcpy(output->GetCellTypesArray()->GetPointer(this->StartCell),
cellTypes->GetPointer(0), numberOfCells);
cellTypes->Delete();
// Set the range of progress for the faces.
this->SetProgressRange(progressRange, 3, fractions);
//
// Read face array. Used for polyhedron mesh support.
// First need to check if faces and faceoffsets arrays are available.
if (!this->FindDataArrayWithName(eCells, "faces") ||
!this->FindDataArrayWithName(eCells, "faceoffsets"))
{
return 1;
}
// By default vtkUnstructuredGrid does not contain face information, which is
// only used by polyhedron cells. If so far no polyhedron cells have been
// added, the pointers to the arrays will be NULL. In this case, we need to
// initialize the arrays and assign values to the previous non-polyhedron cells.
if (!output->GetFaces() || !output->GetFaceLocations())
{
output->InitializeFacesRepresentation(this->StartCell);
}
// Read face arrays.
if(!this->ReadFaceArray(this->NumberOfCells[this->Piece],
eCells,
output->GetFaces(),
output->GetFaceLocations()))
{
return 0;
}
return 1;
}
//----------------------------------------------------------------------------
int vtkXMLUnstructuredGridReader::ReadArrayForCells(vtkXMLDataElement* da,
vtkAbstractArray* outArray)
{
vtkIdType startCell = this->StartCell;
vtkIdType numCells = this->NumberOfCells[this->Piece];
vtkIdType components = outArray->GetNumberOfComponents();
return this->ReadArrayValues(da, startCell*components, outArray,
0, numCells*components);
}
//----------------------------------------------------------------------------
int vtkXMLUnstructuredGridReader::FillOutputPortInformation(int, vtkInformation *info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkUnstructuredGrid");
return 1;
}