22#ifndef vtkAOSDataArrayTemplate_h 
   23#define vtkAOSDataArrayTemplate_h 
   27#include "vtkCommonCoreModule.h"  
   36VTK_ABI_NAMESPACE_BEGIN
 
   37template <
typename ArrayType, ComponentIdType TupleSize>
 
   40  typename ForceValueTypeForVtkDataArray = 
double>
 
   48VTK_ABI_NAMESPACE_BEGIN
 
   49template <
class ValueTypeT>
 
   52      vtkArrayTypes::VTK_AOS_DATA_ARRAY>
 
   59  template <
typename ArrayType, vtk::ComponentIdType TupleSize>
 
   62    typename ForceValueTypeForVtkDataArray>
 
   70  using typename Superclass::ValueType;
 
   86    VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
 
   88    return this->Buffer->GetBuffer()[valueIdx];
 
   95    VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
 
   97    this->Buffer->GetBuffer()[valueIdx] = value;
 
  105    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 
  107    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  108    std::copy(this->Buffer->GetBuffer() + valueIdx,
 
  109      this->Buffer->GetBuffer() + valueIdx + this->NumberOfComponents, tuple);
 
  118    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 
  120    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  121    std::copy(tuple, tuple + this->NumberOfComponents, this->Buffer->GetBuffer() + valueIdx);
 
  126    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 override 
  128    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  129    for (
vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
 
  131      tuple[ii] = 
static_cast<vtkTypeInt64
>((this->Buffer->GetBuffer())[valueIdx + ii]);
 
  136    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 override 
  138    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  139    for (
vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
 
  141      this->Buffer->GetBuffer()[valueIdx + ii] = 
static_cast<ValueType>(tuple[ii]);
 
  146    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 override 
  148    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  149    for (
vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
 
  151      tuple[ii] = 
static_cast<vtkTypeUInt64
>((this->Buffer->GetBuffer())[valueIdx + ii]);
 
  156    VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
 override 
  158    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
 
  159    for (
vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
 
  161      this->Buffer->GetBuffer()[valueIdx + ii] = 
static_cast<ValueType>(tuple[ii]);
 
  169    VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
 
  170      VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
 
  172    return this->Buffer->GetBuffer()[this->NumberOfComponents * tupleIdx + comp];
 
  180    VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
 
  181      VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
 
  183    const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
 
  184    this->SetValue(valueIdx, value);
 
  200  void Fill(
double value) 
override;
 
  261    this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx, 
source);
 
  269    this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx, 
source);
 
  278    return this->Superclass::InsertNextTuple(srcTupleIdx, 
source);
 
  314    this->Superclass::InsertTuples(dstIds, srcIds, 
source);
 
  319    this->Superclass::InsertTuplesStartingAt(dstStart, srcIds, 
source);
 
  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) 
  381#ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING 
  382#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T)                                                 \ 
  383  namespace vtkDataArrayPrivate                                                                    \ 
  385  VTK_ABI_NAMESPACE_BEGIN                                                                          \ 
  386  VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkAOSDataArrayTemplate<T>, double);                        \ 
  387  VTK_ABI_NAMESPACE_END                                                                            \ 
  389  VTK_ABI_NAMESPACE_BEGIN                                                                          \ 
  390  template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate<T>;                                  \ 
  391  VTK_ABI_NAMESPACE_END 
  393#elif defined(VTK_USE_EXTERN_TEMPLATE) 
  394#ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN 
  395#define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN 
  400#pragma warning(disable : 4910)  
  402VTK_ABI_NAMESPACE_BEGIN
 
  408VTK_ABI_NAMESPACE_BEGIN
 
  434#elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS) 
  438#pragma warning(disable : 4091) 
  441#pragma warning(disable : 4231) 
  454#pragma warning(disable : 4910)  
  458VTK_ABI_NAMESPACE_BEGIN
 
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.
 
vtkAOSDataArrayTemplate()
 
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.
 
@ VTK_DATA_ARRAY_USER_DEFINED
 
@ VTK_DATA_ARRAY_ALIGNED_FREE
 
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.
 
abstract superclass for arrays of numeric data
 
Base interface for all typed vtkDataArray subclasses.
 
list of point or cell ids
 
Specialization of tuple ranges and iterators for vtkAOSDataArrayTemplate.
 
#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 *)
 
#define VTK_DECLARE_VALUERANGE_ARRAYTYPE(ArrayType, ValueType)
 
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
 
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
 
void save(Archiver &ar, const std::string &str, const unsigned int version)