Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

413 lines
14 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkXMLPolyDataWriter.cxx,v $
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 "vtkXMLPolyDataWriter.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkErrorCode.h"
#include "vtkInformation.h"
#include "vtkInformationIntegerKey.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPolyData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#define vtkOffsetsManager_DoNotInclude
#include "vtkOffsetsManagerArray.h"
#undef vtkOffsetsManager_DoNotInclude
vtkCxxRevisionMacro(vtkXMLPolyDataWriter, "$Revision: 1.11 $");
vtkStandardNewMacro(vtkXMLPolyDataWriter);
//----------------------------------------------------------------------------
vtkXMLPolyDataWriter::vtkXMLPolyDataWriter()
{
this->VertsOM = new OffsetsManagerArray;
this->LinesOM = new OffsetsManagerArray;
this->StripsOM = new OffsetsManagerArray;
this->PolysOM = new OffsetsManagerArray;
}
//----------------------------------------------------------------------------
vtkXMLPolyDataWriter::~vtkXMLPolyDataWriter()
{
delete this->VertsOM;
delete this->LinesOM;
delete this->StripsOM;
delete this->PolysOM;
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
//----------------------------------------------------------------------------
vtkPolyData* vtkXMLPolyDataWriter::GetInput()
{
return static_cast<vtkPolyData*>(this->Superclass::GetInput());
}
//----------------------------------------------------------------------------
const char* vtkXMLPolyDataWriter::GetDataSetName()
{
return "PolyData";
}
//----------------------------------------------------------------------------
const char* vtkXMLPolyDataWriter::GetDefaultFileExtension()
{
return "vtp";
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::AllocatePositionArrays()
{
this->Superclass::AllocatePositionArrays();
this->NumberOfVertsPositions = new unsigned long[this->NumberOfPieces];
this->NumberOfLinesPositions = new unsigned long[this->NumberOfPieces];
this->NumberOfStripsPositions = new unsigned long[this->NumberOfPieces];
this->NumberOfPolysPositions = new unsigned long[this->NumberOfPieces];
this->VertsOM->Allocate(this->NumberOfPieces, 2, this->NumberOfTimeSteps);
this->LinesOM->Allocate(this->NumberOfPieces, 2, this->NumberOfTimeSteps);
this->StripsOM->Allocate(this->NumberOfPieces, 2, this->NumberOfTimeSteps);
this->PolysOM->Allocate(this->NumberOfPieces, 2, this->NumberOfTimeSteps);
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::DeletePositionArrays()
{
this->Superclass::DeletePositionArrays();
delete[] this->NumberOfVertsPositions;
delete[] this->NumberOfLinesPositions;
delete[] this->NumberOfStripsPositions;
delete[] this->NumberOfPolysPositions;
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::WriteInlinePieceAttributes()
{
this->Superclass::WriteInlinePieceAttributes();
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
vtkPolyData* input = this->GetInput();
this->WriteScalarAttribute("NumberOfVerts",
input->GetVerts()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteScalarAttribute("NumberOfLines",
input->GetLines()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteScalarAttribute("NumberOfStrips",
input->GetStrips()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteScalarAttribute("NumberOfPolys",
input->GetPolys()->GetNumberOfCells());
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::WriteInlinePiece(vtkIndent indent)
{
// Split progress range by the approximate fraction of data written
// by each step in this method.
float progressRange[2] = {0,0};
this->GetProgressRange(progressRange);
float fractions[6];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for superclass.
this->SetProgressRange(progressRange, 0, fractions);
// Let the superclass write its data.
this->Superclass::WriteInlinePiece(indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
vtkPolyData* input = this->GetInput();
// Set the range of progress for Verts.
this->SetProgressRange(progressRange, 1, fractions);
// Write the Verts.
this->WriteCellsInline("Verts", input->GetVerts(), 0, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Lines.
this->SetProgressRange(progressRange, 2, fractions);
// Write the Lines.
this->WriteCellsInline("Lines", input->GetLines(), 0, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Strips.
this->SetProgressRange(progressRange, 3, fractions);
// Write the Strips.
this->WriteCellsInline("Strips", input->GetStrips(), 0, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Polys.
this->SetProgressRange(progressRange, 4, fractions);
// Write the Polys.
this->WriteCellsInline("Polys", input->GetPolys(), 0, indent);
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::WriteAppendedPieceAttributes(int index)
{
this->Superclass::WriteAppendedPieceAttributes(index);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->NumberOfVertsPositions[index] =
this->ReserveAttributeSpace("NumberOfVerts");
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->NumberOfLinesPositions[index] =
this->ReserveAttributeSpace("NumberOfLines");
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->NumberOfStripsPositions[index] =
this->ReserveAttributeSpace("NumberOfStrips");
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->NumberOfPolysPositions[index] =
this->ReserveAttributeSpace("NumberOfPolys");
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::WriteAppendedPiece(int index, vtkIndent indent)
{
this->Superclass::WriteAppendedPiece(index, indent);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCellsAppended("Verts", 0, indent, &this->VertsOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCellsAppended("Lines", 0, indent , &this->LinesOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCellsAppended("Strips", 0, indent, &this->StripsOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
this->WriteCellsAppended("Polys", 0, indent, &this->PolysOM->GetPiece(index));
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::WriteAppendedPieceData(int index)
{
ostream& os = *(this->Stream);
vtkPolyData* input = this->GetInput();
unsigned long returnPosition = os.tellp();
os.seekp(this->NumberOfVertsPositions[index]);
this->WriteScalarAttribute("NumberOfVerts",
input->GetVerts()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
os.seekp(this->NumberOfLinesPositions[index]);
this->WriteScalarAttribute("NumberOfLines",
input->GetLines()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
os.seekp(this->NumberOfStripsPositions[index]);
this->WriteScalarAttribute("NumberOfStrips",
input->GetStrips()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
os.seekp(this->NumberOfPolysPositions[index]);
this->WriteScalarAttribute("NumberOfPolys",
input->GetPolys()->GetNumberOfCells());
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
os.seekp(returnPosition);
// Split progress range by the approximate fraction of data written
// by each step in this method.
float progressRange[2] = {0,0};
this->GetProgressRange(progressRange);
float fractions[6];
this->CalculateSuperclassFraction(fractions);
// Set the range of progress for 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 Verts.
this->SetProgressRange(progressRange, 1, fractions);
// Write the Verts.
this->WriteCellsAppendedData(input->GetVerts(), 0,
this->CurrentTimeIndex,
&this->VertsOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Lines.
this->SetProgressRange(progressRange, 2, fractions);
// Write the Lines.
this->WriteCellsAppendedData(input->GetLines(), 0,
this->CurrentTimeIndex,
&this->LinesOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Strips.
this->SetProgressRange(progressRange, 3, fractions);
// Write the Strips.
this->WriteCellsAppendedData(input->GetStrips(), 0,
this->CurrentTimeIndex,
&this->StripsOM->GetPiece(index));
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
return;
}
// Set the range of progress for Polys.
this->SetProgressRange(progressRange, 4, fractions);
// Write the Polys.
this->WriteCellsAppendedData(input->GetPolys(), 0,
this->CurrentTimeIndex,
&this->PolysOM->GetPiece(index));
}
//----------------------------------------------------------------------------
vtkIdType vtkXMLPolyDataWriter::GetNumberOfInputCells()
{
vtkPolyData* input = this->GetInput();
return (input->GetVerts()->GetNumberOfCells()+
input->GetLines()->GetNumberOfCells()+
input->GetStrips()->GetNumberOfCells()+
input->GetPolys()->GetNumberOfCells());
}
//----------------------------------------------------------------------------
void vtkXMLPolyDataWriter::CalculateSuperclassFraction(float* fractions)
{
vtkPolyData* input = this->GetInput();
// The superclass will write point/cell data and point specifications.
int pdArrays = input->GetPointData()->GetNumberOfArrays();
int cdArrays = input->GetCellData()->GetNumberOfArrays();
vtkIdType pdSize = pdArrays*this->GetNumberOfInputPoints();
vtkIdType cdSize = cdArrays*this->GetNumberOfInputCells();
vtkIdType pointsSize = this->GetNumberOfInputPoints();
// This class will write cell specifications.
vtkIdType connectSizeV = (input->GetVerts()->GetData()->GetNumberOfTuples() -
input->GetVerts()->GetNumberOfCells());
vtkIdType connectSizeL = (input->GetLines()->GetData()->GetNumberOfTuples() -
input->GetLines()->GetNumberOfCells());
vtkIdType connectSizeS = (input->GetStrips()->GetData()->GetNumberOfTuples() -
input->GetStrips()->GetNumberOfCells());
vtkIdType connectSizeP = (input->GetPolys()->GetData()->GetNumberOfTuples() -
input->GetPolys()->GetNumberOfCells());
vtkIdType offsetSizeV = input->GetVerts()->GetNumberOfCells();
vtkIdType offsetSizeL = input->GetLines()->GetNumberOfCells();
vtkIdType offsetSizeS = input->GetStrips()->GetNumberOfCells();
vtkIdType offsetSizeP = input->GetPolys()->GetNumberOfCells();
fractions[0] = 0;
fractions[1] = fractions[0] + pdSize+cdSize+pointsSize;
fractions[2] = fractions[1] + connectSizeV+offsetSizeV;
fractions[3] = fractions[2] + connectSizeL+offsetSizeL;
fractions[4] = fractions[3] + connectSizeS+offsetSizeS;
fractions[5] = fractions[4] + connectSizeP+offsetSizeP;
if(fractions[5] == 0)
{
fractions[5] = 1;
}
for(int i=0; i < 5;++i)
{
fractions[i+1] = fractions[i+1] / fractions[5];
}
}
//----------------------------------------------------------------------------
int vtkXMLPolyDataWriter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkPolyData");
return 1;
}