1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034
|
/*
Copyright (c) 2012-2021 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.
*/
/*
* FIXME: add checking of cram_external_type to return NULL on unsupported
* {codec,type} tuples.
*/
#define HTS_BUILDING_LIBRARY // Enables HTSLIB_EXPORT, see htslib/hts_defs.h
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <limits.h>
#include <stdint.h>
#include <errno.h>
#include <stddef.h>
#include "../htslib/hts_endian.h"
#if defined(HAVE_EXTERNAL_LIBHTSCODECS)
#include <htscodecs/varint.h>
#include <htscodecs/pack.h>
#include <htscodecs/rle.h>
#else
#include "../htscodecs/htscodecs/varint.h"
#include "../htscodecs/htscodecs/pack.h"
#include "../htscodecs/htscodecs/rle.h"
#endif
#include "cram.h"
/*
* ---------------------------------------------------------------------------
* Block bit-level I/O functions.
* All defined static here to promote easy inlining by the compiler.
*/
#if 0
/* Get a single bit, MSB first */
static signed int get_bit_MSB(cram_block *block) {
unsigned int val;
if (block->byte > block->alloc)
return -1;
val = block->data[block->byte] >> block->bit;
if (--block->bit == -1) {
block->bit = 7;
block->byte++;
//printf("(%02X)", block->data[block->byte]);
}
//printf("-B%d-", val&1);
return val & 1;
}
#endif
/*
* Count number of successive 0 and 1 bits
*/
static int get_one_bits_MSB(cram_block *block) {
int n = 0, b;
if (block->byte >= block->uncomp_size)
return -1;
do {
b = block->data[block->byte] >> block->bit;
if (--block->bit == -1) {
block->bit = 7;
block->byte++;
if (block->byte == block->uncomp_size && (b&1))
return -1;
}
n++;
} while (b&1);
return n-1;
}
static int get_zero_bits_MSB(cram_block *block) {
int n = 0, b;
if (block->byte >= block->uncomp_size)
return -1;
do {
b = block->data[block->byte] >> block->bit;
if (--block->bit == -1) {
block->bit = 7;
block->byte++;
if (block->byte == block->uncomp_size && !(b&1))
return -1;
}
n++;
} while (!(b&1));
return n-1;
}
#if 0
/* Stores a single bit */
static void store_bit_MSB(cram_block *block, unsigned int bit) {
if (block->byte >= block->alloc) {
block->alloc = block->alloc ? block->alloc*2 : 1024;
block->data = realloc(block->data, block->alloc);
}
if (bit)
block->data[block->byte] |= (1 << block->bit);
if (--block->bit == -1) {
block->bit = 7;
block->byte++;
block->data[block->byte] = 0;
}
}
#endif
#if 0
/* Rounds to the next whole byte boundary first */
static void store_bytes_MSB(cram_block *block, char *bytes, int len) {
if (block->bit != 7) {
block->bit = 7;
block->byte++;
}
while (block->byte + len >= block->alloc) {
block->alloc = block->alloc ? block->alloc*2 : 1024;
block->data = realloc(block->data, block->alloc);
}
memcpy(&block->data[block->byte], bytes, len);
block->byte += len;
}
#endif
/* Local optimised copy for inlining */
static inline int64_t get_bits_MSB(cram_block *block, int nbits) {
uint64_t val = 0;
int i;
#if 0
// Fits within the current byte */
if (nbits <= block->bit+1) {
val = (block->data[block->byte]>>(block->bit-(nbits-1))) & ((1<<nbits)-1);
if ((block->bit -= nbits) == -1) {
block->bit = 7;
block->byte++;
}
return val;
}
// partial first byte
val = block->data[block->byte] & ((1<<(block->bit+1))-1);
nbits -= block->bit+1;
block->bit = 7;
block->byte++;
// whole middle bytes
while (nbits >= 8) {
val = (val << 8) | block->data[block->byte++];
nbits -= 8;
}
val <<= nbits;
val |= (block->data[block->byte]>>(block->bit-(nbits-1))) & ((1<<nbits)-1);
block->bit -= nbits;
return val;
#endif
#if 0
/* Inefficient implementation! */
//printf("{");
for (i = 0; i < nbits; i++)
//val = (val << 1) | get_bit_MSB(block);
GET_BIT_MSB(block, val);
#endif
#if 1
/* Combination of 1st two methods */
if (nbits <= block->bit+1) {
val = (block->data[block->byte]>>(block->bit-(nbits-1))) & ((1<<nbits)-1);
if ((block->bit -= nbits) == -1) {
block->bit = 7;
block->byte++;
}
return val;
}
switch(nbits) {
// case 15: GET_BIT_MSB(block, val); // fall through
// case 14: GET_BIT_MSB(block, val); // fall through
// case 13: GET_BIT_MSB(block, val); // fall through
// case 12: GET_BIT_MSB(block, val); // fall through
// case 11: GET_BIT_MSB(block, val); // fall through
// case 10: GET_BIT_MSB(block, val); // fall through
// case 9: GET_BIT_MSB(block, val); // fall through
case 8: GET_BIT_MSB(block, val); // fall through
case 7: GET_BIT_MSB(block, val); // fall through
case 6: GET_BIT_MSB(block, val); // fall through
case 5: GET_BIT_MSB(block, val); // fall through
case 4: GET_BIT_MSB(block, val); // fall through
case 3: GET_BIT_MSB(block, val); // fall through
case 2: GET_BIT_MSB(block, val); // fall through
case 1: GET_BIT_MSB(block, val);
break;
default:
for (i = 0; i < nbits; i++)
//val = (val << 1) | get_bit_MSB(block);
GET_BIT_MSB(block, val);
}
#endif
//printf("=0x%x}", val);
return val;
}
/*
* Can store up to 24-bits worth of data encoded in an integer value
* Possibly we'd want to have a less optimal store_bits function when dealing
* with nbits > 24, but for now we assume the codes generated are never
* that big. (Given this is only possible with 121392 or more
* characters with exactly the correct frequency distribution we check
* for it elsewhere.)
*/
static int store_bits_MSB(cram_block *block, uint64_t val, int nbits) {
//fprintf(stderr, " store_bits: %02x %d\n", val, nbits);
/*
* Use slow mode until we tweak the huffman generator to never generate
* codes longer than 24-bits.
*/
unsigned int mask;
if (block->byte+8 >= block->alloc) {
if (block->byte) {
block->alloc *= 2;
block->data = realloc(block->data, block->alloc + 8);
if (!block->data)
return -1;
} else {
block->alloc = 1024;
block->data = realloc(block->data, block->alloc + 8);
if (!block->data)
return -1;
block->data[0] = 0; // initialise first byte of buffer
}
}
/* fits in current bit-field */
if (nbits <= block->bit+1) {
block->data[block->byte] |= (val << (block->bit+1-nbits));
if ((block->bit-=nbits) == -1) {
block->bit = 7;
block->byte++;
block->data[block->byte] = 0;
}
return 0;
}
block->data[block->byte] |= (val >> (nbits -= block->bit+1));
block->bit = 7;
block->byte++;
block->data[block->byte] = 0;
mask = 1<<(nbits-1);
do {
if (val & mask)
block->data[block->byte] |= (1 << block->bit);
if (--block->bit == -1) {
block->bit = 7;
block->byte++;
block->data[block->byte] = 0;
}
mask >>= 1;
} while(--nbits);
return 0;
}
/*
* Returns the next 'size' bytes from a block, or NULL if insufficient
* data left.This is just a pointer into the block data and not an
* allocated object, so do not free the result.
*/
static char *cram_extract_block(cram_block *b, int size) {
char *cp = (char *)b->data + b->idx;
b->idx += size;
if (b->idx > b->uncomp_size)
return NULL;
return cp;
}
/*
* ---------------------------------------------------------------------------
* EXTERNAL
*
* In CRAM 3.0 and earlier, E_EXTERNAL use the data type to determine the
* size of the object being returned. This type is hard coded in the
* spec document (changing from uint32 to uint64 requires a spec change)
* and there is no data format introspection so implementations have
* to determine which size to use based on version numbers. It also
* doesn't support signed data.
*
* With CRAM 4.0 onwards the size and sign of the data is no longer stated
* explicitly in the specification. Instead EXTERNAL is replaced by three
* new encodings, for bytes and signed / unsigned integers which used a
* variable sized encoding.
*
* For simplicity we use the same encode and decode functions for
* bytes (CRAM4) and external (CRAM3). Given we already had code to
* replace codec + type into a function pointer it makes little
* difference how we ended up at that function. However we disallow
* this codec to operate on integer data for CRAM4 onwards.
*/
int cram_external_decode_int(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the external block */
b = cram_get_block_by_id(slice, c->u.external.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int32_t *)out = c->vv->varint_get32(&cp, (char *)b->data + b->uncomp_size, &err);
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
int cram_external_decode_long(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the external block */
b = cram_get_block_by_id(slice, c->u.external.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int64_t *)out = c->vv->varint_get64(&cp, (char *)b->data + b->uncomp_size, &err);
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
int cram_external_decode_char(cram_slice *slice, cram_codec *c,
cram_block *in, char *out,
int *out_size) {
char *cp;
cram_block *b;
/* Find the external block */
b = cram_get_block_by_id(slice, c->u.external.content_id);
if (!b)
return *out_size?-1:0;
cp = cram_extract_block(b, *out_size);
if (!cp)
return -1;
if (out)
memcpy(out, cp, *out_size);
return 0;
}
static int cram_external_decode_block(cram_slice *slice, cram_codec *c,
cram_block *in, char *out_,
int *out_size) {
char *cp;
cram_block *out = (cram_block *)out_;
cram_block *b = NULL;
/* Find the external block */
b = cram_get_block_by_id(slice, c->u.external.content_id);
if (!b)
return *out_size?-1:0;
cp = cram_extract_block(b, *out_size);
if (!cp)
return -1;
BLOCK_APPEND(out, cp, *out_size);
return 0;
block_err:
return -1;
}
void cram_external_decode_free(cram_codec *c) {
if (c)
free(c);
}
int cram_external_decode_size(cram_slice *slice, cram_codec *c) {
cram_block *b;
/* Find the external block */
b = cram_get_block_by_id(slice, c->u.external.content_id);
if (!b)
return -1;
return b->uncomp_size;
}
cram_block *cram_external_get_block(cram_slice *slice, cram_codec *c) {
return cram_get_block_by_id(slice, c->u.external.content_id);
}
cram_codec *cram_external_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c = NULL;
char *cp = data;
if (size < 1)
goto malformed;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_EXTERNAL;
if (CRAM_MAJOR_VERS(version) >= 4) {
// Version 4 does not permit integer data to be encoded as a
// series of bytes. This is used purely for bytes, either
// singular or declared as arrays
switch (codec) {
case E_EXTERNAL:
if (option == E_BYTE_ARRAY_BLOCK)
c->decode = cram_external_decode_block;
else if (option == E_BYTE || option == E_BYTE_ARRAY)
c->decode = cram_external_decode_char;
else
return NULL;
break;
default:
return NULL;
}
} else {
// CRAM 3 and earlier encodes integers as EXTERNAL. We need
// use the option field to indicate the input data format so
// we know which serialisation format to use.
if (option == E_INT)
c->decode = cram_external_decode_int;
else if (option == E_LONG)
c->decode = cram_external_decode_long;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->decode = cram_external_decode_char;
else
c->decode = cram_external_decode_block;
}
c->free = cram_external_decode_free;
c->size = cram_external_decode_size;
c->get_block = cram_external_get_block;
c->u.external.content_id = vv->varint_get32(&cp, data+size, NULL);
if (cp - data != size)
goto malformed;
c->u.external.type = option;
return c;
malformed:
hts_log_error("Malformed external header stream");
free(c);
return NULL;
}
int cram_external_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
uint32_t *i32 = (uint32_t *)in;
return c->vv->varint_put32_blk(c->out, *i32) >= 0 ? 0 : -1;
}
int cram_external_encode_sint(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int32_t *i32 = (int32_t *)in;
return c->vv->varint_put32s_blk(c->out, *i32) >= 0 ? 0 : -1;
}
int cram_external_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
uint64_t *i64 = (uint64_t *)in;
return c->vv->varint_put64_blk(c->out, *i64) >= 0 ? 0 : -1;
}
int cram_external_encode_slong(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int64_t *i64 = (int64_t *)in;
return c->vv->varint_put64s_blk(c->out, *i64) >= 0 ? 0 : -1;
}
int cram_external_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
BLOCK_APPEND(c->out, in, in_size);
return 0;
block_err:
return -1;
}
void cram_external_encode_free(cram_codec *c) {
if (!c)
return;
free(c);
}
int cram_external_encode_store(cram_codec *c, cram_block *b, char *prefix,
int version) {
char tmp[99], *tp = tmp, *tpend = tmp+99;
int len = 0, r = 0, n;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
tp += c->vv->varint_put32(tp, tpend, c->u.e_external.content_id);
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
len += (n = c->vv->varint_put32_blk(b, tp-tmp)); r |= n;
BLOCK_APPEND(b, tmp, tp-tmp);
len += tp-tmp;
if (r > 0)
return len;
block_err:
return -1;
}
cram_codec *cram_external_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
c = malloc(sizeof(*c));
if (!c)
return NULL;
c->codec = E_EXTERNAL;
c->free = cram_external_encode_free;
if (CRAM_MAJOR_VERS(version) >= 4) {
// Version 4 does not permit integer data to be encoded as a
// series of bytes. This is used purely for bytes, either
// singular or declared as arrays
switch (codec) {
case E_EXTERNAL:
if (option != E_BYTE && option != E_BYTE_ARRAY)
return NULL;
c->encode = cram_external_encode_char;
break;
default:
return NULL;
}
} else {
// CRAM 3 and earlier encodes integers as EXTERNAL. We need
// use the option field to indicate the input data format so
// we know which serialisation format to use.
if (option == E_INT)
c->encode = cram_external_encode_int;
else if (option == E_LONG)
c->encode = cram_external_encode_long;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->encode = cram_external_encode_char;
else
abort();
}
c->store = cram_external_encode_store;
c->flush = NULL;
c->u.e_external.content_id = (size_t)dat;
return c;
}
/*
* ---------------------------------------------------------------------------
* VARINT
*
* In CRAM 3.0 and earlier, E_EXTERNAL stored both integers in ITF8
* format as well as bytes. In CRAM 4 EXTERNAL is only for bytes and
* byte arrays, with two dedicated encodings for integers:
* VARINT_SIGNED and VARINT_UNSIGNED. These also differ a little to
* EXTERNAL with the addition of an offset field, meaning we can store
* values in, say, the range -2 to 1 million without needing to use
* a signed zig-zag transformation.
*/
int cram_varint_decode_int(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the data block */
b = cram_get_block_by_id(slice, c->u.varint.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int32_t *)out = c->vv->varint_get32(&cp,
(char *)b->data + b->uncomp_size,
&err) + c->u.varint.offset;
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
int cram_varint_decode_sint(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the data block */
b = cram_get_block_by_id(slice, c->u.varint.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int32_t *)out = c->vv->varint_get32s(&cp,
(char *)b->data + b->uncomp_size,
&err) + c->u.varint.offset;
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
int cram_varint_decode_long(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the data block */
b = cram_get_block_by_id(slice, c->u.varint.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int64_t *)out = c->vv->varint_get64(&cp,
(char *)b->data + b->uncomp_size,
&err) + c->u.varint.offset;
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
int cram_varint_decode_slong(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
char *cp;
cram_block *b;
/* Find the data block */
b = cram_get_block_by_id(slice, c->u.varint.content_id);
if (!b)
return *out_size?-1:0;
cp = (char *)b->data + b->idx;
// E_INT and E_LONG are guaranteed single item queries
int err = 0;
*(int64_t *)out = c->vv->varint_get64s(&cp,
(char *)b->data + b->uncomp_size,
&err) + c->u.varint.offset;
b->idx = cp - (char *)b->data;
*out_size = 1;
return err ? -1 : 0;
}
void cram_varint_decode_free(cram_codec *c) {
if (c)
free(c);
}
int cram_varint_decode_size(cram_slice *slice, cram_codec *c) {
cram_block *b;
/* Find the data block */
b = cram_get_block_by_id(slice, c->u.varint.content_id);
if (!b)
return -1;
return b->uncomp_size;
}
cram_block *cram_varint_get_block(cram_slice *slice, cram_codec *c) {
return cram_get_block_by_id(slice, c->u.varint.content_id);
}
cram_codec *cram_varint_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data, *cp_end = data+size;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = codec;
// Function pointer choice is theoretically by codec type.
// Given we have some vars as int32 and some as int64 we
// use option too for sizing, although on disk format
// does not change.
switch(codec) {
case E_VARINT_UNSIGNED:
c->decode = (option == E_INT)
? cram_varint_decode_int
: cram_varint_decode_long;
break;
case E_VARINT_SIGNED:
c->decode = (option == E_INT)
? cram_varint_decode_sint
: cram_varint_decode_slong;
break;
default:
return NULL;
}
c->free = cram_varint_decode_free;
c->size = cram_varint_decode_size;
c->get_block = cram_varint_get_block;
c->u.varint.content_id = vv->varint_get32 (&cp, cp_end, NULL);
c->u.varint.offset = vv->varint_get64s(&cp, cp_end, NULL);
if (cp - data != size) {
fprintf(stderr, "Malformed varint header stream\n");
free(c);
return NULL;
}
c->u.varint.type = option;
return c;
}
int cram_varint_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
uint32_t *i32 = (uint32_t *)in;
return c->vv->varint_put32_blk(c->out, *i32 - c->u.varint.offset) >= 0
? 0 : -1;
}
int cram_varint_encode_sint(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int32_t *i32 = (int32_t *)in;
return c->vv->varint_put32s_blk(c->out, *i32 - c->u.varint.offset) >= 0
? 0 : -1;
}
int cram_varint_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
uint64_t *i64 = (uint64_t *)in;
return c->vv->varint_put64_blk(c->out, *i64 - c->u.varint.offset) >= 0
? 0 : -1;
}
int cram_varint_encode_slong(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int64_t *i64 = (int64_t *)in;
return c->vv->varint_put64s_blk(c->out, *i64 - c->u.varint.offset) >= 0
? 0 : -1;
}
void cram_varint_encode_free(cram_codec *c) {
if (!c)
return;
free(c);
}
int cram_varint_encode_store(cram_codec *c, cram_block *b, char *prefix,
int version) {
char tmp[99], *tp = tmp;
int len = 0;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
tp += c->vv->varint_put32 (tp, NULL, c->u.e_varint.content_id);
tp += c->vv->varint_put64s(tp, NULL, c->u.e_varint.offset);
len += c->vv->varint_put32_blk(b, c->codec);
len += c->vv->varint_put32_blk(b, tp-tmp);
BLOCK_APPEND(b, tmp, tp-tmp);
len += tp-tmp;
return len;
block_err:
return -1;
}
cram_codec *cram_varint_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->u.e_varint.offset = 0;
if (st) {
// Marginal difference so far! Not worth the hassle?
if (st->min_val < 0 && st->min_val >= -127
&& st->max_val / -st->min_val > 100) {
c->u.e_varint.offset = -st->min_val;
codec = E_VARINT_UNSIGNED;
} else if (st->min_val > 0) {
c->u.e_varint.offset = -st->min_val;
}
}
c->codec = codec;
c->free = cram_varint_encode_free;
// Function pointer choice is theoretically by codec type.
// Given we have some vars as int32 and some as int64 we
// use option too for sizing, although on disk format
// does not change.
switch (codec) {
case E_VARINT_UNSIGNED:
c->encode = (option == E_INT)
? cram_varint_encode_int
: cram_varint_encode_long;
break;
case E_VARINT_SIGNED:
c->encode = (option == E_INT)
? cram_varint_encode_sint
: cram_varint_encode_slong;
break;
default:
return NULL;
}
c->store = cram_varint_encode_store;
c->flush = NULL;
c->u.e_varint.content_id = (size_t)dat;
return c;
}
/*
* ---------------------------------------------------------------------------
* CONST_BYTE and CONST_INT
*/
int cram_const_decode_byte(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int i, n;
for (i = 0, n = *out_size; i < n; i++)
out[i] = c->u.xconst.val;
return 0;
}
int cram_const_decode_int(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n;
for (i = 0, n = *out_size; i < n; i++)
out_i[i] = c->u.xconst.val;
return 0;
}
int cram_const_decode_long(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int64_t *out_i = (int64_t *)out;
int i, n;
for (i = 0, n = *out_size; i < n; i++)
out_i[i] = c->u.xconst.val;
return 0;
}
void cram_const_decode_free(cram_codec *c) {
if (c)
free(c);
}
int cram_const_decode_size(cram_slice *slice, cram_codec *c) {
return 0;
}
cram_codec *cram_const_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = codec;
if (codec == E_CONST_BYTE)
c->decode = cram_const_decode_byte;
else if (option == E_INT)
c->decode = cram_const_decode_int;
else
c->decode = cram_const_decode_long;
c->free = cram_const_decode_free;
c->size = cram_const_decode_size;
c->get_block = NULL;
c->u.xconst.val = vv->varint_get64s(&cp, data+size, NULL);
if (cp - data != size) {
fprintf(stderr, "Malformed const header stream\n");
free(c);
return NULL;
}
return c;
}
int cram_const_encode(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return 0;
}
int cram_const_encode_store(cram_codec *c, cram_block *b, char *prefix,
int version) {
char tmp[99], *tp = tmp;
int len = 0;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
tp += c->vv->varint_put64s(tp, NULL, c->u.xconst.val);
len += c->vv->varint_put32_blk(b, c->codec);
len += c->vv->varint_put32_blk(b, tp-tmp);
BLOCK_APPEND(b, tmp, tp-tmp);
len += tp-tmp;
return len;
block_err:
return -1;
}
cram_codec *cram_const_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = codec;
c->free = cram_const_decode_free; // as as decode
c->encode = cram_const_encode; // a nop
c->store = cram_const_encode_store;
c->flush = NULL;
c->u.e_xconst.val = st->min_val;
return c;
}
/*
* ---------------------------------------------------------------------------
* BETA
*/
int cram_beta_decode_long(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int64_t *out_i = (int64_t *)out;
int i, n = *out_size;
if (c->u.beta.nbits) {
if (cram_not_enough_bits(in, c->u.beta.nbits * n))
return -1;
for (i = 0; i < n; i++)
out_i[i] = get_bits_MSB(in, c->u.beta.nbits) - c->u.beta.offset;
} else {
for (i = 0; i < n; i++)
out_i[i] = -c->u.beta.offset;
}
return 0;
}
int cram_beta_decode_int(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n = *out_size;
if (c->u.beta.nbits) {
if (cram_not_enough_bits(in, c->u.beta.nbits * n))
return -1;
for (i = 0; i < n; i++)
out_i[i] = get_bits_MSB(in, c->u.beta.nbits) - c->u.beta.offset;
} else {
for (i = 0; i < n; i++)
out_i[i] = -c->u.beta.offset;
}
return 0;
}
int cram_beta_decode_char(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int i, n = *out_size;
if (c->u.beta.nbits) {
if (cram_not_enough_bits(in, c->u.beta.nbits * n))
return -1;
if (out)
for (i = 0; i < n; i++)
out[i] = get_bits_MSB(in, c->u.beta.nbits) - c->u.beta.offset;
else
for (i = 0; i < n; i++)
get_bits_MSB(in, c->u.beta.nbits);
} else {
if (out)
for (i = 0; i < n; i++)
out[i] = -c->u.beta.offset;
}
return 0;
}
void cram_beta_decode_free(cram_codec *c) {
if (c)
free(c);
}
cram_codec *cram_beta_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_BETA;
if (option == E_INT || option == E_SINT)
c->decode = cram_beta_decode_int;
else if (option == E_LONG || option == E_SLONG)
c->decode = cram_beta_decode_long;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->decode = cram_beta_decode_char;
else {
hts_log_error("BYTE_ARRAYs not supported by this codec");
free(c);
return NULL;
}
c->free = cram_beta_decode_free;
c->u.beta.nbits = -1;
c->u.beta.offset = vv->varint_get32(&cp, data + size, NULL);
if (cp < data + size) // Ensure test below works
c->u.beta.nbits = vv->varint_get32(&cp, data + size, NULL);
if (cp - data != size
|| c->u.beta.nbits < 0 || c->u.beta.nbits > 8 * sizeof(int)) {
hts_log_error("Malformed beta header stream");
free(c);
return NULL;
}
return c;
}
int cram_beta_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0, r = 0, n;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
// codec length
len += (n = c->vv->varint_put32_blk(b, c->vv->varint_size(c->u.e_beta.offset)
+ c->vv->varint_size(c->u.e_beta.nbits)));
r |= n;
len += (n = c->vv->varint_put32_blk(b, c->u.e_beta.offset)); r |= n;
len += (n = c->vv->varint_put32_blk(b, c->u.e_beta.nbits)); r |= n;
if (r > 0) return len;
block_err:
return -1;
}
int cram_beta_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int64_t *syms = (int64_t *)in;
int i, r = 0;
for (i = 0; i < in_size; i++)
r |= store_bits_MSB(c->out, syms[i] + c->u.e_beta.offset,
c->u.e_beta.nbits);
return r;
}
int cram_beta_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int *syms = (int *)in;
int i, r = 0;
for (i = 0; i < in_size; i++)
r |= store_bits_MSB(c->out, syms[i] + c->u.e_beta.offset,
c->u.e_beta.nbits);
return r;
}
int cram_beta_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
unsigned char *syms = (unsigned char *)in;
int i, r = 0;
for (i = 0; i < in_size; i++)
r |= store_bits_MSB(c->out, syms[i] + c->u.e_beta.offset,
c->u.e_beta.nbits);
return r;
}
void cram_beta_encode_free(cram_codec *c) {
if (c) free(c);
}
cram_codec *cram_beta_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
int min_val, max_val, len = 0;
int64_t range;
c = malloc(sizeof(*c));
if (!c)
return NULL;
c->codec = E_BETA;
c->free = cram_beta_encode_free;
if (option == E_INT || option == E_SINT)
c->encode = cram_beta_encode_int;
else if (option == E_LONG || option == E_SLONG)
c->encode = cram_beta_encode_long;
else
c->encode = cram_beta_encode_char;
c->store = cram_beta_encode_store;
c->flush = NULL;
if (dat) {
min_val = ((int *)dat)[0];
max_val = ((int *)dat)[1];
} else {
min_val = INT_MAX;
max_val = INT_MIN;
int i;
for (i = 0; i < MAX_STAT_VAL; i++) {
if (!st->freqs[i])
continue;
if (min_val > i)
min_val = i;
max_val = i;
}
if (st->h) {
khint_t k;
for (k = kh_begin(st->h); k != kh_end(st->h); k++) {
if (!kh_exist(st->h, k))
continue;
i = kh_key(st->h, k);
if (min_val > i)
min_val = i;
if (max_val < i)
max_val = i;
}
}
}
assert(max_val >= min_val);
c->u.e_beta.offset = -min_val;
range = (int64_t) max_val - min_val;
while (range) {
len++;
range >>= 1;
}
c->u.e_beta.nbits = len;
return c;
}
/*
* ---------------------------------------------------------------------------
* XPACK: Packing multiple values into a single byte. A fast transform that
* reduces time taken by entropy encoder and may also improve compression.
*
* This also has the additional requirement that the data series is not
* interleaved with another, permitting efficient encoding and decoding
* of all elements enmasse instead of needing to only extract the bits
* necessary per item.
*/
int cram_xpack_decode_long(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int64_t *out_i = (int64_t *)out;
int i, n = *out_size;
if (c->u.xpack.nbits) {
for (i = 0; i < n; i++)
out_i[i] = c->u.xpack.rmap[get_bits_MSB(in, c->u.xpack.nbits)];
} else {
for (i = 0; i < n; i++)
out_i[i] = c->u.xpack.rmap[0];
}
return 0;
}
int cram_xpack_decode_int(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n = *out_size;
if (c->u.xpack.nbits) {
if (cram_not_enough_bits(in, c->u.xpack.nbits * n))
return -1;
for (i = 0; i < n; i++)
out_i[i] = c->u.xpack.rmap[get_bits_MSB(in, c->u.xpack.nbits)];
} else {
for (i = 0; i < n; i++)
out_i[i] = c->u.xpack.rmap[0];
}
return 0;
}
static int cram_xpack_decode_expand_char(cram_slice *slice, cram_codec *c) {
cram_block *b = slice->block_by_id[512 + c->codec_id];
if (b)
return 0;
// get sub-codec data.
cram_block *sub_b = c->u.xpack.sub_codec->get_block(slice, c->u.xpack.sub_codec);
if (!sub_b)
return -1;
// Allocate local block to expand into
b = slice->block_by_id[512 + c->codec_id] = cram_new_block(0, 0);
if (!b)
return -1;
int n = sub_b->uncomp_size * 8/c->u.xpack.nbits;
BLOCK_GROW(b, n);
b->uncomp_size = n;
uint8_t p[256];
int z;
for (z = 0; z < 256; z++)
p[z] = c->u.xpack.rmap[z];
hts_unpack(sub_b->data, sub_b->uncomp_size, b->data, b->uncomp_size,
8 / c->u.xpack.nbits, p);
return 0;
block_err:
return -1;
}
int cram_xpack_decode_char(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
// FIXME: we need to ban data-series interleaving in the spec for this to work.
// Remember this may be called when threaded and multi-slice per container.
// Hence one cram_codec instance, multiple slices, multiple blocks.
// We therefore have to cache appropriate block info in slice and not codec.
// b = cram_get_block_by_id(slice, c->external.content_id);
if (c->u.xpack.nval > 1) {
cram_xpack_decode_expand_char(slice, c);
cram_block *b = slice->block_by_id[512 + c->codec_id];
if (!b)
return -1;
if (out)
memcpy(out, b->data + b->byte, *out_size);
b->byte += *out_size;
} else {
memset(out, c->u.xpack.rmap[0], *out_size);
}
return 0;
}
void cram_xpack_decode_free(cram_codec *c) {
if (!c) return;
if (c->u.xpack.sub_codec)
c->u.xpack.sub_codec->free(c->u.xpack.sub_codec);
//free(slice->block_by_id[512 + c->codec_id]);
//slice->block_by_id[512 + c->codec_id] = 0;
free(c);
}
int cram_xpack_decode_size(cram_slice *slice, cram_codec *c) {
cram_xpack_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id]->uncomp_size;
}
cram_block *cram_xpack_get_block(cram_slice *slice, cram_codec *c) {
cram_xpack_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id];
}
cram_codec *cram_xpack_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
char *endp = data+size;
if (!(c = calloc(1, sizeof(*c))))
return NULL;
c->codec = E_XPACK;
if (option == E_LONG)
c->decode = cram_xpack_decode_long;
else if (option == E_INT)
c->decode = cram_xpack_decode_int;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->decode = cram_xpack_decode_char;
else {
fprintf(stderr, "BYTE_ARRAYs not supported by this codec\n");
goto malformed;
}
c->free = cram_xpack_decode_free;
c->size = cram_xpack_decode_size;
c->get_block = cram_xpack_get_block;
c->u.xpack.nbits = vv->varint_get32(&cp, endp, NULL);
c->u.xpack.nval = vv->varint_get32(&cp, endp, NULL);
if (c->u.xpack.nbits >= 8 || c->u.xpack.nbits < 0 ||
c->u.xpack.nval > 256 || c->u.xpack.nval < 0)
goto malformed;
int i;
for (i = 0; i < c->u.xpack.nval; i++) {
uint32_t v = vv->varint_get32(&cp, endp, NULL);
if (v >= 256)
goto malformed;
c->u.xpack.rmap[i] = v; // reverse map: e.g 0-3 to P,A,C,K
}
int encoding = vv->varint_get32(&cp, endp, NULL);
int sub_size = vv->varint_get32(&cp, endp, NULL);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.xpack.sub_codec = cram_decoder_init(hdr, encoding, cp, sub_size,
option, version, vv);
if (c->u.xpack.sub_codec == NULL)
goto malformed;
cp += sub_size;
if (cp - data != size
|| c->u.xpack.nbits < 0 || c->u.xpack.nbits > 8 * sizeof(int64_t)) {
malformed:
fprintf(stderr, "Malformed xpack header stream\n");
cram_xpack_decode_free(c);
return NULL;
}
return c;
}
int cram_xpack_encode_flush(cram_codec *c) {
// Pack the buffered up data
int meta_len;
uint64_t out_len;
uint8_t out_meta[1024];
uint8_t *out = hts_pack(BLOCK_DATA(c->out), BLOCK_SIZE(c->out),
out_meta, &meta_len, &out_len);
// We now need to pass this through the next layer of transform
if (c->u.e_xpack.sub_codec->encode(NULL, // also indicates flush incoming
c->u.e_xpack.sub_codec,
(char *)out, out_len))
return -1;
int r = 0;
if (c->u.e_xpack.sub_codec->flush)
r = c->u.e_xpack.sub_codec->flush(c->u.e_xpack.sub_codec);
free(out);
return r;
}
int cram_xpack_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0, r = 0, n;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
// Store sub-codec
cram_codec *tc = c->u.e_xpack.sub_codec;
cram_block *tb = cram_new_block(0, 0);
if (!tb)
return -1;
int len2 = tc->store(tc, tb, NULL, version);
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
// codec length
int len1 = 0, i;
for (i = 0; i < c->u.e_xpack.nval; i++)
len1 += (n = c->vv->varint_size(c->u.e_xpack.rmap[i])), r |= n;
len += (n = c->vv->varint_put32_blk(b, c->vv->varint_size(c->u.e_xpack.nbits)
+ c->vv->varint_size(c->u.e_xpack.nval)
+ len1 + len2)); r |= n;
// The map and sub-codec
len += (n = c->vv->varint_put32_blk(b, c->u.e_xpack.nbits)); r |= n;
len += (n = c->vv->varint_put32_blk(b, c->u.e_xpack.nval)); r |= n;
for (i = 0; i < c->u.e_xpack.nval; i++)
len += (n = c->vv->varint_put32_blk(b, c->u.e_xpack.rmap[i])), r |= n;
BLOCK_APPEND(b, BLOCK_DATA(tb), BLOCK_SIZE(tb));
cram_free_block(tb);
return r > 0 ? len + len2 : -1;
block_err:
return -1;
}
// Same as cram_beta_encode_long
int cram_xpack_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int64_t *syms = (int64_t *)in;
int i, r = 0;
for (i = 0; i < in_size; i++)
r |= store_bits_MSB(c->out, c->u.e_xpack.map[syms[i]], c->u.e_xpack.nbits);
return r;
}
int cram_xpack_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int *syms = (int *)in;
int i, r = 0;
for (i = 0; i < in_size; i++)
r |= store_bits_MSB(c->out, c->u.e_xpack.map[syms[i]], c->u.e_xpack.nbits);
return r;
}
int cram_xpack_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
BLOCK_APPEND(c->out, in, in_size);
return 0;
block_err:
return -1;
}
void cram_xpack_encode_free(cram_codec *c) {
if (!c) return;
if (c->u.e_xpack.sub_codec)
c->u.e_xpack.sub_codec->free(c->u.e_xpack.sub_codec);
cram_free_block(c->out);
free(c);
}
cram_codec *cram_xpack_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_XPACK;
c->free = cram_xpack_encode_free;
if (option == E_LONG)
c->encode = cram_xpack_encode_long;
else if (option == E_INT)
c->encode = cram_xpack_encode_int;
else
c->encode = cram_xpack_encode_char;
c->store = cram_xpack_encode_store;
c->flush = cram_xpack_encode_flush;
cram_xpack_encoder *e = (cram_xpack_encoder *)dat;
c->u.e_xpack.nbits = e->nbits;
c->u.e_xpack.nval = e->nval;
c->u.e_xpack.sub_codec = cram_encoder_init(e->sub_encoding, NULL,
E_BYTE_ARRAY, e->sub_codec_dat,
version, vv);
// Initialise fwd and rev maps
memcpy(c->u.e_xpack.map, e->map, sizeof(e->map)); // P,A,C,K to 0,1,2,3
int i, n;
for (i = n = 0; i < 256; i++)
if (e->map[i] != -1)
c->u.e_xpack.rmap[n++] = i; // 0,1,2,3 to P,A,C,K
if (n != e->nval) {
fprintf(stderr, "Incorrectly specified number of map items in PACK\n");
return NULL;
}
return c;
}
/*
* ---------------------------------------------------------------------------
* XDELTA: subtract successive values, zig-zag to turn +/- to + only,
* and then var-int encode the result.
*
* This also has the additional requirement that the data series is not
* interleaved with another, permitting efficient encoding and decoding
* of all elements enmasse instead of needing to only extract the bits
* necessary per item.
*/
static uint8_t zigzag8 (int8_t x) { return (x << 1) ^ (x >> 7); }
static uint16_t zigzag16(int16_t x) { return (x << 1) ^ (x >> 15); }
static uint32_t zigzag32(int32_t x) { return (x << 1) ^ (x >> 31); }
//static int8_t unzigzag8 (uint8_t x) { return (x >> 1) ^ -(x & 1); }
static int16_t unzigzag16(uint16_t x) { return (x >> 1) ^ -(x & 1); }
static int32_t unzigzag32(uint32_t x) { return (x >> 1) ^ -(x & 1); }
int cram_xdelta_decode_long(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
return -1;
}
int cram_xdelta_decode_int(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
// Slow value-by-value method for now
uint32_t *out32 = (uint32_t *)out;
int i;
for (i = 0; i < *out_size; i++) {
uint32_t v;
int one = 1;
if (c->u.e_xdelta.sub_codec->decode(slice, c->u.e_xdelta.sub_codec, in,
(char *)&v, &one) < 0)
return -1;
uint32_t d = unzigzag32(v);
c->u.xdelta.last = out32[i] = d + c->u.xdelta.last;
}
return 0;
}
static int cram_xdelta_decode_expand_char(cram_slice *slice, cram_codec *c) {
return -1;
}
int cram_xdelta_decode_char(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
return -1;
}
static inline int16_t le_int2(int16_t i) {
int16_t s;
i16_to_le(i, (uint8_t *)&s);
return s;
}
int cram_xdelta_decode_block(cram_slice *slice, cram_codec *c, cram_block *in,
char *out_, int *out_size) {
cram_block *out = (cram_block *)out_;
cram_block *b = c->u.e_xdelta.sub_codec->get_block(slice, c->u.e_xdelta.sub_codec);
int i = 0;
const int w = c->u.xdelta.word_size;
uint32_t npad = (w - *out_size%w)%w;
uint32_t out_sz = *out_size + npad;
c->u.xdelta.last = 0; // reset for each new array
for (i = 0; i < out_sz; i += w) {
uint16_t v;
// Need better interface
char *cp = (char *)b->data + b->byte;
char *cp_end = (char *)b->data + b->uncomp_size;
int err = 0;
v = c->vv->varint_get32(&cp, cp_end, &err);
if (err)
return -1;
b->byte = cp - (char *)b->data;
switch(w) {
case 2: {
int16_t d = unzigzag16(v), z;
c->u.xdelta.last = d + c->u.xdelta.last;
z = le_int2(c->u.xdelta.last);
BLOCK_APPEND(out, &z, 2-npad);
npad = 0;
break;
}
default:
fprintf(stderr, "Unsupported word size by XDELTA\n");
return -1;
}
}
return 0;
block_err:
return -1;
}
void cram_xdelta_decode_free(cram_codec *c) {
if (!c) return;
if (c->u.xdelta.sub_codec)
c->u.xdelta.sub_codec->free(c->u.xdelta.sub_codec);
free(c);
}
int cram_xdelta_decode_size(cram_slice *slice, cram_codec *c) {
cram_xdelta_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id]->uncomp_size;
}
cram_block *cram_xdelta_get_block(cram_slice *slice, cram_codec *c) {
cram_xdelta_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id];
}
cram_codec *cram_xdelta_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
char *endp = data+size;
if (!(c = calloc(1, sizeof(*c))))
return NULL;
c->codec = E_XDELTA;
if (option == E_LONG)
c->decode = cram_xdelta_decode_long;
else if (option == E_INT)
c->decode = cram_xdelta_decode_int;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->decode = cram_xdelta_decode_char;
else if (option == E_BYTE_ARRAY_BLOCK) {
option = E_BYTE_ARRAY;
c->decode = cram_xdelta_decode_block;
} else {
free(c);
return NULL;
}
c->free = cram_xdelta_decode_free;
c->size = cram_xdelta_decode_size;
c->get_block = cram_xdelta_get_block;
c->u.xdelta.word_size = vv->varint_get32(&cp, endp, NULL);
c->u.xdelta.last = 0;
int encoding = vv->varint_get32(&cp, endp, NULL);
int sub_size = vv->varint_get32(&cp, endp, NULL);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.xdelta.sub_codec = cram_decoder_init(hdr, encoding, cp, sub_size,
option, version, vv);
if (c->u.xdelta.sub_codec == NULL)
goto malformed;
cp += sub_size;
if (cp - data != size) {
malformed:
fprintf(stderr, "Malformed xdelta header stream\n");
cram_xdelta_decode_free(c);
return NULL;
}
return c;
}
int cram_xdelta_encode_flush(cram_codec *c) {
int r = -1;
cram_block *b = cram_new_block(0, 0);
if (!b)
return -1;
switch (c->u.e_xdelta.word_size) {
case 2: {
// Delta + zigzag transform.
// Subtracting two 8-bit values has a 9-bit result (-255 to 255).
// However think of it as turning a wheel clockwise or anti-clockwise.
// If it has 256 gradations then a -ve rotation followed by a +ve
// rotation of the same amount reverses it regardless.
//
// Similarly the zig-zag transformation doesn't invent any extra bits,
// so the entire thing can be done in-situ. This may permit faster
// SIMD loops if we break apart the steps.
// uint16_t last = 0, d;
// for (i = 0; i < n; i++) {
// d = io[i] - last;
// last = io[i];
// io[i] = zigzag16(vd);
// }
// --- vs ---
// for (i = n-1; i >= 1; i--)
// io[i] -= io[i-1];
// for (i = 0; i < n; i++)
// io[i] = zigzag16(io[i]);
// varint: need array variant for speed here.
// With zig-zag
int i, n = BLOCK_SIZE(c->out)/2;;
uint16_t *dat = (uint16_t *)BLOCK_DATA(c->out), last = 0;
if (n*2 < BLOCK_SIZE(c->out)) {
// half word
last = *(uint8_t *)dat;
c->vv->varint_put32_blk(b, zigzag16(last));
dat = (uint16_t *)(((uint8_t *)dat)+1);
}
for (i = 0; i < n; i++) {
uint16_t d = dat[i] - last; // possibly unaligned
last = dat[i];
c->vv->varint_put32_blk(b, zigzag16(d));
}
break;
}
case 4: {
int i, n = BLOCK_SIZE(c->out)/4;;
uint32_t *dat = (uint32_t *)BLOCK_DATA(c->out), last = 0;
for (i = 0; i < n; i++) {
uint32_t d = dat[i] - last;
last = dat[i];
c->vv->varint_put32_blk(b, zigzag32(d));
}
break;
}
case 1: {
int i, n = BLOCK_SIZE(c->out);;
uint8_t *dat = (uint8_t *)BLOCK_DATA(c->out), last = 0;
for (i = 0; i < n; i++) {
uint32_t d = dat[i] - last;
last = dat[i];
c->vv->varint_put32_blk(b, zigzag8(d));
}
break;
}
default:
goto err;
}
if (c->u.e_xdelta.sub_codec->encode(NULL, c->u.e_xdelta.sub_codec,
(char *)b->data, b->byte))
goto err;
r = 0;
err:
cram_free_block(b);
return r;
}
int cram_xdelta_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0, r = 0, n;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
// Store sub-codec
cram_codec *tc = c->u.e_xdelta.sub_codec;
cram_block *tb = cram_new_block(0, 0);
if (!tb)
return -1;
int len2 = tc->store(tc, tb, NULL, version);
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
// codec length
len += (n = c->vv->varint_put32_blk(b, c->vv->varint_size(c->u.e_xdelta.word_size)
+ len2)); r |= n;
// This and sub-codec
len += (n = c->vv->varint_put32_blk(b, c->u.e_xdelta.word_size)); r |= n;
BLOCK_APPEND(b, BLOCK_DATA(tb), BLOCK_SIZE(tb));
cram_free_block(tb);
return r > 0 ? len + len2 : -1;
block_err:
return -1;
}
// Same as cram_beta_encode_long
int cram_xdelta_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return -1;
}
int cram_xdelta_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return -1;
}
int cram_xdelta_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
char *dat = malloc(in_size*5);
if (!dat)
return -1;
char *cp = dat, *cp_end = dat + in_size*5;
c->u.e_xdelta.last = 0; // reset for each new array
if (c->u.e_xdelta.word_size == 2) {
int i, part;
part = in_size%2;
if (part) {
uint16_t z = in[0];
c->u.e_xdelta.last = le_int2(z);
cp += c->vv->varint_put32(cp, cp_end, zigzag16(c->u.e_xdelta.last));
}
uint16_t *in16 = (uint16_t *)(in+part);
for (i = 0; i < in_size/2; i++) {
uint16_t d = le_int2(in16[i]) - c->u.e_xdelta.last;
c->u.e_xdelta.last = le_int2(in16[i]);
cp += c->vv->varint_put32(cp, cp_end, zigzag16(d));
}
}
if (c->u.e_xdelta.sub_codec->encode(slice, c->u.e_xdelta.sub_codec,
(char *)dat, cp-dat)) {
free(dat);
return -1;
}
free(dat);
return 0;
}
void cram_xdelta_encode_free(cram_codec *c) {
if (!c) return;
if (c->u.e_xdelta.sub_codec)
c->u.e_xdelta.sub_codec->free(c->u.e_xdelta.sub_codec);
cram_free_block(c->out);
free(c);
}
cram_codec *cram_xdelta_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_XDELTA;
c->free = cram_xdelta_encode_free;
if (option == E_LONG)
c->encode = cram_xdelta_encode_long;
else if (option == E_INT)
c->encode = cram_xdelta_encode_int;
else
c->encode = cram_xdelta_encode_char;
c->store = cram_xdelta_encode_store;
c->flush = cram_xdelta_encode_flush;
cram_xdelta_encoder *e = (cram_xdelta_encoder *)dat;
c->u.e_xdelta.word_size = e->word_size;
c->u.e_xdelta.last = 0;
c->u.e_xdelta.sub_codec = cram_encoder_init(e->sub_encoding, NULL,
E_BYTE_ARRAY,
e->sub_codec_dat,
version, vv);
return c;
}
/*
* ---------------------------------------------------------------------------
* XRLE
*
* This also has the additional requirement that the data series is not
* interleaved with another, permitting efficient encoding and decoding
* of all elements enmasse instead of needing to only extract the bits
* necessary per item.
*/
int cram_xrle_decode_long(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
// TODO if and when needed
return -1;
}
int cram_xrle_decode_int(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
// TODO if and when needed
return -1;
}
// Expands an XRLE transform and caches result in slice->block_by_id[]
static int cram_xrle_decode_expand_char(cram_slice *slice, cram_codec *c) {
cram_block *b = slice->block_by_id[512 + c->codec_id];
if (b)
return 0;
b = slice->block_by_id[512 + c->codec_id] = cram_new_block(0, 0);
if (!b)
return -1;
cram_block *lit_b = c->u.xrle.lit_codec->get_block(slice, c->u.xrle.lit_codec);
if (!lit_b)
return -1;
unsigned char *lit_dat = lit_b->data;
unsigned int lit_sz = lit_b->uncomp_size;
unsigned int len_sz = c->u.xrle.len_codec->size(slice, c->u.xrle.len_codec);
cram_block *len_b = c->u.xrle.len_codec->get_block(slice, c->u.xrle.len_codec);
if (!len_b)
return -1;
unsigned char *len_dat = len_b->data;
uint8_t rle_syms[256];
int rle_nsyms = 0;
int i;
for (i = 0; i < 256; i++) {
if (c->u.xrle.rep_score[i] > 0)
rle_syms[rle_nsyms++] = i;
}
uint64_t out_sz;
int nb = var_get_u64(len_dat, len_dat+len_sz, &out_sz);
if (!(b->data = malloc(out_sz)))
return -1;
hts_rle_decode(lit_dat, lit_sz,
len_dat+nb, len_sz-nb,
rle_syms, rle_nsyms,
b->data, &out_sz);
b->uncomp_size = out_sz;
return 0;
}
int cram_xrle_decode_size(cram_slice *slice, cram_codec *c) {
cram_xrle_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id]->uncomp_size;
}
cram_block *cram_xrle_get_block(cram_slice *slice, cram_codec *c) {
cram_xrle_decode_expand_char(slice, c);
return slice->block_by_id[512 + c->codec_id];
}
int cram_xrle_decode_char(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int n = *out_size;
cram_xrle_decode_expand_char(slice, c);
cram_block *b = slice->block_by_id[512 + c->codec_id];
memcpy(out, b->data + b->idx, n);
b->idx += n;
return 0;
// Old code when not cached
while (n > 0) {
if (c->u.xrle.cur_len == 0) {
unsigned char lit;
int one = 1;
if (c->u.xrle.lit_codec->decode(slice, c->u.xrle.lit_codec, in,
(char *)&lit, &one) < 0)
return -1;
c->u.xrle.cur_lit = lit;
if (c->u.xrle.rep_score[lit] > 0) {
if (c->u.xrle.len_codec->decode(slice, c->u.xrle.len_codec, in,
(char *)&c->u.xrle.cur_len, &one) < 0)
return -1;
} // else cur_len still zero
//else fprintf(stderr, "%d\n", lit);
c->u.xrle.cur_len++;
}
if (n >= c->u.xrle.cur_len) {
memset(out, c->u.xrle.cur_lit, c->u.xrle.cur_len);
out += c->u.xrle.cur_len;
n -= c->u.xrle.cur_len;
c->u.xrle.cur_len = 0;
} else {
memset(out, c->u.xrle.cur_lit, n);
out += n;
c->u.xrle.cur_len -= n;
n = 0;
}
}
return 0;
}
void cram_xrle_decode_free(cram_codec *c) {
if (!c) return;
if (c->u.xrle.len_codec)
c->u.xrle.len_codec->free(c->u.xrle.len_codec);
if (c->u.xrle.lit_codec)
c->u.xrle.lit_codec->free(c->u.xrle.lit_codec);
free(c);
}
cram_codec *cram_xrle_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
char *endp = data+size;
int err = 0;
if (!(c = calloc(1, sizeof(*c))))
return NULL;
c->codec = E_XRLE;
if (option == E_LONG)
c->decode = cram_xrle_decode_long;
else if (option == E_INT)
c->decode = cram_xrle_decode_int;
else if (option == E_BYTE_ARRAY || option == E_BYTE)
c->decode = cram_xrle_decode_char;
else {
fprintf(stderr, "BYTE_ARRAYs not supported by this codec\n");
free(c);
return NULL;
}
c->free = cram_xrle_decode_free;
c->size = cram_xrle_decode_size;
c->get_block = cram_xrle_get_block;
c->u.xrle.cur_len = 0;
c->u.xrle.cur_lit = -1;
// RLE map
int i, j, nrle = vv->varint_get32(&cp, endp, &err);
memset(c->u.xrle.rep_score, 0, 256*sizeof(*c->u.xrle.rep_score));
for (i = 0; i < nrle && i < 256; i++) {
j = vv->varint_get32(&cp, endp, &err);
if (j >= 0 && j < 256)
c->u.xrle.rep_score[j] = 1;
}
// Length and literal sub encodings
c->u.xrle.len_encoding = vv->varint_get32(&cp, endp, &err);
int sub_size = vv->varint_get32(&cp, endp, &err);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.xrle.len_codec = cram_decoder_init(hdr, c->u.xrle.len_encoding,
cp, sub_size, E_INT, version, vv);
if (c->u.xrle.len_codec == NULL)
goto malformed;
cp += sub_size;
c->u.xrle.lit_encoding = vv->varint_get32(&cp, endp, &err);
sub_size = vv->varint_get32(&cp, endp, &err);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.xrle.lit_codec = cram_decoder_init(hdr, c->u.xrle.lit_encoding,
cp, sub_size, option, version, vv);
if (c->u.xrle.lit_codec == NULL)
goto malformed;
cp += sub_size;
if (err)
goto malformed;
return c;
malformed:
fprintf(stderr, "Malformed xrle header stream\n");
cram_xrle_decode_free(c);
return NULL;
}
int cram_xrle_encode_flush(cram_codec *c) {
uint8_t *out_lit, *out_len;
uint64_t out_lit_size, out_len_size;
uint8_t rle_syms[256];
int rle_nsyms = 0, i;
for (i = 0; i < 256; i++)
if (c->u.e_xrle.rep_score[i] > 0)
rle_syms[rle_nsyms++] = i;
if (!c->u.e_xrle.to_flush) {
c->u.e_xrle.to_flush = (char *)BLOCK_DATA(c->out);
c->u.e_xrle.to_flush_size = BLOCK_SIZE(c->out);
}
out_len = malloc(c->u.e_xrle.to_flush_size+8);
if (!out_len)
return -1;
int nb = var_put_u64(out_len, NULL, c->u.e_xrle.to_flush_size);
out_lit = hts_rle_encode((uint8_t *)c->u.e_xrle.to_flush, c->u.e_xrle.to_flush_size,
out_len+nb, &out_len_size,
rle_syms, &rle_nsyms,
NULL, &out_lit_size);
out_len_size += nb;
// TODO: can maybe "gift" the sub codec the data block, to remove
// one level of memcpy.
if (c->u.e_xrle.len_codec->encode(NULL,
c->u.e_xrle.len_codec,
(char *)out_len, out_len_size))
return -1;
if (c->u.e_xrle.lit_codec->encode(NULL,
c->u.e_xrle.lit_codec,
(char *)out_lit, out_lit_size))
return -1;
free(out_len);
free(out_lit);
return 0;
}
int cram_xrle_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0, r = 0, n;
cram_codec *tc;
cram_block *b_rle, *b_len, *b_lit;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
// List of symbols to RLE
b_rle = cram_new_block(0, 0);
if (!b_rle)
return -1;
int i, nrle = 0, len1 = 0;
for (i = 0; i < 256; i++) {
if (c->u.e_xrle.rep_score[i] > 0) {
nrle++;
len1 += (n = c->vv->varint_put32_blk(b_rle,i)); r |= n;
}
}
// Store length and literal sub-codecs to get encoded length
tc = c->u.e_xrle.len_codec;
b_len = cram_new_block(0, 0);
if (!b_len)
return -1;
int len2 = tc->store(tc, b_len, NULL, version);
tc = c->u.e_xrle.lit_codec;
b_lit = cram_new_block(0, 0);
if (!b_lit)
return -1;
int len3 = tc->store(tc, b_lit, NULL, version);
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
len += (n = c->vv->varint_put32_blk(b, len1 + len2 + len3
+ c->vv->varint_size(nrle))); r |= n;
len += (n = c->vv->varint_put32_blk(b, nrle)); r |= n;
BLOCK_APPEND(b, BLOCK_DATA(b_rle), BLOCK_SIZE(b_rle));
BLOCK_APPEND(b, BLOCK_DATA(b_len), BLOCK_SIZE(b_len));
BLOCK_APPEND(b, BLOCK_DATA(b_lit), BLOCK_SIZE(b_lit));
cram_free_block(b_rle);
cram_free_block(b_len);
cram_free_block(b_lit);
if (r > 0)
return len + len1 + len2 + len3;
block_err:
return -1;
}
int cram_xrle_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
// TODO if and when needed
return -1;
}
int cram_xrle_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
// TODO if and when needed
return -1;
}
int cram_xrle_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
if (c->u.e_xrle.to_flush) {
if (!c->out && !(c->out = cram_new_block(0, 0)))
return -1;
BLOCK_APPEND(c->out, c->u.e_xrle.to_flush, c->u.e_xrle.to_flush_size);
c->u.e_xrle.to_flush = NULL;
c->u.e_xrle.to_flush_size = 0;
}
if (c->out && BLOCK_SIZE(c->out) > 0) {
// Gathering data
BLOCK_APPEND(c->out, in, in_size);
return 0;
}
// else cache copy of the data we're about to send to flush instead.
c->u.e_xrle.to_flush = in;
c->u.e_xrle.to_flush_size = in_size;
return 0;
block_err:
return -1;
}
void cram_xrle_encode_free(cram_codec *c) {
if (!c) return;
if (c->u.e_xrle.len_codec)
c->u.e_xrle.len_codec->free(c->u.e_xrle.len_codec);
if (c->u.e_xrle.lit_codec)
c->u.e_xrle.lit_codec->free(c->u.e_xrle.lit_codec);
cram_free_block(c->out);
free(c);
}
cram_codec *cram_xrle_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_XRLE;
c->free = cram_xrle_encode_free;
if (option == E_LONG)
c->encode = cram_xrle_encode_long;
else if (option == E_INT)
c->encode = cram_xrle_encode_int;
else
c->encode = cram_xrle_encode_char;
c->store = cram_xrle_encode_store;
c->flush = cram_xrle_encode_flush;
cram_xrle_encoder *e = (cram_xrle_encoder *)dat;
c->u.e_xrle.len_codec = cram_encoder_init(e->len_encoding, NULL,
E_BYTE, e->len_dat,
version, vv);
c->u.e_xrle.lit_codec = cram_encoder_init(e->lit_encoding, NULL,
E_BYTE, e->lit_dat,
version, vv);
c->u.e_xrle.cur_lit = -1;
c->u.e_xrle.cur_len = -1;
c->u.e_xrle.to_flush = NULL;
c->u.e_xrle.to_flush_size = 0;
memcpy(c->u.e_xrle.rep_score, e->rep_score, 256*sizeof(*c->u.e_xrle.rep_score));
return c;
}
/*
* ---------------------------------------------------------------------------
* SUBEXP
*/
int cram_subexp_decode(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int n, count;
int k = c->u.subexp.k;
for (count = 0, n = *out_size; count < n; count++) {
int i = 0, tail;
int val;
/* Get number of 1s */
//while (get_bit_MSB(in) == 1) i++;
i = get_one_bits_MSB(in);
if (i < 0 || cram_not_enough_bits(in, i > 0 ? i + k - 1 : k))
return -1;
/*
* Val is
* i > 0: 2^(k+i-1) + k+i-1 bits
* i = 0: k bits
*/
if (i) {
tail = i + k-1;
val = 0;
while (tail) {
//val = val<<1; val |= get_bit_MSB(in);
GET_BIT_MSB(in, val);
tail--;
}
val += 1 << (i + k-1);
} else {
tail = k;
val = 0;
while (tail) {
//val = val<<1; val |= get_bit_MSB(in);
GET_BIT_MSB(in, val);
tail--;
}
}
out_i[count] = val - c->u.subexp.offset;
}
return 0;
}
void cram_subexp_decode_free(cram_codec *c) {
if (c)
free(c);
}
cram_codec *cram_subexp_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
if (option != E_INT) {
hts_log_error("This codec only supports INT encodings");
return NULL;
}
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_SUBEXP;
c->decode = cram_subexp_decode;
c->free = cram_subexp_decode_free;
c->u.subexp.k = -1;
c->u.subexp.offset = vv->varint_get32(&cp, data + size, NULL);
c->u.subexp.k = vv->varint_get32(&cp, data + size, NULL);
if (cp - data != size || c->u.subexp.k < 0) {
hts_log_error("Malformed subexp header stream");
free(c);
return NULL;
}
return c;
}
/*
* ---------------------------------------------------------------------------
* GAMMA
*/
int cram_gamma_decode(cram_slice *slice, cram_codec *c, cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n;
for (i = 0, n = *out_size; i < n; i++) {
int nz = 0;
int val;
//while (get_bit_MSB(in) == 0) nz++;
nz = get_zero_bits_MSB(in);
if (cram_not_enough_bits(in, nz))
return -1;
val = 1;
while (nz > 0) {
//val <<= 1; val |= get_bit_MSB(in);
GET_BIT_MSB(in, val);
nz--;
}
out_i[i] = val - c->u.gamma.offset;
}
return 0;
}
void cram_gamma_decode_free(cram_codec *c) {
if (c)
free(c);
}
cram_codec *cram_gamma_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c = NULL;
char *cp = data;
if (option != E_INT) {
hts_log_error("This codec only supports INT encodings");
return NULL;
}
if (size < 1)
goto malformed;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_GAMMA;
c->decode = cram_gamma_decode;
c->free = cram_gamma_decode_free;
c->u.gamma.offset = vv->varint_get32(&cp, data+size, NULL);
if (cp - data != size)
goto malformed;
return c;
malformed:
hts_log_error("Malformed gamma header stream");
free(c);
return NULL;
}
/*
* ---------------------------------------------------------------------------
* HUFFMAN
*/
static int code_sort(const void *vp1, const void *vp2) {
const cram_huffman_code *c1 = (const cram_huffman_code *)vp1;
const cram_huffman_code *c2 = (const cram_huffman_code *)vp2;
if (c1->len != c2->len)
return c1->len - c2->len;
else
return c1->symbol < c2->symbol ? -1 : (c1->symbol > c2->symbol ? 1 : 0);
}
void cram_huffman_decode_free(cram_codec *c) {
if (!c)
return;
if (c->u.huffman.codes)
free(c->u.huffman.codes);
free(c);
}
int cram_huffman_decode_null(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
return -1;
}
int cram_huffman_decode_char0(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int i, n;
if (!out)
return 0;
/* Special case of 0 length codes */
for (i = 0, n = *out_size; i < n; i++) {
out[i] = c->u.huffman.codes[0].symbol;
}
return 0;
}
int cram_huffman_decode_char(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int i, n, ncodes = c->u.huffman.ncodes;
const cram_huffman_code * const codes = c->u.huffman.codes;
for (i = 0, n = *out_size; i < n; i++) {
int idx = 0;
int val = 0, len = 0, last_len = 0;
for (;;) {
int dlen = codes[idx].len - last_len;
if (cram_not_enough_bits(in, dlen))
return -1;
//val <<= dlen;
//val |= get_bits_MSB(in, dlen);
//last_len = (len += dlen);
last_len = (len += dlen);
for (; dlen; dlen--) GET_BIT_MSB(in, val);
idx = val - codes[idx].p;
if (idx >= ncodes || idx < 0)
return -1;
if (codes[idx].code == val && codes[idx].len == len) {
if (out) out[i] = codes[idx].symbol;
break;
}
}
}
return 0;
}
int cram_huffman_decode_int0(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n;
const cram_huffman_code * const codes = c->u.huffman.codes;
/* Special case of 0 length codes */
for (i = 0, n = *out_size; i < n; i++) {
out_i[i] = codes[0].symbol;
}
return 0;
}
int cram_huffman_decode_int(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int32_t *out_i = (int32_t *)out;
int i, n, ncodes = c->u.huffman.ncodes;
const cram_huffman_code * const codes = c->u.huffman.codes;
for (i = 0, n = *out_size; i < n; i++) {
int idx = 0;
int val = 0, len = 0, last_len = 0;
// Now one bit at a time for remaining checks
for (;;) {
int dlen = codes[idx].len - last_len;
if (cram_not_enough_bits(in, dlen))
return -1;
//val <<= dlen;
//val |= get_bits_MSB(in, dlen);
//last_len = (len += dlen);
last_len = (len += dlen);
for (; dlen; dlen--) GET_BIT_MSB(in, val);
idx = val - codes[idx].p;
if (idx >= ncodes || idx < 0)
return -1;
if (codes[idx].code == val && codes[idx].len == len) {
out_i[i] = codes[idx].symbol;
break;
}
}
}
return 0;
}
int cram_huffman_decode_long0(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int64_t *out_i = (int64_t *)out;
int i, n;
const cram_huffman_code * const codes = c->u.huffman.codes;
/* Special case of 0 length codes */
for (i = 0, n = *out_size; i < n; i++) {
out_i[i] = codes[0].symbol;
}
return 0;
}
int cram_huffman_decode_long(cram_slice *slice, cram_codec *c,
cram_block *in, char *out, int *out_size) {
int64_t *out_i = (int64_t *)out;
int i, n, ncodes = c->u.huffman.ncodes;
const cram_huffman_code * const codes = c->u.huffman.codes;
for (i = 0, n = *out_size; i < n; i++) {
int idx = 0;
int val = 0, len = 0, last_len = 0;
// Now one bit at a time for remaining checks
for (;;) {
int dlen = codes[idx].len - last_len;
if (cram_not_enough_bits(in, dlen))
return -1;
//val <<= dlen;
//val |= get_bits_MSB(in, dlen);
//last_len = (len += dlen);
last_len = (len += dlen);
for (; dlen; dlen--) GET_BIT_MSB(in, val);
idx = val - codes[idx].p;
if (idx >= ncodes || idx < 0)
return -1;
if (codes[idx].code == val && codes[idx].len == len) {
out_i[i] = codes[idx].symbol;
break;
}
}
}
return 0;
}
/*
* Initialises a huffman decoder from an encoding data stream.
*/
cram_codec *cram_huffman_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
int32_t ncodes = 0, i, j;
char *cp = data, *data_end = &data[size];
cram_codec *h;
cram_huffman_code *codes = NULL;
int32_t val, last_len, max_len = 0;
uint32_t max_val; // needs one more bit than val
const int max_code_bits = sizeof(val) * 8 - 1;
int err = 0;
if (option == E_BYTE_ARRAY_BLOCK) {
hts_log_error("BYTE_ARRAYs not supported by this codec");
return NULL;
}
ncodes = vv->varint_get32(&cp, data_end, &err);
if (ncodes < 0) {
hts_log_error("Invalid number of symbols in huffman stream");
return NULL;
}
if (ncodes >= SIZE_MAX / sizeof(*codes)) {
errno = ENOMEM;
return NULL;
}
h = calloc(1, sizeof(*h));
if (!h)
return NULL;
h->codec = E_HUFFMAN;
h->free = cram_huffman_decode_free;
h->u.huffman.ncodes = ncodes;
h->u.huffman.option = option;
if (ncodes) {
codes = h->u.huffman.codes = malloc(ncodes * sizeof(*codes));
if (!codes) {
free(h);
return NULL;
}
} else {
codes = h->u.huffman.codes = NULL;
}
/* Read symbols and bit-lengths */
if (option == E_LONG) {
for (i = 0; i < ncodes; i++)
codes[i].symbol = vv->varint_get64(&cp, data_end, &err);
} else if (option == E_INT || option == E_BYTE) {
for (i = 0; i < ncodes; i++)
codes[i].symbol = vv->varint_get32(&cp, data_end, &err);
} else {
goto malformed;
}
if (err)
goto malformed;
i = vv->varint_get32(&cp, data_end, &err);
if (i != ncodes)
goto malformed;
if (ncodes == 0) {
/* NULL huffman stream. Ensure it returns an error if
anything tries to use it. */
h->decode = cram_huffman_decode_null;
return h;
}
for (i = 0; i < ncodes; i++) {
codes[i].len = vv->varint_get32(&cp, data_end, &err);
if (err)
break;
if (codes[i].len < 0) {
hts_log_error("Huffman code length (%d) is negative", codes[i].len);
goto malformed;
}
if (max_len < codes[i].len)
max_len = codes[i].len;
}
if (err || cp - data != size || max_len >= ncodes)
goto malformed;
/* 31 is max. bits available in val */
if (max_len > max_code_bits) {
hts_log_error("Huffman code length (%d) is greater "
"than maximum supported (%d)", max_len, max_code_bits);
goto malformed;
}
/* Sort by bit length and then by symbol value */
qsort(codes, ncodes, sizeof(*codes), code_sort);
/* Assign canonical codes */
val = -1, last_len = 0, max_val = 0;
for (i = 0; i < ncodes; i++) {
val++;
if (val > max_val)
goto malformed;
if (codes[i].len > last_len) {
val <<= (codes[i].len - last_len);
last_len = codes[i].len;
max_val = (1U << codes[i].len) - 1;
}
codes[i].code = val;
}
/*
* Compute the next starting point, offset by the i'th value.
* For example if codes 10, 11, 12, 13 are 30, 31, 32, 33 then
* codes[10..13].p = 30 - 10.
*/
last_len = 0;
for (i = j = 0; i < ncodes; i++) {
if (codes[i].len > last_len) {
j = codes[i].code - i;
last_len = codes[i].len;
}
codes[i].p = j;
}
// puts("==HUFF LEN==");
// for (i = 0; i <= last_len+1; i++) {
// printf("len %d=%d prefix %d\n", i, h->u.huffman.lengths[i], h->u.huffman.prefix[i]);
// }
// puts("===HUFFMAN CODES===");
// for (i = 0; i < ncodes; i++) {
// int j;
// printf("%d: %d %d %d ", i, codes[i].symbol, codes[i].len, codes[i].code);
// j = codes[i].len;
// while (j) {
// putchar(codes[i].code & (1 << --j) ? '1' : '0');
// }
// printf(" %d\n", codes[i].code);
// }
if (option == E_BYTE || option == E_BYTE_ARRAY) {
if (h->u.huffman.codes[0].len == 0)
h->decode = cram_huffman_decode_char0;
else
h->decode = cram_huffman_decode_char;
} else if (option == E_LONG || option == E_SLONG) {
if (h->u.huffman.codes[0].len == 0)
h->decode = cram_huffman_decode_long0;
else
h->decode = cram_huffman_decode_long;
} else if (option == E_INT || option == E_SINT || option == E_BYTE) {
if (h->u.huffman.codes[0].len == 0)
h->decode = cram_huffman_decode_int0;
else
h->decode = cram_huffman_decode_int;
} else {
return NULL;
}
return (cram_codec *)h;
malformed:
hts_log_error("Malformed huffman header stream");
free(codes);
free(h);
return NULL;
}
int cram_huffman_encode_char0(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return 0;
}
int cram_huffman_encode_char(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int i, code, len, r = 0;
unsigned char *syms = (unsigned char *)in;
while (in_size--) {
int sym = *syms++;
if (sym >= -1 && sym < MAX_HUFF) {
i = c->u.e_huffman.val2code[sym+1];
assert(c->u.e_huffman.codes[i].symbol == sym);
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
} else {
/* Slow - use a lookup table for when sym < MAX_HUFF? */
for (i = 0; i < c->u.e_huffman.nvals; i++) {
if (c->u.e_huffman.codes[i].symbol == sym)
break;
}
if (i == c->u.e_huffman.nvals)
return -1;
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
}
r |= store_bits_MSB(c->out, code, len);
}
return r;
}
int cram_huffman_encode_int0(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return 0;
}
int cram_huffman_encode_int(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int i, code, len, r = 0;
int *syms = (int *)in;
while (in_size--) {
int sym = *syms++;
if (sym >= -1 && sym < MAX_HUFF) {
i = c->u.e_huffman.val2code[sym+1];
assert(c->u.e_huffman.codes[i].symbol == sym);
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
} else {
/* Slow - use a lookup table for when sym < MAX_HUFFMAN_SYM? */
for (i = 0; i < c->u.e_huffman.nvals; i++) {
if (c->u.e_huffman.codes[i].symbol == sym)
break;
}
if (i == c->u.e_huffman.nvals)
return -1;
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
}
r |= store_bits_MSB(c->out, code, len);
}
return r;
}
int cram_huffman_encode_long0(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
return 0;
}
int cram_huffman_encode_long(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int i, code, len, r = 0;
int64_t *syms = (int64_t *)in;
while (in_size--) {
int sym = *syms++;
if (sym >= -1 && sym < MAX_HUFF) {
i = c->u.e_huffman.val2code[sym+1];
assert(c->u.e_huffman.codes[i].symbol == sym);
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
} else {
/* Slow - use a lookup table for when sym < MAX_HUFFMAN_SYM? */
for (i = 0; i < c->u.e_huffman.nvals; i++) {
if (c->u.e_huffman.codes[i].symbol == sym)
break;
}
if (i == c->u.e_huffman.nvals)
return -1;
code = c->u.e_huffman.codes[i].code;
len = c->u.e_huffman.codes[i].len;
}
r |= store_bits_MSB(c->out, code, len);
}
return r;
}
void cram_huffman_encode_free(cram_codec *c) {
if (!c)
return;
if (c->u.e_huffman.codes)
free(c->u.e_huffman.codes);
free(c);
}
/*
* Encodes a huffman tree.
* Returns number of bytes written.
*/
int cram_huffman_encode_store(cram_codec *c, cram_block *b, char *prefix,
int version) {
int i, len = 0, r = 0, n;
cram_huffman_code *codes = c->u.e_huffman.codes;
/*
* Up to code length 127 means 2.5e+26 bytes of data required (worst
* case huffman tree needs symbols with freqs matching the Fibonacci
* series). So guaranteed 1 byte per code.
*
* Symbols themselves could be 5 bytes (eg -1 is 5 bytes in itf8).
*
* Therefore 6*ncodes + 5 + 5 + 1 + 5 is max memory
*/
char *tmp = malloc(6*c->u.e_huffman.nvals+16);
char *tp = tmp, *tpend = tmp+6*c->u.e_huffman.nvals+16;
if (!tmp)
return -1;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
tp += c->vv->varint_put32(tp, tpend, c->u.e_huffman.nvals);
if (c->u.e_huffman.option == E_LONG) {
for (i = 0; i < c->u.e_huffman.nvals; i++) {
tp += c->vv->varint_put64(tp, tpend, codes[i].symbol);
}
} else if (c->u.e_huffman.option == E_SLONG) {
for (i = 0; i < c->u.e_huffman.nvals; i++) {
tp += c->vv->varint_put64s(tp, tpend, codes[i].symbol);
}
} else if (c->u.e_huffman.option == E_INT || c->u.e_huffman.option == E_BYTE) {
for (i = 0; i < c->u.e_huffman.nvals; i++) {
tp += c->vv->varint_put32(tp, tpend, codes[i].symbol);
}
} else if (c->u.e_huffman.option == E_SINT) {
for (i = 0; i < c->u.e_huffman.nvals; i++) {
tp += c->vv->varint_put32s(tp, tpend, codes[i].symbol);
}
} else {
return -1;
}
tp += c->vv->varint_put32(tp, tpend, c->u.e_huffman.nvals);
for (i = 0; i < c->u.e_huffman.nvals; i++)
tp += c->vv->varint_put32(tp, tpend, codes[i].len);
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
len += (n = c->vv->varint_put32_blk(b, tp-tmp)); r |= n;
BLOCK_APPEND(b, tmp, tp-tmp);
len += tp-tmp;
free(tmp);
if (r > 0)
return len;
block_err:
return -1;
}
cram_codec *cram_huffman_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
int *vals = NULL, *freqs = NULL, *lens = NULL, code, len;
int *new_vals, *new_freqs;
int i, max_val = 0, min_val = INT_MAX, k;
size_t nvals, vals_alloc = 0;
cram_codec *c;
cram_huffman_code *codes;
c = malloc(sizeof(*c));
if (!c)
return NULL;
c->codec = E_HUFFMAN;
/* Count number of unique symbols */
for (nvals = i = 0; i < MAX_STAT_VAL; i++) {
if (!st->freqs[i])
continue;
if (nvals >= vals_alloc) {
vals_alloc = vals_alloc ? vals_alloc*2 : 1024;
new_vals = realloc(vals, vals_alloc * sizeof(int));
if (!new_vals) goto nomem;
vals = new_vals;
new_freqs = realloc(freqs, vals_alloc * sizeof(int));
if (!new_freqs) goto nomem;
freqs = new_freqs;
}
vals[nvals] = i;
freqs[nvals] = st->freqs[i];
assert(st->freqs[i] > 0);
if (max_val < i) max_val = i;
if (min_val > i) min_val = i;
nvals++;
}
if (st->h) {
khint_t k;
for (k = kh_begin(st->h); k != kh_end(st->h); k++) {
if (!kh_exist(st->h, k))
continue;
if (nvals >= vals_alloc) {
vals_alloc = vals_alloc ? vals_alloc*2 : 1024;
new_vals = realloc(vals, vals_alloc * sizeof(int));
if (!new_vals) goto nomem;
vals = new_vals;
new_freqs = realloc(freqs, vals_alloc * sizeof(int));
if (!new_freqs) goto nomem;
freqs = new_freqs;
}
vals[nvals]= kh_key(st->h, k);
freqs[nvals] = kh_val(st->h, k);
assert(freqs[nvals] > 0);
if (max_val < i) max_val = i;
if (min_val > i) min_val = i;
nvals++;
}
}
assert(nvals > 0);
new_freqs = realloc(freqs, 2*nvals*sizeof(*freqs));
if (!new_freqs) goto nomem;
freqs = new_freqs;
lens = calloc(2*nvals, sizeof(*lens));
if (!lens) goto nomem;
/* Inefficient, use pointers to form chain so we can insert and maintain
* a sorted list? This is currently O(nvals^2) complexity.
*/
for (;;) {
int low1 = INT_MAX, low2 = INT_MAX;
int ind1 = 0, ind2 = 0;
for (i = 0; i < nvals; i++) {
if (freqs[i] < 0)
continue;
if (low1 > freqs[i])
low2 = low1, ind2 = ind1, low1 = freqs[i], ind1 = i;
else if (low2 > freqs[i])
low2 = freqs[i], ind2 = i;
}
if (low2 == INT_MAX)
break;
freqs[nvals] = low1 + low2;
lens[ind1] = nvals;
lens[ind2] = nvals;
freqs[ind1] *= -1;
freqs[ind2] *= -1;
nvals++;
}
nvals = nvals/2+1;
/* Assign lengths */
for (i = 0; i < nvals; i++) {
int code_len = 0;
for (k = lens[i]; k; k = lens[k])
code_len++;
lens[i] = code_len;
freqs[i] *= -1;
//fprintf(stderr, "%d / %d => %d\n", vals[i], freqs[i], lens[i]);
}
/* Sort, need in a struct */
if (!(codes = malloc(nvals * sizeof(*codes))))
goto nomem;
for (i = 0; i < nvals; i++) {
codes[i].symbol = vals[i];
codes[i].len = lens[i];
}
qsort(codes, nvals, sizeof(*codes), code_sort);
/*
* Generate canonical codes from lengths.
* Sort by length.
* Start with 0.
* Every new code of same length is +1.
* Every new code of new length is +1 then <<1 per extra length.
*
* /\
* a/\
* /\/\
* bcd/\
* ef
*
* a 1 0
* b 3 4 (0+1)<<2
* c 3 5
* d 3 6
* e 4 14 (6+1)<<1
* f 5 15
*/
code = 0; len = codes[0].len;
for (i = 0; i < nvals; i++) {
while (len != codes[i].len) {
code<<=1;
len++;
}
codes[i].code = code++;
if (codes[i].symbol >= -1 && codes[i].symbol < MAX_HUFF)
c->u.e_huffman.val2code[codes[i].symbol+1] = i;
//fprintf(stderr, "sym %d, code %d, len %d\n",
// codes[i].symbol, codes[i].code, codes[i].len);
}
free(lens);
free(vals);
free(freqs);
c->u.e_huffman.codes = codes;
c->u.e_huffman.nvals = nvals;
c->u.e_huffman.option = option;
c->free = cram_huffman_encode_free;
if (option == E_BYTE || option == E_BYTE_ARRAY) {
if (c->u.e_huffman.codes[0].len == 0)
c->encode = cram_huffman_encode_char0;
else
c->encode = cram_huffman_encode_char;
} else if (option == E_INT || option == E_SINT) {
if (c->u.e_huffman.codes[0].len == 0)
c->encode = cram_huffman_encode_int0;
else
c->encode = cram_huffman_encode_int;
} else if (option == E_LONG || option == E_SLONG) {
if (c->u.e_huffman.codes[0].len == 0)
c->encode = cram_huffman_encode_long0;
else
c->encode = cram_huffman_encode_long;
} else {
return NULL;
}
c->store = cram_huffman_encode_store;
c->flush = NULL;
return c;
nomem:
hts_log_error("Out of memory");
free(vals);
free(freqs);
free(lens);
free(c);
return NULL;
}
/*
* ---------------------------------------------------------------------------
* BYTE_ARRAY_LEN
*/
int cram_byte_array_len_decode(cram_slice *slice, cram_codec *c,
cram_block *in, char *out,
int *out_size) {
/* Fetch length */
int32_t len = 0, one = 1;
int r;
r = c->u.byte_array_len.len_codec->decode(slice, c->u.byte_array_len.len_codec,
in, (char *)&len, &one);
//printf("ByteArray Len=%d\n", len);
if (!r && c->u.byte_array_len.val_codec && len >= 0) {
r = c->u.byte_array_len.val_codec->decode(slice,
c->u.byte_array_len.val_codec,
in, out, &len);
} else {
return -1;
}
*out_size = len;
return r;
}
void cram_byte_array_len_decode_free(cram_codec *c) {
if (!c) return;
if (c->u.byte_array_len.len_codec)
c->u.byte_array_len.len_codec->free(c->u.byte_array_len.len_codec);
if (c->u.byte_array_len.val_codec)
c->u.byte_array_len.val_codec->free(c->u.byte_array_len.val_codec);
free(c);
}
cram_codec *cram_byte_array_len_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c;
char *cp = data;
char *endp = data + size;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_BYTE_ARRAY_LEN;
c->decode = cram_byte_array_len_decode;
c->free = cram_byte_array_len_decode_free;
c->u.byte_array_len.len_codec = NULL;
c->u.byte_array_len.val_codec = NULL;
int encoding = vv->varint_get32(&cp, endp, NULL);
int sub_size = vv->varint_get32(&cp, endp, NULL);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.byte_array_len.len_codec = cram_decoder_init(hdr, encoding, cp, sub_size,
E_INT, version, vv);
if (c->u.byte_array_len.len_codec == NULL)
goto no_codec;
cp += sub_size;
encoding = vv->varint_get32(&cp, endp, NULL);
sub_size = vv->varint_get32(&cp, endp, NULL);
if (sub_size < 0 || endp - cp < sub_size)
goto malformed;
c->u.byte_array_len.val_codec = cram_decoder_init(hdr, encoding, cp, sub_size,
option, version, vv);
if (c->u.byte_array_len.val_codec == NULL)
goto no_codec;
cp += sub_size;
if (cp - data != size)
goto malformed;
return c;
malformed:
hts_log_error("Malformed byte_array_len header stream");
no_codec:
cram_byte_array_len_decode_free(c);
return NULL;
}
int cram_byte_array_len_encode(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
int32_t i32 = in_size;
int r = 0;
r |= c->u.e_byte_array_len.len_codec->encode(slice,
c->u.e_byte_array_len.len_codec,
(char *)&i32, 1);
r |= c->u.e_byte_array_len.val_codec->encode(slice,
c->u.e_byte_array_len.val_codec,
in, in_size);
return r;
}
void cram_byte_array_len_encode_free(cram_codec *c) {
if (!c)
return;
if (c->u.e_byte_array_len.len_codec)
c->u.e_byte_array_len.len_codec->free(c->u.e_byte_array_len.len_codec);
if (c->u.e_byte_array_len.val_codec)
c->u.e_byte_array_len.val_codec->free(c->u.e_byte_array_len.val_codec);
free(c);
}
int cram_byte_array_len_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0, len2, len3, r = 0, n;
cram_codec *tc;
cram_block *b_len = NULL, *b_val = NULL;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
tc = c->u.e_byte_array_len.len_codec;
b_len = cram_new_block(0, 0);
if (!b_len) goto block_err;
len2 = tc->store(tc, b_len, NULL, version);
if (len2 < 0) goto block_err;
tc = c->u.e_byte_array_len.val_codec;
b_val = cram_new_block(0, 0);
if (!b_val) goto block_err;
len3 = tc->store(tc, b_val, NULL, version);
if (len3 < 0) goto block_err;
len += (n = c->vv->varint_put32_blk(b, c->codec)); r |= n;
len += (n = c->vv->varint_put32_blk(b, len2+len3)); r |= n;
BLOCK_APPEND(b, BLOCK_DATA(b_len), BLOCK_SIZE(b_len));
BLOCK_APPEND(b, BLOCK_DATA(b_val), BLOCK_SIZE(b_val));
cram_free_block(b_len);
cram_free_block(b_val);
if (r > 0)
return len + len2 + len3;
block_err:
if (b_len) cram_free_block(b_len);
if (b_val) cram_free_block(b_val);
return -1;
}
cram_codec *cram_byte_array_len_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
cram_byte_array_len_encoder *e = (cram_byte_array_len_encoder *)dat;
c = malloc(sizeof(*c));
if (!c)
return NULL;
c->codec = E_BYTE_ARRAY_LEN;
c->free = cram_byte_array_len_encode_free;
c->encode = cram_byte_array_len_encode;
c->store = cram_byte_array_len_encode_store;
c->flush = NULL;
c->u.e_byte_array_len.len_codec = cram_encoder_init(e->len_encoding,
st, E_INT,
e->len_dat,
version, vv);
c->u.e_byte_array_len.val_codec = cram_encoder_init(e->val_encoding,
NULL, E_BYTE_ARRAY,
e->val_dat,
version, vv);
if (!c->u.e_byte_array_len.len_codec ||
!c->u.e_byte_array_len.val_codec) {
cram_byte_array_len_encode_free(c);
return NULL;
}
return c;
}
/*
* ---------------------------------------------------------------------------
* BYTE_ARRAY_STOP
*/
static int cram_byte_array_stop_decode_char(cram_slice *slice, cram_codec *c,
cram_block *in, char *out,
int *out_size) {
char *cp, ch;
cram_block *b = NULL;
b = cram_get_block_by_id(slice, c->u.byte_array_stop.content_id);
if (!b)
return *out_size?-1:0;
if (b->idx >= b->uncomp_size)
return -1;
cp = (char *)b->data + b->idx;
if (out) {
while ((ch = *cp) != (char)c->u.byte_array_stop.stop) {
if (cp - (char *)b->data >= b->uncomp_size)
return -1;
*out++ = ch;
cp++;
}
} else {
// Consume input, but produce no output
while ((ch = *cp) != (char)c->u.byte_array_stop.stop) {
if (cp - (char *)b->data >= b->uncomp_size)
return -1;
cp++;
}
}
*out_size = cp - (char *)(b->data + b->idx);
b->idx = cp - (char *)b->data + 1;
return 0;
}
int cram_byte_array_stop_decode_block(cram_slice *slice, cram_codec *c,
cram_block *in, char *out_,
int *out_size) {
cram_block *b;
cram_block *out = (cram_block *)out_;
unsigned char *cp, *cp_end;
unsigned char stop;
b = cram_get_block_by_id(slice, c->u.byte_array_stop.content_id);
if (!b)
return *out_size?-1:0;
if (b->idx >= b->uncomp_size)
return -1;
cp = b->data + b->idx;
cp_end = b->data + b->uncomp_size;
stop = c->u.byte_array_stop.stop;
if (cp_end - cp < out->alloc - out->byte) {
unsigned char *out_cp = BLOCK_END(out);
while (cp != cp_end && *cp != stop)
*out_cp++ = *cp++;
BLOCK_SIZE(out) = out_cp - BLOCK_DATA(out);
} else {
unsigned char *cp_start;
for (cp_start = cp; cp != cp_end && *cp != stop; cp++)
;
BLOCK_APPEND(out, cp_start, cp - cp_start);
BLOCK_GROW(out, cp - cp_start);
}
*out_size = cp - (b->data + b->idx);
b->idx = cp - b->data + 1;
return 0;
block_err:
return -1;
}
void cram_byte_array_stop_decode_free(cram_codec *c) {
if (!c) return;
free(c);
}
cram_codec *cram_byte_array_stop_decode_init(cram_block_compression_hdr *hdr,
char *data, int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) {
cram_codec *c = NULL;
unsigned char *cp = (unsigned char *)data;
int err = 0;
if (size < (CRAM_MAJOR_VERS(version) == 1 ? 5 : 2))
goto malformed;
if (!(c = malloc(sizeof(*c))))
return NULL;
c->codec = E_BYTE_ARRAY_STOP;
switch (option) {
case E_BYTE_ARRAY_BLOCK:
c->decode = cram_byte_array_stop_decode_block;
break;
case E_BYTE_ARRAY:
c->decode = cram_byte_array_stop_decode_char;
break;
default:
hts_log_error("The byte_array_stop codec only supports BYTE_ARRAYs");
free(c);
return NULL;
}
c->free = cram_byte_array_stop_decode_free;
c->u.byte_array_stop.stop = *cp++;
if (CRAM_MAJOR_VERS(version) == 1) {
c->u.byte_array_stop.content_id = cp[0] + (cp[1]<<8) + (cp[2]<<16)
+ ((unsigned int) cp[3]<<24);
cp += 4;
} else {
c->u.byte_array_stop.content_id = vv->varint_get32((char **)&cp, data+size, &err);
}
if ((char *)cp - data != size || err)
goto malformed;
return c;
malformed:
hts_log_error("Malformed byte_array_stop header stream");
free(c);
return NULL;
}
int cram_byte_array_stop_encode(cram_slice *slice, cram_codec *c,
char *in, int in_size) {
BLOCK_APPEND(c->out, in, in_size);
BLOCK_APPEND_CHAR(c->out, c->u.e_byte_array_stop.stop);
return 0;
block_err:
return -1;
}
void cram_byte_array_stop_encode_free(cram_codec *c) {
if (!c)
return;
free(c);
}
int cram_byte_array_stop_encode_store(cram_codec *c, cram_block *b,
char *prefix, int version) {
int len = 0;
char buf[20], *cp = buf;
if (prefix) {
size_t l = strlen(prefix);
BLOCK_APPEND(b, prefix, l);
len += l;
}
cp += c->vv->varint_put32(cp, buf+20, c->codec);
if (CRAM_MAJOR_VERS(version) == 1) {
cp += c->vv->varint_put32(cp, buf+20, 5);
*cp++ = c->u.e_byte_array_stop.stop;
*cp++ = (c->u.e_byte_array_stop.content_id >> 0) & 0xff;
*cp++ = (c->u.e_byte_array_stop.content_id >> 8) & 0xff;
*cp++ = (c->u.e_byte_array_stop.content_id >> 16) & 0xff;
*cp++ = (c->u.e_byte_array_stop.content_id >> 24) & 0xff;
} else {
cp += c->vv->varint_put32(cp, buf+20, 1 +
c->vv->varint_size(c->u.e_byte_array_stop.content_id));
*cp++ = c->u.e_byte_array_stop.stop;
cp += c->vv->varint_put32(cp, buf+20, c->u.e_byte_array_stop.content_id);
}
BLOCK_APPEND(b, buf, cp-buf);
len += cp-buf;
return len;
block_err:
return -1;
}
cram_codec *cram_byte_array_stop_encode_init(cram_stats *st,
enum cram_encoding codec,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
cram_codec *c;
c = malloc(sizeof(*c));
if (!c)
return NULL;
c->codec = E_BYTE_ARRAY_STOP;
c->free = cram_byte_array_stop_encode_free;
c->encode = cram_byte_array_stop_encode;
c->store = cram_byte_array_stop_encode_store;
c->flush = NULL;
c->u.e_byte_array_stop.stop = ((int *)dat)[0];
c->u.e_byte_array_stop.content_id = ((int *)dat)[1];
return c;
}
/*
* ---------------------------------------------------------------------------
*/
const char *cram_encoding2str(enum cram_encoding t) {
switch (t) {
case E_NULL: return "NULL";
case E_EXTERNAL: return "EXTERNAL";
case E_GOLOMB: return "GOLOMB";
case E_HUFFMAN: return "HUFFMAN";
case E_BYTE_ARRAY_LEN: return "BYTE_ARRAY_LEN";
case E_BYTE_ARRAY_STOP: return "BYTE_ARRAY_STOP";
case E_BETA: return "BETA";
case E_SUBEXP: return "SUBEXP";
case E_GOLOMB_RICE: return "GOLOMB_RICE";
case E_GAMMA: return "GAMMA";
case E_VARINT_UNSIGNED: return "VARINT_UNSIGNED";
case E_VARINT_SIGNED: return "VARINT_SIGNED";
case E_CONST_BYTE: return "CONST_BYTE";
case E_CONST_INT: return "CONST_INT";
case E_NUM_CODECS:
default: return "?";
}
}
static cram_codec *(*decode_init[])(cram_block_compression_hdr *hdr,
char *data,
int size,
enum cram_encoding codec,
enum cram_external_type option,
int version, varint_vec *vv) = {
// CRAM 3.0 valid codecs
NULL, // null codec
cram_external_decode_init,
NULL, // golomb
cram_huffman_decode_init,
cram_byte_array_len_decode_init,
cram_byte_array_stop_decode_init,
cram_beta_decode_init,
cram_subexp_decode_init,
NULL, // golomb rice
cram_gamma_decode_init,
// Gap between CRAM 3 and CRAM 4; 9 to 39 inclusive
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, // was xbyte
cram_varint_decode_init, // varint unsigned
cram_varint_decode_init, // varint signed
cram_const_decode_init, // const byte
cram_const_decode_init, // const int
// Gap to CRAM 4 transfomrations; 45 to 49 inclusive
NULL, NULL, NULL, NULL, NULL,
NULL, // xhuffman
cram_xpack_decode_init,
cram_xrle_decode_init,
cram_xdelta_decode_init,
};
cram_codec *cram_decoder_init(cram_block_compression_hdr *hdr,
enum cram_encoding codec,
char *data, int size,
enum cram_external_type option,
int version, varint_vec *vv) {
if (codec >= E_NULL && codec < E_NUM_CODECS && decode_init[codec]) {
cram_codec *r = decode_init[codec](hdr, data, size, codec,
option, version, vv);
if (r) {
r->vv = vv;
r->codec_id = hdr->ncodecs++;
}
return r;
} else {
hts_log_error("Unimplemented codec of type %s", cram_encoding2str(codec));
return NULL;
}
}
static cram_codec *(*encode_init[])(cram_stats *stx,
enum cram_encoding codec,
enum cram_external_type option,
void *opt,
int version, varint_vec *vv) = {
// CRAM 3.0 valid codecs
NULL, // null codec
cram_external_encode_init, // int/bytes in cram 3, byte only in cram 4
NULL, // golomb
cram_huffman_encode_init,
cram_byte_array_len_encode_init,
cram_byte_array_stop_encode_init,
cram_beta_encode_init,
NULL, // subexponential (we support decode only)
NULL, // golomb rice
NULL, // gamma (we support decode only)
// Gap between CRAM 3 and CRAM 4; 9 to 39 inclusive
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, // was xbyte
cram_varint_encode_init, // varint unsigned
cram_varint_encode_init, // varint signed
cram_const_encode_init, // const byte
cram_const_encode_init, // const int
// Gap to CRAM 4 transfomrations; 45 to 49 inclusive
NULL, NULL, NULL, NULL, NULL,
NULL, // xhuffman
cram_xpack_encode_init,
cram_xrle_encode_init,
cram_xdelta_encode_init,
};
cram_codec *cram_encoder_init(enum cram_encoding codec,
cram_stats *st,
enum cram_external_type option,
void *dat,
int version, varint_vec *vv) {
if (st && !st->nvals)
return NULL;
// cram_stats_encoding assumes integer data, but if option
// is E_BYTE then tweak the requested encoding. This ought
// to be fixed in cram_stats_encoding instead.
if (option == E_BYTE || option == E_BYTE_ARRAY ||
option == E_BYTE_ARRAY_BLOCK) {
if (codec == E_VARINT_SIGNED || codec == E_VARINT_UNSIGNED)
codec = E_EXTERNAL;
else if (codec == E_CONST_INT)
codec = E_CONST_BYTE;
}
if (encode_init[codec]) {
cram_codec *r;
if ((r = encode_init[codec](st, codec, option, dat, version, vv)))
r->out = NULL;
if (!r) {
hts_log_error("Unable to initialise codec of type %s", cram_encoding2str(codec));
return NULL;
}
r->vv = vv;
return r;
} else {
hts_log_error("Unimplemented codec of type %s", cram_encoding2str(codec));
abort();
}
}
/*
* Returns the content_id used by this codec, also in id2 if byte_array_len.
* Returns -1 for the CORE block and -2 for unneeded.
* id2 is only filled out for BYTE_ARRAY_LEN which uses 2 codecs.
*/
int cram_codec_to_id(cram_codec *c, int *id2) {
int bnum1, bnum2 = -2;
switch (c->codec) {
case E_CONST_INT:
case E_CONST_BYTE:
bnum1 = -2; // no blocks used
case E_HUFFMAN:
bnum1 = c->u.huffman.ncodes == 1 ? -2 : -1;
break;
case E_GOLOMB:
case E_BETA:
case E_SUBEXP:
case E_GOLOMB_RICE:
case E_GAMMA:
// CORE block
bnum1 = -1;
break;
case E_EXTERNAL:
case E_VARINT_UNSIGNED:
case E_VARINT_SIGNED:
bnum1 = c->u.external.content_id;
break;
case E_BYTE_ARRAY_LEN:
bnum1 = cram_codec_to_id(c->u.byte_array_len.len_codec, NULL);
bnum2 = cram_codec_to_id(c->u.byte_array_len.val_codec, NULL);
break;
case E_BYTE_ARRAY_STOP:
bnum1 = c->u.byte_array_stop.content_id;
break;
case E_NULL:
bnum1 = -2;
break;
default:
hts_log_error("Unknown codec type %d", c->codec);
bnum1 = -1;
}
if (id2)
*id2 = bnum2;
return bnum1;
}
/*
* cram_codec structures are specialised for decoding or encoding.
* Unfortunately this makes turning a decoder into an encoder (such as
* when transcoding files) problematic.
*
* This function converts a cram decoder codec into an encoder version
* in-place (ie it modifiers the codec itself).
*
* Returns 0 on success;
* -1 on failure.
*/
int cram_codec_decoder2encoder(cram_fd *fd, cram_codec *c) {
int j;
switch (c->codec) {
case E_CONST_INT:
case E_CONST_BYTE:
// shares struct with decode
c->store = cram_const_encode_store;
break;
case E_EXTERNAL:
// shares struct with decode
c->free = cram_external_encode_free;
c->store = cram_external_encode_store;
if (c->decode == cram_external_decode_int)
c->encode = cram_external_encode_int;
else if (c->decode == cram_external_decode_long)
c->encode = cram_external_encode_long;
else if (c->decode == cram_external_decode_char)
c->encode = cram_external_encode_char;
else if (c->decode == cram_external_decode_block)
c->encode = cram_external_encode_char;
else
return -1;
break;
case E_VARINT_SIGNED:
case E_VARINT_UNSIGNED:
// shares struct with decode
c->free = cram_varint_encode_free;
c->store = cram_varint_encode_store;
if (c->decode == cram_varint_decode_int)
c->encode = cram_varint_encode_int;
else if (c->decode == cram_varint_decode_sint)
c->encode = cram_varint_encode_sint;
else if (c->decode == cram_varint_decode_long)
c->encode = cram_varint_encode_long;
else if (c->decode == cram_varint_decode_slong)
c->encode = cram_varint_encode_slong;
else
return -1;
break;
case E_HUFFMAN: {
// New structure, so switch.
// FIXME: we huffman and e_huffman structs amended, we could
// unify this.
cram_codec *t = malloc(sizeof(*t));
if (!t) return -1;
t->vv = c->vv;
t->codec = E_HUFFMAN;
t->free = cram_huffman_encode_free;
t->store = cram_huffman_encode_store;
t->u.e_huffman.codes = c->u.huffman.codes;
t->u.e_huffman.nvals = c->u.huffman.ncodes;
t->u.e_huffman.option = c->u.huffman.option;
for (j = 0; j < t->u.e_huffman.nvals; j++) {
int32_t sym = t->u.e_huffman.codes[j].symbol;
if (sym >= -1 && sym < MAX_HUFF)
t->u.e_huffman.val2code[sym+1] = j;
}
if (c->decode == cram_huffman_decode_char0)
t->encode = cram_huffman_encode_char0;
else if (c->decode == cram_huffman_decode_char)
t->encode = cram_huffman_encode_char;
else if (c->decode == cram_huffman_decode_int0)
t->encode = cram_huffman_encode_int0;
else if (c->decode == cram_huffman_decode_int)
t->encode = cram_huffman_encode_int;
else if (c->decode == cram_huffman_decode_long0)
t->encode = cram_huffman_encode_long0;
else if (c->decode == cram_huffman_decode_long)
t->encode = cram_huffman_encode_long;
else {
free(t);
return -1;
}
*c = *t;
free(t);
break;
}
case E_BETA:
// shares struct with decode
c->free = cram_beta_encode_free;
c->store = cram_beta_encode_store;
if (c->decode == cram_beta_decode_int)
c->encode = cram_beta_encode_int;
else if (c->decode == cram_beta_decode_long)
c->encode = cram_beta_encode_long;
else if (c->decode == cram_beta_decode_char)
c->encode = cram_beta_encode_char;
else
return -1;
break;
case E_XPACK: {
// shares struct with decode
cram_codec t = *c;
t.free = cram_xpack_encode_free;
t.store = cram_xpack_encode_store;
if (t.decode == cram_xpack_decode_long)
t.encode = cram_xpack_encode_long;
else if (t.decode == cram_xpack_decode_int)
t.encode = cram_xpack_encode_int;
else if (t.decode == cram_xpack_decode_char)
t.encode = cram_xpack_encode_char;
else
return -1;
t.u.e_xpack.sub_codec = t.u.xpack.sub_codec;
if (cram_codec_decoder2encoder(fd, t.u.e_xpack.sub_codec) == -1)
return -1;
*c = t;
break;
}
case E_BYTE_ARRAY_LEN: {
cram_codec *t = malloc(sizeof(*t));
if (!t) return -1;
t->vv = c->vv;
t->codec = E_BYTE_ARRAY_LEN;
t->free = cram_byte_array_len_encode_free;
t->store = cram_byte_array_len_encode_store;
t->encode = cram_byte_array_len_encode;
t->u.e_byte_array_len.len_codec = c->u.byte_array_len.len_codec;
t->u.e_byte_array_len.val_codec = c->u.byte_array_len.val_codec;
if (cram_codec_decoder2encoder(fd, t->u.e_byte_array_len.len_codec) == -1 ||
cram_codec_decoder2encoder(fd, t->u.e_byte_array_len.val_codec) == -1) {
t->free(t);
return -1;
}
// {len,val}_{encoding,dat} are undefined, but unused.
// Leaving them unset here means we can test that assertion.
*c = *t;
free(t);
break;
}
case E_BYTE_ARRAY_STOP:
// shares struct with decode
c->free = cram_byte_array_stop_encode_free;
c->store = cram_byte_array_stop_encode_store;
c->encode = cram_byte_array_stop_encode;
break;
default:
return -1;
}
return 0;
}
|