forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLPDataSetWriter.cxx
164 lines (144 loc) · 4.99 KB
/
vtkXMLPDataSetWriter.cxx
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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLPDataSetWriter.cxx
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.
=========================================================================*/
#include "vtkXMLPDataSetWriter.h"
#include "vtkCallbackCommand.h"
#include "vtkDataSet.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkObjectFactory.h"
#include "vtkPolyData.h"
#include "vtkRectilinearGrid.h"
#include "vtkStructuredGrid.h"
#include "vtkUnstructuredGrid.h"
#include "vtkXMLPImageDataWriter.h"
#include "vtkXMLPPolyDataWriter.h"
#include "vtkXMLPRectilinearGridWriter.h"
#include "vtkXMLPStructuredGridWriter.h"
#include "vtkXMLPUnstructuredGridWriter.h"
vtkStandardNewMacro(vtkXMLPDataSetWriter);
//----------------------------------------------------------------------------
vtkXMLPDataSetWriter::vtkXMLPDataSetWriter()
{
}
//----------------------------------------------------------------------------
vtkXMLPDataSetWriter::~vtkXMLPDataSetWriter()
{
}
//----------------------------------------------------------------------------
void vtkXMLPDataSetWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkDataSet* vtkXMLPDataSetWriter::GetInput()
{
return static_cast<vtkDataSet*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
int vtkXMLPDataSetWriter::WriteInternal()
{
vtkDataSet* input = this->GetInput();
vtkXMLPDataWriter* writer = 0;
// Create a writer based on the data set type.
switch (input->GetDataObjectType())
{
case VTK_IMAGE_DATA:
case VTK_STRUCTURED_POINTS:
{
vtkXMLPImageDataWriter* w = vtkXMLPImageDataWriter::New();
w->SetInput(static_cast<vtkImageData*>(input));
writer = w;
} break;
case VTK_STRUCTURED_GRID:
{
vtkXMLPStructuredGridWriter* w = vtkXMLPStructuredGridWriter::New();
w->SetInput(static_cast<vtkStructuredGrid*>(input));
writer = w;
} break;
case VTK_RECTILINEAR_GRID:
{
vtkXMLPRectilinearGridWriter* w = vtkXMLPRectilinearGridWriter::New();
w->SetInput(static_cast<vtkRectilinearGrid*>(input));
writer = w;
} break;
case VTK_UNSTRUCTURED_GRID:
{
vtkXMLPUnstructuredGridWriter* w = vtkXMLPUnstructuredGridWriter::New();
w->SetInput(static_cast<vtkUnstructuredGrid*>(input));
writer = w;
} break;
case VTK_POLY_DATA:
{
vtkXMLPPolyDataWriter* w = vtkXMLPPolyDataWriter::New();
w->SetInput(static_cast<vtkPolyData*>(input));
writer = w;
} break;
}
// Make sure we got a valid writer for the data set.
if(!writer)
{
vtkErrorMacro("Cannot write dataset type: "
<< input->GetDataObjectType());
return 0;
}
// Copy the settings to the writer.
writer->SetDebug(this->GetDebug());
writer->SetFileName(this->GetFileName());
writer->SetByteOrder(this->GetByteOrder());
writer->SetCompressor(this->GetCompressor());
writer->SetBlockSize(this->GetBlockSize());
writer->SetDataMode(this->GetDataMode());
writer->SetEncodeAppendedData(this->GetEncodeAppendedData());
writer->SetNumberOfPieces(this->GetNumberOfPieces());
writer->SetGhostLevel(this->GetGhostLevel());
writer->SetStartPiece(this->GetStartPiece());
writer->SetEndPiece(this->GetEndPiece());
writer->AddObserver(vtkCommand::ProgressEvent, this->ProgressObserver);
// Decide whether to write the summary file.
int writeSummary = 0;
if(this->WriteSummaryFileInitialized)
{
writeSummary = this->WriteSummaryFile;
}
else if(this->StartPiece == 0)
{
writeSummary = 1;
}
writer->SetWriteSummaryFile(writeSummary);
// Try to write.
int result = writer->Write();
// Cleanup.
writer->RemoveObserver(this->ProgressObserver);
writer->Delete();
return result;
}
//----------------------------------------------------------------------------
const char* vtkXMLPDataSetWriter::GetDataSetName()
{
return "DataSet";
}
//----------------------------------------------------------------------------
const char* vtkXMLPDataSetWriter::GetDefaultFileExtension()
{
return "vtk";
}
//----------------------------------------------------------------------------
vtkXMLWriter* vtkXMLPDataSetWriter::CreatePieceWriter(int)
{
return 0;
}
//----------------------------------------------------------------------------
int vtkXMLPDataSetWriter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkDataSet");
return 1;
}