/usr/include/vtk-6.3/vtkVariantArray.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkVariantArray.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.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
// .NAME vtkVariantArray - An array holding vtkVariants.
//
// .SECTION Description
//
// .SECTION Thanks
// Thanks to Patricia Crossno, Ken Moreland, Andrew Wilson and Brian Wylie from
// Sandia National Laboratories for their help in developing this class.
#ifndef vtkVariantArray_h
#define vtkVariantArray_h
#include "vtkCommonCoreModule.h" // For export macro
#include "vtkAbstractArray.h"
#include "vtkVariant.h" // For variant type
class vtkVariantArrayLookup;
//BTX
/// Forward declaration required for Boost serialization
namespace boost { namespace serialization { class access; } }
//ETX
class VTKCOMMONCORE_EXPORT vtkVariantArray : public vtkAbstractArray
{
//BTX
/// Friendship required for Boost serialization
friend class boost::serialization::access;
//ETX
public:
static vtkVariantArray* New();
vtkTypeMacro(vtkVariantArray,vtkAbstractArray);
void PrintSelf(ostream& os, vtkIndent indent);
//
// Functions required by vtkAbstractArray
//
// Description:
// Allocate memory for this array. Delete old storage only if necessary.
// Note that ext is no longer used.
virtual int Allocate(vtkIdType sz, vtkIdType ext=1000);
// Description:
// Release storage and reset array to initial state.
virtual void Initialize();
// Description:
// Return the underlying data type. An integer indicating data type is
// returned as specified in vtkSetGet.h.
virtual int GetDataType();
// Description:
// Return the size of the underlying data type. For a bit, 1 is
// returned. For string 0 is returned. Arrays with variable length
// components return 0.
virtual int GetDataTypeSize();
// Description:
// Return the size, in bytes, of the lowest-level element of an
// array. For vtkDataArray and subclasses this is the size of the
// data type. For vtkStringArray, this is
// sizeof(vtkStdString::value_type), which winds up being
// sizeof(char).
virtual int GetElementComponentSize();
// Description:
// Set the number of tuples (a component group) in the array. Note that
// this may allocate space depending on the number of components.
virtual void SetNumberOfTuples(vtkIdType number);
// Description:
// Set the tuple at the ith location using the jth tuple in the source array.
// This method assumes that the two arrays have the same type
// and structure. Note that range checking and memory allocation is not
// performed; use in conjunction with SetNumberOfTuples() to allocate space.
virtual void SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source);
// Description:
// Insert the jth tuple in the source array, at ith location in this array.
// Note that memory allocation is performed as necessary to hold the data.
virtual void InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source);
// Description:
// Copy the tuples indexed in srcIds from the source array to the tuple
// locations indexed by dstIds in this array.
// Note that memory allocation is performed as necessary to hold the data.
virtual void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds,
vtkAbstractArray *source);
// Description:
// Copy n consecutive tuples starting at srcStart from the source array to
// this array, starting at the dstStart location.
// Note that memory allocation is performed as necessary to hold the data.
virtual void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart,
vtkAbstractArray* source);
// Description:
// Insert the jth tuple in the source array, at the end in this array.
// Note that memory allocation is performed as necessary to hold the data.
// Returns the location at which the data was inserted.
virtual vtkIdType InsertNextTuple(vtkIdType j, vtkAbstractArray* source);
// Description:
// Return a void pointer. For image pipeline interface and other
// special pointer manipulation.
virtual void *GetVoidPointer(vtkIdType id);
// Description:
// Deep copy of data. Implementation left to subclasses, which
// should support as many type conversions as possible given the
// data type.
virtual void DeepCopy(vtkAbstractArray *da);
// Description:
// Set the ith tuple in this array as the interpolated tuple value,
// given the ptIndices in the source array and associated
// interpolation weights.
// This method assumes that the two arrays are of the same type
// and strcuture.
virtual void InterpolateTuple(vtkIdType i, vtkIdList *ptIndices,
vtkAbstractArray* source, double* weights);
// Description
// Insert the ith tuple in this array as interpolated from the two values,
// p1 and p2, and an interpolation factor, t.
// The interpolation factor ranges from (0,1),
// with t=0 located at p1. This method assumes that the three arrays are of
// the same type. p1 is value at index id1 in source1, while, p2 is
// value at index id2 in source2.
virtual void InterpolateTuple(vtkIdType i,
vtkIdType id1, vtkAbstractArray* source1,
vtkIdType id2, vtkAbstractArray* source2, double t);
// Description:
// Free any unnecessary memory.
// Description:
// Resize object to just fit data requirement. Reclaims extra memory.
virtual void Squeeze();
// Description:
// Resize the array while conserving the data. Returns 1 if
// resizing succeeded and 0 otherwise.
virtual int Resize(vtkIdType numTuples);
// Description:
// This method lets the user specify data to be held by the array. The
// array argument is a pointer to the data. size is the size of
// the array supplied by the user. Set save to 1 to keep the class
// from deleting the array when it cleans up or reallocates memory.
// The class uses the actual array provided; it does not copy the data
// from the supplied array.
virtual void SetVoidArray(void *arr,
vtkIdType size,
int save);
// Description:
// Return the memory in kibibytes (1024 bytes) consumed by this data array. Used to
// support streaming and reading/writing data. The value returned is
// guaranteed to be greater than or equal to the memory required to
// actually represent the data represented by this object. The
// information returned is valid only after the pipeline has
// been updated.
virtual unsigned long GetActualMemorySize();
// Description:
// Since each item can be of a different type, we say that a variant array is not numeric.
virtual int IsNumeric();
// Description:
// Subclasses must override this method and provide the right
// kind of templated vtkArrayIteratorTemplate.
virtual vtkArrayIterator* NewIterator();
//
// Additional functions
//
// Description:
// Get the data at a particular index.
vtkVariant & GetValue(vtkIdType id) const;
// Description:
// Set the data at a particular index. Does not do range checking. Make sure
// you use the method SetNumberOfValues() before inserting data.
void SetValue(vtkIdType id, vtkVariant value);
// Description:
// If id < GetNumberOfValues(), overwrite the array at that index.
// If id >= GetNumberOfValues(), expand the array size to id+1
// and set the final value to the specified value.
void InsertValue(vtkIdType id, vtkVariant value);
// Description:
// Insert a value into the array from a variant.
void SetVariantValue(vtkIdType idx, vtkVariant value);
// Description:
// Expand the array by one and set the value at that location.
// Return the array index of the inserted value.
vtkIdType InsertNextValue(vtkVariant value);
//BTX
// Description:
// Return a pointer to the location in the internal array at the specified index.
vtkVariant* GetPointer(vtkIdType id);
// Description:
// Set the internal array used by this object.
void SetArray(vtkVariant* arr, vtkIdType size, int save);
//ETX
// Description:
// Specify the number of values for this object to hold. Does an
// allocation as well as setting the MaxId ivar. Used in conjunction with
// SetValue() method for fast insertion.
void SetNumberOfValues(vtkIdType number);
// Description:
// Return the number of values in the array.
vtkIdType GetNumberOfValues() { return this->MaxId + 1; }
// Description:
// Return the indices where a specific value appears.
virtual vtkIdType LookupValue(vtkVariant value);
virtual void LookupValue(vtkVariant value, vtkIdList* ids);
// Description:
// Tell the array explicitly that the data has changed.
// This is only necessary to call when you modify the array contents
// without using the array's API (i.e. you retrieve a pointer to the
// data and modify the array contents). You need to call this so that
// the fast lookup will know to rebuild itself. Otherwise, the lookup
// functions will give incorrect results.
virtual void DataChanged();
// Description:
// Tell the array explicitly that a single data element has
// changed. Like DataChanged(), then is only necessary when you
// modify the array contents without using the array's API.
virtual void DataElementChanged(vtkIdType id);
// Description:
// Delete the associated fast lookup data structure on this array,
// if it exists. The lookup will be rebuilt on the next call to a lookup
// function.
virtual void ClearLookup();
// Description:
// This destructor is public to work around a bug in version 1.36.0 of
// the Boost.Serialization library.
~vtkVariantArray();
protected:
// Construct object with default tuple dimension (number of components) of 1.
vtkVariantArray();
// Pointer to data
//BTX
vtkVariant* Array;
// Function to resize data
vtkVariant* ResizeAndExtend(vtkIdType sz);
//ETX
int SaveUserArray;
private:
vtkVariantArray(const vtkVariantArray&); // Not implemented.
void operator=(const vtkVariantArray&); // Not implemented.
vtkVariantArrayLookup* Lookup;
void UpdateLookup();
};
#endif
|