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 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXdmfReaderInternal.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 "vtkXdmfReaderInternal.h"
#include "vtkDataArray.h"
#include "vtkSmartPointer.h"
#include "vtkVariant.h"
#include "vtkXdmfDataArray.h"
#define USE_IMAGE_DATA // otherwise uniformgrid
// As soon as num-grids (sub-grids and all) grows beyond this number, we assume
// that the grids are way too numerous for the user to select individually and
// hence only the top-level grids are made accessible.
#define MAX_COLLECTABLE_NUMBER_OF_GRIDS 1000
template <class T>
T vtkMAX(T a, T b) { return (a>b? a : b); }
using namespace xdmf2;
//----------------------------------------------------------------------------
vtkXdmfDocument::vtkXdmfDocument()
{
this->ActiveDomain = 0;
this->ActiveDomainIndex = -1;
this->LastReadContents = 0;
this->LastReadContentsLength = 0;
}
//----------------------------------------------------------------------------
vtkXdmfDocument::~vtkXdmfDocument()
{
delete this->ActiveDomain;
delete [] this->LastReadContents;
}
//----------------------------------------------------------------------------
bool vtkXdmfDocument::Parse(const char* xmffilename)
{
if (!xmffilename)
{
return false;
}
if (this->LastReadFilename == xmffilename)
{
return true;
}
this->ActiveDomainIndex = -1;
delete this->ActiveDomain;
this->ActiveDomain = 0;
delete [] this->LastReadContents;
this->LastReadContents = 0;
this->LastReadContentsLength = 0;
this->LastReadFilename = std::string();
this->XMLDOM.SetInputFileName(xmffilename);
if (!this->XMLDOM.Parse())
{
return false;
}
//Tell the parser what the working directory is.
std::string directory =
vtksys::SystemTools::GetFilenamePath(xmffilename) + "/";
if (directory == "/")
{
directory = vtksys::SystemTools::GetCurrentWorkingDirectory() + "/";
}
this->XMLDOM.SetWorkingDirectory(directory.c_str());
this->LastReadFilename = xmffilename;
this->UpdateDomains();
return true;
}
//----------------------------------------------------------------------------
bool vtkXdmfDocument::ParseString(const char* xmfdata, size_t length)
{
if (!xmfdata || !length)
{
return false;
}
if (this->LastReadContents && this->LastReadContentsLength == length &&
STRNCASECMP(xmfdata, this->LastReadContents, length) == 0)
{
return true;
}
this->ActiveDomainIndex = -1;
delete this->ActiveDomain;
this->ActiveDomain = 0;
delete this->LastReadContents;
this->LastReadContentsLength = 0;
this->LastReadFilename = std::string();
this->LastReadContents = new char[length+1];
this->LastReadContentsLength = length;
memcpy(this->LastReadContents, xmfdata, length);
this->LastReadContents[length]=0;
this->XMLDOM.SetInputFileName(0);
if (!this->XMLDOM.Parse(this->LastReadContents))
{
delete this->LastReadContents;
this->LastReadContents = 0;
this->LastReadContentsLength = 0;
return false;
}
this->UpdateDomains();
return true;
}
//----------------------------------------------------------------------------
void vtkXdmfDocument::UpdateDomains()
{
this->Domains.clear();
XdmfXmlNode domain = this->XMLDOM.FindElement("Domain", 0);
while (domain)
{
XdmfConstString domainName = this->XMLDOM.Get(domain, "Name");
if (domainName)
{
this->Domains.push_back(domainName);
}
else
{
std::ostringstream str;
str << "Domain" << this->Domains.size() << ends;
this->Domains.push_back(str.str());
}
domain = this->XMLDOM.FindNextElement("Domain", domain);
}
}
//----------------------------------------------------------------------------
bool vtkXdmfDocument::SetActiveDomain(const char* domainname)
{
for (int cc=0; cc < static_cast<int>(this->Domains.size()); cc++)
{
if (this->Domains[cc] == domainname)
{
return this->SetActiveDomain(cc);
}
}
return false;
}
//----------------------------------------------------------------------------
bool vtkXdmfDocument::SetActiveDomain(int index)
{
if (this->ActiveDomainIndex == index)
{
return true;
}
this->ActiveDomainIndex = -1;
delete this->ActiveDomain;
this->ActiveDomain = 0;
vtkXdmfDomain *domain = new vtkXdmfDomain(&this->XMLDOM, index);
if (!domain->IsValid())
{
delete domain;
return false;
}
this->ActiveDomain = domain;
this->ActiveDomainIndex = index;
return true;
}
//*****************************************************************************
// vtkXdmfDomain
//----------------------------------------------------------------------------
vtkXdmfDomain::vtkXdmfDomain(XdmfDOM* xmlDom, int domain_index)
{
this->XMLDOM = 0;
this->XMFGrids = NULL;
this->NumberOfGrids = 0;
this->SIL = vtkMutableDirectedGraph::New();
this->SILBuilder = vtkSILBuilder::New();
this->SILBuilder->SetSIL(this->SIL);
this->PointArrays = new vtkXdmfArraySelection;
this->CellArrays = new vtkXdmfArraySelection;
this->Grids = new vtkXdmfArraySelection;
this->Sets = new vtkXdmfArraySelection;
this->XMLDomain = xmlDom->FindElement("Domain", domain_index);
if (!this->XMLDomain)
{
// no such domain exists!!!
return;
}
this->XMLDOM = xmlDom;
// Allocate XdmfGrid instances for each of the grids in this domain.
this->NumberOfGrids = this->XMLDOM->FindNumberOfElements("Grid", this->XMLDomain);
this->XMFGrids = new XdmfGrid[this->NumberOfGrids+1];
XdmfXmlNode xmlGrid = this->XMLDOM->FindElement("Grid", 0, this->XMLDomain);
XdmfInt64 cc=0;
while (xmlGrid)
{
this->XMFGrids[cc].SetDOM(this->XMLDOM);
this->XMFGrids[cc].SetElement(xmlGrid);
// Read the light data for this grid (and all its sub-grids, if
// applicable).
this->XMFGrids[cc].UpdateInformation();
xmlGrid = this->XMLDOM->FindNextElement("Grid", xmlGrid);
cc++;
}
// There are a few meta-information that we need to collect from the domain
// * number of data-arrays so that the user can choose which to load.
// * grid-structure so that the user can choose the hierarchy
// * time information so that reader can report the number of timesteps
// available.
this->CollectMetaData();
}
//----------------------------------------------------------------------------
vtkXdmfDomain::~vtkXdmfDomain()
{
// free the XdmfGrid allocated.
delete [] this->XMFGrids;
this->XMFGrids = NULL;
this->SIL->Delete();
this->SIL = 0;
this->SILBuilder->Delete();
this->SILBuilder = 0;
delete this->PointArrays;
delete this->CellArrays;
delete this->Grids;
delete this->Sets;;
}
//----------------------------------------------------------------------------
XdmfGrid* vtkXdmfDomain::GetGrid(XdmfInt64 cc)
{
if (cc >= 0 && cc < this->NumberOfGrids)
{
return &this->XMFGrids[cc];
}
return NULL;
}
//----------------------------------------------------------------------------
int vtkXdmfDomain::GetVTKDataType()
{
if (this->NumberOfGrids > 1)
{
return VTK_MULTIBLOCK_DATA_SET;
}
if (this->NumberOfGrids == 1)
{
return this->GetVTKDataType(&this->XMFGrids[0]);
}
return -1;
}
//----------------------------------------------------------------------------
int vtkXdmfDomain::GetVTKDataType(XdmfGrid* xmfGrid)
{
XdmfInt32 gridType = xmfGrid->GetGridType();
if ((gridType & XDMF_GRID_COLLECTION) &&
xmfGrid->GetCollectionType() == XDMF_GRID_COLLECTION_TEMPORAL)
{
// this is a temporal collection, the type depends on the child with
// correct time-stamp. But since we assume that all items in a temporal
// collection must be of the same type, we simply use the first child.
return this->GetVTKDataType(xmfGrid->GetChild(0));
}
if ( (gridType & XDMF_GRID_COLLECTION) || (gridType & XDMF_GRID_TREE) )
{
return VTK_MULTIBLOCK_DATA_SET;
}
if (xmfGrid->GetTopology()->GetClass() == XDMF_UNSTRUCTURED )
{
return VTK_UNSTRUCTURED_GRID;
}
XdmfInt32 topologyType = xmfGrid->GetTopology()->GetTopologyType();
if (topologyType == XDMF_2DSMESH || topologyType == XDMF_3DSMESH )
{
return VTK_STRUCTURED_GRID;
}
else if (topologyType == XDMF_2DCORECTMESH ||
topologyType == XDMF_3DCORECTMESH)
{
#ifdef USE_IMAGE_DATA
return VTK_IMAGE_DATA;
#else
return VTK_UNIFORM_GRID;
#endif
}
else if (topologyType == XDMF_2DRECTMESH || topologyType == XDMF_3DRECTMESH)
{
return VTK_RECTILINEAR_GRID;
}
return -1;
}
//----------------------------------------------------------------------------
int vtkXdmfDomain::GetIndexForTime(double time)
{
std::map<XdmfFloat64, int>::const_iterator iter = this->TimeSteps.find(time);
if (iter != this->TimeSteps.end())
{
return iter->second;
}
iter = this->TimeSteps.upper_bound(time);
if (iter == this->TimeSteps.begin())
{
// The requested time step is before any available time. We will use it by
// doing nothing here.
}
else
{
// Back up one to the item we really want.
iter--;
}
std::map<XdmfFloat64, int>::iterator iter2 = this->TimeSteps.begin();
int counter = 0;
while (iter2 != iter)
{
iter2++;
counter++;
}
return counter;
}
//----------------------------------------------------------------------------
XdmfGrid* vtkXdmfDomain::GetGrid(XdmfGrid* xmfGrid, double time)
{
XdmfInt32 gridType = xmfGrid->GetGridType();
if ((gridType & XDMF_GRID_COLLECTION) &&
xmfGrid->GetCollectionType() == XDMF_GRID_COLLECTION_TEMPORAL)
{
for (XdmfInt32 cc=0; cc < xmfGrid->GetNumberOfChildren(); cc++)
{
XdmfGrid* child = xmfGrid->GetChild(cc);
if (child && child->GetTime()->IsValid(time, time))
{
return child;
}
}
// It's possible that user has not specified a <Time /> element at all. In
// that case, try to locate the first grid with no time value set.
for (XdmfInt32 cc=0; cc < xmfGrid->GetNumberOfChildren(); cc++)
{
XdmfGrid* child = xmfGrid->GetChild(cc);
if (child && child->GetTime()->GetTimeType() == XDMF_TIME_UNSET)
{
return child;
}
}
// not sure what to do if no sub-grid matches the requested time.
return NULL;
}
return xmfGrid;
}
//----------------------------------------------------------------------------
bool vtkXdmfDomain::IsStructured(XdmfGrid* xmfGrid)
{
switch (this->GetVTKDataType(xmfGrid))
{
case VTK_IMAGE_DATA:
case VTK_UNIFORM_GRID:
case VTK_RECTILINEAR_GRID:
case VTK_STRUCTURED_GRID:
return true;
}
return false;
}
//----------------------------------------------------------------------------
bool vtkXdmfDomain::GetWholeExtent(XdmfGrid* xmfGrid, int extents[6])
{
extents[0] = extents[2] = extents[4] = 0;
extents[1] = extents[3] = extents[5] = -1;
if (!this->IsStructured(xmfGrid))
{
return false;
}
XdmfInt64 dimensions[XDMF_MAX_DIMENSION];
XdmfDataDesc* xmfDataDesc = xmfGrid->GetTopology()->GetShapeDesc();
XdmfInt32 num_of_dims = xmfDataDesc->GetShape(dimensions);
// clear out un-filled dimensions.
for (int cc=num_of_dims; cc < 3; cc++) // only need to until the 3rd dimension
// since we don't care about any higher
// dimensions yet.
{
dimensions[cc] = 1;
}
// vtk Dims are i,j,k XDMF are k,j,i
extents[5] = vtkMAX(static_cast<XdmfInt64>(0), dimensions[0] - 1);
extents[3] = vtkMAX(static_cast<XdmfInt64>(0), dimensions[1] - 1);
extents[1] = vtkMAX(static_cast<XdmfInt64>(0), dimensions[2] - 1);
return true;
}
//----------------------------------------------------------------------------
bool vtkXdmfDomain::GetOriginAndSpacing(XdmfGrid* xmfGrid,
double origin[3], double spacing[3])
{
if (xmfGrid->GetTopology()->GetTopologyType() != XDMF_2DCORECTMESH &&
xmfGrid->GetTopology()->GetTopologyType() != XDMF_3DCORECTMESH)
{
return false;
}
XdmfGeometry *xmfGeometry = xmfGrid->GetGeometry();
if (xmfGeometry->GetGeometryType() == XDMF_GEOMETRY_ORIGIN_DXDYDZ )
{
// Update geometry so that origin and spacing are read
xmfGeometry->Update(); // read heavy-data for the geometry.
XdmfFloat64 *xmfOrigin = xmfGeometry->GetOrigin();
XdmfFloat64 *xmfSpacing = xmfGeometry->GetDxDyDz();
origin[0] = xmfOrigin[2];
origin[1] = xmfOrigin[1];
origin[2] = xmfOrigin[0];
spacing[0] = xmfSpacing[2];
spacing[1] = xmfSpacing[1];
spacing[2] = xmfSpacing[0];
return true;
}
else if (xmfGeometry->GetGeometryType() == XDMF_GEOMETRY_ORIGIN_DXDY)
{
// Update geometry so that origin and spacing are read
xmfGeometry->Update(); // read heavy-data for the geometry.
XdmfFloat64 *xmfOrigin = xmfGeometry->GetOrigin();
XdmfFloat64 *xmfSpacing = xmfGeometry->GetDxDyDz();
origin[0] = 0.0;
origin[1] = xmfOrigin[1];
origin[2] = xmfOrigin[0];
spacing[0] = 1.0;
spacing[1] = xmfSpacing[1];
spacing[2] = xmfSpacing[0];
return true;
}
origin[0] = origin[1] = origin[2] = 0.0;
spacing[0] = spacing[1] = spacing[2] = 1.0;
return false;
}
//----------------------------------------------------------------------------
int vtkXdmfDomain::GetDataDimensionality(XdmfGrid* xmfGrid)
{
if (!xmfGrid || !xmfGrid->IsUniform())
{
return -1;
}
switch (xmfGrid->GetTopology()->GetTopologyType())
{
case XDMF_NOTOPOLOGY :
case XDMF_POLYVERTEX :
case XDMF_POLYLINE :
case XDMF_POLYGON :
case XDMF_TRI :
case XDMF_QUAD :
case XDMF_TET :
case XDMF_PYRAMID :
case XDMF_WEDGE :
case XDMF_HEX :
case XDMF_EDGE_3 :
case XDMF_TRI_6 :
case XDMF_QUAD_8 :
case XDMF_QUAD_9 :
case XDMF_TET_10 :
case XDMF_PYRAMID_13 :
case XDMF_WEDGE_15 :
case XDMF_WEDGE_18 :
case XDMF_HEX_20 :
case XDMF_HEX_24 :
case XDMF_HEX_27 :
case XDMF_MIXED :
return 1; // unstructured data-sets have no inherent dimensionality.
case XDMF_2DSMESH :
case XDMF_2DRECTMESH :
case XDMF_2DCORECTMESH:
return 2;
case XDMF_3DSMESH :
case XDMF_3DRECTMESH :
case XDMF_3DCORECTMESH:
return 3;
}
return -1;
}
//----------------------------------------------------------------------------
void vtkXdmfDomain::CollectMetaData()
{
this->SILBuilder->Initialize();
this->GridsOverflowCounter = 0;
vtkIdType blocksRoot = this->SILBuilder->AddVertex("Blocks");
vtkIdType hierarchyRoot = this->SILBuilder->AddVertex("Hierarchy");
this->SILBuilder->AddChildEdge(this->SILBuilder->GetRootVertex(), blocksRoot);
this->SILBuilder->AddChildEdge(this->SILBuilder->GetRootVertex(),
hierarchyRoot);
this->SILBlocksRoot = blocksRoot;
for (XdmfInt64 cc=0; cc < this->NumberOfGrids; cc++)
{
this->CollectMetaData(&this->XMFGrids[cc], hierarchyRoot);
}
if (this->GridsOverflowCounter >= MAX_COLLECTABLE_NUMBER_OF_GRIDS)
{
this->Grids->clear();
// We have aborted collecting grids information since it was too numerous to
// be of any use to the user.
this->SILBuilder->Initialize();
blocksRoot = this->SILBuilder->AddVertex("Blocks");
hierarchyRoot = this->SILBuilder->AddVertex("Hierarchy");
this->SILBuilder->AddChildEdge(this->SILBuilder->GetRootVertex(), blocksRoot);
this->SILBuilder->AddChildEdge(this->SILBuilder->GetRootVertex(),
hierarchyRoot);
this->SILBlocksRoot = blocksRoot;
// add only the top-level grids.
for (XdmfInt64 cc=0; cc < this->NumberOfGrids; cc++)
{
XdmfGrid * xmfGrid = &this->XMFGrids[cc];
std::string originalGridName = xmfGrid->GetName();
std::string gridName = xmfGrid->GetName();
unsigned int count=1;
while (this->Grids->HasArray(gridName.c_str()))
{
std::ostringstream str;
str << xmfGrid->GetName() << "[" << count << "]";
gridName = str.str();
count++;
}
xmfGrid->SetName(gridName.c_str());
this->Grids->AddArray(gridName.c_str());
vtkIdType silVertex = this->SILBuilder->AddVertex(xmfGrid->GetName());
this->SILBuilder->AddChildEdge(this->SILBlocksRoot, silVertex);
vtkIdType hierarchyVertex = this->SILBuilder->AddVertex(originalGridName.c_str());
this->SILBuilder->AddChildEdge(hierarchyRoot, hierarchyVertex);
this->SILBuilder->AddCrossEdge(hierarchyVertex, silVertex);
}
}
}
//----------------------------------------------------------------------------
void vtkXdmfDomain::CollectMetaData(XdmfGrid* xmfGrid, vtkIdType silParent)
{
if (!xmfGrid)
{
return;
}
// All grids need to be named. If a grid doesn't have a name, we make one
// up.
if (xmfGrid->GetName() == NULL)
{
xmfGrid->SetName(this->XMLDOM->GetUniqueName("Grid"));
}
if (xmfGrid->IsUniform())
{
this->CollectLeafMetaData(xmfGrid, silParent);
}
else
{
this->CollectNonLeafMetaData(xmfGrid, silParent);
}
}
//----------------------------------------------------------------------------
void vtkXdmfDomain::CollectNonLeafMetaData(XdmfGrid* xmfGrid,
vtkIdType silParent)
{
vtkIdType silVertex = -1;
if (silParent != -1 &&
this->GridsOverflowCounter < MAX_COLLECTABLE_NUMBER_OF_GRIDS)
{
// stop building SIL as soon as we have too many blocks--not worth it.
this->GridsOverflowCounter++;
// FIXME: how to reflect temporal collections in the SIL?
silVertex = this->SILBuilder->AddVertex(xmfGrid->GetName());
this->SILBuilder->AddChildEdge(silParent, silVertex);
}
XdmfInt32 numChildren = xmfGrid->GetNumberOfChildren();
for (XdmfInt32 cc=0; cc < numChildren; cc++)
{
XdmfGrid* xmfChild = xmfGrid->GetChild(cc);
this->CollectMetaData(xmfChild, silVertex);
}
// Collect time information
// If a non-leaf node is a temporal collection then it may have a <Time/>
// element which defines the time values for the grids in the collection.
// Xdmf handles those elements and explicitly sets the Time value on those
// children, so we don't need to process that. We need to handle only the
// case when a non-leaf,non-temporal collection has a time value of it's
// own.
if ((xmfGrid->GetGridType() & XDMF_GRID_COLLECTION)==0 ||
xmfGrid->GetCollectionType() != XDMF_GRID_COLLECTION_TEMPORAL)
{
// assert(grid is not a temporal collection).
XdmfTime* xmfTime = xmfGrid->GetTime();
if (xmfTime && xmfTime->GetTimeType() != XDMF_TIME_UNSET)
{
int step = static_cast<int>(this->TimeSteps.size());
if (this->TimeSteps.find(xmfTime->GetValue()) == this->TimeSteps.end())
{
this->TimeSteps[xmfTime->GetValue()] = step;
this->TimeStepsRev[step] = xmfTime->GetValue();
}
}
}
}
//----------------------------------------------------------------------------
void vtkXdmfDomain::CollectLeafMetaData(XdmfGrid* xmfGrid, vtkIdType silParent)
{
vtkIdType silVertex = -1;
if (silParent != -1 &&
this->GridsOverflowCounter < MAX_COLLECTABLE_NUMBER_OF_GRIDS)
{
std::string originalGridName = xmfGrid->GetName();
std::string gridName = xmfGrid->GetName();
unsigned int count=1;
while (this->Grids->HasArray(gridName.c_str()))
{
std::ostringstream str;
str << xmfGrid->GetName() << "[" << count << "]";
gridName = str.str();
count++;
}
xmfGrid->SetName(gridName.c_str());
this->Grids->AddArray(gridName.c_str());
silVertex = this->SILBuilder->AddVertex(xmfGrid->GetName());
this->SILBuilder->AddChildEdge(this->SILBlocksRoot, silVertex);
vtkIdType hierarchyVertex = this->SILBuilder->AddVertex(originalGridName.c_str());
this->SILBuilder->AddChildEdge(silParent, hierarchyVertex);
this->SILBuilder->AddCrossEdge(hierarchyVertex, silVertex);
this->GridsOverflowCounter++;
}
// Collect attribute arrays information.
XdmfInt32 numAttributes = xmfGrid->GetNumberOfAttributes();
for (XdmfInt32 kk=0; kk < numAttributes; kk++)
{
XdmfAttribute *xmfAttribute = xmfGrid->GetAttribute(kk);
const char *name = xmfAttribute->GetName();
if (!name)
{
continue;
}
XdmfInt32 attributeCenter = xmfAttribute->GetAttributeCenter();
if (attributeCenter== XDMF_ATTRIBUTE_CENTER_NODE)
{
this->PointArrays->AddArray(name);
}
else if (attributeCenter == XDMF_ATTRIBUTE_CENTER_CELL)
{
this->CellArrays->AddArray(name);
}
else if (attributeCenter== XDMF_ATTRIBUTE_CENTER_GRID && silVertex != -1)
{
this->UpdateGridAttributeInSIL(xmfAttribute, silVertex);
}
}
// Collect sets information
XdmfInt32 numSets = xmfGrid->GetNumberOfSets();
for (XdmfInt32 kk=0; kk < numSets; kk++)
{
XdmfSet *xmfSet = xmfGrid->GetSets(kk);
const char *name = xmfSet->GetName();
// if the set is a ghost-cell/node set, then it's not treated as a set for
// which a new vtkDataSet is created (nor can the user enable-disable it
// [ofcourse the pipeline will, by using the UPDATE_NUMBER_OF_GHOST_LEVELS()
// in the request]).
if (!name || xmfSet->GetGhost() != 0)
{
continue;
}
// XdmfInt32 setCenter = xmfSet->GetSetType();
// Not sure if we want to create separate lists for different types of sets
// or just treat all the sets as same. For now, we are treating them as
// the same.
this->Sets->AddArray(name);
}
// A leaf node may have a single value time.
XdmfTime* xmfTime = xmfGrid->GetTime();
if (xmfTime && xmfTime->GetTimeType() != XDMF_TIME_UNSET)
{
int step = static_cast<int>(this->TimeSteps.size());
if (this->TimeSteps.find(xmfTime->GetValue()) == this->TimeSteps.end())
{
this->TimeSteps[xmfTime->GetValue()] = step;
this->TimeStepsRev[step] = xmfTime->GetValue();
}
}
}
//----------------------------------------------------------------------------
bool vtkXdmfDomain::UpdateGridAttributeInSIL(
XdmfAttribute* xmfAttribute, vtkIdType silVertex)
{
// Check if the grid centered attribute is an single component integeral
// value, (or a string, in future). If that's the case, then these become
// part of the SIL.
XdmfDataItem xmfDataItem;
xmfDataItem.SetDOM(xmfAttribute->GetDOM());
xmfDataItem.SetElement(xmfAttribute->GetDOM()->FindDataElement(0,
xmfAttribute->GetElement()));
xmfDataItem.UpdateInformation();
xmfDataItem.Update();
vtkXdmfDataArray* xmfConvertor = vtkXdmfDataArray::New();
vtkSmartPointer<vtkDataArray> dataArray;
dataArray.TakeReference(xmfConvertor->FromXdmfArray(
xmfDataItem.GetArray()->GetTagName(), 1, 1, 1, 0));
xmfConvertor->Delete();
if (dataArray->GetNumberOfTuples() != 1 ||
dataArray->GetNumberOfComponents() != 1)
{
// only single valued arrays are of concern.
return false;
}
switch (dataArray->GetDataType())
{
case VTK_CHAR :
case VTK_UNSIGNED_CHAR :
case VTK_SHORT :
case VTK_UNSIGNED_SHORT :
case VTK_INT :
case VTK_UNSIGNED_INT :
case VTK_LONG :
case VTK_UNSIGNED_LONG :
break;
default:
return false; // skip non-integeral types.
}
const char* name = xmfAttribute->GetName();
vtkIdType arrayRoot;
if (this->GridCenteredAttrbuteRoots.find(name) ==
this->GridCenteredAttrbuteRoots.end())
{
arrayRoot = this->SILBuilder->AddVertex(name);
this->SILBuilder->AddChildEdge(this->SILBuilder->GetRootVertex(),
arrayRoot);
this->GridCenteredAttrbuteRoots[name] = arrayRoot;
}
else
{
arrayRoot = this->GridCenteredAttrbuteRoots[name];
}
vtkVariant variantValue = dataArray->GetVariantValue(0);
XdmfInt64 value = variantValue.ToTypeInt64();
vtkIdType valueRoot;
if (this->GridCenteredAttrbuteValues[arrayRoot].find(value) ==
this->GridCenteredAttrbuteValues[arrayRoot].end())
{
valueRoot = this->SILBuilder->AddVertex(variantValue.ToString().c_str());
this->SILBuilder->AddChildEdge(arrayRoot, valueRoot);
this->GridCenteredAttrbuteValues[arrayRoot][value] = valueRoot;
}
else
{
valueRoot = this->GridCenteredAttrbuteValues[arrayRoot][value];
}
this->SILBuilder->AddCrossEdge(valueRoot, silVertex);
return true;
}
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
|