forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLDataSetWriter.cxx
181 lines (160 loc) · 5.76 KB
/
vtkXMLDataSetWriter.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLDataSetWriter.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 "vtkXMLDataSetWriter.h"
#include "vtkCallbackCommand.h"
#include "vtkDataSet.h"
#include "vtkHyperOctree.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkObjectFactory.h"
#include "vtkPolyData.h"
#include "vtkRectilinearGrid.h"
#include "vtkStructuredGrid.h"
#include "vtkUnstructuredGrid.h"
#include "vtkXMLHyperOctreeWriter.h"
#include "vtkXMLImageDataWriter.h"
#include "vtkXMLPolyDataWriter.h"
#include "vtkXMLRectilinearGridWriter.h"
#include "vtkXMLStructuredGridWriter.h"
#include "vtkXMLUnstructuredGridWriter.h"
vtkStandardNewMacro(vtkXMLDataSetWriter);
//----------------------------------------------------------------------------
vtkXMLDataSetWriter::vtkXMLDataSetWriter()
{
// Setup a callback for the internal writer to report progress.
this->ProgressObserver = vtkCallbackCommand::New();
this->ProgressObserver->SetCallback(&vtkXMLDataSetWriter::ProgressCallbackFunction);
this->ProgressObserver->SetClientData(this);
}
//----------------------------------------------------------------------------
vtkXMLDataSetWriter::~vtkXMLDataSetWriter()
{
this->ProgressObserver->Delete();
}
//----------------------------------------------------------------------------
void vtkXMLDataSetWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkDataSet* vtkXMLDataSetWriter::GetInput()
{
return static_cast<vtkDataSet*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
int vtkXMLDataSetWriter::WriteInternal()
{
vtkDataSet* input = vtkDataSet::SafeDownCast(this->GetInput());
vtkXMLWriter* writer = 0;
// Create a writer based on the data set type.
switch (input->GetDataObjectType())
{
case VTK_IMAGE_DATA:
case VTK_STRUCTURED_POINTS:
{
vtkXMLImageDataWriter* w = vtkXMLImageDataWriter::New();
w->SetInput(static_cast<vtkImageData*>(input));
writer = w;
} break;
case VTK_STRUCTURED_GRID:
{
vtkXMLStructuredGridWriter* w = vtkXMLStructuredGridWriter::New();
w->SetInput(static_cast<vtkStructuredGrid*>(input));
writer = w;
} break;
case VTK_RECTILINEAR_GRID:
{
vtkXMLRectilinearGridWriter* w = vtkXMLRectilinearGridWriter::New();
w->SetInput(static_cast<vtkRectilinearGrid*>(input));
writer = w;
} break;
case VTK_UNSTRUCTURED_GRID:
{
vtkXMLUnstructuredGridWriter* w = vtkXMLUnstructuredGridWriter::New();
w->SetInput(static_cast<vtkUnstructuredGrid*>(input));
writer = w;
} break;
case VTK_POLY_DATA:
{
vtkXMLPolyDataWriter* w = vtkXMLPolyDataWriter::New();
w->SetInput(static_cast<vtkPolyData*>(input));
writer = w;
} break;
case VTK_HYPER_OCTREE:
{
vtkXMLHyperOctreeWriter* w = vtkXMLHyperOctreeWriter::New();
w->SetInput(static_cast<vtkHyperOctree*>(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->AddObserver(vtkCommand::ProgressEvent, this->ProgressObserver);
// Try to write.
int result = writer->Write();
// Cleanup.
writer->RemoveObserver(this->ProgressObserver);
writer->Delete();
return result;
}
//----------------------------------------------------------------------------
const char* vtkXMLDataSetWriter::GetDataSetName()
{
return "DataSet";
}
//----------------------------------------------------------------------------
const char* vtkXMLDataSetWriter::GetDefaultFileExtension()
{
return "vtk";
}
//----------------------------------------------------------------------------
void vtkXMLDataSetWriter::ProgressCallbackFunction(vtkObject* caller,
unsigned long,
void* clientdata, void*)
{
vtkAlgorithm* w = vtkAlgorithm::SafeDownCast(caller);
if(w)
{
reinterpret_cast<vtkXMLDataSetWriter*>(clientdata)->ProgressCallback(w);
}
}
//----------------------------------------------------------------------------
void vtkXMLDataSetWriter::ProgressCallback(vtkAlgorithm* w)
{
float width = this->ProgressRange[1]-this->ProgressRange[0];
float internalProgress = w->GetProgress();
float progress = this->ProgressRange[0] + internalProgress*width;
this->UpdateProgressDiscrete(progress);
if(this->AbortExecute)
{
w->SetAbortExecute(1);
}
}
//----------------------------------------------------------------------------
int vtkXMLDataSetWriter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkDataSet");
return 1;
}