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 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267
|
/* This file, cfileio.c, contains the low-level file access routines. */
/* The FITSIO software was written by William Pence at the High Energy */
/* Astrophysic Science Archive Research Center (HEASARC) at the NASA */
/* Goddard Space Flight Center. */
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <errno.h>
#include <stddef.h> /* apparently needed to define size_t */
#include "fitsio2.h"
#include "group.h"
#define MAX_PREFIX_LEN 20 /* max length of file type prefix (e.g. 'http://') */
#define MAX_DRIVERS 24 /* max number of file I/O drivers */
typedef struct /* structure containing pointers to I/O driver functions */
{ char prefix[MAX_PREFIX_LEN];
int (*init)(void);
int (*shutdown)(void);
int (*setoptions)(int option);
int (*getoptions)(int *options);
int (*getversion)(int *version);
int (*checkfile)(char *urltype, char *infile, char *outfile);
int (*open)(char *filename, int rwmode, int *driverhandle);
int (*create)(char *filename, int *drivehandle);
int (*truncate)(int drivehandle, LONGLONG size);
int (*close)(int drivehandle);
int (*remove)(char *filename);
int (*size)(int drivehandle, LONGLONG *size);
int (*flush)(int drivehandle);
int (*seek)(int drivehandle, LONGLONG offset);
int (*read)(int drivehandle, void *buffer, long nbytes);
int (*write)(int drivehandle, void *buffer, long nbytes);
} fitsdriver;
fitsdriver driverTable[MAX_DRIVERS]; /* allocate driver tables */
FITSfile *FptrTable[NMAXFILES]; /* this table of Fptr pointers is */
/* used by fits_already_open */
int need_to_initialize = 1; /* true if CFITSIO has not been initialized */
int no_of_drivers = 0; /* number of currently defined I/O drivers */
static int pixel_filter_helper(fitsfile **fptr, char *outfile,
char *expr, int *status);
static int find_quote(char **string);
static int find_doublequote(char **string);
static int find_paren(char **string);
static int find_bracket(char **string);
static int find_curlybracket(char **string);
int comma2semicolon(char *string);
#ifdef _REENTRANT
pthread_mutex_t Fitsio_InitLock = PTHREAD_MUTEX_INITIALIZER;
#endif
/*--------------------------------------------------------------------------*/
int fitsio_init_lock(void)
{
static int need_to_init = 1;
int status;
#ifdef _REENTRANT
pthread_mutexattr_t mutex_init;
FFLOCK1(Fitsio_InitLock);
if (need_to_init) {
/* Init the main fitsio lock here since we need a a recursive lock */
status = pthread_mutexattr_init(&mutex_init);
if (status) {
ffpmsg("pthread_mutexattr_init failed (fitsio_init_lock)");
return(status);
}
#ifdef linux
status = pthread_mutexattr_settype(&mutex_init,
PTHREAD_MUTEX_RECURSIVE_NP);
#else
status = pthread_mutexattr_settype(&mutex_init,
PTHREAD_MUTEX_RECURSIVE);
#endif
if (status) {
ffpmsg("pthread_mutexattr_settu[e failed (fitsio_init_lock)");
return(status);
}
status = pthread_mutex_init(&Fitsio_Lock,&mutex_init);
if (status) {
ffpmsg("pthread_mutex_init failed (fitsio_init_lock)");
return(status);
}
need_to_init = 0;
}
FFUNLOCK1(Fitsio_InitLock);
#endif
return(0);
}
/*--------------------------------------------------------------------------*/
int ffomem(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
void **buffptr, /* I - address of memory pointer */
size_t *buffsize, /* I - size of buffer, in bytes */
size_t deltasize, /* I - increment for future realloc's */
void *(*mem_realloc)(void *p, size_t newsize), /* function */
int *status) /* IO - error status */
/*
Open an existing FITS file in core memory. This is a specialized version
of ffopen.
*/
{
int ii, driver, handle, hdutyp, slen, movetotype, extvers, extnum;
char extname[FLEN_VALUE];
LONGLONG filesize;
char urltype[MAX_PREFIX_LEN], infile[FLEN_FILENAME], outfile[FLEN_FILENAME];
char extspec[FLEN_FILENAME], rowfilter[FLEN_FILENAME];
char binspec[FLEN_FILENAME], colspec[FLEN_FILENAME];
char imagecolname[FLEN_VALUE], rowexpress[FLEN_FILENAME];
char *url, errmsg[FLEN_ERRMSG];
char *hdtype[3] = {"IMAGE", "TABLE", "BINTABLE"};
if (*status > 0)
return(*status);
*fptr = 0; /* initialize null file pointer */
if (need_to_initialize) /* this is called only once */
{
*status = fits_init_cfitsio();
if (*status > 0)
return(*status);
}
url = (char *) name;
while (*url == ' ') /* ignore leading spaces in the file spec */
url++;
/* parse the input file specification */
fits_parse_input_url(url, urltype, infile, outfile, extspec,
rowfilter, binspec, colspec, status);
strcpy(urltype, "memkeep://"); /* URL type for pre-existing memory file */
*status = urltype2driver(urltype, &driver);
if (*status > 0)
{
ffpmsg("could not find driver for pre-existing memory file: (ffomem)");
return(*status);
}
/* call driver routine to open the memory file */
FFLOCK; /* lock this while searching for vacant handle */
*status = mem_openmem( buffptr, buffsize,deltasize,
mem_realloc, &handle);
FFUNLOCK;
if (*status > 0)
{
ffpmsg("failed to open pre-existing memory file: (ffomem)");
return(*status);
}
/* get initial file size */
*status = (*driverTable[driver].size)(handle, &filesize);
if (*status > 0)
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed get the size of the memory file: (ffomem)");
return(*status);
}
/* allocate fitsfile structure and initialize = 0 */
*fptr = (fitsfile *) calloc(1, sizeof(fitsfile));
if (!(*fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffomem)");
ffpmsg(url);
return(*status = MEMORY_ALLOCATION);
}
/* allocate FITSfile structure and initialize = 0 */
(*fptr)->Fptr = (FITSfile *) calloc(1, sizeof(FITSfile));
if (!((*fptr)->Fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffomem)");
ffpmsg(url);
free(*fptr);
*fptr = 0;
return(*status = MEMORY_ALLOCATION);
}
slen = strlen(url) + 1;
slen = maxvalue(slen, 32); /* reserve at least 32 chars */
((*fptr)->Fptr)->filename = (char *) malloc(slen); /* mem for file name */
if ( !(((*fptr)->Fptr)->filename) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for filename: (ffomem)");
ffpmsg(url);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for headstart array */
((*fptr)->Fptr)->headstart = (LONGLONG *) calloc(1001, sizeof(LONGLONG));
if ( !(((*fptr)->Fptr)->headstart) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for headstart array: (ffomem)");
ffpmsg(url);
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for file I/O buffers */
((*fptr)->Fptr)->iobuffer = (char *) calloc(NIOBUF, IOBUFLEN);
if ( !(((*fptr)->Fptr)->iobuffer) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for iobuffer array: (ffomem)");
ffpmsg(url);
free( ((*fptr)->Fptr)->headstart); /* free memory for headstart array */
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* initialize the ageindex array (relative age of the I/O buffers) */
/* and initialize the bufrecnum array as being empty */
for (ii = 0; ii < NIOBUF; ii++) {
((*fptr)->Fptr)->ageindex[ii] = ii;
((*fptr)->Fptr)->bufrecnum[ii] = -1;
}
/* store the parameters describing the file */
((*fptr)->Fptr)->MAXHDU = 1000; /* initial size of headstart */
((*fptr)->Fptr)->filehandle = handle; /* file handle */
((*fptr)->Fptr)->driver = driver; /* driver number */
strcpy(((*fptr)->Fptr)->filename, url); /* full input filename */
((*fptr)->Fptr)->filesize = filesize; /* physical file size */
((*fptr)->Fptr)->logfilesize = filesize; /* logical file size */
((*fptr)->Fptr)->writemode = mode; /* read-write mode */
((*fptr)->Fptr)->datastart = DATA_UNDEFINED; /* unknown start of data */
((*fptr)->Fptr)->curbuf = -1; /* undefined current IO buffer */
((*fptr)->Fptr)->open_count = 1; /* structure is currently used once */
((*fptr)->Fptr)->validcode = VALIDSTRUC; /* flag denoting valid structure */
ffldrc(*fptr, 0, REPORT_EOF, status); /* load first record */
fits_store_Fptr( (*fptr)->Fptr, status); /* store Fptr address */
if (ffrhdu(*fptr, &hdutyp, status) > 0) /* determine HDU structure */
{
ffpmsg(
"ffomem could not interpret primary array header of file: (ffomem)");
ffpmsg(url);
if (*status == UNKNOWN_REC)
ffpmsg("This does not look like a FITS file.");
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
}
/* ---------------------------------------------------------- */
/* move to desired extension, if specified as part of the URL */
/* ---------------------------------------------------------- */
imagecolname[0] = '\0';
rowexpress[0] = '\0';
if (*extspec)
{
/* parse the extension specifier into individual parameters */
ffexts(extspec, &extnum,
extname, &extvers, &movetotype, imagecolname, rowexpress, status);
if (*status > 0)
return(*status);
if (extnum)
{
ffmahd(*fptr, extnum + 1, &hdutyp, status);
}
else if (*extname) /* move to named extension, if specified */
{
ffmnhd(*fptr, movetotype, extname, extvers, status);
}
if (*status > 0)
{
ffpmsg("ffomem could not move to the specified extension:");
if (extnum > 0)
{
sprintf(errmsg,
" extension number %d doesn't exist or couldn't be opened.",extnum);
ffpmsg(errmsg);
}
else
{
sprintf(errmsg,
" extension with EXTNAME = %s,", extname);
ffpmsg(errmsg);
if (extvers)
{
sprintf(errmsg,
" and with EXTVERS = %d,", extvers);
ffpmsg(errmsg);
}
if (movetotype != ANY_HDU)
{
sprintf(errmsg,
" and with XTENSION = %s,", hdtype[movetotype]);
ffpmsg(errmsg);
}
ffpmsg(" doesn't exist or couldn't be opened.");
}
return(*status);
}
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffdkopn(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file on magnetic disk with either readonly or
read/write access. The routine does not support CFITSIO's extended
filename syntax and simply uses the entire input 'name' string as
the name of the file.
*/
{
if (*status > 0)
return(*status);
*status = OPEN_DISK_FILE;
ffopen(fptr, name, mode, status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffdopn(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file with either readonly or read/write access. and
move to the first HDU that contains 'interesting' data, if the primary
array contains a null image (i.e., NAXIS = 0).
*/
{
if (*status > 0)
return(*status);
*status = SKIP_NULL_PRIMARY;
ffopen(fptr, name, mode, status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int fftopn(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file with either readonly or read/write access. and
move to the first HDU that contains 'interesting' table (not an image).
*/
{
int hdutype;
if (*status > 0)
return(*status);
*status = SKIP_IMAGE;
ffopen(fptr, name, mode, status);
if (ffghdt(*fptr, &hdutype, status) <= 0) {
if (hdutype == IMAGE_HDU)
*status = NOT_TABLE;
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffiopn(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file with either readonly or read/write access. and
move to the first HDU that contains 'interesting' image (not an table).
*/
{
int hdutype;
if (*status > 0)
return(*status);
*status = SKIP_TABLE;
ffopen(fptr, name, mode, status);
if (ffghdt(*fptr, &hdutype, status) <= 0) {
if (hdutype != IMAGE_HDU)
*status = NOT_IMAGE;
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffopentest(int soname, /* I - CFITSIO shared library version */
/* application program (fitsio.h file) */
fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file with either readonly or read/write access.
First test that the SONAME of fitsio.h used to build the CFITSIO library
is the same as was used in compiling the application program that
links to the library.
*/
{
if (soname != CFITSIO_SONAME)
{
printf("\nERROR: Mismatch in the CFITSIO_SONAME value in the fitsio.h include file\n");
printf("that was used to build the CFITSIO library, and the value in the include file\n");
printf("that was used when compiling the application program:\n");
printf(" Version used to build the CFITSIO library = %d\n",CFITSIO_SONAME);
printf(" Version included by the application program = %d\n",soname);
printf("\nFix this by recompiling and then relinking this application program \n");
printf("with the CFITSIO library.\n");
*status = FILE_NOT_OPENED;
return(*status);
}
/* now call the normal file open routine */
ffopen(fptr, name, mode, status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffopen(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - full name of file to open */
int mode, /* I - 0 = open readonly; 1 = read/write */
int *status) /* IO - error status */
/*
Open an existing FITS file with either readonly or read/write access.
*/
{
fitsfile *newptr;
int ii, driver, hdutyp, hdunum, slen, writecopy, isopen;
LONGLONG filesize;
long rownum, nrows, goodrows;
int extnum, extvers, handle, movetotype, tstatus = 0, only_one = 0;
char urltype[MAX_PREFIX_LEN], infile[FLEN_FILENAME], outfile[FLEN_FILENAME];
char origurltype[MAX_PREFIX_LEN], extspec[FLEN_FILENAME];
char extname[FLEN_VALUE], rowfilter[FLEN_FILENAME], tblname[FLEN_VALUE];
char imagecolname[FLEN_VALUE], rowexpress[FLEN_FILENAME];
char binspec[FLEN_FILENAME], colspec[FLEN_FILENAME], pixfilter[FLEN_FILENAME];
char histfilename[FLEN_FILENAME];
char filtfilename[FLEN_FILENAME], compspec[FLEN_FILENAME];
char wtcol[FLEN_VALUE];
char minname[4][FLEN_VALUE], maxname[4][FLEN_VALUE];
char binname[4][FLEN_VALUE];
char *url;
double minin[4], maxin[4], binsizein[4], weight;
int imagetype, naxis = 1, haxis, recip;
int skip_null = 0, skip_image = 0, skip_table = 0, open_disk_file = 0;
char colname[4][FLEN_VALUE];
char errmsg[FLEN_ERRMSG];
char *hdtype[3] = {"IMAGE", "TABLE", "BINTABLE"};
char *rowselect = 0;
if (*status > 0)
return(*status);
if (*status == SKIP_NULL_PRIMARY)
{
/* this special status value is used as a flag by ffdopn to tell */
/* ffopen to skip over a null primary array when opening the file. */
skip_null = 1;
*status = 0;
}
else if (*status == SKIP_IMAGE)
{
/* this special status value is used as a flag by fftopn to tell */
/* ffopen to move to 1st significant table when opening the file. */
skip_image = 1;
*status = 0;
}
else if (*status == SKIP_TABLE)
{
/* this special status value is used as a flag by ffiopn to tell */
/* ffopen to move to 1st significant image when opening the file. */
skip_table = 1;
*status = 0;
}
else if (*status == OPEN_DISK_FILE)
{
/* this special status value is used as a flag by ffdkopn to tell */
/* ffopen to not interpret the input filename using CFITSIO's */
/* extended filename syntax, and simply open the specified disk file */
open_disk_file = 1;
*status = 0;
}
*fptr = 0; /* initialize null file pointer */
writecopy = 0; /* have we made a write-able copy of the input file? */
if (need_to_initialize) { /* this is called only once */
*status = fits_init_cfitsio();
}
if (*status > 0)
return(*status);
url = (char *) name;
while (*url == ' ') /* ignore leading spaces in the filename */
url++;
if (*url == '\0')
{
ffpmsg("Name of file to open is blank. (ffopen)");
return(*status = FILE_NOT_OPENED);
}
if (open_disk_file)
{
/* treat the input URL literally as the name of the file to open */
/* and don't try to parse the URL using the extended filename syntax */
if (strlen(url) > FLEN_FILENAME - 1) {
ffpmsg("Name of file to open is too long. (ffopen)");
return(*status = FILE_NOT_OPENED);
}
strcpy(infile,url);
strcpy(urltype, "file://");
outfile[0] = '\0';
extspec[0] = '\0';
binspec[0] = '\0';
colspec[0] = '\0';
rowfilter[0] = '\0';
pixfilter[0] = '\0';
compspec[0] = '\0';
}
else
{
/* parse the input file specification */
/* NOTE: This routine tests that all the strings do not */
/* overflow the standard buffer sizes (FLEN_FILENAME, etc.) */
/* therefore in general we do not have to worry about buffer */
/* overflow of any of the returned strings. */
/* call the newer version of this parsing routine that supports 'compspec' */
ffifile2(url, urltype, infile, outfile, extspec,
rowfilter, binspec, colspec, pixfilter, compspec, status);
}
if (*status > 0)
{
ffpmsg("could not parse the input filename: (ffopen)");
ffpmsg(url);
return(*status);
}
imagecolname[0] = '\0';
rowexpress[0] = '\0';
if (*extspec)
{
slen = strlen(extspec);
if (extspec[slen - 1] == '#') { /* special symbol to mean only copy this extension */
extspec[slen - 1] = '\0';
only_one = 1;
}
/* parse the extension specifier into individual parameters */
ffexts(extspec, &extnum,
extname, &extvers, &movetotype, imagecolname, rowexpress, status);
if (*status > 0)
return(*status);
}
/*-------------------------------------------------------------------*/
/* special cases: */
/*-------------------------------------------------------------------*/
histfilename[0] = '\0';
filtfilename[0] = '\0';
if (*outfile && (*binspec || *imagecolname || *pixfilter))
{
/* if binspec or imagecolumn are specified, then the */
/* output file name is intended for the final image, */
/* and not a copy of the input file. */
strcpy(histfilename, outfile);
outfile[0] = '\0';
}
else if (*outfile && (*rowfilter || *colspec))
{
/* if rowfilter or colspece are specified, then the */
/* output file name is intended for the filtered file */
/* and not a copy of the input file. */
strcpy(filtfilename, outfile);
outfile[0] = '\0';
}
/*-------------------------------------------------------------------*/
/* check if this same file is already open, and if so, attach to it */
/*-------------------------------------------------------------------*/
FFLOCK;
if (fits_already_open(fptr, url, urltype, infile, extspec, rowfilter,
binspec, colspec, mode, &isopen, status) > 0)
{
FFUNLOCK;
return(*status);
}
FFUNLOCK;
if (isopen) {
goto move2hdu;
}
/* get the driver number corresponding to this urltype */
*status = urltype2driver(urltype, &driver);
if (*status > 0)
{
ffpmsg("could not find driver for this file: (ffopen)");
ffpmsg(urltype);
ffpmsg(url);
return(*status);
}
/*-------------------------------------------------------------------
deal with all those messy special cases which may require that
a different driver be used:
- is disk file compressed?
- are ftp:, gsiftp:, or http: files compressed?
- has user requested that a local copy be made of
the ftp or http file?
-------------------------------------------------------------------*/
if (driverTable[driver].checkfile)
{
strcpy(origurltype,urltype); /* Save the urltype */
/* 'checkfile' may modify the urltype, infile and outfile strings */
*status = (*driverTable[driver].checkfile)(urltype, infile, outfile);
if (*status)
{
ffpmsg("checkfile failed for this file: (ffopen)");
ffpmsg(url);
return(*status);
}
if (strcmp(origurltype, urltype)) /* did driver changed on us? */
{
*status = urltype2driver(urltype, &driver);
if (*status > 0)
{
ffpmsg("could not change driver for this file: (ffopen)");
ffpmsg(url);
ffpmsg(urltype);
return(*status);
}
}
}
/* call appropriate driver to open the file */
if (driverTable[driver].open)
{
FFLOCK; /* lock this while searching for vacant handle */
*status = (*driverTable[driver].open)(infile, mode, &handle);
FFUNLOCK;
if (*status > 0)
{
ffpmsg("failed to find or open the following file: (ffopen)");
ffpmsg(url);
return(*status);
}
}
else
{
ffpmsg("cannot open an existing file of this type: (ffopen)");
ffpmsg(url);
return(*status = FILE_NOT_OPENED);
}
/* get initial file size */
*status = (*driverTable[driver].size)(handle, &filesize);
if (*status > 0)
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed get the size of the following file: (ffopen)");
ffpmsg(url);
return(*status);
}
/* allocate fitsfile structure and initialize = 0 */
*fptr = (fitsfile *) calloc(1, sizeof(fitsfile));
if (!(*fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffopen)");
ffpmsg(url);
return(*status = MEMORY_ALLOCATION);
}
/* allocate FITSfile structure and initialize = 0 */
(*fptr)->Fptr = (FITSfile *) calloc(1, sizeof(FITSfile));
if (!((*fptr)->Fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffopen)");
ffpmsg(url);
free(*fptr);
*fptr = 0;
return(*status = MEMORY_ALLOCATION);
}
slen = strlen(url) + 1;
slen = maxvalue(slen, 32); /* reserve at least 32 chars */
((*fptr)->Fptr)->filename = (char *) malloc(slen); /* mem for file name */
if ( !(((*fptr)->Fptr)->filename) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for filename: (ffopen)");
ffpmsg(url);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for headstart array */
((*fptr)->Fptr)->headstart = (LONGLONG *) calloc(1001, sizeof(LONGLONG));
if ( !(((*fptr)->Fptr)->headstart) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for headstart array: (ffopen)");
ffpmsg(url);
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for file I/O buffers */
((*fptr)->Fptr)->iobuffer = (char *) calloc(NIOBUF, IOBUFLEN);
if ( !(((*fptr)->Fptr)->iobuffer) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for iobuffer array: (ffopen)");
ffpmsg(url);
free( ((*fptr)->Fptr)->headstart); /* free memory for headstart array */
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* initialize the ageindex array (relative age of the I/O buffers) */
/* and initialize the bufrecnum array as being empty */
for (ii = 0; ii < NIOBUF; ii++) {
((*fptr)->Fptr)->ageindex[ii] = ii;
((*fptr)->Fptr)->bufrecnum[ii] = -1;
}
/* store the parameters describing the file */
((*fptr)->Fptr)->MAXHDU = 1000; /* initial size of headstart */
((*fptr)->Fptr)->filehandle = handle; /* file handle */
((*fptr)->Fptr)->driver = driver; /* driver number */
strcpy(((*fptr)->Fptr)->filename, url); /* full input filename */
((*fptr)->Fptr)->filesize = filesize; /* physical file size */
((*fptr)->Fptr)->logfilesize = filesize; /* logical file size */
((*fptr)->Fptr)->writemode = mode; /* read-write mode */
((*fptr)->Fptr)->datastart = DATA_UNDEFINED; /* unknown start of data */
((*fptr)->Fptr)->curbuf = -1; /* undefined current IO buffer */
((*fptr)->Fptr)->open_count = 1; /* structure is currently used once */
((*fptr)->Fptr)->validcode = VALIDSTRUC; /* flag denoting valid structure */
((*fptr)->Fptr)->only_one = only_one; /* flag denoting only copy single extension */
ffldrc(*fptr, 0, REPORT_EOF, status); /* load first record */
fits_store_Fptr( (*fptr)->Fptr, status); /* store Fptr address */
if (ffrhdu(*fptr, &hdutyp, status) > 0) /* determine HDU structure */
{
ffpmsg(
"ffopen could not interpret primary array header of file: ");
ffpmsg(url);
if (*status == UNKNOWN_REC)
ffpmsg("This does not look like a FITS file.");
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
/* ------------------------------------------------------------- */
/* At this point, the input file has been opened. If outfile was */
/* specified, then we have opened a copy of the file, not the */
/* original file so it is safe to modify it if necessary */
/* ------------------------------------------------------------- */
if (*outfile)
writecopy = 1;
move2hdu:
/* ---------------------------------------------------------- */
/* move to desired extension, if specified as part of the URL */
/* ---------------------------------------------------------- */
if (*extspec)
{
if (extnum) /* extension number was specified */
{
ffmahd(*fptr, extnum + 1, &hdutyp, status);
}
else if (*extname) /* move to named extension, if specified */
{
ffmnhd(*fptr, movetotype, extname, extvers, status);
}
if (*status > 0) /* clean up after error */
{
ffpmsg("ffopen could not move to the specified extension:");
if (extnum > 0)
{
sprintf(errmsg,
" extension number %d doesn't exist or couldn't be opened.",extnum);
ffpmsg(errmsg);
}
else
{
sprintf(errmsg,
" extension with EXTNAME = %s,", extname);
ffpmsg(errmsg);
if (extvers)
{
sprintf(errmsg,
" and with EXTVERS = %d,", extvers);
ffpmsg(errmsg);
}
if (movetotype != ANY_HDU)
{
sprintf(errmsg,
" and with XTENSION = %s,", hdtype[movetotype]);
ffpmsg(errmsg);
}
ffpmsg(" doesn't exist or couldn't be opened.");
}
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
}
else if (skip_null || skip_image || skip_table ||
(*imagecolname || *colspec || *rowfilter || *binspec))
{
/* ------------------------------------------------------------------
If no explicit extension specifier is given as part of the file
name, and, if a) skip_null is true (set if ffopen is called by
ffdopn) or b) skip_image or skip_table is true (set if ffopen is
called by fftopn or ffdopn) or c) other file filters are
specified, then CFITSIO will attempt to move to the first
'interesting' HDU after opening an existing FITS file (or to
first interesting table HDU if skip_image is true);
An 'interesting' HDU is defined to be either an image with NAXIS
> 0 (i.e., not a null array) or a table which has an EXTNAME
value which does not contain any of the following strings:
'GTI' - Good Time Interval extension
'OBSTABLE' - used in Beppo SAX data files
The main purpose for this is to allow CFITSIO to skip over a null
primary and other non-interesting HDUs when opening an existing
file, and move directly to the first extension that contains
significant data.
------------------------------------------------------------------ */
fits_get_hdu_num(*fptr, &hdunum);
if (hdunum == 1) {
fits_get_img_dim(*fptr, &naxis, status);
if (naxis == 0 || skip_image) /* skip primary array */
{
while(1)
{
/* see if the next HDU is 'interesting' */
if (fits_movrel_hdu(*fptr, 1, &hdutyp, status))
{
if (*status == END_OF_FILE)
*status = 0; /* reset expected error */
/* didn't find an interesting HDU so move back to beginning */
fits_movabs_hdu(*fptr, 1, &hdutyp, status);
break;
}
if (hdutyp == IMAGE_HDU && skip_image) {
continue; /* skip images */
} else if (hdutyp != IMAGE_HDU && skip_table) {
continue; /* skip tables */
} else if (hdutyp == IMAGE_HDU) {
fits_get_img_dim(*fptr, &naxis, status);
if (naxis > 0)
break; /* found a non-null image */
} else {
tstatus = 0;
tblname[0] = '\0';
fits_read_key(*fptr, TSTRING, "EXTNAME", tblname, NULL,&tstatus);
if ( (!strstr(tblname, "GTI") && !strstr(tblname, "gti")) &&
strncasecmp(tblname, "OBSTABLE", 8) )
break; /* found an interesting table */
}
} /* end while */
}
} /* end if (hdunum==1) */
}
if (*imagecolname)
{
/* ----------------------------------------------------------------- */
/* we need to open an image contained in a single table cell */
/* First, determine which row of the table to use. */
/* ----------------------------------------------------------------- */
if (isdigit((int) *rowexpress)) /* is the row specification a number? */
{
sscanf(rowexpress, "%ld", &rownum);
if (rownum < 1)
{
ffpmsg("illegal rownum for image cell:");
ffpmsg(rowexpress);
ffpmsg("Could not open the following image in a table cell:");
ffpmsg(extspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status = BAD_ROW_NUM);
}
}
else if (fits_find_first_row(*fptr, rowexpress, &rownum, status) > 0)
{
ffpmsg("Failed to find row matching this expression:");
ffpmsg(rowexpress);
ffpmsg("Could not open the following image in a table cell:");
ffpmsg(extspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
if (rownum == 0)
{
ffpmsg("row statisfying this expression doesn't exist::");
ffpmsg(rowexpress);
ffpmsg("Could not open the following image in a table cell:");
ffpmsg(extspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status = BAD_ROW_NUM);
}
/* determine the name of the new file to contain copy of the image */
if (*histfilename && !(*pixfilter) )
strcpy(outfile, histfilename); /* the original outfile name */
else
strcpy(outfile, "mem://_1"); /* create image file in memory */
/* Copy the image into new primary array and open it as the current */
/* fptr. This will close the table that contains the original image. */
/* create new empty file to hold copy of the image */
if (ffinit(&newptr, outfile, status) > 0)
{
ffpmsg("failed to create file for copy of image in table cell:");
ffpmsg(outfile);
return(*status);
}
if (fits_copy_cell2image(*fptr, newptr, imagecolname, rownum,
status) > 0)
{
ffpmsg("Failed to copy table cell to new primary array:");
ffpmsg(extspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
/* close the original file and set fptr to the new image */
ffclos(*fptr, status);
*fptr = newptr; /* reset the pointer to the new table */
writecopy = 1; /* we are now dealing with a copy of the original file */
/* add some HISTORY; fits_copy_image_cell also wrote HISTORY keywords */
/* disable this; leave it up to calling routine to write any HISTORY keywords
if (*extname)
sprintf(card,"HISTORY in HDU '%.16s' of file '%.36s'",extname,infile);
else
sprintf(card,"HISTORY in HDU %d of file '%.45s'", extnum, infile);
ffprec(*fptr, card, status);
*/
}
/* --------------------------------------------------------------------- */
/* edit columns (and/or keywords) in the table, if specified in the URL */
/* --------------------------------------------------------------------- */
if (*colspec)
{
/* the column specifier will modify the file, so make sure */
/* we are already dealing with a copy, or else make a new copy */
if (!writecopy) /* Is the current file already a copy? */
writecopy = fits_is_this_a_copy(urltype);
if (!writecopy)
{
if (*filtfilename && *outfile == '\0')
strcpy(outfile, filtfilename); /* the original outfile name */
else
strcpy(outfile, "mem://_1"); /* will create copy in memory */
writecopy = 1;
}
else
{
((*fptr)->Fptr)->writemode = READWRITE; /* we have write access */
outfile[0] = '\0';
}
if (ffedit_columns(fptr, outfile, colspec, status) > 0)
{
ffpmsg("editing columns in input table failed (ffopen)");
ffpmsg(" while trying to perform the following operation:");
ffpmsg(colspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
}
/* ------------------------------------------------------------------- */
/* select rows from the table, if specified in the URL */
/* or select a subimage (if this is an image HDU and not a table) */
/* ------------------------------------------------------------------- */
if (*rowfilter)
{
fits_get_hdu_type(*fptr, &hdutyp, status); /* get type of HDU */
if (hdutyp == IMAGE_HDU)
{
/* this is an image so 'rowfilter' is an image section specification */
if (*filtfilename && *outfile == '\0')
strcpy(outfile, filtfilename); /* the original outfile name */
else if (*outfile == '\0') /* output file name not already defined? */
strcpy(outfile, "mem://_2"); /* will create file in memory */
/* create new file containing the image section, plus a copy of */
/* any other HDUs that exist in the input file. This routine */
/* will close the original image file and return a pointer */
/* to the new file. */
if (fits_select_image_section(fptr, outfile, rowfilter, status) > 0)
{
ffpmsg("on-the-fly selection of image section failed (ffopen)");
ffpmsg(" while trying to use the following section filter:");
ffpmsg(rowfilter);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
}
else
{
/* this is a table HDU, so the rowfilter is really a row filter */
if (*binspec)
{
/* since we are going to make a histogram of the selected rows, */
/* it would be a waste of time and memory to make a whole copy of */
/* the selected rows. Instead, just construct an array of TRUE */
/* or FALSE values that indicate which rows are to be included */
/* in the histogram and pass that to the histogram generating */
/* routine */
fits_get_num_rows(*fptr, &nrows, status); /* get no. of rows */
rowselect = (char *) calloc(nrows, 1);
if (!rowselect)
{
ffpmsg(
"failed to allocate memory for selected columns array (ffopen)");
ffpmsg(" while trying to select rows with the following filter:");
ffpmsg(rowfilter);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
if (fits_find_rows(*fptr, rowfilter, 1L, nrows, &goodrows,
rowselect, status) > 0)
{
ffpmsg("selection of rows in input table failed (ffopen)");
ffpmsg(" while trying to select rows with the following filter:");
ffpmsg(rowfilter);
free(rowselect);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
}
else
{
if (!writecopy) /* Is the current file already a copy? */
writecopy = fits_is_this_a_copy(urltype);
if (!writecopy)
{
if (*filtfilename && *outfile == '\0')
strcpy(outfile, filtfilename); /* the original outfile name */
else if (*outfile == '\0') /* output filename not already defined? */
strcpy(outfile, "mem://_2"); /* will create copy in memory */
}
else
{
((*fptr)->Fptr)->writemode = READWRITE; /* we have write access */
outfile[0] = '\0';
}
/* select rows in the table. If a copy of the input file has */
/* not already been made, then this routine will make a copy */
/* and then close the input file, so that the modifications will */
/* only be made on the copy, not the original */
if (ffselect_table(fptr, outfile, rowfilter, status) > 0)
{
ffpmsg("on-the-fly selection of rows in input table failed (ffopen)");
ffpmsg(" while trying to select rows with the following filter:");
ffpmsg(rowfilter);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
/* write history records */
ffphis(*fptr,
"CFITSIO used the following filtering expression to create this table:",
status);
ffphis(*fptr, name, status);
} /* end of no binspec case */
} /* end of table HDU case */
} /* end of rowfilter exists case */
/* ------------------------------------------------------------------- */
/* make an image histogram by binning columns, if specified in the URL */
/* ------------------------------------------------------------------- */
if (*binspec)
{
if (*histfilename && !(*pixfilter) )
strcpy(outfile, histfilename); /* the original outfile name */
else
strcpy(outfile, "mem://_3"); /* create histogram in memory */
/* if not already copied the file */
/* parse the binning specifier into individual parameters */
ffbins(binspec, &imagetype, &haxis, colname,
minin, maxin, binsizein,
minname, maxname, binname,
&weight, wtcol, &recip, status);
/* Create the histogram primary array and open it as the current fptr */
/* This will close the table that was used to create the histogram. */
ffhist2(fptr, outfile, imagetype, haxis, colname, minin, maxin,
binsizein, minname, maxname, binname,
weight, wtcol, recip, rowselect, status);
if (rowselect)
free(rowselect);
if (*status > 0)
{
ffpmsg("on-the-fly histogramming of input table failed (ffopen)");
ffpmsg(" while trying to execute the following histogram specification:");
ffpmsg(binspec);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
/* write history records */
ffphis(*fptr,
"CFITSIO used the following expression to create this histogram:",
status);
ffphis(*fptr, name, status);
}
if (*pixfilter)
{
if (*histfilename)
strcpy(outfile, histfilename); /* the original outfile name */
else
strcpy(outfile, "mem://_4"); /* create in memory */
/* if not already copied the file */
/* Ensure type of HDU is consistent with pixel filtering */
fits_get_hdu_type(*fptr, &hdutyp, status); /* get type of HDU */
if (hdutyp == IMAGE_HDU) {
pixel_filter_helper(fptr, outfile, pixfilter, status);
if (*status > 0) {
ffpmsg("pixel filtering of input image failed (ffopen)");
ffpmsg(" while trying to execute the following:");
ffpmsg(pixfilter);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
return(*status);
}
/* write history records */
ffphis(*fptr,
"CFITSIO used the following expression to create this image:",
status);
ffphis(*fptr, name, status);
}
else
{
ffpmsg("cannot use pixel filter on non-IMAGE HDU");
ffpmsg(pixfilter);
ffclos(*fptr, status);
*fptr = 0; /* return null file pointer */
*status = NOT_IMAGE;
return(*status);
}
}
/* parse and save image compression specification, if given */
if (*compspec) {
ffparsecompspec(*fptr, compspec, status);
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffreopen(fitsfile *openfptr, /* I - FITS file pointer to open file */
fitsfile **newfptr, /* O - pointer to new re opened file */
int *status) /* IO - error status */
/*
Reopen an existing FITS file with either readonly or read/write access.
The reopened file shares the same FITSfile structure but may point to a
different HDU within the file.
*/
{
if (*status > 0)
return(*status);
/* check that the open file pointer is valid */
if (!openfptr)
return(*status = NULL_INPUT_PTR);
else if ((openfptr->Fptr)->validcode != VALIDSTRUC) /* check magic value */
return(*status = BAD_FILEPTR);
/* allocate fitsfile structure and initialize = 0 */
*newfptr = (fitsfile *) calloc(1, sizeof(fitsfile));
(*newfptr)->Fptr = openfptr->Fptr; /* both point to the same structure */
(*newfptr)->HDUposition = 0; /* set initial position to primary array */
(((*newfptr)->Fptr)->open_count)++; /* increment the file usage counter */
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_store_Fptr(FITSfile *Fptr, /* O - FITS file pointer */
int *status) /* IO - error status */
/*
store the new Fptr address for future use by fits_already_open
*/
{
int ii;
if (*status > 0)
return(*status);
FFLOCK;
for (ii = 0; ii < NMAXFILES; ii++) {
if (FptrTable[ii] == 0) {
FptrTable[ii] = Fptr;
break;
}
}
FFUNLOCK;
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_clear_Fptr(FITSfile *Fptr, /* O - FITS file pointer */
int *status) /* IO - error status */
/*
clear the Fptr address from the Fptr Table
*/
{
int ii;
FFLOCK;
for (ii = 0; ii < NMAXFILES; ii++) {
if (FptrTable[ii] == Fptr) {
FptrTable[ii] = 0;
break;
}
}
FFUNLOCK;
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_already_open(fitsfile **fptr, /* I/O - FITS file pointer */
char *url,
char *urltype,
char *infile,
char *extspec,
char *rowfilter,
char *binspec,
char *colspec,
int mode, /* I - 0 = open readonly; 1 = read/write */
int *isopen, /* O - 1 = file is already open */
int *status) /* IO - error status */
/*
Check if the file to be opened is already open. If so, then attach to it.
*/
/* the input strings must not exceed the standard lengths */
/* of FLEN_FILENAME, MAX_PREFIX_LEN, etc. */
/*
this function was changed so that for files of access method FILE://
the file paths are compared using standard URL syntax and absolute
paths (as opposed to relative paths). This eliminates some instances
where a file is already opened but it is not realized because it
was opened with another file path. For instance, if the CWD is
/a/b/c and I open /a/b/c/foo.fits then open ./foo.fits the previous
version of this function would not have reconized that the two files
were the same. This version does recognize that the two files are
the same.
*/
{
FITSfile *oldFptr;
int ii;
char oldurltype[MAX_PREFIX_LEN], oldinfile[FLEN_FILENAME];
char oldextspec[FLEN_FILENAME], oldoutfile[FLEN_FILENAME];
char oldrowfilter[FLEN_FILENAME];
char oldbinspec[FLEN_FILENAME], oldcolspec[FLEN_FILENAME];
char cwd[FLEN_FILENAME];
char tmpStr[FLEN_FILENAME];
char tmpinfile[FLEN_FILENAME];
*isopen = 0;
/* When opening a file with readonly access then we simply let
the operating system open the file again, instead of using the CFITSIO
trick of attaching to the previously opened file. This is required
if CFITSIO is running in a multi-threaded environment, because 2 different
threads cannot share the same FITSfile pointer.
If the file is opened/reopened with write access, then the file MUST
only be physically opened once..
*/
if (mode == 0)
return(*status);
if(strcasecmp(urltype,"FILE://") == 0)
{
fits_path2url(infile,tmpinfile,status);
if(tmpinfile[0] != '/')
{
fits_get_cwd(cwd,status);
strcat(cwd,"/");
if (strlen(cwd) + strlen(tmpinfile) > FLEN_FILENAME-1) {
ffpmsg("File name is too long. (fits_already_open)");
return(*status = FILE_NOT_OPENED);
}
strcat(cwd,tmpinfile);
fits_clean_url(cwd,tmpinfile,status);
}
}
else
strcpy(tmpinfile,infile);
for (ii = 0; ii < NMAXFILES; ii++) /* check every buffer */
{
if (FptrTable[ii] != 0)
{
oldFptr = FptrTable[ii];
fits_parse_input_url(oldFptr->filename, oldurltype,
oldinfile, oldoutfile, oldextspec, oldrowfilter,
oldbinspec, oldcolspec, status);
if (*status > 0)
{
ffpmsg("could not parse the previously opened filename: (ffopen)");
ffpmsg(oldFptr->filename);
return(*status);
}
if(strcasecmp(oldurltype,"FILE://") == 0)
{
fits_path2url(oldinfile,tmpStr,status);
if(tmpStr[0] != '/')
{
fits_get_cwd(cwd,status);
strcat(cwd,"/");
strcat(cwd,tmpStr);
fits_clean_url(cwd,tmpStr,status);
}
strcpy(oldinfile,tmpStr);
}
if (!strcmp(urltype, oldurltype) && !strcmp(tmpinfile, oldinfile) )
{
/* identical type of file and root file name */
if ( (!rowfilter[0] && !oldrowfilter[0] &&
!binspec[0] && !oldbinspec[0] &&
!colspec[0] && !oldcolspec[0])
/* no filtering or binning specs for either file, so */
/* this is a case where the same file is being reopened. */
/* It doesn't matter if the extensions are different */
|| /* or */
(!strcmp(rowfilter, oldrowfilter) &&
!strcmp(binspec, oldbinspec) &&
!strcmp(colspec, oldcolspec) &&
!strcmp(extspec, oldextspec) ) )
/* filtering specs are given and are identical, and */
/* the same extension is specified */
{
if (mode == READWRITE && oldFptr->writemode == READONLY)
{
/*
cannot assume that a file previously opened with READONLY
can now be written to (e.g., files on CDROM, or over the
the network, or STDIN), so return with an error.
*/
ffpmsg(
"cannot reopen file READWRITE when previously opened READONLY");
ffpmsg(url);
return(*status = FILE_NOT_OPENED);
}
*fptr = (fitsfile *) calloc(1, sizeof(fitsfile));
if (!(*fptr))
{
ffpmsg(
"failed to allocate structure for following file: (ffopen)");
ffpmsg(url);
return(*status = MEMORY_ALLOCATION);
}
(*fptr)->Fptr = oldFptr; /* point to the structure */
(*fptr)->HDUposition = 0; /* set initial position */
(((*fptr)->Fptr)->open_count)++; /* increment usage counter */
if (binspec[0]) /* if binning specified, don't move */
extspec[0] = '\0';
/* all the filtering has already been applied, so ignore */
rowfilter[0] = '\0';
binspec[0] = '\0';
colspec[0] = '\0';
*isopen = 1;
}
}
}
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_is_this_a_copy(char *urltype) /* I - type of file */
/*
specialized routine that returns 1 if the file is known to be a temporary
copy of the originally opened file. Otherwise it returns 0.
*/
{
int iscopy;
if (!strncmp(urltype, "mem", 3) )
iscopy = 1; /* file copy is in memory */
else if (!strncmp(urltype, "compress", 8) )
iscopy = 1; /* compressed diskfile that is uncompressed in memory */
else if (!strncmp(urltype, "http", 4) )
iscopy = 1; /* copied file using http protocol */
else if (!strncmp(urltype, "ftp", 3) )
iscopy = 1; /* copied file using ftp protocol */
else if (!strncmp(urltype, "gsiftp", 6) )
iscopy = 1; /* copied file using gsiftp protocol */
else if (!strncpy(urltype, "stdin", 5) )
iscopy = 1; /* piped stdin has been copied to memory */
else
iscopy = 0; /* file is not known to be a copy */
return(iscopy);
}
/*--------------------------------------------------------------------------*/
static int find_quote(char **string)
/*
look for the closing single quote character in the input string
*/
{
char *tstr;
tstr = *string;
while (*tstr) {
if (*tstr == '\'') { /* found the closing quote */
*string = tstr + 1; /* set pointer to next char */
return(0);
} else { /* skip over any other character */
tstr++;
}
}
return(1); /* opps, didn't find the closing character */
}
/*--------------------------------------------------------------------------*/
static int find_doublequote(char **string)
/*
look for the closing double quote character in the input string
*/
{
char *tstr;
tstr = *string;
while (*tstr) {
if (*tstr == '"') { /* found the closing quote */
*string = tstr + 1; /* set pointer to next char */
return(0);
} else { /* skip over any other character */
tstr++;
}
}
return(1); /* opps, didn't find the closing character */
}
/*--------------------------------------------------------------------------*/
static int find_paren(char **string)
/*
look for the closing parenthesis character in the input string
*/
{
char *tstr;
tstr = *string;
while (*tstr) {
if (*tstr == ')') { /* found the closing parens */
*string = tstr + 1; /* set pointer to next char */
return(0);
} else if (*tstr == '(') { /* found another level of parens */
tstr++;
if (find_paren(&tstr)) return(1);
} else if (*tstr == '[') {
tstr++;
if (find_bracket(&tstr)) return(1);
} else if (*tstr == '{') {
tstr++;
if (find_curlybracket(&tstr)) return(1);
} else if (*tstr == '"') {
tstr++;
if (find_doublequote(&tstr)) return(1);
} else if (*tstr == '\'') {
tstr++;
if (find_quote(&tstr)) return(1);
} else {
tstr++;
}
}
return(1); /* opps, didn't find the closing character */
}
/*--------------------------------------------------------------------------*/
static int find_bracket(char **string)
/*
look for the closing bracket character in the input string
*/
{
char *tstr;
tstr = *string;
while (*tstr) {
if (*tstr == ']') { /* found the closing bracket */
*string = tstr + 1; /* set pointer to next char */
return(0);
} else if (*tstr == '(') { /* found another level of parens */
tstr++;
if (find_paren(&tstr)) return(1);
} else if (*tstr == '[') {
tstr++;
if (find_bracket(&tstr)) return(1);
} else if (*tstr == '{') {
tstr++;
if (find_curlybracket(&tstr)) return(1);
} else if (*tstr == '"') {
tstr++;
if (find_doublequote(&tstr)) return(1);
} else if (*tstr == '\'') {
tstr++;
if (find_quote(&tstr)) return(1);
} else {
tstr++;
}
}
return(1); /* opps, didn't find the closing character */
}
/*--------------------------------------------------------------------------*/
static int find_curlybracket(char **string)
/*
look for the closing curly bracket character in the input string
*/
{
char *tstr;
tstr = *string;
while (*tstr) {
if (*tstr == '}') { /* found the closing curly bracket */
*string = tstr + 1; /* set pointer to next char */
return(0);
} else if (*tstr == '(') { /* found another level of parens */
tstr++;
if (find_paren(&tstr)) return(1);
} else if (*tstr == '[') {
tstr++;
if (find_bracket(&tstr)) return(1);
} else if (*tstr == '{') {
tstr++;
if (find_curlybracket(&tstr)) return(1);
} else if (*tstr == '"') {
tstr++;
if (find_doublequote(&tstr)) return(1);
} else if (*tstr == '\'') {
tstr++;
if (find_quote(&tstr)) return(1);
} else {
tstr++;
}
}
return(1); /* opps, didn't find the closing character */
}
/*--------------------------------------------------------------------------*/
int comma2semicolon(char *string)
/*
replace commas with semicolons, unless the comma is within a quoted or bracketed expression
*/
{
char *tstr;
tstr = string;
while (*tstr) {
if (*tstr == ',') { /* found a comma */
*tstr = ';';
tstr++;
} else if (*tstr == '(') { /* found another level of parens */
tstr++;
if (find_paren(&tstr)) return(1);
} else if (*tstr == '[') {
tstr++;
if (find_bracket(&tstr)) return(1);
} else if (*tstr == '{') {
tstr++;
if (find_curlybracket(&tstr)) return(1);
} else if (*tstr == '"') {
tstr++;
if (find_doublequote(&tstr)) return(1);
} else if (*tstr == '\'') {
tstr++;
if (find_quote(&tstr)) return(1);
} else {
tstr++;
}
}
return(0); /* reached end of string */
}
/*--------------------------------------------------------------------------*/
int ffedit_columns(
fitsfile **fptr, /* IO - pointer to input table; on output it */
/* points to the new selected rows table */
char *outfile, /* I - name for output file */
char *expr, /* I - column edit expression */
int *status)
/*
modify columns in a table and/or header keywords in the HDU
*/
{
fitsfile *newptr;
int ii, hdunum, slen, colnum = -1, testnum, deletecol = 0, savecol = 0;
int numcols = 0, *colindex = 0, tstatus = 0, inparen;
char *cptr, *cptr2, *cptr3, *clause = NULL, keyname[FLEN_KEYWORD];
char colname[FLEN_VALUE], oldname[FLEN_VALUE], colformat[FLEN_VALUE];
char *file_expr = NULL, testname[FLEN_VALUE], card[FLEN_CARD];
if (*outfile)
{
/* create new empty file in to hold the selected rows */
if (ffinit(&newptr, outfile, status) > 0)
{
ffpmsg("failed to create file for copy (ffedit_columns)");
return(*status);
}
fits_get_hdu_num(*fptr, &hdunum); /* current HDU number in input file */
/* copy all HDUs to the output copy, if the 'only_one' flag is not set */
if (!((*fptr)->Fptr)->only_one) {
for (ii = 1; 1; ii++)
{
if (fits_movabs_hdu(*fptr, ii, NULL, status) > 0)
break;
fits_copy_hdu(*fptr, newptr, 0, status);
}
if (*status == END_OF_FILE)
{
*status = 0; /* got the expected EOF error; reset = 0 */
}
else if (*status > 0)
{
ffclos(newptr, status);
ffpmsg("failed to copy all HDUs from input file (ffedit_columns)");
return(*status);
}
} else {
/* only copy the primary array and the designated table extension */
fits_movabs_hdu(*fptr, 1, NULL, status);
fits_copy_hdu(*fptr, newptr, 0, status);
fits_movabs_hdu(*fptr, hdunum, NULL, status);
fits_copy_hdu(*fptr, newptr, 0, status);
if (*status > 0)
{
ffclos(newptr, status);
ffpmsg("failed to copy all HDUs from input file (ffedit_columns)");
return(*status);
}
hdunum = 2;
}
/* close the original file and return ptr to the new image */
ffclos(*fptr, status);
*fptr = newptr; /* reset the pointer to the new table */
/* move back to the selected table HDU */
if (fits_movabs_hdu(*fptr, hdunum, NULL, status) > 0)
{
ffpmsg("failed to copy the input file (ffedit_columns)");
return(*status);
}
}
/* remove the "col " from the beginning of the column edit expression */
cptr = expr + 4;
while (*cptr == ' ')
cptr++; /* skip leading white space */
/* Check if need to import expression from a file */
if( *cptr=='@' ) {
if( ffimport_file( cptr+1, &file_expr, status ) ) return(*status);
cptr = file_expr;
while (*cptr == ' ')
cptr++; /* skip leading white space... again */
}
tstatus = 0;
ffgncl(*fptr, &numcols, &tstatus); /* get initial # of cols */
/* as of July 2012, the CFITSIO column filter syntax was modified */
/* so that commas may be used to separate clauses, as well as semi-colons. */
/* This was done because users cannot enter the semi-colon in the HEASARC's */
/* Hera on-line data processing system for computer security reasons. */
/* Therefore, we must convert those commas back to semi-colons here, but we */
/* must not convert any columns that occur within parenthesies. */
if (comma2semicolon(cptr)) {
ffpmsg("parsing error in column filter expression");
ffpmsg(cptr);
if( file_expr ) free( file_expr );
*status = PARSE_SYNTAX_ERR;
return(*status);
}
/* parse expression and get first clause, if more than 1 */
while ((slen = fits_get_token2(&cptr, ";", &clause, NULL, status)) > 0 )
{
if( *cptr==';' ) cptr++;
clause[slen] = '\0';
if (clause[0] == '!' || clause[0] == '-')
{
/* ===================================== */
/* Case I. delete this column or keyword */
/* ===================================== */
if (ffgcno(*fptr, CASEINSEN, &clause[1], &colnum, status) <= 0)
{
/* a column with this name exists, so try to delete it */
if (ffdcol(*fptr, colnum, status) > 0)
{
ffpmsg("failed to delete column in input file:");
ffpmsg(clause);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if( clause ) free(clause);
return(*status);
}
deletecol = 1; /* set flag that at least one col was deleted */
numcols--;
colnum = -1;
}
else
{
ffcmsg(); /* clear previous error message from ffgcno */
/* try deleting a keyword with this name */
*status = 0;
if (ffdkey(*fptr, &clause[1], status) > 0)
{
ffpmsg("column or keyword to be deleted does not exist:");
ffpmsg(clause);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if( clause ) free(clause);
return(*status);
}
}
}
else
{
/* ===================================================== */
/* Case II:
this is either a column name, (case 1)
or a new column name followed by double = ("==") followed
by the old name which is to be renamed. (case 2A)
or a column or keyword name followed by a single "=" and a
calculation expression (case 2B) */
/* ===================================================== */
cptr2 = clause;
slen = fits_get_token(&cptr2, "( =", colname, NULL);
if (slen == 0)
{
ffpmsg("error: column or keyword name is blank:");
ffpmsg(clause);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status= URL_PARSE_ERROR);
}
/* If this is a keyword of the form
#KEYWORD#
then transform to the form
#KEYWORDn
where n is the previously used column number
*/
if (colname[0] == '#' &&
strstr(colname+1, "#") == (colname + strlen(colname) - 1))
{
if (colnum <= 0)
{
ffpmsg("The keyword name:");
ffpmsg(colname);
ffpmsg("is invalid unless a column has been previously");
ffpmsg("created or editted by a calculator command");
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status = URL_PARSE_ERROR);
}
colname[strlen(colname)-1] = '\0';
/* Make keyword name and put it in oldname */
ffkeyn(colname+1, colnum, oldname, status);
if (*status) return (*status);
/* Re-copy back into colname */
strcpy(colname+1,oldname);
}
else if (strstr(colname, "#") == (colname + strlen(colname) - 1))
{
/* colname is of the form "NAME#"; if
a) colnum is defined, and
b) a column with literal name "NAME#" does not exist, and
c) a keyword with name "NAMEn" (where n=colnum) exists, then
transfrom the colname string to "NAMEn", otherwise
do nothing.
*/
if (colnum > 0) { /* colnum must be defined */
tstatus = 0;
ffgcno(*fptr, CASEINSEN, colname, &testnum, &tstatus);
if (tstatus != 0 && tstatus != COL_NOT_UNIQUE)
{
/* OK, column doesn't exist, now see if keyword exists */
ffcmsg(); /* clear previous error message from ffgcno */
strcpy(testname, colname);
testname[strlen(testname)-1] = '\0';
/* Make keyword name and put it in oldname */
ffkeyn(testname, colnum, oldname, status);
if (*status) {
if( file_expr ) free( file_expr );
if (clause) free(clause);
return (*status);
}
tstatus = 0;
if (!fits_read_card(*fptr, oldname, card, &tstatus)) {
/* Keyword does exist; copy real name back into colname */
strcpy(colname,oldname);
}
}
}
}
/* if we encountered an opening parenthesis, then we need to */
/* find the closing parenthesis, and concatinate the 2 strings */
/* This supports expressions like:
[col #EXTNAME(Extension name)="GTI"]
*/
if (*cptr2 == '(')
{
fits_get_token(&cptr2, ")", oldname, NULL);
strcat(colname, oldname);
strcat(colname, ")");
cptr2++;
}
while (*cptr2 == ' ')
cptr2++; /* skip white space */
if (*cptr2 != '=')
{
/* ------------------------------------ */
/* case 1 - simply the name of a column */
/* ------------------------------------ */
/* look for matching column */
ffgcno(*fptr, CASEINSEN, colname, &testnum, status);
while (*status == COL_NOT_UNIQUE)
{
/* the column name contained wild cards, and it */
/* matches more than one column in the table. */
colnum = testnum;
/* keep this column in the output file */
savecol = 1;
if (!colindex)
colindex = (int *) calloc(999, sizeof(int));
colindex[colnum - 1] = 1; /* flag this column number */
/* look for other matching column names */
ffgcno(*fptr, CASEINSEN, colname, &testnum, status);
if (*status == COL_NOT_FOUND)
*status = 999; /* temporary status flag value */
}
if (*status <= 0)
{
colnum = testnum;
/* keep this column in the output file */
savecol = 1;
if (!colindex)
colindex = (int *) calloc(999, sizeof(int));
colindex[colnum - 1] = 1; /* flag this column number */
}
else if (*status == 999)
{
/* this special flag value does not represent an error */
*status = 0;
}
else
{
ffpmsg("Syntax error in columns specifier in input URL:");
ffpmsg(cptr2);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status = URL_PARSE_ERROR);
}
}
else
{
/* ----------------------------------------------- */
/* case 2 where the token ends with an equals sign */
/* ----------------------------------------------- */
cptr2++; /* skip over the first '=' */
if (*cptr2 == '=')
{
/*................................................. */
/* Case A: rename a column or keyword; syntax is
"new_name == old_name" */
/*................................................. */
cptr2++; /* skip the 2nd '=' */
while (*cptr2 == ' ')
cptr2++; /* skip white space */
fits_get_token(&cptr2, " ", oldname, NULL);
/* get column number of the existing column */
if (ffgcno(*fptr, CASEINSEN, oldname, &colnum, status) <= 0)
{
/* modify the TTYPEn keyword value with the new name */
ffkeyn("TTYPE", colnum, keyname, status);
if (ffmkys(*fptr, keyname, colname, NULL, status) > 0)
{
ffpmsg("failed to rename column in input file");
ffpmsg(" oldname =");
ffpmsg(oldname);
ffpmsg(" newname =");
ffpmsg(colname);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status);
}
/* keep this column in the output file */
savecol = 1;
if (!colindex)
colindex = (int *) calloc(999, sizeof(int));
colindex[colnum - 1] = 1; /* flag this column number */
}
else
{
/* try renaming a keyword */
ffcmsg(); /* clear error message stack */
*status = 0;
if (ffmnam(*fptr, oldname, colname, status) > 0)
{
ffpmsg("column or keyword to be renamed does not exist:");
ffpmsg(clause);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status);
}
}
}
else
{
/*...................................................... */
/* Case B: */
/* this must be a general column/keyword calc expression */
/* "name = expression" or "colname(TFORM) = expression" */
/*...................................................... */
/* parse the name and TFORM values, if present */
colformat[0] = '\0';
cptr3 = colname;
fits_get_token(&cptr3, "(", oldname, NULL);
if (cptr3[0] == '(' )
{
cptr3++; /* skip the '(' */
fits_get_token(&cptr3, ")", colformat, NULL);
}
/* calculate values for the column or keyword */
/* cptr2 = the expression to be calculated */
/* oldname = name of the column or keyword */
/* colformat = column format, or keyword comment string */
if (fits_calculator(*fptr, cptr2, *fptr, oldname, colformat,
status) > 0) {
ffpmsg("Unable to calculate expression");
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status);
}
/* test if this is a column and not a keyword */
tstatus = 0;
ffgcno(*fptr, CASEINSEN, oldname, &testnum, &tstatus);
if (tstatus == 0)
{
/* keep this column in the output file */
colnum = testnum;
savecol = 1;
if (!colindex)
colindex = (int *) calloc(999, sizeof(int));
colindex[colnum - 1] = 1;
if (colnum > numcols)numcols++;
}
else
{
ffcmsg(); /* clear the error message stack */
}
}
}
}
if (clause) free(clause); /* free old clause before getting new one */
clause = NULL;
}
if (savecol && !deletecol)
{
/* need to delete all but the specified columns */
for (ii = numcols; ii > 0; ii--)
{
if (!colindex[ii-1]) /* delete this column */
{
if (ffdcol(*fptr, ii, status) > 0)
{
ffpmsg("failed to delete column in input file:");
ffpmsg(clause);
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status);
}
}
}
}
if( colindex ) free( colindex );
if( file_expr ) free( file_expr );
if (clause) free(clause);
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_copy_cell2image(
fitsfile *fptr, /* I - point to input table */
fitsfile *newptr, /* O - existing output file; new image HDU
will be appended to it */
char *colname, /* I - column name / number containing the image*/
long rownum, /* I - number of the row containing the image */
int *status) /* IO - error status */
/*
Copy a table cell of a given row and column into an image extension.
The output file must already have been created. A new image
extension will be created in that file.
This routine was written by Craig Markwardt, GSFC
*/
{
unsigned char buffer[30000];
int hdutype, colnum, typecode, bitpix, naxis, maxelem, tstatus;
LONGLONG naxes[9], nbytes, firstbyte, ntodo;
LONGLONG repeat, startpos, elemnum, rowlen, tnull;
long twidth, incre;
double scale, zero;
char tform[20];
char card[FLEN_CARD];
char templt[FLEN_CARD] = "";
/* Table-to-image keyword translation table */
/* INPUT OUTPUT */
/* 01234567 01234567 */
char *patterns[][2] = {{"TSCALn", "BSCALE" }, /* Standard FITS keywords */
{"TZEROn", "BZERO" },
{"TUNITn", "BUNIT" },
{"TNULLn", "BLANK" },
{"TDMINn", "DATAMIN" },
{"TDMAXn", "DATAMAX" },
{"iCTYPn", "CTYPEi" }, /* Coordinate labels */
{"iCTYna", "CTYPEia" },
{"iCUNIn", "CUNITi" }, /* Coordinate units */
{"iCUNna", "CUNITia" },
{"iCRVLn", "CRVALi" }, /* WCS keywords */
{"iCRVna", "CRVALia" },
{"iCDLTn", "CDELTi" },
{"iCDEna", "CDELTia" },
{"iCRPXn", "CRPIXi" },
{"iCRPna", "CRPIXia" },
{"ijPCna", "PCi_ja" },
{"ijCDna", "CDi_ja" },
{"iVn_ma", "PVi_ma" },
{"iSn_ma", "PSi_ma" },
{"iCRDna", "CRDERia" },
{"iCSYna", "CSYERia" },
{"iCROTn", "CROTAi" },
{"WCAXna", "WCSAXESa"},
{"WCSNna", "WCSNAMEa"},
{"LONPna", "LONPOLEa"},
{"LATPna", "LATPOLEa"},
{"EQUIna", "EQUINOXa"},
{"MJDOBn", "MJD-OBS" },
{"MJDAn", "MJD-AVG" },
{"RADEna", "RADESYSa"},
{"iCNAna", "CNAMEia" },
{"DAVGn", "DATE-AVG"},
/* Delete table keywords related to other columns */
{"T????#a", "-" },
{"TC??#a", "-" },
{"TWCS#a", "-" },
{"TDIM#", "-" },
{"iCTYPm", "-" },
{"iCUNIm", "-" },
{"iCRVLm", "-" },
{"iCDLTm", "-" },
{"iCRPXm", "-" },
{"iCTYma", "-" },
{"iCUNma", "-" },
{"iCRVma", "-" },
{"iCDEma", "-" },
{"iCRPma", "-" },
{"ijPCma", "-" },
{"ijCDma", "-" },
{"iVm_ma", "-" },
{"iSm_ma", "-" },
{"iCRDma", "-" },
{"iCSYma", "-" },
{"iCROTm", "-" },
{"WCAXma", "-" },
{"WCSNma", "-" },
{"LONPma", "-" },
{"LATPma", "-" },
{"EQUIma", "-" },
{"MJDOBm", "-" },
{"MJDAm", "-" },
{"RADEma", "-" },
{"iCNAma", "-" },
{"DAVGm", "-" },
{"EXTNAME", "-" }, /* Remove structural keywords*/
{"EXTVER", "-" },
{"EXTLEVEL","-" },
{"CHECKSUM","-" },
{"DATASUM", "-" },
{"*", "+" }}; /* copy all other keywords */
int npat;
if (*status > 0)
return(*status);
/* get column number */
if (ffgcno(fptr, CASEINSEN, colname, &colnum, status) > 0)
{
ffpmsg("column containing image in table cell does not exist:");
ffpmsg(colname);
return(*status);
}
/*---------------------------------------------------*/
/* Check input and get parameters about the column: */
/*---------------------------------------------------*/
if ( ffgcprll(fptr, colnum, rownum, 1L, 1L, 0, &scale, &zero,
tform, &twidth, &typecode, &maxelem, &startpos, &elemnum, &incre,
&repeat, &rowlen, &hdutype, &tnull, (char *) buffer, status) > 0 )
return(*status);
/* get the actual column name, in case a column number was given */
ffkeyn("", colnum, templt, &tstatus);
ffgcnn(fptr, CASEINSEN, templt, colname, &colnum, &tstatus);
if (hdutype != BINARY_TBL)
{
ffpmsg("This extension is not a binary table.");
ffpmsg(" Cannot open the image in a binary table cell.");
return(*status = NOT_BTABLE);
}
if (typecode < 0)
{
/* variable length array */
typecode *= -1;
/* variable length arrays are 1-dimensional by default */
naxis = 1;
naxes[0] = repeat;
}
else
{
/* get the dimensions of the image */
ffgtdmll(fptr, colnum, 9, &naxis, naxes, status);
}
if (*status > 0)
{
ffpmsg("Error getting the dimensions of the image");
return(*status);
}
/* determine BITPIX value for the image */
if (typecode == TBYTE)
{
bitpix = BYTE_IMG;
nbytes = repeat;
}
else if (typecode == TSHORT)
{
bitpix = SHORT_IMG;
nbytes = repeat * 2;
}
else if (typecode == TLONG)
{
bitpix = LONG_IMG;
nbytes = repeat * 4;
}
else if (typecode == TFLOAT)
{
bitpix = FLOAT_IMG;
nbytes = repeat * 4;
}
else if (typecode == TDOUBLE)
{
bitpix = DOUBLE_IMG;
nbytes = repeat * 8;
}
else if (typecode == TLONGLONG)
{
bitpix = LONGLONG_IMG;
nbytes = repeat * 8;
}
else if (typecode == TLOGICAL)
{
bitpix = BYTE_IMG;
nbytes = repeat;
}
else
{
ffpmsg("Error: the following image column has invalid datatype:");
ffpmsg(colname);
ffpmsg(tform);
ffpmsg("Cannot open an image in a single row of this column.");
return(*status = BAD_TFORM);
}
/* create new image in output file */
if (ffcrimll(newptr, bitpix, naxis, naxes, status) > 0)
{
ffpmsg("failed to write required primary array keywords in the output file");
return(*status);
}
npat = sizeof(patterns)/sizeof(patterns[0][0])/2;
/* skip over the first 8 keywords, starting just after TFIELDS */
fits_translate_keywords(fptr, newptr, 9, patterns, npat,
colnum, 0, 0, status);
/* add some HISTORY */
sprintf(card,"HISTORY This image was copied from row %ld of column '%s',",
rownum, colname);
/* disable this; leave it up to the caller to write history if needed.
ffprec(newptr, card, status);
*/
/* the use of ffread routine, below, requires that any 'dirty' */
/* buffers in memory be flushed back to the file first */
ffflsh(fptr, FALSE, status);
/* finally, copy the data, one buffer size at a time */
ffmbyt(fptr, startpos, TRUE, status);
firstbyte = 1;
/* the upper limit on the number of bytes must match the declaration */
/* read up to the first 30000 bytes in the normal way with ffgbyt */
ntodo = minvalue(30000, nbytes);
ffgbyt(fptr, ntodo, buffer, status);
ffptbb(newptr, 1, firstbyte, ntodo, buffer, status);
nbytes -= ntodo;
firstbyte += ntodo;
/* read any additional bytes with low-level ffread routine, for speed */
while (nbytes && (*status <= 0) )
{
ntodo = minvalue(30000, nbytes);
ffread((fptr)->Fptr, (long) ntodo, buffer, status);
ffptbb(newptr, 1, firstbyte, ntodo, buffer, status);
nbytes -= ntodo;
firstbyte += ntodo;
}
/* Re-scan the header so that CFITSIO knows about all the new keywords */
ffrdef(newptr,status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_copy_image2cell(
fitsfile *fptr, /* I - pointer to input image extension */
fitsfile *newptr, /* I - pointer to output table */
char *colname, /* I - name of column containing the image */
long rownum, /* I - number of the row containing the image */
int copykeyflag, /* I - controls which keywords to copy */
int *status) /* IO - error status */
/*
Copy an image extension into a table cell at a given row and
column. The table must have already been created. If the "colname"
column exists, it will be used, otherwise a new column will be created
in the table.
The "copykeyflag" parameter controls which keywords to copy from the
input image to the output table header (with any appropriate translation).
copykeyflag = 0 -- no keywords will be copied
copykeyflag = 1 -- essentially all keywords will be copied
copykeyflag = 2 -- copy only the WCS related keywords
This routine was written by Craig Markwardt, GSFC
*/
{
tcolumn *colptr;
unsigned char buffer[30000];
int ii, hdutype, colnum, typecode, bitpix, naxis, ncols, hdunum;
char tformchar, tform[20], card[FLEN_CARD];
LONGLONG imgstart, naxes[9], nbytes, repeat, ntodo,firstbyte;
char filename[FLEN_FILENAME+20];
int npat;
int naxis1;
LONGLONG naxes1[9] = {0,0,0,0,0,0,0,0,0}, repeat1, width1;
int typecode1;
unsigned char dummy = 0;
LONGLONG headstart, datastart, dataend;
/* Image-to-table keyword translation table */
/* INPUT OUTPUT */
/* 01234567 01234567 */
char *patterns[][2] = {{"BSCALE", "TSCALn" }, /* Standard FITS keywords */
{"BZERO", "TZEROn" },
{"BUNIT", "TUNITn" },
{"BLANK", "TNULLn" },
{"DATAMIN", "TDMINn" },
{"DATAMAX", "TDMAXn" },
{"CTYPEi", "iCTYPn" }, /* Coordinate labels */
{"CTYPEia", "iCTYna" },
{"CUNITi", "iCUNIn" }, /* Coordinate units */
{"CUNITia", "iCUNna" },
{"CRVALi", "iCRVLn" }, /* WCS keywords */
{"CRVALia", "iCRVna" },
{"CDELTi", "iCDLTn" },
{"CDELTia", "iCDEna" },
{"CRPIXj", "jCRPXn" },
{"CRPIXja", "jCRPna" },
{"PCi_ja", "ijPCna" },
{"CDi_ja", "ijCDna" },
{"PVi_ma", "iVn_ma" },
{"PSi_ma", "iSn_ma" },
{"WCSAXESa","WCAXna" },
{"WCSNAMEa","WCSNna" },
{"CRDERia", "iCRDna" },
{"CSYERia", "iCSYna" },
{"CROTAi", "iCROTn" },
{"LONPOLEa","LONPna"},
{"LATPOLEa","LATPna"},
{"EQUINOXa","EQUIna"},
{"MJD-OBS", "MJDOBn" },
{"MJD-AVG", "MJDAn" },
{"RADESYSa","RADEna"},
{"CNAMEia", "iCNAna" },
{"DATE-AVG","DAVGn"},
{"NAXISi", "-" }, /* Remove structural keywords*/
{"PCOUNT", "-" },
{"GCOUNT", "-" },
{"EXTEND", "-" },
{"EXTNAME", "-" },
{"EXTVER", "-" },
{"EXTLEVEL","-" },
{"CHECKSUM","-" },
{"DATASUM", "-" },
{"*", "+" }}; /* copy all other keywords */
if (*status > 0)
return(*status);
if (fptr == 0 || newptr == 0) return (*status = NULL_INPUT_PTR);
if (ffghdt(fptr, &hdutype, status) > 0) {
ffpmsg("could not get input HDU type");
return (*status);
}
if (hdutype != IMAGE_HDU) {
ffpmsg("The input extension is not an image.");
ffpmsg(" Cannot open the image.");
return(*status = NOT_IMAGE);
}
if (ffghdt(newptr, &hdutype, status) > 0) {
ffpmsg("could not get output HDU type");
return (*status);
}
if (hdutype != BINARY_TBL) {
ffpmsg("The output extension is not a table.");
return(*status = NOT_BTABLE);
}
if (ffgiprll(fptr, 9, &bitpix, &naxis, naxes, status) > 0) {
ffpmsg("Could not read image parameters.");
return (*status);
}
/* Determine total number of pixels in the image */
repeat = 1;
for (ii = 0; ii < naxis; ii++) repeat *= naxes[ii];
/* Determine the TFORM value for the table cell */
if (bitpix == BYTE_IMG) {
typecode = TBYTE;
tformchar = 'B';
nbytes = repeat;
} else if (bitpix == SHORT_IMG) {
typecode = TSHORT;
tformchar = 'I';
nbytes = repeat*2;
} else if (bitpix == LONG_IMG) {
typecode = TLONG;
tformchar = 'J';
nbytes = repeat*4;
} else if (bitpix == FLOAT_IMG) {
typecode = TFLOAT;
tformchar = 'E';
nbytes = repeat*4;
} else if (bitpix == DOUBLE_IMG) {
typecode = TDOUBLE;
tformchar = 'D';
nbytes = repeat*8;
} else if (bitpix == LONGLONG_IMG) {
typecode = TLONGLONG;
tformchar = 'K';
nbytes = repeat*8;
} else {
ffpmsg("Error: the image has an invalid datatype.");
return (*status = BAD_BITPIX);
}
/* get column number */
ffpmrk();
ffgcno(newptr, CASEINSEN, colname, &colnum, status);
ffcmrk();
/* Column does not exist; create it */
if (*status) {
*status = 0;
sprintf(tform, "%.0f%c", (double) repeat, tformchar);
ffgncl(newptr, &ncols, status);
colnum = ncols+1;
fficol(newptr, colnum, colname, tform, status);
ffptdmll(newptr, colnum, naxis, naxes, status);
if (*status) {
ffpmsg("Could not insert new column into output table.");
return *status;
}
} else {
ffgtdmll(newptr, colnum, 9, &naxis1, naxes1, status);
if (*status > 0 || naxis != naxis1) {
ffpmsg("Input image dimensions and output table cell dimensions do not match.");
return (*status = BAD_DIMEN);
}
for (ii=0; ii<naxis; ii++) if (naxes[ii] != naxes1[ii]) {
ffpmsg("Input image dimensions and output table cell dimensions do not match.");
return (*status = BAD_DIMEN);
}
ffgtclll(newptr, colnum, &typecode1, &repeat1, &width1, status);
if ((*status > 0) || (typecode1 != typecode) || (repeat1 != repeat)) {
ffpmsg("Input image data type does not match output table cell type.");
return (*status = BAD_TFORM);
}
}
/* copy keywords from input image to output table, if required */
if (copykeyflag) {
npat = sizeof(patterns)/sizeof(patterns[0][0])/2;
if (copykeyflag == 2) { /* copy only the WCS-related keywords */
patterns[npat-1][1] = "-";
}
/* The 3rd parameter value = 5 means skip the first 4 keywords in the image */
fits_translate_keywords(fptr, newptr, 5, patterns, npat,
colnum, 0, 0, status);
}
/* Here is all the code to compute offsets:
* * byte offset from start of row to column (dest table)
* * byte offset from start of file to image data (source image)
*/
/* Force the writing of the row of the table by writing the last byte of
the array, which grows the table, and/or shifts following extensions */
ffpcl(newptr, TBYTE, colnum, rownum, repeat, 1, &dummy, status);
/* byte offset within the row to the start of the image column */
colptr = (newptr->Fptr)->tableptr; /* point to first column */
colptr += (colnum - 1); /* offset to correct column structure */
firstbyte = colptr->tbcol + 1;
/* get starting address of input image to be read */
ffghadll(fptr, &headstart, &datastart, &dataend, status);
imgstart = datastart;
sprintf(card, "HISTORY Table column '%s' row %ld copied from image",
colname, rownum);
/*
Don't automatically write History keywords; leave this up to the caller.
ffprec(newptr, card, status);
*/
/* write HISTORY keyword with the file name (this is now disabled)*/
filename[0] = '\0'; hdunum = 0;
strcpy(filename, "HISTORY ");
ffflnm(fptr, filename+strlen(filename), status);
ffghdn(fptr, &hdunum);
sprintf(filename+strlen(filename),"[%d]", hdunum-1);
/*
ffprec(newptr, filename, status);
*/
/* the use of ffread routine, below, requires that any 'dirty' */
/* buffers in memory be flushed back to the file first */
ffflsh(fptr, FALSE, status);
/* move to the first byte of the input image */
ffmbyt(fptr, imgstart, TRUE, status);
ntodo = minvalue(30000L, nbytes);
ffgbyt(fptr, ntodo, buffer, status); /* read input image */
ffptbb(newptr, rownum, firstbyte, ntodo, buffer, status); /* write to table */
nbytes -= ntodo;
firstbyte += ntodo;
/* read any additional bytes with low-level ffread routine, for speed */
while (nbytes && (*status <= 0) )
{
ntodo = minvalue(30000L, nbytes);
ffread(fptr->Fptr, (long) ntodo, buffer, status);
ffptbb(newptr, rownum, firstbyte, ntodo, buffer, status);
nbytes -= ntodo;
firstbyte += ntodo;
}
/* Re-scan the header so that CFITSIO knows about all the new keywords */
ffrdef(newptr,status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_select_image_section(
fitsfile **fptr, /* IO - pointer to input image; on output it */
/* points to the new subimage */
char *outfile, /* I - name for output file */
char *expr, /* I - Image section expression */
int *status)
{
/*
copies an image section from the input file to a new output file.
Any HDUs preceding or following the image are also copied to the
output file.
*/
fitsfile *newptr;
int ii, hdunum;
/* create new empty file to hold the image section */
if (ffinit(&newptr, outfile, status) > 0)
{
ffpmsg(
"failed to create output file for image section:");
ffpmsg(outfile);
return(*status);
}
fits_get_hdu_num(*fptr, &hdunum); /* current HDU number in input file */
/* copy all preceding extensions to the output file, if 'only_one' flag not set */
if (!(((*fptr)->Fptr)->only_one)) {
for (ii = 1; ii < hdunum; ii++)
{
fits_movabs_hdu(*fptr, ii, NULL, status);
if (fits_copy_hdu(*fptr, newptr, 0, status) > 0)
{
ffclos(newptr, status);
return(*status);
}
}
/* move back to the original HDU position */
fits_movabs_hdu(*fptr, hdunum, NULL, status);
}
if (fits_copy_image_section(*fptr, newptr, expr, status) > 0)
{
ffclos(newptr, status);
return(*status);
}
/* copy any remaining HDUs to the output file, if 'only_one' flag not set */
if (!(((*fptr)->Fptr)->only_one)) {
for (ii = hdunum + 1; 1; ii++)
{
if (fits_movabs_hdu(*fptr, ii, NULL, status) > 0)
break;
fits_copy_hdu(*fptr, newptr, 0, status);
}
if (*status == END_OF_FILE)
*status = 0; /* got the expected EOF error; reset = 0 */
else if (*status > 0)
{
ffclos(newptr, status);
return(*status);
}
} else {
ii = hdunum + 1; /* this value of ii is required below */
}
/* close the original file and return ptr to the new image */
ffclos(*fptr, status);
*fptr = newptr; /* reset the pointer to the new table */
/* move back to the image subsection */
if (ii - 1 != hdunum)
fits_movabs_hdu(*fptr, hdunum, NULL, status);
else
{
/* may have to reset BSCALE and BZERO pixel scaling, */
/* since the keywords were previously turned off */
if (ffrdef(*fptr, status) > 0)
{
ffclos(*fptr, status);
return(*status);
}
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_copy_image_section(
fitsfile *fptr, /* I - pointer to input image */
fitsfile *newptr, /* I - pointer to output image */
char *expr, /* I - Image section expression */
int *status)
{
/*
copies an image section from the input file to a new output HDU
*/
int bitpix, naxis, numkeys, nkey;
long naxes[] = {1,1,1,1,1,1,1,1,1}, smin, smax, sinc;
long fpixels[] = {1,1,1,1,1,1,1,1,1};
long lpixels[] = {1,1,1,1,1,1,1,1,1};
long incs[] = {1,1,1,1,1,1,1,1,1};
char *cptr, keyname[FLEN_KEYWORD], card[FLEN_CARD];
int ii, tstatus, anynull;
long minrow, maxrow, minslice, maxslice, mincube, maxcube;
long firstpix;
long ncubeiter, nsliceiter, nrowiter, kiter, jiter, iiter;
int klen, kk, jj;
long outnaxes[9], outsize, buffsize;
double *buffer, crpix, cdelt;
if (*status > 0)
return(*status);
/* get the size of the input image */
fits_get_img_type(fptr, &bitpix, status);
fits_get_img_dim(fptr, &naxis, status);
if (fits_get_img_size(fptr, naxis, naxes, status) > 0)
return(*status);
if (naxis < 1 || naxis > 4)
{
ffpmsg(
"Input image either had NAXIS = 0 (NULL image) or has > 4 dimensions");
return(*status = BAD_NAXIS);
}
/* create output image with same size and type as the input image */
/* Will update the size later */
fits_create_img(newptr, bitpix, naxis, naxes, status);
/* copy all other non-structural keywords from the input to output file */
fits_get_hdrspace(fptr, &numkeys, NULL, status);
for (nkey = 4; nkey <= numkeys; nkey++) /* skip the first few keywords */
{
fits_read_record(fptr, nkey, card, status);
if (fits_get_keyclass(card) > TYP_CMPRS_KEY)
{
/* write the record to the output file */
fits_write_record(newptr, card, status);
}
}
if (*status > 0)
{
ffpmsg("error copying header from input image to output image");
return(*status);
}
/* parse the section specifier to get min, max, and inc for each axis */
/* and the size of each output image axis */
cptr = expr;
for (ii=0; ii < naxis; ii++)
{
if (fits_get_section_range(&cptr, &smin, &smax, &sinc, status) > 0)
{
ffpmsg("error parsing the following image section specifier:");
ffpmsg(expr);
return(*status);
}
if (smax == 0)
smax = naxes[ii]; /* use whole axis by default */
else if (smin == 0)
smin = naxes[ii]; /* use inverted whole axis */
if (smin > naxes[ii] || smax > naxes[ii])
{
ffpmsg("image section exceeds dimensions of input image:");
ffpmsg(expr);
return(*status = BAD_NAXIS);
}
fpixels[ii] = smin;
lpixels[ii] = smax;
incs[ii] = sinc;
if (smin <= smax)
outnaxes[ii] = (smax - smin + sinc) / sinc;
else
outnaxes[ii] = (smin - smax + sinc) / sinc;
/* modify the NAXISn keyword */
fits_make_keyn("NAXIS", ii + 1, keyname, status);
fits_modify_key_lng(newptr, keyname, outnaxes[ii], NULL, status);
/* modify the WCS keywords if necessary */
if (fpixels[ii] != 1 || incs[ii] != 1)
{
for (kk=-1;kk<26; kk++) /* modify any alternate WCS keywords */
{
/* read the CRPIXn keyword if it exists in the input file */
fits_make_keyn("CRPIX", ii + 1, keyname, status);
if (kk != -1) {
klen = strlen(keyname);
keyname[klen]='A' + kk;
keyname[klen + 1] = '\0';
}
tstatus = 0;
if (fits_read_key(fptr, TDOUBLE, keyname,
&crpix, NULL, &tstatus) == 0)
{
/* calculate the new CRPIXn value */
if (fpixels[ii] <= lpixels[ii]) {
crpix = (crpix - (fpixels[ii])) / incs[ii] + 1.0;
/* crpix = (crpix - (fpixels[ii] - 1.0) - .5) / incs[ii] + 0.5; */
} else {
crpix = (fpixels[ii] - crpix) / incs[ii] + 1.0;
/* crpix = (fpixels[ii] - (crpix - 1.0) - .5) / incs[ii] + 0.5; */
}
/* modify the value in the output file */
fits_modify_key_dbl(newptr, keyname, crpix, 15, NULL, status);
if (incs[ii] != 1 || fpixels[ii] > lpixels[ii])
{
/* read the CDELTn keyword if it exists in the input file */
fits_make_keyn("CDELT", ii + 1, keyname, status);
if (kk != -1) {
klen = strlen(keyname);
keyname[klen]='A' + kk;
keyname[klen + 1] = '\0';
}
tstatus = 0;
if (fits_read_key(fptr, TDOUBLE, keyname,
&cdelt, NULL, &tstatus) == 0)
{
/* calculate the new CDELTn value */
if (fpixels[ii] <= lpixels[ii])
cdelt = cdelt * incs[ii];
else
cdelt = cdelt * (-incs[ii]);
/* modify the value in the output file */
fits_modify_key_dbl(newptr, keyname, cdelt, 15, NULL, status);
}
/* modify the CDi_j keywords if they exist in the input file */
fits_make_keyn("CD1_", ii + 1, keyname, status);
if (kk != -1) {
klen = strlen(keyname);
keyname[klen]='A' + kk;
keyname[klen + 1] = '\0';
}
for (jj=0; jj < 9; jj++) /* look for up to 9 dimensions */
{
keyname[2] = '1' + jj;
tstatus = 0;
if (fits_read_key(fptr, TDOUBLE, keyname,
&cdelt, NULL, &tstatus) == 0)
{
/* calculate the new CDi_j value */
if (fpixels[ii] <= lpixels[ii])
cdelt = cdelt * incs[ii];
else
cdelt = cdelt * (-incs[ii]);
/* modify the value in the output file */
fits_modify_key_dbl(newptr, keyname, cdelt, 15, NULL, status);
}
}
} /* end of if (incs[ii]... loop */
} /* end of fits_read_key loop */
} /* end of for (kk loop */
}
} /* end of main NAXIS loop */
if (ffrdef(newptr, status) > 0) /* force the header to be scanned */
{
return(*status);
}
/* turn off any scaling of the pixel values */
fits_set_bscale(fptr, 1.0, 0.0, status);
fits_set_bscale(newptr, 1.0, 0.0, status);
/* to reduce memory foot print, just read/write image 1 row at a time */
outsize = outnaxes[0];
buffsize = (abs(bitpix) / 8) * outsize;
buffer = (double *) malloc(buffsize); /* allocate memory for the image row */
if (!buffer)
{
ffpmsg("fits_copy_image_section: no memory for image section");
return(*status = MEMORY_ALLOCATION);
}
/* read the image section then write it to the output file */
minrow = fpixels[1];
maxrow = lpixels[1];
if (minrow > maxrow) {
nrowiter = (minrow - maxrow + incs[1]) / incs[1];
} else {
nrowiter = (maxrow - minrow + incs[1]) / incs[1];
}
minslice = fpixels[2];
maxslice = lpixels[2];
if (minslice > maxslice) {
nsliceiter = (minslice - maxslice + incs[2]) / incs[2];
} else {
nsliceiter = (maxslice - minslice + incs[2]) / incs[2];
}
mincube = fpixels[3];
maxcube = lpixels[3];
if (mincube > maxcube) {
ncubeiter = (mincube - maxcube + incs[3]) / incs[3];
} else {
ncubeiter = (maxcube - mincube + incs[3]) / incs[3];
}
firstpix = 1;
for (kiter = 0; kiter < ncubeiter; kiter++)
{
if (mincube > maxcube) {
fpixels[3] = mincube - (kiter * incs[3]);
} else {
fpixels[3] = mincube + (kiter * incs[3]);
}
lpixels[3] = fpixels[3];
for (jiter = 0; jiter < nsliceiter; jiter++)
{
if (minslice > maxslice) {
fpixels[2] = minslice - (jiter * incs[2]);
} else {
fpixels[2] = minslice + (jiter * incs[2]);
}
lpixels[2] = fpixels[2];
for (iiter = 0; iiter < nrowiter; iiter++)
{
if (minrow > maxrow) {
fpixels[1] = minrow - (iiter * incs[1]);
} else {
fpixels[1] = minrow + (iiter * incs[1]);
}
lpixels[1] = fpixels[1];
if (bitpix == 8)
{
ffgsvb(fptr, 1, naxis, naxes, fpixels, lpixels, incs, 0,
(unsigned char *) buffer, &anynull, status);
ffpprb(newptr, 1, firstpix, outsize, (unsigned char *) buffer, status);
}
else if (bitpix == 16)
{
ffgsvi(fptr, 1, naxis, naxes, fpixels, lpixels, incs, 0,
(short *) buffer, &anynull, status);
ffppri(newptr, 1, firstpix, outsize, (short *) buffer, status);
}
else if (bitpix == 32)
{
ffgsvk(fptr, 1, naxis, naxes, fpixels, lpixels, incs, 0,
(int *) buffer, &anynull, status);
ffpprk(newptr, 1, firstpix, outsize, (int *) buffer, status);
}
else if (bitpix == -32)
{
ffgsve(fptr, 1, naxis, naxes, fpixels, lpixels, incs, FLOATNULLVALUE,
(float *) buffer, &anynull, status);
ffppne(newptr, 1, firstpix, outsize, (float *) buffer, FLOATNULLVALUE, status);
}
else if (bitpix == -64)
{
ffgsvd(fptr, 1, naxis, naxes, fpixels, lpixels, incs, DOUBLENULLVALUE,
buffer, &anynull, status);
ffppnd(newptr, 1, firstpix, outsize, buffer, DOUBLENULLVALUE,
status);
}
else if (bitpix == 64)
{
ffgsvjj(fptr, 1, naxis, naxes, fpixels, lpixels, incs, 0,
(LONGLONG *) buffer, &anynull, status);
ffpprjj(newptr, 1, firstpix, outsize, (LONGLONG *) buffer, status);
}
firstpix += outsize;
}
}
}
free(buffer); /* finished with the memory */
if (*status > 0)
{
ffpmsg("fits_copy_image_section: error copying image section");
return(*status);
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_get_section_range(char **ptr,
long *secmin,
long *secmax,
long *incre,
int *status)
/*
Parse the input image section specification string, returning
the min, max and increment values.
Typical string = "1:512:2" or "1:512"
*/
{
int slen, isanumber;
char token[FLEN_VALUE];
if (*status > 0)
return(*status);
slen = fits_get_token(ptr, " ,:", token, &isanumber); /* get 1st token */
/* support [:2,:2] type syntax, where the leading * is implied */
if (slen==0) strcpy(token,"*");
if (*token == '*') /* wild card means to use the whole range */
{
*secmin = 1;
*secmax = 0;
}
else if (*token == '-' && *(token+1) == '*' ) /* invert the whole range */
{
*secmin = 0;
*secmax = 1;
}
else
{
if (slen == 0 || !isanumber || **ptr != ':')
return(*status = URL_PARSE_ERROR);
/* the token contains the min value */
*secmin = atol(token);
(*ptr)++; /* skip the colon between the min and max values */
slen = fits_get_token(ptr, " ,:", token, &isanumber); /* get token */
if (slen == 0 || !isanumber)
return(*status = URL_PARSE_ERROR);
/* the token contains the max value */
*secmax = atol(token);
}
if (**ptr == ':')
{
(*ptr)++; /* skip the colon between the max and incre values */
slen = fits_get_token(ptr, " ,", token, &isanumber); /* get token */
if (slen == 0 || !isanumber)
return(*status = URL_PARSE_ERROR);
*incre = atol(token);
}
else
*incre = 1; /* default increment if none is supplied */
if (**ptr == ',')
(*ptr)++;
while (**ptr == ' ') /* skip any trailing blanks */
(*ptr)++;
if (*secmin < 0 || *secmax < 0 || *incre < 1)
*status = URL_PARSE_ERROR;
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffselect_table(
fitsfile **fptr, /* IO - pointer to input table; on output it */
/* points to the new selected rows table */
char *outfile, /* I - name for output file */
char *expr, /* I - Boolean expression */
int *status)
{
fitsfile *newptr;
int ii, hdunum;
if (*outfile)
{
/* create new empty file in to hold the selected rows */
if (ffinit(&newptr, outfile, status) > 0)
{
ffpmsg(
"failed to create file for selected rows from input table");
ffpmsg(outfile);
return(*status);
}
fits_get_hdu_num(*fptr, &hdunum); /* current HDU number in input file */
/* copy all preceding extensions to the output file, if the 'only_one' flag is not set */
if (!((*fptr)->Fptr)->only_one) {
for (ii = 1; ii < hdunum; ii++)
{
fits_movabs_hdu(*fptr, ii, NULL, status);
if (fits_copy_hdu(*fptr, newptr, 0, status) > 0)
{
ffclos(newptr, status);
return(*status);
}
}
} else {
/* just copy the primary array */
fits_movabs_hdu(*fptr, 1, NULL, status);
if (fits_copy_hdu(*fptr, newptr, 0, status) > 0)
{
ffclos(newptr, status);
return(*status);
}
}
fits_movabs_hdu(*fptr, hdunum, NULL, status);
/* copy all the header keywords from the input to output file */
if (fits_copy_header(*fptr, newptr, status) > 0)
{
ffclos(newptr, status);
return(*status);
}
/* set number of rows = 0 */
fits_modify_key_lng(newptr, "NAXIS2", 0, NULL,status);
(newptr->Fptr)->numrows = 0;
(newptr->Fptr)->origrows = 0;
if (ffrdef(newptr, status) > 0) /* force the header to be scanned */
{
ffclos(newptr, status);
return(*status);
}
}
else
newptr = *fptr; /* will delete rows in place in the table */
/* copy rows which satisfy the selection expression to the output table */
/* or delete the nonqualifying rows if *fptr = newptr. */
if (fits_select_rows(*fptr, newptr, expr, status) > 0)
{
if (*outfile)
ffclos(newptr, status);
return(*status);
}
if (*outfile)
{
/* copy any remaining HDUs to the output copy */
if (!((*fptr)->Fptr)->only_one) {
for (ii = hdunum + 1; 1; ii++)
{
if (fits_movabs_hdu(*fptr, ii, NULL, status) > 0)
break;
fits_copy_hdu(*fptr, newptr, 0, status);
}
if (*status == END_OF_FILE)
*status = 0; /* got the expected EOF error; reset = 0 */
else if (*status > 0)
{
ffclos(newptr, status);
return(*status);
}
} else {
hdunum = 2;
}
/* close the original file and return ptr to the new image */
ffclos(*fptr, status);
*fptr = newptr; /* reset the pointer to the new table */
/* move back to the selected table HDU */
fits_movabs_hdu(*fptr, hdunum, NULL, status);
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffparsecompspec(fitsfile *fptr, /* I - FITS file pointer */
char *compspec, /* I - image compression specification */
int *status) /* IO - error status */
/*
Parse the image compression specification that was give in square brackets
following the output FITS file name, as in these examples:
myfile.fits[compress] - default Rice compression, row by row
myfile.fits[compress TYPE] - the first letter of TYPE defines the
compression algorithm:
R = Rice
G = GZIP
H = HCOMPRESS
HS = HCOMPRESS (with smoothing)
B - BZIP2
P = PLIO
myfile.fits[compress TYPE 100,100] - the numbers give the dimensions
of the compression tiles. Default
is NAXIS1, 1, 1, ...
other optional parameters may be specified following a semi-colon
myfile.fits[compress; q 8.0] q specifies the floating point
mufile.fits[compress TYPE; q -.0002] quantization level;
myfile.fits[compress TYPE 100,100; q 10, s 25] s specifies the HCOMPRESS
integer scaling parameter
The compression parameters are saved in the fptr->Fptr structure for use
when writing FITS images.
*/
{
char *ptr1;
/* initialize with default values */
int ii, compresstype = RICE_1, smooth = 0;
int quantize_method = SUBTRACTIVE_DITHER_1;
long tilesize[MAX_COMPRESS_DIM] = {0,0,0,0,0,0};
float qlevel = -99., scale = 0.;
ptr1 = compspec;
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
if (strncmp(ptr1, "compress", 8) && strncmp(ptr1, "COMPRESS", 8) )
{
/* apparently this string does not specify compression parameters */
return(*status = URL_PARSE_ERROR);
}
ptr1 += 8;
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
/* ========================= */
/* look for compression type */
/* ========================= */
if (*ptr1 == 'r' || *ptr1 == 'R')
{
compresstype = RICE_1;
while (*ptr1 != ' ' && *ptr1 != ';' && *ptr1 != '\0')
ptr1++;
}
else if (*ptr1 == 'g' || *ptr1 == 'G')
{
compresstype = GZIP_1;
while (*ptr1 != ' ' && *ptr1 != ';' && *ptr1 != '\0')
ptr1++;
}
/*
else if (*ptr1 == 'b' || *ptr1 == 'B')
{
compresstype = BZIP2_1;
while (*ptr1 != ' ' && *ptr1 != ';' && *ptr1 != '\0')
ptr1++;
}
*/
else if (*ptr1 == 'p' || *ptr1 == 'P')
{
compresstype = PLIO_1;
while (*ptr1 != ' ' && *ptr1 != ';' && *ptr1 != '\0')
ptr1++;
}
else if (*ptr1 == 'h' || *ptr1 == 'H')
{
compresstype = HCOMPRESS_1;
ptr1++;
if (*ptr1 == 's' || *ptr1 == 'S')
smooth = 1; /* apply smoothing when uncompressing HCOMPRESSed image */
while (*ptr1 != ' ' && *ptr1 != ';' && *ptr1 != '\0')
ptr1++;
}
/* ======================== */
/* look for tile dimensions */
/* ======================== */
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
ii = 0;
while (isdigit( (int) *ptr1) && ii < 9)
{
tilesize[ii] = atol(ptr1); /* read the integer value */
ii++;
while (isdigit((int) *ptr1)) /* skip over the integer */
ptr1++;
if (*ptr1 == ',')
ptr1++; /* skip over the comma */
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
}
/* ========================================================= */
/* look for semi-colon, followed by other optional parameters */
/* ========================================================= */
if (*ptr1 == ';') {
ptr1++;
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
while (*ptr1 != 0) { /* haven't reached end of string yet */
if (*ptr1 == 's' || *ptr1 == 'S') {
/* this should be the HCOMPRESS "scale" parameter; default = 1 */
ptr1++;
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
scale = (float) strtod(ptr1, &ptr1);
while (*ptr1 == ' ' || *ptr1 == ',') /* skip over blanks or comma */
ptr1++;
} else if (*ptr1 == 'q' || *ptr1 == 'Q') {
/* this should be the floating point quantization parameter */
ptr1++;
if (*ptr1 == 'z' || *ptr1 == 'Z') {
/* use the subtractive_dither_2 option */
quantize_method = SUBTRACTIVE_DITHER_2;
ptr1++;
} else if (*ptr1 == '0') {
/* do not dither */
quantize_method = NO_DITHER;
ptr1++;
}
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
qlevel = (float) strtod(ptr1, &ptr1);
while (*ptr1 == ' ' || *ptr1 == ',') /* skip over blanks or comma */
ptr1++;
} else {
return(*status = URL_PARSE_ERROR);
}
}
}
/* ================================= */
/* finished parsing; save the values */
/* ================================= */
fits_set_compression_type(fptr, compresstype, status);
fits_set_tile_dim(fptr, MAX_COMPRESS_DIM, tilesize, status);
if (compresstype == HCOMPRESS_1) {
fits_set_hcomp_scale (fptr, scale, status);
fits_set_hcomp_smooth(fptr, smooth, status);
}
if (qlevel != -99.) {
fits_set_quantize_level(fptr, qlevel, status);
fits_set_quantize_method(fptr, quantize_method, status);
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffdkinit(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - name of file to create */
int *status) /* IO - error status */
/*
Create and initialize a new FITS file on disk. This routine differs
from ffinit in that the input 'name' is literally taken as the name
of the disk file to be created, and it does not support CFITSIO's
extended filename syntax.
*/
{
if (*status > 0)
return(*status);
*status = CREATE_DISK_FILE;
ffinit(fptr, name,status);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffinit(fitsfile **fptr, /* O - FITS file pointer */
const char *name, /* I - name of file to create */
int *status) /* IO - error status */
/*
Create and initialize a new FITS file.
*/
{
int ii, driver, slen, clobber = 0;
char *url;
char urltype[MAX_PREFIX_LEN], outfile[FLEN_FILENAME];
char tmplfile[FLEN_FILENAME], compspec[80];
int handle, create_disk_file = 0;
if (*status > 0)
return(*status);
if (*status == CREATE_DISK_FILE)
{
create_disk_file = 1;
*status = 0;
}
*fptr = 0; /* initialize null file pointer */
if (need_to_initialize) { /* this is called only once */
*status = fits_init_cfitsio();
}
if (*status > 0)
return(*status);
url = (char *) name;
while (*url == ' ') /* ignore leading spaces in the filename */
url++;
if (*url == '\0')
{
ffpmsg("Name of file to create is blank. (ffinit)");
return(*status = FILE_NOT_CREATED);
}
if (create_disk_file)
{
if (strlen(url) > FLEN_FILENAME - 1)
{
ffpmsg("Filename is too long. (ffinit)");
return(*status = FILE_NOT_CREATED);
}
strcpy(outfile, url);
strcpy(urltype, "file://");
tmplfile[0] = '\0';
compspec[0] = '\0';
}
else
{
/* check for clobber symbol, i.e, overwrite existing file */
if (*url == '!')
{
clobber = TRUE;
url++;
}
else
clobber = FALSE;
/* parse the output file specification */
/* this routine checks that the strings will not overflow */
ffourl(url, urltype, outfile, tmplfile, compspec, status);
if (*status > 0)
{
ffpmsg("could not parse the output filename: (ffinit)");
ffpmsg(url);
return(*status);
}
}
/* find which driver corresponds to the urltype */
*status = urltype2driver(urltype, &driver);
if (*status)
{
ffpmsg("could not find driver for this file: (ffinit)");
ffpmsg(url);
return(*status);
}
/* delete pre-existing file, if asked to do so */
if (clobber)
{
if (driverTable[driver].remove)
(*driverTable[driver].remove)(outfile);
}
/* call appropriate driver to create the file */
if (driverTable[driver].create)
{
FFLOCK; /* lock this while searching for vacant handle */
*status = (*driverTable[driver].create)(outfile, &handle);
FFUNLOCK;
if (*status)
{
ffpmsg("failed to create new file (already exists?):");
ffpmsg(url);
return(*status);
}
}
else
{
ffpmsg("cannot create a new file of this type: (ffinit)");
ffpmsg(url);
return(*status = FILE_NOT_CREATED);
}
/* allocate fitsfile structure and initialize = 0 */
*fptr = (fitsfile *) calloc(1, sizeof(fitsfile));
if (!(*fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffopen)");
ffpmsg(url);
return(*status = MEMORY_ALLOCATION);
}
/* allocate FITSfile structure and initialize = 0 */
(*fptr)->Fptr = (FITSfile *) calloc(1, sizeof(FITSfile));
if (!((*fptr)->Fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for following file: (ffopen)");
ffpmsg(url);
free(*fptr);
*fptr = 0;
return(*status = MEMORY_ALLOCATION);
}
slen = strlen(url) + 1;
slen = maxvalue(slen, 32); /* reserve at least 32 chars */
((*fptr)->Fptr)->filename = (char *) malloc(slen); /* mem for file name */
if ( !(((*fptr)->Fptr)->filename) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for filename: (ffinit)");
ffpmsg(url);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = FILE_NOT_CREATED);
}
/* mem for headstart array */
((*fptr)->Fptr)->headstart = (LONGLONG *) calloc(1001, sizeof(LONGLONG));
if ( !(((*fptr)->Fptr)->headstart) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for headstart array: (ffinit)");
ffpmsg(url);
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for file I/O buffers */
((*fptr)->Fptr)->iobuffer = (char *) calloc(NIOBUF, IOBUFLEN);
if ( !(((*fptr)->Fptr)->iobuffer) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for iobuffer array: (ffinit)");
ffpmsg(url);
free( ((*fptr)->Fptr)->headstart); /* free memory for headstart array */
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* initialize the ageindex array (relative age of the I/O buffers) */
/* and initialize the bufrecnum array as being empty */
for (ii = 0; ii < NIOBUF; ii++) {
((*fptr)->Fptr)->ageindex[ii] = ii;
((*fptr)->Fptr)->bufrecnum[ii] = -1;
}
/* store the parameters describing the file */
((*fptr)->Fptr)->MAXHDU = 1000; /* initial size of headstart */
((*fptr)->Fptr)->filehandle = handle; /* store the file pointer */
((*fptr)->Fptr)->driver = driver; /* driver number */
strcpy(((*fptr)->Fptr)->filename, url); /* full input filename */
((*fptr)->Fptr)->filesize = 0; /* physical file size */
((*fptr)->Fptr)->logfilesize = 0; /* logical file size */
((*fptr)->Fptr)->writemode = 1; /* read-write mode */
((*fptr)->Fptr)->datastart = DATA_UNDEFINED; /* unknown start of data */
((*fptr)->Fptr)->curbuf = -1; /* undefined current IO buffer */
((*fptr)->Fptr)->open_count = 1; /* structure is currently used once */
((*fptr)->Fptr)->validcode = VALIDSTRUC; /* flag denoting valid structure */
ffldrc(*fptr, 0, IGNORE_EOF, status); /* initialize first record */
fits_store_Fptr( (*fptr)->Fptr, status); /* store Fptr address */
/* if template file was given, use it to define structure of new file */
if (tmplfile[0])
ffoptplt(*fptr, tmplfile, status);
/* parse and save image compression specification, if given */
if (compspec[0])
ffparsecompspec(*fptr, compspec, status);
return(*status); /* successful return */
}
/*--------------------------------------------------------------------------*/
/* ffimem == fits_create_memfile */
int ffimem(fitsfile **fptr, /* O - FITS file pointer */
void **buffptr, /* I - address of memory pointer */
size_t *buffsize, /* I - size of buffer, in bytes */
size_t deltasize, /* I - increment for future realloc's */
void *(*mem_realloc)(void *p, size_t newsize), /* function */
int *status) /* IO - error status */
/*
Create and initialize a new FITS file in memory
*/
{
int ii, driver, slen;
char urltype[MAX_PREFIX_LEN];
int handle;
if (*status > 0)
return(*status);
*fptr = 0; /* initialize null file pointer */
if (need_to_initialize) { /* this is called only once */
*status = fits_init_cfitsio();
}
if (*status > 0)
return(*status);
strcpy(urltype, "memkeep://"); /* URL type for pre-existing memory file */
*status = urltype2driver(urltype, &driver);
if (*status > 0)
{
ffpmsg("could not find driver for pre-existing memory file: (ffimem)");
return(*status);
}
/* call driver routine to "open" the memory file */
FFLOCK; /* lock this while searching for vacant handle */
*status = mem_openmem( buffptr, buffsize, deltasize,
mem_realloc, &handle);
FFUNLOCK;
if (*status > 0)
{
ffpmsg("failed to open pre-existing memory file: (ffimem)");
return(*status);
}
/* allocate fitsfile structure and initialize = 0 */
*fptr = (fitsfile *) calloc(1, sizeof(fitsfile));
if (!(*fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for memory file: (ffimem)");
return(*status = MEMORY_ALLOCATION);
}
/* allocate FITSfile structure and initialize = 0 */
(*fptr)->Fptr = (FITSfile *) calloc(1, sizeof(FITSfile));
if (!((*fptr)->Fptr))
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate structure for memory file: (ffimem)");
free(*fptr);
*fptr = 0;
return(*status = MEMORY_ALLOCATION);
}
slen = 32; /* reserve at least 32 chars */
((*fptr)->Fptr)->filename = (char *) malloc(slen); /* mem for file name */
if ( !(((*fptr)->Fptr)->filename) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for filename: (ffimem)");
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for headstart array */
((*fptr)->Fptr)->headstart = (LONGLONG *) calloc(1001, sizeof(LONGLONG));
if ( !(((*fptr)->Fptr)->headstart) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for headstart array: (ffimem)");
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* mem for file I/O buffers */
((*fptr)->Fptr)->iobuffer = (char *) calloc(NIOBUF, IOBUFLEN);
if ( !(((*fptr)->Fptr)->iobuffer) )
{
(*driverTable[driver].close)(handle); /* close the file */
ffpmsg("failed to allocate memory for iobuffer array: (ffimem)");
free( ((*fptr)->Fptr)->headstart); /* free memory for headstart array */
free( ((*fptr)->Fptr)->filename);
free((*fptr)->Fptr);
free(*fptr);
*fptr = 0; /* return null file pointer */
return(*status = MEMORY_ALLOCATION);
}
/* initialize the ageindex array (relative age of the I/O buffers) */
/* and initialize the bufrecnum array as being empty */
for (ii = 0; ii < NIOBUF; ii++) {
((*fptr)->Fptr)->ageindex[ii] = ii;
((*fptr)->Fptr)->bufrecnum[ii] = -1;
}
/* store the parameters describing the file */
((*fptr)->Fptr)->MAXHDU = 1000; /* initial size of headstart */
((*fptr)->Fptr)->filehandle = handle; /* file handle */
((*fptr)->Fptr)->driver = driver; /* driver number */
strcpy(((*fptr)->Fptr)->filename, "memfile"); /* dummy filename */
((*fptr)->Fptr)->filesize = *buffsize; /* physical file size */
((*fptr)->Fptr)->logfilesize = *buffsize; /* logical file size */
((*fptr)->Fptr)->writemode = 1; /* read-write mode */
((*fptr)->Fptr)->datastart = DATA_UNDEFINED; /* unknown start of data */
((*fptr)->Fptr)->curbuf = -1; /* undefined current IO buffer */
((*fptr)->Fptr)->open_count = 1; /* structure is currently used once */
((*fptr)->Fptr)->validcode = VALIDSTRUC; /* flag denoting valid structure */
ffldrc(*fptr, 0, IGNORE_EOF, status); /* initialize first record */
fits_store_Fptr( (*fptr)->Fptr, status); /* store Fptr address */
return(*status);
}
/*--------------------------------------------------------------------------*/
int fits_init_cfitsio(void)
/*
initialize anything that is required before using the CFITSIO routines
*/
{
int status;
union u_tag {
short ival;
char cval[2];
} u;
fitsio_init_lock();
FFLOCK; /* lockout other threads while executing this critical */
/* section of code */
if (need_to_initialize == 0) { /* already initialized? */
FFUNLOCK;
return(0);
}
/* test for correct byteswapping. */
u.ival = 1;
if ((BYTESWAPPED && u.cval[0] != 1) ||
(BYTESWAPPED == FALSE && u.cval[1] != 1) )
{
printf ("\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
printf(" Byteswapping is not being done correctly on this system.\n");
printf(" Check the MACHINE and BYTESWAPPED definitions in fitsio2.h\n");
printf(" Please report this problem to the CFITSIO developers.\n");
printf( "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
FFUNLOCK;
return(1);
}
/* test that LONGLONG is an 8 byte integer */
if (sizeof(LONGLONG) != 8)
{
printf ("\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
printf(" CFITSIO did not find an 8-byte long integer data type.\n");
printf(" sizeof(LONGLONG) = %d\n",(int)sizeof(LONGLONG));
printf(" Please report this problem to the CFITSIO developers.\n");
printf( "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
FFUNLOCK;
return(1);
}
/* register the standard I/O drivers that are always available */
/* 1--------------------disk file driver-----------------------*/
status = fits_register_driver("file://",
file_init,
file_shutdown,
file_setoptions,
file_getoptions,
file_getversion,
file_checkfile,
file_open,
file_create,
#ifdef HAVE_FTRUNCATE
file_truncate,
#else
NULL, /* no file truncate function */
#endif
file_close,
file_remove,
file_size,
file_flush,
file_seek,
file_read,
file_write);
if (status)
{
ffpmsg("failed to register the file:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 2------------ output temporary memory file driver ----------------*/
status = fits_register_driver("mem://",
mem_init,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
NULL, /* open function not allowed */
mem_create,
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the mem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 3--------------input pre-existing memory file driver----------------*/
status = fits_register_driver("memkeep://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
NULL, /* file open driver function is not used */
NULL, /* create function not allowed */
mem_truncate,
mem_close_keep,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the memkeep:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 4-------------------stdin stream driver----------------------*/
/* the stdin stream is copied to memory then opened in memory */
status = fits_register_driver("stdin://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
stdin_checkfile,
stdin_open,
NULL, /* create function not allowed */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the stdin:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 5-------------------stdin file stream driver----------------------*/
/* the stdin stream is copied to a disk file then the disk file is opened */
status = fits_register_driver("stdinfile://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
stdin_open,
NULL, /* create function not allowed */
#ifdef HAVE_FTRUNCATE
file_truncate,
#else
NULL, /* no file truncate function */
#endif
file_close,
file_remove,
file_size,
file_flush,
file_seek,
file_read,
file_write);
if (status)
{
ffpmsg("failed to register the stdinfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 6-----------------------stdout stream driver------------------*/
status = fits_register_driver("stdout://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
NULL, /* open function not required */
mem_create,
mem_truncate,
stdout_close,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the stdout:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 7------------------iraf disk file to memory driver -----------*/
status = fits_register_driver("irafmem://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
mem_iraf_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the irafmem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 8------------------raw binary file to memory driver -----------*/
status = fits_register_driver("rawfile://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
mem_rawfile_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the rawfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 9------------------compressed disk file to memory driver -----------*/
status = fits_register_driver("compress://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
mem_compress_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the compress:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 10------------------compressed disk file to memory driver -----------*/
/* Identical to compress://, except it allows READWRITE access */
status = fits_register_driver("compressmem://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
mem_compress_openrw,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the compressmem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 11------------------compressed disk file to disk file driver -------*/
status = fits_register_driver("compressfile://",
NULL,
file_shutdown,
file_setoptions,
file_getoptions,
file_getversion,
NULL, /* checkfile not needed */
file_compress_open,
file_create,
#ifdef HAVE_FTRUNCATE
file_truncate,
#else
NULL, /* no file truncate function */
#endif
file_close,
file_remove,
file_size,
file_flush,
file_seek,
file_read,
file_write);
if (status)
{
ffpmsg("failed to register the compressfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 12---create file in memory, then compress it to disk file on close--*/
status = fits_register_driver("compressoutfile://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
NULL, /* open function not allowed */
mem_create_comp,
mem_truncate,
mem_close_comp,
file_remove, /* delete existing compressed disk file */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg(
"failed to register the compressoutfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* Register Optional drivers */
#ifdef HAVE_NET_SERVICES
/* 13--------------------root driver-----------------------*/
status = fits_register_driver("root://",
root_init,
root_shutdown,
root_setoptions,
root_getoptions,
root_getversion,
NULL, /* checkfile not needed */
root_open,
root_create,
NULL, /* No truncate possible */
root_close,
NULL, /* No remove possible */
root_size, /* no size possible */
root_flush,
root_seek, /* Though will always succeed */
root_read,
root_write);
if (status)
{
ffpmsg("failed to register the root:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 14--------------------http driver-----------------------*/
status = fits_register_driver("http://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
http_checkfile,
http_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the http:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 15--------------------http file driver-----------------------*/
status = fits_register_driver("httpfile://",
NULL,
file_shutdown,
file_setoptions,
file_getoptions,
file_getversion,
NULL, /* checkfile not needed */
http_file_open,
file_create,
#ifdef HAVE_FTRUNCATE
file_truncate,
#else
NULL, /* no file truncate function */
#endif
file_close,
file_remove,
file_size,
file_flush,
file_seek,
file_read,
file_write);
if (status)
{
ffpmsg("failed to register the httpfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 16--------------------http memory driver-----------------------*/
/* same as http:// driver, except memory file can be opened READWRITE */
status = fits_register_driver("httpmem://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
http_checkfile,
http_file_open, /* this will simply call http_open */
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the httpmem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 17--------------------httpcompress file driver-----------------------*/
status = fits_register_driver("httpcompress://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
http_compress_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the httpcompress:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 18--------------------ftp driver-----------------------*/
status = fits_register_driver("ftp://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
ftp_checkfile,
ftp_open,
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the ftp:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 19--------------------ftp file driver-----------------------*/
status = fits_register_driver("ftpfile://",
NULL,
file_shutdown,
file_setoptions,
file_getoptions,
file_getversion,
NULL, /* checkfile not needed */
ftp_file_open,
file_create,
#ifdef HAVE_FTRUNCATE
file_truncate,
#else
NULL, /* no file truncate function */
#endif
file_close,
file_remove,
file_size,
file_flush,
file_seek,
file_read,
file_write);
if (status)
{
ffpmsg("failed to register the ftpfile:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 20--------------------ftp mem driver-----------------------*/
/* same as ftp:// driver, except memory file can be opened READWRITE */
status = fits_register_driver("ftpmem://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
ftp_checkfile,
ftp_file_open, /* this will simply call ftp_open */
NULL, /* create function not required */
mem_truncate,
mem_close_free,
NULL, /* remove function not required */
mem_size,
NULL, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the ftpmem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* 21--------------------ftp compressed file driver------------------*/
status = fits_register_driver("ftpcompress://",
NULL,
mem_shutdown,
mem_setoptions,
mem_getoptions,
mem_getversion,
NULL, /* checkfile not needed */
ftp_compress_open,
0, /* create function not required */
mem_truncate,
mem_close_free,
0, /* remove function not required */
mem_size,
0, /* flush function not required */
mem_seek,
mem_read,
mem_write);
if (status)
{
ffpmsg("failed to register the ftpcompress:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* === End of net drivers section === */
#endif
/* ==================== SHARED MEMORY DRIVER SECTION ======================= */
#ifdef HAVE_SHMEM_SERVICES
/* 22--------------------shared memory driver-----------------------*/
status = fits_register_driver("shmem://",
smem_init,
smem_shutdown,
smem_setoptions,
smem_getoptions,
smem_getversion,
NULL, /* checkfile not needed */
smem_open,
smem_create,
NULL, /* truncate file not supported yet */
smem_close,
smem_remove,
smem_size,
smem_flush,
smem_seek,
smem_read,
smem_write );
if (status)
{
ffpmsg("failed to register the shmem:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
#endif
/* ==================== END OF SHARED MEMORY DRIVER SECTION ================ */
#ifdef HAVE_GSIFTP
/* 23--------------------gsiftp driver-----------------------*/
status = fits_register_driver("gsiftp://",
gsiftp_init,
gsiftp_shutdown,
gsiftp_setoptions,
gsiftp_getoptions,
gsiftp_getversion,
gsiftp_checkfile,
gsiftp_open,
gsiftp_create,
#ifdef HAVE_FTRUNCATE
gsiftp_truncate,
#else
NULL,
#endif
gsiftp_close,
NULL, /* remove function not yet implemented */
gsiftp_size,
gsiftp_flush,
gsiftp_seek,
gsiftp_read,
gsiftp_write);
if (status)
{
ffpmsg("failed to register the gsiftp:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
#endif
/* 24---------------stdin and stdout stream driver-------------------*/
status = fits_register_driver("stream://",
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
stream_open,
stream_create,
NULL, /* no stream truncate function */
stream_close,
NULL, /* no stream remove */
stream_size,
stream_flush,
stream_seek,
stream_read,
stream_write);
if (status)
{
ffpmsg("failed to register the stream:// driver (init_cfitsio)");
FFUNLOCK;
return(status);
}
/* reset flag. Any other threads will now not need to call this routine */
need_to_initialize = 0;
FFUNLOCK;
return(status);
}
/*--------------------------------------------------------------------------*/
int fits_register_driver(char *prefix,
int (*init)(void),
int (*shutdown)(void),
int (*setoptions)(int option),
int (*getoptions)(int *options),
int (*getversion)(int *version),
int (*checkfile) (char *urltype, char *infile, char *outfile),
int (*open)(char *filename, int rwmode, int *driverhandle),
int (*create)(char *filename, int *driverhandle),
int (*truncate)(int driverhandle, LONGLONG filesize),
int (*close)(int driverhandle),
int (*fremove)(char *filename),
int (*size)(int driverhandle, LONGLONG *size),
int (*flush)(int driverhandle),
int (*seek)(int driverhandle, LONGLONG offset),
int (*read) (int driverhandle, void *buffer, long nbytes),
int (*write)(int driverhandle, void *buffer, long nbytes) )
/*
register all the functions needed to support an I/O driver
*/
{
int status;
if (no_of_drivers < 0 ) {
/* This is bad. looks like memory has been corrupted. */
ffpmsg("Vital CFITSIO parameters held in memory have been corrupted!!");
ffpmsg("Fatal condition detected in fits_register_driver.");
return(TOO_MANY_DRIVERS);
}
if (no_of_drivers + 1 > MAX_DRIVERS)
return(TOO_MANY_DRIVERS);
if (prefix == NULL)
return(BAD_URL_PREFIX);
if (init != NULL)
{
status = (*init)(); /* initialize the driver */
if (status)
return(status);
}
/* fill in data in table */
strncpy(driverTable[no_of_drivers].prefix, prefix, MAX_PREFIX_LEN);
driverTable[no_of_drivers].prefix[MAX_PREFIX_LEN - 1] = 0;
driverTable[no_of_drivers].init = init;
driverTable[no_of_drivers].shutdown = shutdown;
driverTable[no_of_drivers].setoptions = setoptions;
driverTable[no_of_drivers].getoptions = getoptions;
driverTable[no_of_drivers].getversion = getversion;
driverTable[no_of_drivers].checkfile = checkfile;
driverTable[no_of_drivers].open = open;
driverTable[no_of_drivers].create = create;
driverTable[no_of_drivers].truncate = truncate;
driverTable[no_of_drivers].close = close;
driverTable[no_of_drivers].remove = fremove;
driverTable[no_of_drivers].size = size;
driverTable[no_of_drivers].flush = flush;
driverTable[no_of_drivers].seek = seek;
driverTable[no_of_drivers].read = read;
driverTable[no_of_drivers].write = write;
no_of_drivers++; /* increment the number of drivers */
return(0);
}
/*--------------------------------------------------------------------------*/
/* fits_parse_input_url */
int ffiurl(char *url, /* input filename */
char *urltype, /* e.g., 'file://', 'http://', 'mem://' */
char *infilex, /* root filename (may be complete path) */
char *outfile, /* optional output file name */
char *extspec, /* extension spec: +n or [extname, extver] */
char *rowfilterx, /* boolean row filter expression */
char *binspec, /* histogram binning specifier */
char *colspec, /* column or keyword modifier expression */
int *status)
/*
parse the input URL into its basic components.
This routine does not support the pixfilter or compspec components.
*/
{
return ffifile2(url, urltype, infilex, outfile,
extspec, rowfilterx, binspec, colspec, 0, 0, status);
}
/*--------------------------------------------------------------------------*/
/* fits_parse_input_file */
int ffifile(char *url, /* input filename */
char *urltype, /* e.g., 'file://', 'http://', 'mem://' */
char *infilex, /* root filename (may be complete path) */
char *outfile, /* optional output file name */
char *extspec, /* extension spec: +n or [extname, extver] */
char *rowfilterx, /* boolean row filter expression */
char *binspec, /* histogram binning specifier */
char *colspec, /* column or keyword modifier expression */
char *pixfilter, /* pixel filter expression */
int *status)
/*
fits_parse_input_filename
parse the input URL into its basic components.
This routine does not support the compspec component.
*/
{
return ffifile2(url, urltype, infilex, outfile,
extspec, rowfilterx, binspec, colspec, pixfilter, 0, status);
}
/*--------------------------------------------------------------------------*/
int ffifile2(char *url, /* input filename */
char *urltype, /* e.g., 'file://', 'http://', 'mem://' */
char *infilex, /* root filename (may be complete path) */
char *outfile, /* optional output file name */
char *extspec, /* extension spec: +n or [extname, extver] */
char *rowfilterx, /* boolean row filter expression */
char *binspec, /* histogram binning specifier */
char *colspec, /* column or keyword modifier expression */
char *pixfilter, /* pixel filter expression */
char *compspec, /* image compression specification */
int *status)
/*
fits_parse_input_filename
parse the input URL into its basic components.
This routine is big and ugly and should be redesigned someday!
*/
{
int ii, jj, slen, infilelen, plus_ext = 0, collen;
char *ptr1, *ptr2, *ptr3, *ptr4, *tmptr;
int hasAt, hasDot, hasOper, followingOper, spaceTerm, rowFilter;
int colStart, binStart, pixStart, compStart;
/* must have temporary variable for these, in case inputs are NULL */
char *infile;
char *rowfilter;
char *tmpstr;
if (*status > 0)
return(*status);
/* Initialize null strings */
if (infilex) *infilex = '\0';
if (urltype) *urltype = '\0';
if (outfile) *outfile = '\0';
if (extspec) *extspec = '\0';
if (binspec) *binspec = '\0';
if (colspec) *colspec = '\0';
if (rowfilterx) *rowfilterx = '\0';
if (pixfilter) *pixfilter = '\0';
if (compspec) *compspec = '\0';
slen = strlen(url);
if (slen == 0) /* blank filename ?? */
return(*status);
/* allocate memory for 3 strings, each as long as the input url */
infile = (char *) calloc(3, slen + 1);
if (!infile)
return(*status = MEMORY_ALLOCATION);
rowfilter = &infile[slen + 1];
tmpstr = &rowfilter[slen + 1];
ptr1 = url;
/* -------------------------------------------------------- */
/* get urltype (e.g., file://, ftp://, http://, etc.) */
/* --------------------------------------------------------- */
if (*ptr1 == '-' && ( *(ptr1 +1) == 0 || *(ptr1 +1) == ' ' ||
*(ptr1 +1) == '[' || *(ptr1 +1) == '(' ) )
{
/* "-" means read file from stdin. Also support "- ", */
/* "-[extname]" and '-(outfile.fits)" but exclude disk file */
/* names that begin with a minus sign, e.g., "-55d33m.fits" */
if (urltype)
strcat(urltype, "stdin://");
ptr1++;
}
else if (!strncasecmp(ptr1, "stdin", 5))
{
if (urltype)
strcat(urltype, "stdin://");
ptr1 = ptr1 + 5;
}
else
{
ptr2 = strstr(ptr1, "://");
ptr3 = strstr(ptr1, "(" );
if (ptr3 && (ptr3 < ptr2) )
{
/* the urltype follows a '(' character, so it must apply */
/* to the output file, and is not the urltype of the input file */
ptr2 = 0; /* so reset pointer to zero */
}
if (ptr2) /* copy the explicit urltype string */
{
if (urltype)
strncat(urltype, ptr1, ptr2 - ptr1 + 3);
ptr1 = ptr2 + 3;
}
else if (!strncmp(ptr1, "ftp:", 4) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "ftp://");
ptr1 += 4;
}
else if (!strncmp(ptr1, "gsiftp:", 7) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "gsiftp://");
ptr1 += 7;
}
else if (!strncmp(ptr1, "http:", 5) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "http://");
ptr1 += 5;
}
else if (!strncmp(ptr1, "mem:", 4) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "mem://");
ptr1 += 4;
}
else if (!strncmp(ptr1, "shmem:", 6) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "shmem://");
ptr1 += 6;
}
else if (!strncmp(ptr1, "file:", 5) )
{ /* the 2 //'s are optional */
if (urltype)
strcat(urltype, "file://");
ptr1 += 5;
}
else /* assume file driver */
{
if (urltype)
strcat(urltype, "file://");
}
}
/* ----------------------------------------------------------
If this is a http:// type file, then the cgi file name could
include the '[' character, which should not be interpreted
as part of CFITSIO's Extended File Name Syntax. Test for this
case by seeing if the last character is a ']' or ')'. If it
is not, then just treat the whole input string as the file name
and do not attempt to interprete the name using the extended
filename syntax.
----------------------------------------------------------- */
if (urltype && !strncmp(urltype, "http://", 7) )
{
/* test for opening parenthesis or bracket in the file name */
if( strchr(ptr1, '(' ) || strchr(ptr1, '[' ) )
{
slen = strlen(ptr1);
ptr3 = ptr1 + slen - 1;
while (*ptr3 == ' ') /* ignore trailing blanks */
ptr3--;
if (*ptr3 != ']' && *ptr3 != ')' )
{
/* name doesn't end with a ']' or ')' so don't try */
/* to parse this unusual string (may be cgi string) */
if (infilex) {
if (strlen(ptr1) > FLEN_FILENAME - 1) {
ffpmsg("Name of file is too long.");
return(*status = URL_PARSE_ERROR);
}
strcpy(infilex, ptr1);
}
free(infile);
return(*status);
}
}
}
/* ----------------------------------------------------------
Look for VMS style filenames like:
disk:[directory.subdirectory]filename.ext, or
[directory.subdirectory]filename.ext
Check if the first character is a '[' and urltype != stdin
or if there is a ':[' string in the remaining url string. If
so, then need to move past this bracket character before
search for the opening bracket of a filter specification.
----------------------------------------------------------- */
tmptr = ptr1;
if (*ptr1 == '[')
{
if (*url != '-')
tmptr = ptr1 + 1; /* this bracket encloses a VMS directory name */
}
else
{
tmptr = strstr(ptr1, ":[");
if (tmptr) /* these 2 chars are part of the VMS disk and directory */
tmptr += 2;
else
tmptr = ptr1;
}
/* ------------------------ */
/* get the input file name */
/* ------------------------ */
ptr2 = strchr(tmptr, '('); /* search for opening parenthesis ( */
ptr3 = strchr(tmptr, '['); /* search for opening bracket [ */
if (ptr2 == ptr3) /* simple case: no [ or ( in the file name */
{
strcat(infile, ptr1);
}
else if (!ptr3 || /* no bracket, so () enclose output file name */
(ptr2 && (ptr2 < ptr3)) ) /* () enclose output name before bracket */
{
strncat(infile, ptr1, ptr2 - ptr1);
ptr2++;
ptr1 = strchr(ptr2, ')' ); /* search for closing ) */
if (!ptr1)
{
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ) */
}
if (outfile) {
if (ptr1 - ptr2 > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strncat(outfile, ptr2, ptr1 - ptr2);
}
/* the opening [ could have been part of output name, */
/* e.g., file(out[compress])[3][#row > 5] */
/* so search again for opening bracket following the closing ) */
ptr3 = strchr(ptr1, '[');
}
else /* bracket comes first, so there is no output name */
{
strncat(infile, ptr1, ptr3 - ptr1);
}
/* strip off any trailing blanks in the names */
slen = strlen(infile);
while ( (--slen) > 0 && infile[slen] == ' ')
infile[slen] = '\0';
if (outfile)
{
slen = strlen(outfile);
while ( (--slen) > 0 && outfile[slen] == ' ')
outfile[slen] = '\0';
}
/* --------------------------------------------- */
/* check if this is an IRAF file (.imh extension */
/* --------------------------------------------- */
ptr4 = strstr(infile, ".imh");
/* did the infile name end with ".imh" ? */
if (ptr4 && (*(ptr4 + 4) == '\0'))
{
if (urltype)
strcpy(urltype, "irafmem://");
}
/* --------------------------------------------- */
/* check if the 'filename+n' convention has been */
/* used to specifiy which HDU number to open */
/* --------------------------------------------- */
jj = strlen(infile);
for (ii = jj - 1; ii >= 0; ii--)
{
if (infile[ii] == '+') /* search backwards for '+' sign */
break;
}
if (ii > 0 && (jj - ii) < 7) /* limit extension numbers to 5 digits */
{
infilelen = ii;
ii++;
ptr1 = infile+ii; /* pointer to start of sequence */
for (; ii < jj; ii++)
{
if (!isdigit((int) infile[ii] ) ) /* are all the chars digits? */
break;
}
if (ii == jj)
{
/* yes, the '+n' convention was used. Copy */
/* the digits to the output extspec string. */
plus_ext = 1;
if (extspec) {
if (jj - infilelen > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strncpy(extspec, ptr1, jj - infilelen);
}
infile[infilelen] = '\0'; /* delete the extension number */
}
}
/* -------------------------------------------------------------------- */
/* if '*' was given for the output name expand it to the root file name */
/* -------------------------------------------------------------------- */
if (outfile && outfile[0] == '*')
{
/* scan input name backwards to the first '/' character */
for (ii = jj - 1; ii >= 0; ii--)
{
if (infile[ii] == '/' || ii == 0)
{
if (strlen(&infile[ii + 1]) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcpy(outfile, &infile[ii + 1]);
break;
}
}
}
/* ------------------------------------------ */
/* copy strings from local copy to the output */
/* ------------------------------------------ */
if (infilex) {
if (strlen(infile) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcpy(infilex, infile);
}
/* ---------------------------------------------------------- */
/* if no '[' character in the input string, then we are done. */
/* ---------------------------------------------------------- */
if (!ptr3)
{
free(infile);
return(*status);
}
/* ------------------------------------------- */
/* see if [ extension specification ] is given */
/* ------------------------------------------- */
if (!plus_ext) /* extension no. not already specified? Then */
/* first brackets must enclose extension name or # */
/* or it encloses a image subsection specification */
/* or a raw binary image specifier */
/* or a image compression specifier */
/* Or, the extension specification may have been */
/* omitted and we have to guess what the user intended */
{
ptr1 = ptr3 + 1; /* pointer to first char after the [ */
ptr2 = strchr(ptr1, ']' ); /* search for closing ] */
if (!ptr2)
{
ffpmsg("input file URL is missing closing bracket ']'");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
/* ---------------------------------------------- */
/* First, test if this is a rawfile specifier */
/* which looks something like: '[ib512,512:2880]' */
/* Test if first character is b,i,j,d,r,f, or u, */
/* and optional second character is b or l, */
/* followed by one or more digits, */
/* finally followed by a ',', ':', or ']' */
/* ---------------------------------------------- */
if (*ptr1 == 'b' || *ptr1 == 'B' || *ptr1 == 'i' || *ptr1 == 'I' ||
*ptr1 == 'j' || *ptr1 == 'J' || *ptr1 == 'd' || *ptr1 == 'D' ||
*ptr1 == 'r' || *ptr1 == 'R' || *ptr1 == 'f' || *ptr1 == 'F' ||
*ptr1 == 'u' || *ptr1 == 'U')
{
/* next optional character may be a b or l (for Big or Little) */
ptr1++;
if (*ptr1 == 'b' || *ptr1 == 'B' || *ptr1 == 'l' || *ptr1 == 'L')
ptr1++;
if (isdigit((int) *ptr1)) /* must have at least 1 digit */
{
while (isdigit((int) *ptr1))
ptr1++; /* skip over digits */
if (*ptr1 == ',' || *ptr1 == ':' || *ptr1 == ']' )
{
/* OK, this looks like a rawfile specifier */
if (urltype)
{
if (strstr(urltype, "stdin") )
strcpy(urltype, "rawstdin://");
else
strcpy(urltype, "rawfile://");
}
/* append the raw array specifier to infilex */
if (infilex)
{
if (strlen(infilex) + strlen(ptr3) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcat(infilex, ptr3);
ptr1 = strchr(infilex, ']'); /* find the closing ] char */
if (ptr1)
*(ptr1 + 1) = '\0'; /* terminate string after the ] */
}
if (extspec)
strcpy(extspec, "0"); /* the 0 ext number is implicit */
tmptr = strchr(ptr2 + 1, '[' ); /* search for another [ char */
/* copy any remaining characters into rowfilterx */
if (tmptr && rowfilterx)
{
if (strlen(rowfilterx) + strlen(tmptr + 1) > FLEN_FILENAME -1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcat(rowfilterx, tmptr + 1);
tmptr = strchr(rowfilterx, ']' ); /* search for closing ] */
if (tmptr)
*tmptr = '\0'; /* overwrite the ] with null terminator */
}
free(infile); /* finished parsing, so return */
return(*status);
}
}
} /* end of rawfile specifier test */
/* -------------------------------------------------------- */
/* Not a rawfile, so next, test if this is an image section */
/* i.e., an integer followed by a ':' or a '*' or '-*' */
/* -------------------------------------------------------- */
ptr1 = ptr3 + 1; /* reset pointer to first char after the [ */
tmptr = ptr1;
while (*tmptr == ' ')
tmptr++; /* skip leading blanks */
while (isdigit((int) *tmptr))
tmptr++; /* skip over leading digits */
if (*tmptr == ':' || *tmptr == '*' || *tmptr == '-')
{
/* this is an image section specifier */
strcat(rowfilter, ptr3);
/*
don't want to assume 0 extension any more; may imply an image extension.
if (extspec)
strcpy(extspec, "0");
*/
}
else
{
/* -----------------------------------------------------------------
Not an image section or rawfile spec so may be an extension spec.
Examples of valid extension specifiers:
[3] - 3rd extension; 0 = primary array
[events] - events extension
[events, 2] - events extension, with EXTVER = 2
[events,2] - spaces are optional
[events, 3, b] - same as above, plus XTENSION = 'BINTABLE'
[PICS; colName(12)] - an image in row 12 of the colName column
in the PICS table extension
[PICS; colName(exposure > 1000)] - as above, but find image in
first row with with exposure column value > 1000.
[Rate Table] - extension name can contain spaces!
[Rate Table;colName(exposure>1000)]
Examples of other types of specifiers (Not extension specifiers)
[bin] !!! this is ambiguous, and can't be distinguished from
a valid extension specifier
[bini X=1:512:16] (also binb, binj, binr, and bind are allowed)
[binr (X,Y) = 5]
[bin @binfilter.txt]
[col Time;rate]
[col PI=PHA * 1.1]
[col -Time; status]
[X > 5]
[X>5]
[@filter.txt]
[StatusCol] !!! this is ambiguous, and can't be distinguished
from a valid extension specifier
[StatusCol==0]
[StatusCol || x>6]
[gtifilter()]
[regfilter("region.reg")]
[compress Rice]
There will always be some ambiguity between an extension name and
a boolean row filtering expression, (as in a couple of the above
examples). If there is any doubt, the expression should be treated
as an extension specification; The user can always add an explicit
expression specifier to override this interpretation.
The following decision logic will be used:
1) locate the first token, terminated with a space, comma,
semi-colon, or closing bracket.
2) the token is not part of an extension specifier if any of
the following is true:
- if the token begins with '@' and contains a '.'
- if the token contains an operator: = > < || &&
- if the token begins with "gtifilter(" or "regfilter("
- if the token is terminated by a space and is followed by
additional characters (not a ']') AND any of the following:
- the token is 'col'
- the token is 3 or 4 chars long and begins with 'bin'
- the second token begins with an operator:
! = < > | & + - * / %
3) otherwise, the string is assumed to be an extension specifier
----------------------------------------------------------------- */
tmptr = ptr1;
while(*tmptr == ' ')
tmptr++;
hasAt = 0;
hasDot = 0;
hasOper = 0;
followingOper = 0;
spaceTerm = 0;
rowFilter = 0;
colStart = 0;
binStart = 0;
pixStart = 0;
compStart = 0;
if (*tmptr == '@') /* test for leading @ symbol */
hasAt = 1;
if ( !strncasecmp(tmptr, "col ", 4) )
colStart = 1;
if ( !strncasecmp(tmptr, "bin", 3) )
binStart = 1;
if ( !strncasecmp(tmptr, "pix", 3) )
pixStart = 1;
if ( !strncasecmp(tmptr, "compress ", 9) ||
!strncasecmp(tmptr, "compress]", 9) )
compStart = 1;
if ( !strncasecmp(tmptr, "gtifilter(", 10) ||
!strncasecmp(tmptr, "regfilter(", 10) )
{
rowFilter = 1;
}
else
{
/* parse the first token of the expression */
for (ii = 0; ii < ptr2 - ptr1 + 1; ii++, tmptr++)
{
if (*tmptr == '.')
hasDot = 1;
else if (*tmptr == '=' || *tmptr == '>' || *tmptr == '<' ||
(*tmptr == '|' && *(tmptr+1) == '|') ||
(*tmptr == '&' && *(tmptr+1) == '&') )
hasOper = 1;
else if (*tmptr == ',' || *tmptr == ';' || *tmptr == ']')
{
break;
}
else if (*tmptr == ' ') /* a space char? */
{
while(*tmptr == ' ') /* skip spaces */
tmptr++;
if (*tmptr == ']') /* is this the end? */
break;
spaceTerm = 1; /* 1st token is terminated by space */
/* test if this is a column or binning specifier */
if (colStart || (ii <= 4 && (binStart || pixStart)) )
rowFilter = 1;
else
{
/* check if next character is an operator */
if (*tmptr == '=' || *tmptr == '>' || *tmptr == '<' ||
*tmptr == '|' || *tmptr == '&' || *tmptr == '!' ||
*tmptr == '+' || *tmptr == '-' || *tmptr == '*' ||
*tmptr == '/' || *tmptr == '%')
followingOper = 1;
}
break;
}
}
}
/* test if this is NOT an extension specifier */
if ( rowFilter || (pixStart && spaceTerm) ||
(hasAt && hasDot) ||
hasOper ||
compStart ||
(spaceTerm && followingOper) )
{
/* this is (probably) not an extension specifier */
/* so copy all chars to filter spec string */
strcat(rowfilter, ptr3);
}
else
{
/* this appears to be a legit extension specifier */
/* copy the extension specification */
if (extspec) {
if (ptr2 - ptr1 > FLEN_FILENAME - 1) {
free(infile);
return(*status = URL_PARSE_ERROR);
}
strncat(extspec, ptr1, ptr2 - ptr1);
}
/* copy any remaining chars to filter spec string */
strcat(rowfilter, ptr2 + 1);
}
}
} /* end of if (!plus_ext) */
else
{
/* ------------------------------------------------------------------ */
/* already have extension, so this must be a filter spec of some sort */
/* ------------------------------------------------------------------ */
strcat(rowfilter, ptr3);
}
/* strip off any trailing blanks from filter */
slen = strlen(rowfilter);
while ( (--slen) >= 0 && rowfilter[slen] == ' ')
rowfilter[slen] = '\0';
if (!rowfilter[0])
{
free(infile);
return(*status); /* nothing left to parse */
}
/* ------------------------------------------------ */
/* does the filter contain a binning specification? */
/* ------------------------------------------------ */
ptr1 = strstr(rowfilter, "[bin"); /* search for "[bin" */
if (!ptr1)
ptr1 = strstr(rowfilter, "[BIN"); /* search for "[BIN" */
if (!ptr1)
ptr1 = strstr(rowfilter, "[Bin"); /* search for "[Bin" */
if (ptr1)
{
ptr2 = ptr1 + 4; /* end of the '[bin' string */
if (*ptr2 == 'b' || *ptr2 == 'i' || *ptr2 == 'j' ||
*ptr2 == 'r' || *ptr2 == 'd')
ptr2++; /* skip the datatype code letter */
if ( *ptr2 != ' ' && *ptr2 != ']')
ptr1 = NULL; /* bin string must be followed by space or ] */
}
if (ptr1)
{
/* found the binning string */
if (binspec)
{
if (strlen(ptr1 +1) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcpy(binspec, ptr1 + 1);
ptr2 = strchr(binspec, ']');
if (ptr2) /* terminate the binning filter */
{
*ptr2 = '\0';
if ( *(--ptr2) == ' ') /* delete trailing spaces */
*ptr2 = '\0';
}
else
{
ffpmsg("input file URL is missing closing bracket ']'");
ffpmsg(rowfilter);
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
/* delete the binning spec from the row filter string */
ptr2 = strchr(ptr1, ']');
strcpy(tmpstr, ptr2+1); /* copy any chars after the binspec */
strcpy(ptr1, tmpstr); /* overwrite binspec */
}
/* --------------------------------------------------------- */
/* does the filter contain a column selection specification? */
/* --------------------------------------------------------- */
ptr1 = strstr(rowfilter, "[col ");
if (!ptr1)
{
ptr1 = strstr(rowfilter, "[COL ");
if (!ptr1)
ptr1 = strstr(rowfilter, "[Col ");
}
if (ptr1)
{ /* find the end of the column specifier */
ptr2 = ptr1 + 5;
while (*ptr2 != ']')
{
if (*ptr2 == '\0')
{
ffpmsg("input file URL is missing closing bracket ']'");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
if (*ptr2 == '\'') /* start of a literal string */
{
ptr2 = strchr(ptr2 + 1, '\''); /* find closing quote */
if (!ptr2)
{
ffpmsg
("literal string in input file URL is missing closing single quote");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
if (*ptr2 == '[') /* set of nested square brackets */
{
ptr2 = strchr(ptr2 + 1, ']'); /* find closing bracket */
if (!ptr2)
{
ffpmsg
("nested brackets in input file URL is missing closing bracket");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
ptr2++; /* continue search for the closing bracket character */
}
collen = ptr2 - ptr1 - 1;
if (colspec) /* copy the column specifier to output string */
{
if (collen > FLEN_FILENAME - 1) {
free(infile);
return(*status = URL_PARSE_ERROR);
}
strncpy(colspec, ptr1 + 1, collen);
colspec[collen] = '\0';
while (colspec[--collen] == ' ')
colspec[collen] = '\0'; /* strip trailing blanks */
}
/* delete the column selection spec from the row filter string */
strcpy(tmpstr, ptr2 + 1); /* copy any chars after the colspec */
strcpy(ptr1, tmpstr); /* overwrite binspec */
}
/* --------------------------------------------------------- */
/* does the filter contain a pixel filter specification? */
/* --------------------------------------------------------- */
ptr1 = strstr(rowfilter, "[pix");
if (!ptr1)
{
ptr1 = strstr(rowfilter, "[PIX");
if (!ptr1)
ptr1 = strstr(rowfilter, "[Pix");
}
if (ptr1)
{
ptr2 = ptr1 + 4; /* end of the '[pix' string */
if (*ptr2 == 'b' || *ptr2 == 'i' || *ptr2 == 'j' || *ptr2 == 'B' ||
*ptr2 == 'I' || *ptr2 == 'J' || *ptr2 == 'r' || *ptr2 == 'd' ||
*ptr2 == 'R' || *ptr2 == 'D')
ptr2++; /* skip the datatype code letter */
if (*ptr2 == '1')
ptr2++; /* skip the single HDU indicator */
if ( *ptr2 != ' ')
ptr1 = NULL; /* pix string must be followed by space */
}
if (ptr1)
{ /* find the end of the pixel filter */
while (*ptr2 != ']')
{
if (*ptr2 == '\0')
{
ffpmsg("input file URL is missing closing bracket ']'");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
if (*ptr2 == '\'') /* start of a literal string */
{
ptr2 = strchr(ptr2 + 1, '\''); /* find closing quote */
if (!ptr2)
{
ffpmsg
("literal string in input file URL is missing closing single quote");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
if (*ptr2 == '[') /* set of nested square brackets */
{
ptr2 = strchr(ptr2 + 1, ']'); /* find closing bracket */
if (!ptr2)
{
ffpmsg
("nested brackets in input file URL is missing closing bracket");
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
ptr2++; /* continue search for the closing bracket character */
}
collen = ptr2 - ptr1 - 1;
if (pixfilter) /* copy the column specifier to output string */
{
if (collen > FLEN_FILENAME - 1) {
free(infile);
return(*status = URL_PARSE_ERROR);
}
strncpy(pixfilter, ptr1 + 1, collen);
pixfilter[collen] = '\0';
while (pixfilter[--collen] == ' ')
pixfilter[collen] = '\0'; /* strip trailing blanks */
}
/* delete the pixel filter from the row filter string */
strcpy(tmpstr, ptr2 + 1); /* copy any chars after the pixel filter */
strcpy(ptr1, tmpstr); /* overwrite binspec */
}
/* ------------------------------------------------------------ */
/* does the filter contain an image compression specification? */
/* ------------------------------------------------------------ */
ptr1 = strstr(rowfilter, "[compress");
if (ptr1)
{
ptr2 = ptr1 + 9; /* end of the '[compress' string */
if ( *ptr2 != ' ' && *ptr2 != ']')
ptr1 = NULL; /* compress string must be followed by space or ] */
}
if (ptr1)
{
/* found the compress string */
if (compspec)
{
if (strlen(ptr1 +1) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcpy(compspec, ptr1 + 1);
ptr2 = strchr(compspec, ']');
if (ptr2) /* terminate the binning filter */
{
*ptr2 = '\0';
if ( *(--ptr2) == ' ') /* delete trailing spaces */
*ptr2 = '\0';
}
else
{
ffpmsg("input file URL is missing closing bracket ']'");
ffpmsg(rowfilter);
free(infile);
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
}
/* delete the compression spec from the row filter string */
ptr2 = strchr(ptr1, ']');
strcpy(tmpstr, ptr2+1); /* copy any chars after the binspec */
strcpy(ptr1, tmpstr); /* overwrite binspec */
}
/* copy the remaining string to the rowfilter output... should only */
/* contain a rowfilter expression of the form "[expr]" */
if (rowfilterx && rowfilter[0]) {
ptr2 = rowfilter + strlen(rowfilter) - 1;
if( rowfilter[0]=='[' && *ptr2==']' ) {
*ptr2 = '\0';
if (strlen(rowfilter + 1) > FLEN_FILENAME - 1)
{
free(infile);
return(*status = URL_PARSE_ERROR);
}
strcpy(rowfilterx, rowfilter+1);
} else {
ffpmsg("input file URL lacks valid row filter expression");
*status = URL_PARSE_ERROR;
}
}
free(infile);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffexist(const char *infile, /* I - input filename or URL */
int *exists, /* O - 2 = a compressed version of file exists */
/* 1 = yes, disk file exists */
/* 0 = no, disk file could not be found */
/* -1 = infile is not a disk file (could */
/* be a http, ftp, gsiftp, smem, or stdin file) */
int *status) /* I/O status */
/*
test if the input file specifier is an existing file on disk
If the specified file can't be found, it then searches for a
compressed version of the file.
*/
{
FILE *diskfile;
char rootname[FLEN_FILENAME];
char *ptr1;
if (*status > 0)
return(*status);
/* strip off any extname or filters from the name */
ffrtnm( (char *)infile, rootname, status);
ptr1 = strstr(rootname, "://");
if (ptr1 || *rootname == '-') {
if (!strncmp(rootname, "file", 4) ) {
ptr1 = ptr1 + 3; /* pointer to start of the disk file name */
} else {
*exists = -1; /* this is not a disk file */
return (*status);
}
} else {
ptr1 = rootname;
}
/* see if the disk file exists */
if (file_openfile(ptr1, 0, &diskfile)) {
/* no, couldn't open file, so see if there is a compressed version */
if (file_is_compressed(ptr1) ) {
*exists = 2; /* a compressed version of the file exists */
} else {
*exists = 0; /* neither file nor compressed version exist */
}
} else {
/* yes, file exists */
*exists = 1;
fclose(diskfile);
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffrtnm(char *url,
char *rootname,
int *status)
/*
parse the input URL, returning the root name (filetype://basename).
*/
{
int ii, jj, slen, infilelen;
char *ptr1, *ptr2, *ptr3;
char urltype[MAX_PREFIX_LEN];
char infile[FLEN_FILENAME];
if (*status > 0)
return(*status);
ptr1 = url;
*rootname = '\0';
*urltype = '\0';
*infile = '\0';
/* get urltype (e.g., file://, ftp://, http://, etc.) */
if (*ptr1 == '-') /* "-" means read file from stdin */
{
strcat(urltype, "-");
ptr1++;
}
else if (!strncmp(ptr1, "stdin", 5) || !strncmp(ptr1, "STDIN", 5))
{
strcat(urltype, "-");
ptr1 = ptr1 + 5;
}
else
{
ptr2 = strstr(ptr1, "://");
ptr3 = strstr(ptr1, "(" );
if (ptr3 && (ptr3 < ptr2) )
{
/* the urltype follows a '(' character, so it must apply */
/* to the output file, and is not the urltype of the input file */
ptr2 = 0; /* so reset pointer to zero */
}
if (ptr2) /* copy the explicit urltype string */
{
if (ptr2 - ptr1 + 3 > MAX_PREFIX_LEN - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(urltype, ptr1, ptr2 - ptr1 + 3);
ptr1 = ptr2 + 3;
}
else if (!strncmp(ptr1, "ftp:", 4) )
{ /* the 2 //'s are optional */
strcat(urltype, "ftp://");
ptr1 += 4;
}
else if (!strncmp(ptr1, "gsiftp:", 7) )
{ /* the 2 //'s are optional */
strcat(urltype, "gsiftp://");
ptr1 += 7;
}
else if (!strncmp(ptr1, "http:", 5) )
{ /* the 2 //'s are optional */
strcat(urltype, "http://");
ptr1 += 5;
}
else if (!strncmp(ptr1, "mem:", 4) )
{ /* the 2 //'s are optional */
strcat(urltype, "mem://");
ptr1 += 4;
}
else if (!strncmp(ptr1, "shmem:", 6) )
{ /* the 2 //'s are optional */
strcat(urltype, "shmem://");
ptr1 += 6;
}
else if (!strncmp(ptr1, "file:", 5) )
{ /* the 2 //'s are optional */
ptr1 += 5;
}
/* else assume file driver */
}
/* get the input file name */
ptr2 = strchr(ptr1, '('); /* search for opening parenthesis ( */
ptr3 = strchr(ptr1, '['); /* search for opening bracket [ */
if (ptr2 == ptr3) /* simple case: no [ or ( in the file name */
{
if (strlen(ptr1) > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strcat(infile, ptr1);
}
else if (!ptr3) /* no bracket, so () enclose output file name */
{
if (ptr2 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(infile, ptr1, ptr2 - ptr1);
ptr2++;
ptr1 = strchr(ptr2, ')' ); /* search for closing ) */
if (!ptr1)
return(*status = URL_PARSE_ERROR); /* error, no closing ) */
}
else if (ptr2 && (ptr2 < ptr3)) /* () enclose output name before bracket */
{
if (ptr2 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(infile, ptr1, ptr2 - ptr1);
ptr2++;
ptr1 = strchr(ptr2, ')' ); /* search for closing ) */
if (!ptr1)
return(*status = URL_PARSE_ERROR); /* error, no closing ) */
}
else /* bracket comes first, so there is no output name */
{
if (ptr3 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(infile, ptr1, ptr3 - ptr1);
}
/* strip off any trailing blanks in the names */
slen = strlen(infile);
for (ii = slen - 1; ii > 0; ii--)
{
if (infile[ii] == ' ')
infile[ii] = '\0';
else
break;
}
/* --------------------------------------------- */
/* check if the 'filename+n' convention has been */
/* used to specifiy which HDU number to open */
/* --------------------------------------------- */
jj = strlen(infile);
for (ii = jj - 1; ii >= 0; ii--)
{
if (infile[ii] == '+') /* search backwards for '+' sign */
break;
}
if (ii > 0 && (jj - ii) < 5) /* limit extension numbers to 4 digits */
{
infilelen = ii;
ii++;
for (; ii < jj; ii++)
{
if (!isdigit((int) infile[ii] ) ) /* are all the chars digits? */
break;
}
if (ii == jj)
{
/* yes, the '+n' convention was used. */
infile[infilelen] = '\0'; /* delete the extension number */
}
}
if (strlen(urltype) + strlen(infile) > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strcat(rootname, urltype); /* construct the root name */
strcat(rootname, infile);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffourl(char *url, /* I - full input URL */
char *urltype, /* O - url type */
char *outfile, /* O - base file name */
char *tpltfile, /* O - template file name, if any */
char *compspec, /* O - compression specification, if any */
int *status)
/*
parse the output URL into its basic components.
*/
{
char *ptr1, *ptr2, *ptr3;
if (*status > 0)
return(*status);
if (urltype)
*urltype = '\0';
if (outfile)
*outfile = '\0';
if (tpltfile)
*tpltfile = '\0';
if (compspec)
*compspec = '\0';
ptr1 = url;
while (*ptr1 == ' ') /* ignore leading blanks */
ptr1++;
if ( ( (*ptr1 == '-') && ( *(ptr1 +1) == 0 || *(ptr1 +1) == ' ' ) )
|| !strcmp(ptr1, "stdout")
|| !strcmp(ptr1, "STDOUT"))
/* "-" means write to stdout; also support "- " */
/* but exclude disk file names that begin with a minus sign */
/* e.g., "-55d33m.fits" */
{
if (urltype)
strcpy(urltype, "stdout://");
}
else
{
/* not writing to stdout */
/* get urltype (e.g., file://, ftp://, http://, etc.) */
ptr2 = strstr(ptr1, "://");
if (ptr2) /* copy the explicit urltype string */
{
if (urltype) {
if (ptr2 - ptr1 + 3 > MAX_PREFIX_LEN - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(urltype, ptr1, ptr2 - ptr1 + 3);
}
ptr1 = ptr2 + 3;
}
else /* assume file driver */
{
if (urltype)
strcat(urltype, "file://");
}
/* look for template file name, enclosed in parenthesis */
ptr2 = strchr(ptr1, '(');
/* look for image compression parameters, enclosed in sq. brackets */
ptr3 = strchr(ptr1, '[');
if (outfile)
{
if (ptr2) { /* template file was specified */
if (ptr2 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(outfile, ptr1, ptr2 - ptr1);
} else if (ptr3) { /* compression was specified */
if (ptr3 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(outfile, ptr1, ptr3 - ptr1);
} else { /* no template file or compression */
if (strlen(ptr1) > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strcpy(outfile, ptr1);
}
}
if (ptr2) /* template file was specified */
{
ptr2++;
ptr1 = strchr(ptr2, ')' ); /* search for closing ) */
if (!ptr1)
{
return(*status = URL_PARSE_ERROR); /* error, no closing ) */
}
if (tpltfile) {
if (ptr1 - ptr2 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(tpltfile, ptr2, ptr1 - ptr2);
}
}
if (ptr3) /* compression was specified */
{
ptr3++;
ptr1 = strchr(ptr3, ']' ); /* search for closing ] */
if (!ptr1)
{
return(*status = URL_PARSE_ERROR); /* error, no closing ] */
}
if (compspec) {
if (ptr1 - ptr3 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(compspec, ptr3, ptr1 - ptr3);
}
}
/* check if a .gz compressed output file is to be created */
/* by seeing if the filename ends in '.gz' */
if (urltype && outfile)
{
if (!strcmp(urltype, "file://") )
{
ptr1 = strstr(outfile, ".gz");
if (ptr1)
{ /* make sure the ".gz" is at the end of the file name */
ptr1 += 3;
if (*ptr1 == 0 || *ptr1 == ' ' )
strcpy(urltype, "compressoutfile://");
}
}
}
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffexts(char *extspec,
int *extnum,
char *extname,
int *extvers,
int *hdutype,
char *imagecolname,
char *rowexpress,
int *status)
{
/*
Parse the input extension specification string, returning either the
extension number or the values of the EXTNAME, EXTVERS, and XTENSION
keywords in desired extension. Also return the name of the column containing
an image, and an expression to be used to determine which row to use,
if present.
*/
char *ptr1, *ptr2;
int slen, nvals;
int notint = 1; /* initially assume specified extname is not an integer */
char tmpname[FLEN_VALUE], *loc;
*extnum = 0;
*extname = '\0';
*extvers = 0;
*hdutype = ANY_HDU;
*imagecolname = '\0';
*rowexpress = '\0';
if (*status > 0)
return(*status);
ptr1 = extspec; /* pointer to first char */
while (*ptr1 == ' ') /* skip over any leading blanks */
ptr1++;
if (isdigit((int) *ptr1)) /* is the extension specification a number? */
{
notint = 0; /* looks like extname may actually be the ext. number */
errno = 0; /* reset this prior to calling strtol */
*extnum = strtol(ptr1, &loc, 10); /* read the string as an integer */
while (*loc == ' ') /* skip over trailing blanks */
loc++;
/* check for read error, or junk following the integer */
if ((*loc != '\0' && *loc != ';' ) || (errno == ERANGE) )
{
*extnum = 0;
notint = 1; /* no, extname was not a simple integer after all */
errno = 0; /* reset error condition flag if it was set */
}
if ( *extnum < 0 || *extnum > 99999)
{
*extnum = 0; /* this is not a reasonable extension number */
ffpmsg("specified extension number is out of range:");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
}
/* This logic was too simple, and failed on extnames like '1000TEMP'
where it would try to move to the 1000th extension
if (isdigit((int) *ptr1))
{
sscanf(ptr1, "%d", extnum);
if (*extnum < 0 || *extnum > 9999)
{
*extnum = 0;
ffpmsg("specified extension number is out of range:");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
}
*/
if (notint)
{
/* not a number, so EXTNAME must be specified, followed by */
/* optional EXTVERS and XTENSION values */
/* don't use space char as end indicator, because there */
/* may be imbedded spaces in the EXTNAME value */
slen = strcspn(ptr1, ",:;"); /* length of EXTNAME */
if (slen > FLEN_VALUE - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(extname, ptr1, slen); /* EXTNAME value */
/* now remove any trailing blanks */
while (slen > 0 && *(extname + slen -1) == ' ')
{
*(extname + slen -1) = '\0';
slen--;
}
ptr1 += slen;
slen = strspn(ptr1, " ,:"); /* skip delimiter characters */
ptr1 += slen;
slen = strcspn(ptr1, " ,:;"); /* length of EXTVERS */
if (slen)
{
nvals = sscanf(ptr1, "%d", extvers); /* EXTVERS value */
if (nvals != 1)
{
ffpmsg("illegal EXTVER value in input URL:");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
ptr1 += slen;
slen = strspn(ptr1, " ,:"); /* skip delimiter characters */
ptr1 += slen;
slen = strcspn(ptr1, ";"); /* length of HDUTYPE */
if (slen)
{
if (*ptr1 == 'b' || *ptr1 == 'B')
*hdutype = BINARY_TBL;
else if (*ptr1 == 't' || *ptr1 == 'T' ||
*ptr1 == 'a' || *ptr1 == 'A')
*hdutype = ASCII_TBL;
else if (*ptr1 == 'i' || *ptr1 == 'I')
*hdutype = IMAGE_HDU;
else
{
ffpmsg("unknown type of HDU in input URL:");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
}
}
else
{
strcpy(tmpname, extname);
ffupch(tmpname);
if (!strcmp(tmpname, "PRIMARY") || !strcmp(tmpname, "P") )
*extname = '\0'; /* return extnum = 0 */
}
}
ptr1 = strchr(ptr1, ';');
if (ptr1)
{
/* an image is to be opened; the image is contained in a single */
/* cell of a binary table. A column name and an expression to */
/* determine which row to use has been entered. */
ptr1++; /* skip over the ';' delimiter */
while (*ptr1 == ' ') /* skip over any leading blanks */
ptr1++;
ptr2 = strchr(ptr1, '(');
if (!ptr2)
{
ffpmsg("illegal specification of image in table cell in input URL:");
ffpmsg(" did not find a row expression enclosed in ( )");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
if (ptr2 - ptr1 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(imagecolname, ptr1, ptr2 - ptr1); /* copy column name */
ptr2++; /* skip over the '(' delimiter */
while (*ptr2 == ' ') /* skip over any leading blanks */
ptr2++;
ptr1 = strchr(ptr2, ')');
if (!ptr2)
{
ffpmsg("illegal specification of image in table cell in input URL:");
ffpmsg(" missing closing ')' character in row expression");
ffpmsg(extspec);
return(*status = URL_PARSE_ERROR);
}
if (ptr1 - ptr2 > FLEN_FILENAME - 1)
{
return(*status = URL_PARSE_ERROR);
}
strncat(rowexpress, ptr2, ptr1 - ptr2); /* row expression */
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffextn(char *url, /* I - input filename/URL */
int *extension_num, /* O - returned extension number */
int *status)
{
/*
Parse the input url string and return the number of the extension that
CFITSIO would automatically move to if CFITSIO were to open this input URL.
The extension numbers are one's based, so 1 = the primary array, 2 = the
first extension, etc.
The extension number that gets returned is determined by the following
algorithm:
1. If the input URL includes a binning specification (e.g.
'myfile.fits[3][bin X,Y]') then the returned extension number
will always = 1, since CFITSIO would create a temporary primary
image on the fly in this case. The same is true if an image
within a single cell of a binary table is opened.
2. Else if the input URL specifies an extension number (e.g.,
'myfile.fits[3]' or 'myfile.fits+3') then the specified extension
number (+ 1) is returned.
3. Else if the extension name is specified in brackets
(e.g., this 'myfile.fits[EVENTS]') then the file will be opened and searched
for the extension number. If the input URL is '-' (reading from the stdin
file stream) this is not possible and an error will be returned.
4. Else if the URL does not specify an extension (e.g. 'myfile.fits') then
a special extension number = -99 will be returned to signal that no
extension was specified. This feature is mainly for compatibility with
existing FTOOLS software. CFITSIO would open the primary array by default
(extension_num = 1) in this case.
*/
fitsfile *fptr;
char urltype[20];
char infile[FLEN_FILENAME];
char outfile[FLEN_FILENAME];
char extspec[FLEN_FILENAME];
char extname[FLEN_FILENAME];
char rowfilter[FLEN_FILENAME];
char binspec[FLEN_FILENAME];
char colspec[FLEN_FILENAME];
char imagecolname[FLEN_VALUE], rowexpress[FLEN_FILENAME];
char *cptr;
int extnum, extvers, hdutype, tstatus = 0;
if (*status > 0)
return(*status);
/* parse the input URL into its basic components */
fits_parse_input_url(url, urltype, infile, outfile,
extspec, rowfilter,binspec, colspec, status);
if (*status > 0)
return(*status);
if (*binspec) /* is there a binning specification? */
{
*extension_num = 1; /* a temporary primary array image is created */
return(*status);
}
if (*extspec) /* is an extension specified? */
{
ffexts(extspec, &extnum,
extname, &extvers, &hdutype, imagecolname, rowexpress, status);
if (*status > 0)
return(*status);
if (*imagecolname) /* is an image within a table cell being opened? */
{
*extension_num = 1; /* a temporary primary array image is created */
return(*status);
}
if (*extname)
{
/* have to open the file to search for the extension name (curses!) */
if (!strcmp(urltype, "stdin://"))
/* opening stdin would destroying it! */
return(*status = URL_PARSE_ERROR);
/* First, strip off any filtering specification */
infile[0] = '\0';
strncat(infile, url, FLEN_FILENAME -1);
cptr = strchr(infile, ']'); /* locate the closing bracket */
if (!cptr)
{
return(*status = URL_PARSE_ERROR);
}
else
{
cptr++;
*cptr = '\0'; /* terminate URl after the extension spec */
}
if (ffopen(&fptr, infile, READONLY, status) > 0) /* open the file */
{
ffclos(fptr, &tstatus);
return(*status);
}
ffghdn(fptr, &extnum); /* where am I in the file? */
*extension_num = extnum;
ffclos(fptr, status);
return(*status);
}
else
{
*extension_num = extnum + 1; /* return the specified number (+ 1) */
return(*status);
}
}
else
{
*extension_num = -99; /* no specific extension was specified */
/* defaults to primary array */
return(*status);
}
}
/*--------------------------------------------------------------------------*/
int ffurlt(fitsfile *fptr, char *urlType, int *status)
/*
return the prefix string associated with the driver in use by the
fitsfile pointer fptr
*/
{
strcpy(urlType, driverTable[fptr->Fptr->driver].prefix);
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffimport_file( char *filename, /* Text file to read */
char **contents, /* Pointer to pointer to hold file */
int *status ) /* CFITSIO error code */
/*
Read and concatenate all the lines from the given text file. User
must free the pointer returned in contents. Pointer is guaranteed
to hold 2 characters more than the length of the text... allows the
calling routine to append (or prepend) a newline (or quotes?) without
reallocating memory.
*/
{
int allocLen, totalLen, llen, eoline = 1;
char *lines,line[256];
FILE *aFile;
if( *status > 0 ) return( *status );
totalLen = 0;
allocLen = 1024;
lines = (char *)malloc( allocLen * sizeof(char) );
if( !lines ) {
ffpmsg("Couldn't allocate memory to hold ASCII file contents.");
return(*status = MEMORY_ALLOCATION );
}
lines[0] = '\0';
if( (aFile = fopen( filename, "r" ))==NULL ) {
sprintf(line,"Could not open ASCII file %s.",filename);
ffpmsg(line);
free( lines );
return(*status = FILE_NOT_OPENED);
}
while( fgets(line,256,aFile)!=NULL ) {
llen = strlen(line);
if ( eoline && (llen > 1) && (line[0] == '/' && line[1] == '/'))
continue; /* skip comment lines begging with // */
eoline = 0;
/* replace CR and newline chars at end of line with nulls */
if ((llen > 0) && (line[llen-1]=='\n' || line[llen-1] == '\r')) {
line[--llen] = '\0';
eoline = 1; /* found an end of line character */
if ((llen > 0) && (line[llen-1]=='\n' || line[llen-1] == '\r')) {
line[--llen] = '\0';
}
}
if( totalLen + llen + 3 >= allocLen ) {
allocLen += 256;
lines = (char *)realloc(lines, allocLen * sizeof(char) );
if( ! lines ) {
ffpmsg("Couldn't allocate memory to hold ASCII file contents.");
*status = MEMORY_ALLOCATION;
break;
}
}
strcpy( lines+totalLen, line );
totalLen += llen;
if (eoline) {
strcpy( lines+totalLen, " "); /* add a space between lines */
totalLen += 1;
}
}
fclose(aFile);
*contents = lines;
return( *status );
}
/*--------------------------------------------------------------------------*/
int fits_get_token(char **ptr,
char *delimiter,
char *token,
int *isanumber) /* O - is this token a number? */
/*
parse off the next token, delimited by a character in 'delimiter',
from the input ptr string; increment *ptr to the end of the token.
Returns the length of the token, not including the delimiter char;
*/
{
char *loc, tval[73];
int slen;
double dval;
*token = '\0';
while (**ptr == ' ') /* skip over leading blanks */
(*ptr)++;
slen = strcspn(*ptr, delimiter); /* length of next token */
if (slen)
{
strncat(token, *ptr, slen); /* copy token */
(*ptr) += slen; /* skip over the token */
if (isanumber) /* check if token is a number */
{
*isanumber = 1;
if (strchr(token, 'D')) {
strncpy(tval, token, 72);
tval[72] = '\0';
/* The C language does not support a 'D'; replace with 'E' */
if (loc = strchr(tval, 'D')) *loc = 'E';
dval = strtod(tval, &loc);
} else {
dval = strtod(token, &loc);
}
/* check for read error, or junk following the value */
if (*loc != '\0' && *loc != ' ' ) *isanumber = 0;
if (errno == ERANGE) *isanumber = 0;
}
}
return(slen);
}
/*--------------------------------------------------------------------------*/
int fits_get_token2(char **ptr,
char *delimiter,
char **token,
int *isanumber, /* O - is this token a number? */
int *status)
/*
parse off the next token, delimited by a character in 'delimiter',
from the input ptr string; increment *ptr to the end of the token.
Returns the length of the token, not including the delimiter char;
This routine allocates the *token string; the calling routine must free it
*/
{
char *loc, tval[73];
int slen;
double dval;
if (*status)
return(0);
while (**ptr == ' ') /* skip over leading blanks */
(*ptr)++;
slen = strcspn(*ptr, delimiter); /* length of next token */
if (slen)
{
*token = (char *) calloc(slen + 1, 1);
if (!(*token)) {
ffpmsg("Couldn't allocate memory to hold token string (fits_get_token2).");
*status = MEMORY_ALLOCATION ;
return(0);
}
strncat(*token, *ptr, slen); /* copy token */
(*ptr) += slen; /* skip over the token */
if (isanumber) /* check if token is a number */
{
*isanumber = 1;
if (strchr(*token, 'D')) {
strncpy(tval, *token, 72);
tval[72] = '\0';
/* The C language does not support a 'D'; replace with 'E' */
if (loc = strchr(tval, 'D')) *loc = 'E';
dval = strtod(tval, &loc);
} else {
dval = strtod(*token, &loc);
}
/* check for read error, or junk following the value */
if (*loc != '\0' && *loc != ' ' ) *isanumber = 0;
if (errno == ERANGE) *isanumber = 0;
}
}
return(slen);
}
/*---------------------------------------------------------------------------*/
char *fits_split_names(
char *list) /* I - input list of names */
{
/*
A sequence of calls to fits_split_names will split the input string
into name tokens. The string typically contains a list of file or
column names. The names must be delimited by a comma and/or spaces.
This routine ignores spaces and commas that occur within parentheses,
brackets, or curly brackets. It also strips any leading and trailing
blanks from the returned name.
This routine is similar to the ANSI C 'strtok' function:
The first call to fits_split_names has a non-null input string.
It finds the first name in the string and terminates it by
overwriting the next character of the string with a '\0' and returns
a pointer to the name. Each subsequent call, indicated by a NULL
value of the input string, returns the next name, searching from
just past the end of the previous name. It returns NULL when no
further names are found.
The following line illustrates how a string would be split into 3 names:
myfile[1][bin (x,y)=4], file2.fits file3.fits
^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^
1st name 2nd name 3rd name
NOTE: This routine is not thread-safe.
This routine is simply provided as a utility routine for other external
software. It is not used by any CFITSIO routine.
*/
int depth = 0;
char *start;
static char *ptr;
if (list) /* reset ptr if a string is given */
ptr = list;
while (*ptr == ' ')ptr++; /* skip leading white space */
if (*ptr == '\0')return(0); /* no remaining file names */
start = ptr;
while (*ptr != '\0') {
if ((*ptr == '[') || (*ptr == '(') || (*ptr == '{')) depth ++;
else if ((*ptr == '}') || (*ptr == ')') || (*ptr == ']')) depth --;
else if ((depth == 0) && (*ptr == ',' || *ptr == ' ')) {
*ptr = '\0'; /* terminate the filename here */
ptr++; /* save pointer to start of next filename */
break;
}
ptr++;
}
return(start);
}
/*--------------------------------------------------------------------------*/
int urltype2driver(char *urltype, int *driver)
/*
compare input URL with list of known drivers, returning the
matching driver numberL.
*/
{
int ii;
/* find matching driver; search most recent drivers first */
for (ii=no_of_drivers - 1; ii >= 0; ii--)
{
if (0 == strcmp(driverTable[ii].prefix, urltype))
{
*driver = ii;
return(0);
}
}
return(NO_MATCHING_DRIVER);
}
/*--------------------------------------------------------------------------*/
int ffclos(fitsfile *fptr, /* I - FITS file pointer */
int *status) /* IO - error status */
/*
close the FITS file by completing the current HDU, flushing it to disk,
then calling the system dependent routine to physically close the FITS file
*/
{
int tstatus = NO_CLOSE_ERROR, zerostatus = 0;
if (!fptr)
return(*status = NULL_INPUT_PTR);
else if ((fptr->Fptr)->validcode != VALIDSTRUC) /* check for magic value */
return(*status = BAD_FILEPTR);
/* close and flush the current HDU */
if (*status > 0)
ffchdu(fptr, &tstatus); /* turn off the error message from ffchdu */
else
ffchdu(fptr, status);
((fptr->Fptr)->open_count)--; /* decrement usage counter */
if ((fptr->Fptr)->open_count == 0) /* if no other files use structure */
{
ffflsh(fptr, TRUE, status); /* flush and disassociate IO buffers */
/* call driver function to actually close the file */
if ((*driverTable[(fptr->Fptr)->driver].close)((fptr->Fptr)->filehandle))
{
if (*status <= 0)
{
*status = FILE_NOT_CLOSED; /* report if no previous error */
ffpmsg("failed to close the following file: (ffclos)");
ffpmsg((fptr->Fptr)->filename);
}
}
fits_clear_Fptr( fptr->Fptr, status); /* clear Fptr address */
free((fptr->Fptr)->iobuffer); /* free memory for I/O buffers */
free((fptr->Fptr)->headstart); /* free memory for headstart array */
free((fptr->Fptr)->filename); /* free memory for the filename */
(fptr->Fptr)->filename = 0;
(fptr->Fptr)->validcode = 0; /* magic value to indicate invalid fptr */
free(fptr->Fptr); /* free memory for the FITS file structure */
free(fptr); /* free memory for the FITS file structure */
}
else
{
/*
to minimize the fallout from any previous error (e.g., trying to
open a non-existent extension in a already opened file),
always call ffflsh with status = 0.
*/
/* just flush the buffers, don't disassociate them */
if (*status > 0)
ffflsh(fptr, FALSE, &zerostatus);
else
ffflsh(fptr, FALSE, status);
free(fptr); /* free memory for the FITS file structure */
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffdelt(fitsfile *fptr, /* I - FITS file pointer */
int *status) /* IO - error status */
/*
close and DELETE the FITS file.
*/
{
char *basename;
int slen, tstatus = 0;
if (!fptr)
return(*status = NULL_INPUT_PTR);
else if ((fptr->Fptr)->validcode != VALIDSTRUC) /* check for magic value */
return(*status = BAD_FILEPTR);
ffchdu(fptr, status); /* close the current HDU, ignore any errors */
ffflsh(fptr, TRUE, status); /* flush and disassociate IO buffers */
/* call driver function to actually close the file */
if ( (*driverTable[(fptr->Fptr)->driver].close)((fptr->Fptr)->filehandle) )
{
if (*status <= 0)
{
*status = FILE_NOT_CLOSED; /* report error if no previous error */
ffpmsg("failed to close the following file: (ffdelt)");
ffpmsg((fptr->Fptr)->filename);
}
}
/* call driver function to actually delete the file */
if ( (driverTable[(fptr->Fptr)->driver].remove) )
{
/* parse the input URL to get the base filename */
slen = strlen((fptr->Fptr)->filename);
basename = (char *) malloc(slen +1);
if (!basename)
return(*status = MEMORY_ALLOCATION);
fits_parse_input_url((fptr->Fptr)->filename, NULL, basename, NULL, NULL, NULL, NULL,
NULL, &tstatus);
if ((*driverTable[(fptr->Fptr)->driver].remove)(basename))
{
ffpmsg("failed to delete the following file: (ffdelt)");
ffpmsg((fptr->Fptr)->filename);
if (!(*status))
*status = FILE_NOT_CLOSED;
}
free(basename);
}
fits_clear_Fptr( fptr->Fptr, status); /* clear Fptr address */
free((fptr->Fptr)->iobuffer); /* free memory for I/O buffers */
free((fptr->Fptr)->headstart); /* free memory for headstart array */
free((fptr->Fptr)->filename); /* free memory for the filename */
(fptr->Fptr)->filename = 0;
(fptr->Fptr)->validcode = 0; /* magic value to indicate invalid fptr */
free(fptr->Fptr); /* free memory for the FITS file structure */
free(fptr); /* free memory for the FITS file structure */
return(*status);
}
/*--------------------------------------------------------------------------*/
int fftrun( fitsfile *fptr, /* I - FITS file pointer */
LONGLONG filesize, /* I - size to truncate the file */
int *status) /* O - error status */
/*
low level routine to truncate a file to a new smaller size.
*/
{
if (driverTable[(fptr->Fptr)->driver].truncate)
{
ffflsh(fptr, FALSE, status); /* flush all the buffers first */
(fptr->Fptr)->filesize = filesize;
(fptr->Fptr)->io_pos = filesize;
(fptr->Fptr)->logfilesize = filesize;
(fptr->Fptr)->bytepos = filesize;
ffbfeof(fptr, status); /* eliminate any buffers beyond current EOF */
return (*status =
(*driverTable[(fptr->Fptr)->driver].truncate)((fptr->Fptr)->filehandle,
filesize) );
}
else
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffflushx( FITSfile *fptr) /* I - FITS file pointer */
/*
low level routine to flush internal file buffers to the file.
*/
{
if (driverTable[fptr->driver].flush)
return ( (*driverTable[fptr->driver].flush)(fptr->filehandle) );
else
return(0); /* no flush function defined for this driver */
}
/*--------------------------------------------------------------------------*/
int ffseek( FITSfile *fptr, /* I - FITS file pointer */
LONGLONG position) /* I - byte position to seek to */
/*
low level routine to seek to a position in a file.
*/
{
return( (*driverTable[fptr->driver].seek)(fptr->filehandle, position) );
}
/*--------------------------------------------------------------------------*/
int ffwrite( FITSfile *fptr, /* I - FITS file pointer */
long nbytes, /* I - number of bytes to write */
void *buffer, /* I - buffer to write */
int *status) /* O - error status */
/*
low level routine to write bytes to a file.
*/
{
if ( (*driverTable[fptr->driver].write)(fptr->filehandle, buffer, nbytes) )
{
ffpmsg("Error writing data buffer to file:");
ffpmsg(fptr->filename);
*status = WRITE_ERROR;
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffread( FITSfile *fptr, /* I - FITS file pointer */
long nbytes, /* I - number of bytes to read */
void *buffer, /* O - buffer to read into */
int *status) /* O - error status */
/*
low level routine to read bytes from a file.
*/
{
int readstatus;
readstatus = (*driverTable[fptr->driver].read)(fptr->filehandle,
buffer, nbytes);
if (readstatus == END_OF_FILE)
*status = END_OF_FILE;
else if (readstatus > 0)
{
ffpmsg("Error reading data buffer from file:");
ffpmsg(fptr->filename);
*status = READ_ERROR;
}
return(*status);
}
/*--------------------------------------------------------------------------*/
int fftplt(fitsfile **fptr, /* O - FITS file pointer */
const char *filename, /* I - name of file to create */
const char *tempname, /* I - name of template file */
int *status) /* IO - error status */
/*
Create and initialize a new FITS file based on a template file.
Uses C fopen and fgets functions.
*/
{
if (*status > 0)
return(*status);
if ( ffinit(fptr, filename, status) ) /* create empty file */
return(*status);
ffoptplt(*fptr, tempname, status); /* open and use template */
return(*status);
}
/*--------------------------------------------------------------------------*/
int ffoptplt(fitsfile *fptr, /* O - FITS file pointer */
const char *tempname, /* I - name of template file */
int *status) /* IO - error status */
/*
open template file and use it to create new file
*/
{
fitsfile *tptr;
int tstatus = 0, nkeys, nadd, ii;
char card[FLEN_CARD];
if (*status > 0)
return(*status);
if (tempname == NULL || *tempname == '\0') /* no template file? */
return(*status);
/* try opening template */
ffopen(&tptr, (char *) tempname, READONLY, &tstatus);
if (tstatus) /* not a FITS file, so treat it as an ASCII template */
{
ffxmsg(2, card); /* clear the error message */
fits_execute_template(fptr, (char *) tempname, status);
ffmahd(fptr, 1, 0, status); /* move back to the primary array */
return(*status);
}
else /* template is a valid FITS file */
{
ffmahd(tptr, 1, NULL, status); /* make sure we are at the beginning */
while (*status <= 0)
{
ffghsp(tptr, &nkeys, &nadd, status); /* get no. of keywords */
for (ii = 1; ii <= nkeys; ii++) /* copy keywords */
{
ffgrec(tptr, ii, card, status);
/* must reset the PCOUNT keyword to zero in the new output file */
if (strncmp(card, "PCOUNT ",8) == 0) { /* the PCOUNT keyword? */
if (strncmp(card+25, " 0", 5)) { /* non-zero value? */
strncpy(card, "PCOUNT = 0", 30);
}
}
ffprec(fptr, card, status);
}
ffmrhd(tptr, 1, 0, status); /* move to next HDU until error */
ffcrhd(fptr, status); /* create empty new HDU in output file */
}
if (*status == END_OF_FILE)
{
*status = 0; /* expected error condition */
}
ffclos(tptr, status); /* close the template file */
}
ffmahd(fptr, 1, 0, status); /* move to the primary array */
return(*status);
}
/*--------------------------------------------------------------------------*/
void ffrprt( FILE *stream, int status)
/*
Print out report of cfitsio error status and messages on the error stack.
Uses C FILE stream.
*/
{
char status_str[FLEN_STATUS], errmsg[FLEN_ERRMSG];
if (status)
{
fits_get_errstatus(status, status_str); /* get the error description */
fprintf(stream, "\nFITSIO status = %d: %s\n", status, status_str);
while ( fits_read_errmsg(errmsg) ) /* get error stack messages */
fprintf(stream, "%s\n", errmsg);
}
return;
}
/*--------------------------------------------------------------------------*/
int pixel_filter_helper(
fitsfile **fptr, /* IO - pointer to input image; on output it */
/* points to the new image */
char *outfile, /* I - name for output file */
char *expr, /* I - Image filter expression */
int *status)
{
PixelFilter filter = { 0 };
char * DEFAULT_TAG = "X";
int ii, hdunum;
int singleHDU = 0;
filter.count = 1;
filter.ifptr = fptr;
filter.tag = &DEFAULT_TAG;
/* create new empty file for result */
if (ffinit(&filter.ofptr, outfile, status) > 0)
{
ffpmsg("failed to create output file for pixel filter:");
ffpmsg(outfile);
return(*status);
}
fits_get_hdu_num(*fptr, &hdunum); /* current HDU number in input file */
expr += 3; /* skip 'pix' */
switch (expr[0]) {
case 'b':
case 'B': filter.bitpix = BYTE_IMG; break;
case 'i':
case 'I': filter.bitpix = SHORT_IMG; break;
case 'j':
case 'J': filter.bitpix = LONG_IMG; break;
case 'r':
case 'R': filter.bitpix = FLOAT_IMG; break;
case 'd':
case 'D': filter.bitpix = DOUBLE_IMG; break;
}
if (filter.bitpix) /* skip bitpix indicator */
++expr;
if (*expr == '1') {
++expr;
singleHDU = 1;
}
if (((*fptr)->Fptr)->only_one)
singleHDU = 1;
if (*expr != ' ') {
ffpmsg("pixel filtering expression not space separated:");
ffpmsg(expr);
}
while (*expr == ' ')
++expr;
/* copy all preceding extensions to the output file */
for (ii = 1; !singleHDU && ii < hdunum; ii++)
{
fits_movabs_hdu(*fptr, ii, NULL, status);
if (fits_copy_hdu(*fptr, filter.ofptr, 0, status) > 0)
{
ffclos(filter.ofptr, status);
return(*status);
}
}
/* move back to the original HDU position */
fits_movabs_hdu(*fptr, hdunum, NULL, status);
filter.expression = expr;
if (fits_pixel_filter(&filter, status)) {
ffpmsg("failed to execute image filter:");
ffpmsg(expr);
ffclos(filter.ofptr, status);
return(*status);
}
/* copy any remaining HDUs to the output file */
for (ii = hdunum + 1; !singleHDU; ii++)
{
if (fits_movabs_hdu(*fptr, ii, NULL, status) > 0)
break;
fits_copy_hdu(*fptr, filter.ofptr, 0, status);
}
if (*status == END_OF_FILE)
*status = 0; /* got the expected EOF error; reset = 0 */
else if (*status > 0)
{
ffclos(filter.ofptr, status);
return(*status);
}
/* close the original file and return ptr to the new image */
ffclos(*fptr, status);
*fptr = filter.ofptr; /* reset the pointer to the new table */
/* move back to the image subsection */
if (ii - 1 != hdunum)
fits_movabs_hdu(*fptr, hdunum, NULL, status);
return(*status);
}
|