/usr/include/vtk-7.1/vtkGenericDataArray.h is in libvtk7-dev 7.1.1+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkGenericDataArray.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkGenericDataArray
* @brief Base interface for all typed vtkDataArray
* subclasses.
*
*
*
* A more detailed description of this class and related tools can be found
* \ref VTK-7-1-ArrayDispatch "here".
*
* The vtkGenericDataArray class provides a generic implementation of the
* vtkDataArray API. It relies on subclasses providing access to data
* via 8 "concept methods", which should be implemented as non-virtual
* methods of the subclass. These methods are:
*
* - ValueType GetValue(vtkIdType valueIdx) const
* - [public] void SetValue(vtkIdType valueIdx, ValueType value)
* - [public] void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const
* - [public] void SetTypedTuple(vtkIdType tupleIdx, const ValueType* tuple)
* - [public] ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const
* - [public] void SetTypedComponent(vtkIdType tupleIdx, int compIdx,
* ValueType value)
* - [protected] bool AllocateTuples(vtkIdType numTuples)
* - [protected] bool ReallocateTuples(vtkIdType numTuples)
*
* Note that these methods use the CRTP idiom, which provides static binding to
* avoid virtual calls. This allows the compiler to optimize away layers of
* indirection when these methods are used. Well-designed implementations
* of these methods will reduce to raw memory accesses, providing efficient
* performance comparable to working with the pointer data.
*
* See vtkAOSDataArrayTemplate and vtkSOADataArrayTemplate for example
* implementations.
*
* In practice, code should not be written to use vtkGenericDataArray objects.
* Doing so is rather unweildy due to the CRTP pattern requiring the derived
* class be provided as a template argument. Instead, the vtkArrayDispatch
* framework can be used to detect a vtkDataArray's implementation type and
* instantiate appropriate templated worker code.
*
* vtkArrayDispatch is also intended to replace code that currently relies on
* the encapsulation-breaking GetVoidPointer method. Not all subclasses of
* vtkDataArray use the memory layout assumed by GetVoidPointer; calling this
* method on, e.g. a vtkSOADataArrayTemplate will trigger a deep copy of the
* array data into an AOS buffer. This is very inefficient and should be
* avoided.
*
* @sa
* vtkArrayDispatcher vtkDataArrayAccessor
*/
#ifndef vtkGenericDataArray_h
#define vtkGenericDataArray_h
#include "vtkDataArray.h"
#include "vtkSmartPointer.h"
#include "vtkTypeTraits.h"
#include "vtkGenericDataArrayLookupHelper.h"
#include <cassert>
template<class DerivedT, class ValueTypeT>
class vtkGenericDataArray : public vtkDataArray
{
typedef vtkGenericDataArray<DerivedT, ValueTypeT> SelfType;
public:
typedef ValueTypeT ValueType;
vtkTemplateTypeMacro(SelfType, vtkDataArray)
/**
* Compile time access to the VTK type identifier.
*/
enum { VTK_DATA_TYPE = vtkTypeTraits<ValueType>::VTK_TYPE_ID };
/// @defgroup vtkGDAConceptMethods vtkGenericDataArray Concept Methods
/// These signatures must be reimplemented in subclasses as public,
/// non-virtual methods. Ideally, they should be inlined and as efficient as
/// possible to ensure the best performance possible.
/**
* Get the value at @a valueIdx. @a valueIdx assumes AOS ordering.
* @note GetTypedComponent is preferred over this method. It is faster for
* SOA arrays, and shows equivalent performance for AOS arrays when
* NumberOfComponents is known to the compiler (See vtkAssume.h).
* @ingroup vtkGDAConceptMethods
*/
inline ValueType GetValue(vtkIdType valueIdx) const
{
return static_cast<const DerivedT*>(this)->GetValue(valueIdx);
}
/**
* Set the value at @a valueIdx to @a value. @a valueIdx assumes AOS ordering.
* @note SetTypedComponent is preferred over this method. It is faster for
* SOA arrays, and shows equivalent performance for AOS arrays when
* NumberOfComponents is known to the compiler (See vtkAssume.h).
* @ingroup vtkGDAConceptMethods
*/
inline void SetValue(vtkIdType valueIdx, ValueType value)
{
static_cast<DerivedT*>(this)->SetValue(valueIdx, value);
}
/**
* Copy the tuple at @a tupleIdx into @a tuple.
* @note GetTypedComponent is preferred over this method. The overhead of
* copying the tuple is significant compared to the more performant
* component-wise access methods, which typically optimize to raw memory
* access.
* @ingroup vtkGDAConceptMethods
*/
inline void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const
{
static_cast<const DerivedT*>(this)->GetTypedTuple(tupleIdx, tuple);
}
/**
* Set this array's tuple at @a tupleIdx to the values in @a tuple.
* @note SetTypedComponent is preferred over this method. The overhead of
* copying the tuple is significant compared to the more performant
* component-wise access methods, which typically optimize to raw memory
* access.
* @ingroup vtkGDAConceptMethods
*/
inline void SetTypedTuple(vtkIdType tupleIdx, const ValueType* tuple)
{
static_cast<DerivedT*>(this)->SetTypedTuple(tupleIdx, tuple);
}
/**
* Get component @a compIdx of the tuple at @a tupleIdx. This is typically
* the fastest way to access array data.
* @ingroup vtkGDAConceptMethods
*/
inline ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const
{
return static_cast<const DerivedT*>(this)->GetTypedComponent(tupleIdx,
compIdx);
}
/**
* Set component @a compIdx of the tuple at @a tupleIdx to @a value. This is
* typically the fastest way to set array data.
* @ingroup vtkGDAConceptMethods
*/
inline void SetTypedComponent(vtkIdType tupleIdx, int compIdx,
ValueType value)
{
static_cast<DerivedT*>(this)->SetTypedComponent(tupleIdx, compIdx, value);
}
//@{
/**
* Default implementation raises a runtime error. If subclasses keep on
* supporting this API, they should override this method.
*/
void *GetVoidPointer(vtkIdType valueIdx) VTK_OVERRIDE;
ValueType* GetPointer(vtkIdType valueIdx);
void SetVoidArray(void*, vtkIdType, int) VTK_OVERRIDE;
void SetVoidArray(void*, vtkIdType, int, int) VTK_OVERRIDE;
void* WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) VTK_OVERRIDE;
ValueType* WritePointer(vtkIdType valueIdx, vtkIdType numValues);
//@}
/**
* Removes a tuple at the given index. Default implementation
* iterates over tuples to move elements. Subclasses are
* encouraged to reimplemented this method to support faster implementations,
* if needed.
*/
void RemoveTuple(vtkIdType tupleIdx) VTK_OVERRIDE;
/**
* Insert data at the end of the array. Return its location in the array.
*/
vtkIdType InsertNextValue(ValueType value);
/**
* Insert data at a specified position in the array.
*/
void InsertValue(vtkIdType valueIdx, ValueType value);
/**
* Insert (memory allocation performed) the tuple t at tupleIdx.
*/
void InsertTypedTuple(vtkIdType tupleIdx, const ValueType *t);
/**
* Insert (memory allocation performed) the tuple onto the end of the array.
*/
vtkIdType InsertNextTypedTuple(const ValueType *t);
/**
* Insert (memory allocation performed) the value at the specified tuple and
* component location.
*/
void InsertTypedComponent(vtkIdType tupleIdx, int compIdx, ValueType val);
//@{
/**
* Get the range of array values for the given component in the
* native data type.
*/
void GetValueRange(ValueType range[2], int comp);
ValueType *GetValueRange(int comp);
//@}
/**
* Get the range of array values for the 0th component in the
* native data type.
*/
ValueType *GetValueRange() { return this->GetValueRange(0); }
void GetValueRange(ValueType range[2]) { this->GetValueRange(range, 0); }
/**
* Return the capacity in typeof T units of the current array.
* TODO Leftover from vtkDataArrayTemplate, redundant with GetSize. Deprecate?
*/
vtkIdType Capacity() { return this->Size; }
int GetDataType() VTK_OVERRIDE;
int GetDataTypeSize() VTK_OVERRIDE;
bool HasStandardMemoryLayout() VTK_OVERRIDE;
int Allocate(vtkIdType size, vtkIdType ext = 1000) VTK_OVERRIDE;
int Resize(vtkIdType numTuples) VTK_OVERRIDE;
void SetNumberOfComponents(int num) VTK_OVERRIDE;
void SetNumberOfTuples(vtkIdType number) VTK_OVERRIDE;
void Initialize() VTK_OVERRIDE;
void Squeeze() VTK_OVERRIDE;
void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx,
vtkAbstractArray* source) VTK_OVERRIDE;
// MSVC doesn't like 'using' here (error C2487). Just forward instead:
// using Superclass::SetTuple;
void SetTuple(vtkIdType tupleIdx, const float *tuple) VTK_OVERRIDE
{ this->Superclass::SetTuple(tupleIdx, tuple); }
void SetTuple(vtkIdType tupleIdx, const double *tuple) VTK_OVERRIDE
{ this->Superclass::SetTuple(tupleIdx, tuple); }
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds,
vtkAbstractArray *source) VTK_OVERRIDE;
// MSVC doesn't like 'using' here (error C2487). Just forward instead:
// using Superclass::InsertTuples;
void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart,
vtkAbstractArray* source) VTK_OVERRIDE
{ this->Superclass::InsertTuples(dstStart, n, srcStart, source); }
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx,
vtkAbstractArray *source) VTK_OVERRIDE;
void InsertTuple(vtkIdType tupleIdx, const float *source) VTK_OVERRIDE;
void InsertTuple(vtkIdType tupleIdx, const double *source) VTK_OVERRIDE;
void InsertComponent(vtkIdType tupleIdx, int compIdx,
double value) VTK_OVERRIDE;
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx,
vtkAbstractArray *source) VTK_OVERRIDE;
vtkIdType InsertNextTuple(const float *tuple) VTK_OVERRIDE;
vtkIdType InsertNextTuple(const double *tuple) VTK_OVERRIDE;
void GetTuples(vtkIdList *tupleIds,
vtkAbstractArray *output) VTK_OVERRIDE;
void GetTuples(vtkIdType p1, vtkIdType p2,
vtkAbstractArray *output) VTK_OVERRIDE;
double *GetTuple(vtkIdType tupleIdx) VTK_OVERRIDE;
void GetTuple(vtkIdType tupleIdx, double * tuple) VTK_OVERRIDE;
void InterpolateTuple(vtkIdType dstTupleIdx, vtkIdList *ptIndices,
vtkAbstractArray* source,
double* weights) VTK_OVERRIDE;
void InterpolateTuple(vtkIdType dstTupleIdx,
vtkIdType srcTupleIdx1, vtkAbstractArray* source1,
vtkIdType srcTupleIdx2, vtkAbstractArray* source2, double t) VTK_OVERRIDE;
void SetComponent(vtkIdType tupleIdx, int compIdx, double value) VTK_OVERRIDE;
double GetComponent(vtkIdType tupleIdx, int compIdx) VTK_OVERRIDE;
void SetVariantValue(vtkIdType valueIdx, vtkVariant value) VTK_OVERRIDE;
vtkVariant GetVariantValue(vtkIdType valueIdx) VTK_OVERRIDE;
void InsertVariantValue(vtkIdType valueIdx, vtkVariant value) VTK_OVERRIDE;
vtkIdType LookupValue(vtkVariant value) VTK_OVERRIDE;
virtual vtkIdType LookupTypedValue(ValueType value);
void LookupValue(vtkVariant value, vtkIdList* valueIds) VTK_OVERRIDE;
virtual void LookupTypedValue(ValueType value, vtkIdList* valueIds);
void ClearLookup() VTK_OVERRIDE;
void DataChanged() VTK_OVERRIDE;
VTK_NEWINSTANCE vtkArrayIterator* NewIterator() VTK_OVERRIDE;
protected:
vtkGenericDataArray();
~vtkGenericDataArray() VTK_OVERRIDE;
/**
* Allocate space for numTuples. Old data is not preserved. If numTuples == 0,
* all data is freed.
* @ingroup vtkGDAConceptMethods
*/
inline bool AllocateTuples(vtkIdType numTuples)
{
return static_cast<DerivedT*>(this)->AllocateTuples(numTuples);
}
/**
* Allocate space for numTuples. Old data is preserved. If numTuples == 0,
* all data is freed.
* @ingroup vtkGDAConceptMethods
*/
inline bool ReallocateTuples(vtkIdType numTuples)
{
return static_cast<DerivedT*>(this)->ReallocateTuples(numTuples);
}
// This method resizes the array if needed so that the given tuple index is
// valid/accessible.
bool EnsureAccessToTuple(vtkIdType tupleIdx);
vtkGenericDataArrayLookupHelper<SelfType> Lookup;
private:
vtkGenericDataArray(const vtkGenericDataArray&) VTK_DELETE_FUNCTION;
void operator=(const vtkGenericDataArray&) VTK_DELETE_FUNCTION;
std::vector<double> LegacyTuple;
std::vector<ValueType> LegacyValueRange;
};
#include "vtkGenericDataArray.txx"
// Adds an implementation of NewInstanceInternal() that returns an AoS
// (unmapped) VTK array, if possible. This allows the pipeline to copy and
// propagate the array when the array data is not modifiable. Use this in
// combination with vtkAbstractTypeMacro or vtkAbstractTemplateTypeMacro
// (instead of vtkTypeMacro) to avoid adding the default NewInstance
// implementation.
#define vtkAOSArrayNewInstanceMacro(thisClass) \
protected: \
vtkObjectBase *NewInstanceInternal() const VTK_OVERRIDE \
{ \
if (vtkDataArray *da = \
vtkDataArray::CreateDataArray(thisClass::VTK_DATA_TYPE)) \
{ \
return da; \
} \
return thisClass::New(); \
} \
public:
#endif
// VTK-HeaderTest-Exclude: vtkGenericDataArray.h
|