/usr/include/vtk-6.1/vtkXMLCompositeDataWriter.h is in libvtk6-dev 6.1.0+dfsg2-6.
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 | /*=========================================================================
Program: ParaView
Module: vtkXMLCompositeDataWriter.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
=========================================================================*/
// .NAME vtkXMLCompositeDataWriter - Writer for multi-group datasets
// .SECTION Description
// vtkXMLCompositeDataWriter writes (serially) the VTK XML multi-group,
// multi-block hierarchical and hierarchical box files. XML multi-group
// data files are meta-files that point to a list of serial VTK XML files.
// .SECTION See Also
// vtkXMLPCompositeDataWriter
#ifndef __vtkXMLCompositeDataWriter_h
#define __vtkXMLCompositeDataWriter_h
#include "vtkIOXMLModule.h" // For export macro
#include "vtkXMLWriter.h"
#include "vtkStdString.h" // needed for vtkStdString.
class vtkCallbackCommand;
class vtkCompositeDataSet;
class vtkXMLDataElement;
class vtkXMLCompositeDataWriterInternals;
class VTKIOXML_EXPORT vtkXMLCompositeDataWriter : public vtkXMLWriter
{
public:
vtkTypeMacro(vtkXMLCompositeDataWriter,vtkXMLWriter);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get the default file extension for files written by this writer.
virtual const char* GetDefaultFileExtension();
// Description:
// Get/Set the number of pieces into which the inputs are split.
// Description:
// Get/Set the number of ghost levels to be written.
vtkGetMacro(GhostLevel, int);
vtkSetMacro(GhostLevel, int);
// Description:
// Get/Set whether this instance will write the meta-file.
vtkGetMacro(WriteMetaFile, int);
virtual void SetWriteMetaFile(int flag);
// Description:
// See the vtkAlgorithm for a desciption of what these do
int ProcessRequest(vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
protected:
vtkXMLCompositeDataWriter();
~vtkXMLCompositeDataWriter();
// Description:
// Methods to define the file's major and minor version numbers.
// Major version incremented since v0.1 composite data readers cannot read
// the files written by this new reader.
virtual int GetDataSetMajorVersion() { return 1; }
virtual int GetDataSetMinorVersion() { return 0; }
// Description:
// Create a filename for the given index.
vtkStdString CreatePieceFileName(int Piece);
// see algorithm for more info
virtual int FillInputPortInformation(int port, vtkInformation* info);
int RequestData(
vtkInformation* , vtkInformationVector** , vtkInformationVector*);
int RequestUpdateExtent(
vtkInformation* , vtkInformationVector** , vtkInformationVector*);
virtual int WriteData();
virtual const char* GetDataSetName();
// Create a default executive.
virtual vtkExecutive* CreateDefaultExecutive();
vtkInformation* InputInformation;
// Description:
// Determine the data types for each of the leaf nodes.
virtual void FillDataTypes(vtkCompositeDataSet*);
// Description:
// Returns the number of leaf nodes (also includes empty leaf nodes).
unsigned int GetNumberOfDataTypes();
// Description:
// Returns the array pointer to the array of leaf nodes.
int* GetDataTypesPointer();
// Methods to create the set of writers matching the set of inputs.
void CreateWriters(vtkCompositeDataSet*);
vtkXMLWriter* GetWriter(int index);
// Methods to help construct internal file names.
void SplitFileName();
const char* GetFilePrefix();
const char* GetFilePath();
// Description:
// Write the collection file if it is requested.
// This is overridden in parallel writers to communicate the hierarchy to the
// root which then write the meta file.
int WriteMetaFileIfRequested();
// Make a directory.
void MakeDirectory(const char* name);
// Remove a directory.
void RemoveADirectory(const char* name);
// Internal implementation details.
vtkXMLCompositeDataWriterInternals* Internal;
// The number of ghost levels to write for unstructured data.
int GhostLevel;
// Description:
// Whether to write the collection file on this node. This could
// potentially be set to 0 (i.e. do not write) for optimization
// if the file structured does not change but the data does.
int WriteMetaFile;
// Callback registered with the ProgressObserver.
static void ProgressCallbackFunction(vtkObject*, unsigned long, void*,
void*);
// Progress callback from internal writer.
virtual void ProgressCallback(vtkAlgorithm* w);
// The observer to report progress from the internal writer.
vtkCallbackCommand* ProgressObserver;
// Description:
// Internal method called recursively to create the xml tree for
// the children of compositeData as well as write the actual data
// set files. element will only have added nested information.
// writerIdx is the global piece index used to create unique
// filenames for each file written.
// This function returns 0 if no files were written from
// compositeData.
virtual int WriteComposite(vtkCompositeDataSet* compositeData,
vtkXMLDataElement* element, int &writerIdx)=0;
// Description:
// Internal method to write a non vtkCompositeDataSet subclass as
// well as add in the file name to the metadata file.
// Element is the containing XML metadata element that may
// have data overwritten and added to (the index XML attribute
// should not be touched though). writerIdx is the piece index
// that gets incremented for the globally numbered piece.
// This function returns 0 if no file was written (not necessarily an error).
// this->ErrorCode is set on error.
virtual int WriteNonCompositeData(
vtkDataObject* dObj, vtkXMLDataElement* element,
int& writerIdx, const char* FileName);
// Description:
// Utility function to remove any already written files
// in case writer failed.
virtual void RemoveWrittenFiles(const char* SubDirectory);
private:
vtkXMLCompositeDataWriter(const vtkXMLCompositeDataWriter&); // Not implemented.
void operator=(const vtkXMLCompositeDataWriter&); // Not implemented.
};
#endif
|