forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkStructuredPointsReader.cxx
532 lines (472 loc) · 15.2 KB
/
vtkStructuredPointsReader.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
/*=========================================================================
Program: Visualization Toolkit
Module: vtkStructuredPointsReader.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 "vtkStructuredPointsReader.h"
#include "vtkDataArray.h"
#include "vtkErrorCode.h"
#include "vtkFieldData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkStructuredPoints.h"
vtkStandardNewMacro(vtkStructuredPointsReader);
vtkStructuredPointsReader::vtkStructuredPointsReader()
{
vtkStructuredPoints *output = vtkStructuredPoints::New();
this->SetOutput(output);
// Releasing data for pipeline parallism.
// Filters will know it is empty.
output->ReleaseData();
output->Delete();
}
vtkStructuredPointsReader::~vtkStructuredPointsReader()
{
}
//----------------------------------------------------------------------------
void vtkStructuredPointsReader::SetOutput(vtkStructuredPoints *output)
{
this->GetExecutive()->SetOutputData(0, output);
}
//----------------------------------------------------------------------------
vtkStructuredPoints* vtkStructuredPointsReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkStructuredPoints* vtkStructuredPointsReader::GetOutput(int idx)
{
return vtkStructuredPoints::SafeDownCast(this->GetOutputDataObject(idx));
}
//----------------------------------------------------------------------------
// Default method performs Update to get information. Not all the old
// structured points sources compute information
int vtkStructuredPointsReader::RequestInformation(
vtkInformation *,
vtkInformationVector **,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
return this->ReadMetaData(outInfo);
}
//----------------------------------------------------------------------------
int vtkStructuredPointsReader::ReadMetaData(vtkInformation *outInfo)
{
this->SetErrorCode( vtkErrorCode::NoError );
char line[256];
int dimsRead=0, arRead=0, originRead=0;
int done=0;
if (!this->OpenVTKFile() || !this->ReadHeader())
{
return 1;
}
// Read structured points specific stuff
if (!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::PrematureEndOfFileError );
return 1;
}
if ( !strncmp(this->LowerCase(line),"dataset",(unsigned long)7) )
{
// Make sure we're reading right type of geometry
if (!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::PrematureEndOfFileError );
return 1;
}
if ( strncmp(this->LowerCase(line),"structured_points",17) )
{
vtkErrorMacro(<< "Cannot read dataset type: " << line);
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::UnrecognizedFileTypeError );
return 1;
}
// Read keyword and number of points
while (!done)
{
if (!this->ReadString(line))
{
break;
}
if ( ! strncmp(this->LowerCase(line), "dimensions",10) )
{
int dim[3];
if (!(this->Read(dim) &&
this->Read(dim+1) &&
this->Read(dim+2)))
{
vtkErrorMacro(<<"Error reading dimensions!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
outInfo->Set(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),
0,dim[0]-1,0,dim[1]-1,0,dim[2]-1);
outInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
0,dim[0]-1,0,dim[1]-1,0,dim[2]-1);
dimsRead = 1;
}
else if ( !strncmp(line,"aspect_ratio",12) ||
!strncmp(line,"spacing",7) )
{
double ar[3];
if (!(this->Read(ar) &&
this->Read(ar+1) &&
this->Read(ar+2)))
{
vtkErrorMacro(<<"Error reading spacing!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
outInfo->Set(vtkDataObject::SPACING(), ar, 3);
arRead = 1;
}
else if ( ! strncmp(line,"origin",6) )
{
double origin[3];
if (!(this->Read(origin) &&
this->Read(origin+1) &&
this->Read(origin+2)))
{
vtkErrorMacro(<<"Error reading origin!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
outInfo->Set(vtkDataObject::ORIGIN(), origin, 3);
originRead = 1;
}
else if ( ! strncmp(line, "point_data", 10) )
{
int npts;
if (!this->Read(&npts))
{
vtkErrorMacro(<<"Cannot read point data!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
while (this->ReadString(line))
{
// read scalar data
//
if ( ! strncmp(this->LowerCase(line), "scalars", 7) )
{
int scalarType = VTK_DOUBLE;
this->ReadString(line);
this->ReadString(line);
if ( ! strncmp(line, "bit", 3) )
{
scalarType = VTK_BIT;
}
else if ( ! strncmp(line, "char", 4) )
{
scalarType = VTK_CHAR;
}
else if ( ! strncmp(line, "unsigned_char", 13) )
{
scalarType = VTK_UNSIGNED_CHAR;
}
else if ( ! strncmp(line, "short", 5) )
{
scalarType = VTK_SHORT;
}
else if ( ! strncmp(line, "unsigned_short", 14) )
{
scalarType = VTK_UNSIGNED_SHORT;
}
else if ( ! strncmp(line, "int", 3) )
{
scalarType = VTK_INT;
}
else if ( ! strncmp(line, "unsigned_int", 12) )
{
scalarType = VTK_UNSIGNED_INT;
}
else if ( ! strncmp(line, "long", 4) )
{
scalarType = VTK_LONG;
}
else if ( ! strncmp(line, "unsigned_long", 13) )
{
scalarType = VTK_UNSIGNED_LONG;
}
else if ( ! strncmp(line, "float", 5) )
{
scalarType = VTK_FLOAT;
}
else if ( ! strncmp(line, "double", 6) )
{
scalarType = VTK_DOUBLE;
}
// the next string could be an integer number of components or a
// lookup table
this->ReadString(line);
int numComp;
if (strcmp(this->LowerCase(line), "lookup_table"))
{
numComp = atoi(line);
if (numComp < 1 || !this->ReadString(line))
{
vtkErrorMacro(<<"Cannot read scalar header!" << " for file: "
<< (this->FileName?this->FileName:"(Null FileName)"));
return 1;
}
}
else
{
numComp = 1;
}
vtkDataObject::SetPointDataActiveScalarInfo( outInfo, scalarType, numComp);
break;
}
else if ( ! strncmp(this->LowerCase(line), "color_scalars", 13) )
{
this->ReadString(line);
this->ReadString(line);
int numComp = atoi(line);
if (numComp < 1)
{
vtkErrorMacro("Cannot read color_scalar header!" << " for file: "
<< (this->FileName?this->FileName:"(Null FileName)"));
return 1;
}
// Color scalar type is predefined by FileType.
int scalarType;
if(this->FileType == VTK_BINARY)
{
scalarType = VTK_UNSIGNED_CHAR;
}
else
{
scalarType = VTK_FLOAT;
}
vtkDataObject::SetPointDataActiveScalarInfo( outInfo, scalarType, numComp);
break;
}
}
break; //out of this loop
}
}
if ( !dimsRead || !arRead || !originRead)
{
vtkWarningMacro(<<"Not all meta data was read form the file.");
}
}
this->CloseVTKFile ();
return 1;
}
int vtkStructuredPointsReader::RequestData(
vtkInformation *,
vtkInformationVector **,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
this->SetErrorCode( vtkErrorCode::NoError );
int numPts=0, numCells=0;
char line[256];
int npts, ncells;
int dimsRead=0, arRead=0, originRead=0;
int done=0;
vtkStructuredPoints *output = vtkStructuredPoints::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
// ImageSource superclass does not do this.
output->ReleaseData();
vtkDebugMacro(<<"Reading vtk structured points file...");
if (!this->OpenVTKFile() || !this->ReadHeader())
{
return 1;
}
// Read structured points specific stuff
//
if (!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::PrematureEndOfFileError );
return 1;
}
if ( !strncmp(this->LowerCase(line),"dataset",(unsigned long)7) )
{
// Make sure we're reading right type of geometry
//
if (!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::PrematureEndOfFileError );
return 1;
}
if ( strncmp(this->LowerCase(line),"structured_points",17) )
{
vtkErrorMacro(<< "Cannot read dataset type: " << line);
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::UnrecognizedFileTypeError );
return 1;
}
// Read keyword and number of points
//
numPts = output->GetNumberOfPoints(); // get default
while (!done)
{
if (!this->ReadString(line))
{
break;
}
if (! strncmp(this->LowerCase(line), "field", 5))
{
vtkFieldData* fd = this->ReadFieldData();
output->SetFieldData(fd);
fd->Delete(); // ?
}
else if ( ! strncmp(line, "dimensions",10) )
{
int dim[3];
if (!(this->Read(dim) &&
this->Read(dim+1) &&
this->Read(dim+2)))
{
vtkErrorMacro(<<"Error reading dimensions!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
numPts = dim[0] * dim[1] * dim[2];
output->SetDimensions(dim);
numCells = output->GetNumberOfCells();
dimsRead = 1;
}
else if ( !strncmp(line,"aspect_ratio",12) || !strncmp(line,"spacing",7) )
{
double ar[3];
if (!(this->Read(ar) &&
this->Read(ar+1) &&
this->Read(ar+2)))
{
vtkErrorMacro(<<"Error reading spacing!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
output->SetSpacing(ar);
arRead = 1;
}
else if ( ! strncmp(line,"origin",6) )
{
double origin[3];
if (!(this->Read(origin) &&
this->Read(origin+1) &&
this->Read(origin+2)))
{
vtkErrorMacro(<<"Error reading origin!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
output->SetOrigin(origin);
originRead = 1;
}
else if ( ! strncmp(line, "cell_data", 9) )
{
if (!this->Read(&ncells))
{
vtkErrorMacro(<<"Cannot read cell data!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
if ( ncells != numCells )
{
vtkErrorMacro(<<"Number of cells don't match data values!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
this->ReadCellData(output, ncells);
break; //out of this loop
}
else if ( ! strncmp(line, "point_data", 10) )
{
if (!this->Read(&npts))
{
vtkErrorMacro(<<"Cannot read point data!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
if ( npts != numPts )
{
vtkErrorMacro(<<"Number of points don't match data values!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
this->ReadPointData(output, npts);
break; //out of this loop
}
else
{
vtkErrorMacro(<< "Unrecognized keyword: " << line);
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
}
if ( !dimsRead ) vtkWarningMacro(<<"No dimensions read.");
if ( !arRead ) vtkWarningMacro(<<"No spacing read.");
if ( !originRead ) vtkWarningMacro(<<"No origin read.");
}
else if ( !strncmp(line,"cell_data",9) )
{
vtkWarningMacro(<<"No geometry defined in data file!");
if (!this->Read(&ncells))
{
vtkErrorMacro(<<"Cannot read cell data!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
this->ReadCellData(output, numCells);
}
else if ( !strncmp(line,"point_data",10) )
{
vtkWarningMacro(<<"No geometry defined in data file!");
if (!this->Read(&npts))
{
vtkErrorMacro(<<"Cannot read point data!");
this->CloseVTKFile ();
this->SetErrorCode( vtkErrorCode::FileFormatError );
return 1;
}
this->ReadPointData(output, numPts);
}
else
{
vtkErrorMacro(<< "Unrecognized keyword: " << line);
}
this->CloseVTKFile ();
return 1;
}
int vtkStructuredPointsReader::FillOutputPortInformation(int,
vtkInformation *info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkStructuredPoints");
return 1;
}
void vtkStructuredPointsReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}