Go to the documentation of this file.
34 #ifndef vtkAOSDataArrayTemplate_h
35 #define vtkAOSDataArrayTemplate_h
37 #include "vtkCommonCoreModule.h"
43 template <
class ValueTypeT>
52 typedef typename Superclass::ValueType
ValueType;
70 return this->Buffer->GetBuffer()[valueIdx];
79 this->Buffer->GetBuffer()[valueIdx] =
value;
90 std::copy(this->Buffer->GetBuffer() + valueIdx,
104 std::copy(tuple, tuple + this->NumberOfComponents,
105 this->Buffer->GetBuffer() + valueIdx);
114 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
116 return this->Buffer->GetBuffer()[this->NumberOfComponents*tupleIdx + comp];
125 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
127 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
189 int deleteMethod)
override;
207 { this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx,
source); }
214 { this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx,
source); }
216 double value)
override;
223 {
return this->Superclass::InsertNextTuple(srcTupleIdx,
source); }
260 switch (
source->GetArrayType())
263 if (vtkDataTypesCompare(
source->GetDataType(),
287 { this->Superclass::InsertTuples(dstIds, srcIds,
source); }
322 #define vtkCreateWrappedArrayInterface(T) \
323 int GetDataType() override;\
324 void GetTypedTuple(vtkIdType i, T* tuple) \
325 VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
326 void SetTypedTuple(vtkIdType i, const T* tuple) \
327 VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
328 void InsertTypedTuple(vtkIdType i, const T* tuple) \
329 VTK_EXPECTS(0 <= i); \
330 vtkIdType InsertNextTypedTuple(const T* tuple); \
331 T GetValue(vtkIdType id) \
332 VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
333 void SetValue(vtkIdType id, T value) \
334 VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
335 void SetNumberOfValues(vtkIdType number) override;\
336 void InsertValue(vtkIdType id, T f) \
337 VTK_EXPECTS(0 <= id); \
338 vtkIdType InsertNextValue(T f); \
339 T *GetValueRange(int comp) VTK_SIZEHINT(2); \
340 T *GetValueRange() VTK_SIZEHINT(2); \
341 T* WritePointer(vtkIdType id, vtkIdType number); \
342 T* GetPointer(vtkIdType id); \
343 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save); \
344 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save, int deleteMethod)
346 #endif // header guard
352 #ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
353 #define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
354 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate< T >
355 #elif defined(VTK_USE_EXTERN_TEMPLATE)
356 #ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
357 #define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
359 #pragma warning (push)
362 #pragma warning (disable: 4910) // extern and dllexport incompatible
367 #pragma warning (pop)
369 #endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
372 #elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
373 #pragma warning (push)
376 #pragma warning (disable: 4091)
379 #pragma warning (disable: 4231)
392 #pragma warning (disable: 4910) // extern and dllexport incompatible
399 #pragma warning (pop)
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
Template defining traits of native types used by VTK.
void * GetVoidPointer(vtkIdType valueIdx) override
Default implementation raises a runtime error.
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
void SetVoidArray(void *, vtkIdType, int) override
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
void save(Archiver &ar, const vtkUnicodeString &str, const unsigned int vtkNotUsed(version))
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
Base interface for all typed vtkDataArray subclasses.
abstract superclass for arrays of numeric data
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 SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
double * GetTuple(vtkIdType tupleIdx) override
Get the data tuple at tupleIdx.
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...
void DataChanged() override
Tell the array explicitly that the data has changed.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkIdType GetNumberOfTuples()
Get the number of complete tuples (a component group) in the array.
virtual void FillTypedComponent(int compIdx, ValueType value)
Set component comp of all tuples to value.
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...
vtkIdType GetNumberOfValues() const
Get the total number of values in the array.
bool HasStandardMemoryLayout() override
Returns true if this array uses the standard memory layout defined in the VTK user guide,...
bool AllocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
vtkTemplateTypeMacro(SelfType, vtkDataArray) enum
Compile time access to the VTK type identifier.
list of point or cell ids
void DataElementChanged(vtkIdType)
Tell the array explicitly that a single data element has changed.
virtual void Fill(double value)
Fill all values of a data array with a specified value.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
virtual void ShallowCopy(vtkDataArray *other)
Create a shallow copy of other into this, if possible.
virtual void FillValue(ValueType value)
Set all the values in array to value.
int GetArrayType() override
Method for type-checking in FastDownCast implementations.
Abstract superclass for all arrays.
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override
Insert value at the location specified by tupleIdx and compIdx.
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
ValueType * WritePointer(vtkIdType valueIdx, vtkIdType numValues)
Abstract superclass to iterate over elements in an vtkAbstractArray.
vtkArrayDownCast_TemplateFastCastMacro(vtkTypedDataArray) template< class Scalar > inline typename vtkTypedDataArray< Scalar >
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...
ValueType * GetPointer(vtkIdType valueIdx)
vtkBuffer< ValueType > * Buffer
static vtkAOSDataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkAOSDataArrayTemplate.
Array-Of-Structs implementation of vtkGenericDataArray.
void * WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override
Get the address of a particular data index.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
ValueType * Iterator
Legacy support for array-of-structs value iteration.
bool ReallocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
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.