VTK  9.5.20251103
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 vtkArrayTypes::VTK_AOS_DATA_ARRAY>
53{
56
57 // Friendship required by vtkDataArray(Value/Tuple)Range so that it can access the memory buffer
58 // which is required to avoid accessing raw pointers that might no longer be valid.
59 template <typename ArrayType, vtk::ComponentIdType TupleSize>
61 template <typename ArrayType, vtk::ComponentIdType TupleSize,
62 typename ForceValueTypeForVtkDataArray>
64
65public:
68 using typename Superclass::ArrayTypeTag;
69 using typename Superclass::DataTypeTag;
70 using typename Superclass::ValueType;
71
73 {
76 VTK_DATA_ARRAY_ALIGNED_FREE = vtkAbstractArray::VTK_DATA_ARRAY_ALIGNED_FREE,
77 VTK_DATA_ARRAY_USER_DEFINED = vtkAbstractArray::VTK_DATA_ARRAY_USER_DEFINED
78 };
79
81
86 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
87 {
88 return this->Buffer->GetBuffer()[valueIdx];
89 }
90
94 void SetValue(vtkIdType valueIdx, ValueType value)
95 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
96 {
97 this->Buffer->GetBuffer()[valueIdx] = value;
98 }
99
101
104 void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const
105 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
106 {
107 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
108 std::copy(this->Buffer->GetBuffer() + valueIdx,
109 this->Buffer->GetBuffer() + valueIdx + this->NumberOfComponents, tuple);
110 }
112
114
117 void SetTypedTuple(vtkIdType tupleIdx, const ValueType* tuple)
118 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
119 {
120 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
121 std::copy(tuple, tuple + this->NumberOfComponents, this->Buffer->GetBuffer() + valueIdx);
122 }
124
125 void GetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
126 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
127 {
128 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
129 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
130 {
131 tuple[ii] = static_cast<vtkTypeInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
132 }
133 }
134
135 void SetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
136 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
137 {
138 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
139 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
140 {
141 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
142 }
143 }
144
145 void GetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
146 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
147 {
148 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
149 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
150 {
151 tuple[ii] = static_cast<vtkTypeUInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
152 }
153 }
154
155 void SetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
156 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
157 {
158 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
159 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
160 {
161 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
162 }
163 }
164
168 ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
169 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
170 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
171 {
172 return this->Buffer->GetBuffer()[this->NumberOfComponents * tupleIdx + comp];
173 }
174
176
179 void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
180 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
181 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
182 {
183 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
184 this->SetValue(valueIdx, value);
185 }
187
189
192 void FillTypedComponent(int compIdx, ValueType value) override;
194
196
199 void FillValue(ValueType value) override;
200 void Fill(double value) override;
202
204
210 void* WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override;
212
214
222 void* GetVoidPointer(vtkIdType valueIdx) override;
224
226
240 void SetArray(VTK_ZEROCOPY ValueType* array, vtkIdType size, int save, int deleteMethod);
242 void SetVoidArray(void* array, vtkIdType size, int save) override;
243 void SetVoidArray(void* array, vtkIdType size, int save, int deleteMethod) override;
245
252 void SetArrayFreeFunction(void (*callback)(void*)) override;
253
254 // Overridden for optimized implementations:
255 void SetTuple(vtkIdType tupleIdx, const float* tuple) override;
256 void SetTuple(vtkIdType tupleIdx, const double* tuple) override;
257 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
258 // using Superclass::SetTuple;
259 void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
260 {
261 this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx, source);
262 }
263 void InsertTuple(vtkIdType tupleIdx, const float* source) override;
264 void InsertTuple(vtkIdType tupleIdx, const double* source) override;
265 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
266 // using Superclass::InsertTuple;
267 void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
268 {
269 this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx, source);
270 }
271 void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override;
272 vtkIdType InsertNextTuple(const float* tuple) override;
273 vtkIdType InsertNextTuple(const double* tuple) override;
274 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
275 // using Superclass::InsertNextTuple;
277 {
278 return this->Superclass::InsertNextTuple(srcTupleIdx, source);
279 }
280 void GetTuple(vtkIdType tupleIdx, double* tuple) override;
281 double* GetTuple(vtkIdType tupleIdx) override;
282
293 void DataElementChanged(vtkIdType) { this->DataChanged(); }
294
300 Iterator Begin() { return Iterator(this->GetVoidPointer(0)); }
301 Iterator End() { return Iterator(this->GetVoidPointer(this->MaxId + 1)); }
302
304 bool HasStandardMemoryLayout() const override { return true; }
305 void ShallowCopy(vtkDataArray* other) override;
306
307 // Reimplemented for efficiency:
309 vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray* source) override;
310 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
311 // using Superclass::InsertTuples;
312 void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override
313 {
314 this->Superclass::InsertTuples(dstIds, srcIds, source);
315 }
317 vtkIdType dstStart, vtkIdList* srcIds, vtkAbstractArray* source) override
318 {
319 this->Superclass::InsertTuplesStartingAt(dstStart, srcIds, source);
320 }
321
322protected:
325
330 bool AllocateTuples(vtkIdType numTuples);
331
337
339
340private:
342 void operator=(const vtkAOSDataArrayTemplate&) = delete;
343
344 friend class vtkGenericDataArray<SelfType, ValueType, ArrayTypeTag::value>;
345};
346
347// Declare vtkArrayDownCast implementations for AoS containers:
349
350VTK_ABI_NAMESPACE_END
351
352// This macro is used by the subclasses to create dummy
353// declarations for these functions such that the wrapper
354// can see them. The wrappers ignore vtkAOSDataArrayTemplate.
355#define vtkCreateWrappedArrayInterface(T) \
356 int GetDataType() const override; \
357 T GetDataTypeValueMin() const; \
358 T GetDataTypeValueMax() const; \
359 void GetTypedTuple(vtkIdType i, T* tuple) VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
360 T GetValue(vtkIdType id) const VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
361 T* GetValueRange(int comp) VTK_SIZEHINT(2); \
362 T* GetValueRange() VTK_SIZEHINT(2); \
363 void SetTypedTuple(vtkIdType i, const T* tuple) VTK_EXPECTS(0 <= i && i < GetNumberOfTuples()); \
364 void InsertTypedTuple(vtkIdType i, const T* tuple) VTK_EXPECTS(0 <= i); \
365 vtkIdType InsertNextTypedTuple(const T* tuple); \
366 void SetValue(vtkIdType id, T value) VTK_EXPECTS(0 <= id && id < GetNumberOfValues()); \
367 bool SetNumberOfValues(vtkIdType number) override; \
368 void InsertValue(vtkIdType id, T f) VTK_EXPECTS(0 <= id); \
369 vtkIdType InsertNextValue(T f); \
370 T* WritePointer(vtkIdType id, vtkIdType number); \
371 T* GetPointer(vtkIdType id); \
372 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save); \
373 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save, int deleteMethod)
374
375#endif // header guard
376
377// This portion must be OUTSIDE the include blockers. This is used to tell
378// libraries other than vtkCommonCore that instantiations of
379// vtkAOSDataArrayTemplate can be found externally. This prevents each library
380// from instantiating these on their own.
381#ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
382#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
383 namespace vtkDataArrayPrivate \
384 { \
385 VTK_ABI_NAMESPACE_BEGIN \
386 VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkAOSDataArrayTemplate<T>, double); \
387 VTK_ABI_NAMESPACE_END \
388 } \
389 VTK_ABI_NAMESPACE_BEGIN \
390 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate<T>; \
391 VTK_ABI_NAMESPACE_END
392
393#elif defined(VTK_USE_EXTERN_TEMPLATE)
394#ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
395#define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
396#ifdef _MSC_VER
397#pragma warning(push)
398// The following is needed when the vtkAOSDataArrayTemplate is declared
399// dllexport and is used from another class in vtkCommonCore
400#pragma warning(disable : 4910) // extern and dllexport incompatible
401#endif
402VTK_ABI_NAMESPACE_BEGIN
403vtkExternTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
404VTK_ABI_NAMESPACE_END
405
407{
408VTK_ABI_NAMESPACE_BEGIN
409
410// These are instantiated in vtkFloatArray.cxx, vtkDoubleArray.cxx, etc
424
425VTK_ABI_NAMESPACE_END
426} // namespace vtkDataArrayPrivate
427
428#ifdef _MSC_VER
429#pragma warning(pop)
430#endif
431#endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
432
433// The following clause is only for MSVC
434#elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
435#pragma warning(push)
436
437// C4091: 'extern ' : ignored on left of 'int' when no variable is declared
438#pragma warning(disable : 4091)
439
440// Compiler-specific extension warning.
441#pragma warning(disable : 4231)
442
443// We need to disable warning 4910 and do an extern dllexport
444// anyway. When deriving vtkCharArray and other types from an
445// instantiation of this template the compiler does an explicit
446// instantiation of the base class. From outside the vtkCommon
447// library we block this using an extern dllimport instantiation.
448// For classes inside vtkCommon we should be able to just do an
449// extern instantiation, but VS complains about missing
450// definitions. We cannot do an extern dllimport inside vtkCommon
451// since the symbols are local to the dll. An extern dllexport
452// seems to be the only way to convince VS to do the right
453// thing, so we just disable the warning.
454#pragma warning(disable : 4910) // extern and dllexport incompatible
455
456// Use an "extern explicit instantiation" to give the class a DLL
457// interface. This is a compiler-specific extension.
458VTK_ABI_NAMESPACE_BEGIN
459vtkInstantiateTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
460VTK_ABI_NAMESPACE_END
461
462#pragma warning(pop)
463
464#endif
465
466// VTK-HeaderTest-Exclude: vtkAOSDataArrayTemplate.h
Array-Of-Structs implementation of vtkGenericDataArray.
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,...
std::integral_constant< int, vtkArrayTypes::VTK_ABSTRACT_ARRAY > ArrayTypeTag
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.
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.
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...
Abstract superclass for all arrays.
std::integral_constant< int, VTK_OPAQUE > DataTypeTag
std::integral_constant< int, vtkArrayTypes::VTK_ABSTRACT_ARRAY > ArrayTypeTag
Abstract superclass to iterate over elements in an vtkAbstractArray.
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others.
Definition vtkBuffer.h:30
abstract superclass for arrays of numeric data
Base interface for all typed vtkDataArray subclasses.
list of point or cell ids
Definition vtkIdList.h:133
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 VTK_DECLARE_VALUERANGE_ARRAYTYPE(ArrayType, ValueType)
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
Definition vtkType.h:492
int vtkIdType
Definition vtkType.h:367
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
Definition vtkType.h:415
@ VTK_AOS_DATA_ARRAY
Definition vtkType.h:83
void save(Archiver &ar, const std::string &str, const unsigned int version)
#define VTK_EXPECTS(x)
#define VTK_ZEROCOPY
#define VTK_NEWINSTANCE