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 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376
|
/*****************************************************************************
*
* This module has a number of additions and improvements over the original
* implementation to be suitable for usage in GDAL HDF driver.
*
* Andrey Kiselev <dron@ak4719.spb.edu> is responsible for all the changes.
****************************************************************************/
/*
Copyright (C) 1996 Hughes and Applied Research Corporation
Permission to use, modify, and distribute this software and its documentation
for any purpose without fee is hereby granted, provided that the above
copyright notice appear in all copies and that both that copyright notice and
this permission notice appear in supporting documentation.
*/
#include "cpl_port.h"
#include <errno.h>
#include "mfhdf.h"
#include "HdfEosDef.h"
/* Set maximum number of HDF-EOS files to HDF limit (MAX_FILE) */
#define NEOSHDF MAX_FILE
static intn EHXmaxfilecount = 0;
static uint8 *EHXtypeTable = NULL;
static uint8 *EHXacsTable = NULL;
static int32 *EHXfidTable = NULL;
static int32 *EHXsdTable = NULL;
/* define a macro for the string size of the utility strings and some dimension
list strings. The value in previous versions of this code may not be
enough in some cases. The length now is 512 which seems to be more than
enough to hold larger strings. */
#define UTLSTR_MAX_SIZE 512
#define UTLSTRSIZE 32000
#define EHIDOFFSET 524288
#define HDFEOSVERSION 2.12
#define HDFEOSVERSION1 "2.12"
#include "HDFEOSVersion.h"
#define MAX_RETRIES 10
/* Function Prototypes */
static intn EHreset_maxopenfiles(intn);
static intn EHget_maxopenfiles(intn *, intn *);
static intn EHget_numfiles(void);
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHopen |
| |
| DESCRIPTION: Opens HDF-EOS file and returns file handle |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| fid int32 HDF-EOS file ID |
| |
| INPUTS: |
| filename char Filename |
| access intn HDF access code |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Jul 96 Joel Gales Add file id offset EHIDOFFSET |
| Aug 96 Joel Gales Add "END" statement to structural metadata |
| Sep 96 Joel Gales Reverse order of Hopen ane SDstart statements |
| for RDWR and READ access |
| Oct 96 Joel Gales Trap CREATE & RDWR (no write permission) |
| access errors |
| Apr 97 Joel Gales Fix problem with RDWR open when file previously |
| open for READONLY access |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHopen(const char *filename, intn access)
{
intn i; /* Loop index */
intn status = 0; /* routine return status variable */
intn dum; /* Dummy variable */
intn curr_max = 0; /* maximum # of HDF files to open */
intn sys_limit = 0; /* OS limit for maximum # of opened files */
int32 HDFfid = 0; /* HDF file ID */
int32 fid = -1; /* HDF-EOS file ID */
int32 sdInterfaceID = 0; /* HDF SDS interface ID */
int32 attrIndex; /* Structural Metadata attribute index */
uint8 acs = 0; /* Read (0) / Write (1) access code */
char *testname; /* Test filename */
char errbuf[256];/* Error report buffer */
char *metabuf; /* Pointer to structural metadata buffer */
char hdfeosVersion[32]; /* HDFEOS version string */
intn retryCount;
/* Request the system allowed number of opened files */
/* and increase HDFEOS file tables to the same size */
/* ------------------------------------------------- */
if (EHget_maxopenfiles(&curr_max, &sys_limit) >= 0
&& curr_max < sys_limit)
{
if (EHreset_maxopenfiles(sys_limit) < 0)
{
HEpush(DFE_ALROPEN, "EHopen", __FILE__, __LINE__);
HEreport("Can't set maximum opened files number to \"%d\".\n", curr_max);
return -1;
}
}
/* Setup file interface */
/* -------------------- */
if (EHget_numfiles() < EHXmaxfilecount)
{
/*
* Check that file has not been previously opened for write access if
* current open request is not READONLY
*/
if (access != DFACC_READ)
{
/* Loop through all files */
/* ---------------------- */
for (i = 0; i < EHXmaxfilecount; i++)
{
/* if entry is active file opened for write access ... */
/* --------------------------------------------------- */
if (EHXtypeTable[i] != 0 && EHXacsTable[i] == 1)
{
/* Get filename (testname) */
/* ----------------------- */
Hfidinquire(EHXfidTable[i], &testname, &dum, &dum);
/* if same as filename then report error */
/* ------------------------------------- */
if (strcmp(testname, filename) == 0)
{
status = -1;
fid = -1;
HEpush(DFE_ALROPEN, "EHopen", __FILE__, __LINE__);
HEreport("\"%s\" already open.\n", filename);
break;
}
}
}
}
if (status == 0)
{
/* Create HDF-EOS file */
/* ------------------- */
switch (access)
{
case DFACC_CREATE:
/* Get SDS interface ID */
/* -------------------- */
sdInterfaceID = SDstart(filename, DFACC_CREATE);
/* If SDstart successful ... */
/* ------------------------- */
if (sdInterfaceID != -1)
{
/* Set HDFEOS version number in file */
/* --------------------------------- */
snprintf(hdfeosVersion, sizeof(hdfeosVersion), "%s%s", "HDFEOS_V",
HDFEOSVERSION1);
SDsetattr(sdInterfaceID, "HDFEOSVersion", DFNT_CHAR8,
(int)strlen(hdfeosVersion), hdfeosVersion);
/* Get HDF file ID */
/* --------------- */
HDFfid = Hopen(filename, DFACC_RDWR, 0);
/* Set open access to write */
/* ------------------------ */
acs = 1;
/* Setup structural metadata */
/* ------------------------- */
metabuf = (char *) calloc(32000, 1);
if(metabuf == NULL)
{
HEpush(DFE_NOSPACE,"EHopen", __FILE__, __LINE__);
return(-1);
}
strcpy(metabuf, "GROUP=SwathStructure\n");
strcat(metabuf, "END_GROUP=SwathStructure\n");
strcat(metabuf, "GROUP=GridStructure\n");
strcat(metabuf, "END_GROUP=GridStructure\n");
strcat(metabuf, "GROUP=PointStructure\n");
strcat(metabuf, "END_GROUP=PointStructure\n");
strcat(metabuf, "END\n");
/* Write Structural metadata */
/* ------------------------- */
SDsetattr(sdInterfaceID, "StructMetadata.0",
DFNT_CHAR8, 32000, metabuf);
free(metabuf);
} else
{
/* If error in SDstart then report */
/* ------------------------------- */
fid = -1;
status = -1;
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "%s%s%s", "\"", filename,
"\" cannot be created.");
HEreport("%s\n", errbuf);
}
break;
/* Open existing HDF-EOS file for read/write access */
/* ------------------------------------------------ */
case DFACC_RDWR:
/* Get HDF file ID */
/* --------------- */
#ifndef _PGS_OLDNFS
/* The following loop around the function Hopen is intended to deal with the NFS cache
problem when opening file fails with errno = 150 or 151. When NFS cache is updated,
this part of change is no longer necessary. 10/18/1999 */
retryCount = 0;
HDFfid = -1;
while ((HDFfid == -1) && (retryCount < MAX_RETRIES))
{
HDFfid = Hopen(filename, DFACC_RDWR, 0);
if((HDFfid == -1) && (errno == 150 || errno == 151))
{
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "\"%s\" cannot be opened for READ/WRITE access, will retry %d times.", filename, (MAX_RETRIES - retryCount - 1));
HEreport("%s\n", errbuf);
}
retryCount++;
}
#else
HDFfid = Hopen(filename, DFACC_RDWR, 0);
#endif
/* If Hopen successful ... */
/* ----------------------- */
if (HDFfid != -1)
{
/* Get SDS interface ID */
/* -------------------- */
sdInterfaceID = SDstart(filename, DFACC_RDWR);
/* If SDstart successful ... */
/* ------------------------- */
if (sdInterfaceID != -1)
{
/* Set HDFEOS version number in file */
/* --------------------------------- */
attrIndex = SDfindattr(sdInterfaceID, "HDFEOSVersion");
if (attrIndex == -1)
{
snprintf(hdfeosVersion, sizeof(hdfeosVersion), "%s%s", "HDFEOS_V",
HDFEOSVERSION1);
SDsetattr(sdInterfaceID, "HDFEOSVersion", DFNT_CHAR8,
(int)strlen(hdfeosVersion), hdfeosVersion);
}
/* Set open access to write */
/* ------------------------ */
acs = 1;
/* Get structural metadata attribute ID */
/* ------------------------------------ */
attrIndex = SDfindattr(sdInterfaceID, "StructMetadata.0");
/* Write structural metadata if it doesn't exist */
/* --------------------------------------------- */
if (attrIndex == -1)
{
metabuf = (char *) calloc(32000, 1);
if(metabuf == NULL)
{
HEpush(DFE_NOSPACE,"EHopen", __FILE__, __LINE__);
return(-1);
}
strcpy(metabuf, "GROUP=SwathStructure\n");
strcat(metabuf, "END_GROUP=SwathStructure\n");
strcat(metabuf, "GROUP=GridStructure\n");
strcat(metabuf, "END_GROUP=GridStructure\n");
strcat(metabuf, "GROUP=PointStructure\n");
strcat(metabuf, "END_GROUP=PointStructure\n");
strcat(metabuf, "END\n");
SDsetattr(sdInterfaceID, "StructMetadata.0",
DFNT_CHAR8, 32000, metabuf);
free(metabuf);
}
} else
{
/* If error in SDstart then report */
/* ------------------------------- */
fid = -1;
status = -1;
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "%s%s%s", "\"", filename,
"\" cannot be opened for read/write access.");
HEreport("%s\n", errbuf);
}
} else
{
/* If error in Hopen then report */
/* ----------------------------- */
fid = -1;
status = -1;
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "%s%s%s", "\"", filename,
"\" cannot be opened for RDWR access.");
HEreport("%s\n", errbuf);
}
break;
/* Open existing HDF-EOS file for read-only access */
/* ----------------------------------------------- */
case DFACC_READ:
/* Get HDF file ID */
/* --------------- */
#ifndef _PGS_OLDNFS
/* The following loop around the function Hopen is intended to deal with the NFS cache
problem when opening file fails with errno = 150 or 151. When NFS cache is updated,
this part of change is no longer necessary. 10/18/1999 */
retryCount = 0;
HDFfid = -1;
while ((HDFfid == -1) && (retryCount < MAX_RETRIES))
{
HDFfid = Hopen(filename, DFACC_READ, 0);
if((HDFfid == -1) && (errno == 150 || errno == 151))
{
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "\"%s\" cannot be opened for READONLY access, will retry %d times.", filename, (MAX_RETRIES - retryCount - 1));
HEreport("%s\n", errbuf);
}
retryCount++;
}
#else
HDFfid = Hopen(filename, DFACC_READ, 0);
#endif
/* If file does not exist report error */
/* ----------------------------------- */
if (HDFfid == -1)
{
fid = -1;
status = -1;
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "\"%s\" (opened for READONLY access) does not exist.", filename);
HEreport("%s\n", errbuf);
} else
{
/* If file exists then get SD interface ID */
/* --------------------------------------- */
sdInterfaceID = SDstart(filename, DFACC_RDONLY);
/* If SDstart successful ... */
/* ------------------------- */
if (sdInterfaceID != -1)
{
/* Set open access to read-only */
/* ---------------------------- */
acs = 0;
} else
{
/* If error in SDstart then report */
/* ------------------------------- */
fid = -1;
status = -1;
HEpush(DFE_FNF, "EHopen", __FILE__, __LINE__);
snprintf(errbuf, sizeof(errbuf), "%s%s%s", "\"", filename,
"\" cannot be opened for read access.");
HEreport("%s\n", errbuf);
}
}
break;
default:
/* Invalid Access Code */
/* ------------------- */
fid = -1;
status = -1;
HEpush(DFE_BADACC, "EHopen", __FILE__, __LINE__);
HEreport("Access Code: %d (%s).\n", access, filename);
}
}
} else
{
/* Too many files opened */
/* --------------------- */
status = -1;
fid = -1;
HEpush(DFE_TOOMANY, "EHopen", __FILE__, __LINE__);
HEreport("No more than %d files may be open simultaneously (%s).\n",
EHXmaxfilecount, filename);
}
if (status == 0)
{
/* Initialize Vgroup Access */
/* ------------------------ */
Vstart(HDFfid);
/* Assign HDFEOS fid # & Load HDF fid and sdInterfaceID tables */
/* ----------------------------------------------------------- */
for (i = 0; i < EHXmaxfilecount; i++)
{
if (EHXtypeTable[i] == 0)
{
fid = i + EHIDOFFSET;
EHXacsTable[i] = acs;
EHXtypeTable[i] = 1;
EHXfidTable[i] = HDFfid;
EHXsdTable[i] = sdInterfaceID;
break;
}
}
}
return (fid);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHchkfid |
| |
| DESCRIPTION: Checks for valid file id and returns HDF file ID and |
| SD interface ID |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| name char Structure name |
| |
| OUTPUTS: |
| HDFfid int32 HDF File ID |
| sdInterfaceID int32 SDS interface ID |
| access uint8 access code |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Jul 96 Joel Gales set status=-1 if failure |
| Jul 96 Joel Gales Add file id offset EHIDOFFSET |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHchkfid(int32 fid, const char *name, int32 * HDFfid, int32 * sdInterfaceID,
uint8 * access)
{
intn status = 0; /* routine return status variable */
intn fid0; /* HDFEOS file ID - Offset */
/* Check for valid HDFEOS file ID range */
/* ------------------------------------ */
if (fid < EHIDOFFSET || fid > EHXmaxfilecount + EHIDOFFSET)
{
status = -1;
HEpush(DFE_RANGE, "EHchkfid", __FILE__, __LINE__);
HEreport("Invalid file id: %d. ID must be >= %d and < %d (%s).\n",
fid, EHIDOFFSET, EHXmaxfilecount + EHIDOFFSET, name);
} else
{
/* Compute "reduced" file ID */
/* ------------------------- */
fid0 = fid % EHIDOFFSET;
/* Check that HDFEOS file ID is active */
/* ----------------------------------- */
if (EHXtypeTable[fid0] == 0)
{
status = -1;
HEpush(DFE_GENAPP, "EHchkfid", __FILE__, __LINE__);
HEreport("File id %d not active (%s).\n", fid, name);
} else
{
/*
* Get HDF file ID, SD interface ID and file access from external
* arrays
*/
*HDFfid = EHXfidTable[fid0];
*sdInterfaceID = EHXsdTable[fid0];
*access = EHXacsTable[fid0];
}
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHidinfo |
| |
| DESCRIPTION: Gets Hopen and SD interface IDs from HDF-EOS id |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| |
| OUTPUTS: |
| HDFfid int32 HDF File ID |
| sdInterfaceID int32 SDS interface ID |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jul 96 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHidinfo(int32 fid, int32 * HDFfid, int32 * sdInterfaceID)
{
intn status = 0; /* routine return status variable */
uint8 dum; /* Dummy variable */
/* Call EHchkfid to get HDF and SD interface IDs */
/* --------------------------------------------- */
status = EHchkfid(fid, "EHidinfo", HDFfid, sdInterfaceID, &dum);
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHgetversion |
| |
| DESCRIPTION: Returns HDF-EOS version string |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS file id |
| |
| OUTPUTS: |
| version char HDF-EOS version string |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Mar 97 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHgetversion(int32 fid, char *version)
{
intn status = 0; /* routine return status variable */
uint8 access; /* Access code */
int32 dum; /* Dummy variable */
int32 sdInterfaceID = 0; /* HDF SDS interface ID */
int32 attrIndex; /* HDFEOS version attribute index */
int32 count; /* Version string size */
char attrname[16]; /* Attribute name */
/* Get SDS interface ID */
/* -------------------- */
status = EHchkfid(fid, "EHgetversion", &dum, &sdInterfaceID, &access);
/* Get attribute index number */
/* -------------------------- */
attrIndex = SDfindattr(sdInterfaceID, "HDFEOSVersion");
/* No such attribute */
/* ----------------- */
if (attrIndex < 0)
return (-1);
/* Get attribute size */
/* ------------------ */
status = SDattrinfo(sdInterfaceID, attrIndex, attrname, &dum, &count);
/* Check return status */
/* ------------------- */
if (status < 0)
return (-1);
/* Read version attribute */
/* ---------------------- */
status = SDreadattr(sdInterfaceID, attrIndex, (VOIDP) version);
/* Place string terminator on version string */
/* ----------------------------------------- */
version[count] = 0;
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHconvAng |
| |
| DESCRIPTION: Angle conversion Utility |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| outAngle float64 Output Angle value |
| |
| INPUTS: |
| inAngle float64 Input Angle value |
| code intn Conversion code |
! HDFE_RAD_DEG (0) |
| HDFE_DEG_RAD (1) |
| HDFE_DMS_DEG (2) |
| HDFE_DEG_DMS (3) |
| HDFE_RAD_DMS (4) |
| HDFE_DMS_RAD (5) |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Feb 97 Joel Gales Correct "60" min & "60" sec in _DMS conversion |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
float64
EHconvAng(float64 inAngle, intn code)
{
#define RADIANS_TO_DEGREES 180. / 3.14159265358979324
#define DEGREES_TO_RADIANS 3.14159265358979324 / 180.
int32 min; /* Truncated Minutes */
int32 deg; /* Truncated Degrees */
float64 sec; /* Seconds */
float64 outAngle = 0.0; /* Angle in desired units */
switch (code)
{
/* Convert radians to degrees */
/* -------------------------- */
case HDFE_RAD_DEG:
outAngle = inAngle * RADIANS_TO_DEGREES;
break;
/* Convert degrees to radians */
/* -------------------------- */
case HDFE_DEG_RAD:
outAngle = inAngle * DEGREES_TO_RADIANS;
break;
/* Convert packed degrees to degrees */
/* --------------------------------- */
case HDFE_DMS_DEG:
deg = (int32)(inAngle / 1000000);
min = (int32)((inAngle - deg * 1000000) / 1000);
sec = (inAngle - deg * 1000000 - min * 1000);
outAngle = deg + min / 60.0 + sec / 3600.0;
break;
/* Convert degrees to packed degrees */
/* --------------------------------- */
case HDFE_DEG_DMS:
deg = (int32)(inAngle);
min = (int32)((inAngle - deg) * 60);
sec = (inAngle - deg - min / 60.0) * 3600;
if ((intn) sec == 60)
{
sec = sec - 60;
min = min + 1;
}
if (min == 60)
{
min = min - 60;
deg = deg + 1;
}
outAngle = deg * 1000000 + min * 1000 + sec;
break;
/* Convert radians to packed degrees */
/* --------------------------------- */
case HDFE_RAD_DMS:
inAngle = inAngle * RADIANS_TO_DEGREES;
deg = (int32)(inAngle);
min = (int32)((inAngle - deg) * 60);
sec = (inAngle - deg - min / 60.0) * 3600;
if ((intn) sec == 60)
{
sec = sec - 60;
min = min + 1;
}
if (min == 60)
{
min = min - 60;
deg = deg + 1;
}
outAngle = deg * 1000000 + min * 1000 + sec;
break;
/* Convert packed degrees to radians */
/* --------------------------------- */
case HDFE_DMS_RAD:
deg = (int32)(inAngle / 1000000);
min = (int32)((inAngle - deg * 1000000) / 1000);
sec = (inAngle - deg * 1000000 - min * 1000);
outAngle = deg + min / 60.0 + sec / 3600.0;
outAngle = outAngle * DEGREES_TO_RADIANS;
break;
}
return (outAngle);
}
#undef TO_DEGREES
#undef TO_RADIANS
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHparsestr |
| |
| DESCRIPTION: String Parser Utility |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| count int32 Number of string entries |
| |
| INPUTS: |
| instring const char Input string |
| delim const char string delimiter |
| |
| OUTPUTS: |
| pntr char * Pointer array to beginning of each |
| string entry |
| len int32 Array of string entry lengths |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Aug 96 Joel Gales NULL pointer array returns count only |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHparsestr(const char *instring, const char delim, char *pntr[], int32 len[])
{
int32 i; /* Loop index */
int32 prevDelimPos = 0; /* Previous delimiter position */
int32 count; /* Number of elements in string list */
int32 slen; /* String length */
char *delimitor; /* Pointer to delimiter */
/* Get length of input string list & Point to first delimiter */
/* ---------------------------------------------------------- */
slen = (int)strlen(instring);
delimitor = strchr(instring, delim);
/* If NULL string set count to zero otherwise set to 1 */
/* --------------------------------------------------- */
count = (slen == 0) ? 0 : 1;
/* if string pointers are requested set first one to beginning of string */
/* --------------------------------------------------------------------- */
if (&pntr[0] != NULL)
{
pntr[0] = (char *)instring;
}
/* If delimiter not found ... */
/* ---------------------------- */
if (delimitor == NULL)
{
/* if string length requested then set to input string length */
/* ---------------------------------------------------------- */
if (len != NULL)
{
len[0] = slen;
}
} else
/* Delimiters Found */
/* ---------------- */
{
/* Loop through all characters in string */
/* ------------------------------------- */
for (i = 1; i < slen; i++)
{
/* If character is a delimiter ... */
/* ------------------------------- */
if (instring[i] == delim)
{
/* If string pointer requested */
/* --------------------------- */
if (&pntr[0] != NULL)
{
/* if requested then compute string length of entry */
/* ------------------------------------------------ */
if (len != NULL)
{
len[count - 1] = i - prevDelimPos;
}
/* Point to beginning of string entry */
/* ---------------------------------- */
pntr[count] = (char *)instring + i + 1;
}
/* Reset previous delimiter position and increment counter */
/* ------------------------------------------------------- */
prevDelimPos = i + 1;
count++;
}
}
/* Compute string length of last entry */
/* ----------------------------------- */
if (&pntr[0] != NULL && len != NULL)
{
len[count - 1] = i - prevDelimPos;
}
}
return (count);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHstrwithin |
| |
| DESCRIPTION: Searches for string within target string |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| indx int32 Element index (0 - based) |
| |
| INPUTS: |
| target const char Target string |
| search const char Search string |
| delim const char Delimiter |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Jan 97 Joel Gales Change ptr & slen to dynamic arrays |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHstrwithin(const char *target, const char *search, const char delim)
{
intn found = 0; /* Target string found flag */
int32 indx; /* Loop index */
int32 nentries; /* Number of entries in search string */
int32 *slen; /* Pointer to string length array */
char **ptr; /* Pointer to string pointer array */
char buffer[128];/* Buffer to hold "test" string entry */
/* Count number of entries in search string list */
/* --------------------------------------------- */
nentries = EHparsestr(search, delim, NULL, NULL);
/* Allocate string pointer and length arrays */
/* ----------------------------------------- */
ptr = (char **) calloc(nentries, sizeof(char *));
if(ptr == NULL)
{
HEpush(DFE_NOSPACE,"EHstrwithin", __FILE__, __LINE__);
return(-1);
}
slen = (int32 *) calloc(nentries, sizeof(int32));
if(slen == NULL)
{
HEpush(DFE_NOSPACE,"EHstrwithin", __FILE__, __LINE__);
free(ptr);
return(-1);
}
/* Parse search string */
/* ------------------- */
nentries = EHparsestr(search, delim, ptr, slen);
/* Loop through all elements in search string list */
/* ----------------------------------------------- */
for (indx = 0; indx < nentries; indx++)
{
/* Copy string entry into buffer */
/* ----------------------------- */
memcpy(buffer, ptr[indx], slen[indx]);
buffer[slen[indx]] = 0;
/* Compare target string with string entry */
/* --------------------------------------- */
if (strcmp(target, buffer) == 0)
{
found = 1;
break;
}
}
/* If not found set return to -1 */
/* ----------------------------- */
if (found == 0)
{
indx = -1;
}
free(slen);
free(ptr);
return (indx);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHloadliststr |
| |
| DESCRIPTION: Builds list string from string array |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| ptr char String pointer array |
| nentries int32 Number of string array elements |
| delim char Delimiter |
| |
| OUTPUTS: |
| liststr char Output list string |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHloadliststr(char *ptr[], int32 nentries, char *liststr, char delim)
{
intn status = 0; /* routine return status variable */
int32 i; /* Loop index */
int32 slen; /* String entry length */
int32 off = 0; /* Position of next entry along string list */
char dstr[2]; /* string version of input variable "delim" */
dstr[0] = delim;
dstr[1] = '\0';
/* Loop through all entries in string array */
/* ---------------------------------------- */
for (i = 0; i < nentries; i++)
{
/* Get string length of string array entry */
/* --------------------------------------- */
slen = (int)strlen(ptr[i]);
/* Copy string entry to string list */
/* -------------------------------- */
memcpy(liststr + off, ptr[i], slen + 1);
/* Concatenate with delimiter */
/* -------------------------- */
if (i != nentries - 1)
{
strcat(liststr, dstr);
}
/* Get position of next entry for string list */
/* ------------------------------------------ */
off += slen + 1;
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHgetid |
| |
| DESCRIPTION: Get Vgroup/Vdata ID from name |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| outID int32 Output ID |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| vgid int32 Vgroup ID |
| objectname const char object name |
| code intn object code (0 - Vgroup, 1 - Vdata) |
| access const char access ("w/r") |
| |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHgetid(int32 fid, int32 vgid, const char *objectname, intn code,
const char *access)
{
intn i; /* Loop index */
int32 nObjects; /* # of objects in Vgroup */
int32 *tags; /* Pnt to Vgroup object tags array */
int32 *refs; /* Pnt to Vgroup object refs array */
int32 id; /* Object ID */
int32 outID = -1; /* Desired object ID */
char name[128]; /* Object name */
/* Get Number of objects */
/* --------------------- */
nObjects = Vntagrefs(vgid);
/* If objects exist ... */
/* -------------------- */
if (nObjects != 0)
{
/* Get tags and references of objects */
/* ---------------------------------- */
tags = (int32 *) malloc(sizeof(int32) * nObjects);
if(tags == NULL)
{
HEpush(DFE_NOSPACE,"EHgetid", __FILE__, __LINE__);
return(-1);
}
refs = (int32 *) malloc(sizeof(int32) * nObjects);
if(refs == NULL)
{
HEpush(DFE_NOSPACE,"EHgetid", __FILE__, __LINE__);
free(tags);
return(-1);
}
Vgettagrefs(vgid, tags, refs, nObjects);
/* Vgroup ID Section */
/* ----------------- */
if (code == 0)
{
/* Loop through objects */
/* -------------------- */
for (i = 0; i < nObjects; i++)
{
/* If object is Vgroup ... */
/* ----------------------- */
if (*(tags + i) == DFTAG_VG)
{
/* Get ID and name */
/* --------------- */
id = Vattach(fid, *(refs + i), access);
Vgetname(id, name);
/* If name equals desired object name get ID */
/* ----------------------------------------- */
if (strcmp(name, objectname) == 0)
{
outID = id;
break;
}
/* If not desired object then detach */
/* --------------------------------- */
Vdetach(id);
}
}
} else if (code == 1)
{
/* Loop through objects */
/* -------------------- */
for (i = 0; i < nObjects; i++)
{
/* If object is Vdata ... */
/* ---------------------- */
if (*(tags + i) == DFTAG_VH)
{
/* Get ID and name */
/* --------------- */
id = VSattach(fid, *(refs + i), access);
VSgetname(id, name);
/* If name equals desired object name get ID */
/* ----------------------------------------- */
if (EHstrwithin(objectname, name, ',') != -1)
{
outID = id;
break;
}
/* If not desired object then detach */
/* --------------------------------- */
VSdetach(id);
}
}
}
free(tags);
free(refs);
}
return (outID);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHrevflds |
| |
| DESCRIPTION: Reverses elements in a string list |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| dimlist char Original dimension list |
| |
| OUTPUTS: |
| revdimlist char Reversed dimension list |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHrevflds(const char *dimlist, char *revdimlist)
{
intn status = 0; /* routine return status variable */
int32 indx; /* Loop index */
int32 nentries; /* Number of entries in search string */
int32 *slen; /* Pointer to string length array */
char **ptr; /* Pointer to string pointer array */
char *tempPtr; /* Temporary string pointer */
char *tempdimlist;/* Temporary dimension list */
/* Copy dimlist into temp dimlist */
/* ------------------------------ */
tempdimlist = (char *) malloc(strlen(dimlist) + 1);
if(tempdimlist == NULL)
{
HEpush(DFE_NOSPACE,"EHrevflds", __FILE__, __LINE__);
return(-1);
}
strcpy(tempdimlist, dimlist);
/* Count number of entries in search string list */
/* --------------------------------------------- */
nentries = EHparsestr(tempdimlist, ',', NULL, NULL);
/* Allocate string pointer and length arrays */
/* ----------------------------------------- */
ptr = (char **) calloc(nentries, sizeof(char *));
if(ptr == NULL)
{
HEpush(DFE_NOSPACE,"EHrevflds", __FILE__, __LINE__);
free(tempdimlist);
return(-1);
}
slen = (int32 *) calloc(nentries, sizeof(int32));
if(slen == NULL)
{
HEpush(DFE_NOSPACE,"EHrevflds", __FILE__, __LINE__);
free(ptr);
free(tempdimlist);
return(-1);
}
/* Parse search string */
/* ------------------- */
nentries = EHparsestr(tempdimlist, ',', ptr, slen);
/* Reverse entries in string pointer array */
/* --------------------------------------- */
for (indx = 0; indx < nentries / 2; indx++)
{
tempPtr = ptr[indx];
ptr[indx] = ptr[nentries - 1 - indx];
ptr[nentries - 1 - indx] = tempPtr;
}
/* Replace comma delimiters by nulls */
/* --------------------------------- */
for (indx = 0; indx < nentries - 1; indx++)
{
*(ptr[indx] - 1) = 0;
}
/* Build new string list */
/* --------------------- */
status = EHloadliststr(ptr, nentries, revdimlist, ',');
free(slen);
free(ptr);
free(tempdimlist);
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHgetmetavalue |
| |
| DESCRIPTION: Returns metadata value |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| metaptrs char Begin and end of metadata section |
| parameter char parameter to access |
| |
| OUTPUTS: |
| metaptr char Ptr to (updated) beginning of metadata |
| retstr char return string containing value |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Jan 97 Joel Gales Check string pointer against end of meta section |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHgetmetavalue(char *metaptrs[], const char *parameter, char *retstr)
{
intn status = 0; /* routine return status variable */
int32 slen; /* String length */
char *newline; /* Position of new line character */
char *sptr; /* string pointer within metadata */
/* Get string length of parameter string + 1 */
/* ----------------------------------------- */
slen = (int)strlen(parameter) + 1;
/* Build search string (parameter string + "=") */
/* -------------------------------------------- */
strcpy(retstr, parameter);
strcat(retstr, "=");
/* Search for string within metadata (beginning at metaptrs[0]) */
/* ------------------------------------------------------------ */
sptr = strstr(metaptrs[0], retstr);
/* If string found within desired section ... */
/* ------------------------------------------ */
if (sptr != NULL && sptr < metaptrs[1])
{
/* Store position of string within metadata */
/* ---------------------------------------- */
metaptrs[0] = sptr;
/* Find newline "\n" character */
/* --------------------------- */
newline = strchr(metaptrs[0], '\n');
if (newline == NULL)
{
retstr[0] = 0;
return -1;
}
/* Copy from "=" to "\n" (exclusive) into return string */
/* ---------------------------------------------------- */
memcpy(retstr, metaptrs[0] + slen, newline - metaptrs[0] - slen);
/* Terminate return string with null */
/* --------------------------------- */
retstr[newline - metaptrs[0] - slen] = 0;
} else
{
/*
* if parameter string not found within section, null return string
* and set status to -1.
*/
retstr[0] = 0;
status = -1;
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHmetagroup |
| |
| DESCRIPTION: Returns pointers to beginning and end of metadata group |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| metabuf char Pointer to HDF-EOS object in metadata |
| |
| INPUTS: |
| sdInterfaceID int32 SDS interface ID |
| structname char HDF-EOS structure name |
| structcode char Structure code ("s/g/p") |
| groupname char Metadata group name |
| |
| OUTPUTS: |
| metaptrs char pointers to begin and end of metadata |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Aug 96 Joel Gales Make metadata ODL compliant |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
char *
EHmetagroup(int32 sdInterfaceID, const char *structname, const char *structcode,
const char *groupname, char *metaptrs[])
{
intn i; /* Loop index */
int32 attrIndex; /* Structural metadata attribute index */
int32 nmeta; /* Number of 32000 byte metadata sections */
int32 metalen; /* Length of structural metadata */
char *metabuf; /* Pointer (handle) to structural metadata */
char *endptr = NULL; /* Pointer to end of metadata section */
char *metaptr; /* Metadata pointer */
char *prevmetaptr;/* Previous position of metadata pointer */
char *utlstr; /* Utility string */
/* Allocate memory for utility string */
/* ---------------------------------- */
utlstr = (char *) calloc(UTLSTR_MAX_SIZE,sizeof(char));
if(utlstr == NULL)
{
HEpush(DFE_NOSPACE,"EHEHmetagroup", __FILE__, __LINE__);
return( NULL);
}
/* Determine number of structural metadata "sections" */
/* -------------------------------------------------- */
nmeta = 0;
while (1)
{
/* Search for "StructMetadata.x" attribute */
/* --------------------------------------- */
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%d", "StructMetadata.", (int)nmeta);
attrIndex = SDfindattr(sdInterfaceID, utlstr);
/* If found then increment metadata section counter else exit loop */
/* --------------------------------------------------------------- */
if (attrIndex != -1)
{
nmeta++;
} else
{
break;
}
}
/* Allocate space for metadata (in units of 32000 bytes) */
/* ----------------------------------------------------- */
metabuf = (char *) calloc(32000 * nmeta, 1);
if(metabuf == NULL)
{
HEpush(DFE_NOSPACE,"EHmetagroup", __FILE__, __LINE__);
free(utlstr);
return(metabuf);
}
/* Read structural metadata */
/* ------------------------ */
for (i = 0; i < nmeta; i++)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%d", "StructMetadata.", i);
attrIndex = SDfindattr(sdInterfaceID, utlstr);
metalen = (int)strlen(metabuf);
SDreadattr(sdInterfaceID, attrIndex, metabuf + metalen);
}
/* Determine length (# of characters) of metadata */
/* ---------------------------------------------- */
metalen = (int)strlen(metabuf);
/* Find HDF-EOS structure "root" group in metadata */
/* ----------------------------------------------- */
/* Setup proper search string */
/* -------------------------- */
if (strcmp(structcode, "s") == 0)
{
strcpy(utlstr, "GROUP=SwathStructure");
} else if (strcmp(structcode, "g") == 0)
{
strcpy(utlstr, "GROUP=GridStructure");
} else if (strcmp(structcode, "p") == 0)
{
strcpy(utlstr, "GROUP=PointStructure");
}
/* Use string search routine (strstr) to move through metadata */
/* ----------------------------------------------------------- */
metaptr = strstr(metabuf, utlstr);
/* Save current metadata pointer */
/* ----------------------------- */
prevmetaptr = metaptr;
/* First loop for "old-style" (non-ODL) metadata string */
/* ---------------------------------------------------- */
if (strcmp(structcode, "s") == 0)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "SwathName=\"", structname);
} else if (strcmp(structcode, "g") == 0)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "GridName=\"", structname);
} else if (strcmp(structcode, "p") == 0)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "PointName=\"", structname);
}
/* Do string search */
/* ---------------- */
if (metaptr)
metaptr = strstr(metaptr, utlstr);
/*
* If not found then return to previous position in metadata and look for
* "new-style" (ODL) metadata string
*/
if (metaptr == NULL)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "GROUP=\"", structname);
metaptr = strstr(prevmetaptr, utlstr);
}
/* Find group within structure */
/* --------------------------- */
if (metaptr && groupname != NULL)
{
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "GROUP=", groupname);
metaptr = strstr(metaptr, utlstr);
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s%s", "\t\tEND_GROUP=", groupname);
if (metaptr)
endptr = strstr(metaptr, utlstr);
else
endptr = NULL;
} else if (metaptr)
{
/* If groupname == NULL then find end of structure in metadata */
/* ----------------------------------------------------------- */
snprintf(utlstr, UTLSTR_MAX_SIZE, "%s", "\n\tEND_GROUP=");
endptr = strstr(metaptr, utlstr);
}
/* Return beginning and ending pointers */
/* ------------------------------------ */
metaptrs[0] = metaptr;
metaptrs[1] = endptr;
free(utlstr);
return (metabuf);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHattr |
| |
| DESCRIPTION: Reads/Writes attributes for HDF-EOS structures |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| attrVgrpID int32 Attribute Vgroup ID |
| attrname char attribute name |
| numbertype int32 attribute HDF numbertype |
| count int32 Number of attribute elements |
| wrcode char Read/Write Code "w/r" |
| datbuf void I/O buffer |
| |
| |
| OUTPUTS: |
| datbuf void I/O buffer |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Oct 96 Joel Gales Pass Vgroup id as routine parameter |
| Oct 96 Joel Gales Remove Vdetach call |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHattr(int32 fid, int32 attrVgrpID, const char *attrname, int32 numbertype,
int32 count, const char *wrcode, VOIDP datbuf)
{
intn status = 0; /* routine return status variable */
int32 vdataID; /* Attribute Vdata ID */
/*
* Attributes are stored as Vdatas with name given by the user, class:
* "Attr0.0" and fieldname: "AttrValues"
*/
/* Get Attribute Vdata ID and "open" with appropriate I/O code */
/* ----------------------------------------------------------- */
vdataID = EHgetid(fid, attrVgrpID, attrname, 1, wrcode);
/* Write Attribute Section */
/* ----------------------- */
if (strcmp(wrcode, "w") == 0)
{
/* Create Attribute Vdata (if it doesn't exist) */
/* -------------------------------------------- */
if (vdataID == -1)
{
vdataID = VSattach(fid, -1, "w");
VSsetname(vdataID, attrname);
VSsetclass(vdataID, "Attr0.0");
VSfdefine(vdataID, "AttrValues", numbertype, count);
Vinsert(attrVgrpID, vdataID);
}
/* Write Attribute */
/* --------------- */
VSsetfields(vdataID, "AttrValues");
(void) VSsizeof(vdataID, (char*) "AttrValues");
VSwrite(vdataID, datbuf, 1, FULL_INTERLACE);
VSdetach(vdataID);
}
/* Read Attribute Section */
/* ---------------------- */
if (strcmp(wrcode, "r") == 0)
{
/* If attribute doesn't exist report error */
/* --------------------------------------- */
if (vdataID == -1)
{
status = -1;
HEpush(DFE_GENAPP, "EHattr", __FILE__, __LINE__);
HEreport("Attribute %s not defined.\n", attrname);
} else
{
VSsetfields(vdataID, "AttrValues");
(void) VSsizeof(vdataID, (char*) "AttrValues");
VSread(vdataID, datbuf, 1, FULL_INTERLACE);
VSdetach(vdataID);
}
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHattrinfo |
| |
| DESCRIPTION: Returns numbertype and count of given HDF-EOS attribute |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| attrVgrpID int32 Attribute Vgroup ID |
| attrname char attribute name |
| |
| OUTPUTS: |
| numbertype int32 attribute HDF numbertype |
| count int32 Number of attribute elements |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Oct 96 Joel Gales Pass Vgroup id as routine parameter |
| Oct 96 Joel Gales Remove Vdetach call |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHattrinfo(int32 fid, int32 attrVgrpID, const char *attrname, int32 * numbertype,
int32 * count)
{
intn status = 0; /* routine return status variable */
int32 vdataID; /* Attribute Vdata ID */
/* Get Attribute Vdata ID */
/* ---------------------- */
vdataID = EHgetid(fid, attrVgrpID, attrname, 1, "r");
/* If attribute not defined then report error */
/* ------------------------------------------ */
if (vdataID == -1)
{
status = -1;
HEpush(DFE_GENAPP, "EHattr", __FILE__, __LINE__);
HEreport("Attribute %s not defined.\n", attrname);
} else
{
/* Get attribute info */
/* ------------------ */
VSsetfields(vdataID, "AttrValues");
*count = VSsizeof(vdataID, (char*) "AttrValues");
*numbertype = VFfieldtype(vdataID, 0);
VSdetach(vdataID);
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHattrcat |
| |
| DESCRIPTION: Returns a listing of attributes within an HDF-EOS structure |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| nattr int32 Number of attributes in swath struct |
| |
| INPUTS: |
| fid int32 HDF-EOS file ID |
| attrVgrpID int32 Attribute Vgroup ID |
| structcode char Structure Code ("s/g/p") |
| |
| OUTPUTS: |
| attrnames char Attribute names in swath struct |
| (Comma-separated list) |
| strbufsize int32 Attributes name list string length |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Oct 96 Joel Gales Pass Vgroup id as routine parameter |
| Oct 96 Joel Gales Remove Vdetach call |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHattrcat(int32 fid, int32 attrVgrpID, char *attrnames, int32 * strbufsize)
{
intn i; /* Loop index */
int32 nObjects; /* # of objects in Vgroup */
int32 *tags; /* Pnt to Vgroup object tags array */
int32 *refs; /* Pnt to Vgroup object refs array */
int32 vdataID; /* Attribute Vdata ID */
int32 nattr = 0; /* Number of attributes */
int32 slen; /* String length */
char name[80]; /* Attribute name */
static const char indxstr[] = "INDXMAP:"; /* Index Mapping reserved
string */
static const char fvstr[] = "_FV_"; /* Flag Value reserved string */
static const char bsom[] = "_BLKSOM:";/* Block SOM Offset reserved string */
/* Set string buffer size to 0 */
/* --------------------------- */
*strbufsize = 0;
/* Get number of attributes within Attribute Vgroup */
/* ------------------------------------------------ */
nObjects = Vntagrefs(attrVgrpID);
/* If attributes exist ... */
/* ----------------------- */
if (nObjects > 0)
{
/* Get tags and references of attribute Vdatas */
/* ------------------------------------------- */
tags = (int32 *) malloc(sizeof(int32) * nObjects);
if(tags == NULL)
{
HEpush(DFE_NOSPACE,"EHattrcat", __FILE__, __LINE__);
return(-1);
}
refs = (int32 *) malloc(sizeof(int32) * nObjects);
if(refs == NULL)
{
HEpush(DFE_NOSPACE,"EHattrcat", __FILE__, __LINE__);
free(tags);
return(-1);
}
Vgettagrefs(attrVgrpID, tags, refs, nObjects);
/* Get attribute vdata IDs and names */
/* --------------------------------- */
for (i = 0; i < nObjects; i++)
{
vdataID = VSattach(fid, *(refs + i), "r");
VSgetname(vdataID, name);
/*
* Don't return fill value, index mapping & block SOM attributes
*/
if (memcmp(name, indxstr, strlen(indxstr)) != 0 &&
memcmp(name, fvstr, strlen(fvstr)) != 0 &&
memcmp(name, bsom, strlen(bsom)) != 0)
{
/* Increment attribute counter and add name to list */
/* ------------------------------------------------ */
nattr++;
if (attrnames != NULL)
{
if (nattr == 1)
{
strcpy(attrnames, name);
} else
{
strcat(attrnames, ",");
strcat(attrnames, name);
}
}
/* Increment attribute names string length */
/* --------------------------------------- */
slen = (nattr == 1) ? (int)strlen(name) : (int)strlen(name) + 1;
*strbufsize += slen;
}
VSdetach(vdataID);
}
free(tags);
free(refs);
}
return (nattr);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHinquire |
| |
| DESCRIPTION: Returns number and names of HDF-EOS structures in file |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| nobj int32 Number of HDF-EOS structures in file |
| |
| INPUTS: |
| filename char HDF-EOS filename |
| type char Object Type ("SWATH/GRID/POINT") |
| |
| OUTPUTS: |
| objectlist char List of object names (comma-separated) |
| strbufsize int32 Length of objectlist |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHinquire(const char *filename, const char *type, char *objectlist, int32 * strbufsize)
{
int32 HDFfid; /* HDF file ID */
int32 vgRef; /* Vgroup reference number */
int32 vGrpID; /* Vgroup ID */
int32 nobj = 0; /* Number of HDFEOS objects in file */
int32 slen; /* String length */
char name[512]; /* Object name */
char class[80]; /* Object class */
/* Open HDFEOS file of read-only access */
/* ------------------------------------ */
HDFfid = Hopen(filename, DFACC_READ, 0);
/* Start Vgroup Interface */
/* ---------------------- */
Vstart(HDFfid);
/* If string buffer size is requested then zero out counter */
/* -------------------------------------------------------- */
if (strbufsize != NULL)
{
*strbufsize = 0;
}
/* Search for objects from beginning of HDF file */
/* -------------------------------------------- */
vgRef = -1;
/* Loop through all objects */
/* ------------------------ */
while (1)
{
/* Get Vgroup reference number */
/* --------------------------- */
vgRef = Vgetid(HDFfid, vgRef);
/* If no more then exist search loop */
/* --------------------------------- */
if (vgRef == -1)
{
break;
}
/* Get Vgroup ID, name, and class */
/* ------------------------------ */
vGrpID = Vattach(HDFfid, vgRef, "r");
Vgetname(vGrpID, name);
Vgetclass(vGrpID, class);
/* If object of desired type (SWATH, POINT, GRID) ... */
/* -------------------------------------------------- */
if (strcmp(class, type) == 0)
{
/* Increment counter */
/* ----------------- */
nobj++;
/* If object list requested add name to list */
/* ----------------------------------------- */
if (objectlist != NULL)
{
if (nobj == 1)
{
strcpy(objectlist, name);
} else
{
strcat(objectlist, ",");
strcat(objectlist, name);
}
}
/* Compute string length of object entry */
/* ------------------------------------- */
slen = (nobj == 1) ? (int)strlen(name) : (int)strlen(name) + 1;
/* If string buffer size is requested then increment buffer size */
/* ------------------------------------------------------------- */
if (strbufsize != NULL)
{
*strbufsize += slen;
}
}
/* Detach Vgroup */
/* ------------- */
Vdetach(vGrpID);
}
/* "Close" Vgroup interface and HDFEOS file */
/* ---------------------------------------- */
Vend(HDFfid);
Hclose(HDFfid);
return (nobj);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHclose |
| |
| DESCRIPTION: Closes HDF-EOS file |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| fid int32 HDF-EOS File ID |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Jun 96 Joel Gales Original Programmer |
| Jul 96 Joel Gales Add file id offset EHIDOFFSET |
| Aug 96 Joel Gales Add HE error report if file id out of bounds |
| Nov 96 Joel Gales Add EHXacsTable array to "garbage collection" |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
intn
EHclose(int32 fid)
{
intn status = 0; /* routine return status variable */
int32 HDFfid; /* HDF file ID */
int32 sdInterfaceID; /* HDF SDS interface ID */
int32 fid0; /* HDF EOS file id - offset */
/* Check for valid HDFEOS file ID range */
/* ------------------------------------ */
if (fid >= EHIDOFFSET && fid < EHXmaxfilecount + EHIDOFFSET)
{
/* Compute "reduced" file ID */
/* ------------------------- */
fid0 = fid % EHIDOFFSET;
/* Get HDF file ID and SD interface ID */
/* ----------------------------------- */
HDFfid = EHXfidTable[fid0];
sdInterfaceID = EHXsdTable[fid0];
/* "Close" SD interface, Vgroup interface, and HDF file */
/* ---------------------------------------------------- */
status = SDend(sdInterfaceID);
status = Vend(HDFfid);
status = Hclose(HDFfid);
/* Clear out external array entries */
/* -------------------------------- */
EHXtypeTable[fid0] = 0;
EHXacsTable[fid0] = 0;
EHXfidTable[fid0] = 0;
EHXsdTable[fid0] = 0;
if (EHget_numfiles() == 0)
{
free(EHXtypeTable);
EHXtypeTable = NULL;
free(EHXacsTable);
EHXacsTable = NULL;
free(EHXfidTable);
EHXfidTable = NULL;
free(EHXsdTable);
EHXsdTable = NULL;
EHXmaxfilecount = 0;
}
} else
{
status = -1;
HEpush(DFE_RANGE, "EHclose", __FILE__, __LINE__);
HEreport("Invalid file id: %d. ID must be >= %d and < %d.\n",
fid, EHIDOFFSET, EHXmaxfilecount + EHIDOFFSET);
}
return (status);
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHnumstr |
| |
| DESCRIPTION: Returns numerical type code of the given string |
| representation. |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| numbertype int32 numerical type code |
| |
| INPUTS: |
| strcode const char string representation of the type code |
| |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ====== ============ ================================================= |
| Nov 07 Andrey Kiselev Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
int32
EHnumstr(const char *strcode)
{
if (strcmp(strcode, "DFNT_UCHAR8") == 0)
return DFNT_UCHAR8;
else if (strcmp(strcode, "DFNT_CHAR8") == 0)
return DFNT_CHAR8;
else if (strcmp(strcode, "DFNT_FLOAT32") == 0)
return DFNT_FLOAT32;
else if (strcmp(strcode, "DFNT_FLOAT64") == 0)
return DFNT_FLOAT64;
else if (strcmp(strcode, "DFNT_INT8") == 0)
return DFNT_INT8;
else if (strcmp(strcode, "DFNT_UINT8") == 0)
return DFNT_UINT8;
else if (strcmp(strcode, "DFNT_INT16") == 0)
return DFNT_INT16;
else if (strcmp(strcode, "DFNT_UINT16") == 0)
return DFNT_UINT16;
else if (strcmp(strcode, "DFNT_INT32") == 0)
return DFNT_INT32;
else if (strcmp(strcode, "DFNT_UINT32") == 0)
return DFNT_UINT32;
else
return DFNT_NONE;
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHreset_maxopenfiles |
| |
| DESCRIPTION: Change the allowed number of opened HDFEOS files. |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| numbertype intn The current maximum number of opened |
| files allowed, or -1, if unable |
| to reset it. |
| |
| INPUTS: |
| strcode intn Requested number of opened files. |
| |
| |
| OUTPUTS: |
| None |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ========== ============ ============================================== |
| 2013.04.03 Andrey Kiselev Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
static intn
EHreset_maxopenfiles(intn req_max)
{
intn ret_value;
if (req_max <= EHXmaxfilecount)
return EHXmaxfilecount;
/* Falback to built-in NEOSHDF constant if */
/* SDreset_maxopenfiles() interface is not available */
/* ------------------------------------------------- */
#ifdef HDF4_HAS_MAXOPENFILES
ret_value = SDreset_maxopenfiles(req_max);
#else
ret_value = NEOSHDF;
#endif /* HDF4_HAS_MAXOPENFILES */
if (ret_value > 0)
{
EHXtypeTable = realloc(EHXtypeTable, ret_value * sizeof(*EHXtypeTable));
memset(EHXtypeTable + EHXmaxfilecount, 0,
(ret_value - EHXmaxfilecount) * sizeof(*EHXtypeTable));
EHXacsTable = realloc(EHXacsTable, ret_value * sizeof(*EHXacsTable));
memset(EHXacsTable + EHXmaxfilecount, 0,
(ret_value - EHXmaxfilecount) * sizeof(*EHXacsTable));
EHXfidTable = realloc(EHXfidTable, ret_value * sizeof(*EHXfidTable));
memset(EHXfidTable + EHXmaxfilecount, 0,
(ret_value - EHXmaxfilecount) * sizeof(*EHXfidTable));
EHXsdTable = realloc(EHXsdTable, ret_value * sizeof(*EHXsdTable));
memset(EHXsdTable + EHXmaxfilecount, 0,
(ret_value - EHXmaxfilecount) * sizeof(*EHXsdTable));
EHXmaxfilecount = ret_value;
}
return ret_value;
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHget_maxopenfiles |
| |
| DESCRIPTION: Request the allowed number of opened HDFEOS files and maximum |
| number of opened files allowed in the system. |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| status intn return status (0) SUCCEED, (-1) FAIL |
| |
| INPUTS: |
| None |
| |
| |
| OUTPUTS: |
| curr_max intn Current number of open files allowed. |
| sys_limit intn Maximum number of open files allowed |
| in the system. |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ========== ============ ============================================== |
| 2013.04.03 Andrey Kiselev Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
static intn
EHget_maxopenfiles(intn *curr_max,
intn *sys_limit)
{
intn ret_value = 0;
#ifdef HDF4_HAS_MAXOPENFILES
ret_value = SDget_maxopenfiles(curr_max, sys_limit);
#else
*sys_limit = NEOSHDF;
#endif /* HDF4_HAS_MAXOPENFILES */
*curr_max = EHXmaxfilecount;
return ret_value;
}
/*----------------------------------------------------------------------------|
| BEGIN_PROLOG |
| |
| FUNCTION: EHget_numfiles |
| |
| DESCRIPTION: Request the number of HDFEOS files currently opened. |
| |
| |
| Return Value Type Units Description |
| ============ ====== ========= ===================================== |
| nfileopen intn Number of HDFEOS files already opened. |
| |
| INPUTS: |
| None |
| |
| |
| OUTPUTS: |
| None |
| in the system. |
| |
| NOTES: |
| |
| |
| Date Programmer Description |
| ========== ============ ============================================== |
| 2013.04.03 Andrey Kiselev Original Programmer |
| |
| END_PROLOG |
-----------------------------------------------------------------------------*/
static intn
EHget_numfiles()
{
intn i; /* Loop index */
intn nfileopen = 0; /* # of HDF files open */
if (EHXtypeTable)
{
/* Determine number of files currently opened */
/* ------------------------------------------ */
for (i = 0; i < EHXmaxfilecount; i++)
{
nfileopen += EHXtypeTable[i];
}
}
return nfileopen;
}
|