forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkSLACParticleReader.cxx
360 lines (307 loc) · 11.6 KB
/
vtkSLACParticleReader.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
// -*- c++ -*-
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSLACParticleReader.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.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#include "vtkSLACParticleReader.h"
#include "vtkCallbackCommand.h"
#include "vtkCellArray.h"
#include "vtkCompositeDataIterator.h"
#include "vtkDataArraySelection.h"
#include "vtkDoubleArray.h"
#include "vtkIdTypeArray.h"
#include "vtkIntArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPoints.h"
#include "vtkPolyData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkUnsignedCharArray.h"
#include "vtkUnstructuredGrid.h"
#include "vtkSmartPointer.h"
#define VTK_CREATE(type, name) \
vtkSmartPointer<type> name = vtkSmartPointer<type>::New()
#include <netcdf.h>
//=============================================================================
#define CALL_NETCDF(call) \
{ \
int errorcode = call; \
if (errorcode != NC_NOERR) \
{ \
vtkErrorMacro(<< "netCDF Error: " << nc_strerror(errorcode)); \
return 0; \
} \
}
#define WRAP_NETCDF(call) \
{ \
int errorcode = call; \
if (errorcode != NC_NOERR) return errorcode; \
}
#ifdef VTK_USE_64BIT_IDS
#ifdef NC_INT64
// This may or may not work with the netCDF 4 library reading in netCDF 3 files.
#define nc_get_vars_vtkIdType nc_get_vars_longlong
#else // NC_INT64
static int nc_get_vars_vtkIdType(int ncid, int varid, const size_t start[],
const size_t count[], const ptrdiff_t stride[],
vtkIdType *ip)
{
// Step 1, figure out how many entries in the given variable.
int numdims;
WRAP_NETCDF(nc_inq_varndims(ncid, varid, &numdims));
vtkIdType numValues = 1;
for (int dim = 0; dim < numdims; dim++)
{
numValues *= count[dim];
}
// Step 2, read the data in as 32 bit integers. Recast the input buffer
// so we do not have to create a new one.
long *smallIp = reinterpret_cast<long*>(ip);
WRAP_NETCDF(nc_get_vars_long(ncid, varid, start, count, stride, smallIp));
// Step 3, recast the data from 32 bit integers to 64 bit integers. Since we
// are storing both in the same buffer, we need to be careful to not overwrite
// uncopied 32 bit numbers with 64 bit numbers. We can do that by copying
// backwards.
for (vtkIdType i = numValues-1; i >= 0; i--)
{
ip[i] = static_cast<vtkIdType>(smallIp[i]);
}
return NC_NOERR;
}
#endif // NC_INT64
#else // VTK_USE_64_BIT_IDS
#define nc_get_vars_vtkIdType nc_get_vars_int
#endif // VTK_USE_64BIT_IDS
//=============================================================================
#define MY_MIN(x, y) ((x) < (y) ? (x) : (y))
#define MY_MAX(x, y) ((x) < (y) ? (y) : (x))
// //=============================================================================
// static int NetCDFTypeToVTKType(nc_type type)
// {
// switch (type)
// {
// case NC_BYTE: return VTK_UNSIGNED_CHAR;
// case NC_CHAR: return VTK_CHAR;
// case NC_SHORT: return VTK_SHORT;
// case NC_INT: return VTK_INT;
// case NC_FLOAT: return VTK_FLOAT;
// case NC_DOUBLE: return VTK_DOUBLE;
// default:
// vtkGenericWarningMacro(<< "Unknown netCDF variable type "
// << type);
// return -1;
// }
// }
//=============================================================================
// This class automatically closes a netCDF file descripter when it goes out
// of scope. This allows us to exit on error without having to close the
// file at every instance.
class vtkSLACParticleReaderAutoCloseNetCDF
{
public:
vtkSLACParticleReaderAutoCloseNetCDF(const char *filename, int omode,
bool quiet=false) {
int errorcode = nc_open(filename, omode, &this->fd);
if (errorcode != NC_NOERR)
{
if (!quiet)
{
vtkGenericWarningMacro(<< "Could not open " << filename << endl
<< nc_strerror(errorcode));
}
this->fd = -1;
}
}
~vtkSLACParticleReaderAutoCloseNetCDF() {
if (this->fd != -1)
{
nc_close(this->fd);
}
}
int operator()() const { return this->fd; }
bool Valid() const { return this->fd != -1; }
protected:
int fd;
private:
vtkSLACParticleReaderAutoCloseNetCDF(); // Not implemented
vtkSLACParticleReaderAutoCloseNetCDF(const vtkSLACParticleReaderAutoCloseNetCDF &); // Not implemented
void operator=(const vtkSLACParticleReaderAutoCloseNetCDF &); // Not implemented
};
//=============================================================================
vtkStandardNewMacro(vtkSLACParticleReader);
//-----------------------------------------------------------------------------
vtkSLACParticleReader::vtkSLACParticleReader()
{
this->SetNumberOfInputPorts(0);
this->FileName = NULL;
}
vtkSLACParticleReader::~vtkSLACParticleReader()
{
this->SetFileName(NULL);
}
void vtkSLACParticleReader::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if (this->FileName)
{
os << indent << "FileName: " << this->FileName << endl;
}
else
{
os << indent << "FileName: (null)\n";
}
}
//-----------------------------------------------------------------------------
int vtkSLACParticleReader::CanReadFile(const char *filename)
{
vtkSLACParticleReaderAutoCloseNetCDF ncFD(filename, NC_NOWRITE, true);
if (!ncFD.Valid()) return 0;
// Check for the existence of several arrays we know should be in the file.
int dummy;
if (nc_inq_varid(ncFD(), "particlePos",&dummy) != NC_NOERR) return 0;
if (nc_inq_varid(ncFD(), "particleInfo", &dummy) != NC_NOERR) return 0;
if (nc_inq_varid(ncFD(), "time", &dummy) != NC_NOERR) return 0;
return 1;
}
//-----------------------------------------------------------------------------
vtkIdType vtkSLACParticleReader::GetNumTuplesInVariable(int ncFD, int varId,
int expectedNumComponents)
{
int numDims;
CALL_NETCDF(nc_inq_varndims(ncFD, varId, &numDims));
if (numDims != 2)
{
char name[NC_MAX_NAME+1];
CALL_NETCDF(nc_inq_varname(ncFD, varId, name));
vtkErrorMacro(<< "Wrong dimensions on " << name);
return 0;
}
int dimIds[2];
CALL_NETCDF(nc_inq_vardimid(ncFD, varId, dimIds));
size_t dimLength;
CALL_NETCDF(nc_inq_dimlen(ncFD, dimIds[1], &dimLength));
if (static_cast<int>(dimLength) != expectedNumComponents)
{
char name[NC_MAX_NAME+1];
CALL_NETCDF(nc_inq_varname(ncFD, varId, name));
vtkErrorMacro(<< "Unexpected tuple size on " << name);
return 0;
}
CALL_NETCDF(nc_inq_dimlen(ncFD, dimIds[0], &dimLength));
return static_cast<vtkIdType>(dimLength);
}
//-----------------------------------------------------------------------------
int vtkSLACParticleReader::RequestInformation(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **vtkNotUsed(inputVector),
vtkInformationVector *outputVector)
{
if (!this->FileName)
{
vtkErrorMacro("No filename specified.");
return 0;
}
vtkSLACParticleReaderAutoCloseNetCDF ncFD(this->FileName, NC_NOWRITE);
if (!ncFD.Valid()) return 0;
int timeVar;
CALL_NETCDF(nc_inq_varid(ncFD(), "time", &timeVar));
double timeValue;
CALL_NETCDF(nc_get_var_double(ncFD(), timeVar, &timeValue));
vtkInformation *outInfo = outputVector->GetInformationObject(0);
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_STEPS(), &timeValue, 1);
double timeRange[2];
timeRange[0] = timeRange[1] = timeValue;
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_RANGE(), timeRange, 2);
// Report that we support any number of pieces (but we are only really going
// to load anything for piece 0).
outInfo->Set(vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES(), -1);
return 1;
}
//-----------------------------------------------------------------------------
int vtkSLACParticleReader::RequestData(vtkInformation *vtkNotUsed(request),
vtkInformationVector **vtkNotUsed(inputVector),
vtkInformationVector *outputVector)
{
vtkPolyData *output = vtkPolyData::GetData(outputVector);
if (!this->FileName)
{
vtkErrorMacro("No filename specified.");
return 0;
}
vtkInformation *outInfo = outputVector->GetInformationObject(0);
int requestedPiece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER());
if (requestedPiece != 0)
{
// Return empty data for all but piece 0.
return 1;
}
vtkSLACParticleReaderAutoCloseNetCDF ncFD(this->FileName, NC_NOWRITE);
if (!ncFD.Valid()) return 0;
VTK_CREATE(vtkPoints, points);
int particlePosVar;
CALL_NETCDF(nc_inq_varid(ncFD(), "particlePos", &particlePosVar));
vtkIdType numParticles = this->GetNumTuplesInVariable(ncFD(), particlePosVar, 6);
size_t start[2], count[2];
start[0] = 0; count[0] = numParticles;
start[1] = 0; count[1] = 3;
VTK_CREATE(vtkDoubleArray, coords);
coords->SetNumberOfComponents(3);
coords->SetNumberOfTuples(numParticles);
CALL_NETCDF(nc_get_vars_double(ncFD(), particlePosVar, start, count, NULL,
coords->GetPointer(0)));
points->SetData(coords);
output->SetPoints(points);
VTK_CREATE(vtkDoubleArray, momentum);
momentum->SetName("Momentum");
momentum->SetNumberOfComponents(3);
momentum->SetNumberOfTuples(numParticles);
start[1] = 3;
CALL_NETCDF(nc_get_vars_double(ncFD(), particlePosVar, start, count, NULL,
momentum->GetPointer(0)));
output->GetPointData()->AddArray(momentum);
int particleInfoVar;
CALL_NETCDF(nc_inq_varid(ncFD(), "particleInfo", &particleInfoVar));
start[1] = 0; count[1] = 1;
VTK_CREATE(vtkIdTypeArray, ids);
ids->SetName("ParticleIds");
ids->SetNumberOfComponents(1);
ids->SetNumberOfTuples(numParticles);
CALL_NETCDF(nc_get_vars_vtkIdType(ncFD(), particleInfoVar, start, count, NULL,
ids->GetPointer(0)));
output->GetPointData()->SetGlobalIds(ids);
VTK_CREATE(vtkIntArray, emissionType);
emissionType->SetName("EmissionType");
emissionType->SetNumberOfComponents(1);
emissionType->SetNumberOfTuples(numParticles);
start[1] = 1;
CALL_NETCDF(nc_get_vars_int(ncFD(), particleInfoVar, start, count, NULL,
emissionType->GetPointer(0)));
output->GetPointData()->AddArray(emissionType);
VTK_CREATE(vtkCellArray, verts);
verts->Allocate(verts->EstimateSize(numParticles, 1));
for (vtkIdType i = 0; i < numParticles; i++)
{
verts->InsertNextCell(1, &i);
}
output->SetVerts(verts);
int timeVar;
CALL_NETCDF(nc_inq_varid(ncFD(), "time", &timeVar));
double timeValue;
CALL_NETCDF(nc_get_var_double(ncFD(), timeVar, &timeValue));
output->GetInformation()->Set(vtkDataObject::DATA_TIME_STEPS(),
&timeValue, 1);
return 1;
}