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 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2010, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-400124
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
// ************************************************************************* //
// avtPixieFileFormat.C //
// ************************************************************************* //
// define this to make sure the plugin always serves up float data to VisIt
// this was necessary prior to avtGenericDatabase having generic conversion
// capability
//#define FORCE_FLOATS
#include <avtPixieFileFormat.h>
#include <algorithm>
#include <string>
#include <vtkCellType.h>
#include <vtkFloatArray.h>
#include <vtkDoubleArray.h>
#include <vtkIntArray.h>
#include <vtkRectilinearGrid.h>
#include <vtkStructuredGrid.h>
#include <vtkUnstructuredGrid.h>
#include <avtDatabaseMetaData.h>
#include <DebugStream.h>
#include <Expression.h>
#include <InvalidVariableException.h>
#include <InvalidDBTypeException.h>
#include <InvalidFilesException.h>
#include <InvalidTimeStepException.h>
#include <snprintf.h>
// Define this symbol BEFORE including hdf5.h to indicate the HDF5 code
// in this file uses version 1.6 of the HDF5 API. This is harmless for
// versions of HDF5 before 1.8 and ensures correct compilation with
// version 1.8 and thereafter. When, and if, the HDF5 code in this file
// is explicitly upgraded to the 1.8 API, this symbol should be removed.
#define H5_USE_16_API
#include <hdf5.h>
#include <visit-hdf5.h>
// ****************************************************************************
// Method: avtPixie constructor
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// Modifications:
// Jeremy Meredith, Fri Jan 15 17:22:30 EST 2010
// Don't need to call Initialize here -- it will be called when we need it,
// even if we are being strict about ruling out non-Pixie files.
//
// Eric Brugger, Tue Mar 9 15:20:50 PST 2010
// Moved the code to turn off error message printing to the constructor
// so that it is always called.
//
// ****************************************************************************
avtPixieFileFormat::avtPixieFileFormat(const char *filename)
: avtMTSDFileFormat(&filename, 1), variables(), meshes(),
timeStatePrefix("/Timestep ")
{
fileId = -1;
nTimeStates = 0;
haveMeshCoords = false;
// Turn off error message printing.
H5Eset_auto(0,0);
}
// ****************************************************************************
// Method: avtPixieFileFormat::~avtPixieFileFormat
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:37:34 PST 2004
//
// Modifications:
//
// ****************************************************************************
avtPixieFileFormat::~avtPixieFileFormat()
{
if(fileId >= 0)
H5Fclose(fileId);
}
// ****************************************************************************
// Method: avtPixieFileFormat::GetCycles
//
// Purpose:
// Gets the cycles.
//
// Arguments:
// cycles : Return vector for the times.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 18:30:26 PST 2004
//
// Modifications:
// Eric Brugger, Mon Nov 29 15:52:39 PST 2004
// Modified the reader to handle gaps in the cycle numbering (e.g. allowing
// 0, 10, 20, 30 instead of requiring 0, 1, 2, 3).
//
// Brad Whitlock, Thu Apr 27 11:49:07 PDT 2006
// Fixed it so it works if cycles are never read.
//
// ****************************************************************************
void
avtPixieFileFormat::GetCycles(std::vector<int> &cycles)
{
int nts = (nTimeStates < 1) ? 1 : nTimeStates;
int lastCycle = 0;
for(int i = 0; i < nts; ++i)
{
if(i < this->cycles.size())
{
cycles.push_back(this->cycles[i]);
lastCycle = this->cycles[i];
}
else
{
cycles.push_back(lastCycle++);
}
}
}
// ****************************************************************************
// Method: avtPixieFileFormat::GetTimes
//
// Purpose:
// Gets the times.
//
// Arguments:
// times : Return vector for the times.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 18:30:05 PST 2004
//
// Modifications:
// Eric Brugger, Mon Nov 29 15:52:39 PST 2004
// Modified the reader to handle gaps in the cycle numbering (e.g. allowing
// 0, 10, 20, 30 instead of requiring 0, 1, 2, 3).
//
// Brad Whitlock, Thu Apr 27 11:49:07 PDT 2006
// Fixed it so it works if cycles are never read.
//
// Luis Chacon, Tue Mar 2 10:02:00 EST 2010
// Modified routine to read time values in double vector time_val (if available)
//
// ****************************************************************************
void
avtPixieFileFormat::GetTimes(std::vector<double> ×)
{
int nts = (nTimeStates < 1) ? 1 : nTimeStates;
double lastTime = 0.;
for(int i = 0; i < nts; ++i)
{
if(i < cycles.size())
{
if (time_val.size() == nTimeStates)
{
times.push_back(time_val[i]);
lastTime = time_val[i];
}
else
{
times.push_back(double(cycles[i]));
lastTime = double(cycles[i]);
}
}
else
{
times.push_back(lastTime);
lastTime = lastTime + 1.;
}
}
}
// ****************************************************************************
// Method: avtEMSTDFileFormat::GetNTimesteps
//
// Purpose:
// Tells the rest of the code how many timesteps there are in this file.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// ****************************************************************************
int
avtPixieFileFormat::GetNTimesteps(void)
{
return (nTimeStates < 1) ? 1 : nTimeStates;
}
// ****************************************************************************
// Method: avtPixieFileFormat::FreeUpResources
//
// Purpose:
// When VisIt is done focusing on a particular timestep, it asks that
// timestep to free up any resources (memory, file descriptors) that
// it has associated with it. This method is the mechanism for doing
// that.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// ****************************************************************************
void
avtPixieFileFormat::FreeUpResources(void)
{
}
// ****************************************************************************
// Method: avtPixieFileFormat::Initialize
//
// Purpose:
// Initializes the file format by reading the file and the contents, etc.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 15:21:08 PST 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 17:45:41 PST 2004
// Added better support for determining whether arrays have coordinates.
//
// Eric Brugger, Mon Nov 29 15:52:39 PST 2004
// Modified the reader to handle gaps in the cycle numbering (e.g. allowing
// 0, 10, 20, 30 instead of requiring 0, 1, 2, 3).
//
// Mark C. Miller, Mon Dec 6 14:13:11 PST 2004
// Added std:: name resolution to call to sot
//
// Mark C. Miller, Mon Apr 4 14:55:14 PDT 2005
// Added expressions
//
// Hank Childs, Wed Jul 9 06:02:00 PDT 2008
// Added test for UNIC.
//
// Gunther H. Weber, Wed Oct 8 16:50:31 PDT 2008
// Added test for TechX VizSchema
//
// Jeremy Meredith, Thu Jan 7 15:36:19 EST 2010
// Close all open ids when returning an exception. Added error detection.
//
// Jeremy Meredith, Fri Jan 15 17:07:33 EST 2010
// Added detection of and failure for Silo-looking HDF5 files.
//
// Jeremy Meredith, Fri Jan 15 17:25:23 EST 2010
// Use runtime strictness checking behavior.
//
// Eric Brugger, Tue Mar 9 15:20:50 PST 2010
// Moved the code to turn off error message printing to the constructor
// so that it is always called.
//
// Luis Chacon, Tue Mar 2 10:02:00 EST 2010
// Added code to sort time values
//
// ****************************************************************************
void
avtPixieFileFormat::Initialize()
{
if(fileId == -1)
{
// Initialize some variables.
meshes.clear();
variables.clear();
nTimeStates = 0;
if((fileId = H5Fopen(filenames[0], H5F_ACC_RDONLY, H5P_DEFAULT)) < 0)
{
EXCEPTION1(InvalidFilesException, (const char *)filenames[0]);
}
if (GetStrictMode())
{
//
// See if the file format looks like a some other file format.
// I know it's hackish to have to check like this but how else
// should it be done when we don't want Pixie to read HDF5 files
// that are really HDF5 files following a convention supported
// by another format.
//
hid_t siloDir = H5Gopen(fileId, ".silo");
if (siloDir >= 0)
{
H5Gclose(siloDir);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like a Silo file.");
}
hid_t cell_array = H5Dopen(fileId, "CellArray");
if (cell_array >= 0)
{
H5Dclose(cell_array);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like a Tetrad file.");
}
hid_t control = H5Dopen(fileId, "CONTROL");
if (control >= 0)
{
H5Dclose(control);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like an UNIC file.");
}
hid_t runInfo = H5Gopen(fileId, "runInfo");
if (runInfo >= 0)
{
hid_t vsVersion = H5Aopen_name(runInfo, "vsVersion");
if (vsVersion >= 0)
{
H5Aclose(vsVersion);
H5Gclose(runInfo);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like a VizSchema file.");
}
hid_t vsVsVersion = H5Aopen_name(runInfo, "vsVsVersion");
if (vsVsVersion >= 0)
{
H5Aclose(vsVsVersion);
H5Gclose(runInfo);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like a VizSchema file.");
}
hid_t software = H5Aopen_name(runInfo, "software");
hid_t version = H5Aopen_name(runInfo, "version");
H5Gclose(runInfo);
if (software >=0 && version >=0)
{
H5Aclose(software);
H5Aclose(version);
H5Fclose(fileId);
EXCEPTION1(InvalidDBTypeException,
"Cannot be a Pixie file because it looks like a legacy VizSchema file.");
}
if (software >=0) H5Aclose(software);
if (version >=0) H5Aclose(version);
}
}
// Populate the scalar variable list
int gid;
if ((gid = H5Gopen(fileId, "/")) < 0)
{
H5Fclose(fileId);
EXCEPTION1(InvalidFilesException, (const char *)filenames[0]);
}
TraversalInfo info;
info.This = this;
info.level = 0;
info.path = "/";
info.hasCoords = false;
info.coordX = "";
info.coordY = "";
info.coordZ = "";
H5Giterate(fileId, "/", NULL, GetVariableList, (void*)&info);
H5Gclose(gid);
// Determine the names of the meshes that we'll need.
for(VarInfoMap::const_iterator it = variables.begin();
it != variables.end(); ++it)
{
const char *mNames[] = {"mesh", "curvemesh"};
char tmp[100];
SNPRINTF(tmp, 100, "%s_%dx%dx%d", mNames[it->second.hasCoords?1:0],
int(it->second.dims[2]),
int(it->second.dims[1]),
int(it->second.dims[0]));
meshes[std::string(tmp)] = it->second;
}
//
// Look for expressions dataset
//
int expid;
if ((expid = H5Dopen(fileId,"/visit_expressions")) >= 0)
{
// examine size, dimensionality and type of the dataspace
hid_t spid = H5Dget_space(expid);
hid_t tyid = H5Dget_type(expid);
hsize_t hsize = H5Dget_storage_size(expid);
int ndims = H5Sget_simple_extent_ndims(spid);
// should be a 1D, character data set
if (ndims != 1 || H5Tget_class(tyid) != H5T_STRING)
{
EXCEPTION2(InvalidFilesException, (const char *)filenames[0],
"The dataset \"visit_expressions\" is not a 1D, character dataset");
}
// allocate and read
char *expChars = new char[hsize+1];
if (H5Dread(expid, tyid, H5S_ALL, H5S_ALL, H5P_DEFAULT, expChars) < 0)
{
EXCEPTION1(InvalidVariableException, "/visit_expressions");
}
expChars[hsize] = '\0';
rawExpressionString = expChars;
delete [] expChars;
H5Tclose(tyid);
H5Sclose(spid);
H5Dclose(expid);
}
// Sort the cycles and the times
std::sort(cycles.begin(), cycles.end());
std::sort(time_val.begin(), time_val.end());
#ifdef MDSERVER
// We're on the mdserver so close the file now that we've determined
// the variables in it.
H5Fclose(fileId);
fileId = -1;
#endif
}
}
// ****************************************************************************
// Method: avtPixieFileFormat::ActivateTimestep
//
// Purpose:
// This method is called each time we change to a new time state. Make
// sure that the file has been initialized.
//
// Programmer: Brad Whitlock
// Creation: Tue Sep 14 12:53:08 PDT 2004
//
// Modifications:
//
// ****************************************************************************
void
avtPixieFileFormat::ActivateTimestep(int ts)
{
//
// Initialize the file if it has not been initialized.
//
debug4 << "avtPixieFileFormat::ActivateTimestep: ts=" << ts << endl;
Initialize();
}
// ****************************************************************************
// Method: avtPixieFileFormat::DetermineVarDimensions
//
// Purpose:
// Gets the dimensions of a variable.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Thu Aug 19 10:57:09 PDT 2004
//
// Modifications:
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to return the hyperslab to read of an array. I
// also modified the routine to handle the fact that any arrays associated
// with a curvilinear mesh that are 2*nx*ny should be treated as 2d.
//
// ****************************************************************************
void
avtPixieFileFormat::DetermineVarDimensions(const VarInfo &info,
hsize_t *hyperslabDims, int *varDims, int &nVarDims) const
{
//
// If the mesh is rectilinear, then 1*nx*ny arrays should be treated
// as 2d, if the mesh is curvilinear (hasCoords), then 2*nx*ny arrays
// should be treated as 2d.
//
int size1D = 1;
if (info.hasCoords)
{
size1D = 2;
}
//
// Determine the hyperslab dimensions.
//
if (hyperslabDims != 0)
{
hyperslabDims[0] = (info.dims[0] > size1D) ? info.dims[0] : 1;
hyperslabDims[1] = (info.dims[1] > size1D) ? info.dims[1] : 1;
hyperslabDims[2] = (info.dims[2] > size1D) ? info.dims[2] : 1;
}
//
// Determine the dimensions for the mesh.
//
if(varDims != 0)
{
int di = 0;
varDims[0] = 1; varDims[1] = 1; varDims[2] = 1;
if(info.dims[0] > size1D)
varDims[di++] = int(info.dims[0]);
if(info.dims[1] > size1D)
varDims[di++] = int(info.dims[1]);
if(info.dims[2] > size1D)
varDims[di++] = int(info.dims[2]);
}
//
// Determine the number of spatial dimensions of the variable.
//
nVarDims = 0;
if(info.dims[0] > size1D) ++nVarDims;
if(info.dims[1] > size1D) ++nVarDims;
if(info.dims[2] > size1D) ++nVarDims;
}
// ****************************************************************************
// Method: avtPixieFileFormat::MeshIsCurvilinear
//
// Purpose:
// Returns whether the named mesh is curvilinear.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:45:29 PDT 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 17:06:28 PST 2004
// I changed how the support for mesh coordinates is handled.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal. I also simplified the logic to compare
// the raw array sizes instead of the reduced sizes since those should
// also match.
//
// ****************************************************************************
bool
avtPixieFileFormat::MeshIsCurvilinear(const std::string &name) const
{
bool retval = false;
if (haveMeshCoords)
{
VarInfoMap::const_iterator mesh = meshes.find(name);
if (mesh != meshes.end() && mesh->second.hasCoords)
{
VarInfoMap::const_iterator xvar = variables.find(
mesh->second.coordX);
VarInfoMap::const_iterator yvar = variables.find(
mesh->second.coordY);
VarInfoMap::const_iterator zvar = variables.find(
mesh->second.coordZ);
int dims[3], nSpatialDims = 3;
dims[0] = int(mesh->second.dims[0]);
dims[1] = int(mesh->second.dims[1]);
dims[2] = int(mesh->second.dims[2]);
int xDims[3], nXDims = 3;
xDims[0] = int(xvar->second.dims[0]);
xDims[1] = int(xvar->second.dims[1]);
xDims[2] = int(xvar->second.dims[2]);
int yDims[3], nYDims = 3;
yDims[0] = int(yvar->second.dims[0]);
yDims[1] = int(yvar->second.dims[1]);
yDims[2] = int(yvar->second.dims[2]);
int zDims[3], nZDims = 3;
zDims[0] = int(zvar->second.dims[0]);
zDims[1] = int(zvar->second.dims[1]);
zDims[2] = int(zvar->second.dims[2]);
bool same = true;
for(int i = 0; i < nSpatialDims && same; ++i)
{
same &= (xDims[i] == yDims[i]);
same &= (yDims[i] == zDims[i]);
same &= (zDims[i] == dims[i]);
}
retval = same;
}
}
return retval;
}
// ****************************************************************************
// Method: avtPixieFileFormat::PopulateDatabaseMetaData
//
// Purpose:
// This database meta-data object is like a table of contents for the
// file. By populating it, you are telling the rest of VisIt what
// information it can request from you.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// Modifications:
// Brad Whitlock, Mon Aug 16 13:50:41 PST 2004
// Added support for a curvilinear mesh and an optional point mesh for
// debugging.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal. I also modified the call to Determine
// VarDimensions since an argument was added to it.
//
// Mark C. Miller, Mon Apr 4 14:55:14 PDT 2005
// Added expressions
//
// Jeremy Meredith, Mon Apr 4 17:05:32 PDT 2005
// Added "std::" prefix to string constructors.
//
// Mark C. Miller, Tue May 17 18:48:38 PDT 2005
// Added timeState arg to satisfy new interface
// ****************************************************************************
void
avtPixieFileFormat::PopulateDatabaseMetaData(avtDatabaseMetaData *md,
int timeState)
{
//#define ADD_POINT_MESH
VarInfoMap::const_iterator it;
#ifdef ADD_POINT_MESH
int pmnDims = -1;
VarInfo pm;
#endif
for(it = meshes.begin();
it != meshes.end(); ++it)
{
// Determine the number of spatial dimensions.
int nSpatialDims = 0;
DetermineVarDimensions(it->second, 0, 0, nSpatialDims);
if(nSpatialDims == 0)
continue;
// Add the mesh.
avtMeshMetaData *mmd = new avtMeshMetaData;
mmd->name = it->first;
mmd->spatialDimension = nSpatialDims;
mmd->topologicalDimension = nSpatialDims;
// Determine the mesh type. Usually it will be rectilinear but
// sometimes, if we have the right kind of coordinate arrays, it
// could be curvilinear.
mmd->meshType = MeshIsCurvilinear(it->first) ? AVT_CURVILINEAR_MESH :
AVT_RECTILINEAR_MESH;
mmd->cellOrigin = 1;
md->Add(mmd);
#ifdef ADD_POINT_MESH
// If we had a curvilinear mesh, add a point mesh to aid in debugging.
if(mmd->meshType == AVT_CURVILINEAR_MESH)
{
pmnDims = nSpatialDims;
pm.dims[0] = it->second.dims[0];
pm.dims[1] = it->second.dims[1];
pm.dims[2] = it->second.dims[2];
}
#endif
}
#ifdef ADD_POINT_MESH
if(pmnDims != -1)
{
meshes["pointmesh"] = pm;
avtMeshMetaData *mmd = new avtMeshMetaData;
mmd->name = "pointmesh";
mmd->spatialDimension = pmnDims;
mmd->topologicalDimension = 0;
mmd->meshType = AVT_POINT_MESH;
mmd->cellOrigin = 1;
md->Add(mmd);
}
#endif
// If we have more than 5 meshes, enable catchall mesh.
if(meshes.size() > 5)
md->SetUseCatchAllMesh(true);
// Iterate through the variables and add them to the metadata.
for(it = variables.begin();
it != variables.end(); ++it)
{
// Determine the mesh name based on the variable mesh size.
const char *mNames[] = {"mesh", "curvemesh"};
char tmp[100];
SNPRINTF(tmp, 100, "%s_%dx%dx%d", mNames[it->second.hasCoords?1:0],
int(it->second.dims[2]),
int(it->second.dims[1]),
int(it->second.dims[0]));
// Add a zonal scalar to the metadata.
if (it->second.hasCoords)
AddScalarVarToMetaData(md, it->first, tmp, AVT_NODECENT);
else
AddScalarVarToMetaData(md, it->first, tmp, AVT_ZONECENT);
}
#ifdef ADD_POINT_MESH
if(pmnDims != -1)
{
variables["pointvar"] = pm;
AddScalarVarToMetaData(md, "pointvar", "pointmesh", AVT_NODECENT);
}
#endif
//
// Add expressions
//
if (rawExpressionString.size())
{
std::string::size_type s = 0;
while (s != std::string::npos)
{
std::string::size_type nexts = rawExpressionString.find_first_of(";", s);
std::string exprStr;
if (nexts != std::string::npos)
{
exprStr = std::string(rawExpressionString,s,nexts-s);
nexts += 1;
}
else
{
exprStr = std::string(rawExpressionString,s,std::string::npos);
}
// remove offending chars from exprStr (spaces)
std::string newExprStr;
for (int i = 0; i < exprStr.size(); i++)
{
if (exprStr[i] != ' ')
newExprStr += exprStr[i];
}
std::string::size_type t = newExprStr.find_first_of(':');
Expression vec;
vec.SetName(std::string(newExprStr,0,t));
vec.SetDefinition(std::string(newExprStr,t+1,std::string::npos));
vec.SetType(Expression::VectorMeshVar);
md->AddExpression(&vec);
s = nexts;
}
}
}
// ****************************************************************************
// Method: avtPixieFileFormat::GetMesh
//
// Purpose:
// Gets the mesh associated with this file. The mesh is returned as a
// derived type of vtkDataSet (ie vtkRectilinearGrid, vtkStructuredGrid,
// vtkUnstructuredGrid, etc).
//
// Arguments:
// timestate The index of the timestate. If GetNTimesteps returned
// 'N' time steps, this is guaranteed to be between 0 and N-1.
// meshname The name of the mesh of interest. This can be ignored if
// there is only one mesh.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// Modifications:
// Brad Whitlock, Tue Aug 24 12:42:07 PDT 2004
// Added support for a curvilinear mesh.
//
// Brad Whitlock, Wed Sep 15 22:09:24 PST 2004
// I reversed the dimensions for the 3D rectilinear mesh so the variables
// would display correctly on it.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal.
//
// ****************************************************************************
vtkDataSet *
avtPixieFileFormat::GetMesh(int timestate, const char *meshname)
{
debug4 << "avtPixieFileFormat::GetMesh: " << meshname << ":"
<< timestate << endl;
// Check the time state.
if(nTimeStates > 0 && timestate >= nTimeStates)
{
EXCEPTION2(InvalidTimeStepException, 0, nTimeStates);
}
// Check the mesh name.
std::string meshNameString(meshname);
VarInfoMap::const_iterator it = meshes.find(meshNameString);
if(it == meshes.end())
{
EXCEPTION1(InvalidVariableException, meshNameString);
}
// The dims are being copied to a temporary array before being output
// to get around a compiler (STL) deficiency with g++-3.3.3 on tru64.
int originalDims[3];
originalDims[0] = it->second.dims[0];
originalDims[1] = it->second.dims[1];
originalDims[2] = it->second.dims[2];
debug4 << "avtPixieFileFormat::GetMesh: 0: "
<< "originalDims={" << originalDims[0]
<< ", " << originalDims[1]
<< ", " << originalDims[2] << "}" << endl;
//
// Determine the number of cells in each dimension. Note that
// DetermineVarDimensions may throw out dimensions with 1 or 2
// depending on wether the variable is nodal or zonal. So
// 1x33x33 could become 33x33. When we use nVarDims hereafter,
// it will contain the reduced number of dimensions if any
// reduction has been done.
//
hsize_t hyperslabDims[3];
int varDims[3];
int nVarDims;
DetermineVarDimensions(it->second, hyperslabDims, varDims, nVarDims);
if(nVarDims < 2)
{
EXCEPTION1(InvalidVariableException, meshNameString);
}
debug4 << "avtPixieFileFormat::GetMesh: 1: nVarDims=" << nVarDims
<< ", varDims={" << varDims[0] << ", " << varDims[1] << ", "
<< varDims[2] << "}" << endl;
// Try to create a point or curvilinear mesh.
vtkDataSet *retval = 0;
if(meshNameString == "pointmesh")
retval = CreatePointMesh(timestate, it->second, hyperslabDims,
varDims, nVarDims);
else if(MeshIsCurvilinear(meshname))
retval = CreateCurvilinearMesh(timestate, it->second, hyperslabDims,
varDims, nVarDims);
// If the mesh isn't a point or curvilinear mesh, then create a
// rectilinear mesh.
if(retval == 0)
{
//
// Add 1 so we have the number of nodes instead of #cells.
//
++varDims[0];
++varDims[1];
if(nVarDims == 3)
++varDims[2];
// Reverse X,Z dimensions so the mesh is drawn properly.
if(nVarDims == 3)
{
int tmp = varDims[0];
varDims[0] = varDims[2];
varDims[2] = tmp;
}
else if (nVarDims == 2)
{
int tmp = varDims[0];
varDims[0] = varDims[1];
varDims[1] = tmp;
}
vtkRectilinearGrid *rgrid = vtkRectilinearGrid::New();
vtkFloatArray *coords[3];
for (int i = 0 ; i < 3 ; i++)
{
// Default number of components for an array is 1.
coords[i] = vtkFloatArray::New();
if (i < nVarDims)
{
coords[i]->SetNumberOfTuples(varDims[i]);
for (int j = 0; j < varDims[i]; j++)
coords[i]->SetComponent(j, 0, j);
}
else
{
varDims[i] = 1;
coords[i]->SetNumberOfTuples(1);
coords[i]->SetComponent(0, 0, 0.);
}
}
rgrid->SetDimensions(varDims);
rgrid->SetXCoordinates(coords[0]);
coords[0]->Delete();
rgrid->SetYCoordinates(coords[1]);
coords[1]->Delete();
rgrid->SetZCoordinates(coords[2]);
coords[2]->Delete();
retval = rgrid;
}
return retval;
}
// ****************************************************************************
// Method: avtPixieFileFormat::CreatePointMesh
//
// Purpose:
// Creates a point mesh.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:43:28 PDT 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 17:18:31 PST 2004
// Added support for reading custom coordinate arrays.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal.
//
// ****************************************************************************
vtkDataSet *
avtPixieFileFormat::CreatePointMesh(int timestate, const VarInfo &info,
const hsize_t *hyperslabDims, const int *varDims, int nVarDims) const
{
vtkDataSet *ds = 0;
float *coords[3] = {0,0,0};
//
// Try and read the coordinate fields.
//
if(ReadCoordinateFields(timestate, info, coords, hyperslabDims, nVarDims))
{
//
// Populate the coordinates. Put in 3D points with z=0 if the mesh
// is 2D.
//
int i, nPoints = varDims[0] * varDims[1] * ((nVarDims > 2) ? varDims[2] : 1);
vtkPoints *points = vtkPoints::New();
points->SetNumberOfPoints(nPoints);
float *pts = (float *) points->GetVoidPointer(0);
for(i = 0; i < 3; ++i)
{
float *tmp = pts + i;
if(nVarDims > 2)
{
float *coord = coords[i];
for(int j = 0; j < nPoints; ++j)
{
*tmp = *coord++;
tmp += 3;
}
}
else
{
for (int j = 0; j < nPoints; ++j)
{
*tmp = 0.f;
tmp += 3;
}
}
}
//
// Create the VTK objects and connect them up.
//
vtkUnstructuredGrid *ugrid = vtkUnstructuredGrid::New();
ugrid->SetPoints(points);
ugrid->Allocate(nPoints);
vtkIdType onevertex;
for(i = 0; i < nPoints; ++i)
{
onevertex = i;
ugrid->InsertNextCell(VTK_VERTEX, 1, &onevertex);
}
points->Delete();
ds = ugrid;
}
return ds;
}
// ****************************************************************************
// Method: avtPixieFileFormat::CreateCurvilinearMesh
//
// Purpose:
// Returns a curvilinear mesh.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:38:31 PDT 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 17:19:05 PST 2004
// Added support for custom coordinate arrays.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal.
//
// Eric Brugger, Wed Dec 22 07:56:05 PST 2004
// I added back some code that I inadvertently deleted that caused the
// reading of 3d meshes to fail.
//
// ****************************************************************************
vtkDataSet *
avtPixieFileFormat::CreateCurvilinearMesh(int timestate, const VarInfo &info,
const hsize_t *hyperslabDims, const int *varDims, int nVarDims)
{
vtkDataSet *retval = 0;
//
// Try and read the coordinate fields.
//
float *coords[3] = {0,0,0};
if(ReadCoordinateFields(timestate, info, coords, hyperslabDims, nVarDims))
{
//
// Create the VTK objects and connect them up.
//
vtkStructuredGrid *sgrid = vtkStructuredGrid::New();
vtkPoints *points = vtkPoints::New();
sgrid->SetPoints(points);
points->Delete();
//
// Tell the grid what its dimensions are and populate the points array.
//
if(nVarDims == 2)
{
int yxzNodes[] = {varDims[1], varDims[0], varDims[2]};
sgrid->SetDimensions((int *)yxzNodes);
}
else
{
// In 3D, Pixie dimensions are stored ZYX. Reverse them so we
// give the right order to VTK.
int xyzNodes[] = {varDims[2], varDims[1], varDims[0]};
sgrid->SetDimensions(xyzNodes);
}
int nMeshNodes = varDims[0] * varDims[1] * varDims[2];
//
// Populate the coordinates. Put in 3D points with z=0 if the mesh is 2D.
//
points->SetNumberOfPoints(nMeshNodes);
float *pts = (float *) points->GetVoidPointer(0);
int i, j, k;
int nx, ny, nz;
float *coord0, *coord1, *coord2;
float *tmp = pts;
switch (nVarDims)
{
case 2:
nx = varDims[0];
ny = varDims[1];
coord0 = coords[0];
coord1 = coords[1];
for (j = 0; j < ny; j++)
{
for (i = 0; i < nx; i++)
{
*tmp++ = *coord0++;
*tmp++ = *coord1++;
*tmp++ = 0.;
}
}
break;
case 3:
// If things are 3D then the varDims array did not get reduced
// in the DetermineVarDimensions call in GetMesh so the numbers
// of dimensions will be stored Z,Y,X.
nx = varDims[2];
ny = varDims[1];
nz = varDims[0];
coord0 = coords[0];
coord1 = coords[1];
coord2 = coords[2];
for (k = 0; k < nz; k++)
{
for (j = 0; j < ny; j++)
{
for (i = 0; i < nx; i++)
{
*tmp++ = *coord0++;
*tmp++ = *coord1++;
*tmp++ = *coord2++;
}
}
}
break;
}
retval = sgrid;
}
// free up coord data
if (coords[0] != 0) delete [] coords[0];
if (coords[1] != 0) delete [] coords[1];
if (coords[2] != 0) delete [] coords[2];
return retval;
}
// ****************************************************************************
// Method: avtPixieFileFormat::GetVar
//
// Purpose:
// Gets a scalar variable associated with this file. Although VTK has
// support for many different types, the best bet is vtkFloatArray, since
// that is supported everywhere through VisIt.
//
// Arguments:
// timestate The index of the timestate. If GetNTimesteps returned
// 'N' time steps, this is guaranteed to be between 0 and N-1.
// varname The name of the variable requested.
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 14:31:43 PST 2004
//
// Modifications:
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to handle the fact that variables defined on a
// curvilinear mesh are now nodal.
//
// ****************************************************************************
vtkDataArray *
avtPixieFileFormat::GetVar(int timestate, const char *varname)
{
const char *mName = "avtPixieFileFormat::GetVar: ";
debug4 << mName << varname << " ts= "
<< timestate << endl;
// Check the time state.
if(nTimeStates > 0 && timestate >= nTimeStates)
{
EXCEPTION2(InvalidTimeStepException, 0, nTimeStates);
}
// Check the variable name.
VarInfoMap::const_iterator it = variables.find(varname);
if(it == variables.end())
{
EXCEPTION1(InvalidVariableException, varname);
}
#ifdef ADD_POINT_MESH
if(it->first == "pointvar")
{
int nels = it->second.dims[0] *
it->second.dims[1] *
it->second.dims[2];
vtkFloatArray *fscalars = vtkFloatArray::New();
fscalars->SetNumberOfTuples(nels);
float *data = (float *)fscalars->GetVoidPointer(0);
for(int p = 0; p < nels; ++p)
*data++ = float(p);
return fscalars;
}
#endif
//
// Try and read the data from the file.
//
int nVarDims;
hsize_t hyperslabDims[3];
DetermineVarDimensions(it->second, hyperslabDims, 0, nVarDims);
vtkDataArray *scalars = 0;
int nels = hyperslabDims[0] * hyperslabDims[1] * hyperslabDims[2];
if(H5Tequal(it->second.nativeVarType, H5T_NATIVE_INT) > 0 ||
H5Tequal(it->second.nativeVarType, H5T_NATIVE_UINT) > 0)
{
vtkIntArray *iscalars = vtkIntArray::New();
iscalars->SetNumberOfTuples(nels);
scalars = iscalars;
TRY
{
ReadVariableFromFile(timestate, it->first, it->second,
hyperslabDims, iscalars->GetVoidPointer(0));
}
CATCH(VisItException)
{
iscalars->Delete();
RETHROW;
}
ENDTRY
}
else if(H5Tequal(it->second.nativeVarType, H5T_NATIVE_FLOAT) > 0)
{
vtkFloatArray *fscalars = vtkFloatArray::New();
fscalars->SetNumberOfTuples(nels);
scalars = fscalars;
TRY
{
ReadVariableFromFile(timestate, it->first, it->second,
hyperslabDims, fscalars->GetVoidPointer(0));
}
CATCH(VisItException)
{
fscalars->Delete();
RETHROW;
}
ENDTRY
}
else if(H5Tequal(it->second.nativeVarType, H5T_NATIVE_DOUBLE) > 0)
{
vtkDoubleArray *dscalars = vtkDoubleArray::New();
dscalars->SetNumberOfTuples(nels);
scalars = dscalars;
TRY
{
ReadVariableFromFile(timestate, it->first, it->second,
hyperslabDims, dscalars->GetVoidPointer(0));
}
CATCH(VisItException)
{
dscalars->Delete();
RETHROW;
}
ENDTRY
}
else
{
debug4 << mName << "The variable " << varname << " was in a "
<<"native format that we're not supporting." << endl;
}
return scalars;
}
// ****************************************************************************
// Method: avtPixieFileFormat::ReadVariableFromFile
//
// Purpose:
// Reads a variable from the Pixie file into a buffer.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:38:56 PDT 2004
//
// Modifications:
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to read a hyperslab of the array.
//
// Eric Brugger, Mon Nov 29 15:52:39 PST 2004
// Modified the reader to handle gaps in the cycle numbering (e.g. allowing
// 0, 10, 20, 30 instead of requiring 0, 1, 2, 3).
//
// Mark C. Miller, Thu Apr 6 17:06:33 PDT 2006
// Added conditional compilation for hssize_t type
//
// ****************************************************************************
bool
avtPixieFileFormat::ReadVariableFromFile(int timestate, const std::string &varname,
const VarInfo &it, const hsize_t *dims, void *dest) const
{
bool retval = false;
// Add the time state prefix if necessary.
std::string fileVar(it.fileVarName);
if(nTimeStates > 0 && it.timeVarying)
{
char tsPrefix[40];
SNPRINTF(tsPrefix, 40, "%s%d/", timeStatePrefix.c_str(), cycles[timestate]);
fileVar = std::string(tsPrefix) + fileVar;
}
//
// Try and open the data.
//
debug4 << "avtPixieFileFormat::ReadVariableFromFile: Trying to open data: "
<< fileVar.c_str() << endl;
hid_t dataId = H5Dopen(fileId, fileVar.c_str());
if(dataId < 0)
{
EXCEPTION1(InvalidVariableException, varname);
}
//
// Get the data space.
//
hid_t spaceId = H5Dget_space(dataId);
if(spaceId < 0)
{
H5Dclose(dataId);
EXCEPTION1(InvalidVariableException, varname);
}
#if HDF5_VERSION_GE(1,6,4)
hsize_t start[3];
#else
hssize_t start[3];
#endif
start[0] = 0; start[1] = 0; start[2] = 0;
H5Sselect_hyperslab(spaceId, H5S_SELECT_SET, start, NULL, dims, NULL);
//
// Try and read the data from the file.
//
if(H5Tequal(it.nativeVarType, H5T_NATIVE_INT) > 0 ||
H5Tequal(it.nativeVarType, H5T_NATIVE_UINT) > 0 ||
H5Tequal(it.nativeVarType, H5T_NATIVE_FLOAT) > 0 ||
H5Tequal(it.nativeVarType, H5T_NATIVE_DOUBLE) > 0)
{
// Read the data into all_vars array.
if(H5Dread(dataId, it.nativeVarType, H5S_ALL, spaceId,
H5P_DEFAULT, dest) < 0)
{
H5Sclose(spaceId);
H5Dclose(dataId);
EXCEPTION1(InvalidVariableException, varname);
}
retval = true;
}
else
{
debug4 << "avtPixieFileFormat::ReadVariableFromFile: The variable "
<< varname.c_str() << " was in a native format that we're not "
"supporting." << endl;
}
// Close the data space so we don't leak resources.
H5Sclose(spaceId);
H5Dclose(dataId);
return retval;
}
// ****************************************************************************
// Method: ConvertToFloat
//
// Purpose:
// Converts an array to a float array.
//
// Arguments:
// data : The data array to be converted.
// nels : The number of elements in the data array.
// allocated : Whether a new data array had to be allocated.
//
// Returns: Pointer to the converted data.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:39:27 PDT 2004
//
// Modifications:
//
// ****************************************************************************
template <class T>
float *ConvertToFloat(const T *data, int nels, bool &allocated)
{
float *f;
if(sizeof(float) == sizeof(T))
{
allocated = false;
// Change to float in the same memory.
f = (float *)data;
for(int i = 0; i < nels; ++i)
f[i] = (float)data[i];
}
else
{
allocated = true;
f = new float[nels];
for(int i = 0; i < nels; ++i)
f[i] = (float)data[i];
}
return f;
}
// ****************************************************************************
// Method: avtPixieFileFormat::ReadCoordinateFields
//
// Purpose:
// Reads the coordinate fields from the file.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Wed Sep 15 08:41:58 PDT 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 17:20:11 PST 2004
// Added support for reading custom coordinate arrays.
//
// Eric Brugger, Tue Oct 26 08:36:53 PDT 2004
// I modified the routine to read a hyperslab of the array.
//
// Brad Whitlock, Wed Apr 13 11:27:03 PDT 2005
// I changed the calls to ConvertToFloat.
//
// ****************************************************************************
bool
avtPixieFileFormat::ReadCoordinateFields(int timestate, const VarInfo &info,
float *coords[3], const hsize_t *dims, int nDims) const
{
bool retval = false;
// Make sure that all of the coordinate field variables are in the
// variables map.
VarInfoMap::const_iterator vars[3];
vars[0] = variables.find(info.coordX);
vars[1] = variables.find(info.coordY);
if(nDims > 2)
vars[2] = variables.find(info.coordZ);
int i;
for(i = 0; i < nDims; ++i)
if(vars[i] == variables.end())
return false;
TRY
{
//
// Read in the required variables from the file.
//
for(i = 0; i < nDims; ++i)
{
bool allocated;
int nels = dims[0] * dims[1] * dims[2];
if(H5Tequal(vars[i]->second.nativeVarType, H5T_NATIVE_INT) > 0 ||
H5Tequal(vars[i]->second.nativeVarType, H5T_NATIVE_UINT) > 0)
{
int *data = new int[nels];
TRY
{
ReadVariableFromFile(timestate, vars[i]->first,
vars[i]->second, dims, (void *)data);
coords[i] = ConvertToFloat(data, nels, allocated);
if(allocated)
delete [] data;
}
CATCH(VisItException)
{
delete [] data;
RETHROW;
}
ENDTRY
}
else if(H5Tequal(vars[i]->second.nativeVarType, H5T_NATIVE_FLOAT) > 0)
{
coords[i] = new float[nels];
ReadVariableFromFile(timestate, vars[i]->first, vars[i]->second,
dims, coords[i]);
}
else if(H5Tequal(vars[i]->second.nativeVarType, H5T_NATIVE_DOUBLE) > 0)
{
double *data = new double[nels];
TRY
{
ReadVariableFromFile(timestate, vars[i]->first,
vars[i]->second, dims, (void *)data);
coords[i] = ConvertToFloat(data, nels, allocated);
if(allocated)
delete [] data;
}
CATCH(VisItException)
{
delete [] data;
RETHROW;
}
ENDTRY
}
else
{
debug1 << "The " << vars[i]->first.c_str()
<< " variable was not a type that the Pixie reader "
"supports yet." << endl;
EXCEPTION1(InvalidVariableException, vars[i]->first);
}
}
retval = true;
}
CATCH(VisItException)
{
// Delete any coordinate arrays that we may have read.
for(i = 0; i < nDims; ++i)
delete [] coords[i];
coords[0] = coords[1] = coords[2] = 0;
}
ENDTRY
return retval;
}
// ****************************************************************************
// Method: avtPixieFileFormat::GetVariableList
//
// Purpose:
// This is a callback function to H5Giterate that allows us to iterate
// over all of the objects in the file and pick out the ones that are
// directories and variables.
//
// Arguments:
// group :
// name : The name of the current object.
// op_data : Pointer to a TraversalInfo object that I pass in that helps
// us create variable names without using global vars.
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Fri Aug 13 18:24:27 PST 2004
//
// Modifications:
// Brad Whitlock, Wed Sep 15 22:08:04 PST 2004
// I added code to get the "coords" attribute on data groups that should
// have a curvilinear mesh.
//
// Eric Brugger, Mon Nov 29 15:52:39 PST 2004
// Modified the reader to handle gaps in the cycle numbering (e.g. allowing
// 0, 10, 20, 30 instead of requiring 0, 1, 2, 3).
//
// Mark C. Miller, Wed May 23 15:27:53 PDT 2007
// Initialized varInfo.dims before populating with call to get_simple_extents
//
// Luis Chacon, Wed Feb 25 15:40:06 EST 2009
// Modified the reader to handle time-changing meshes.
//
// Jeremy Meredith, Thu Jan 7 15:35:18 EST 2010
// Skip ".." group names.
//
// Luis Chacon, Tue Mar 2 10:02:00 EST 2010
// Added code to read time value attributes
//
// ****************************************************************************
herr_t
avtPixieFileFormat::GetVariableList(hid_t group, const char *name,
void *op_data)
{
// Silo files have a ".." group. Don't process that.... Ideally we
// might detect and skip hard links, but this doesn't come up often.
if (string(name)=="..")
return 0;
hid_t obj;
H5G_stat_t statbuf;
//
// Create a variable name that includes the path and the current
// variable name.
//
TraversalInfo *info = (TraversalInfo *)op_data;
std::string varName(info->path);
if(info->path != "/")
varName += "/";
varName += name;
//
// Get information about the object so we know if it is a dataset,
// group, type, etc.
//
H5Gget_objinfo(group, name, 0, &statbuf);
//
// Do something with the object based on its type.
//
switch (statbuf.type)
{
case H5G_DATASET:
if ((obj = H5Dopen(group, name)) >= 0)
{
VarInfo varInfo;
varInfo.fileVarName = varName;
varInfo.timeVarying = false;
varInfo.hasCoords = info->hasCoords;
varInfo.coordX = info->coordX;
varInfo.coordY = info->coordY;
varInfo.coordZ = info->coordZ;
// Peel off the timestep prefix if there are multiple time states.
if(info->This->nTimeStates > 0)
{
bool matchingTimePrefix = false;
const std::string tsPrefix1("/Timestep_");
const std::string tsPrefix2("/Timestep ");
if(varName.substr(0, tsPrefix1.size()) == tsPrefix1)
{
matchingTimePrefix = true;
info->This->timeStatePrefix = tsPrefix1;
}
else if(varName.substr(0, tsPrefix2.size()) == tsPrefix2)
{
matchingTimePrefix = true;
info->This->timeStatePrefix = tsPrefix2;
}
if(matchingTimePrefix)
{
varInfo.timeVarying = true;
// Strip off the "/Timestep #" prefix from the argument.
std::string::size_type index = varName.find("/", 1);
if(index != -1)
varName = varName.substr(index+1);
// Strip the timestep off of the file variable because
// we'll add that back later.
index = varInfo.fileVarName.find("/", 1);
if(index != -1)
varInfo.fileVarName = varInfo.fileVarName.substr(index+1);
}
else if(varName.size() > 0 && varName[0] == '/')
{
// Trim off the leading slash.
varName = varName.substr(1);
}
}
else if(varName.size() > 0 && varName[0] == '/')
varName = varName.substr(1);
// See if the variable's name contains any parenthesis. If so,
// replace with square brackets.
for(int i = 0; i < varName.size(); ++i)
{
if(varName[i] == '(')
varName[i]= '[';
else if(varName[i] == ')')
varName[i]= ']';
}
// Get the variable's size.
hid_t sid = H5Dget_space(obj);
for (int dd = 0; dd < 3; varInfo.dims[dd] = 1, dd++);
H5Sget_simple_extent_dims(sid, varInfo.dims, NULL);
//
// Determine the variable's type to see if we can support it.
//
hid_t t = H5Dget_type(obj);
//
// MCM - Added 16Mar05
// VisIt can't deal well with a large variety of different data
// types. So, we force everything to float with this line of
// code. This tells the plugin that everything is float,
// regardless of its real type on disk. Note that if we
// every implement GetAuxiliaryData functions for global node/zone
// ids, we'll have to be a little smarter.
//
#ifdef FORCE_FLOATS
varInfo.nativeVarType = H5T_NATIVE_FLOAT;
#else
varInfo.nativeVarType = H5Tget_native_type(t, H5T_DIR_ASCEND);
#endif
bool supported = false;
if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_INT) > 0 ||
H5Tequal(varInfo.nativeVarType, H5T_NATIVE_UINT) > 0)
{
supported = true;
}
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_FLOAT) > 0)
supported = true;
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_DOUBLE) > 0)
supported = true;
else
{
debug4 << "Variable " << varName.c_str()
<< "'s type is: ";
if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_CHAR) > 0)
debug4 << "CHAR";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_SHORT) > 0)
debug4 << "SHORT";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_INT) > 0)
debug4 << "INT";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_LONG) > 0)
debug4 << "LONG";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_LLONG) > 0)
debug4 << "LLONG";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_UCHAR) > 0)
debug4 << "UCHAR";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_USHORT) > 0)
debug4 << "USHORT";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_UINT) > 0)
debug4 << "UINT";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_ULONG) > 0)
debug4 << "ULONG";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_ULLONG) > 0)
debug4 << "ULLONG";
else if(H5Tequal(varInfo.nativeVarType, H5T_NATIVE_LDOUBLE) > 0)
debug4 << "LDOUBLE";
else
debug4 << "???";
debug4 << ", which is not supported at this time." << endl;
}
// Store information about the variable.
if(supported &&
info->This->variables.find(varName) == info->This->variables.end())
{
info->This->variables[varName] = varInfo;
debug4 << "Adding variable \"" << varName.c_str()
<< "\" for file variable: \""
<< varInfo.fileVarName.c_str() << "\"" << endl;
}
H5Sclose(sid);
H5Dclose(obj);
}
else
{
debug4 << "unable to get dataset " << name << endl;
}
break;
case H5G_GROUP:
// We found a time state, increment the number of time states.
if(info->level == 0 && varName.find("Timestep") != -1)
{
debug4 << "Added time state" << endl;
++info->This->nTimeStates;
int cycle;
if (varName[9] == '_')
cycle = atoi(varName.substr(10).c_str());
else
cycle = atoi(varName.substr(9).c_str());
info->This->cycles.push_back(cycle);
}
// Indicate that we have the mesh coordinates.
if(varName.find("nodes"))
{
debug4 << "Have mesh coordinates." << endl;
info->This->haveMeshCoords = true;
}
if ((obj = H5Gopen(group, name)) >= 0)
{
TraversalInfo info2;
info2.This = info->This;
info2.level = info->level + 1;
info2.path = varName;
info2.hasCoords = false;
info2.coordX = "";
info2.coordY = "";
info2.coordZ = "";
// ************************* Begin Pixie-specific coding **********************
//
// See if the group has the "coords" attribute.
//
hid_t coordsAttribute = H5Aopen_name(obj, "coords");
if(coordsAttribute >= 0)
{
hid_t attrType = H5Aget_type(coordsAttribute);
if(attrType >= 0)
{
char data[1000];
memset((void*)data, 0, sizeof(data));
if(H5Aread(coordsAttribute, attrType, (void *)data) >= 0)
{
for(int j = 0; j < 3; ++j)
{
int dsize = H5Tget_size(attrType);
char *ptr = data + dsize * j + 1;
char *tmp = new char[dsize+1];
int i;
for(i = 0; i < dsize && *ptr != ' '; ++i)
tmp[i] = *ptr++;
tmp[i] = '\0';
if(j == 0)
info2.coordX = std::string(tmp);
else if(j == 1)
info2.coordY = std::string(tmp);
else
info2.coordZ = std::string(tmp);
delete [] tmp;
}
info2.hasCoords = true;
debug4 << "Have mesh coordinates: "
<< info2.coordX << endl;
debug4 << "Have mesh coordinates: "
<< info2.coordY << endl;
debug4 << "Have mesh coordinates: "
<< info2.coordZ << endl;
}
else
{
debug4 << "No mesh coordinates found." << endl;
}
H5Tclose(attrType);
}
H5Aclose(coordsAttribute);
}
//
// Read time level if available
//
hid_t timeAttribute = H5Aopen_name(obj, "Time");
if(timeAttribute >= 0)
{
debug4 << "Found time attribute" << endl;
hid_t attrType = H5Aget_type(timeAttribute);
if(attrType >= 0)
{
double time;
if(H5Aread(timeAttribute, attrType, &time) >= 0)
{
info->This->time_val.push_back(time);
debug4 << "time value found="<< time << endl;
}
else
{
debug4 << "No time value found." << endl;
}
H5Tclose(attrType);
}
else
{
debug4 << "Problems opening time attribute." << endl;
}
H5Aclose(timeAttribute);
}
// ************************** End Pixie-specific coding ***********************
// Iterate over the items in this group.
H5Giterate(obj, ".", NULL, GetVariableList, (void*)&info2);
H5Gclose(obj);
}
else
{
debug4 << "unable to dump group " << varName.c_str() << endl;
}
break;
#if 0
case H5G_TYPE:
if ((obj = H5Topen(group, name)) >= 0)
{
debug4 << "TYPE: " << varName.c_str() << endl;
H5Tclose(obj);
}
else
{
debug4 << "unable to get dataset " << varName.c_str() << endl;
}
break;
#endif
default:
break;
}
return 0;
}
|