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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
/*=========================================================================
Program: ParaView
Module: vtkPlot3DMetaReader.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 "vtkPlot3DMetaReader.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMath.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkObjectFactory.h"
#include "vtkMultiBlockPLOT3DReader.h"
#include <vtksys/SystemTools.hxx>
#include <map>
#include <vector>
#include <string>
#include "vtk_jsoncpp.h"
#define CALL_MEMBER_FN(object,ptrToMember) ((object).*(ptrToMember))
vtkStandardNewMacro(vtkPlot3DMetaReader);
typedef void (vtkPlot3DMetaReader::*Plot3DFunction)(Json::Value* val);
struct Plot3DTimeStep
{
double Time;
std::string XYZFile;
std::string QFile;
std::string FunctionFile;
};
struct vtkPlot3DMetaReaderInternals
{
std::map<std::string, Plot3DFunction> FunctionMap;
std::vector<Plot3DTimeStep> TimeSteps;
std::string ResolveFileName(std::string metaFileName,
std::string fileName)
{
if (vtksys::SystemTools::FileIsFullPath(fileName.c_str()))
{
return fileName;
}
else
{
std::string path = vtksys::SystemTools::GetFilenamePath(metaFileName);
std::vector<std::string> components;
components.push_back(path + "/");
components.push_back(fileName);
return vtksys::SystemTools::JoinPath(components);
}
}
};
//-----------------------------------------------------------------------------
vtkPlot3DMetaReader::vtkPlot3DMetaReader()
{
this->SetNumberOfInputPorts(0);
this->SetNumberOfOutputPorts(1);
this->Reader = vtkMultiBlockPLOT3DReader::New();
this->Reader->AutoDetectFormatOn();
this->FileName = 0;
this->Internal = new vtkPlot3DMetaReaderInternals;
this->Internal->FunctionMap["auto-detect-format"] =
&vtkPlot3DMetaReader::SetAutoDetectFormat;
this->Internal->FunctionMap["byte-order"] =
&vtkPlot3DMetaReader::SetByteOrder;
this->Internal->FunctionMap["precision"] =
&vtkPlot3DMetaReader::SetPrecision;
this->Internal->FunctionMap["multi-grid"] =
&vtkPlot3DMetaReader::SetMultiGrid;
this->Internal->FunctionMap["format"] =
&vtkPlot3DMetaReader::SetFormat;
this->Internal->FunctionMap["blanking"] =
&vtkPlot3DMetaReader::SetBlanking;
this->Internal->FunctionMap["language"] =
&vtkPlot3DMetaReader::SetLanguage;
this->Internal->FunctionMap["2D"] =
&vtkPlot3DMetaReader::Set2D;
this->Internal->FunctionMap["R"] =
&vtkPlot3DMetaReader::SetR;
this->Internal->FunctionMap["gamma"] =
&vtkPlot3DMetaReader::SetGamma;
this->Internal->FunctionMap["filenames"] =
&vtkPlot3DMetaReader::SetFileNames;
this->Internal->FunctionMap["functions"] =
&vtkPlot3DMetaReader::AddFunctions;
}
//-----------------------------------------------------------------------------
vtkPlot3DMetaReader::~vtkPlot3DMetaReader()
{
this->Reader->Delete();
delete this->Internal;
delete[] this->FileName;
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetAutoDetectFormat(Json::Value* val)
{
bool value = val->asBool();
if (value)
{
this->Reader->AutoDetectFormatOn();
}
else
{
this->Reader->AutoDetectFormatOff();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetByteOrder(Json::Value* val)
{
std::string value = val->asString();
if (value == "little")
{
this->Reader->SetByteOrderToLittleEndian();
}
else if (value == "big")
{
this->Reader->SetByteOrderToBigEndian();
}
else
{
vtkErrorMacro("Unrecognized byte order: " <<
value.c_str()<< ". Valid options are \"little\" and \"big\"."
" Setting to little endian");
this->Reader->SetByteOrderToLittleEndian();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetLanguage(Json::Value* val)
{
std::string value = val->asString();
if (value == "fortran")
{
this->Reader->HasByteCountOn();
}
else if (value == "C")
{
this->Reader->HasByteCountOff();
}
else
{
vtkErrorMacro("Unrecognized language: " <<
value.c_str()<< ". Valid options are \"fortran\" and \"C\"."
" Setting to little fortran");
this->Reader->HasByteCountOn();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetPrecision(Json::Value* val)
{
int value = val->asInt();
if (value == 32)
{
this->Reader->DoublePrecisionOff();
}
else if (value == 64)
{
this->Reader->DoublePrecisionOn();
}
else
{
vtkErrorMacro("Unrecognized precision: " <<
value << ". Valid options are 32 and 64 (bits)."
" Setting to 32 bits");
this->Reader->DoublePrecisionOff();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetMultiGrid(Json::Value* val)
{
bool value = val->asBool();
if (value)
{
this->Reader->MultiGridOn();
}
else
{
this->Reader->MultiGridOff();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetFormat(Json::Value* val)
{
std::string value = val->asString();
if (value == "binary")
{
this->Reader->BinaryFileOn();
}
else if (value == "ascii")
{
this->Reader->BinaryFileOff();
}
else
{
vtkErrorMacro("Unrecognized file type: " <<
value.c_str()<< ". Valid options are \"binary\" and \"ascii\"."
" Setting to binary");
this->Reader->BinaryFileOn();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetBlanking(Json::Value* val)
{
bool value = val->asBool();
if (value)
{
this->Reader->IBlankingOn();
}
else
{
this->Reader->IBlankingOff();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::Set2D(Json::Value* val)
{
bool value = val->asBool();
if (value)
{
this->Reader->TwoDimensionalGeometryOn();
}
else
{
this->Reader->TwoDimensionalGeometryOff();
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetR(Json::Value* val)
{
double R = val->asDouble();
this->Reader->SetR(R);
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetGamma(Json::Value* val)
{
double gamma = val->asDouble();
this->Reader->SetGamma(gamma);
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::AddFunctions(Json::Value* val)
{
const Json::Value& functions = *val;
for ( size_t index = 0; index < functions.size(); ++index )
{
this->Reader->AddFunction(functions[(int)index].asInt());
}
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::SetFileNames(Json::Value* val)
{
const Json::Value& filenames = *val;
for ( size_t index = 0; index < filenames.size(); ++index )
{
const Json::Value& astep = filenames[(int)index];
bool doAdd = true;
Plot3DTimeStep aTime;
if (!astep.isMember("time"))
{
vtkErrorMacro("Missing time value in timestep " << index);
doAdd = false;
}
else
{
aTime.Time = astep["time"].asDouble();
}
if (!astep.isMember("xyz"))
{
vtkErrorMacro("Missing xyz filename in timestep " << index);
doAdd = false;
}
else
{
std::string xyzfile = astep["xyz"].asString();
aTime.XYZFile = this->Internal->ResolveFileName(this->FileName,
xyzfile);
}
if (astep.isMember("q"))
{
std::string qfile = astep["q"].asString();
aTime.QFile = this->Internal->ResolveFileName(this->FileName,
qfile);
}
if (astep.isMember("function"))
{
std::string functionfile = astep["function"].asString();
aTime.FunctionFile = this->Internal->ResolveFileName(this->FileName,
functionfile);
}
if (doAdd)
{
this->Internal->TimeSteps.push_back(aTime);
}
}
}
//----------------------------------------------------------------------------
int vtkPlot3DMetaReader::RequestInformation(
vtkInformation* vtkNotUsed(request),
vtkInformationVector** vtkNotUsed(inputVector),
vtkInformationVector* outputVector)
{
vtkInformation* outInfo = outputVector->GetInformationObject(0);
outInfo->Set(vtkAlgorithm::CAN_HANDLE_PIECE_REQUEST(), 1);
this->Internal->TimeSteps.clear();
this->Reader->RemoveAllFunctions();
if (!this->FileName)
{
vtkErrorMacro("No file name was specified. Cannot execute.");
return 0;
}
ifstream file(this->FileName);
Json::Value root;
Json::Reader reader;
bool parsingSuccessful = reader.parse(file, root);
if (!parsingSuccessful)
{
// report to the user the failure and their locations in the document.
vtkErrorMacro("Failed to parse configuration\n"
<< reader.getFormattedErrorMessages().c_str());
return 0;
}
Json::Value::Members members = root.getMemberNames();
Json::Value::Members::iterator memberIterator;
for (memberIterator = members.begin();
memberIterator != members.end();
memberIterator++)
{
std::map<std::string, Plot3DFunction>::iterator iter =
this->Internal->FunctionMap.find(*memberIterator);
if (iter != this->Internal->FunctionMap.end())
{
Json::Value val = root[*memberIterator];
Plot3DFunction func = iter->second;
CALL_MEMBER_FN(*this, func)(&val);
}
else
{
vtkErrorMacro("Syntax error in file. Option \""
<< memberIterator->c_str()
<< "\" is not valid.");
}
}
std::vector<Plot3DTimeStep>::iterator iter;
std::vector<double> timeValues;
for (iter = this->Internal->TimeSteps.begin();
iter != this->Internal->TimeSteps.end();
iter++)
{
timeValues.push_back(iter->Time);
}
size_t numSteps = timeValues.size();
if (numSteps > 0)
{
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_STEPS(),
&timeValues[0],
(int)numSteps);
double timeRange[2];
timeRange[0] = timeValues[0];
timeRange[1] = timeValues[numSteps - 1];
outInfo->Set(vtkStreamingDemandDrivenPipeline::TIME_RANGE(),
timeRange,
2);
}
return 1;
}
//----------------------------------------------------------------------------
int vtkPlot3DMetaReader::RequestData(
vtkInformation*,
vtkInformationVector**,
vtkInformationVector* outputVector)
{
vtkInformation* outInfo = outputVector->GetInformationObject(0);
vtkMultiBlockDataSet* output = vtkMultiBlockDataSet::GetData(
outputVector->GetInformationObject(0));
double timeValue = 0;
if (outInfo->Has(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEP()))
{
// Get the requested time step. We only supprt requests of a single time
// step in this reader right now
timeValue =
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEP());
}
int tsLength =
outInfo->Length(vtkStreamingDemandDrivenPipeline::TIME_STEPS());
double *steps =
outInfo->Get(vtkStreamingDemandDrivenPipeline::TIME_STEPS());
if (tsLength < 1)
{
vtkErrorMacro("No timesteps were found. Please specify at least one "
"filenames entry in the input file.");
return 0;
}
// find the first time value larger than requested time value
// this logic could be improved
int cnt = 0;
while (cnt < tsLength-1 && steps[cnt] < timeValue)
{
cnt++;
}
int updateTime = cnt;
if (updateTime >= tsLength)
{
updateTime = tsLength - 1;
}
if (tsLength > updateTime)
{
this->Reader->SetXYZFileName(
this->Internal->TimeSteps[updateTime].XYZFile.c_str());
const char* qname = this->Internal->TimeSteps[updateTime].QFile.c_str();
if (strlen(qname) > 0)
{
this->Reader->SetQFileName(qname);
}
else
{
this->Reader->SetQFileName(0);
}
const char* fname =
this->Internal->TimeSteps[updateTime].FunctionFile.c_str();
if (strlen(fname) > 0)
{
this->Reader->SetFunctionFileName(fname);
}
else
{
this->Reader->SetFunctionFileName(0);
}
this->Reader->UpdatePiece(
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS())
);
vtkDataObject* ioutput = this->Reader->GetOutput();
output->ShallowCopy(ioutput);
output->GetInformation()->Set(
vtkDataObject::DATA_NUMBER_OF_GHOST_LEVELS(),
ioutput->GetInformation()->Get(
vtkDataObject::DATA_NUMBER_OF_GHOST_LEVELS()));
}
else
{
vtkErrorMacro("Time step " << updateTime << " was not found.");
return 0;
}
return 1;
}
//-----------------------------------------------------------------------------
void vtkPlot3DMetaReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|