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 184 185 186
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLStructuredGridWriter.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 "vtkXMLStructuredGridWriter.h"
#include "vtkCellData.h"
#include "vtkErrorCode.h"
#include "vtkInformation.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkStructuredGrid.h"
#define vtkXMLOffsetsManager_DoNotInclude
#include "vtkXMLOffsetsManager.h"
#undef vtkXMLOffsetsManager_DoNotInclude
vtkStandardNewMacro(vtkXMLStructuredGridWriter);
//----------------------------------------------------------------------------
vtkXMLStructuredGridWriter::vtkXMLStructuredGridWriter()
{
this->PointsOM = new OffsetsManagerGroup;
}
//----------------------------------------------------------------------------
vtkXMLStructuredGridWriter::~vtkXMLStructuredGridWriter()
{
delete this->PointsOM;
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkStructuredGrid* vtkXMLStructuredGridWriter::GetInput()
{
return static_cast<vtkStructuredGrid*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::GetInputExtent(int* extent)
{
this->GetInput()->GetExtent(extent);
}
//----------------------------------------------------------------------------
const char* vtkXMLStructuredGridWriter::GetDataSetName()
{
return "StructuredGrid";
}
//----------------------------------------------------------------------------
const char* vtkXMLStructuredGridWriter::GetDefaultFileExtension()
{
return "vts";
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::AllocatePositionArrays()
{
this->Superclass::AllocatePositionArrays();
this->PointsOM->Allocate(this->NumberOfPieces,this->NumberOfTimeSteps);
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::DeletePositionArrays()
{
this->Superclass::DeletePositionArrays();
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::WriteAppendedPiece(int index,
vtkIndent indent)
{
this->Superclass::WriteAppendedPiece(index, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WritePointsAppended(this->GetInput()->GetPoints(), indent,
&this->PointsOM->GetPiece(index));
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::WriteAppendedPieceData(int index)
{
// Split progress range by the approximate fractions of data written
// by each step in this method.
float progressRange[2] = { 0.f, 0.f };
this->GetProgressRange(progressRange);
float fractions[3];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for the superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteAppendedPieceData(index);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for the points array.
this->SetProgressRange(progressRange, 1, fractions);
// Write the points array.
this->WritePointsAppendedData(this->GetInput()->GetPoints(),
this->CurrentTimeIndex,
&this->PointsOM->GetPiece(index));
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::WriteInlinePiece(vtkIndent indent)
{
// Split progress range by the approximate fractions of data written
// by each step in this method.
float progressRange[2] = { 0.f, 0.f };
this->GetProgressRange(progressRange);
float fractions[3];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for the superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteInlinePiece(indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for the points array.
this->SetProgressRange(progressRange, 1, fractions);
// Write the points array.
this->WritePointsInline(this->GetInput()->GetPoints(), indent);
}
//----------------------------------------------------------------------------
void vtkXMLStructuredGridWriter::CalculateSuperclassFraction(float* fractions)
{
int extent[6];
this->GetInputExtent(extent);
int dims[3] = {extent[1]-extent[0],
extent[3]-extent[2],
extent[5]-extent[4]};
// The amount of data written by the superclass comes from the
// point/cell data arrays.
vtkIdType superclassPieceSize =
(this->GetInput()->GetPointData()->GetNumberOfArrays()*dims[0]*dims[1]*dims[2]+
this->GetInput()->GetCellData()->GetNumberOfArrays()*(dims[0]-1)*(dims[1]-1)*(dims[2]-1));
// The total data written includes the points array.
vtkIdType totalPieceSize =
superclassPieceSize + (dims[0] * dims[1] * dims[2]);
if (totalPieceSize == 0)
{
totalPieceSize = 1;
}
fractions[0] = 0;
fractions[1] = fractions[0] + float(superclassPieceSize)/totalPieceSize;
fractions[2] = 1;
}
//----------------------------------------------------------------------------
int vtkXMLStructuredGridWriter::FillInputPortInformation(
int, vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkStructuredGrid");
return 1;
}
|