forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLUnstructuredGridWriter.cxx
251 lines (209 loc) · 8.13 KB
/
vtkXMLUnstructuredGridWriter.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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLUnstructuredGridWriter.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 "vtkXMLUnstructuredGridWriter.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkErrorCode.h"
#include "vtkInformation.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkUnsignedCharArray.h"
#include "vtkUnstructuredGrid.h"
#define vtkOffsetsManager_DoNotInclude
#include "vtkOffsetsManagerArray.h"
#undef vtkOffsetsManager_DoNotInclude
#include <assert.h>
vtkStandardNewMacro(vtkXMLUnstructuredGridWriter);
//----------------------------------------------------------------------------
vtkXMLUnstructuredGridWriter::vtkXMLUnstructuredGridWriter()
{
this->CellsOM = new OffsetsManagerArray;
}
//----------------------------------------------------------------------------
vtkXMLUnstructuredGridWriter::~vtkXMLUnstructuredGridWriter()
{
delete this->CellsOM;
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
//----------------------------------------------------------------------------
vtkUnstructuredGrid* vtkXMLUnstructuredGridWriter::GetInput()
{
return static_cast<vtkUnstructuredGrid*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
const char* vtkXMLUnstructuredGridWriter::GetDataSetName()
{
return "UnstructuredGrid";
}
//----------------------------------------------------------------------------
const char* vtkXMLUnstructuredGridWriter::GetDefaultFileExtension()
{
return "vtu";
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::WriteInlinePieceAttributes()
{
this->Superclass::WriteInlinePieceAttributes();
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
vtkUnstructuredGrid* input = this->GetInput();
this->WriteScalarAttribute("NumberOfCells", input->GetNumberOfCells());
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::WriteInlinePiece(vtkIndent indent)
{
vtkUnstructuredGrid* input = this->GetInput();
// Split progress range by the approximate fraction of data written
// by each step in this method.
float progressRange[2] = {0,0};
this->GetProgressRange(progressRange);
float fractions[3];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteInlinePiece(indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set range of progress for the cell specifications.
this->SetProgressRange(progressRange, 1, fractions);
// Write the cell specifications.
this->WriteCellsInline("Cells", input->GetCells(),
input->GetCellTypesArray(),
input->GetFaces(),
input->GetFaceLocations(),
indent);
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::AllocatePositionArrays()
{
this->Superclass::AllocatePositionArrays();
this->NumberOfCellsPositions = new unsigned long[this->NumberOfPieces];
this->CellsOM->Allocate(this->NumberOfPieces,5,this->NumberOfTimeSteps);
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::DeletePositionArrays()
{
this->Superclass::DeletePositionArrays();
delete [] this->NumberOfCellsPositions;
this->NumberOfCellsPositions = NULL;
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::WriteAppendedPieceAttributes(int index)
{
this->Superclass::WriteAppendedPieceAttributes(index);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->NumberOfCellsPositions[index] =
this->ReserveAttributeSpace("NumberOfCells");
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::WriteAppendedPiece(int index,
vtkIndent indent)
{
vtkUnstructuredGrid* input = this->GetInput();
this->Superclass::WriteAppendedPiece(index, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCellsAppended("Cells", input->GetCellTypesArray(),
indent, &this->CellsOM->GetPiece(index));
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::WriteAppendedPieceData(int index)
{
ostream& os = *(this->Stream);
vtkUnstructuredGrid* input = this->GetInput();
unsigned long returnPosition = os.tellp();
os.seekp(this->NumberOfCellsPositions[index]);
this->WriteScalarAttribute("NumberOfCells", input->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
os.seekp(returnPosition);
// Split progress range by the approximate fraction of data written
// by each step in this method.
float progressRange[2] = {0,0};
this->GetProgressRange(progressRange);
float fractions[3];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteAppendedPieceData(index);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set range of progress for the cell specifications.
this->SetProgressRange(progressRange, 1, fractions);
// Write the cell specification arrays.
this->WriteCellsAppendedData( input->GetCells(),
input->GetCellTypesArray(), input->GetFaces(),
input->GetFaceLocations(), this->CurrentTimeIndex,
&this->CellsOM->GetPiece(index));
}
//----------------------------------------------------------------------------
vtkIdType vtkXMLUnstructuredGridWriter::GetNumberOfInputCells()
{
return this->GetInput()->GetNumberOfCells();
}
//----------------------------------------------------------------------------
void vtkXMLUnstructuredGridWriter::CalculateSuperclassFraction(float* fractions)
{
vtkUnstructuredGrid* input = this->GetInput();
// The superclass will write point/cell data and point specifications.
int pdArrays = input->GetPointData()->GetNumberOfArrays();
int cdArrays = input->GetCellData()->GetNumberOfArrays();
vtkIdType pdSize = pdArrays*this->GetNumberOfInputPoints();
vtkIdType cdSize = cdArrays*this->GetNumberOfInputCells();
vtkIdType pointsSize = this->GetNumberOfInputPoints();
// This class will write cell specifications.
vtkIdType connectSize;
if(input->GetCells()==0)
{
connectSize=0;
}
else
{
connectSize = (input->GetCells()->GetData()->GetNumberOfTuples() -
input->GetNumberOfCells());
}
vtkIdType offsetSize = input->GetNumberOfCells();
vtkIdType typesSize = input->GetNumberOfCells();
int total = (pdSize+cdSize+pointsSize+connectSize+offsetSize+typesSize);
if(total == 0)
{
total = 1;
}
fractions[0] = 0;
fractions[1] = float(pdSize+cdSize+pointsSize)/total;
fractions[2] = 1;
}
//----------------------------------------------------------------------------
int vtkXMLUnstructuredGridWriter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkUnstructuredGrid");
return 1;
}