VTK  9.3.20241006
vtkAOSDataArrayTemplate.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
22#ifndef vtkAOSDataArrayTemplate_h
23#define vtkAOSDataArrayTemplate_h
24
25#include "vtkBuffer.h" // For storage buffer.
26#include "vtkBuild.h" // For VTK_BUILD_SHARED_LIBS
27#include "vtkCommonCoreModule.h" // For export macro
28#include "vtkCompiler.h" // for VTK_USE_EXTERN_TEMPLATE
29#include "vtkDataArrayMeta.h" // For vtkDataArrayMeta::ComponentType
30#include "vtkGenericDataArray.h"
31
32namespace vtk
33{
34namespace detail
35{
36VTK_ABI_NAMESPACE_BEGIN
37template <typename ArrayType, ComponentIdType TupleSize>
38struct TupleRange;
39template <typename ArrayType, ComponentIdType TupleSize,
40 typename ForceValueTypeForVtkDataArray = double>
41struct ValueRange;
42VTK_ABI_NAMESPACE_END
43} // namespace detail
44} // namespace vtk
45
46// The export macro below makes no sense, but is necessary for older compilers
47// when we export instantiations of this class from vtkCommonCore.
48VTK_ABI_NAMESPACE_BEGIN
49template <class ValueTypeT>
50class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate
51 : public vtkGenericDataArray<vtkAOSDataArrayTemplate<ValueTypeT>, ValueTypeT>
52{
54
55 // Friendship required by vtkDataArray(Value/Tuple)Range so that it can access the memory buffer
56 // which is required to avoid accessing raw pointers that might no longer be valid.
57 template <typename ArrayType, vtk::ComponentIdType TupleSize>
59 template <typename ArrayType, vtk::ComponentIdType TupleSize,
60 typename ForceValueTypeForVtkDataArray>
62
63public:
66 typedef typename Superclass::ValueType ValueType;
67
69 {
72 VTK_DATA_ARRAY_ALIGNED_FREE = vtkAbstractArray::VTK_DATA_ARRAY_ALIGNED_FREE,
73 VTK_DATA_ARRAY_USER_DEFINED = vtkAbstractArray::VTK_DATA_ARRAY_USER_DEFINED
74 };
75
77
82 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
83 {
84 return this->Buffer->GetBuffer()[valueIdx];
85 }
86
90 void SetValue(vtkIdType valueIdx, ValueType value)
91 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
92 {
93 this->Buffer->GetBuffer()[valueIdx] = value;
94 }
95
97
100 void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const
101 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
102 {
103 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
104 std::copy(this->Buffer->GetBuffer() + valueIdx,
105 this->Buffer->GetBuffer() + valueIdx + this->NumberOfComponents, tuple);
106 }
108
110
113 void SetTypedTuple(vtkIdType tupleIdx, const ValueType* tuple)
114 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
115 {
116 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
117 std::copy(tuple, tuple + this->NumberOfComponents, this->Buffer->GetBuffer() + valueIdx);
118 }
120
121 void GetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
122 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
123 {
124 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
125 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
126 {
127 tuple[ii] = static_cast<vtkTypeInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
128 }
129 }
130
131 void SetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
132 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
133 {
134 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
135 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
136 {
137 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
138 }
139 }
140
141 void GetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
142 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
143 {
144 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
145 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
146 {
147 tuple[ii] = static_cast<vtkTypeUInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
148 }
149 }
150
151 void SetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
152 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
153 {
154 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
155 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
156 {
157 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
158 }
159 }
160
164 ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
165 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
166 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
167 {
168 return this->Buffer->GetBuffer()[this->NumberOfComponents * tupleIdx + comp];
169 }
170
172
175 void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
176 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
177 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
178 {
179 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
180 this->SetValue(valueIdx, value);
181 }
183
185
188 void FillTypedComponent(int compIdx, ValueType value) override;
190
192
195 void FillValue(ValueType value) override;
196 void Fill(double value) override;
198
200
206 void* WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override;
208
210
218 void* GetVoidPointer(vtkIdType valueIdx) override;
220
222
236 void SetArray(VTK_ZEROCOPY ValueType* array, vtkIdType size, int save, int deleteMethod);
238 void SetVoidArray(void* array, vtkIdType size, int save) override;
239 void SetVoidArray(void* array, vtkIdType size, int save, int deleteMethod) override;
241
248 void SetArrayFreeFunction(void (*callback)(void*)) override;
249
250 // Overridden for optimized implementations:
251 void SetTuple(vtkIdType tupleIdx, const float* tuple) override;
252 void SetTuple(vtkIdType tupleIdx, const double* tuple) override;
253 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
254 // using Superclass::SetTuple;
255 void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
256 {
257 this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx, source);
258 }
259 void InsertTuple(vtkIdType tupleIdx, const float* source) override;
260 void InsertTuple(vtkIdType tupleIdx, const double* source) override;
261 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
262 // using Superclass::InsertTuple;
263 void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
264 {
265 this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx, source);
266 }
267 void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override;
268 vtkIdType InsertNextTuple(const float* tuple) override;
269 vtkIdType InsertNextTuple(const double* tuple) override;
270 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
271 // using Superclass::InsertNextTuple;
273 {
274 return this->Superclass::InsertNextTuple(srcTupleIdx, source);
275 }
276 void GetTuple(vtkIdType tupleIdx, double* tuple) override;
277 double* GetTuple(vtkIdType tupleIdx) override;
278
290
295 typedef ValueType* Iterator;
296 Iterator Begin() { return Iterator(this->GetVoidPointer(0)); }
297 Iterator End() { return Iterator(this->GetVoidPointer(this->MaxId + 1)); }
298
300
309
312 bool HasStandardMemoryLayout() const override { return true; }
313 void ShallowCopy(vtkDataArray* other) override;
314
315 // Reimplemented for efficiency:
317 vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray* source) override;
318 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
319 // using Superclass::InsertTuples;
320 void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override
321 {
322 this->Superclass::InsertTuples(dstIds, srcIds, source);
323 }
325 vtkIdType dstStart, vtkIdList* srcIds, vtkAbstractArray* source) override
326 {
327 this->Superclass::InsertTuplesStartingAt(dstStart, srcIds, source);
328 }
329
330protected:
333
338 bool AllocateTuples(vtkIdType numTuples);
339
345
347
348private:
350 void operator=(const vtkAOSDataArrayTemplate&) = delete;
351
352 friend class vtkGenericDataArray<vtkAOSDataArrayTemplate<ValueTypeT>, ValueTypeT>;
353};
354
355// Declare vtkArrayDownCast implementations for AoS containers:
357
358VTK_ABI_NAMESPACE_END
359
360// This macro is used by the subclasses to create dummy
361// declarations for these functions such that the wrapper
362// can see them. The wrappers ignore vtkAOSDataArrayTemplate.
363#define vtkCreateWrappedArrayInterface(T) \
364 vtkCreateReadOnlyWrappedArrayInterface(T) void SetTypedTuple(vtkIdType i, const T* tuple) \
365 VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
366 void InsertTypedTuple(vtkIdType i, const T* tuple) VTK_EXPECTS(0 <= i); \
367 vtkIdType InsertNextTypedTuple(const T* tuple); \
368 void SetValue(vtkIdType id, T value) VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
369 bool SetNumberOfValues(vtkIdType number) override; \
370 void InsertValue(vtkIdType id, T f) VTK_EXPECTS(0 <= id); \
371 vtkIdType InsertNextValue(T f); \
372 T* WritePointer(vtkIdType id, vtkIdType number); \
373 T* GetPointer(vtkIdType id); \
374 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save); \
375 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save, int deleteMethod)
376
377#define vtkCreateReadOnlyWrappedArrayInterface(T) \
378 int GetDataType() const override; \
379 void GetTypedTuple(vtkIdType i, T* tuple) VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
380 T GetValue(vtkIdType id) const VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
381 T* GetValueRange(int comp) VTK_SIZEHINT(2); \
382 T* GetValueRange() VTK_SIZEHINT(2);
383
384#endif // header guard
385
386// This portion must be OUTSIDE the include blockers. This is used to tell
387// libraries other than vtkCommonCore that instantiations of
388// vtkAOSDataArrayTemplate can be found externally. This prevents each library
389// from instantiating these on their own.
390#ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
391#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
392 namespace vtkDataArrayPrivate \
393 { \
394 VTK_ABI_NAMESPACE_BEGIN \
395 VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkAOSDataArrayTemplate<T>, double); \
396 VTK_ABI_NAMESPACE_END \
397 } \
398 VTK_ABI_NAMESPACE_BEGIN \
399 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate<T>; \
400 VTK_ABI_NAMESPACE_END
401
402#elif defined(VTK_USE_EXTERN_TEMPLATE)
403#ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
404#define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
405#ifdef _MSC_VER
406#pragma warning(push)
407// The following is needed when the vtkAOSDataArrayTemplate is declared
408// dllexport and is used from another class in vtkCommonCore
409#pragma warning(disable : 4910) // extern and dllexport incompatible
410#endif
411VTK_ABI_NAMESPACE_BEGIN
412vtkExternTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
413VTK_ABI_NAMESPACE_END
414#ifdef _MSC_VER
415#pragma warning(pop)
416#endif
417#endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
418
419// The following clause is only for MSVC
420#elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
421#pragma warning(push)
422
423// C4091: 'extern ' : ignored on left of 'int' when no variable is declared
424#pragma warning(disable : 4091)
425
426// Compiler-specific extension warning.
427#pragma warning(disable : 4231)
428
429// We need to disable warning 4910 and do an extern dllexport
430// anyway. When deriving vtkCharArray and other types from an
431// instantiation of this template the compiler does an explicit
432// instantiation of the base class. From outside the vtkCommon
433// library we block this using an extern dllimport instantiation.
434// For classes inside vtkCommon we should be able to just do an
435// extern instantiation, but VS complains about missing
436// definitions. We cannot do an extern dllimport inside vtkCommon
437// since the symbols are local to the dll. An extern dllexport
438// seems to be the only way to convince VS to do the right
439// thing, so we just disable the warning.
440#pragma warning(disable : 4910) // extern and dllexport incompatible
441
442// Use an "extern explicit instantiation" to give the class a DLL
443// interface. This is a compiler-specific extension.
444VTK_ABI_NAMESPACE_BEGIN
445vtkInstantiateTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
446VTK_ABI_NAMESPACE_END
447
448#pragma warning(pop)
449
450#endif
451
452// VTK-HeaderTest-Exclude: vtkAOSDataArrayTemplate.h
Array-Of-Structs implementation of vtkGenericDataArray.
static vtkAOSDataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkAOSDataArrayTemplate.
void GetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of integers.
void SetVoidArray(void *array, vtkIdType size, int save) override
This method lets the user specify data to be held by the array.
void SetArray(ValueType *array, vtkIdType size, int save)
This method lets the user specify data to be held by the array.
void SetTuple(vtkIdType tupleIdx, const float *tuple) override
Set the data tuple at tupleIdx.
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
void SetTuple(vtkIdType tupleIdx, const double *tuple) override
Set the data tuple at tupleIdx.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray *source) override
Copy n consecutive tuples starting at srcStart from the source array to this array,...
void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source) override
Copy the tuples indexed in srcIds from the source array to the tuple locations starting at index dstS...
void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Set the tuple at dstTupleIdx in this array to the tuple at srcTupleIdx in the source array.
void DataElementChanged(vtkIdType)
Tell the array explicitly that a single data element has changed.
void SetVoidArray(void *array, vtkIdType size, int save, int deleteMethod) override
This method lets the user specify data to be held by the array.
ValueType * WritePointer(vtkIdType valueIdx, vtkIdType numValues)
Get the address of a particular data index.
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override
Copy the tuples indexed in srcIds from the source array to the tuple locations indexed by dstIds in t...
void GetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of unsigned integers.
void FillValue(ValueType value) override
Set all the values in array to value.
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
void InsertTuple(vtkIdType tupleIdx, const float *source) override
Insert the data tuple at tupleIdx.
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
void * WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override
Get the address of a particular data index.
void SetArray(ValueType *array, vtkIdType size, int save, int deleteMethod)
This method lets the user specify data to be held by the array.
void SetArrayFreeFunction(void(*callback)(void *)) override
This method allows the user to specify a custom free function to be called when the array is dealloca...
vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
bool ReallocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
void GetTuple(vtkIdType tupleIdx, double *tuple) override
Get the data tuple at tupleIdx by filling in a user-provided array, Make sure that your array is larg...
void InsertTuple(vtkIdType tupleIdx, const double *source) override
Insert the data tuple at tupleIdx.
bool HasStandardMemoryLayout() const override
Returns true if this array uses the standard memory layout defined in the VTK user guide,...
void * GetVoidPointer(vtkIdType valueIdx) override
Get the address of a particular data index.
vtkIdType InsertNextTuple(const float *tuple) override
Insert the data tuple at the end of the array and return the tuple index at which the data was insert...
void FillTypedComponent(int compIdx, ValueType value) override
Set component comp of all tuples to value.
ValueType * GetPointer(vtkIdType valueIdx)
Get the address of a particular data index.
static vtkAOSDataArrayTemplate * New()
void SetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of integers.
double * GetTuple(vtkIdType tupleIdx) override
Get the data tuple at tupleIdx.
void Fill(double value) override
Set all the values in array to value.
void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override
Insert value at the location specified by tupleIdx and compIdx.
vtkTemplateTypeMacro(SelfType, GenericDataArrayType)
void SetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of unsigned integers.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
~vtkAOSDataArrayTemplate() override
void ShallowCopy(vtkDataArray *other) override
Create a shallow copy of other into this, if possible.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
int GetArrayType() const override
Method for type-checking in FastDownCast implementations.
bool AllocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
ValueType * Iterator
Legacy support for array-of-structs value iteration.
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
vtkBuffer< ValueType > * Buffer
vtkIdType InsertNextTuple(const double *tuple) override
Insert the data tuple at the end of the array and return the tuple index at which the data was insert...
Superclass::ValueType ValueType
Abstract superclass for all arrays.
int GetNumberOfComponents() const
Set/Get the dimension (n) of the components.
vtkIdType GetNumberOfTuples() const
Get the number of complete tuples (a component group) in the array.
virtual void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Set the tuple at dstTupleIdx in this array to the tuple at srcTupleIdx in the source array.
virtual void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source)=0
Copy the tuples indexed in srcIds from the source array to the tuple locations indexed by dstIds in t...
virtual void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source)=0
Copy the tuples indexed in srcIds from the source array to the tuple locations starting at index dstS...
virtual void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
vtkIdType GetNumberOfValues() const
Get the total number of values in the array.
virtual vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Insert the tuple from srcTupleIdx in the source array at the end of this array.
Abstract superclass to iterate over elements in an vtkAbstractArray.
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others.
Definition vtkBuffer.h:27
abstract superclass for arrays of numeric data
Base interface for all typed vtkDataArray subclasses.
void DataChanged() override
Tell the array explicitly that the data has changed.
void * GetVoidPointer(vtkIdType valueIdx) override
Default implementation raises a runtime error.
list of point or cell ids
Definition vtkIdList.h:133
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
Specialization of tuple ranges and iterators for vtkAOSDataArrayTemplate.
int ComponentIdType
#define vtkArrayDownCast_TemplateFastCastMacro(ArrayT)
Same as vtkArrayDownCast_FastCastMacro, but treats ArrayT as a single-parameter template (the paramet...
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
This file contains a variety of metaprogramming constructs for working with vtkDataArrays.
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
Definition vtkType.h:410
int vtkIdType
Definition vtkType.h:315
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
Definition vtkType.h:363
void save(Archiver &ar, const std::string &str, const unsigned int vtkNotUsed(version))
#define VTK_EXPECTS(x)
#define VTK_ZEROCOPY
#define VTK_NEWINSTANCE