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.
 
 
 
 
 
 

183 lines
5.5 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkXMLPStructuredGridReader.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 "vtkXMLPStructuredGridReader.h"
#include "vtkObjectFactory.h"
#include "vtkPoints.h"
#include "vtkStructuredGrid.h"
#include "vtkXMLDataElement.h"
#include "vtkXMLStructuredGridReader.h"
#include "vtkInformation.h"
#include "vtkStreamingDemandDrivenPipeline.h"
vtkCxxRevisionMacro(vtkXMLPStructuredGridReader, "$Revision: 1.10 $");
vtkStandardNewMacro(vtkXMLPStructuredGridReader);
//----------------------------------------------------------------------------
vtkXMLPStructuredGridReader::vtkXMLPStructuredGridReader()
{
// Copied from vtkStructuredGridReader constructor:
vtkStructuredGrid *output = vtkStructuredGrid::New();
this->SetOutput(output);
// Releasing data for pipeline parallism.
// Filters will know it is empty.
output->ReleaseData();
output->Delete();
}
//----------------------------------------------------------------------------
vtkXMLPStructuredGridReader::~vtkXMLPStructuredGridReader()
{
}
//----------------------------------------------------------------------------
void vtkXMLPStructuredGridReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkStructuredGrid* vtkXMLPStructuredGridReader::GetOutput(int idx)
{
return vtkStructuredGrid::SafeDownCast( this->GetOutputDataObject(idx) );
}
//----------------------------------------------------------------------------
void vtkXMLPStructuredGridReader::SetOutput(vtkStructuredGrid *output)
{
this->GetExecutive()->SetOutputData(0, output);
}
//----------------------------------------------------------------------------
vtkStructuredGrid* vtkXMLPStructuredGridReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkStructuredGrid* vtkXMLPStructuredGridReader::GetPieceInput(int index)
{
vtkXMLStructuredGridReader* reader =
static_cast<vtkXMLStructuredGridReader*>(this->PieceReaders[index]);
return reader->GetOutput();
}
//----------------------------------------------------------------------------
const char* vtkXMLPStructuredGridReader::GetDataSetName()
{
return "PStructuredGrid";
}
//----------------------------------------------------------------------------
void vtkXMLPStructuredGridReader::SetOutputExtent(int* extent)
{
this->GetOutput()->SetExtent(extent);
}
//----------------------------------------------------------------------------
void vtkXMLPStructuredGridReader::GetPieceInputExtent(int index, int* extent)
{
this->GetPieceInput(index)->GetExtent(extent);
}
//----------------------------------------------------------------------------
int
vtkXMLPStructuredGridReader::ReadPrimaryElement(vtkXMLDataElement* ePrimary)
{
if(!this->Superclass::ReadPrimaryElement(ePrimary)) { return 0; }
// Find the PPoints element.
this->PPointsElement = 0;
int i;
int numNested = ePrimary->GetNumberOfNestedElements();
for(i=0;i < numNested; ++i)
{
vtkXMLDataElement* eNested = ePrimary->GetNestedElement(i);
if((strcmp(eNested->GetName(), "PPoints") == 0) &&
(eNested->GetNumberOfNestedElements() == 1))
{
this->PPointsElement = eNested;
}
}
if(!this->PPointsElement)
{
int extent[6];
this->GetOutput()->GetWholeExtent(extent);
if((extent[0] <= extent[1]) && (extent[2] <= extent[3]) &&
(extent[4] <= extent[5]))
{
vtkErrorMacro("Could not find PPoints element with 1 array.");
return 0;
}
}
return 1;
}
//----------------------------------------------------------------------------
void vtkXMLPStructuredGridReader::SetupOutputData()
{
this->Superclass::SetupOutputData();
// Create the points array.
vtkPoints* points = vtkPoints::New();
if(this->PPointsElement)
{
// Non-zero volume.
vtkDataArray* a = this->CreateDataArray(this->PPointsElement->GetNestedElement(0));
if(a)
{
a->SetNumberOfTuples(this->GetNumberOfPoints());
points->SetData(a);
a->Delete();
}
else
{
this->DataError = 1;
}
}
this->GetOutput()->SetPoints(points);
points->Delete();
}
//----------------------------------------------------------------------------
int vtkXMLPStructuredGridReader::ReadPieceData()
{
if(!this->Superclass::ReadPieceData()) { return 0; }
// Copy the points.
vtkStructuredGrid* input = this->GetPieceInput(this->Piece);
vtkStructuredGrid* output = this->GetOutput();
this->CopyArrayForPoints(input->GetPoints()->GetData(),
output->GetPoints()->GetData());
return 1;
}
//----------------------------------------------------------------------------
vtkXMLDataReader* vtkXMLPStructuredGridReader::CreatePieceReader()
{
return vtkXMLStructuredGridReader::New();
}
int vtkXMLPStructuredGridReader::FillOutputPortInformation(int, vtkInformation *info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkStructuredGrid");
return 1;
}