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
|
/*=========================================================================
Program: ParaView
Module: $RCSfile: vtkXMLMultiGroupDataWriter.h,v $
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 vtkXMLMultiGroupDataWriter - Writer for multi-group datasets
// .SECTION Description
// vtkXMLMultiGroupDataWriter 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
// vtkXMLPMultiGroupDataWriter
#ifndef __vtkXMLMultiGroupDataWriter_h
#define __vtkXMLMultiGroupDataWriter_h
#include "vtkXMLWriter.h"
class vtkCallbackCommand;
class vtkMultiGroupDataSet;
class vtkXMLMultiGroupDataWriterInternals;
class VTK_IO_EXPORT vtkXMLMultiGroupDataWriter : public vtkXMLWriter
{
public:
static vtkXMLMultiGroupDataWriter* New();
vtkTypeRevisionMacro(vtkXMLMultiGroupDataWriter,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 piece number to write. The same piece number is used
// for all inputs.
vtkGetMacro(Piece, int);
vtkSetMacro(Piece, int);
// Description:
// Get/Set the number of pieces into which the inputs are split.
vtkGetMacro(NumberOfPieces, int);
vtkSetMacro(NumberOfPieces, int);
// 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);
// See the vtkAlgorithm for a desciption of what these do
int ProcessRequest(vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
protected:
vtkXMLMultiGroupDataWriter();
~vtkXMLMultiGroupDataWriter();
// 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;
virtual void FillDataTypes(vtkMultiGroupDataSet*);
unsigned int GetNumberOfDataTypes();
int* GetDataTypesPointer();
// Methods to create the set of writers matching the set of inputs.
void CreateWriters(vtkMultiGroupDataSet*);
vtkXMLWriter* GetWriter(int index);
// Methods to help construct internal file names.
void SplitFileName();
const char* GetFilePrefix();
const char* GetFilePath();
// Methods to construct the list of entries for the collection file.
void AppendEntry(const char* entry);
void DeleteAllEntries();
// Write the collection file if it is requested.
int WriteMetaFileIfRequested();
// Make a directory.
void MakeDirectory(const char* name);
// Remove a directory.
void RemoveADirectory(const char* name);
// Internal implementation details.
vtkXMLMultiGroupDataWriterInternals* Internal;
// The piece number to write.
int Piece;
// The number of pieces into which the inputs are split.
int NumberOfPieces;
// The number of ghost levels to write for unstructured data.
int GhostLevel;
// Whether to write the collection file on this node.
int WriteMetaFile;
int WriteMetaFileInitialized;
// 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;
// Garbage collection support.
virtual void ReportReferences(vtkGarbageCollector*);
private:
vtkXMLMultiGroupDataWriter(const vtkXMLMultiGroupDataWriter&); // Not implemented.
void operator=(const vtkXMLMultiGroupDataWriter&); // Not implemented.
};
#endif
|