forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLRectilinearGridWriter.cxx
241 lines (206 loc) · 8.22 KB
/
vtkXMLRectilinearGridWriter.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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLRectilinearGridWriter.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 "vtkXMLRectilinearGridWriter.h"
#include "vtkCellData.h"
#include "vtkErrorCode.h"
#include "vtkExtentTranslator.h"
#include "vtkFloatArray.h"
#include "vtkInformation.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkRectilinearGrid.h"
#define vtkOffsetsManager_DoNotInclude
#include "vtkOffsetsManagerArray.h"
#undef vtkOffsetsManager_DoNotInclude
vtkStandardNewMacro(vtkXMLRectilinearGridWriter);
//----------------------------------------------------------------------------
vtkXMLRectilinearGridWriter::vtkXMLRectilinearGridWriter()
{
this->CoordinateOM = new OffsetsManagerArray;
}
//----------------------------------------------------------------------------
vtkXMLRectilinearGridWriter::~vtkXMLRectilinearGridWriter()
{
delete this->CoordinateOM;
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
//----------------------------------------------------------------------------
vtkRectilinearGrid* vtkXMLRectilinearGridWriter::GetInput()
{
return static_cast<vtkRectilinearGrid*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::GetInputExtent(int* extent)
{
this->GetInput()->GetExtent(extent);
}
//----------------------------------------------------------------------------
const char* vtkXMLRectilinearGridWriter::GetDataSetName()
{
return "RectilinearGrid";
}
//----------------------------------------------------------------------------
const char* vtkXMLRectilinearGridWriter::GetDefaultFileExtension()
{
return "vtr";
}
//----------------------------------------------------------------------------
vtkDataArray*
vtkXMLRectilinearGridWriter::CreateExactCoordinates(vtkDataArray* a, int xyz)
{
int inExtent[6];
int outExtent[6];
this->GetInput()->GetExtent(inExtent);
this->ExtentTranslator->SetPiece(this->CurrentPiece);
this->ExtentTranslator->PieceToExtent();
this->ExtentTranslator->GetExtent(outExtent);
int* inBounds = inExtent+xyz*2;
int* outBounds = outExtent+xyz*2;
if(!a)
{
// There are no coordinates. This can happen with empty input.
return vtkFloatArray::New();
}
if((inBounds[0] == outBounds[0]) && (inBounds[1] == outBounds[1]))
{
// Use the entire coordinates array.
a->Register(0);
return a;
}
else
{
// Create a subset of the coordinates array.
int components = a->GetNumberOfComponents();
int tupleSize = components*this->GetWordTypeSize(a->GetDataType());
vtkDataArray* b = a->NewInstance();
b->SetNumberOfComponents(components);
b->SetName(a->GetName());
int tuples = outBounds[1] - outBounds[0] + 1;
int offset = outBounds[0] - inBounds[0];
b->SetNumberOfTuples(tuples);
memcpy(b->GetVoidPointer(0), a->GetVoidPointer(offset), tuples*tupleSize);
return b;
}
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::AllocatePositionArrays()
{
this->Superclass::AllocatePositionArrays();
this->CoordinateOM->Allocate(this->NumberOfPieces);
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::DeletePositionArrays()
{
this->Superclass::DeletePositionArrays();
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::WriteAppendedPiece(int index,
vtkIndent indent)
{
this->Superclass::WriteAppendedPiece(index, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCoordinatesAppended(this->GetInput()->GetXCoordinates(),
this->GetInput()->GetYCoordinates(),
this->GetInput()->GetZCoordinates(),
indent, &this->CoordinateOM->GetPiece(index));
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::WriteAppendedPieceData(int index)
{
// Split progress range by the approximate fractions 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 the superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteAppendedPieceData(index);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for the coordinates arrays.
this->SetProgressRange(progressRange, 1, fractions);
// Write the coordinates arrays.
this->WriteCoordinatesAppendedData(this->GetInput()->GetXCoordinates(),
this->GetInput()->GetYCoordinates(),
this->GetInput()->GetZCoordinates(),
this->CurrentTimeIndex,
&this->CoordinateOM->GetPiece(index));
this->CoordinateOM->GetPiece(index).Allocate(0); //mark it invalid
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::WriteInlinePiece(vtkIndent indent)
{
// Split progress range by the approximate fractions 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 the superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteInlinePiece(indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for the coordinates arrays.
this->SetProgressRange(progressRange, 1, fractions);
// Write the coordinates arrays.
this->WriteCoordinatesInline(this->GetInput()->GetXCoordinates(),
this->GetInput()->GetYCoordinates(),
this->GetInput()->GetZCoordinates(),
indent);
}
//----------------------------------------------------------------------------
void vtkXMLRectilinearGridWriter::CalculateSuperclassFraction(float* fractions)
{
int extent[6];
this->ExtentTranslator->SetPiece(this->CurrentPiece);
this->ExtentTranslator->PieceToExtent();
this->ExtentTranslator->GetExtent(extent);
int dims[3] = {extent[1]-extent[0]+1,
extent[3]-extent[2]+1,
extent[5]-extent[4]+1};
// The amount of data written by the superclass comes from the
// point/cell data arrays.
vtkIdType superclassPieceSize =
(this->GetInput()->GetPointData()->GetNumberOfArrays()*dims[0]*dims[1]*dims[2]+
this->GetInput()->GetCellData()->GetNumberOfArrays()*(dims[0]-1)*(dims[1]-1)*(dims[2]-1));
// The total data written includes the coordinate arrays.
vtkIdType totalPieceSize =
superclassPieceSize + dims[0] + dims[1] + dims[2];
if(totalPieceSize == 0)
{
totalPieceSize = 1;
}
fractions[0] = 0;
fractions[1] = fractions[0] + float(superclassPieceSize)/totalPieceSize;
fractions[2] = 1;
}
//----------------------------------------------------------------------------
int vtkXMLRectilinearGridWriter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkRectilinearGrid");
return 1;
}