/usr/include/paraview/vtkSOADataArrayTemplate.txx is in paraview-dev 5.1.2+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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkSOADataArrayTemplate.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.
=========================================================================*/
#ifndef vtkSOADataArrayTemplate_txx
#define vtkSOADataArrayTemplate_txx
#include "vtkSOADataArrayTemplate.h"
#include "vtkArrayIteratorTemplate.h"
#include "vtkBuffer.h"
#include <cassert>
//-----------------------------------------------------------------------------
template<class ValueType>
vtkSOADataArrayTemplate<ValueType>*
vtkSOADataArrayTemplate<ValueType>::New()
{
VTK_STANDARD_NEW_BODY(vtkSOADataArrayTemplate<ValueType>);
}
//-----------------------------------------------------------------------------
template<class ValueType>
vtkSOADataArrayTemplate<ValueType>::vtkSOADataArrayTemplate()
: AoSCopy(NULL),
NumberOfComponentsReciprocal(1.0)
{
}
//-----------------------------------------------------------------------------
template<class ValueType>
vtkSOADataArrayTemplate<ValueType>::~vtkSOADataArrayTemplate()
{
for (size_t cc = 0; cc < this->Data.size(); ++cc)
{
this->Data[cc]->Delete();
}
this->Data.clear();
if (this->AoSCopy)
{
this->AoSCopy->Delete();
this->AoSCopy = NULL;
}
}
//-----------------------------------------------------------------------------
template<class ValueType>
void vtkSOADataArrayTemplate<ValueType>::SetNumberOfComponents(int val)
{
this->GenericDataArrayType::SetNumberOfComponents(val);
size_t numComps = static_cast<size_t>(this->GetNumberOfComponents());
assert(numComps >= 1);
while (this->Data.size() > numComps)
{
this->Data.back()->Delete();
this->Data.pop_back();
}
while (this->Data.size() < numComps)
{
this->Data.push_back(vtkBuffer<ValueType>::New());
}
this->NumberOfComponentsReciprocal = 1.0 / this->NumberOfComponents;
}
//-----------------------------------------------------------------------------
template<class ValueType>
vtkArrayIterator* vtkSOADataArrayTemplate<ValueType>::NewIterator()
{
vtkArrayIterator *iter = vtkArrayIteratorTemplate<ValueType>::New();
iter->Initialize(this);
return iter;
}
//-----------------------------------------------------------------------------
template<class ValueType>
void vtkSOADataArrayTemplate<ValueType>::ShallowCopy(vtkDataArray *other)
{
SelfType *o = SelfType::FastDownCast(other);
if (o)
{
this->Size = o->Size;
this->MaxId = o->MaxId;
this->SetName(o->Name);
this->SetNumberOfComponents(o->NumberOfComponents);
this->CopyComponentNames(o);
assert(this->Data.size() == o->Data.size());
for (size_t cc = 0; cc < this->Data.size(); ++cc)
{
vtkBuffer<ValueType> *thisBuffer = this->Data[cc];
vtkBuffer<ValueType> *otherBuffer = o->Data[cc];
if (thisBuffer != otherBuffer)
{
thisBuffer->Delete();
this->Data[cc] = otherBuffer;
otherBuffer->Register(NULL);
}
}
this->DataChanged();
}
else
{
this->Superclass::ShallowCopy(other);
}
}
//-----------------------------------------------------------------------------
template<class ValueType>
void vtkSOADataArrayTemplate<ValueType>::InsertTuples(
vtkIdType dstStart, vtkIdType n, vtkIdType srcStart,
vtkAbstractArray *source)
{
// First, check for the common case of typeid(source) == typeid(this). This
// way we don't waste time redoing the other checks in the superclass, and
// can avoid doing a dispatch for the most common usage of this method.
SelfType *other = vtkArrayDownCast<SelfType>(source);
if (!other)
{
// Let the superclass handle dispatch/fallback.
this->Superclass::InsertTuples(dstStart, n, srcStart, source);
return;
}
if (n == 0)
{
return;
}
int numComps = this->GetNumberOfComponents();
if (other->GetNumberOfComponents() != numComps)
{
vtkErrorMacro("Number of components do not match: Source: "
<< other->GetNumberOfComponents() << " Dest: "
<< this->GetNumberOfComponents());
return;
}
vtkIdType maxSrcTupleId = srcStart + n - 1;
vtkIdType maxDstTupleId = dstStart + n - 1;
if (maxSrcTupleId >= other->GetNumberOfTuples())
{
vtkErrorMacro("Source array too small, requested tuple at index "
<< maxSrcTupleId << ", but there are only "
<< other->GetNumberOfTuples() << " tuples in the array.");
return;
}
vtkIdType newSize = (maxDstTupleId + 1) * this->NumberOfComponents;
if (this->Size < newSize)
{
if (!this->Resize(maxDstTupleId + 1))
{
vtkErrorMacro("Resize failed.");
return;
}
}
this->MaxId = std::max(this->MaxId, newSize - 1);
for (int c = 0; c < numComps; ++c)
{
ValueType *srcBegin = other->GetComponentArrayPointer(c) + srcStart;
ValueType *srcEnd = srcBegin + n;
ValueType *dstBegin = this->GetComponentArrayPointer(c) + dstStart;
std::copy(srcBegin, srcEnd, dstBegin);
}
}
//-----------------------------------------------------------------------------
template<class ValueType>
void vtkSOADataArrayTemplate<ValueType>::SetArray(int comp, ValueType* array,
vtkIdType size,
bool updateMaxId,
bool save, int deleteMethod)
{
const int numComps = this->GetNumberOfComponents();
if (comp >= numComps || comp < 0)
{
vtkErrorMacro("Invalid component number '" << comp << "' specified. "
"Use `SetNumberOfComponents` first to set the number of components.");
return;
}
this->Data[comp]->SetBuffer(array, size, save, deleteMethod);
if (updateMaxId)
{
this->Size = numComps * size;
this->MaxId = this->Size - 1;
}
this->DataChanged();
}
//-----------------------------------------------------------------------------
template <class ValueType>
typename vtkSOADataArrayTemplate<ValueType>::ValueType*
vtkSOADataArrayTemplate<ValueType>::GetComponentArrayPointer(int comp)
{
const int numComps = this->GetNumberOfComponents();
if (comp >= numComps || comp < 0)
{
vtkErrorMacro("Invalid component number '" << comp << "' specified.");
return NULL;
}
return this->Data[comp]->GetBuffer();
}
//-----------------------------------------------------------------------------
template<class ValueType>
bool vtkSOADataArrayTemplate<ValueType>::AllocateTuples(vtkIdType numTuples)
{
for (size_t cc = 0, max = this->Data.size(); cc < max; ++cc)
{
if (!this->Data[cc]->Allocate(numTuples))
{
return false;
}
}
return true;
}
//-----------------------------------------------------------------------------
template<class ValueType>
bool vtkSOADataArrayTemplate<ValueType>::ReallocateTuples(vtkIdType numTuples)
{
for (size_t cc = 0, max = this->Data.size(); cc < max; ++cc)
{
if (!this->Data[cc]->Reallocate(numTuples))
{
return false;
}
}
return true;
}
//-----------------------------------------------------------------------------
template<class ValueType>
void *vtkSOADataArrayTemplate<ValueType>::GetVoidPointer(vtkIdType valueIdx)
{
// Allow warnings to be silenced:
const char *silence = getenv("VTK_SILENCE_GET_VOID_POINTER_WARNINGS");
if (!silence)
{
vtkWarningMacro(<<"GetVoidPointer called. This is very expensive for "
"non-array-of-structs subclasses, as the scalar array "
"must be generated for each call. Using the "
"vtkGenericDataArray API with vtkArrayDispatch are "
"preferred. Define the environment variable "
"VTK_SILENCE_GET_VOID_POINTER_WARNINGS to silence "
"this warning.");
}
size_t numValues = this->GetNumberOfValues();
if (!this->AoSCopy)
{
this->AoSCopy = vtkBuffer<ValueType>::New();
}
if (!this->AoSCopy->Allocate(numValues))
{
vtkErrorMacro(<<"Error allocating a buffer of " << numValues << " '"
<< this->GetDataTypeAsString() << "' elements.");
return NULL;
}
this->ExportToVoidPointer(static_cast<void*>(this->AoSCopy->GetBuffer()));
return static_cast<void*>(this->AoSCopy->GetBuffer() + valueIdx);
}
//-----------------------------------------------------------------------------
template<class ValueType>
void vtkSOADataArrayTemplate<ValueType>::ExportToVoidPointer(void *voidPtr)
{
vtkIdType numTuples = this->GetNumberOfTuples();
if (this->NumberOfComponents * numTuples == 0)
{
// Nothing to do.
return;
}
if (!voidPtr)
{
vtkErrorMacro(<< "Buffer is NULL.");
return;
}
ValueType *ptr = static_cast<ValueType*>(voidPtr);
for (vtkIdType t = 0; t < numTuples; ++t)
{
for (int c = 0; c < this->NumberOfComponents; ++c)
{
*ptr++ = this->Data[c]->GetBuffer()[t];
}
}
}
#endif
|