22 #ifndef vtkSOADataArrayTemplate_h
23 #define vtkSOADataArrayTemplate_h
26 #include "vtkCommonCoreModule.h"
32 VTK_ABI_NAMESPACE_BEGIN
33 template <
class ValueTypeT>
62 this->GetTupleIndexFromValueIndex(valueIdx, tupleIdx, comp);
75 this->GetTupleIndexFromValueIndex(valueIdx, tupleIdx, comp);
85 if (this->StorageType == StorageTypeEnum::SOA)
87 for (
size_t cc = 0; cc < this->Data.size(); cc++)
89 tuple[cc] = this->Data[cc]->GetBuffer()[tupleIdx];
94 ValueType* buffer = this->AoSData->GetBuffer();
105 if (this->StorageType == StorageTypeEnum::SOA)
107 for (
size_t cc = 0; cc < this->Data.size(); ++cc)
109 this->Data[cc]->GetBuffer()[tupleIdx] = tuple[cc];
114 ValueType* buffer = this->AoSData->GetBuffer();
125 if (this->StorageType == StorageTypeEnum::SOA)
127 return this->Data[comp]->GetBuffer()[tupleIdx];
137 if (this->StorageType == StorageTypeEnum::SOA)
139 this->Data[comp]->GetBuffer()[tupleIdx] =
value;
166 bool save =
false,
int deleteMethod = VTK_DATA_ARRAY_FREE);
227 this->Superclass::InsertTuples(dstIds, srcIds,
source);
232 this->Superclass::InsertTuplesStartingAt(dstStart, srcIds,
source);
256 std::vector<vtkBuffer<ValueType>*>
Data;
289 VTK_ABI_NAMESPACE_END
296 #ifdef VTK_SOA_DATA_ARRAY_TEMPLATE_INSTANTIATING
297 #define VTK_SOA_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
298 namespace vtkDataArrayPrivate \
300 VTK_ABI_NAMESPACE_BEGIN \
301 VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkSOADataArrayTemplate<T>, double); \
302 VTK_ABI_NAMESPACE_END \
304 VTK_ABI_NAMESPACE_BEGIN \
305 template class VTKCOMMONCORE_EXPORT vtkSOADataArrayTemplate<T>; \
306 VTK_ABI_NAMESPACE_END
308 #elif defined(VTK_USE_EXTERN_TEMPLATE)
309 #ifndef VTK_SOA_DATA_ARRAY_TEMPLATE_EXTERN
310 #define VTK_SOA_DATA_ARRAY_TEMPLATE_EXTERN
312 #pragma warning(push)
315 #pragma warning(disable : 4910)
317 VTK_ABI_NAMESPACE_BEGIN
322 VTK_ABI_NAMESPACE_END
326 #elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
327 #pragma warning(push)
330 #pragma warning(disable : 4091)
333 #pragma warning(disable : 4231)
346 #pragma warning(disable : 4910)
350 VTK_ABI_NAMESPACE_BEGIN
355 VTK_ABI_NAMESPACE_END
Abstract superclass for all arrays.
int GetNumberOfComponents() const
Set/Get the dimension (n) of the components.
@ VTK_DATA_ARRAY_USER_DEFINED
@ VTK_DATA_ARRAY_ALIGNED_FREE
Abstract superclass to iterate over elements in an vtkAbstractArray.
abstract superclass for arrays of numeric data
Base interface for all typed vtkDataArray subclasses.
list of point or cell ids
Struct-Of-Arrays implementation of vtkGenericDataArray.
void ShallowCopy(vtkDataArray *other) override
Create a shallow copy of other into this, if possible.
void ExportToVoidPointer(void *ptr) override
Export a copy of the data in AoS ordering to the preallocated memory buffer.
Superclass::ValueType ValueType
void * GetVoidPointer(vtkIdType valueIdx) override
Use of this method is discouraged, it creates a deep copy of the data into a contiguous AoS-ordered b...
vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
bool ReallocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
vtkTemplateTypeMacro(SelfType, GenericDataArrayType)
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override
See documentation from parent class.
void FillTypedComponent(int compIdx, ValueType value) override
Set component comp of all tuples to value.
void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray *source) override
See documentation from parent class.
void SetArrayFreeFunction(int comp, void(*callback)(void *))
This method allows the user to specify a custom free function to be called when the array is dealloca...
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
~vtkSOADataArrayTemplate() override
void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source) override
See documentation from parent class.
vtkBuffer< ValueType > * AoSData
vtkSOADataArrayTemplate()
bool AllocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
vtkSOADataArrayTemplate< ValueTypeT > SelfType
StorageTypeEnum
Because we still need to support GetVoidPointer() for both reading from and writing to memory we may ...
static vtkSOADataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkDataArray.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
std::vector< vtkBuffer< ValueType > * > Data
void SetArray(int comp, ValueType *array, vtkIdType size, bool updateMaxId=false, bool save=false, int deleteMethod=VTK_DATA_ARRAY_FREE)
Use this API to pass externally allocated memory to this instance.
static vtkSOADataArrayTemplate * New()
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 SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
StorageTypeEnum StorageType
ValueType * GetComponentArrayPointer(int comp)
Return a pointer to a contiguous block of memory containing all values for a particular components (i...
void CopyData(vtkSOADataArrayTemplate< ValueType > *src)
int GetArrayType() const override
Method for type-checking in FastDownCast implementations.
void SetNumberOfComponents(int numComps) override
Set/Get the dimension (n) of the components.
void SetTypedComponent(vtkIdType tupleIdx, int compIdx, ValueType value)
Set component compIdx of the tuple at tupleIdx to value.
ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const
Get component compIdx of the tuple at tupleIdx.
vtkInstantiateTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkArrayIteratorTemplate)
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkExternTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkSOADataArrayTemplate)
vtkArrayDownCast_TemplateFastCastMacro(vtkSOADataArrayTemplate)
void save(Archiver &ar, const std::string &str, const unsigned int vtkNotUsed(version))