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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
/*=========================================================================
Program: ParaView
Module: vtkXMLCompositeDataReader.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 "vtkXMLCompositeDataReader.h"
#include "vtkCompositeDataPipeline.h"
#include "vtkCompositeDataSet.h"
#include "vtkDataArraySelection.h"
#include "vtkDataSet.h"
#include "vtkEventForwarderCommand.h"
#include "vtkHierarchicalBoxDataSet.h"
#include "vtkInformation.h"
#include "vtkInformationIntegerKey.h"
#include "vtkInformationIntegerVectorKey.h"
#include "vtkInformationVector.h"
#include "vtkInstantiator.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkNew.h"
#include "vtkObjectFactory.h"
#include "vtkSmartPointer.h"
#include "vtkUniformGrid.h"
#include "vtkXMLDataElement.h"
#include "vtkXMLImageDataReader.h"
#include "vtkXMLPolyDataReader.h"
#include "vtkXMLRectilinearGridReader.h"
#include "vtkXMLStructuredGridReader.h"
#include "vtkXMLUnstructuredGridReader.h"
#include <map>
#include <set>
#include <string>
#include <vector>
#include <vtksys/SystemTools.hxx>
struct vtkXMLCompositeDataReaderEntry
{
const char* extension;
const char* name;
};
struct vtkXMLCompositeDataReaderInternals
{
vtkSmartPointer<vtkXMLDataElement> Root;
typedef std::map<std::string, vtkSmartPointer<vtkXMLReader> > ReadersType;
ReadersType Readers;
static const vtkXMLCompositeDataReaderEntry ReaderList[];
unsigned int MinDataset;
unsigned int MaxDataset;
vtkXMLCompositeDataReaderInternals()
{
this->MinDataset = 0;
this->MaxDataset = 0;
}
std::set<int> UpdateIndices;
bool HasUpdateRestriction;
};
//----------------------------------------------------------------------------
vtkXMLCompositeDataReader::vtkXMLCompositeDataReader()
{
this->Internal = new vtkXMLCompositeDataReaderInternals;
}
//----------------------------------------------------------------------------
vtkXMLCompositeDataReader::~vtkXMLCompositeDataReader()
{
delete this->Internal;
}
//----------------------------------------------------------------------------
void vtkXMLCompositeDataReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
const char* vtkXMLCompositeDataReader::GetDataSetName()
{
return "vtkCompositeDataSet";
}
//----------------------------------------------------------------------------
void vtkXMLCompositeDataReader::SetupEmptyOutput()
{
this->GetCurrentOutput()->Initialize();
}
//----------------------------------------------------------------------------
int vtkXMLCompositeDataReader::FillOutputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkCompositeDataSet");
return 1;
}
//----------------------------------------------------------------------------
vtkExecutive* vtkXMLCompositeDataReader::CreateDefaultExecutive()
{
return vtkCompositeDataPipeline::New();
}
//----------------------------------------------------------------------------
vtkCompositeDataSet* vtkXMLCompositeDataReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkCompositeDataSet* vtkXMLCompositeDataReader::GetOutput(int port)
{
vtkDataObject* output =
vtkCompositeDataPipeline::SafeDownCast(this->GetExecutive())->
GetCompositeOutputData(port);
return vtkCompositeDataSet::SafeDownCast(output);
}
//----------------------------------------------------------------------------
int vtkXMLCompositeDataReader::ReadPrimaryElement(vtkXMLDataElement* ePrimary)
{
if (!this->Superclass::ReadPrimaryElement(ePrimary))
{
return 0;
}
// Simply save the XML tree. We'll iterate over it later.
this->Internal->Root = ePrimary;
return 1;
}
//----------------------------------------------------------------------------
vtkXMLDataElement* vtkXMLCompositeDataReader::GetPrimaryElement()
{
return this->Internal->Root;
}
//----------------------------------------------------------------------------
vtkXMLReader* vtkXMLCompositeDataReader::GetReaderOfType(const char* type)
{
if (!type)
{
return 0;
}
vtkXMLCompositeDataReaderInternals::ReadersType::iterator iter =
this->Internal->Readers.find(type);
if (iter != this->Internal->Readers.end())
{
return iter->second.GetPointer();
}
vtkXMLReader* reader = 0;
if (strcmp(type, "vtkXMLImageDataReader") == 0)
{
reader = vtkXMLImageDataReader::New();
}
else if (strcmp(type,"vtkXMLUnstructuredGridReader") == 0)
{
reader = vtkXMLUnstructuredGridReader::New();
}
else if (strcmp(type,"vtkXMLPolyDataReader") == 0)
{
reader = vtkXMLPolyDataReader::New();
}
else if (strcmp(type,"vtkXMLRectilinearGridReader") == 0)
{
reader = vtkXMLRectilinearGridReader::New();
}
else if (strcmp(type,"vtkXMLStructuredGridReader") == 0)
{
reader = vtkXMLStructuredGridReader::New();
}
if (!reader)
{
// If all fails, Use the instantiator to create the reader.
reader = vtkXMLReader::SafeDownCast(vtkInstantiator::CreateInstance(type));
}
if (reader)
{
if (this->GetParserErrorObserver())
{
reader->SetParserErrorObserver(this->GetParserErrorObserver());
}
if (this->HasObserver("ErrorEvent"))
{
vtkNew<vtkEventForwarderCommand> fwd;
fwd->SetTarget(this);
reader->AddObserver("ErrorEvent", fwd.GetPointer());
}
this->Internal->Readers[type] = reader;
reader->Delete();
}
return reader;
}
//----------------------------------------------------------------------------
unsigned int vtkXMLCompositeDataReader::CountLeaves(vtkXMLDataElement* elem)
{
unsigned int count = 0;
if (elem)
{
unsigned int max = elem->GetNumberOfNestedElements();
for (unsigned int cc=0; cc < max; ++cc)
{
vtkXMLDataElement* child = elem->GetNestedElement(cc);
if (child && child->GetName())
{
if (strcmp(child->GetName(), "DataSet")==0)
{
count++;
}
else
{
count += this->CountLeaves(child);
}
}
}
}
return count;
}
//----------------------------------------------------------------------------
void vtkXMLCompositeDataReader::ReadXMLData()
{
vtkInformation* info = this->GetCurrentOutputInformation();
unsigned int updatePiece = static_cast<unsigned int>(
info->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()));
unsigned int updateNumPieces = static_cast<unsigned int>(
info->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()));
vtkDataObject* doOutput =
info->Get(vtkDataObject::DATA_OBJECT());
vtkCompositeDataSet* composite =
vtkCompositeDataSet::SafeDownCast(doOutput);
if (!composite)
{
return;
}
// Find the path to this file in case the internal files are
// specified as relative paths.
std::string filePath = this->FileName;
std::string::size_type pos = filePath.find_last_of("/\\");
if (pos != filePath.npos)
{
filePath = filePath.substr(0, pos);
}
else
{
filePath = "";
}
// In earlier implementation only dataset with a group were distributed among
// the processes. In this implementation, we distribute all leaf datasets
// among the processes.
// Determine the leaves that this process is going to read.
unsigned int numDatasets = this->CountLeaves(this->GetPrimaryElement());
unsigned int numDatasetsPerPiece = 1;
unsigned int remaining_blocks = 0;
if (updateNumPieces < numDatasets)
{
numDatasetsPerPiece = numDatasets / updateNumPieces;
remaining_blocks = numDatasets % updateNumPieces;
}
if (updatePiece < remaining_blocks)
{
this->Internal->MinDataset = (numDatasetsPerPiece+1)*updatePiece;
this->Internal->MaxDataset = this->Internal->MinDataset + numDatasetsPerPiece + 1;
}
else
{
this->Internal->MinDataset = (numDatasetsPerPiece +1)* remaining_blocks +
numDatasetsPerPiece * (updatePiece-remaining_blocks);
this->Internal->MaxDataset = this->Internal->MinDataset + numDatasetsPerPiece;
}
vtkInformation* outInfo = this->GetCurrentOutputInformation();
if (outInfo->Has(vtkCompositeDataPipeline::UPDATE_COMPOSITE_INDICES()))
{
this->Internal->HasUpdateRestriction = true;
this->Internal->UpdateIndices = std::set<int>();
int length = outInfo->Length(vtkCompositeDataPipeline::UPDATE_COMPOSITE_INDICES());
if (length > 0)
{
int* idx = outInfo->Get(vtkCompositeDataPipeline::UPDATE_COMPOSITE_INDICES());
this->Internal->UpdateIndices = std::set<int>(idx, idx+length);
}
}
else
{
this->Internal->HasUpdateRestriction = false;
}
// All process create the entire tree structure however, only each one only
// reads the datasets assigned to it.
unsigned int dataSetIndex=0;
this->ReadComposite(this->GetPrimaryElement(), composite, filePath.c_str(), dataSetIndex);
}
//----------------------------------------------------------------------------
int vtkXMLCompositeDataReader::ShouldReadDataSet(unsigned int dataSetIndex)
{
bool shouldRead =
(dataSetIndex >= this->Internal->MinDataset &&
dataSetIndex < this->Internal->MaxDataset);
if (shouldRead && this->Internal->HasUpdateRestriction)
{
if (this->Internal->UpdateIndices.find(dataSetIndex) ==
this->Internal->UpdateIndices.end())
{
shouldRead = false;
}
}
return shouldRead;
}
//----------------------------------------------------------------------------
vtkDataSet* vtkXMLCompositeDataReader::ReadDataset(vtkXMLDataElement* xmlElem,
const char* filePath)
{
// Construct the name of the internal file.
const char* file = xmlElem->GetAttribute("file");
if (!file)
{
return 0;
}
std::string fileName;
if (!(file[0] == '/' || file[1] == ':'))
{
fileName = filePath;
if (fileName.length())
{
fileName += "/";
}
}
fileName += file;
// Get the file extension.
std::string ext = vtksys::SystemTools::GetFilenameLastExtension(fileName);
if (ext.size() > 0)
{
// remote "." from the extension.
ext = &(ext.c_str()[1]);
}
// Search for the reader matching this extension.
const char* rname = 0;
for(const vtkXMLCompositeDataReaderEntry* readerEntry =
this->Internal->ReaderList;
!rname && readerEntry->extension; ++readerEntry)
{
if (ext == readerEntry->extension)
{
rname = readerEntry->name;
}
}
vtkXMLReader* reader = this->GetReaderOfType(rname);
if (!reader)
{
vtkErrorMacro("Could not create reader for " << rname);
return 0;
}
reader->SetFileName(fileName.c_str());
// initialize array selection so we don't have any residual array selections
// from previous use of the reader.
reader->GetPointDataArraySelection()->RemoveAllArrays();
reader->GetCellDataArraySelection()->RemoveAllArrays();
reader->Update();
vtkDataSet* output = reader->GetOutputAsDataSet();
if (!output)
{
return 0;
}
vtkDataSet* outputCopy = output->NewInstance();
outputCopy->ShallowCopy(output);
return outputCopy;
}
//----------------------------------------------------------------------------
int vtkXMLCompositeDataReader::RequestInformation(
vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
this->Superclass::RequestInformation(request, inputVector, outputVector);
vtkInformation* info = outputVector->GetInformationObject(0);
info->Set(
CAN_HANDLE_PIECE_REQUEST(), 1);
return 1;
}
//----------------------------------------------------------------------------
const vtkXMLCompositeDataReaderEntry
vtkXMLCompositeDataReaderInternals::ReaderList[] =
{
{"vtp", "vtkXMLPolyDataReader"},
{"vtu", "vtkXMLUnstructuredGridReader"},
{"vti", "vtkXMLImageDataReader"},
{"vtr", "vtkXMLRectilinearGridReader"},
{"vts", "vtkXMLStructuredGridReader"},
{0, 0}
};
|