/*========================================================================= Program: Visualization Toolkit Module: vtkDataObject.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 vtkDataObject * @brief general representation of visualization data * * vtkDataObject is an general representation of visualization data. It serves * to encapsulate instance variables and methods for visualization network * execution, as well as representing data consisting of a field (i.e., just * an unstructured pile of data). This is to be compared with a vtkDataSet, * which is data with geometric and/or topological structure. * * vtkDataObjects are used to represent arbitrary repositories of data via the * vtkFieldData instance variable. These data must be eventually mapped into a * concrete subclass of vtkDataSet before they can actually be displayed. * * @sa * vtkDataSet vtkFieldData vtkDataObjectToDataSetFilter * vtkFieldDataToAttributeDataFilter */ #ifndef vtkDataObject_h #define vtkDataObject_h #include "vtkCommonDataModelModule.h" // For export macro #include "vtkObject.h" class vtkAbstractArray; class vtkDataArray; class vtkDataSetAttributes; class vtkFieldData; class vtkInformation; class vtkInformationDataObjectKey; class vtkInformationDoubleKey; class vtkInformationDoubleVectorKey; class vtkInformationIntegerKey; class vtkInformationIntegerPointerKey; class vtkInformationIntegerVectorKey; class vtkInformationStringKey; class vtkInformationVector; class vtkInformationInformationVectorKey; #define VTK_PIECES_EXTENT 0 #define VTK_3D_EXTENT 1 #define VTK_TIME_EXTENT 2 class VTKCOMMONDATAMODEL_EXPORT vtkDataObject : public vtkObject { public: static vtkDataObject* New(); vtkTypeMacro(vtkDataObject, vtkObject); void PrintSelf(ostream& os, vtkIndent indent) override; //@{ /** * Set/Get the information object associated with this data object. */ vtkGetObjectMacro(Information, vtkInformation); virtual void SetInformation(vtkInformation*); //@} /** * Data objects are composite objects and need to check each part for MTime. * The information object also needs to be considered. */ vtkMTimeType GetMTime() override; /** * Restore data object to initial state, */ virtual void Initialize(); /** * Release data back to system to conserve memory resource. Used during * visualization network execution. Releasing this data does not make * down-stream data invalid. */ void ReleaseData(); //@{ /** * Get the flag indicating the data has been released. */ vtkGetMacro(DataReleased, int); //@} //@{ /** * Turn on/off flag to control whether every object releases its data * after being used by a filter. */ static void SetGlobalReleaseDataFlag(int val); void GlobalReleaseDataFlagOn() { this->SetGlobalReleaseDataFlag(1); } void GlobalReleaseDataFlagOff() { this->SetGlobalReleaseDataFlag(0); } static int GetGlobalReleaseDataFlag(); //@} //@{ /** * Assign or retrieve a general field data to this data object. */ virtual void SetFieldData(vtkFieldData*); vtkGetObjectMacro(FieldData, vtkFieldData); //@} /** * Return class name of data type. This is one of VTK_STRUCTURED_GRID, * VTK_STRUCTURED_POINTS, VTK_UNSTRUCTURED_GRID, VTK_POLY_DATA, or * VTK_RECTILINEAR_GRID (see vtkSetGet.h for definitions). * THIS METHOD IS THREAD SAFE */ virtual int GetDataObjectType() { return VTK_DATA_OBJECT; } /** * Used by Threaded ports to determine if they should initiate an * asynchronous update (still in development). */ vtkMTimeType GetUpdateTime(); /** * Return the actual size of the data in kibibytes (1024 bytes). This number * is valid only after the pipeline has updated. The memory size * returned is guaranteed to be greater than or equal to the * memory required to represent the data (e.g., extra space in * arrays, etc. are not included in the return value). */ virtual unsigned long GetActualMemorySize(); /** * Copy from the pipeline information to the data object's own information. * Called right before the main execution pass. */ virtual void CopyInformationFromPipeline(vtkInformation* vtkNotUsed(info)) {} /** * Copy information from this data object to the pipeline information. * This is used by the vtkTrivialProducer that is created when someone * calls SetInputData() to connect a data object to a pipeline. */ virtual void CopyInformationToPipeline(vtkInformation* vtkNotUsed(info)) {} /** * Return the information object within the input information object's * field data corresponding to the specified association * (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and attribute * (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) */ static vtkInformation* GetActiveFieldInformation( vtkInformation* info, int fieldAssociation, int attributeType); /** * Return the information object within the input information object's * field data corresponding to the specified association * (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and name. */ static vtkInformation* GetNamedFieldInformation( vtkInformation* info, int fieldAssociation, const char* name); /** * Remove the info associated with an array */ static void RemoveNamedFieldInformation( vtkInformation* info, int fieldAssociation, const char* name); /** * Set the named array to be the active field for the specified type * (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) and association * (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). Returns the * active field information object and creates on entry if one not found. */ static vtkInformation* SetActiveAttribute( vtkInformation* info, int fieldAssociation, const char* attributeName, int attributeType); /** * Set the name, array type, number of components, and number of tuples * within the passed information object for the active attribute of type * attributeType (in specified association, FIELD_ASSOCIATION_POINTS or * FIELD_ASSOCIATION_CELLS). If there is not an active attribute of the * specified type, an entry in the information object is created. If * arrayType, numComponents, or numTuples equal to -1, or name=nullptr the * value is not changed. */ static void SetActiveAttributeInfo(vtkInformation* info, int fieldAssociation, int attributeType, const char* name, int arrayType, int numComponents, int numTuples); /** * Convenience version of previous method for use (primarily) by the Imaging * filters. If arrayType or numComponents == -1, the value is not changed. */ static void SetPointDataActiveScalarInfo(vtkInformation* info, int arrayType, int numComponents); /** * This method is called by the source when it executes to generate data. * It is sort of the opposite of ReleaseData. * It sets the DataReleased flag to 0, and sets a new UpdateTime. */ void DataHasBeenGenerated(); /** * make the output data ready for new data to be inserted. For most * objects we just call Initialize. But for vtkImageData we leave the old * data in case the memory can be reused. */ virtual void PrepareForNewData() { this->Initialize(); } //@{ /** * Shallow and Deep copy. These copy the data, but not any of the * pipeline connections. */ virtual void ShallowCopy(vtkDataObject* src); virtual void DeepCopy(vtkDataObject* src); //@} /** * The ExtentType will be left as VTK_PIECES_EXTENT for data objects * such as vtkPolyData and vtkUnstructuredGrid. The ExtentType will be * changed to VTK_3D_EXTENT for data objects with 3D structure such as * vtkImageData (and its subclass vtkStructuredPoints), vtkRectilinearGrid, * and vtkStructuredGrid. The default is the have an extent in pieces, * with only one piece (no streaming possible). */ virtual int GetExtentType() { return VTK_PIECES_EXTENT; } /** * This method crops the data object (if necessary) so that the extent * matches the update extent. */ virtual void Crop(const int* updateExtent); /** * Possible values for the FIELD_ASSOCIATION information entry. */ enum FieldAssociations { FIELD_ASSOCIATION_POINTS, FIELD_ASSOCIATION_CELLS, FIELD_ASSOCIATION_NONE, FIELD_ASSOCIATION_POINTS_THEN_CELLS, FIELD_ASSOCIATION_VERTICES, FIELD_ASSOCIATION_EDGES, FIELD_ASSOCIATION_ROWS, NUMBER_OF_ASSOCIATIONS }; /** * Possible attribute types. * POINT_THEN_CELL is provided for consistency with FieldAssociations. */ enum AttributeTypes { POINT, CELL, FIELD, POINT_THEN_CELL, VERTEX, EDGE, ROW, NUMBER_OF_ATTRIBUTE_TYPES }; /** * Returns the attributes of the data object of the specified * attribute type. The type may be: *