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
|
/*****************************************************************************************
*
* file: ONElib.c
* implementation for ONElib.h
*
* Author: Richard Durbin (rd109@cam.ac.uk)
* Copyright (C) Richard Durbin, Cambridge University and Eugene Myers 2019-
*
* HISTORY:
* Last edited: Dec 4 23:57 2022 (rd109)
* * Apr 23 00:31 2020 (rd109): global rename of VGP to ONE, Vgp to One, vgp to one
* * Apr 20 11:27 2020 (rd109): added VgpSchema to make schema dynamic
* * Dec 27 09:46 2019 (gene): style edits + compactify code
* * Jul 8 04:28 2019 (rd109): refactored to use info[]
* * Created: Thu Feb 21 22:40:28 2019 (rd109)
*
****************************************************************************************/
#define _GNU_SOURCE
#include <sys/errno.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/resource.h>
#include <stdarg.h>
#include <time.h>
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/uio.h>
#include <math.h>
#ifdef DEBUG
#include <assert.h>
#else
#define assert(x)
#endif
#include "ONElib.h"
// set major and minor code versions
#define MAJOR 1
#define MINOR 1
// utilities with implementation at the end of the file
static void die(char *format, ...); // print message to stderr and exit -1
static void *myalloc(size_t size); // allocate block, die if malloc fails
static void *mycalloc(size_t number, size_t size); // allocate & zero # objects of size
#define new(n,type) (type *) myalloc((n)*sizeof(type)) // actually use these not myalloc
#define new0(n,type) (type *) mycalloc((n),sizeof(type))
// global required for parallelisation
static pthread_mutex_t mutexInit = PTHREAD_MUTEX_INITIALIZER;
// forward declarations of serialisation functions lower in the file
// RD 220818: I think that many of int below should be I64, e.g. for len, ilen etc.
OneCodec *vcCreate();
void vcAddToTable(OneCodec *vc, int len, char *bytes);
void vcAddHistogram(OneCodec *vc, OneCodec *vh);
void vcCreateCodec(OneCodec *vc, int partial);
void vcDestroy(OneCodec *vc);
int vcMaxSerialSize();
int vcSerialize(OneCodec *vc, void *out);
OneCodec *vcDeserialize(void *in);
int vcEncode(OneCodec *vc, int ilen, char *ibytes, char *obytes);
int vcDecode(OneCodec *vc, int ilen, char *ibytes, char *obytes);
// forward declarations of 64-bit integer encoding/decoding
static inline int ltfWrite (I64 x, FILE *f) ;
static inline I64 ltfRead (FILE *f) ;
/***********************************************************************************
*
* ONE_FILE CREATION & DESTRUCTION
*
**********************************************************************************/
char* oneTypeString[] = { 0, "INT", "REAL", "CHAR", "STRING",
"INT_LIST", "REAL_LIST", "STRING_LIST", "DNA" } ;
/******************* OneInfo ********************/
static OneInfo *infoCreate (int nField)
{ OneInfo *vi = new0 (1, OneInfo) ;
vi->nField = nField ;
if (nField) vi->fieldType = new (nField, OneType) ;
return vi;
}
static OneInfo *infoDeepCopy (OneInfo *vi0)
{ OneInfo *vi = new (1, OneInfo) ;
*vi = *vi0 ;
if (vi->nField)
{ vi->fieldType = new (vi->nField, OneType) ;
memcpy (vi->fieldType, vi0->fieldType, vi->nField*sizeof(OneType)) ;
}
if (vi->listCodec && vi->listCodec != DNAcodec) vi->listCodec = vcCreate() ;
if (vi->comment) vi->comment = strdup (vi0->comment) ;
return vi ;
}
static bool infoCheckFields (OneInfo *vi, OneFile *vf)
{ // check field types against the STRING_LIST in vf
char *s = oneString(vf) ;
int i ;
if (vi->nField != oneLen(vf)) return false ;
for (i = 0 ; i < vi->nField ; ++i, s = oneNextString(vf,s))
if (strcmp (oneTypeString[vi->fieldType[i]], s)) return false ;
return true ;
}
static void infoDestroy (OneInfo *vi)
{ if (vi->buffer && ! vi->isUserBuf) free (vi->buffer) ;
if (vi->listCodec) vcDestroy (vi->listCodec) ;
if (vi->fieldType) free (vi->fieldType) ;
if (vi->comment) free (vi->comment) ;
free (vi);
}
/******************* OneSchema ********************/
// a utility to set the OneInfo list information
static int listEltSize[9] = { 0, 0, 0, 0, 1, sizeof(I64), sizeof(double), 1, 1 } ;
static void schemaAddInfoFromArray (OneSchema *vs, int n, OneType *a, char t, char type)
{
// use during the bootstrap, while parsing .def files, and while parsing ~ lines in other files
if (vs->info[(int) t])
die ("duplicate schema specification for linetype %c in filetype %s", t, vs->primary) ;
if (isalpha(t) && type == 'G')
{ if (vs->groupType) die ("second group type in schema for filetype %s", vs->primary) ;
vs->groupType = t ;
}
else if (isalpha(t) && type == 'O')
{ if (vs->objectType) die ("second object type in schema for filetype %s", vs->primary) ;
vs->objectType = t ;
}
else if (vs->primary && (type != 'D' || !isalpha(t))) // allow non-alphabetic lines in header
die ("non-alphabetic linetype %c (ascii %d) in schema for filetype %s",t,t,vs->primary) ;
if (n > vs->nFieldMax) vs->nFieldMax = n ;
OneInfo *vi = infoCreate (n) ;
memcpy (vi->fieldType, a, n*sizeof(OneType)) ;
int i ;
for (i = 0 ; i < n ; ++i)
if (a[i] >= oneSTRING)
{ if (vi->listEltSize)
die ("OneFile schema error; multiple list types for linetype definition %c", t) ;
vi->listEltSize = listEltSize[vi->fieldType[i]] ;
vi->listField = i ;
if (a[i] == oneDNA)
{ vi->listCodec = DNAcodec ; vi->isUseListCodec = true ; }
else
vi->listCodec = vcCreate () ; // always make a listCodec for any list type
}
if (t >= 'A' && t <= 'Z') vi->binaryTypePack = ((t-'A') << 1) | (char) 0x80 ;
else if (t >= 'a' && t <= 'z') vi->binaryTypePack = ((26+t-'a') << 1) | (char) 0x80 ;
else if (t == ';') vi->binaryTypePack = (52 << 2) | (char) 0x80 ;
else if (t == '&') vi->binaryTypePack = (53 << 2) | (char) 0x80 ;
else if (t == '*') vi->binaryTypePack = (54 << 2) | (char) 0x80 ;
else if (t == '/') vi->binaryTypePack = (55 << 2) | (char) 0x80 ;
else if (t == '.') vi->binaryTypePack = (56 << 2) | (char) 0x80 ;
vs->info[(int)t] = vi ;
}
static void schemaAddInfoFromLine (OneSchema *vs, OneFile *vf, char t, char type)
{ // assumes field specification is in the STRING_LIST of the current vf line
// need to set vi->comment separately
static OneType a[32] ;
int i ;
OneType j ;
char *s = oneString(vf) ;
int n = oneLen(vf) ;
if (n > 32)
die ("line specification %d fields too long - need to recompile", n) ;
for (i = 0 ; i < n ; ++i, s = oneNextString(vf,s))
{ a[i] = 0 ;
for (j = oneINT ; j <= oneDNA ; ++j)
if (!strcmp (s, oneTypeString[j])) a[i] = j ;
if (!a[i])
die ("ONE schema error: bad field %d of %d type %s in line %d type %c",
i, n, s, vf->line, t) ;
}
schemaAddInfoFromArray (vs, n, a, t, type) ;
if (oneReadComment (vf))
vs->info[(int)t]->comment = strdup (oneReadComment(vf)) ;
}
static OneSchema *schemaLoadRecord (OneSchema *vs, OneFile *vf)
{ char *s;
// parse a schema specfication line from vf and add into vs
// return value is vs unless a new primary type is declared, in which case vs->nxt
switch (vf->lineType)
{
case '.': // ignore - blank or comment line in schema file
break ;
case 'P':
if (vs->primary && !vs->objectType)
die ("schema: file type %s has no object type", vs->primary) ;
if (oneLen(vf) == 0) die ("schema: primary name must have at least one letter") ;
OneSchema *vsNxt = new0 (1, OneSchema) ;
vs->nxt = vsNxt ;
vs = vsNxt ;
s = oneString(vf);
vs->primary = new (oneLen(vf)+1, char) ;
strcpy (vs->primary, s) ;
vs->nFieldMax = 4 ; // needed for header
break ;
case 'S':
if (oneLen(vf) == 0) die ("schema: secondary name must have at least one letter") ;
if (vs->nSecondary)
{ char **temp = vs->secondary ;
vs->secondary = new (vs->nSecondary+1, char*) ;
memcpy (vs->secondary, temp, vs->nSecondary*sizeof(char*)) ;
free (temp) ;
}
else
vs->secondary = new (1, char*) ;
s = oneString(vf);
vs->secondary[vs->nSecondary] = new0 (oneLen(vf)+1, char) ;
strcpy (vs->secondary[vs->nSecondary++], s) ;
break ;
case 'G': // group type
case 'O': // object type
case 'D': // standard record type
schemaAddInfoFromLine (vs, vf, oneChar(vf,0), vf->lineType) ;
break ;
default:
die ("unrecognized schema line %d starting with %c", vf->line, vf->lineType) ;
}
return vs ;
}
static void oneFileDestroy (OneFile *vf) ; // need a forward declaration here
OneSchema *oneSchemaCreateFromFile (char *filename)
{
FILE *fs = fopen (filename, "r") ;
if (!fs) return 0 ;
fclose(fs);
OneSchema *vs = new0 (1, OneSchema) ;
OneFile *vf = new0 (1, OneFile) ; // shell object to support bootstrap
// bootstrap specification of linetypes to read schemas
{ OneInfo *vi ;
vi = vf->info['P'] = infoCreate (1) ; // to define the schema for parsing a .def file
vi->fieldType[0] = oneSTRING ; vi->listEltSize = 1 ; vi->listField = 0 ;
vi = vf->info['O'] = infoCreate (2) ; // object type specification
vi->fieldType[0] = oneCHAR ;
vi->fieldType[1] = oneSTRING_LIST ; vi->listEltSize = 1 ; vi->listField = 1 ;
vi = vf->info['D'] = infoCreate (2) ; // line type specification
vi->fieldType[0] = oneCHAR ;
vi->fieldType[1] = oneSTRING_LIST ; vi->listEltSize = 1 ; vi->listField = 1 ;
vf->info['/'] = infoCreate (0) ; // to store comments
vf->field = new (2, OneField) ;
}
// first load the universal header and footer (non-alphabetic) line types
// do this by writing their schema into a temporary file and parsing it into the base schema
{ errno = 0 ;
static char template[64] ;
#define VALGRIND_MACOS
#ifdef VALGRIND_MACOS // MacOS valgrind is missing functions to make temp files it seems
sprintf (template, "/tmp/OneSchema.%d", getpid()) ;
vf->f = fopen (template, "w+") ;
if (errno) die ("failed to open temporary file %s errno %d\n", template, errno) ;
#else
strcpy (template, "/tmp/OneSchema.XXXXXX") ;
int fd = mkstemp (template) ;
if (errno) die ("failed to open temporary file %s errno %d\n", template, errno) ;
vf->f = fdopen (fd, "w+") ;
if (errno) die ("failed to assign temporary file to stream: errno %d\n", errno) ;
#endif
unlink (template) ; // this ensures that the file is removed on closure
if (errno) die ("failed to remove temporary file %s errno %d\n", template, errno) ;
}
// NB if you change the header spec and add a record with more than 4 fields,
// change the assignment of ->nFieldMax in the 'P' section of schemaLoadRecord() above
fprintf (vf->f, "D 1 3 6 STRING 3 INT 3 INT first line: 3-letter type, major, minor version\n") ;
fprintf (vf->f, "D 2 1 6 STRING subtype: 3-letter subtype\n") ;
fprintf (vf->f, "D # 2 4 CHAR 3 INT linetype, count\n") ;
fprintf (vf->f, "D @ 2 4 CHAR 3 INT linetype, list max\n") ;
fprintf (vf->f, "D + 2 4 CHAR 3 INT linetype, list total\n") ;
fprintf (vf->f, "D %% 4 4 CHAR 4 CHAR 4 CHAR 3 INT group, #/+, linetype, value\n") ;
fprintf (vf->f, "D ! 1 11 STRING_LIST provenance: program, version, command, date\n") ;
fprintf (vf->f, "D < 2 6 STRING 3 INT reference: filename, object count\n") ;
fprintf (vf->f, "D > 1 6 STRING deferred: filename\n") ;
fprintf (vf->f, "D ~ 3 4 CHAR 4 CHAR 11 STRING_LIST embedded schema linetype definition\n") ;
fprintf (vf->f, "D . 0 blank line, anywhere in file\n") ;
fprintf (vf->f, "D $ 1 3 INT binary file - goto footer: isBigEndian\n") ;
fprintf (vf->f, "D ^ 0 binary file: end of footer designation\n") ;
fprintf (vf->f, "D - 1 3 INT binary file: offset of start of footer\n") ;
fprintf (vf->f, "D & 1 8 INT_LIST binary file: object index\n") ;
fprintf (vf->f, "D * 1 8 INT_LIST binary file: group index\n") ;
fprintf (vf->f, "D ; 2 4 CHAR 6 STRING binary file: list codec\n") ;
fprintf (vf->f, "D / 1 6 STRING binary file: comment\n") ;
if (fseek (vf->f, 0, SEEK_SET)) die ("ONE schema failure: cannot rewind tmp file") ;
while (oneReadLine (vf))
schemaLoadRecord (vs, vf) ;
// next reuse the temp file to load the schema for reading schemas
if (fseek (vf->f, 0, SEEK_SET)) die ("ONE schema failure: cannot rewind tmp file") ;
fprintf (vf->f, "P 3 def this is the primary file type for schemas\n") ;
fprintf (vf->f, "O P 1 6 STRING primary type name\n") ;
fprintf (vf->f, "D S 1 6 STRING secondary type name\n") ;
fprintf (vf->f, "D G 2 4 CHAR 11 STRING_LIST define linetype for groupType\n") ;
fprintf (vf->f, "D O 2 4 CHAR 11 STRING_LIST define linetype for objectType\n") ;
fprintf (vf->f, "D D 2 4 CHAR 11 STRING_LIST define linetype for other records\n") ;
fprintf (vf->f, "\n") ; // terminator
if (fseek (vf->f, 0, SEEK_SET)) die ("ONE schema failure: cannot rewind tmp file") ;
OneSchema *vs0 = vs ; // need this because loadInfo() updates vs on reading P lines
vf->line = 0 ;
while (oneReadLine (vf))
vs = schemaLoadRecord (vs, vf) ;
OneSchema *vsDef = vs ; // will need this to destroy it once the true schema is read
oneFileDestroy (vf) ; // this will also effectively remove the temp file on closing
// finally read the schema itself
if (!(vf = oneFileOpenRead (filename, vs0, "def", 1)))
return 0 ;
vs = vs0 ; // set back to vs0, so next filetype spec will replace vsDef
vs->nxt = 0 ;
oneSchemaDestroy (vsDef) ; // no longer need this, and can destroy because unlinked from vs0
while (oneReadLine (vf))
vs = schemaLoadRecord (vs, vf) ;
oneFileDestroy (vf) ;
return vs0 ;
}
static char *schemaFixNewlines (const char *text)
{ // replace literal "\n" by '\n' chars in text
char *newText = strdup (text) ;
char *s = newText, *t = s ;
while (*s)
if (*s == '\\' && s[1] == 'n')
{ *t++ = '\n' ; s += 2 ; }
else
*t++ = *s++ ;
*t = 0 ;
return newText ;
}
OneSchema *oneSchemaCreateFromText (char *text) // write to temp file and call CreateFromFile()
{
static char template[64] ;
sprintf (template, "/tmp/OneTextSchema-%d.def", getpid()) ;
errno = 0 ;
FILE *f = fopen (template, "w") ;
char *fixedText = schemaFixNewlines (text) ;
fprintf (f, "%s\n", fixedText) ;
free (fixedText) ;
fclose (f) ;
if (errno) die ("failed to write temporary file %s errno %d\n", template, errno) ;
OneSchema *vs = oneSchemaCreateFromFile (template) ;
errno = 0 ;
unlink (template) ; // delete temporary file - not ideal: will remain if schemaCreate crashes
if (errno) die ("failed to remove temporary file %s errno %d\n", template, errno) ;
return vs ;
}
static OneSchema *oneSchemaCreateDynamic (char *fileType, char *subType)
{ // this is clean, but it seems a bit wasteful to create a temp file
char text[32] ;
assert (fileType && strlen(fileType) > 0) ;
assert (!subType || strlen(subType) > 0) ;
if (subType)
sprintf (text, "P %d %s\nS %d %s\n", (int) strlen(fileType),fileType,
(int) strlen(subType), subType) ;
else
sprintf (text, "P %d %s\n", (int) strlen(fileType), fileType) ;
OneSchema *vs = oneSchemaCreateFromText (text) ;
return vs ;
}
void oneSchemaDestroy (OneSchema *vs)
{ int i ;
while (vs)
{ for (i = 0 ; i < 128 ; ++i) if (vs->info[i]) infoDestroy (vs->info[i]) ;
if (vs->nSecondary)
{ for (i = 0 ; i < vs->nSecondary ; ++i) free (vs->secondary[i]) ;
free (vs->secondary) ;
}
free(vs->primary);
OneSchema *t = vs->nxt ;
free (vs) ;
vs = t ;
}
}
/*************************************/
static inline void setCodecBuffer (OneInfo *vi)
{
vi->bufSize = vcMaxSerialSize() + 1; // +1 for added but unused 0-terminator
vi->buffer = new (vi->bufSize, void);
}
static OneFile *oneFileCreate (OneSchema **vsp, char *type)
{ // searches through the linked list of vs to find type, either as primary or a secondary
// if found fills and returns vf, else returns 0
int i, j ;
OneFile *vf = new0 (1, OneFile) ;
char *secondary = 0 ;
OneSchema *vs = *vsp ;
// fprintf (stderr, "oneFileCreate vs %lx type %s\n", (unsigned long)vs, type) ;
// transfer header info
for (i = 0 ; i < 128 ; ++i)
if (vs->info[i]) vf->info[i] = infoDeepCopy (vs->info[i]) ;
// find type in schema
while ((vs = vs->nxt))
if (!strcmp (type, vs->primary))
break ;
else if (vs->nSecondary)
{ for (j = 0 ; j < vs->nSecondary ; ++j)
if (!strcmp (type, vs->secondary[j])) break ;
if (j < vs->nSecondary) { secondary = vs->secondary[j] ; break ; }
}
if (!vs)
{ oneFileDestroy (vf) ;
return 0 ; // failed to find a match
}
// transfer info from matched schema
for (i = 0 ; i < 128 ; ++i)
if (vs->info[i]) vf->info[i] = infoDeepCopy (vs->info[i]) ;
// build binaryTypeUnpack[]
for (i = 0 ; i < 128 ; ++i)
if (vf->info[i] && vf->info[i]->binaryTypePack)
{ U8 x = vf->info[i]->binaryTypePack ;
vf->binaryTypeUnpack[x] = i ;
vf->binaryTypeUnpack[x+1] = i ;
}
// set other information
vf->objectType = vs->objectType ;
vf->groupType = vs->groupType ;
vf->fileType = new (strlen(vs->primary)+1, char);
strcpy (vf->fileType, vs->primary) ;
if (secondary)
{ vf->subType = new (strlen(secondary)+1, char);
strcpy (vf->subType, secondary) ;
}
vf->nFieldMax = vs->nFieldMax ;
vf->field = new (vf->nFieldMax, OneField) ;
// setup for compression
vf->codecTrainingSize = 100000;
setCodecBuffer (vf->info[';']) ;
// determine endian of machine
{ int t = 1;
char *b = (char *) (&t);
vf->isBig = (*b == 0);
}
*vsp = vs ;
return vf ;
}
static void provRefDefCleanup (OneFile *vf)
{ int n ;
if (vf->provenance)
{ OneProvenance *p = vf->provenance ;
for (n = vf->info['!']->accum.count ; n-- ; p++)
{ free (p->program) ;
free (p->version) ;
free (p->command) ;
free (p->date) ;
}
free (vf->provenance) ;
}
if (vf->reference)
{ OneReference *r = vf->reference ;
for (n = vf->info['<']->accum.count ; n-- ; r++)
free (r->filename) ;
free (vf->reference) ;
}
if (vf->deferred)
{ OneReference *r = vf->deferred ;
for (n = vf->info['>']->accum.count ; n-- ; r++)
free (r->filename) ;
free (vf->deferred) ;
}
}
static void oneFileDestroy (OneFile *vf)
{ int i, j;
OneInfo *li, *lx;
if (vf->share)
{ for (i = 0; i < 128 ; i++)
{ lx = vf->info[i];
if (lx != NULL)
{ for (j = 1; j < vf->share; j++)
{ li = vf[j].info[i];
if (li != lx) // the index OneInfos are shared
{ if (li->listCodec == lx->listCodec) li->listCodec = NULL;
infoDestroy(li);
}
}
}
}
for (j = 1; j < vf->share; j++)
{ provRefDefCleanup (&vf[j]) ;
if (vf[j].codecBuf != NULL) free (vf[j].codecBuf);
if (vf[j].f != NULL) fclose (vf[j].f);
}
}
provRefDefCleanup (vf) ;
if (vf->codecBuf != NULL) free (vf->codecBuf);
if (vf->f != NULL && vf->f != stdout) fclose (vf->f);
for (i = 0; i < 128 ; i++)
if (vf->info[i] != NULL)
infoDestroy (vf->info[i]);
if (vf->field) free (vf->field) ;
if (vf->headerText)
{ OneHeaderText *t = vf->headerText ;
while (t)
{ free (t->text) ;
{ OneHeaderText *nxt = t->nxt ; free (t) ; t = nxt ; }
}
}
free(vf->fileType);
free(vf->subType);
free (vf) ;
}
/***********************************************************************************
*
* ASCII PARSING UTILITIES: error reporting, lexical level
*
**********************************************************************************/
void parseError (OneFile *vf, char *format, ...)
{ va_list args;
fprintf (stderr, "ONE PARSE ERROR ");
va_start (args, format);
vfprintf (stderr, format, args);
va_end (args);
vf->lineBuf[vf->linePos] = '\0';
fprintf (stderr, ", line %" PRId64 ": %s\n", vf->line, vf->lineBuf);
exit (1);
}
static inline char vfGetc(OneFile *vf)
{ char c = getc(vf->f);
if (vf->linePos < 127)
vf->lineBuf[vf->linePos++] = c;
return c;
}
static inline void eatWhite (OneFile *vf)
{ char x = vfGetc(vf);
if (x == ' ') // 200414: removed option to have tab instead of space
return;
parseError (vf, "failed to find expected space separation character");
}
static inline char readChar(OneFile *vf)
{ eatWhite(vf);
return vfGetc(vf);
}
static inline char *readBuf(OneFile *vf)
{ char x, *cp, *endBuf;
eatWhite (vf);
endBuf = vf->numberBuf + 32;
for (cp = vf->numberBuf; cp < endBuf ; cp++)
{ x = vfGetc(vf);
if (isspace(x) || x == '\0' || x == EOF)
break;
*cp = x;
}
if (cp >= endBuf)
{ cp[-1] = 0;
parseError (vf, "overlong item %s", vf->numberBuf);
}
else
{ ungetc (x, vf->f);
vf->linePos -= 1;
*cp = 0;
}
return vf->numberBuf;
}
static inline I64 readInt(OneFile *vf)
{ char *e, *b;
I64 x;
b = readBuf(vf);
x = strtoll(b, &e, 10);
if (e == b)
parseError (vf, "empty int field");
if (*e != '\0')
parseError (vf, "bad int");
return x;
}
static inline double readReal(OneFile *vf)
{ char *e, *b;
double x;
b = readBuf(vf);
x = strtod (b, &e);
if (e == b)
parseError (vf, "empty real field");
if (*e != '\0')
parseError (vf, "bad real");
return (x);
}
static inline void readString(OneFile *vf, char *buf, I64 n)
{ eatWhite (vf);
if (vf->isCheckString)
{ char *cp = buf;
--cp;
while (n-- && (*++cp = vfGetc (vf)))
if (*cp == '\n' || *cp == EOF)
break;
if (++n)
parseError (vf, "line too short %d", buf);
*++cp = 0;
}
else
{ if ((I64) fread (buf, 1, n, vf->f) != n)
die ("ONE parse error: failed to read %d byte string", n);
buf[n] = 0 ;
}
}
static inline void readFlush (OneFile *vf) // reads to the end of the line and stores as comment
{ char x;
int n = 0;
OneInfo *li = vf->info['/'] ;
// check the first character - if it is newline then done
x = getc (vf->f) ;
if (x == '\n')
return ;
else if (x != ' ')
parseError (vf, "comment not separated by a space") ;
// else the remainder of the line is a comment
if (!li->bufSize)
{ li->bufSize = 1024 ;
li->buffer = new (li->bufSize, char) ;
}
while ((x = getc (vf->f)) && x != '\n')
if (x == EOF)
parseError (vf, "premature end of file");
else
{ if ((n+1) >= li->bufSize)
{ char *s = new (2*li->bufSize, char) ;
memcpy (s, li->buffer, li->bufSize) ;
free (li->buffer) ;
li->buffer = s ;
li->bufSize *= 2 ;
}
((char*)li->buffer)[n] = x ;
++n ;
}
((char*)li->buffer)[n] = 0 ; // string terminator
}
/***********************************************************************************
*
* LIST BUFFER & COUNT MANAGEMENT: error reporting, lexical level
*
**********************************************************************************/
// Ensure line type t buffer can handles size+nStrings, and accumulate counts
static inline void updateCountsAndBuffer (OneFile *vf, char t, I64 size, I64 nStrings)
{ OneInfo *li;
li = vf->info[(int) t];
li->accum.total += size;
if (size > li->accum.max)
li->accum.max = size;
size += nStrings; // need to allocate space for terminal 0s
if ( ! li->isUserBuf && size > li->bufSize) // expand buffer
{ if (li->buffer != NULL) free (li->buffer);
li->bufSize = size;
li->buffer = new (size*li->listEltSize, void);
}
}
// Called when a new group starts or eof, accumulate group counts since last group start
static inline void updateGroupCount(OneFile *vf, bool isGroupLine)
{ int i;
OneInfo *li;
OneCounts *ci;
for (i = 'A'; i <= 'Z' ; i++)
{ li = vf->info[i];
if (li != NULL)
{ ci = &(li->accum);
if (vf->inGroup)
{ if (ci->groupCount < ci->count - li->gCount)
ci->groupCount = ci->count - li->gCount;
if (ci->groupTotal < ci->total - li->gTotal)
ci->groupTotal = ci->total - li->gTotal;
}
else
{ li->oCount = ci->count;
li->oTotal = ci->total;
}
li->gCount = ci->count;
li->gTotal = ci->total;
}
}
if (isGroupLine)
{ vf->group += 1;
vf->inGroup = true;
}
}
/***********************************************************************************
*
* BINARY INT LIST COMPACTION & UNCOMPACTION
*
**********************************************************************************/
static char *compactIntList (OneFile *vf, OneInfo *li, I64 len, char *buf, int *usedBytes)
{ char *y;
int d, k;
I64 z, i, mask, *ibuf;
ibuf = (I64 *) buf;
for (i = len-1; i > 0; i--) // convert to differences - often a big win, else harmless
ibuf[i] -= ibuf[i-1];
mask = 0; // find how many top bytes can be skipped
for (i = 1; i < len; i++)
if (ibuf[i] >= 0)
mask |= ibuf[i];
else
mask |= -(ibuf[i]+1);
k = sizeof(I64) ;
mask >>= 7;
for (d = 1; d < k; d++)
{ if (mask == 0)
break;
mask >>= 8;
}
*usedBytes = d ;
z = k - d; // number of 0 bytes
if (z == 0) return (char*)&ibuf[1] ;
if (buf != li->buffer && !li->isUserBuf && (I64) (li->bufSize*sizeof(I64)) < d*len)
{ if (li->buffer != NULL)
free (li->buffer);
li->bufSize = ((d*len) / sizeof(I64)) + 1;
li->buffer = new (li->bufSize * sizeof(I64), void);
}
y = li->buffer ;
buf += sizeof(I64) ; --len ; // don't record the first element of buf, which is not a diff
if (vf->isBig) // copy d bytes per I64, ignoring z before or after depending on isBig
while (len--)
{ buf += z;
for (k = 0; k < d; k++)
*y++ = *buf++;
}
else
while (len--)
{ for (k = 0; k < d; k++)
*y++ = *buf++;
buf += z;
}
return li->buffer ;
}
static void decompactIntList (OneFile *vf, I64 len, char *buf, int usedBytes)
{ int d, z, k;
char *s, *t;
z = sizeof(I64) - usedBytes ;
if (z > 0) // decompacts in place
{ buf += sizeof(I64) ; --len ; // don't decompact 0th element
d = usedBytes;
s = buf + d*len;
t = s + z*len;
if (vf->isBig)
while (s > buf)
{ for (k = 0; k < d; k++)
*--t = *--s;
if (*s & 0x80)
for (k = 0; k < z; k++)
*--t = 0xff;
else
for (k = 0; k < z; k++)
*--t = 0x0;
}
else
while (s > buf)
{ if (s[-1] & 0x80)
for (k = 0; k < z; k++)
*--t = 0xff;
else
for (k = 0; k < z; k++)
*--t = 0;
for (k = 0; k < d; k++)
*--t = *--s;
}
buf -= sizeof(I64) ; ++len ;
}
{ I64 i, *x = (I64 *) buf; // revert differencing
for (i = 1; i < len; i++)
x[i] += x[i-1];
}
}
// read and write compressed fields
static inline int writeCompressedFields (FILE *f, OneField *field, OneInfo *li)
{
int i, n = 0 ;
for (i = 0 ; i < li->nField ; ++i)
switch (li->fieldType[i])
{
case oneREAL: fwrite (&field[i].r, 8, 1, f) ; n += 8 ; break ;
case oneCHAR: putc (field[i].c, f) ; ++n ; break ;
default: // includes INT and all the LISTs, which store their length in field as an INT
n += ltfWrite (field[i].i, f) ;
}
return n ;
}
static inline void readCompressedFields (FILE *f, OneField *field, OneInfo *li)
{
int i ;
for (i = 0 ; i < li->nField ; ++i)
switch (li->fieldType[i])
{
case oneREAL: fread (&field[i].r, 8, 1, f) ; break ;
case oneCHAR: field[i].c = fgetc (f) ; break ;
default: // includes INT and all the LISTs, which store their length in field as an INT
field[i].i = ltfRead (f) ;
}
}
/***********************************************************************************
*
* ONE_READ_LINE:
* Reads the next line and returns false at end of file or on error. The line is
* parsed according to its linetype and contents accessed by macros that follow.
* The top bit of the first character determines whether the line is binary or ascii
*
**********************************************************************************/
// Read a string list, first into new allocs, then into sized line buffer.
// Annoyingly inefficient, but we don't use it very much.
static void readStringList(OneFile *vf, char t, I64 len)
{ int j;
I64 totLen, sLen;
char **string, *buf;
totLen = 0;
string = new (len, char *);
for (j = 0; j < len ; ++j)
{ sLen = readInt (vf);
totLen += sLen;
string[j] = new (sLen+1, char);
readString (vf, string[j], sLen);
}
updateCountsAndBuffer (vf, t, totLen, len);
buf = (char *) vf->info[(int) t]->buffer;
for (j = 0; j < len ; ++j)
{ strcpy (buf, string[j]);
buf += strlen(buf) + 1;
free (string[j]);
}
free (string);
}
static bool addProvenance(OneFile *vf, OneProvenance *from, int n) ; // need forward declaration
char oneReadLine (OneFile *vf)
{ bool isAscii;
U8 x;
char t;
OneInfo *li;
assert (!vf->isWrite) ;
assert (!vf->isFinal) ;
vf->linePos = 0; // must come before first vfGetc()
x = vfGetc (vf); // read first char
if (feof (vf->f) || x == '\n') // blank line (x=='\n') is end of records marker before footer
{ vf->lineType = 0 ; // additional marker of end of file
return 0;
}
vf->line += 1; // otherwise assume this is a good line, and die if not
if (x & 0x80)
{ isAscii = false;
t = vf->binaryTypeUnpack[x];
}
else
{ isAscii = true;
t = x;
}
vf->lineType = t;
li = vf->info[(int) t];
if (li == NULL)
parseError (vf, "unknown line type %c(%d was %d) line %d", t, t, x, (int)vf->line);
li->accum.count += 1;
if (t == vf->objectType)
vf->object += 1;
if (t == vf->groupType)
updateGroupCount (vf, true);
// fprintf (stderr, "reading line %" PRId64 " type %c nField %d listElt %d\n", vf->line, t, li->nField, li->listEltSize) ;
if (vf->info['/']->bufSize) // clear the comment buffer
*(char*)(vf->info['/']->buffer) = 0 ;
vf->nBits = 0 ; // will use for any compressed data read in
if (isAscii) // read field by field according to ascii spec
{ int i, j;
I64 *ilst, len;
double *rlst;
for (i = 0; i < li->nField; i++)
switch (li->fieldType[i])
{
case oneINT:
vf->field[i].i = readInt (vf);
// printf (" field %d int %d\n", i, (int)oneInt(vf,i)) ;
break;
case oneREAL:
vf->field[i].r = readReal (vf);
break;
case oneCHAR:
vf->field[i].c = readChar (vf);
// printf (" field %d char %c\n", i, (int)oneChar(vf,i)) ;
break;
case oneSTRING:
case oneDNA:
len = readInt (vf);
vf->field[i].len = len;
updateCountsAndBuffer (vf, t, len, 1);
readString (vf, (char*) li->buffer, len);
break;
case oneINT_LIST:
len = readInt (vf);
vf->field[i].len = len;
updateCountsAndBuffer (vf, t, len, 0);
ilst = (I64 *) li->buffer;
for (j = 0; j < len; ++j)
ilst[j] = readInt(vf);
break;
case oneREAL_LIST:
len = readInt (vf);
vf->field[i].len = len;
updateCountsAndBuffer (vf, t, len, 0);
rlst = (double *) li->buffer;
for (j = 0; j < len; ++j)
rlst[j] = readReal (vf);
break;
case oneSTRING_LIST: // STRING_LIST - inefficient for now - also used for binary
len = readInt (vf);
vf->field[i].len = len;
// printf (" field %d string list len %d\n", i, (int)oneLen(vf)) ;
readStringList (vf, t, len);
break;
}
readFlush (vf);
}
else // binary - block read fields and list, potentially compressed
{
// read the fields
if (li->nField > 0)
readCompressedFields (vf->f, vf->field, li) ;
if (t == vf->groupType) // must follow reading the fields
{ I64 *groupIndex = (I64 *) vf->info['*']->buffer;
oneInt(vf,0) = groupIndex[vf->group] - groupIndex[vf->group-1];
}
// read the list if there is one
if (li->listEltSize > 0)
{ I64 listLen = oneLen(vf);
if (listLen > 0)
{ li->accum.total += listLen;
if (listLen > li->accum.max)
li->accum.max = listLen;
if (li->fieldType[li->listField] == oneINT_LIST)
{ *(I64*)li->buffer = ltfRead (vf->f) ;
if (listLen == 1) goto doneLine ;
vf->intListBytes = getc(vf->f) ;
}
if (li->fieldType[li->listField] == oneSTRING_LIST) // handle as ASCII
readStringList (vf, t, listLen);
else if (x & 0x1) // list is compressed
{ vf->nBits = ltfRead (vf->f) ;
if (fread (vf->codecBuf, ((vf->nBits+7) >> 3), 1, vf->f) != 1)
die ("ONE read error: fail to read compressed list");
}
else if (li->fieldType[li->listField] == oneINT_LIST)
{ I64 listSize = (listLen-1) * vf->intListBytes ;
if ((I64) fread (&(((I64*)li->buffer)[1]), 1, listSize, vf->f) != listSize)
die ("ONE read error: failed to read list size %" PRId64 "", listSize);
decompactIntList (vf, listLen, li->buffer, vf->intListBytes);
}
else
{ I64 listSize = listLen * li->listEltSize ;
if ((I64) fread (li->buffer, 1, listSize, vf->f) != listSize)
die ("ONE read error: failed to read list size %" PRId64 "", listSize);
}
}
if (li->fieldType[li->listField] == oneSTRING)
((char *) li->buffer)[listLen] = '\0'; // 0 terminate
}
doneLine:
{ U8 peek = getc(vf->f) ; // check if next line is a comment - if so then read it
ungetc(peek, vf->f) ;
if (peek & 0x80)
peek = vf->binaryTypeUnpack[peek];
if (peek == '/') // a comment
{ OneField keepField0 = vf->field[0] ;
oneReadLine (vf) ; // read comment line into vf->info['/']->buffer
vf->lineType = t ;
vf->field[0] = keepField0 ;
}
}
}
return t;
}
char *oneReadComment (OneFile *vf)
{ char *comment = (char*)(vf->info['/']->buffer) ;
if (comment && *comment != 0)
return comment ;
else
return 0 ;
}
void *_oneList (OneFile *vf)
{
OneInfo *li = vf->info[(int) vf->lineType] ;
if (vf->nBits)
{ if (li->fieldType[li->listField] == oneINT_LIST) // first elt is already in buffer
{ vcDecode (li->listCodec, vf->nBits, vf->codecBuf, (char*)&(((I64*)li->buffer)[1])) ;
decompactIntList (vf, oneLen(vf), li->buffer, vf->intListBytes) ;
}
else
vcDecode (li->listCodec, vf->nBits, vf->codecBuf, li->buffer) ;
vf->nBits = 0 ; // so we don't do it again
}
return li->buffer ;
}
void *_oneCompressedList (OneFile *vf)
{
OneInfo *li = vf->info[(int) vf->lineType] ;
if (!vf->nBits && oneLen(vf) > 0) // need to compress
vcEncode (li->listCodec, oneLen(vf), vf->info[(int) vf->lineType]->buffer, vf->codecBuf);
return (void*) vf->codecBuf ;
}
/***********************************************************************************
*
* ONE_FILE_OPEN_READ:
* Opens file for reading and reads all lines of header if it exists.
* If there is no header then fileType must be given (i.e. non-zero),
* otherwise if fileType is non-zero then it must match the type in the header.
* If the header contains a $-line then it is binary and the routine reads
* the footer that includes decompressors and indexes.
*
**********************************************************************************/
OneFile *oneFileOpenRead (const char *path, OneSchema *vs, char *fileType, int nthreads)
{
OneFile *vf ;
off_t startOff = 0, footOff;
OneSchema *vs0 = vs ;
bool isDynamic = false ; // if we are making the schema from the header
assert (fileType == NULL || strlen(fileType) > 0) ;
// first open the file, read first header line if it exists, and create the OneFile object
{ FILE *f ;
char *name ;
int curLine = 0 ;
U8 c ;
if (strcmp (path, "-") == 0)
f = stdin;
else
{ f = fopen (path, "r");
if (f == NULL)
return NULL;
}
#define OPEN_ERROR1(x) { fprintf (stderr,"ONE file error %s: %s\n", path, x) ; \
fclose(f) ; return NULL; }
#define OPEN_ERROR3(x,y,z) { fprintf (stderr,"ONE file error %s: ", path) ; \
fprintf (stderr,x,y,z) ; fprintf (stderr, "\n") ; fclose(f) ; return NULL ; }
c = getc(f);
if (feof(f))
OPEN_ERROR1("file is empty") ;
if (c == '1')
{ int major, minor, slen;
if (fscanf (f, " %d", &slen) != 1)
OPEN_ERROR1("line 1: failed to read type name length") ;
if (slen == 0)
OPEN_ERROR1("line 1: type name is empty string") ;
name = new0 (slen+1, char);
if (fscanf (f, " %s %d %d", name, &major, &minor) != 3)
OPEN_ERROR1("line 1: failed to read remainder of line") ;
while (getc(f) != '\n')
if (feof(f))
OPEN_ERROR1("end of file before end of line 1") ;
++curLine ;
if (major != MAJOR)
OPEN_ERROR3("major version file %d > code %d", major, MAJOR) ;
if (minor > MINOR)
OPEN_ERROR3("minor version file %d > code %d", minor, MINOR) ;
}
else
{ ungetc (c, f) ;
if (!fileType)
OPEN_ERROR1("attempting to open a file without the type being defined") ;
name = new0 (strlen(fileType)+1, char);
strcpy (name, fileType) ;
}
if (!vs) // create a shell schema, which can be filled from the header
{ vs0 = vs = oneSchemaCreateDynamic (name, 0) ;
isDynamic = true ;
}
vf = oneFileCreate (&vs, name) ;
if (!vf)
OPEN_ERROR1("failed to create OneFile object") ;
if (fileType && strcmp (fileType, vf->fileType) && strcmp (fileType, vf->subType))
{ oneFileDestroy (vf) ;
OPEN_ERROR3("fileType mismatch file %s != requested %s", vf->fileType, fileType) ;
}
free(name);
vf->f = f;
vf->line = curLine;
}
// read header and (optionally) footer
// recognise end of header by peeking at the first char to check if alphabetic
vf->isCheckString = true; // always check strings while reading header
while (true)
{ U8 peek = getc(vf->f);
if (feof(vf->f)) // loop exit at end of file
break;
ungetc(peek, vf->f);
if (peek & 0x80)
peek = vf->binaryTypeUnpack[peek];
if (isalpha(peek))
break; // loop exit at standard data line
oneReadLine(vf); // can't fail because we checked file eof already
switch (vf->lineType)
{
case '1':
parseError(vf, "1 should be first line in header");
break;
case '2':
if (oneLen(vf) != 3)
parseError (vf, "secondary subType must have length 3") ;
if (isDynamic)
{ char *s = oneString(vf);
vf->subType = new (oneLen(vf)+1, char);
strcpy (vf->subType, s) ;
}
else
{ char *sub = oneString(vf) ;
int i ;
for (i = 0 ; i < vs->nSecondary ; ++i)
if (!strcmp (sub, vs->secondary[i])) break ;
if (i < vs->nSecondary)
{ vf->subType = new (strlen(sub)+1, char);
strcpy (vf->subType, sub) ;
}
else
parseError (vf, "subtype %s not compatible with primary type %s",
sub, vf->fileType);
}
break;
case '.': // blank line for spacing and header text
{ char *text = oneReadComment (vf) ;
if (text)
{ OneHeaderText **t = &vf->headerText ;
while (*t) t = &((*t)->nxt) ;
*t = new0 (1, OneHeaderText) ;
(*t)->text = strdup (text) ;
}
break ;
}
case '~': // schema definition line
{ char t = oneChar(vf,1) ;
OneInfo *vi = vs->info[(int)t] ;
if (vi)
{ if (!infoCheckFields (vi, vf))
{ fprintf (stderr, "ONE file error %s: schema mismatch line %" PRId64 " linetype %c\n",
path, vf->line, t) ;
oneFileDestroy (vf) ;
return NULL ;
}
}
else if (isDynamic)
{ int oldMax = vf->nFieldMax ;
schemaAddInfoFromLine (vs, vf, t, oneChar(vf,0)) ;
if (oneChar(vf,0) == 'G') vf->groupType = vs->groupType ;
if (oneChar(vf,0) == 'O') vf->objectType = vs->objectType ;
vi = vs->info[(int)t] ;
vf->info[(int)t] = infoDeepCopy (vi) ;
if (vi->binaryTypePack)
{ U8 x = vi->binaryTypePack ;
vf->binaryTypeUnpack[x] = t ;
vf->binaryTypeUnpack[x+1] = t ;
}
if (vs->nFieldMax > oldMax)
{ free (vf->field) ;
vf->nFieldMax = vs->nFieldMax ;
vf->field = new (vf->nFieldMax, OneField) ;
}
}
}
break ;
case '#': // count information
case '@':
case '+':
case '%':
{ char c = oneChar(vf,0);
OneInfo *li = vf->info[(int) c];
if (li == NULL)
parseError (vf, "unknown line type %c", c);
switch (vf->lineType)
{ case '#':
li->given.count = oneInt(vf,1);
if (c == vf->objectType && vf->isBinary) // allocate space for object index
{ vf->info['&']->bufSize = li->given.count;
vf->info['&']->buffer = new (li->given.count, I64);
}
if (c == vf->groupType && vf->isBinary) // allocate space for group index
{ vf->info['*']->bufSize = li->given.count+1; // +1 for end value
vf->info['*']->buffer = new (vf->info['*']->bufSize, I64);
}
break;
case '@':
li->given.max = oneInt(vf,1);
li->bufSize = li->given.max + 1; // allow for string terminators
li->buffer = new (li->bufSize*li->listEltSize, void);
break;
case '+':
li->given.total = oneInt(vf,1);
break;
case '%':
c = oneChar(vf,2);
li = vf->info[(int) c];
if (li == NULL)
parseError (vf, "unknown line type %c", c);
c = oneChar(vf,1);
if (c == '#')
li->given.groupCount = oneInt(vf,3);
else if (c == '+')
li->given.groupTotal = oneInt(vf,3);
else
parseError (vf, "unrecognised symbol %c", c);
break;
}
}
break;
case '!': // NB need to copy the strings
{ OneProvenance p ;
p.program = oneString(vf) ;
p.version = p.program + strlen(p.program) + 1 ;
p.command = p.version + strlen(p.version) + 1 ;
p.date = p.command + strlen(p.command) + 1 ;
vf->info['!']->accum.count -= 1; // to avoid double counting
addProvenance (vf, &p, 1) ;
}
break;
case '<':
vf->info['<']->accum.count -= 1; // to avoid double counting
oneAddReference (vf, oneString(vf), oneInt(vf,1));
break;
case '>':
vf->info['>']->accum.count -= 1; // to avoid double counting
oneAddDeferred (vf, oneString(vf));
break;
// Below here are binary file header types - requires given.count/given.max first
case '$': // read footer - goto end, find offset to start of footer and go there
if (oneInt(vf,0) != vf->isBig)
die ("ONE file error: endian mismatch - convert file to ascii");
vf->isBinary = true;
startOff = ftello (vf->f);
if (fseek (vf->f, -sizeof(off_t), SEEK_END) != 0)
die ("ONE file error: can't seek to final line");
if (fread (&footOff, sizeof(off_t), 1, vf->f) != 1)
die ("ONE file error: can't read footer offset");
if (fseeko (vf->f, footOff, SEEK_SET) != 0)
die ("ONE file error: can't seek to start of footer");
break;
case '^': // end of footer - return to where we jumped from header
if (fseeko (vf->f, startOff, SEEK_SET) != 0)
die ("ONE file error: can't seek back");
break;
case '&':
vf->isIndexIn = true;
break;
case '*':
break;
case ';':
vf->info[(int) oneChar(vf,0)]->listCodec = vcDeserialize (oneString(vf));
break;
default:
parseError (vf, "unknown header line type %c", vf->lineType);
break;
}
}
vf->isCheckString = false; // user can set this back to true if they wish
if (!vf->objectType) // failed to get a schema from function call or from file
{ fprintf (stderr, "ONEfile error %s: no schema available\n", path) ;
oneFileDestroy (vf) ;
return NULL ;
}
// allocate codec buffer - always allocate enough to handle fields of all line types
{ I64 size = vf->nFieldMax * sizeof(OneField) ;
int i ;
for (i = 0; i < 128; ++i)
if (vf->info[i])
{ OneInfo *li = vf->info[i];
if (li->listCodec && size < li->given.max * li->listEltSize)
size = li->given.max * li->listEltSize;
}
vf->codecBufSize = size+1;
vf->codecBuf = new (vf->codecBufSize, void); // add one for worst case codec usage
}
// if parallel, allocate a OneFile array for parallel thread objects, switch vf to head of array
if (nthreads > 1)
{ int i, j ;
if (strcmp (path, "-") == 0)
die ("ONE error: parallel input incompatible with stdin as input");
{ OneFile *vf0 = vf ;
vf = new (nthreads, OneFile);
vf[0] = *vf0 ;
vf->share = nthreads ;
free (vf0) ; // NB free() not oneFileDestroy because don't want deep destroy
}
startOff = ftello (vf->f) ;
for (i = 1; i < nthreads; i++)
{ vs = vs0 ; // needed because vs will have changed to map to the relevant page
OneFile *v = oneFileCreate(&vs, vf->fileType); // need to do this after header is read
vf[i] = *v ;
free (v) ;
v = vf+i;
v->share = -i ; // so this slave knows its own identity
v->f = fopen (path, "r") ; // need an independent file handle
if (fseeko (v->f, startOff, SEEK_SET) != 0)
die ("ONE file error: can't seek to start of data");
for (j = 0; j < 128; j++)
{ OneInfo *li = v->info[j];
if (li != NULL)
{ OneInfo *l0 = vf->info[j];
if (li->listCodec) vcDestroy (li->listCodec) ;
li->listCodec = l0->listCodec;
if (li->listEltSize > 0)
{ li->bufSize = l0->bufSize;
if (li->buffer) free (li->buffer) ;
li->buffer = new (l0->bufSize*l0->listEltSize, void);
}
li->given = l0->given;
}
}
v->codecBufSize = vf->codecBufSize;
if (v->codecBuf) free (v->codecBuf) ;
v->codecBuf = new (v->codecBufSize, void);
v->info['&']->listCodec = 0 ;
infoDestroy (v->info['&']);
v->info['*']->listCodec = 0 ;
infoDestroy (v->info['*']);
v->info['&'] = vf->info['&'];
v->info['*'] = vf->info['*'];
v->isIndexIn = vf->isIndexIn;
if (vf->subType != NULL)
{ v->subType = new (strlen(vf->subType)+1, char);
strcpy (v->subType, vf->subType) ;
}
else
v->subType = NULL;
}
} // end of parallel threads block
if (isDynamic)
oneSchemaDestroy (vs0) ;
return vf;
}
/***********************************************************************************
*
* ONE_USER_BUFFER / CLOSE / GOTO
*
**********************************************************************************/
// This lets the user reassign the buffer that lists in a particular line type are read into.
// If this is not set, a default buffer is provided. If buffer == NULL then the package
// reverts to the default buffer. This routine can be called repeatedly.
// NB the package doesn't check the size of a user supplied buffer - the user must allocate
// enough memory for all forthcoming list data.
void oneUserBuffer (OneFile *vf, char lineType, void *buffer)
{ OneInfo *li;
li = vf->info[(int) lineType];
if (buffer != NULL)
{ if ( ! li->isUserBuf && li->buffer != NULL)
{ free (li->buffer);
li->bufSize = 0;
}
li->buffer = buffer;
li->isUserBuf = true;
}
else
{ if (li->isUserBuf)
{ li->bufSize = li->given.max + 1;
li->buffer = new (li->given.max*li->listEltSize, void);
}
li->isUserBuf = false;
}
}
bool oneGotoObject (OneFile *vf, I64 i)
{ if (vf != NULL && vf->isIndexIn && vf->objectType)
if (0 <= i && i < vf->info[(int) vf->objectType]->given.count)
if (fseek (vf->f, ((I64 *) vf->info['&']->buffer)[i], SEEK_SET) == 0)
{ vf->object = i;
return true ;
}
return false ;
}
I64 oneGotoGroup (OneFile *vf, I64 i)
{ if (vf != NULL && vf->isIndexIn && vf->groupType)
if (0 <= i && i < vf->info[(int) vf->groupType]->given.count)
{ I64 *groupIndex = (I64 *) vf->info['*']->buffer;
if (!oneGotoObject(vf,groupIndex[i]))
return 0 ;
return (groupIndex[i+1] - groupIndex[i]);
}
return 0 ;
}
/***********************************************************************************
*
* ONE_OPEN_WRITE_(NEW | FROM)
*
**********************************************************************************/
OneFile *oneFileOpenWriteNew (const char *path, OneSchema *vs, char *fileType,
bool isBinary, int nthreads)
{ OneFile *vf ;
FILE *f ;
OneSchema *vs0 = vs ;
if (strcmp (path, "-") == 0)
f = stdout;
else
{ f = fopen (path, "w");
if (f == NULL)
return NULL ;
}
vf = oneFileCreate (&vs, fileType) ;
if (!vf)
return NULL ;
vf->f = f;
vf->isWrite = true;
vf->isBinary = isBinary;
vf->isLastLineBinary = true; // we don't want to add a newline before the first true line
vf->codecBufSize = vf->nFieldMax*sizeof(OneField) + 1;
vf->codecBuf = new (vf->codecBufSize, void);
if (nthreads > 1)
{ OneFile *v, *vf0 = vf ;
int i ;
char name[100] ;
int pid = getpid() ;
vf->share = nthreads ;
vf->fieldLock = mutexInit;
vf->listLock = mutexInit;
vf = new (nthreads, OneFile);
vf[0] = *vf0 ;
free (vf0) ; // NB free() not oneFileDestroy because don't want deep destroy
for (i = 1; i < nthreads; i++)
{ vs = vs0 ; // needed because vs will have changed in prevous oneFileCreate call
v = oneFileCreate (&vs, fileType);
v->isWrite = true;
v->isBinary = isBinary;
v->isLastLineBinary = isBinary;
v->codecBufSize = vf->codecBufSize;
v->codecBuf = new (v->codecBufSize, void);
v->codecTrainingSize /= 3*nthreads;
v->share = -i;
sprintf(name,".part.%d.%d",pid,i);
f = fopen (name, "w");
if (f == NULL)
die ("ONE file error: cannot create temporary file %d for parallel write", i);
v->f = f;
vf[i] = *v;
free (v);
}
}
return vf;
}
static inline void infoCopy (OneSchema *vs, OneFile *vfIn, char t, char type)
{
OneInfo *vi = vfIn->info[(int)t] ;
schemaAddInfoFromArray (vs, vi->nField, vi->fieldType, t, type) ;
if (vi->comment) vs->info[(int)t]->comment = strdup (vi->comment) ;
}
OneFile *oneFileOpenWriteFrom (const char *path, OneFile *vfIn, bool isBinary, int nthreads)
{
// first build a schema from vfIn
OneSchema *vs0 = oneSchemaCreateDynamic (vfIn->fileType, vfIn->subType) ;
OneSchema *vs = vs0->nxt ; // this is the actual schema - vs0 is for the header
if (vfIn->groupType) infoCopy (vs, vfIn, vfIn->groupType, 'G') ; // first the group
infoCopy (vs, vfIn, vfIn->objectType, 'O') ; // next the object
int i ; // then the rest of the record lines
for (i = 'A' ; i <= 'z' ; ++i)
if (isalpha(i) && vfIn->info[i] && i != vfIn->groupType && i != vfIn->objectType)
infoCopy (vs, vfIn, (char)i, 'D') ;
// use it to open the file
OneFile *vf = oneFileOpenWriteNew (path, vs0, vfIn->subType ? vfIn->subType : vfIn->fileType,
isBinary, nthreads);
oneSchemaDestroy (vs0) ;
if (!vf)
return NULL ;
oneInheritProvenance (vf, vfIn);
oneInheritReference (vf, vfIn);
oneInheritDeferred (vf, vfIn);
// set info[]->given, and resize codecBuf accordingly
I64 size = vf->codecBufSize;
for (i = 0; i < 128 ; ++i)
if (vf->info[i])
{ OneInfo *vi = vf->info[i];
vi->given = vfIn->info[i]->given ;
if (vi->listCodec)
{ I64 sz = vi->given.max * vi->listEltSize;
if (sz >= size)
size = sz+1;
}
}
if (size > vf->codecBufSize)
for (i = 0 ; i < nthreads ; ++i)
{ OneFile *v = &(vf[i]) ;
if (v->codecBuf) free (v->codecBuf) ;
v->codecBufSize = size;
v->codecBuf = new (size, void);
}
return vf ;
}
bool oneFileCheckSchema (OneFile *vf, char *textSchema)
{
char *fixedText = schemaFixNewlines (textSchema) ;
OneSchema *vs = oneSchemaCreateFromText (fixedText) ;
free (fixedText) ;
OneSchema *vs0 = vs ; // need to keep the root to destroy the full schema
if (vs->nxt) // the textSchema contained at least one 'P' line to define a file type
{ while (vs && strcmp (vs->primary, vf->fileType)) vs = vs->nxt ;
if (!vs)
{ fprintf (stderr, "OneSchema mismatch: file type %s not found in schema\n",
vf->fileType) ;
oneSchemaDestroy (vs0) ;
return false ;
}
}
bool isMatch = true ;
int i, j ;
for (i = 'A' ; i <= 'z' ; ++i)
if (vs->info[i])
{ OneInfo *vis = vs->info[i] ;
OneInfo *vif = vf->info[i] ;
if (!vif)
{ fprintf (stderr, "OneSchema mismatch: record type %c missing in file schema\n", i) ;
isMatch = false ;
}
else if (vif->nField != vis->nField)
{ fprintf (stderr, "OneSchema mismatch: number of fields for type %c file %d != %d\n",
i, vif->nField, vis->nField) ;
isMatch = false ;
}
else
for (j = 0 ; j < vif->nField ; ++j)
if (vif->fieldType[j] != vis->fieldType[j])
{ fprintf (stderr, "OneSchema mismatch: field %d for type %c file %s != %s\n",
j,i,oneTypeString[vif->fieldType[j]],oneTypeString[vis->fieldType[j]]);
isMatch = false ;
}
}
oneSchemaDestroy (vs0) ;
return isMatch ;
}
/***********************************************************************************
*
* SETTING UP PROVENANCE, REFERENCES, & DEFERRALS
*
**********************************************************************************/
static bool addProvenance(OneFile *vf, OneProvenance *from, int n)
{ I64 i ;
OneInfo *l = vf->info['!'];
I64 o = l->accum.count;
OneProvenance *p;
if (n == 0)
return (false);
assert (!vf->isHeaderOut) ;
l->accum.count += n;
p = new(o+n, OneProvenance);
if (o > 0)
memcpy (p, vf->provenance, o*sizeof(OneProvenance));
memcpy (p+o, from, n*sizeof(OneProvenance));
free (vf->provenance);
vf->provenance = p;
// finally create self-owned copy of all fields
p = p+o ;
for (i = 0 ; i < n ; ++i, ++p)
{ p->program = strdup(p->program) ;
p->version = strdup(p->version) ;
p->command = strdup(p->command) ;
p->date = strdup(p->date) ;
}
return (true);
}
bool oneInheritProvenance(OneFile *vf, OneFile *source)
{ return (addProvenance(vf, source->provenance, source->info['!']->accum.count)); }
bool oneAddProvenance(OneFile *vf, char *prog, char *version, char *format, ...)
{ va_list args ;
OneProvenance p;
time_t t = time(NULL);
p.program = prog;
p.version = version;
va_start (args, format) ; vasprintf (&p.command, format, args) ; va_end (args) ;
p.date = new (20, char);
strftime(p.date, 20, "%F_%T", localtime(&t));
addProvenance (vf, &p, 1);
free (p.command) ;
free (p.date) ;
return true ; // always added something
}
static bool addReference(OneFile *vf, OneReference *from, int n, bool isDeferred)
{ I64 o;
OneInfo *l;
OneReference *r, **t;
I64 i ;
if (n == 0)
return false;
assert (!vf->isHeaderOut) ;
if (isDeferred)
{ l = vf->info['>'];
t = &(vf->deferred);
}
else
{ l = vf->info['<'];
t = &(vf->reference);
}
o = l->accum.count;
l->accum.count += n;
r = new (o+n, OneReference);
if (o > 0)
memcpy (r, *t, o*sizeof(OneReference));
memcpy (r+o, from, n*sizeof(OneReference));
free (*t);
*t = r;
r += o ; // make self-owned copy of filename strings
for (i = 0 ; i < n ; ++i, ++r)
r->filename = strdup (r->filename) ;
return true;
}
bool oneInheritReference(OneFile *vf, OneFile *source)
{ return (addReference(vf, source->reference, source->info['<']->accum.count, false)); }
bool oneAddReference(OneFile *vf, char *filename, I64 count)
{ OneReference ref;
ref.filename = filename;
ref.count = count;
return (addReference(vf, &ref, 1, false));
}
bool oneInheritDeferred (OneFile *vf, OneFile *source)
{ return (addReference (vf, source->deferred, source->info['>']->accum.count, true)); }
bool oneAddDeferred (OneFile *vf, char *filename)
{ OneReference ref;
ref.filename = filename;
return (addReference (vf, &ref, 1, true));
}
/***********************************************************************************
*
* ONE_WRITE_HEADER / FOOTER
*
**********************************************************************************/
static void writeInfoSpec (OneFile *vf, char ci)
{
int i ;
OneInfo *vi = vf->info[(int) ci] ;
if (ci == vf->groupType)
fprintf (vf->f, "\n~ G %c %d", ci, vi->nField) ;
else if (ci == vf->objectType)
fprintf (vf->f, "\n~ O %c %d", ci, vi->nField) ;
else
fprintf (vf->f, "\n~ D %c %d", ci, vi->nField) ;
for (i = 0 ; i < vi->nField ; ++i)
fprintf (vf->f, " %d %s",
(int)strlen(oneTypeString[vi->fieldType[i]]), oneTypeString[vi->fieldType[i]]) ;
if (vi->comment)
oneWriteComment (vf, "%s", vi->comment) ;
}
static void writeHeader (OneFile *vf)
{ int i,n;
OneInfo *li;
assert (vf->isWrite) ;
assert (vf->line == 0) ;
assert (vf->share >= 0) ;
vf->isLastLineBinary = false; // header is in ASCII
fprintf (vf->f, "1 %lu %s %d %d", strlen(vf->fileType), vf->fileType, MAJOR, MINOR);
vf->line += 1;
if (vf->subType)
{ fprintf (vf->f, "\n2 %lu %s", strlen(vf->subType), vf->subType);
vf->line += 1;
}
// provenance
if (vf->info['!']->accum.count)
{ OneProvenance *p = vf->provenance;
n = vf->info['!']->accum.count;
for (i = 0; i < n; i++, p++)
{ fprintf (vf->f, "\n! 4 %lu %s %lu %s %lu %s %lu %s",
strlen(p->program), p->program, strlen(p->version), p->version,
strlen(p->command), p->command, strlen(p->date), p->date);
vf->line += 1;
}
}
fprintf (vf->f, "\n.") ; // always have a spacer after this
// reference and deferred
if (vf->info['<']->accum.count || vf->info['>']->accum.count)
{ OneReference *r = vf->reference;
n = vf->info['<']->accum.count;
for (i = 0; i < n; i++, r++)
{ fprintf (vf->f, "\n< %lu %s %" PRId64 "", strlen(r->filename), r->filename, r->count);
vf->line += 1;
}
r = vf->deferred;
n = vf->info['>']->accum.count;
for (i = 0; i < n; i++, r++)
{ fprintf (vf->f, "\n> %lu %s", strlen(r->filename), r->filename);
vf->line += 1;
}
fprintf (vf->f, "\n.") ;
}
// write the schema into the header - no need for file type, version etc. since already given
if (vf->groupType) writeInfoSpec (vf, vf->groupType) ;
if (vf->objectType) writeInfoSpec (vf, vf->objectType) ;
for (i = 'A' ; i <= 'z' ; ++i)
if (isalnum(i) && vf->info[i] && i != vf->objectType && i != vf->groupType)
writeInfoSpec (vf, i) ;
// any header text on '.' lines
if (vf->headerText)
{ OneHeaderText *t = vf->headerText ;
while (t)
{ fprintf (vf->f, "\n. %s", t->text) ;
t = t->nxt ;
}
fprintf (vf->f, "\n.") ;
}
if (vf->isBinary) // defer writing rest of header
{ fprintf (vf->f, "\n$ %d", vf->isBig);
vf->line += 1;
}
else // write counts based on those supplied in input header
{ fprintf (vf->f, "\n.") ;
bool isCountWritten = false ;
for (i = 'A'; i <= 'Z'+1 ; i++)
{ if (i == 'Z'+1)
{ if (vf->groupType) // NB group types are all lower case so > 'Z'+1
i = vf->groupType ;
else
break ;
}
li = vf->info[i];
if (li != NULL && li->given.count > 0)
{ isCountWritten = true ;
fprintf (vf->f, "\n# %c %" PRId64 "", i, li->given.count);
vf->line += 1;
if (li->given.max > 0)
{ fprintf (vf->f, "\n@ %c %" PRId64 "", i, li->given.max);
vf->line += 1;
}
if (li->given.total > 0)
{ fprintf (vf->f, "\n+ %c %" PRId64 "", i, li->given.total);
vf->line += 1;
}
if (li->given.groupCount > 0)
{ fprintf (vf->f, "\n%% %c # %c %" PRId64 "", vf->groupType, i, li->given.groupCount);
vf->line += 1;
}
if (li->given.groupTotal > 0)
{ fprintf (vf->f, "\n%% %c + %c %" PRId64 "", vf->groupType, i, li->given.groupTotal);
vf->line += 1;
}
}
}
if (isCountWritten)
fprintf (vf->f, "\n.") ;
}
fflush (vf->f);
vf->isHeaderOut = true;
}
/***********************************************************************************
*
* ONE_WRITE_LINE
*
**********************************************************************************/
static int writeStringList (OneFile *vf, char t, int len, char *buf)
{ OneInfo *li;
int j, nByteWritten = 0;
I64 sLen, totLen;
totLen = 0;
for (j = 0; j < len; j++)
{ sLen = strlen (buf);
totLen += sLen;
nByteWritten += fprintf (vf->f, " %" PRId64 " %s", sLen, buf);
buf += sLen + 1;
}
li = vf->info[(int) t];
li->accum.total += totLen;
if (li->accum.max < totLen)
li->accum.max = totLen;
return nByteWritten ;
}
// process is to fill fields by assigning to macros, then call - list contents are in buf
// NB in ASCII mode adds '\n' before writing line not after, so oneWriteComment() can add to line
// first call will write initial header
void oneWriteLine (OneFile *vf, char t, I64 listLen, void *listBuf)
{ I64 i, j;
OneInfo *li;
// fprintf (stderr, "write line %d type %c char %c\n", vf->line, t, oneChar(vf,0)) ;
assert (vf->isWrite) ;
assert (!vf->isFinal || !isalpha(t)) ;
li = vf->info[(int) t];
assert (li) ;
vf->line += 1;
li->accum.count += 1;
if (t == vf->groupType) updateGroupCount(vf, true);
if (li->listEltSize > 0) // need to write the list
{ assert (listLen >= 0) ;
vf->field[li->listField].len = listLen ;
if (listBuf == NULL) listBuf = li->buffer;
}
// BINARY - block write and optionally compress
if (vf->isBinary)
{ U8 x;
if (!vf->isHeaderOut && vf->share >= 0) writeHeader (vf) ; // no header on slaves
if (!vf->isLastLineBinary)
{ fputc ('\n', vf->f) ;
vf->byte = ftello (vf->f) ;
}
if (t == vf->objectType) // update index and increment object count
{ OneInfo *lx = vf->info['&'];
if (vf->object >= lx->bufSize) // first ensure enough space
{ I64 ns = (lx->bufSize << 1) + 0x20000;
I64 *nb = new (ns, I64);
memcpy(nb, lx->buffer, lx->bufSize*sizeof(I64));
free (lx->buffer);
lx->buffer = nb;
lx->bufSize = ns;
}
((I64 *) lx->buffer)[vf->object] = vf->byte;
// assert (ftello (vf->f) == vf->byte) ; // beware - very costly
++vf->object ;
}
if (t == vf->groupType)
{ OneInfo *lx = vf->info['*'];
if (vf->group >= lx->bufSize) // still room for final value because one ahead here
{ I64 ns, *nb;
ns = (lx->bufSize << 1) + 0x20000;
nb = new (ns, I64);
memcpy(nb, lx->buffer, lx->bufSize*sizeof(I64));
free (lx->buffer);
lx->buffer = nb;
lx->bufSize = ns;
}
((I64 *) lx->buffer)[vf->group-1] = vf->object; // group # already advanced
}
// write the line character
x = li->binaryTypePack; // Binary line code + compression flags
if (li->isUseListCodec)
x |= 0x01;
fputc (x, vf->f);
++vf->byte ;
// write the fields
if (li->nField > 0)
vf->byte += writeCompressedFields (vf->f, vf->field, li) ;
// write the list if there is one
if (li->listEltSize && listLen > 0)
{ I64 nBits, listSize;
int listBytes ;
li->accum.total += listLen;
if (listLen > li->accum.max)
li->accum.max = listLen;
if (li->fieldType[li->listField] == oneINT_LIST)
{ vf->byte += ltfWrite (*(I64*)listBuf, vf->f) ;
if (listLen == 1) goto doneLine ; // finish writing this line here
listBuf = compactIntList (vf, li, listLen, listBuf, &listBytes) ;
--listLen ;
fputc ((char)listBytes, vf->f) ;
vf->byte++ ;
}
else
listBytes = li->listEltSize ;
listSize = listLen * listBytes;
if (li->fieldType[li->listField] == oneSTRING_LIST) // handle as ASCII
vf->byte += writeStringList (vf, t, listLen, listBuf);
else if (x & 0x1)
{ if (listSize >= vf->codecBufSize)
{ free (vf->codecBuf);
vf->codecBufSize = listSize+1;
vf->codecBuf = new (vf->codecBufSize, void);
}
nBits = vcEncode (li->listCodec, listSize, listBuf, vf->codecBuf);
vf->byte += ltfWrite (nBits, vf->f) ;
if (fwrite (vf->codecBuf, ((nBits+7) >> 3), 1, vf->f) != 1)
die ("ONE write error: failed to write compressed list");
vf->byte += ((nBits+7) >> 3) ;
}
else
{ if (fwrite (listBuf, listSize, 1, vf->f) != 1)
die ("ONE write error line %" PRId64 ": failed to write list field %d listLen %" PRId64 " listSize %" PRId64 " listBuf %lx",
vf->line, li->listField, listLen, listSize, listBuf);
vf->byte += listSize;
if (li->listCodec != NULL)
{ vcAddToTable (li->listCodec, listSize, listBuf);
li->listTack += listSize;
if (li->listTack > vf->codecTrainingSize)
{ if (vf->share == 0)
{ vcCreateCodec (li->listCodec, 1);
li->isUseListCodec = true;
}
else
{ OneFile *ms;
OneInfo *lx;
if (vf->share < 0)
{ ms = vf + vf->share;
lx = ms->info[(int) t];
}
else
{ ms = vf;
lx = li;
}
pthread_mutex_lock(&ms->listLock);
if ( ! li->isUseListCodec)
{ if (vf->share < 0)
{ lx->listTack += li->listTack;
li->listTack = 0;
}
if (lx->listTack > ms->codecTrainingSize)
{ for (i = 1; i < ms->share; i++)
vcAddHistogram (lx->listCodec,
ms[i].info[(int) t]->listCodec);
vcCreateCodec (lx->listCodec, 1);
for (i = 1; i < ms->share; i++)
{ OneCodec *m = ms[i].info[(int) t]->listCodec;
ms[i].info[(int) t]->listCodec = lx->listCodec;
vcDestroy (m);
}
lx->isUseListCodec = true;
for (i = 1; i < ms->share; i++)
ms[i].info[(int) t]->isUseListCodec = true;
}
}
pthread_mutex_unlock(&ms->listLock);
}
}
}
}
}
doneLine:
vf->isLastLineBinary = true;
}
// ASCII - write field by field
else
{ if (!vf->isHeaderOut && !vf->isNoAsciiHeader) writeHeader (vf) ;
if (!vf->isLastLineBinary) // terminate previous ascii line
fputc ('\n', vf->f);
fputc (t, vf->f);
for (i = 0; i < li->nField; i++)
switch (li->fieldType[i])
{
case oneINT:
fprintf (vf->f, " %" PRId64 "", vf->field[i].i);
break;
case oneREAL:
fprintf (vf->f, " %f", vf->field[i].r);
break;
case oneCHAR:
fprintf (vf->f, " %c", vf->field[i].c);
break;
case oneSTRING:
case oneDNA:
case oneINT_LIST:
case oneREAL_LIST:
case oneSTRING_LIST:
li->accum.total += listLen;
if (listLen > li->accum.max)
li->accum.max = listLen;
fprintf (vf->f, " %" PRId64 "", listLen);
if (li->fieldType[i] == oneSTRING || li->fieldType[i] == oneDNA)
{ if (listLen > INT_MAX)
die ("ONE write error: string length %" PRId64 " > current max %d", listLen, INT_MAX);
fprintf (vf->f, " %.*s", (int) listLen, (char *) listBuf);
}
else if (li->fieldType[i] == oneINT_LIST)
{ I64 *b = (I64 *) listBuf;
for (j = 0; j < listLen ; ++j)
fprintf (vf->f, " %" PRId64 "", b[j]);
}
else if (li->fieldType[i] == oneREAL_LIST)
{ double *b = (double *) listBuf;
for (j = 0; j < listLen ; ++j)
fprintf (vf->f, " %f", b[j]);
}
else // vSTRING_LIST
writeStringList (vf, t, listLen, listBuf);
break;
}
vf->isLastLineBinary = false;
}
}
void oneWriteLineDNA2bit (OneFile *vf, char lineType, I64 listLen, U8 *dnaBuf)
{ die ("not written yet") ;
oneWriteLine (vf, lineType, listLen, dnaBuf) ;
}
void oneWriteComment (OneFile *vf, char *format, ...)
{
va_list args ;
if (vf->isCheckString) // then check no newlines in format
{ char *s = format ;
while (*s) if (*s++ == '\n') die ("newline in comment format string: %s", format) ;
}
va_start (args, format) ;
if (vf->isLastLineBinary) // write a comment line
{ char *comment ;
vasprintf (&comment, format, args) ;
oneWriteLine (vf, '/', strlen(comment), comment) ;
free (comment) ;
}
else // write on same line after space
{ fputc (' ', vf->f) ;
vfprintf (vf->f, format, args) ;
}
va_end (args) ;
}
/***********************************************************************************
*
* MERGING, FOOTER HANDLING, AND CLOSE
*
**********************************************************************************/
static void oneWriteFooter (OneFile *vf)
{ int i,n;
off_t footOff;
OneInfo *li;
char *codecBuf ;
footOff = ftello (vf->f);
if (footOff < 0)
die ("ONE write error: failed footer ftell");
// first the per-linetype information
codecBuf = new (vcMaxSerialSize()+1, char) ; // +1 for added up unused 0-terminator
for (i = 'A'; i <= 'Z'+1 ; i++)
{ if (i == 'Z'+1)
{ if (vf->groupType) // NB group types are all lower case so > 'Z'+1
i = vf->groupType ;
else
break ;
}
li = vf->info[i];
if (li != NULL && li->accum.count > 0)
{ fprintf (vf->f, "# %c %" PRId64 "\n", i, li->accum.count);
if (li->listEltSize)
{ fprintf (vf->f, "@ %c %" PRId64 "\n", i, li->accum.max);
fprintf (vf->f, "+ %c %" PRId64 "\n", i, li->accum.total);
}
if (vf->groupType && i != vf->groupType && vf->group > 0)
{ fprintf (vf->f, "%% %c # %c %" PRId64 "\n", vf->groupType, i, li->accum.groupCount);
if (li->listEltSize)
fprintf (vf->f, "%% %c + %c %" PRId64 "\n", vf->groupType, i, li->accum.groupTotal);
}
if (li->isUseListCodec && li->listCodec != DNAcodec)
{ oneChar(vf,0) = i;
n = vcSerialize (li->listCodec, codecBuf);
oneWriteLine (vf, ';', n, codecBuf);
}
}
}
li = vf->info['/'] ; // may need to write list codec for comments
if (li->isUseListCodec)
{ oneChar(vf,0) = '/' ;
n = vcSerialize (li->listCodec, codecBuf);
oneWriteLine (vf, ';', n, codecBuf);
}
free (codecBuf) ;
oneWriteLine (vf, '&', vf->object, NULL); // number of objects in file = length of index
// NB NULL here and below for '*' defaults writing info->buffer, which contains the index
if (vf->groupType > 0 && vf->group > 0)
{ ((I64 *) vf->info['*']->buffer)[vf->group] = vf->object;
oneWriteLine (vf, '*', vf->group+1, NULL); // number of groups in file + 1 = length of index
}
fprintf (vf->f, "^\n"); // end of footer marker
if (fwrite (&footOff, sizeof(off_t), 1, vf->f) != 1)
die ("ONE write error: failed writing footer offset");
}
// After all input has been read, or all data has been written, this routine will finish
// accumulating counts/statistics for the file and merge thread stats into those for
// the master file (if a parallel OneFile).
void oneFinalizeCounts(OneFile *vf)
{ int i, j, n, k, len;
OneInfo *li, *ln;
if (vf->share < 0)
die ("ONE write error: cannot call oneFileClose on a slave OneFile");
vf->isFinal = true;
if (vf->share == 0)
{ updateGroupCount(vf,false);
return;
}
len = vf->share;
// Close current groups at the end of each part (if any)
if (vf->groupType > 0)
for (i = 'A'; i <= 'Z'; i++)
if (vf->info[i] != NULL)
for (j = 0; j < len; j++)
if (vf[j].inGroup)
{ I64 oc, ot;
ot = oc = 0;
for (k = j+1; k < len; k++)
if (vf[k].inGroup)
{ oc += vf[k].info[i]->oCount;
ot += vf[k].info[i]->oTotal;
break;
}
else
{ oc += vf[k].info[i]->accum.count;
ot += vf[k].info[i]->accum.total;
}
li = vf[j].info[i];
if ((li->accum.count - li->gCount) + oc > li->accum.groupCount)
li->accum.groupCount = (li->accum.count - li->gCount) + oc;
if ((li->accum.total - li->gTotal) + ot > li->accum.groupTotal)
li->accum.groupTotal = (li->accum.total - li->gTotal) + ot;
}
// first the per-linetype information
n = vf->groupType;
if (n == 0)
n = 'Z';
for (i = 'A'; i <= n; i++)
{ ln = vf->info[i];
for (j = 1; j < len; j++)
{ li = (vf+j)->info[i];
if (li != NULL && li->accum.count > 0)
{ ln->accum.count += li->accum.count;
if (li->accum.max > ln->accum.max)
ln->accum.max = li->accum.max;
ln->accum.total += li->accum.total;
if (li->accum.groupCount > ln->accum.groupCount)
ln->accum.groupCount = li->accum.groupCount;
if (li->accum.groupTotal > ln->accum.groupTotal)
ln->accum.groupTotal = li->accum.groupTotal;
}
}
}
if ( ! vf->isBinary)
return;
// Stitch the group index together
if (vf->groupType > 0)
{ I64 *gb, *gi, off;
int ns;
ns = 0;
for (j = 0; j < len; j++)
ns += vf[j].group;
gb = new (ns+1, I64);
ns = 0;
off = 0;
for (j = 0; j < len; j++)
{ li = vf[j].info['*'];
gi = (I64 *) (li->buffer);
for (i = 0; i < vf[j].group; i++)
gb[ns++] = gi[i] + off;
off += vf[j].object;
}
gb[ns] = off;
li = vf->info['*'];
free(li->buffer);
li->buffer = gb;
li->bufSize = ns+1;
vf->group = ns;
}
// Stitch the object index together
{ int ns;
I64 *gb, *gi, off;
ns = 0;
for (j = 0; j < len; j++)
ns += vf[j].object;
gb = new (ns, I64);
ns = 0;
off = 0;
for (j = 0; j < len; j++)
{ li = vf[j].info['&'];
gi = (I64 *) (li->buffer);
for (i = 0; i < vf[j].object; i++)
gb[ns++] = gi[i] + off;
off += ftello(vf[j].f);
}
li = vf->info['&'];
free(li->buffer);
li->buffer = gb;
li->bufSize = ns;
vf->object = ns;
}
}
// automatically rewrites header if allowed when writing
void oneFileClose (OneFile *vf)
{
assert (vf->share >= 0) ;
if (vf->isWrite)
{
if (!vf->isFinal) // RD moved this here from above - surely only needed if isWrite
oneFinalizeCounts (vf);
if (!vf->isHeaderOut && (vf->isBinary || !vf->isNoAsciiHeader)) writeHeader (vf) ;
if (vf->share > 0)
{ int i, pid, fid, nread;
char name[100], *buf;
buf = new (10000000, char);
pid = getpid();
for (i = 1; i < vf->share; i++)
{ fclose (vf[i].f);
vf[i].f = NULL;
sprintf(name,".part.%d.%d",pid,i);
fid = open(name,O_RDONLY);
while ((nread = read(fid,buf,10000000)) > 0)
if ((int) fwrite(buf,1,nread,vf->f) != nread)
die ("ONE write error: while cat'ing thread bits (oneFileClose)");
if (unlink(name) < 0)
die ("ONE write error: could not delete thread file %s", name);
}
free(buf);
}
fputc ('\n', vf->f); // end of file if ascii, end of data marker if binary
if (vf->isBinary) // write the footer
oneWriteFooter (vf);
}
oneFileDestroy (vf);
}
/***********************************************************************************
*
* Length limited Huffman Compressor/decompressor with special 2-bit compressor for DNA
* Author: Gene Myers
* Creation date: June 27, 2019
*
* inline both compression.h and compression.c here
*
**********************************************************************************/
#undef DEBUG
#undef TEST
// To create a compressor, get an initially empty object with vcCreate, then
// add a significant corpus of the byte data to be compressed with vcAddToTable,
// and finally create a Huffman codec based on this corpus by calling
// vcCreateCodec. The parameter "partial" should be set if not all the data
// to be compressed has been scanned. At this point you have a compressor ready
// to operate. You can destroy/free it with vcDestroy.
OneCodec *vcCreate();
void vcAddToTable(OneCodec *vc, int len, char *bytes);
void vcCreateCodec(OneCodec *vc, int partial);
void vcDestroy(OneCodec *vc);
// In the instance of accumulating data over multiple threads, vcAddHistogram, will
// add the counts in the table for vh, to the table for vc.
void vcAddHistogram(OneCodec *vc, OneCodec *vh);
// A diagnostic routine: shows you the compression scheme and if the distribution
// of the scanned corpus is available, it shows you that too. Output to file 'to'.
void vcPrint(OneCodec *vc, FILE *to);
// You can encode and decode where ibytes/ilen are the input and the output
// is placed at obytes and the length of the compressed/decompressed result
// is returned as the value of the function. For vcEncode, ilen is the size
// of the uncompressed input in bytes, and the return value is the size of
// the compressed output in **bits**. The converse is true for vcDecode, i.e
// ilen is the number of bits in the compressed input, and the return value
// is the number of bytes in the uncompressed output. The routines are endian safe.
int vcEncode(OneCodec *vc, int ilen, char *ibytes, char *obytes);
int vcDecode(OneCodec *vc, int ilen, char *ibytes, char *obytes);
// Rather than directly reading or writing an encoding of a compressor, the routines
// below serialize or deserialize the compressor into/outof a user-supplied buffer.
// vcMaxSerialSize gives the maximum size of a serialized compressor so the user
// can arrange a buffer of the appropriate size. vcSerialize serializes vc into
// buffer 'out' and returns the # of bytes in the encoding. vcDeserialize will reverse
// the process given a serialization. The routines are endian-safe.
int vcMaxSerialSize();
int vcSerialize(OneCodec *vc, void *out);
OneCodec *vcDeserialize(void *in);
typedef uint64_t uint64;
typedef uint32_t uint32;
typedef uint16_t uint16;
typedef uint8_t uint8;
#define HUFF_CUTOFF 12 // This cannot be larger than 16 !
// Endian flipping macros
#define FLIP64(p) \
{ uint8 x = p[0]; \
p[0] = p[7]; \
p[7] = x; \
x = p[1]; \
p[1] = p[6]; \
p[6] = x; \
x = p[2]; \
p[2] = p[5]; \
p[5] = x; \
x = p[3]; \
p[3] = p[4]; \
p[4] = x; \
}
#define FLIP32(p) \
{ uint8 x = p[0]; \
p[0] = p[3]; \
p[3] = x; \
x = p[1]; \
p[1] = p[2]; \
p[2] = x; \
}
#define FLIP16(p) \
{ uint8 x = p[0]; \
p[0] = p[1]; \
p[1] = x; \
}
/*******************************************************************************************
*
* Routines for computing a length-limited Huffman Encoding Scheme
*
********************************************************************************************/
#define EMPTY 0 // Compressor just created, histogram zero'd
#define FILLED 1 // Compressor histogram being filled, no codec
#define CODED_WITH 2 // Compressor has a codec (can no longer accumulate histogram)
#define CODED_READ 3 // Compressor has codec but no histogram as was created by read
typedef struct
{ int state; // 1 of the 4 states immediately above
int isbig; // endian of the current machine
uint16 codebits[256]; // Code esc_code is the special code for
uint8 codelens[256]; // non-Huffman exceptions
char lookup[0x10000]; // Lookup table (just for decoding)
int esc_code; // The special escape code (-1 if not partial)
int esc_len; // The length in bits of the special code (if present)
uint64 hist[256]; // Byte distribution for codec
} _OneCodec;
// The special "predefined" DNA compressor
static _OneCodec _DNAcodec = { .state = CODED_READ };
OneCodec *DNAcodec = (OneCodec *) &_DNAcodec;
// Create an EMPTY compressor object with zero'd histogram and determine machine endian
OneCodec *vcCreate()
{ _OneCodec *v;
int i;
v = (_OneCodec *) malloc(sizeof(_OneCodec));
if (v == NULL)
{ fprintf(stderr,"vcCreate: Could not allocate compressor\n");
exit (1);
}
v->state = EMPTY;
for (i = 0; i < 256; i++)
v->hist[i] = 0;
{ uint32 t;
uint8 *b;
t = 1;
b = (uint8 *) (&t);
v->isbig = (b[0] == 0);
}
return ((OneCodec *) v);
}
// Free a compressor object
void vcDestroy(OneCodec *vc)
{ _OneCodec *v = (_OneCodec *) vc;
if (vc != DNAcodec)
free(v);
}
// Add the frequencies of bytes in bytes[0..len) to vc's histogram
// State becomes FILLED
void vcAddToTable(OneCodec *vc, int len, char *bytes)
{ _OneCodec *v = (_OneCodec *) vc;
uint8 *data = (uint8 *) bytes;
int i;
for (i = 0; i < len; i++)
v->hist[(int) data[i]] += 1;
if (v->state < FILLED)
v->state = FILLED;
}
// Add the frequencies of bytes in bytes[0..len) to vc's histogram
// State becomes FILLED
void vcAddHistogram(OneCodec *vc, OneCodec *vh)
{ _OneCodec *v = (_OneCodec *) vc;
_OneCodec *h = (_OneCodec *) vh;
int i;
if (v->state >= CODED_WITH)
{ fprintf(stderr,"vcAddHistogram: Compressor already has a codec\n");
exit (1);
}
if (h->state == CODED_READ)
{ fprintf(stderr,"vcAddHistogram: Source compressor doesn't have a histogram\n");
exit (1);
}
for (i = 0; i < 256; i++)
v->hist[i] += h->hist[i];
v->state = FILLED;
}
// Check vc has a non-empty distribution histogram and if so then build
// length-limited Huffman tables for the bytes that occur in the histogram,
// plus a special escape code if partial is set and there is at least one byte
// with a zero count in the histogram. The algorithm is by Larmore & Hirschberg,
// JACM 73, 3 (1990).
uint64 *HIST;
int HSORT(const void *l, const void *r)
{ int x = *((int *) l);
int y = *((int *) r);
return (HIST[x] - HIST[y]);
}
void vcCreateCodec(OneCodec *vc, int partial)
{ _OneCodec *v = (_OneCodec *) vc;
uint64 *hist;
char *look;
uint8 *lens;
uint16 *bitv;
int code[256];
int leng[256];
uint16 bits[256];
int ncode, dcode, ecode;
int i;
if (v->state >= CODED_WITH)
{ fprintf(stderr,"vcCreateCoder: Compressor already has a codec\n");
exit (1);
}
if (v->state == EMPTY)
{ fprintf(stderr,"vcCreateCoder: Compressor has no byte distribution data\n");
exit (1);
}
hist = v->hist;
look = v->lookup;
lens = v->codelens;
bitv = v->codebits;
ecode = -partial;
ncode = 0;
for (i = 0; i < 256; i++)
if (hist[i] > 0)
code[ncode++] = i;
else if (ecode < 0)
{ ecode = i;
code[ncode++] = i;
}
dcode = 2*ncode;
if (ecode < 0)
partial = 0;
HIST = hist;
qsort(code,ncode,sizeof(int),HSORT);
#ifdef DEBUG
fprintf(stderr,"\nSorted Codes %d:\n",ncode);
for (i = 0; i < ncode; i++)
fprintf(stderr," %3d: %3d %10llu\n",i,code[i],hist[code[i]]);
#endif
{ uint8 matrix[HUFF_CUTOFF][dcode];
uint64 count1[dcode], count2[dcode], countb[ncode];
uint64 *lcnt, *ccnt, *swp;
int llen, span;
int j, k, n, L;
for (n = 0; n < ncode; n++)
{ count1[n] = countb[n] = hist[code[n]];
leng[n] = 0;
}
#ifdef DEBUG
fprintf(stderr,"\nCoin Filter:\n");
fprintf(stderr," Row %2d:",HUFF_CUTOFF);
for (n = 0; n < ncode; n++)
fprintf(stderr," %" PRId64 "*",countb[n]);
fprintf(stderr,"\n");
#endif
lcnt = count1;
ccnt = count2;
llen = ncode-1;
for (L = HUFF_CUTOFF-1; L > 0; L--)
{ j = 0;
k = 0;
for (n = 0; j < ncode || k < llen; n++)
{ if (k >= llen || (j < ncode && countb[j] <= lcnt[k] + lcnt[k+1]))
{ ccnt[n] = countb[j];
matrix[L][n] = 1;
j += 1;
}
else
{ ccnt[n] = lcnt[k] + lcnt[k+1];
matrix[L][n] = 0;
k += 2;
}
}
llen = n-1;
swp = lcnt;
lcnt = ccnt;
ccnt = swp;
#ifdef DEBUG
fprintf(stderr," Row %2d:",L);
for (n = 0; n <= llen; n++)
fprintf(stderr," %" PRId64 "%c",lcnt[n],matrix[L][n]?'*':'+');
fprintf(stderr,"\n");
#endif
}
span = 2*(ncode-1);
for (L = 1; L < HUFF_CUTOFF; L++)
{ j = 0;
for (n = 0; n < span; n++)
{ if (matrix[L][n])
leng[j++] += 1;
}
span = 2*(span-j);
}
for (n = 0; n < span; n++)
leng[n] += 1;
#ifdef DEBUG
fprintf(stderr,"\nBack Trace:\n");
span = 2*(ncode-1);
for (L = 1; L < HUFF_CUTOFF; L++)
{ j = 0;
fprintf(stderr," Row %2d:",L);
for (n = 0; n < span; n++)
{ if (matrix[L][n])
j += 1;
fprintf(stderr," %c",matrix[L][n]?'*':'+');
}
fprintf(stderr,"\n");
span = 2*(span-j);
}
fprintf(stderr," Length:");
for (n = 0; n < ncode; n++)
fprintf(stderr," %d",leng[n]);
fprintf(stderr,"\n");
#endif
}
{ int n, llen;
uint16 lbits;
llen = leng[0];
lbits = bits[0] = (1 << llen) - 1;
for (n = 1; n < ncode; n++)
{ while ((lbits & 0x1) == 0)
{ lbits >>= 1;
llen -= 1;
}
lbits -= 1;
while (llen < leng[n])
{ lbits = (lbits << 1) | 0x1;
llen += 1;
}
bits[n] = lbits;
}
#ifdef DEBUG
{ int j;
fprintf(stderr,"\nCodes:\n");
for (n = 0; n < ncode; n++)
{ fprintf(stderr," %3d: %2d ",code[n],leng[n]);
for (j = leng[n]-1; j >= 0; j--)
fprintf(stderr,"%x",(bits[n]>>j)&0x1);
fprintf(stderr,"\n");
}
}
#endif
}
for (i = 0; i < 256; i++)
{ lens[i] = 0;
bitv[i] = 0;
}
for (i = 0; i < ncode; i++)
{ lens[code[i]] = leng[i];
bitv[code[i]] = bits[i];
}
{ int j, powr; // Fill in a decoder table giving the next Huffman code
uint16 base; // that is a prefix of the next 16 bits
for (i = 0; i < 256; i++)
{ if (lens[i] > 0)
{ base = (bitv[i] << (16-lens[i]));
powr = (1 << (16-lens[i]));
for (j = 0; j < powr; j++)
look[base+j] = i;
}
}
}
if (partial)
{ v->esc_code = ecode;
v->esc_len = lens[ecode];
lens[ecode] = 0;
}
else
v->esc_code = -1;
v->state = CODED_WITH;
}
// For debug, give a nice print out of the distribution histogram (if present)
// and the Huffman codec
void vcPrint(OneCodec *vc, FILE *to)
{ _OneCodec *v = (_OneCodec *) vc;
uint64 total_bits, ucomp_bits, count;
uint16 mask, code, *bits;
uint64 *hist;
uint8 *lens;
int clen;
int hashist;
int i, k;
if (vc == DNAcodec)
{ fprintf(to," DNAcompressor\n");
return;
}
if (v->state < CODED_WITH)
{ fprintf(stderr,"vcPrint: Compressor has no codec\n");
exit (1);
}
hashist = (v->state == CODED_WITH);
bits = v->codebits;
lens = v->codelens;
hist = v->hist; // only needed if hashist, but compiler warning if assignment is conditional
if (hashist)
{ total_bits = 0;
ucomp_bits = 0;
count = 0;
for (i = 0; i < 256; i++)
count += hist[i];
fprintf(to,"\nHistogram:\n");
for (i = 0; i < 256; i++)
if (hist[i] > 0)
{ if (isprint(i))
fprintf(to," %c: %12" PRIu64 " %5.1f%%\n",i,hist[i],(hist[i]*100.)/count);
else
fprintf(to," %3d: %12" PRIu64 " %5.1f%%\n",i,hist[i],(hist[i]*100.)/count);
}
}
fprintf(to,"\nCode Table:\n");
for (i = 0; i < 256; i++)
{ clen = lens[i];
if (i == v->esc_code)
clen = v->esc_len;
if (clen > 0)
{ mask = (1 << clen);
code = bits[i];
if (isprint(i))
fprintf(to," %c: %2d ",i,clen);
else
fprintf(to," %3d: %2d ",i,clen);
for (k = 0; k < clen; k++)
{ mask >>= 1;
if (code & mask)
fprintf(to,"1");
else
fprintf(to,"0");
}
if (i == v->esc_code)
fprintf(to," ***\n");
else
{ fprintf(to,"\n");
if (hashist)
{ total_bits += clen*hist[i];
ucomp_bits += (hist[i]<<3);
}
}
}
}
if (hashist)
fprintf(to,"\nTotal Bytes = %" PRIu64 " (%.2f%%)\n",(total_bits-1)/8+1,(100.*total_bits)/ucomp_bits);
}
/*******************************************************************************************
*
* Read and Write Huffman Schemes (actually just (de)serialize)
*
********************************************************************************************/
// Maximum # of bytes in a serialized compressor code
int vcMaxSerialSize()
{ return (257 + 2*sizeof(int) + 256*sizeof(uint16)); }
// Code the compressor into blob 'out' and return number of bytes in the code
int vcSerialize(OneCodec *vc, void *out)
{ _OneCodec *v = (_OneCodec *) vc;
int i;
uint16 *bits;
uint8 *lens, *o;
if (vc == DNAcodec)
return (0);
if (v->state < CODED_WITH)
{ fprintf(stderr,"vcWrite: Compressor does not have a codec\n");
exit (1);
}
lens = v->codelens;
bits = v->codebits;
o = (uint8 *) out;
// Only need to record endian, escape code, code lengths, and codes for those
// with non-zero length
*o++ = v->isbig;
memcpy(o,&(v->esc_code),sizeof(int));
o += sizeof(int);
memcpy(o,&(v->esc_len),sizeof(int));
o += sizeof(int);
for (i = 0; i < 256; i++)
{ *o++ = lens[i];
if (lens[i] > 0 || i == v->esc_code)
{ memcpy(o,bits+i,sizeof(uint16));
o += sizeof(uint16);
}
}
return (o - (uint8 *) out);
}
// Create a compressor object from the serialized code in blob 'in'.
// The compressor does not have the original histogram from which
// its codec was created. If the endian of the current machine and
// the one that serialized the compressor don't match, then all relevant
// items are byte-flipped.
OneCodec *vcDeserialize(void *in)
{ _OneCodec *v;
char *look;
uint8 *lens, *ip;
uint16 *bits, base;
int i, j, powr;
v = (_OneCodec *) malloc(sizeof(_OneCodec));
if (v == NULL)
{ fprintf(stderr,"vcRead: Could not allocate compressor\n");
exit (1);
}
v->state = CODED_READ;
lens = v->codelens;
bits = v->codebits;
look = v->lookup;
ip = (uint8 *) in;
{ uint32 t;
uint8 *b;
t = 1;
b = (uint8 *) (&t);
v->isbig = (b[0] == 0);
}
if (v->isbig != *ip++) // If endians out and in don't match then flip item bytes as needed
{ FLIP32(ip)
memcpy(&(v->esc_code),ip,sizeof(int));
ip += sizeof(int);
FLIP32(ip)
memcpy(&(v->esc_len),ip,sizeof(int));
ip += sizeof(int);
for (i = 0; i < 256; i++)
{ lens[i] = *ip++;
if (lens[i] > 0 || i == v->esc_code)
{ FLIP16(ip)
memcpy(bits+i,ip,sizeof(uint16));
ip += sizeof(uint16);
}
else
bits[i] = 0;
}
}
else
{ memcpy(&(v->esc_code),ip,sizeof(int));
ip += sizeof(int);
memcpy(&(v->esc_len),ip,sizeof(int));
ip += sizeof(int);
for (i = 0; i < 256; i++)
{ lens[i] = *ip++;
if (lens[i] > 0 || i == v->esc_code)
{ memcpy(bits+i,ip,sizeof(uint16));
ip += sizeof(uint16);
}
else
bits[i] = 0;
}
}
if (v->esc_code >= 0)
lens[v->esc_code] = v->esc_len;
for (i = 0; i < 256; i++)
{ if (lens[i] > 0)
{ base = (bits[i] << (16-lens[i]));
powr = (1 << (16-lens[i]));
for (j = 0; j < powr; j++)
look[base+j] = i;
}
}
if (v->esc_code >= 0)
lens[v->esc_code] = 0;
return ((OneCodec *) v);
}
/*******************************************************************************************
*
* Encoders and Decoders
*
********************************************************************************************/
static uint8 Number[128] =
{ 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 0, 0, 0, 2,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 3, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 0, 0, 0, 2,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 3, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
};
// Compress DNA into 2-bits per base
int Compress_DNA(int len, char *s, char *t)
{ int i, j;
uint8 *s0, *s1, *s2, *s3;
s0 = (uint8 *) s;
s1 = s0+1;
s2 = s1+1;
s3 = s2+1;
len -= 3;
for (i = j = 0; i < len; i += 4)
t[j++] = (Number[s0[i]] << 6) | (Number[s1[i]] << 4) | (Number[s2[i]] << 2) | Number[s3[i]];
switch (i-len)
{ case 0:
t[j++] = (Number[s0[i]] << 6) | (Number[s1[i]] << 4) | (Number[s2[i]] << 2);
break;
case 1:
t[j++] = (Number[s0[i]] << 6) | (Number[s1[i]] << 4);
break;
case 2:
t[j++] = (Number[s0[i]] << 6);
break;
default:
break;
}
return ((len+3)<<1);
}
// Encode ibytes[0..ilen) according to compressor vc and place in obytes
// Return the # of bits used.
int vcEncode(OneCodec *vc, int ilen, char *ibytes, char *obytes)
{ _OneCodec *v = (_OneCodec *) vc;
uint64 c, ocode, *ob;
int n, k, rem, tbits, ibits, esc, elen;
uint8 *clens, x, *bcode, *bb;
uint16 *cbits;
if (vc == DNAcodec)
return (Compress_DNA(ilen,ibytes,obytes));
if (v->state < CODED_WITH)
{ fprintf(stderr,"vcEncode: Compressor does not have a codec\n");
exit (1);
}
esc = v->esc_code;
elen = v->esc_len;
clens = v->codelens;
cbits = v->codebits;
ibits = (ilen << 3);
bcode = (uint8 *) &ocode;
#define OCODE(L,C) \
{ rem -= L; \
if (rem <= 0) \
{ ocode |= (C >> (-rem)); \
*ob++ = ocode; \
if (rem < 0) \
{ rem += 64; \
ocode = (C << rem); \
} \
else \
{ rem = 64; \
ocode = 0; \
} \
} \
else \
ocode |= (C << rem); \
}
ob = (uint64 *) obytes;
tbits = 2;
rem = 62;
if (v->isbig)
ocode = 0x4000000000000000llu;
else
ocode = 0;
for (k = 0; k < ilen; k++)
{ x = ibytes[k];
n = clens[x];
if (n == 0)
{ if (esc < 0)
{ fprintf(stderr,"Compression lib: No code for %c(%x) and no escape code\n",x,x);
exit (1);
}
c = cbits[esc];
tbits += 8+elen;
if (tbits > ibits)
break;
OCODE(elen,c);
c = x;
OCODE(8,c);
}
else
{ tbits += n;
if (tbits > ibits)
break;
c = cbits[x];
OCODE(n,c);
}
}
if (k < ilen)
{ *obytes = 0xff;
memcpy(obytes+1,ibytes,ilen);
return (ibits+8);
}
bb = (uint8 *) ob;
if (v->isbig)
{ rem = ((71-rem)>>3);
for (k = 0; k < rem; k++)
*bb++ = bcode[k];
}
else
{ rem = 7 - ((63-rem)>>3);
for (k = 7; k >= rem; k--)
*bb++ = bcode[k];
}
if (tbits >= 64 && !v->isbig)
{ x = obytes[7];
obytes[7] = obytes[0];
obytes[0] = x;
}
return (tbits);
}
// Uncompress read from 2-bits per base into [0-3] per byte representation
static char Base[4] = { 'a', 'c', 'g', 't' };
int Uncompress_DNA(char *s, int len, char *t)
{ int i, tlen, byte;
char *t0, *t1, *t2, *t3;
t0 = t;
t1 = t0+1;
t2 = t1+1;
t3 = t2+1;
tlen = len-3;
for (i = 0; i < tlen; i += 4)
{ byte = *s++;
t0[i] = Base[(byte >> 6) & 0x3];
t1[i] = Base[(byte >> 4) & 0x3];
t2[i] = Base[(byte >> 2) & 0x3];
t3[i] = Base[byte & 0x3];
}
switch (i-tlen)
{ case 0:
byte = *s++;
t0[i] = Base[(byte >> 6) & 0x3];
t1[i] = Base[(byte >> 4) & 0x3];
t2[i] = Base[(byte >> 2) & 0x3];
break;
case 1:
byte = *s++;
t0[i] = Base[(byte >> 6) & 0x3];
t1[i] = Base[(byte >> 4) & 0x3];
break;
case 2:
byte = *s++;
t0[i] = Base[(byte >> 6) & 0x3];
break;
default:
break;
}
return (len);
}
// Decode ilen bits in ibytes, into obytes according to vc's codec
// Return the number of bytes decoded.
int vcDecode(OneCodec *vc, int ilen, char *ibytes, char *obytes)
{ _OneCodec *v = (_OneCodec *) vc;
char *look;
uint8 *lens, *q;
uint64 icode, ncode, *p;
int rem, nem;
uint8 c, *o;
int n, k, elen, inbig, esc;
if (vc == DNAcodec)
return (Uncompress_DNA(ibytes,ilen>>1,obytes));
if (v->state < CODED_WITH)
{ fprintf(stderr,"vcDecode: Compressor does not have a codec\n");
exit (1);
}
if (*((uint8 *) ibytes) == 0xff)
{ int olen = (ilen>>3)-1;
memcpy(obytes,ibytes+1,olen);
return (olen);
}
p = (uint64 *) ibytes;
inbig = (*ibytes & 0x40);
if (!inbig && ilen >= 64)
{ uint8 x = ibytes[7];
ibytes[7] = ibytes[0];
ibytes[0] = x;
}
if (inbig != v->isbig)
{ q = (uint8 *) ibytes;
for (k = 64; k <= ilen; k += 64)
{ FLIP64(q)
q += 8;
}
}
lens = v->codelens;
look = v->lookup;
esc = v->esc_code;
elen = v->esc_len;
#define GET(n) \
ilen -= n; \
icode <<= n; \
rem -= n; \
while (rem < 16) \
{ int z = 64-rem; \
icode |= (ncode >> rem); \
if (nem > z) \
{ nem -= z; \
ncode <<= z; \
rem = 64; \
break; \
} \
else \
{ rem += nem; \
if (rem >= ilen) \
break; \
else if (ilen-rem < 64) \
{ nem = ilen-rem; \
q = (uint8 *) p; \
ncode = 0; \
for (k = 0; k < nem; k += 8) \
ncode |= (((uint64) (*q++)) << (56-k)); \
} \
else \
{ ncode = *p++; \
nem = 64; \
} \
} \
}
if (ilen < 64)
{ q = (uint8 *) ibytes;
icode = 0;
for (k = 0; k < ilen; k += 8)
icode |= (((uint64) (*q++)) << (56-k));
}
else
icode = *p++;
o = (uint8 *) obytes;
icode <<= 2;
ilen -= 2;
rem = 62;
if (rem > ilen)
rem = ilen;
ncode = 0;
nem = 0;
while (ilen > 0)
{ c = look[icode >> 48];
if (c == esc)
{ GET(elen)
c = (icode >> 56);
GET(8);
}
else
{ n = lens[(int) c];
GET(n)
}
*o++ = c;
}
return (o - (uint8 *) obytes);
}
//////////////////////////////////////////////////////////////////////////////////////
//
// integer compression for write/read of fields
//
// top bit of first byte: number is negative
// second bit: one-byte: next six bits give number (make negative if top bit set)
// third bit: two-byte: next 13 bits give number (make negative if top bit set)
// if second and third bits are not set, remaining 5 bits give number of bytes to read
static inline int intGet (unsigned char *u, I64 *pval)
{
switch (u[0] >> 5)
{
case 2: case 3: // single byte positive
*pval = (I64) (u[0] & 0x3f) ; return 1 ;
case 6: case 7: // single byte negative
*pval = (I64) u[0] | 0xffffffffffffff00 ; return 1 ;
case 1: // two bytes positive
*pval = (I64) (u[0] & 0x1f) << 8 | (I64)u[1] ; return 2 ;
*pval = - ((I64) (u[0] & 0x1f) << 8 | (I64)u[1]) ; return 2 ;
case 0:
switch (u[0] & 0x07)
{
case 0: die ("int packing error") ; break ;
case 1: *pval = *(I64*)(u+1) & 0x0000000000ffff ; return 3 ;
case 2: *pval = *(I64*)(u+1) & 0x00000000ffffff ; return 4 ;
case 3: *pval = *(I64*)(u+1) & 0x000000ffffffff ; return 5 ;
case 4: *pval = *(I64*)(u+1) & 0x0000ffffffffff ; return 6 ;
case 5: *pval = *(I64*)(u+1) & 0x00ffffffffffff ; return 7 ;
case 6: *pval = *(I64*)(u+1) & 0xffffffffffffff ; return 8 ;
case 7: *pval = *(I64*)(u+1) ; return 9 ;
}
case 4:
switch (u[0] & 0x07)
{
case 0: die ("int packing error") ; break ;
case 1: *pval = *(I64*)(u+1) | 0xffffffffffff0000 ; return 3 ;
case 2: *pval = *(I64*)(u+1) | 0xffffffffff000000 ; return 4 ;
case 3: *pval = *(I64*)(u+1) | 0xffffffff00000000 ; return 5 ;
case 4: *pval = *(I64*)(u+1) | 0xffffff0000000000 ; return 6 ;
case 5: *pval = *(I64*)(u+1) | 0xffff000000000000 ; return 7 ;
case 6: *pval = *(I64*)(u+1) | 0xff00000000000000 ; return 8 ;
case 7: *pval = *(I64*)(u+1) ; return 9 ;
}
}
return 0 ; // shouldn't get here, but needed for compiler happiness
}
static inline int intPut (unsigned char *u, I64 val)
{
if (val >= 0)
{ if ( !(val & 0xffffffffffffffc0)) { *u = val | 0x40 ; return 1 ; }
else if (!(val & 0xffffffffffffe000)) { *u++ = (val >> 8) | 0x20 ; *u = val & 0xff ; return 2 ; }
else if (!(val & 0xffffffffffff0000)) { *u++ = 1 ; *(I64*)u = val ; return 3 ; }
else if (!(val & 0xffffffffff000000)) { *u++ = 2 ; *(I64*)u = val ; return 4 ; }
else if (!(val & 0xffffffff00000000)) { *u++ = 3 ; *(I64*)u = val ; return 5 ; }
else if (!(val & 0xffffff0000000000)) { *u++ = 4 ; *(I64*)u = val ; return 6 ; }
else if (!(val & 0xffff000000000000)) { *u++ = 5 ; *(I64*)u = val ; return 7 ; }
else if (!(val & 0xff00000000000000)) { *u++ = 6 ; *(I64*)u = val ; return 8 ; }
else { *u++ = 7 ; *(I64*)u = val ; return 9 ; }
}
else
{ if ( !(~val & 0xffffffffffffffc0)) { *u = val | 0x40 ; return 1 ; }
// else if (!(~val & 0xffffffffffffe000)) { *u++ = (val >> 8) | 0x20 ; *u = val & 0xff ; return 2 ; }
else if (!(~val & 0xffffffffffff0000)) { *u++ = 0x81 ; *(I64*)u = val ; return 3 ; }
else if (!(~val & 0xffffffffff000000)) { *u++ = 0x82 ; *(I64*)u = val ; return 4 ; }
else if (!(~val & 0xffffffff00000000)) { *u++ = 0x83 ; *(I64*)u = val ; return 5 ; }
else if (!(~val & 0xffffff0000000000)) { *u++ = 0x84 ; *(I64*)u = val ; return 6 ; }
else if (!(~val & 0xffff000000000000)) { *u++ = 0x85 ; *(I64*)u = val ; return 7 ; }
else if (!(~val & 0xff00000000000000)) { *u++ = 0x86 ; *(I64*)u = val ; return 8 ; }
else { *u++ = 0x87 ; *(I64*)u = val ; return 9 ; }
}
}
static inline I64 ltfRead (FILE *f)
{
unsigned char u[16] ;
I64 val ;
u[0] = getc (f) ;
if (u[0] & 0x40)
{ intGet (u, &val) ;
// printf ("read %d n 1 u %02x\n", (int)val, u[0]) ;
}
else if (u[0] & 0x20)
{ u[1] = getc (f) ; intGet (u, &val) ;
// printf ("read %d n 2 u %02x %02x\n", (int)val, u[0], u[1]) ;
}
else
{ int n = 1 + (u[0] & 0x0f) ;
unsigned char *v = &u[1] ;
while (n--) *v++ = getc(f) ;
n = intGet (u, &val) ;
// printf ("read %d n %d u", (int)val, n) ;
// { int i ; for (i = 0 ; i< n ; ++i) printf (" %02x", u[i]) ; putchar ('\n') ; }
}
return val ;
}
static inline int ltfWrite (I64 x, FILE *f)
{
unsigned char u[16] ;
int n = intPut (u, x) ;
// printf ("write %d n %d u", (int)x, n) ;
// { int i ; for (i = 0 ; i< n ; ++i) printf (" %02x", u[i]) ; putchar ('\n') ; }
fwrite (u, 1, n, f) ;
return n ;
}
#if defined(TEST_LTF) || defined(TEST_INT)
// these are the original routines from James Bonfield on which this is based
// incorporated here for credit and for comparisons in the TEST functionality
/***********************************************************************************
*
* LTF encoding for integers
* adapted from htslib/cram/cram_io.h with copyright statement:
Copyright (c) 2012-2019 Genome Research Ltd.
Author: James Bonfield <jkb@sanger.ac.uk>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the names Genome Research Ltd and Wellcome Trust Sanger
Institute nor the names of its contributors may be used to endorse or promote
products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY GENOME RESEARCH LTD AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL GENOME RESEARCH LTD OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
**********************************************************************************/
/* 64-bit itf8 variant */
static inline int ltf8_put(char *cp, int64_t val) {
unsigned char *up = (unsigned char *)cp;
if (!(val & ~((1LL<<7)-1))) {
*up = val;
return 1;
} else if (!(val & ~((1LL<<(6+8))-1))) {
*up++ = (val >> 8 ) | 0x80;
*up = val & 0xff;
return 2;
} else if (!(val & ~((1LL<<(5+2*8))-1))) {
*up++ = (val >> 16) | 0xc0;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 3;
} else if (!(val & ~((1LL<<(4+3*8))-1))) {
*up++ = (val >> 24) | 0xe0;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 4;
} else if (!(val & ~((1LL<<(3+4*8))-1))) {
*up++ = (val >> 32) | 0xf0;
*up++ = (val >> 24) & 0xff;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 5;
} else if (!(val & ~((1LL<<(2+5*8))-1))) {
*up++ = (val >> 40) | 0xf8;
*up++ = (val >> 32) & 0xff;
*up++ = (val >> 24) & 0xff;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 6;
} else if (!(val & ~((1LL<<(1+6*8))-1))) {
*up++ = (val >> 48) | 0xfc;
*up++ = (val >> 40) & 0xff;
*up++ = (val >> 32) & 0xff;
*up++ = (val >> 24) & 0xff;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 7;
} else if (!(val & ~((1LL<<(7*8))-1))) {
*up++ = (val >> 56) | 0xfe;
*up++ = (val >> 48) & 0xff;
*up++ = (val >> 40) & 0xff;
*up++ = (val >> 32) & 0xff;
*up++ = (val >> 24) & 0xff;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 8;
} else {
*up++ = 0xff;
*up++ = (val >> 56) & 0xff;
*up++ = (val >> 48) & 0xff;
*up++ = (val >> 40) & 0xff;
*up++ = (val >> 32) & 0xff;
*up++ = (val >> 24) & 0xff;
*up++ = (val >> 16) & 0xff;
*up++ = (val >> 8 ) & 0xff;
*up = val & 0xff;
return 9;
}
}
static inline int ltf8_get(char *cp, int64_t *val_p) {
unsigned char *up = (unsigned char *)cp;
if (up[0] < 0x80) {
*val_p = up[0];
return 1;
} else if (up[0] < 0xc0) {
*val_p = (((uint64_t)up[0]<< 8) |
(uint64_t)up[1]) & (((1LL<<(6+8)))-1);
return 2;
} else if (up[0] < 0xe0) {
*val_p = (((uint64_t)up[0]<<16) |
((uint64_t)up[1]<< 8) |
(uint64_t)up[2]) & ((1LL<<(5+2*8))-1);
return 3;
} else if (up[0] < 0xf0) {
*val_p = (((uint64_t)up[0]<<24) |
((uint64_t)up[1]<<16) |
((uint64_t)up[2]<< 8) |
(uint64_t)up[3]) & ((1LL<<(4+3*8))-1);
return 4;
} else if (up[0] < 0xf8) {
*val_p = (((uint64_t)up[0]<<32) |
((uint64_t)up[1]<<24) |
((uint64_t)up[2]<<16) |
((uint64_t)up[3]<< 8) |
(uint64_t)up[4]) & ((1LL<<(3+4*8))-1);
return 5;
} else if (up[0] < 0xfc) {
*val_p = (((uint64_t)up[0]<<40) |
((uint64_t)up[1]<<32) |
((uint64_t)up[2]<<24) |
((uint64_t)up[3]<<16) |
((uint64_t)up[4]<< 8) |
(uint64_t)up[5]) & ((1LL<<(2+5*8))-1);
return 6;
} else if (up[0] < 0xfe) {
*val_p = (((uint64_t)up[0]<<48) |
((uint64_t)up[1]<<40) |
((uint64_t)up[2]<<32) |
((uint64_t)up[3]<<24) |
((uint64_t)up[4]<<16) |
((uint64_t)up[5]<< 8) |
(uint64_t)up[6]) & ((1LL<<(1+6*8))-1);
return 7;
} else if (up[0] < 0xff) {
*val_p = (((uint64_t)up[1]<<48) |
((uint64_t)up[2]<<40) |
((uint64_t)up[3]<<32) |
((uint64_t)up[4]<<24) |
((uint64_t)up[5]<<16) |
((uint64_t)up[6]<< 8) |
(uint64_t)up[7]) & ((1LL<<(7*8))-1);
return 8;
} else {
*val_p = (((uint64_t)up[1]<<56) |
((uint64_t)up[2]<<48) |
((uint64_t)up[3]<<40) |
((uint64_t)up[4]<<32) |
((uint64_t)up[5]<<24) |
((uint64_t)up[6]<<16) |
((uint64_t)up[7]<< 8) |
(uint64_t)up[8]);
return 9;
}
}
#include <sys/resource.h>
#ifndef RUSAGE_SELF /* to prevent "RUSAGE_SELF redefined" gcc warning, fixme if this is more intricate */
#define RUSAGE_SELF 0
#endif
void timeUpdate (FILE *f)
{
static bool isFirst = 1 ;
static struct rusage rOld, rFirst ;
struct rusage rNew ;
int secs, usecs ;
getrusage (RUSAGE_SELF, &rNew) ;
if (!isFirst)
{ secs = rNew.ru_utime.tv_sec - rOld.ru_utime.tv_sec ;
usecs = rNew.ru_utime.tv_usec - rOld.ru_utime.tv_usec ;
if (usecs < 0) { usecs += 1000000 ; secs -= 1 ; }
fprintf (f, "user\t%d.%06d", secs, usecs) ;
secs = rNew.ru_stime.tv_sec - rOld.ru_stime.tv_sec ;
usecs = rNew.ru_stime.tv_usec - rOld.ru_stime.tv_usec ;
if (usecs < 0) { usecs += 1000000 ; secs -= 1 ; }
fprintf (f, "\tsystem\t%d.%06d", secs, usecs) ;
fprintf (f, "\tmax_RSS\t%ld", rNew.ru_maxrss - rOld.ru_maxrss) ;
fputc ('\n', f) ;
}
else
{ rFirst = rNew ;
isFirst = false ;
}
rOld = rNew ;
}
int main (int argc, char *argv[])
{
I64 i, j, x, n, tot, mod ;
FILE *f ;
static unsigned char buffer[9*(1<<20)] ;
if (argc < 3) die ("usage: ./test <start> <n> [mod]") ;
// { int t = 1;
// char *b = (char *) (&t);
// if (*b == 0) printf ("bigEndian\n") ; else printf ("smallEndian\n") ;
// }
timeUpdate (0) ;
x = atoi(argv[1]) ;
n = atoi(argv[2]) ;
if (argc == 4) mod = atoi(argv[3]) ; else mod = 0 ;
tot = 0 ;
#ifdef TEST_INT
f = fopen ("int.test", "w") ;
#endif
#ifdef TEST_LTF
f = fopen ("ltf.test", "w") ;
#endif
if (argc > 4)
for (i = 0 ; i < n ; ++i) { tot += ltfWrite (x++, f) ; if (x == mod) x = 0 ; }
else
{ while (n)
{ int m = (n > 1<<20) ? 1<<20 : n ;
unsigned char *u = buffer ;
for (i = 0 ; i < m ; ++i)
{
#ifdef TEST_INT
u += intPut (u, x++) ;
#endif
#ifdef TEST_LTF
u += ltf8_put ((char*)u, x++) ;
#endif
if (x == mod) x = 0 ;
}
tot += (u-buffer) ;
fwrite (buffer, 1, (u-buffer), f) ;
n -= m ;
}
}
fclose (f) ;
printf ("wrote %" PRId64 " bytes: ", tot) ;
timeUpdate (stdout) ;
x = atoi(argv[1]) ;
n = atoi(argv[2]) ;
tot = 0 ;
#ifdef TEST_INT
f = fopen ("int.test", "r") ;
#endif
#ifdef TEST_LTF
f = fopen ("ltf.test", "r") ;
#endif
if (argc > 4)
{ for (j = 0 ; j < n ; ++j)
if ((i = ltfRead (f)) != j)
die ("ltf wrote %d read %d", (int)j, (int)i) ;
}
else
{ unsigned char *u = buffer, *v = buffer ; // u is current pos, v is end of section read in
while (n)
{ int m = (n > 1<<20) ? 1<<20 : n ;
// printf ("attempting to read %d chars: n %d (v-u) %d\n", (int)(9*m - (v-u)), m, (int)(v-u)) ;
unsigned char *v0 = v, *u0 = u ;
v += fread (v, 1, 9*m - (v-u), f) ;
// printf (" read %d chars\n", (int)(v-v0)) ;
for (i = 0 ; i < m ; ++i)
#ifdef TEST_INT
u += intGet (u, &j) ;
#endif
#ifdef TEST_LTF
u += ltf8_get ((char*)u, &j) ;
#endif
// printf (" intGet m %d ints used %d chars\n", m, (int)(u-u0)) ;
n -= m ;
m = v - u ;
// printf (" memmove %d\n", m) ;
memmove (buffer, u, m) ;
tot += (u-buffer) ;
v -= (u-buffer) ; u = buffer ;
}
}
fclose (f) ;
printf ("read %" PRId64 " bytes: ", tot) ;
timeUpdate (stdout) ;
}
#endif // TEST_LTF
/***********************************************************************************
*
* UTILITIES: memory allocation, file opening, timer
* adapted from Richard's utilities
*
**********************************************************************************/
static void die(char *format, ...)
{ va_list args;
va_start (args, format);
fprintf (stderr, "FATAL ERROR: ");
vfprintf (stderr, format, args);
fprintf (stderr, "\n");
va_end (args);
exit (-1);
}
static I64 nAlloc = 0;
static I64 totalAlloc = 0;
static void *myalloc(size_t size)
{ void *p;
p = malloc(size);
if (p == NULL) die("myalloc failure requesting %d bytes", size);
nAlloc += 1;
totalAlloc += size;
return (p);
}
static void *mycalloc(size_t number, size_t size)
{ void *p;
p = calloc(number,size);
if (p == NULL) die("mycalloc failure requesting %d objects of size %d", number, size);
nAlloc += 1;
totalAlloc += size*number;
return p;
}
/********************* end of file ***********************/
|