File size: 152,430 Bytes
1f99b4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 |
# Copyright (c) 2016-present, Gregory Szorc
# All rights reserved.
#
# This software may be modified and distributed under the terms
# of the BSD license. See the LICENSE file for details.
"""Python interface to the Zstandard (zstd) compression library."""
from __future__ import absolute_import, unicode_literals
# This should match what the C extension exports.
__all__ = [
"BufferSegment",
"BufferSegments",
"BufferWithSegments",
"BufferWithSegmentsCollection",
"ZstdCompressionChunker",
"ZstdCompressionDict",
"ZstdCompressionObj",
"ZstdCompressionParameters",
"ZstdCompressionReader",
"ZstdCompressionWriter",
"ZstdCompressor",
"ZstdDecompressionObj",
"ZstdDecompressionReader",
"ZstdDecompressionWriter",
"ZstdDecompressor",
"ZstdError",
"FrameParameters",
"backend_features",
"estimate_decompression_context_size",
"frame_content_size",
"frame_header_size",
"get_frame_parameters",
"train_dictionary",
# Constants.
"FLUSH_BLOCK",
"FLUSH_FRAME",
"COMPRESSOBJ_FLUSH_FINISH",
"COMPRESSOBJ_FLUSH_BLOCK",
"ZSTD_VERSION",
"FRAME_HEADER",
"CONTENTSIZE_UNKNOWN",
"CONTENTSIZE_ERROR",
"MAX_COMPRESSION_LEVEL",
"COMPRESSION_RECOMMENDED_INPUT_SIZE",
"COMPRESSION_RECOMMENDED_OUTPUT_SIZE",
"DECOMPRESSION_RECOMMENDED_INPUT_SIZE",
"DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE",
"MAGIC_NUMBER",
"BLOCKSIZELOG_MAX",
"BLOCKSIZE_MAX",
"WINDOWLOG_MIN",
"WINDOWLOG_MAX",
"CHAINLOG_MIN",
"CHAINLOG_MAX",
"HASHLOG_MIN",
"HASHLOG_MAX",
"MINMATCH_MIN",
"MINMATCH_MAX",
"SEARCHLOG_MIN",
"SEARCHLOG_MAX",
"SEARCHLENGTH_MIN",
"SEARCHLENGTH_MAX",
"TARGETLENGTH_MIN",
"TARGETLENGTH_MAX",
"LDM_MINMATCH_MIN",
"LDM_MINMATCH_MAX",
"LDM_BUCKETSIZELOG_MAX",
"STRATEGY_FAST",
"STRATEGY_DFAST",
"STRATEGY_GREEDY",
"STRATEGY_LAZY",
"STRATEGY_LAZY2",
"STRATEGY_BTLAZY2",
"STRATEGY_BTOPT",
"STRATEGY_BTULTRA",
"STRATEGY_BTULTRA2",
"DICT_TYPE_AUTO",
"DICT_TYPE_RAWCONTENT",
"DICT_TYPE_FULLDICT",
"FORMAT_ZSTD1",
"FORMAT_ZSTD1_MAGICLESS",
]
import io
import os
from ._cffi import ( # type: ignore
ffi,
lib,
)
backend_features = set() # type: ignore
COMPRESSION_RECOMMENDED_INPUT_SIZE = lib.ZSTD_CStreamInSize()
COMPRESSION_RECOMMENDED_OUTPUT_SIZE = lib.ZSTD_CStreamOutSize()
DECOMPRESSION_RECOMMENDED_INPUT_SIZE = lib.ZSTD_DStreamInSize()
DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE = lib.ZSTD_DStreamOutSize()
new_nonzero = ffi.new_allocator(should_clear_after_alloc=False)
MAX_COMPRESSION_LEVEL = lib.ZSTD_maxCLevel()
MAGIC_NUMBER = lib.ZSTD_MAGICNUMBER
FRAME_HEADER = b"\x28\xb5\x2f\xfd"
CONTENTSIZE_UNKNOWN = lib.ZSTD_CONTENTSIZE_UNKNOWN
CONTENTSIZE_ERROR = lib.ZSTD_CONTENTSIZE_ERROR
ZSTD_VERSION = (
lib.ZSTD_VERSION_MAJOR,
lib.ZSTD_VERSION_MINOR,
lib.ZSTD_VERSION_RELEASE,
)
BLOCKSIZELOG_MAX = lib.ZSTD_BLOCKSIZELOG_MAX
BLOCKSIZE_MAX = lib.ZSTD_BLOCKSIZE_MAX
WINDOWLOG_MIN = lib.ZSTD_WINDOWLOG_MIN
WINDOWLOG_MAX = lib.ZSTD_WINDOWLOG_MAX
CHAINLOG_MIN = lib.ZSTD_CHAINLOG_MIN
CHAINLOG_MAX = lib.ZSTD_CHAINLOG_MAX
HASHLOG_MIN = lib.ZSTD_HASHLOG_MIN
HASHLOG_MAX = lib.ZSTD_HASHLOG_MAX
MINMATCH_MIN = lib.ZSTD_MINMATCH_MIN
MINMATCH_MAX = lib.ZSTD_MINMATCH_MAX
SEARCHLOG_MIN = lib.ZSTD_SEARCHLOG_MIN
SEARCHLOG_MAX = lib.ZSTD_SEARCHLOG_MAX
SEARCHLENGTH_MIN = lib.ZSTD_MINMATCH_MIN
SEARCHLENGTH_MAX = lib.ZSTD_MINMATCH_MAX
TARGETLENGTH_MIN = lib.ZSTD_TARGETLENGTH_MIN
TARGETLENGTH_MAX = lib.ZSTD_TARGETLENGTH_MAX
LDM_MINMATCH_MIN = lib.ZSTD_LDM_MINMATCH_MIN
LDM_MINMATCH_MAX = lib.ZSTD_LDM_MINMATCH_MAX
LDM_BUCKETSIZELOG_MAX = lib.ZSTD_LDM_BUCKETSIZELOG_MAX
STRATEGY_FAST = lib.ZSTD_fast
STRATEGY_DFAST = lib.ZSTD_dfast
STRATEGY_GREEDY = lib.ZSTD_greedy
STRATEGY_LAZY = lib.ZSTD_lazy
STRATEGY_LAZY2 = lib.ZSTD_lazy2
STRATEGY_BTLAZY2 = lib.ZSTD_btlazy2
STRATEGY_BTOPT = lib.ZSTD_btopt
STRATEGY_BTULTRA = lib.ZSTD_btultra
STRATEGY_BTULTRA2 = lib.ZSTD_btultra2
DICT_TYPE_AUTO = lib.ZSTD_dct_auto
DICT_TYPE_RAWCONTENT = lib.ZSTD_dct_rawContent
DICT_TYPE_FULLDICT = lib.ZSTD_dct_fullDict
FORMAT_ZSTD1 = lib.ZSTD_f_zstd1
FORMAT_ZSTD1_MAGICLESS = lib.ZSTD_f_zstd1_magicless
FLUSH_BLOCK = 0
FLUSH_FRAME = 1
COMPRESSOBJ_FLUSH_FINISH = 0
COMPRESSOBJ_FLUSH_BLOCK = 1
def _cpu_count():
# os.cpu_count() was introducd in Python 3.4.
try:
return os.cpu_count() or 0
except AttributeError:
pass
# Linux.
try:
return os.sysconf("SC_NPROCESSORS_ONLN")
except (AttributeError, ValueError):
pass
# TODO implement on other platforms.
return 0
class BufferSegment:
"""Represents a segment within a ``BufferWithSegments``.
This type is essentially a reference to N bytes within a
``BufferWithSegments``.
The object conforms to the buffer protocol.
"""
@property
def offset(self):
"""The byte offset of this segment within its parent buffer."""
raise NotImplementedError()
def __len__(self):
"""Obtain the length of the segment, in bytes."""
raise NotImplementedError()
def tobytes(self):
"""Obtain bytes copy of this segment."""
raise NotImplementedError()
class BufferSegments:
"""Represents an array of ``(offset, length)`` integers.
This type is effectively an index used by :py:class:`BufferWithSegments`.
The array members are 64-bit unsigned integers using host/native bit order.
Instances conform to the buffer protocol.
"""
class BufferWithSegments:
"""A memory buffer containing N discrete items of known lengths.
This type is essentially a fixed size memory address and an array
of 2-tuples of ``(offset, length)`` 64-bit unsigned native-endian
integers defining the byte offset and length of each segment within
the buffer.
Instances behave like containers.
Instances also conform to the buffer protocol. So a reference to the
backing bytes can be obtained via ``memoryview(o)``. A *copy* of the
backing bytes can be obtained via ``.tobytes()``.
This type exists to facilitate operations against N>1 items without
the overhead of Python object creation and management. Used with
APIs like :py:meth:`ZstdDecompressor.multi_decompress_to_buffer`, it
is possible to decompress many objects in parallel without the GIL
held, leading to even better performance.
"""
@property
def size(self):
"""Total sizein bytes of the backing buffer."""
raise NotImplementedError()
def __len__(self):
raise NotImplementedError()
def __getitem__(self, i):
"""Obtains a segment within the buffer.
The returned object references memory within this buffer.
:param i:
Integer index of segment to retrieve.
:return:
:py:class:`BufferSegment`
"""
raise NotImplementedError()
def segments(self):
"""Obtain the array of ``(offset, length)`` segments in the buffer.
:return:
:py:class:`BufferSegments`
"""
raise NotImplementedError()
def tobytes(self):
"""Obtain bytes copy of this instance."""
raise NotImplementedError()
class BufferWithSegmentsCollection:
"""A virtual spanning view over multiple BufferWithSegments.
Instances are constructed from 1 or more :py:class:`BufferWithSegments`
instances. The resulting object behaves like an ordered sequence whose
members are the segments within each ``BufferWithSegments``.
If the object is composed of 2 ``BufferWithSegments`` instances with the
first having 2 segments and the second have 3 segments, then ``b[0]``
and ``b[1]`` access segments in the first object and ``b[2]``, ``b[3]``,
and ``b[4]`` access segments from the second.
"""
def __len__(self):
"""The number of segments within all ``BufferWithSegments``."""
raise NotImplementedError()
def __getitem__(self, i):
"""Obtain the ``BufferSegment`` at an offset."""
raise NotImplementedError()
class ZstdError(Exception):
pass
def _zstd_error(zresult):
# Resolves to bytes on Python 2 and 3. We use the string for formatting
# into error messages, which will be literal unicode. So convert it to
# unicode.
return ffi.string(lib.ZSTD_getErrorName(zresult)).decode("utf-8")
def _make_cctx_params(params):
res = lib.ZSTD_createCCtxParams()
if res == ffi.NULL:
raise MemoryError()
res = ffi.gc(res, lib.ZSTD_freeCCtxParams)
attrs = [
(lib.ZSTD_c_format, params.format),
(lib.ZSTD_c_compressionLevel, params.compression_level),
(lib.ZSTD_c_windowLog, params.window_log),
(lib.ZSTD_c_hashLog, params.hash_log),
(lib.ZSTD_c_chainLog, params.chain_log),
(lib.ZSTD_c_searchLog, params.search_log),
(lib.ZSTD_c_minMatch, params.min_match),
(lib.ZSTD_c_targetLength, params.target_length),
(lib.ZSTD_c_strategy, params.strategy),
(lib.ZSTD_c_contentSizeFlag, params.write_content_size),
(lib.ZSTD_c_checksumFlag, params.write_checksum),
(lib.ZSTD_c_dictIDFlag, params.write_dict_id),
(lib.ZSTD_c_nbWorkers, params.threads),
(lib.ZSTD_c_jobSize, params.job_size),
(lib.ZSTD_c_overlapLog, params.overlap_log),
(lib.ZSTD_c_forceMaxWindow, params.force_max_window),
(lib.ZSTD_c_enableLongDistanceMatching, params.enable_ldm),
(lib.ZSTD_c_ldmHashLog, params.ldm_hash_log),
(lib.ZSTD_c_ldmMinMatch, params.ldm_min_match),
(lib.ZSTD_c_ldmBucketSizeLog, params.ldm_bucket_size_log),
(lib.ZSTD_c_ldmHashRateLog, params.ldm_hash_rate_log),
]
for param, value in attrs:
_set_compression_parameter(res, param, value)
return res
class ZstdCompressionParameters(object):
"""Low-level zstd compression parameters.
This type represents a collection of parameters to control how zstd
compression is performed.
Instances can be constructed from raw parameters or derived from a
base set of defaults specified from a compression level (recommended)
via :py:meth:`ZstdCompressionParameters.from_level`.
>>> # Derive compression settings for compression level 7.
>>> params = zstandard.ZstdCompressionParameters.from_level(7)
>>> # With an input size of 1MB
>>> params = zstandard.ZstdCompressionParameters.from_level(7, source_size=1048576)
Using ``from_level()``, it is also possible to override individual compression
parameters or to define additional settings that aren't automatically derived.
e.g.:
>>> params = zstandard.ZstdCompressionParameters.from_level(4, window_log=10)
>>> params = zstandard.ZstdCompressionParameters.from_level(5, threads=4)
Or you can define low-level compression settings directly:
>>> params = zstandard.ZstdCompressionParameters(window_log=12, enable_ldm=True)
Once a ``ZstdCompressionParameters`` instance is obtained, it can be used to
configure a compressor:
>>> cctx = zstandard.ZstdCompressor(compression_params=params)
Some of these are very low-level settings. It may help to consult the official
zstandard documentation for their behavior. Look for the ``ZSTD_p_*`` constants
in ``zstd.h`` (https://github.com/facebook/zstd/blob/dev/lib/zstd.h).
"""
@staticmethod
def from_level(level, source_size=0, dict_size=0, **kwargs):
"""Create compression parameters from a compression level.
:param level:
Integer compression level.
:param source_size:
Integer size in bytes of source to be compressed.
:param dict_size:
Integer size in bytes of compression dictionary to use.
:return:
:py:class:`ZstdCompressionParameters`
"""
params = lib.ZSTD_getCParams(level, source_size, dict_size)
args = {
"window_log": "windowLog",
"chain_log": "chainLog",
"hash_log": "hashLog",
"search_log": "searchLog",
"min_match": "minMatch",
"target_length": "targetLength",
"strategy": "strategy",
}
for arg, attr in args.items():
if arg not in kwargs:
kwargs[arg] = getattr(params, attr)
return ZstdCompressionParameters(**kwargs)
def __init__(
self,
format=0,
compression_level=0,
window_log=0,
hash_log=0,
chain_log=0,
search_log=0,
min_match=0,
target_length=0,
strategy=-1,
write_content_size=1,
write_checksum=0,
write_dict_id=0,
job_size=0,
overlap_log=-1,
force_max_window=0,
enable_ldm=0,
ldm_hash_log=0,
ldm_min_match=0,
ldm_bucket_size_log=0,
ldm_hash_rate_log=-1,
threads=0,
):
params = lib.ZSTD_createCCtxParams()
if params == ffi.NULL:
raise MemoryError()
params = ffi.gc(params, lib.ZSTD_freeCCtxParams)
self._params = params
if threads < 0:
threads = _cpu_count()
# We need to set ZSTD_c_nbWorkers before ZSTD_c_jobSize and ZSTD_c_overlapLog
# because setting ZSTD_c_nbWorkers resets the other parameters.
_set_compression_parameter(params, lib.ZSTD_c_nbWorkers, threads)
_set_compression_parameter(params, lib.ZSTD_c_format, format)
_set_compression_parameter(
params, lib.ZSTD_c_compressionLevel, compression_level
)
_set_compression_parameter(params, lib.ZSTD_c_windowLog, window_log)
_set_compression_parameter(params, lib.ZSTD_c_hashLog, hash_log)
_set_compression_parameter(params, lib.ZSTD_c_chainLog, chain_log)
_set_compression_parameter(params, lib.ZSTD_c_searchLog, search_log)
_set_compression_parameter(params, lib.ZSTD_c_minMatch, min_match)
_set_compression_parameter(
params, lib.ZSTD_c_targetLength, target_length
)
if strategy == -1:
strategy = 0
_set_compression_parameter(params, lib.ZSTD_c_strategy, strategy)
_set_compression_parameter(
params, lib.ZSTD_c_contentSizeFlag, write_content_size
)
_set_compression_parameter(
params, lib.ZSTD_c_checksumFlag, write_checksum
)
_set_compression_parameter(params, lib.ZSTD_c_dictIDFlag, write_dict_id)
_set_compression_parameter(params, lib.ZSTD_c_jobSize, job_size)
if overlap_log == -1:
overlap_log = 0
_set_compression_parameter(params, lib.ZSTD_c_overlapLog, overlap_log)
_set_compression_parameter(
params, lib.ZSTD_c_forceMaxWindow, force_max_window
)
_set_compression_parameter(
params, lib.ZSTD_c_enableLongDistanceMatching, enable_ldm
)
_set_compression_parameter(params, lib.ZSTD_c_ldmHashLog, ldm_hash_log)
_set_compression_parameter(
params, lib.ZSTD_c_ldmMinMatch, ldm_min_match
)
_set_compression_parameter(
params, lib.ZSTD_c_ldmBucketSizeLog, ldm_bucket_size_log
)
if ldm_hash_rate_log == -1:
ldm_hash_rate_log = 0
_set_compression_parameter(
params, lib.ZSTD_c_ldmHashRateLog, ldm_hash_rate_log
)
@property
def format(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_format)
@property
def compression_level(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_compressionLevel
)
@property
def window_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_windowLog)
@property
def hash_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_hashLog)
@property
def chain_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_chainLog)
@property
def search_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_searchLog)
@property
def min_match(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_minMatch)
@property
def target_length(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_targetLength)
@property
def strategy(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_strategy)
@property
def write_content_size(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_contentSizeFlag
)
@property
def write_checksum(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_checksumFlag)
@property
def write_dict_id(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_dictIDFlag)
@property
def job_size(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_jobSize)
@property
def overlap_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_overlapLog)
@property
def force_max_window(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_forceMaxWindow
)
@property
def enable_ldm(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_enableLongDistanceMatching
)
@property
def ldm_hash_log(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_ldmHashLog)
@property
def ldm_min_match(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_ldmMinMatch)
@property
def ldm_bucket_size_log(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_ldmBucketSizeLog
)
@property
def ldm_hash_rate_log(self):
return _get_compression_parameter(
self._params, lib.ZSTD_c_ldmHashRateLog
)
@property
def threads(self):
return _get_compression_parameter(self._params, lib.ZSTD_c_nbWorkers)
def estimated_compression_context_size(self):
"""Estimated size in bytes needed to compress with these parameters."""
return lib.ZSTD_estimateCCtxSize_usingCCtxParams(self._params)
def estimate_decompression_context_size():
"""Estimate the memory size requirements for a decompressor instance.
:return:
Integer number of bytes.
"""
return lib.ZSTD_estimateDCtxSize()
def _set_compression_parameter(params, param, value):
zresult = lib.ZSTD_CCtxParams_setParameter(params, param, value)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"unable to set compression context parameter: %s"
% _zstd_error(zresult)
)
def _get_compression_parameter(params, param):
result = ffi.new("int *")
zresult = lib.ZSTD_CCtxParams_getParameter(params, param, result)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"unable to get compression context parameter: %s"
% _zstd_error(zresult)
)
return result[0]
class ZstdCompressionWriter(object):
"""Writable compressing stream wrapper.
``ZstdCompressionWriter`` is a write-only stream interface for writing
compressed data to another stream.
This type conforms to the ``io.RawIOBase`` interface and should be usable
by any type that operates against a *file-object* (``typing.BinaryIO``
in Python type hinting speak). Only methods that involve writing will do
useful things.
As data is written to this stream (e.g. via ``write()``), that data
is sent to the compressor. As compressed data becomes available from
the compressor, it is sent to the underlying stream by calling its
``write()`` method.
Both ``write()`` and ``flush()`` return the number of bytes written to the
object's ``write()``. In many cases, small inputs do not accumulate enough
data to cause a write and ``write()`` will return ``0``.
Calling ``close()`` will mark the stream as closed and subsequent I/O
operations will raise ``ValueError`` (per the documented behavior of
``io.RawIOBase``). ``close()`` will also call ``close()`` on the underlying
stream if such a method exists and the instance was constructed with
``closefd=True``
Instances are obtained by calling :py:meth:`ZstdCompressor.stream_writer`.
Typically usage is as follows:
>>> cctx = zstandard.ZstdCompressor(level=10)
>>> compressor = cctx.stream_writer(fh)
>>> compressor.write(b"chunk 0\\n")
>>> compressor.write(b"chunk 1\\n")
>>> compressor.flush()
>>> # Receiver will be able to decode ``chunk 0\\nchunk 1\\n`` at this point.
>>> # Receiver is also expecting more data in the zstd *frame*.
>>>
>>> compressor.write(b"chunk 2\\n")
>>> compressor.flush(zstandard.FLUSH_FRAME)
>>> # Receiver will be able to decode ``chunk 0\\nchunk 1\\nchunk 2``.
>>> # Receiver is expecting no more data, as the zstd frame is closed.
>>> # Any future calls to ``write()`` at this point will construct a new
>>> # zstd frame.
Instances can be used as context managers. Exiting the context manager is
the equivalent of calling ``close()``, which is equivalent to calling
``flush(zstandard.FLUSH_FRAME)``:
>>> cctx = zstandard.ZstdCompressor(level=10)
>>> with cctx.stream_writer(fh) as compressor:
... compressor.write(b'chunk 0')
... compressor.write(b'chunk 1')
... ...
.. important::
If ``flush(FLUSH_FRAME)`` is not called, emitted data doesn't
constitute a full zstd *frame* and consumers of this data may complain
about malformed input. It is recommended to use instances as a context
manager to ensure *frames* are properly finished.
If the size of the data being fed to this streaming compressor is known,
you can declare it before compression begins:
>>> cctx = zstandard.ZstdCompressor()
>>> with cctx.stream_writer(fh, size=data_len) as compressor:
... compressor.write(chunk0)
... compressor.write(chunk1)
... ...
Declaring the size of the source data allows compression parameters to
be tuned. And if ``write_content_size`` is used, it also results in the
content size being written into the frame header of the output data.
The size of chunks being ``write()`` to the destination can be specified:
>>> cctx = zstandard.ZstdCompressor()
>>> with cctx.stream_writer(fh, write_size=32768) as compressor:
... ...
To see how much memory is being used by the streaming compressor:
>>> cctx = zstandard.ZstdCompressor()
>>> with cctx.stream_writer(fh) as compressor:
... ...
... byte_size = compressor.memory_size()
Thte total number of bytes written so far are exposed via ``tell()``:
>>> cctx = zstandard.ZstdCompressor()
>>> with cctx.stream_writer(fh) as compressor:
... ...
... total_written = compressor.tell()
``stream_writer()`` accepts a ``write_return_read`` boolean argument to
control the return value of ``write()``. When ``False`` (the default),
``write()`` returns the number of bytes that were ``write()``'en to the
underlying object. When ``True``, ``write()`` returns the number of bytes
read from the input that were subsequently written to the compressor.
``True`` is the *proper* behavior for ``write()`` as specified by the
``io.RawIOBase`` interface and will become the default value in a future
release.
"""
def __init__(
self,
compressor,
writer,
source_size,
write_size,
write_return_read,
closefd=True,
):
self._compressor = compressor
self._writer = writer
self._write_size = write_size
self._write_return_read = bool(write_return_read)
self._closefd = bool(closefd)
self._entered = False
self._closing = False
self._closed = False
self._bytes_compressed = 0
self._dst_buffer = ffi.new("char[]", write_size)
self._out_buffer = ffi.new("ZSTD_outBuffer *")
self._out_buffer.dst = self._dst_buffer
self._out_buffer.size = len(self._dst_buffer)
self._out_buffer.pos = 0
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(compressor._cctx, source_size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
def __enter__(self):
if self._closed:
raise ValueError("stream is closed")
if self._entered:
raise ZstdError("cannot __enter__ multiple times")
self._entered = True
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self._entered = False
self.close()
self._compressor = None
return False
def __iter__(self):
raise io.UnsupportedOperation()
def __next__(self):
raise io.UnsupportedOperation()
def memory_size(self):
return lib.ZSTD_sizeof_CCtx(self._compressor._cctx)
def fileno(self):
f = getattr(self._writer, "fileno", None)
if f:
return f()
else:
raise OSError("fileno not available on underlying writer")
def close(self):
if self._closed:
return
try:
self._closing = True
self.flush(FLUSH_FRAME)
finally:
self._closing = False
self._closed = True
# Call close() on underlying stream as well.
f = getattr(self._writer, "close", None)
if self._closefd and f:
f()
@property
def closed(self):
return self._closed
def isatty(self):
return False
def readable(self):
return False
def readline(self, size=-1):
raise io.UnsupportedOperation()
def readlines(self, hint=-1):
raise io.UnsupportedOperation()
def seek(self, offset, whence=None):
raise io.UnsupportedOperation()
def seekable(self):
return False
def truncate(self, size=None):
raise io.UnsupportedOperation()
def writable(self):
return True
def writelines(self, lines):
raise NotImplementedError("writelines() is not yet implemented")
def read(self, size=-1):
raise io.UnsupportedOperation()
def readall(self):
raise io.UnsupportedOperation()
def readinto(self, b):
raise io.UnsupportedOperation()
def write(self, data):
"""Send data to the compressor and possibly to the inner stream."""
if self._closed:
raise ValueError("stream is closed")
total_write = 0
data_buffer = ffi.from_buffer(data)
in_buffer = ffi.new("ZSTD_inBuffer *")
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
out_buffer = self._out_buffer
out_buffer.pos = 0
while in_buffer.pos < in_buffer.size:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx,
out_buffer,
in_buffer,
lib.ZSTD_e_continue,
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
self._writer.write(
ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
)
total_write += out_buffer.pos
self._bytes_compressed += out_buffer.pos
out_buffer.pos = 0
if self._write_return_read:
return in_buffer.pos
else:
return total_write
def flush(self, flush_mode=FLUSH_BLOCK):
"""Evict data from compressor's internal state and write it to inner stream.
Calling this method may result in 0 or more ``write()`` calls to the
inner stream.
This method will also call ``flush()`` on the inner stream, if such a
method exists.
:param flush_mode:
How to flush the zstd compressor.
``zstandard.FLUSH_BLOCK`` will flush data already sent to the
compressor but not emitted to the inner stream. The stream is still
writable after calling this. This is the default behavior.
See documentation for other ``zstandard.FLUSH_*`` constants for more
flushing options.
:return:
Integer number of bytes written to the inner stream.
"""
if flush_mode == FLUSH_BLOCK:
flush = lib.ZSTD_e_flush
elif flush_mode == FLUSH_FRAME:
flush = lib.ZSTD_e_end
else:
raise ValueError("unknown flush_mode: %r" % flush_mode)
if self._closed:
raise ValueError("stream is closed")
total_write = 0
out_buffer = self._out_buffer
out_buffer.pos = 0
in_buffer = ffi.new("ZSTD_inBuffer *")
in_buffer.src = ffi.NULL
in_buffer.size = 0
in_buffer.pos = 0
while True:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, out_buffer, in_buffer, flush
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
self._writer.write(
ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
)
total_write += out_buffer.pos
self._bytes_compressed += out_buffer.pos
out_buffer.pos = 0
if not zresult:
break
f = getattr(self._writer, "flush", None)
if f and not self._closing:
f()
return total_write
def tell(self):
return self._bytes_compressed
class ZstdCompressionObj(object):
"""A compressor conforming to the API in Python's standard library.
This type implements an API similar to compression types in Python's
standard library such as ``zlib.compressobj`` and ``bz2.BZ2Compressor``.
This enables existing code targeting the standard library API to swap
in this type to achieve zstd compression.
.. important::
The design of this API is not ideal for optimal performance.
The reason performance is not optimal is because the API is limited to
returning a single buffer holding compressed data. When compressing
data, we don't know how much data will be emitted. So in order to
capture all this data in a single buffer, we need to perform buffer
reallocations and/or extra memory copies. This can add significant
overhead depending on the size or nature of the compressed data how
much your application calls this type.
If performance is critical, consider an API like
:py:meth:`ZstdCompressor.stream_reader`,
:py:meth:`ZstdCompressor.stream_writer`,
:py:meth:`ZstdCompressor.chunker`, or
:py:meth:`ZstdCompressor.read_to_iter`, which result in less overhead
managing buffers.
Instances are obtained by calling :py:meth:`ZstdCompressor.compressobj`.
Here is how this API should be used:
>>> cctx = zstandard.ZstdCompressor()
>>> cobj = cctx.compressobj()
>>> data = cobj.compress(b"raw input 0")
>>> data = cobj.compress(b"raw input 1")
>>> data = cobj.flush()
Or to flush blocks:
>>> cctx.zstandard.ZstdCompressor()
>>> cobj = cctx.compressobj()
>>> data = cobj.compress(b"chunk in first block")
>>> data = cobj.flush(zstandard.COMPRESSOBJ_FLUSH_BLOCK)
>>> data = cobj.compress(b"chunk in second block")
>>> data = cobj.flush()
For best performance results, keep input chunks under 256KB. This avoids
extra allocations for a large output object.
It is possible to declare the input size of the data that will be fed
into the compressor:
>>> cctx = zstandard.ZstdCompressor()
>>> cobj = cctx.compressobj(size=6)
>>> data = cobj.compress(b"foobar")
>>> data = cobj.flush()
"""
def compress(self, data):
"""Send data to the compressor.
This method receives bytes to feed to the compressor and returns
bytes constituting zstd compressed data.
The zstd compressor accumulates bytes and the returned bytes may be
substantially smaller or larger than the size of the input data on
any given call. The returned value may be the empty byte string
(``b""``).
:param data:
Data to write to the compressor.
:return:
Compressed data.
"""
if self._finished:
raise ZstdError("cannot call compress() after compressor finished")
data_buffer = ffi.from_buffer(data)
source = ffi.new("ZSTD_inBuffer *")
source.src = data_buffer
source.size = len(data_buffer)
source.pos = 0
chunks = []
while source.pos < len(data):
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, self._out, source, lib.ZSTD_e_continue
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if self._out.pos:
chunks.append(ffi.buffer(self._out.dst, self._out.pos)[:])
self._out.pos = 0
return b"".join(chunks)
def flush(self, flush_mode=COMPRESSOBJ_FLUSH_FINISH):
"""Emit data accumulated in the compressor that hasn't been outputted yet.
The ``flush_mode`` argument controls how to end the stream.
``zstandard.COMPRESSOBJ_FLUSH_FINISH`` (the default) ends the
compression stream and finishes a zstd frame. Once this type of flush
is performed, ``compress()`` and ``flush()`` can no longer be called.
This type of flush **must** be called to end the compression context. If
not called, the emitted data may be incomplete and may not be readable
by a decompressor.
``zstandard.COMPRESSOBJ_FLUSH_BLOCK`` will flush a zstd block. This
ensures that all data fed to this instance will have been omitted and
can be decoded by a decompressor. Flushes of this type can be performed
multiple times. The next call to ``compress()`` will begin a new zstd
block.
:param flush_mode:
How to flush the zstd compressor.
:return:
Compressed data.
"""
if flush_mode not in (
COMPRESSOBJ_FLUSH_FINISH,
COMPRESSOBJ_FLUSH_BLOCK,
):
raise ValueError("flush mode not recognized")
if self._finished:
raise ZstdError("compressor object already finished")
if flush_mode == COMPRESSOBJ_FLUSH_BLOCK:
z_flush_mode = lib.ZSTD_e_flush
elif flush_mode == COMPRESSOBJ_FLUSH_FINISH:
z_flush_mode = lib.ZSTD_e_end
self._finished = True
else:
raise ZstdError("unhandled flush mode")
assert self._out.pos == 0
in_buffer = ffi.new("ZSTD_inBuffer *")
in_buffer.src = ffi.NULL
in_buffer.size = 0
in_buffer.pos = 0
chunks = []
while True:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, self._out, in_buffer, z_flush_mode
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s" % _zstd_error(zresult)
)
if self._out.pos:
chunks.append(ffi.buffer(self._out.dst, self._out.pos)[:])
self._out.pos = 0
if not zresult:
break
return b"".join(chunks)
class ZstdCompressionChunker(object):
"""Compress data to uniformly sized chunks.
This type allows you to iteratively feed chunks of data into a compressor
and produce output chunks of uniform size.
``compress()``, ``flush()``, and ``finish()`` all return an iterator of
``bytes`` instances holding compressed data. The iterator may be empty.
Callers MUST iterate through all elements of the returned iterator before
performing another operation on the object or else the compressor's
internal state may become confused. This can result in an exception being
raised or malformed data being emitted.
All chunks emitted by ``compress()`` will have a length of the configured
chunk size.
``flush()`` and ``finish()`` may return a final chunk smaller than
the configured chunk size.
Instances are obtained by calling :py:meth:`ZstdCompressor.chunker`.
Here is how the API should be used:
>>> cctx = zstandard.ZstdCompressor()
>>> chunker = cctx.chunker(chunk_size=32768)
>>>
>>> with open(path, 'rb') as fh:
... while True:
... in_chunk = fh.read(32768)
... if not in_chunk:
... break
...
... for out_chunk in chunker.compress(in_chunk):
... # Do something with output chunk of size 32768.
...
... for out_chunk in chunker.finish():
... # Do something with output chunks that finalize the zstd frame.
This compressor type is often a better alternative to
:py:class:`ZstdCompressor.compressobj` because it has better performance
properties.
``compressobj()`` will emit output data as it is available. This results
in a *stream* of output chunks of varying sizes. The consistency of the
output chunk size with ``chunker()`` is more appropriate for many usages,
such as sending compressed data to a socket.
``compressobj()`` may also perform extra memory reallocations in order
to dynamically adjust the sizes of the output chunks. Since ``chunker()``
output chunks are all the same size (except for flushed or final chunks),
there is less memory allocation/copying overhead.
"""
def __init__(self, compressor, chunk_size):
self._compressor = compressor
self._out = ffi.new("ZSTD_outBuffer *")
self._dst_buffer = ffi.new("char[]", chunk_size)
self._out.dst = self._dst_buffer
self._out.size = chunk_size
self._out.pos = 0
self._in = ffi.new("ZSTD_inBuffer *")
self._in.src = ffi.NULL
self._in.size = 0
self._in.pos = 0
self._finished = False
def compress(self, data):
"""Feed new input data into the compressor.
:param data:
Data to feed to compressor.
:return:
Iterator of ``bytes`` representing chunks of compressed data.
"""
if self._finished:
raise ZstdError("cannot call compress() after compression finished")
if self._in.src != ffi.NULL:
raise ZstdError(
"cannot perform operation before consuming output "
"from previous operation"
)
data_buffer = ffi.from_buffer(data)
if not len(data_buffer):
return
self._in.src = data_buffer
self._in.size = len(data_buffer)
self._in.pos = 0
while self._in.pos < self._in.size:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, self._out, self._in, lib.ZSTD_e_continue
)
if self._in.pos == self._in.size:
self._in.src = ffi.NULL
self._in.size = 0
self._in.pos = 0
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if self._out.pos == self._out.size:
yield ffi.buffer(self._out.dst, self._out.pos)[:]
self._out.pos = 0
def flush(self):
"""Flushes all data currently in the compressor.
:return:
Iterator of ``bytes`` of compressed data.
"""
if self._finished:
raise ZstdError("cannot call flush() after compression finished")
if self._in.src != ffi.NULL:
raise ZstdError(
"cannot call flush() before consuming output from "
"previous operation"
)
while True:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, self._out, self._in, lib.ZSTD_e_flush
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if self._out.pos:
yield ffi.buffer(self._out.dst, self._out.pos)[:]
self._out.pos = 0
if not zresult:
return
def finish(self):
"""Signals the end of input data.
No new data can be compressed after this method is called.
This method will flush buffered data and finish the zstd frame.
:return:
Iterator of ``bytes`` of compressed data.
"""
if self._finished:
raise ZstdError("cannot call finish() after compression finished")
if self._in.src != ffi.NULL:
raise ZstdError(
"cannot call finish() before consuming output from "
"previous operation"
)
while True:
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, self._out, self._in, lib.ZSTD_e_end
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if self._out.pos:
yield ffi.buffer(self._out.dst, self._out.pos)[:]
self._out.pos = 0
if not zresult:
self._finished = True
return
class ZstdCompressionReader(object):
"""Readable compressing stream wrapper.
``ZstdCompressionReader`` is a read-only stream interface for obtaining
compressed data from a source.
This type conforms to the ``io.RawIOBase`` interface and should be usable
by any type that operates against a *file-object* (``typing.BinaryIO``
in Python type hinting speak).
Instances are neither writable nor seekable (even if the underlying
source is seekable). ``readline()`` and ``readlines()`` are not implemented
because they don't make sense for compressed data. ``tell()`` returns the
number of compressed bytes emitted so far.
Instances are obtained by calling :py:meth:`ZstdCompressor.stream_reader`.
In this example, we open a file for reading and then wrap that file
handle with a stream from which compressed data can be ``read()``.
>>> with open(path, 'rb') as fh:
... cctx = zstandard.ZstdCompressor()
... reader = cctx.stream_reader(fh)
... while True:
... chunk = reader.read(16384)
... if not chunk:
... break
...
... # Do something with compressed chunk.
Instances can also be used as context managers:
>>> with open(path, 'rb') as fh:
... cctx = zstandard.ZstdCompressor()
... with cctx.stream_reader(fh) as reader:
... while True:
... chunk = reader.read(16384)
... if not chunk:
... break
...
... # Do something with compressed chunk.
When the context manager exits or ``close()`` is called, the stream is
closed, underlying resources are released, and future operations against
the compression stream will fail.
``stream_reader()`` accepts a ``size`` argument specifying how large the
input stream is. This is used to adjust compression parameters so they are
tailored to the source size. e.g.
>>> with open(path, 'rb') as fh:
... cctx = zstandard.ZstdCompressor()
... with cctx.stream_reader(fh, size=os.stat(path).st_size) as reader:
... ...
If the ``source`` is a stream, you can specify how large ``read()``
requests to that stream should be via the ``read_size`` argument.
It defaults to ``zstandard.COMPRESSION_RECOMMENDED_INPUT_SIZE``. e.g.
>>> with open(path, 'rb') as fh:
... cctx = zstandard.ZstdCompressor()
... # Will perform fh.read(8192) when obtaining data to feed into the
... # compressor.
... with cctx.stream_reader(fh, read_size=8192) as reader:
... ...
"""
def __init__(self, compressor, source, read_size, closefd=True):
self._compressor = compressor
self._source = source
self._read_size = read_size
self._closefd = closefd
self._entered = False
self._closed = False
self._bytes_compressed = 0
self._finished_input = False
self._finished_output = False
self._in_buffer = ffi.new("ZSTD_inBuffer *")
# Holds a ref so backing bytes in self._in_buffer stay alive.
self._source_buffer = None
def __enter__(self):
if self._entered:
raise ValueError("cannot __enter__ multiple times")
if self._closed:
raise ValueError("stream is closed")
self._entered = True
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self._entered = False
self._compressor = None
self.close()
self._source = None
return False
def readable(self):
return True
def writable(self):
return False
def seekable(self):
return False
def readline(self):
raise io.UnsupportedOperation()
def readlines(self):
raise io.UnsupportedOperation()
def write(self, data):
raise OSError("stream is not writable")
def writelines(self, ignored):
raise OSError("stream is not writable")
def isatty(self):
return False
def flush(self):
return None
def close(self):
if self._closed:
return
self._closed = True
f = getattr(self._source, "close", None)
if self._closefd and f:
f()
@property
def closed(self):
return self._closed
def tell(self):
return self._bytes_compressed
def readall(self):
chunks = []
while True:
chunk = self.read(1048576)
if not chunk:
break
chunks.append(chunk)
return b"".join(chunks)
def __iter__(self):
raise io.UnsupportedOperation()
def __next__(self):
raise io.UnsupportedOperation()
next = __next__
def _read_input(self):
if self._finished_input:
return
if hasattr(self._source, "read"):
data = self._source.read(self._read_size)
if not data:
self._finished_input = True
return
self._source_buffer = ffi.from_buffer(data)
self._in_buffer.src = self._source_buffer
self._in_buffer.size = len(self._source_buffer)
self._in_buffer.pos = 0
else:
self._source_buffer = ffi.from_buffer(self._source)
self._in_buffer.src = self._source_buffer
self._in_buffer.size = len(self._source_buffer)
self._in_buffer.pos = 0
def _compress_into_buffer(self, out_buffer):
if self._in_buffer.pos >= self._in_buffer.size:
return
old_pos = out_buffer.pos
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx,
out_buffer,
self._in_buffer,
lib.ZSTD_e_continue,
)
self._bytes_compressed += out_buffer.pos - old_pos
if self._in_buffer.pos == self._in_buffer.size:
self._in_buffer.src = ffi.NULL
self._in_buffer.pos = 0
self._in_buffer.size = 0
self._source_buffer = None
if not hasattr(self._source, "read"):
self._finished_input = True
if lib.ZSTD_isError(zresult):
raise ZstdError("zstd compress error: %s", _zstd_error(zresult))
return out_buffer.pos and out_buffer.pos == out_buffer.size
def read(self, size=-1):
if self._closed:
raise ValueError("stream is closed")
if size < -1:
raise ValueError("cannot read negative amounts less than -1")
if size == -1:
return self.readall()
if self._finished_output or size == 0:
return b""
# Need a dedicated ref to dest buffer otherwise it gets collected.
dst_buffer = ffi.new("char[]", size)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dst_buffer
out_buffer.size = size
out_buffer.pos = 0
if self._compress_into_buffer(out_buffer):
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
while not self._finished_input:
self._read_input()
if self._compress_into_buffer(out_buffer):
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
# EOF
old_pos = out_buffer.pos
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, out_buffer, self._in_buffer, lib.ZSTD_e_end
)
self._bytes_compressed += out_buffer.pos - old_pos
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s", _zstd_error(zresult)
)
if zresult == 0:
self._finished_output = True
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
def read1(self, size=-1):
if self._closed:
raise ValueError("stream is closed")
if size < -1:
raise ValueError("cannot read negative amounts less than -1")
if self._finished_output or size == 0:
return b""
# -1 returns arbitrary number of bytes.
if size == -1:
size = COMPRESSION_RECOMMENDED_OUTPUT_SIZE
dst_buffer = ffi.new("char[]", size)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dst_buffer
out_buffer.size = size
out_buffer.pos = 0
# read1() dictates that we can perform at most 1 call to the
# underlying stream to get input. However, we can't satisfy this
# restriction with compression because not all input generates output.
# It is possible to perform a block flush in order to ensure output.
# But this may not be desirable behavior. So we allow multiple read()
# to the underlying stream. But unlike read(), we stop once we have
# any output.
self._compress_into_buffer(out_buffer)
if out_buffer.pos:
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
while not self._finished_input:
self._read_input()
# If we've filled the output buffer, return immediately.
if self._compress_into_buffer(out_buffer):
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
# If we've populated the output buffer and we're not at EOF,
# also return, as we've satisfied the read1() limits.
if out_buffer.pos and not self._finished_input:
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
# Else if we're at EOS and we have room left in the buffer,
# fall through to below and try to add more data to the output.
# EOF.
old_pos = out_buffer.pos
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, out_buffer, self._in_buffer, lib.ZSTD_e_end
)
self._bytes_compressed += out_buffer.pos - old_pos
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s" % _zstd_error(zresult)
)
if zresult == 0:
self._finished_output = True
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
def readinto(self, b):
if self._closed:
raise ValueError("stream is closed")
if self._finished_output:
return 0
# TODO use writable=True once we require CFFI >= 1.12.
dest_buffer = ffi.from_buffer(b)
ffi.memmove(b, b"", 0)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dest_buffer
out_buffer.size = len(dest_buffer)
out_buffer.pos = 0
if self._compress_into_buffer(out_buffer):
return out_buffer.pos
while not self._finished_input:
self._read_input()
if self._compress_into_buffer(out_buffer):
return out_buffer.pos
# EOF.
old_pos = out_buffer.pos
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, out_buffer, self._in_buffer, lib.ZSTD_e_end
)
self._bytes_compressed += out_buffer.pos - old_pos
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s", _zstd_error(zresult)
)
if zresult == 0:
self._finished_output = True
return out_buffer.pos
def readinto1(self, b):
if self._closed:
raise ValueError("stream is closed")
if self._finished_output:
return 0
# TODO use writable=True once we require CFFI >= 1.12.
dest_buffer = ffi.from_buffer(b)
ffi.memmove(b, b"", 0)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dest_buffer
out_buffer.size = len(dest_buffer)
out_buffer.pos = 0
self._compress_into_buffer(out_buffer)
if out_buffer.pos:
return out_buffer.pos
while not self._finished_input:
self._read_input()
if self._compress_into_buffer(out_buffer):
return out_buffer.pos
if out_buffer.pos and not self._finished_input:
return out_buffer.pos
# EOF.
old_pos = out_buffer.pos
zresult = lib.ZSTD_compressStream2(
self._compressor._cctx, out_buffer, self._in_buffer, lib.ZSTD_e_end
)
self._bytes_compressed += out_buffer.pos - old_pos
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s" % _zstd_error(zresult)
)
if zresult == 0:
self._finished_output = True
return out_buffer.pos
class ZstdCompressor(object):
"""
Create an object used to perform Zstandard compression.
Each instance is essentially a wrapper around a ``ZSTD_CCtx`` from
zstd's C API.
An instance can compress data various ways. Instances can be used
multiple times. Each compression operation will use the compression
parameters defined at construction time.
.. note:
When using a compression dictionary and multiple compression
operations are performed, the ``ZstdCompressionParameters`` derived
from an integer compression ``level`` and the first compressed data's
size will be reused for all subsequent operations. This may not be
desirable if source data sizes vary significantly.
``compression_params`` is mutually exclusive with ``level``,
``write_checksum``, ``write_content_size``, ``write_dict_id``, and
``threads``.
Assume that each ``ZstdCompressor`` instance can only handle a single
logical compression operation at the same time. i.e. if you call a method
like ``stream_reader()`` to obtain multiple objects derived from the same
``ZstdCompressor`` instance and attempt to use them simultaneously, errors
will likely occur.
If you need to perform multiple logical compression operations and you
can't guarantee those operations are temporally non-overlapping, you need
to obtain multiple ``ZstdCompressor`` instances.
Unless specified otherwise, assume that no two methods of
``ZstdCompressor`` instances can be called from multiple Python
threads simultaneously. In other words, assume instances are not thread safe
unless stated otherwise.
:param level:
Integer compression level. Valid values are all negative integers
through 22. Lower values generally yield faster operations with lower
compression ratios. Higher values are generally slower but compress
better. The default is 3, which is what the ``zstd`` CLI uses. Negative
levels effectively engage ``--fast`` mode from the ``zstd`` CLI.
:param dict_data:
A ``ZstdCompressionDict`` to be used to compress with dictionary
data.
:param compression_params:
A ``ZstdCompressionParameters`` instance defining low-level compression
parameters. If defined, this will overwrite the ``level`` argument.
:param write_checksum:
If True, a 4 byte content checksum will be written with the compressed
data, allowing the decompressor to perform content verification.
:param write_content_size:
If True (the default), the decompressed content size will be included
in the header of the compressed data. This data will only be written if
the compressor knows the size of the input data.
:param write_dict_id:
Determines whether the dictionary ID will be written into the compressed
data. Defaults to True. Only adds content to the compressed data if
a dictionary is being used.
:param threads:
Number of threads to use to compress data concurrently. When set,
compression operations are performed on multiple threads. The default
value (0) disables multi-threaded compression. A value of ``-1`` means
to set the number of threads to the number of detected logical CPUs.
"""
def __init__(
self,
level=3,
dict_data=None,
compression_params=None,
write_checksum=None,
write_content_size=None,
write_dict_id=None,
threads=0,
):
if level > lib.ZSTD_maxCLevel():
raise ValueError(
"level must be less than %d" % lib.ZSTD_maxCLevel()
)
if threads < 0:
threads = _cpu_count()
if compression_params and write_checksum is not None:
raise ValueError(
"cannot define compression_params and " "write_checksum"
)
if compression_params and write_content_size is not None:
raise ValueError(
"cannot define compression_params and " "write_content_size"
)
if compression_params and write_dict_id is not None:
raise ValueError(
"cannot define compression_params and " "write_dict_id"
)
if compression_params and threads:
raise ValueError("cannot define compression_params and threads")
if compression_params:
self._params = _make_cctx_params(compression_params)
else:
if write_dict_id is None:
write_dict_id = True
params = lib.ZSTD_createCCtxParams()
if params == ffi.NULL:
raise MemoryError()
self._params = ffi.gc(params, lib.ZSTD_freeCCtxParams)
_set_compression_parameter(
self._params, lib.ZSTD_c_compressionLevel, level
)
_set_compression_parameter(
self._params,
lib.ZSTD_c_contentSizeFlag,
write_content_size if write_content_size is not None else 1,
)
_set_compression_parameter(
self._params,
lib.ZSTD_c_checksumFlag,
1 if write_checksum else 0,
)
_set_compression_parameter(
self._params, lib.ZSTD_c_dictIDFlag, 1 if write_dict_id else 0
)
if threads:
_set_compression_parameter(
self._params, lib.ZSTD_c_nbWorkers, threads
)
cctx = lib.ZSTD_createCCtx()
if cctx == ffi.NULL:
raise MemoryError()
self._cctx = cctx
self._dict_data = dict_data
# We defer setting up garbage collection until after calling
# _setup_cctx() to ensure the memory size estimate is more accurate.
try:
self._setup_cctx()
finally:
self._cctx = ffi.gc(
cctx, lib.ZSTD_freeCCtx, size=lib.ZSTD_sizeof_CCtx(cctx)
)
def _setup_cctx(self):
zresult = lib.ZSTD_CCtx_setParametersUsingCCtxParams(
self._cctx, self._params
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"could not set compression parameters: %s"
% _zstd_error(zresult)
)
dict_data = self._dict_data
if dict_data:
if dict_data._cdict:
zresult = lib.ZSTD_CCtx_refCDict(self._cctx, dict_data._cdict)
else:
zresult = lib.ZSTD_CCtx_loadDictionary_advanced(
self._cctx,
dict_data.as_bytes(),
len(dict_data),
lib.ZSTD_dlm_byRef,
dict_data._dict_type,
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"could not load compression dictionary: %s"
% _zstd_error(zresult)
)
def memory_size(self):
"""Obtain the memory usage of this compressor, in bytes.
>>> cctx = zstandard.ZstdCompressor()
>>> memory = cctx.memory_size()
"""
return lib.ZSTD_sizeof_CCtx(self._cctx)
def compress(self, data):
"""
Compress data in a single operation.
This is the simplest mechanism to perform compression: simply pass in a
value and get a compressed value back. It is almost the most prone to
abuse.
The input and output values must fit in memory, so passing in very large
values can result in excessive memory usage. For this reason, one of the
streaming based APIs is preferred for larger values.
:param data:
Source data to compress
:return:
Compressed data
>>> cctx = zstandard.ZstdCompressor()
>>> compressed = cctx.compress(b"data to compress")
"""
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
data_buffer = ffi.from_buffer(data)
dest_size = lib.ZSTD_compressBound(len(data_buffer))
out = new_nonzero("char[]", dest_size)
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, len(data_buffer))
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
out_buffer = ffi.new("ZSTD_outBuffer *")
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer.dst = out
out_buffer.size = dest_size
out_buffer.pos = 0
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
zresult = lib.ZSTD_compressStream2(
self._cctx, out_buffer, in_buffer, lib.ZSTD_e_end
)
if lib.ZSTD_isError(zresult):
raise ZstdError("cannot compress: %s" % _zstd_error(zresult))
elif zresult:
raise ZstdError("unexpected partial frame flush")
return ffi.buffer(out, out_buffer.pos)[:]
def compressobj(self, size=-1):
"""
Obtain a compressor exposing the Python standard library compression API.
See :py:class:`ZstdCompressionObj` for the full documentation.
:param size:
Size in bytes of data that will be compressed.
:return:
:py:class:`ZstdCompressionObj`
"""
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
cobj = ZstdCompressionObj()
cobj._out = ffi.new("ZSTD_outBuffer *")
cobj._dst_buffer = ffi.new(
"char[]", COMPRESSION_RECOMMENDED_OUTPUT_SIZE
)
cobj._out.dst = cobj._dst_buffer
cobj._out.size = COMPRESSION_RECOMMENDED_OUTPUT_SIZE
cobj._out.pos = 0
cobj._compressor = self
cobj._finished = False
return cobj
def chunker(self, size=-1, chunk_size=COMPRESSION_RECOMMENDED_OUTPUT_SIZE):
"""
Create an object for iterative compressing to same-sized chunks.
This API is similar to :py:meth:`ZstdCompressor.compressobj` but has
better performance properties.
:param size:
Size in bytes of data that will be compressed.
:param chunk_size:
Size of compressed chunks.
:return:
:py:class:`ZstdCompressionChunker`
"""
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
return ZstdCompressionChunker(self, chunk_size=chunk_size)
def copy_stream(
self,
ifh,
ofh,
size=-1,
read_size=COMPRESSION_RECOMMENDED_INPUT_SIZE,
write_size=COMPRESSION_RECOMMENDED_OUTPUT_SIZE,
):
"""
Copy data between 2 streams while compressing it.
Data will be read from ``ifh``, compressed, and written to ``ofh``.
``ifh`` must have a ``read(size)`` method. ``ofh`` must have a
``write(data)``
method.
>>> cctx = zstandard.ZstdCompressor()
>>> with open(input_path, "rb") as ifh, open(output_path, "wb") as ofh:
... cctx.copy_stream(ifh, ofh)
It is also possible to declare the size of the source stream:
>>> cctx = zstandard.ZstdCompressor()
>>> cctx.copy_stream(ifh, ofh, size=len_of_input)
You can also specify how large the chunks that are ``read()``
and ``write()`` from and to the streams:
>>> cctx = zstandard.ZstdCompressor()
>>> cctx.copy_stream(ifh, ofh, read_size=32768, write_size=16384)
The stream copier returns a 2-tuple of bytes read and written:
>>> cctx = zstandard.ZstdCompressor()
>>> read_count, write_count = cctx.copy_stream(ifh, ofh)
:param ifh:
Source stream to read from
:param ofh:
Destination stream to write to
:param size:
Size in bytes of the source stream. If defined, compression
parameters will be tuned for this size.
:param read_size:
Chunk sizes that source stream should be ``read()`` from.
:param write_size:
Chunk sizes that destination stream should be ``write()`` to.
:return:
2-tuple of ints of bytes read and written, respectively.
"""
if not hasattr(ifh, "read"):
raise ValueError("first argument must have a read() method")
if not hasattr(ofh, "write"):
raise ValueError("second argument must have a write() method")
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
dst_buffer = ffi.new("char[]", write_size)
out_buffer.dst = dst_buffer
out_buffer.size = write_size
out_buffer.pos = 0
total_read, total_write = 0, 0
while True:
data = ifh.read(read_size)
if not data:
break
data_buffer = ffi.from_buffer(data)
total_read += len(data_buffer)
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
while in_buffer.pos < in_buffer.size:
zresult = lib.ZSTD_compressStream2(
self._cctx, out_buffer, in_buffer, lib.ZSTD_e_continue
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
ofh.write(ffi.buffer(out_buffer.dst, out_buffer.pos))
total_write += out_buffer.pos
out_buffer.pos = 0
# We've finished reading. Flush the compressor.
while True:
zresult = lib.ZSTD_compressStream2(
self._cctx, out_buffer, in_buffer, lib.ZSTD_e_end
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
ofh.write(ffi.buffer(out_buffer.dst, out_buffer.pos))
total_write += out_buffer.pos
out_buffer.pos = 0
if zresult == 0:
break
return total_read, total_write
def stream_reader(
self,
source,
size=-1,
read_size=COMPRESSION_RECOMMENDED_INPUT_SIZE,
closefd=True,
):
"""
Wrap a readable source with a stream that can read compressed data.
This will produce an object conforming to the ``io.RawIOBase``
interface which can be ``read()`` from to retrieve compressed data
from a source.
The source object can be any object with a ``read(size)`` method
or an object that conforms to the buffer protocol.
See :py:class:`ZstdCompressionReader` for type documentation and usage
examples.
:param source:
Object to read source data from
:param size:
Size in bytes of source object.
:param read_size:
How many bytes to request when ``read()``'ing from the source.
:param closefd:
Whether to close the source stream when the returned stream is
closed.
:return:
:py:class:`ZstdCompressionReader`
"""
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
try:
size = len(source)
except Exception:
pass
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
return ZstdCompressionReader(self, source, read_size, closefd=closefd)
def stream_writer(
self,
writer,
size=-1,
write_size=COMPRESSION_RECOMMENDED_OUTPUT_SIZE,
write_return_read=True,
closefd=True,
):
"""
Create a stream that will write compressed data into another stream.
The argument to ``stream_writer()`` must have a ``write(data)`` method.
As compressed data is available, ``write()`` will be called with the
compressed data as its argument. Many common Python types implement
``write()``, including open file handles and ``io.BytesIO``.
See :py:class:`ZstdCompressionWriter` for more documentation, including
usage examples.
:param writer:
Stream to write compressed data to.
:param size:
Size in bytes of data to be compressed. If set, it will be used
to influence compression parameter tuning and could result in the
size being written into the header of the compressed data.
:param write_size:
How much data to ``write()`` to ``writer`` at a time.
:param write_return_read:
Whether ``write()`` should return the number of bytes that were
consumed from the input.
:param closefd:
Whether to ``close`` the ``writer`` when this stream is closed.
:return:
:py:class:`ZstdCompressionWriter`
"""
if not hasattr(writer, "write"):
raise ValueError("must pass an object with a write() method")
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
return ZstdCompressionWriter(
self, writer, size, write_size, write_return_read, closefd=closefd
)
def read_to_iter(
self,
reader,
size=-1,
read_size=COMPRESSION_RECOMMENDED_INPUT_SIZE,
write_size=COMPRESSION_RECOMMENDED_OUTPUT_SIZE,
):
"""
Read uncompressed data from a reader and return an iterator
Returns an iterator of compressed data produced from reading from
``reader``.
This method provides a mechanism to stream compressed data out of a
source as an iterator of data chunks.
Uncompressed data will be obtained from ``reader`` by calling the
``read(size)`` method of it or by reading a slice (if ``reader``
conforms to the *buffer protocol*). The source data will be streamed
into a compressor. As compressed data is available, it will be exposed
to the iterator.
Data is read from the source in chunks of ``read_size``. Compressed
chunks are at most ``write_size`` bytes. Both values default to the
zstd input and and output defaults, respectively.
If reading from the source via ``read()``, ``read()`` will be called
until it raises or returns an empty bytes (``b""``). It is perfectly
valid for the source to deliver fewer bytes than were what requested
by ``read(size)``.
The caller is partially in control of how fast data is fed into the
compressor by how it consumes the returned iterator. The compressor
will not consume from the reader unless the caller consumes from the
iterator.
>>> cctx = zstandard.ZstdCompressor()
>>> for chunk in cctx.read_to_iter(fh):
... # Do something with emitted data.
``read_to_iter()`` accepts a ``size`` argument declaring the size of
the input stream:
>>> cctx = zstandard.ZstdCompressor()
>>> for chunk in cctx.read_to_iter(fh, size=some_int):
>>> pass
You can also control the size that data is ``read()`` from the source
and the ideal size of output chunks:
>>> cctx = zstandard.ZstdCompressor()
>>> for chunk in cctx.read_to_iter(fh, read_size=16384, write_size=8192):
>>> pass
``read_to_iter()`` does not give direct control over the sizes of chunks
fed into the compressor. Instead, chunk sizes will be whatever the object
being read from delivers. These will often be of a uniform size.
:param reader:
Stream providing data to be compressed.
:param size:
Size in bytes of input data.
:param read_size:
Controls how many bytes are ``read()`` from the source.
:param write_size:
Controls the output size of emitted chunks.
:return:
Iterator of ``bytes``.
"""
if hasattr(reader, "read"):
have_read = True
elif hasattr(reader, "__getitem__"):
have_read = False
buffer_offset = 0
size = len(reader)
else:
raise ValueError(
"must pass an object with a read() method or "
"conforms to buffer protocol"
)
lib.ZSTD_CCtx_reset(self._cctx, lib.ZSTD_reset_session_only)
if size < 0:
size = lib.ZSTD_CONTENTSIZE_UNKNOWN
zresult = lib.ZSTD_CCtx_setPledgedSrcSize(self._cctx, size)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error setting source size: %s" % _zstd_error(zresult)
)
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
in_buffer.src = ffi.NULL
in_buffer.size = 0
in_buffer.pos = 0
dst_buffer = ffi.new("char[]", write_size)
out_buffer.dst = dst_buffer
out_buffer.size = write_size
out_buffer.pos = 0
while True:
# We should never have output data sitting around after a previous
# iteration.
assert out_buffer.pos == 0
# Collect input data.
if have_read:
read_result = reader.read(read_size)
else:
remaining = len(reader) - buffer_offset
slice_size = min(remaining, read_size)
read_result = reader[buffer_offset : buffer_offset + slice_size]
buffer_offset += slice_size
# No new input data. Break out of the read loop.
if not read_result:
break
# Feed all read data into the compressor and emit output until
# exhausted.
read_buffer = ffi.from_buffer(read_result)
in_buffer.src = read_buffer
in_buffer.size = len(read_buffer)
in_buffer.pos = 0
while in_buffer.pos < in_buffer.size:
zresult = lib.ZSTD_compressStream2(
self._cctx, out_buffer, in_buffer, lib.ZSTD_e_continue
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd compress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
data = ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
out_buffer.pos = 0
yield data
assert out_buffer.pos == 0
# And repeat the loop to collect more data.
continue
# If we get here, input is exhausted. End the stream and emit what
# remains.
while True:
assert out_buffer.pos == 0
zresult = lib.ZSTD_compressStream2(
self._cctx, out_buffer, in_buffer, lib.ZSTD_e_end
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"error ending compression stream: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
data = ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
out_buffer.pos = 0
yield data
if zresult == 0:
break
def multi_compress_to_buffer(self, data, threads=-1):
"""
Compress multiple pieces of data as a single function call.
(Experimental. Not yet supported by CFFI backend.)
This function is optimized to perform multiple compression operations
as as possible with as little overhead as possible.
Data to be compressed can be passed as a ``BufferWithSegmentsCollection``,
a ``BufferWithSegments``, or a list containing byte like objects. Each
element of the container will be compressed individually using the
configured parameters on the ``ZstdCompressor`` instance.
The ``threads`` argument controls how many threads to use for
compression. The default is ``0`` which means to use a single thread.
Negative values use the number of logical CPUs in the machine.
The function returns a ``BufferWithSegmentsCollection``. This type
represents N discrete memory allocations, each holding 1 or more
compressed frames.
Output data is written to shared memory buffers. This means that unlike
regular Python objects, a reference to *any* object within the collection
keeps the shared buffer and therefore memory backing it alive. This can
have undesirable effects on process memory usage.
The API and behavior of this function is experimental and will likely
change. Known deficiencies include:
* If asked to use multiple threads, it will always spawn that many
threads, even if the input is too small to use them. It should
automatically lower the thread count when the extra threads would
just add overhead.
* The buffer allocation strategy is fixed. There is room to make it
dynamic, perhaps even to allow one output buffer per input,
facilitating a variation of the API to return a list without the
adverse effects of shared memory buffers.
:param data:
Source to read discrete pieces of data to compress.
Can be a ``BufferWithSegmentsCollection``, a ``BufferWithSegments``,
or a ``list[bytes]``.
:return:
BufferWithSegmentsCollection holding compressed data.
"""
raise NotImplementedError()
def frame_progression(self):
"""
Return information on how much work the compressor has done.
Returns a 3-tuple of (ingested, consumed, produced).
>>> cctx = zstandard.ZstdCompressor()
>>> (ingested, consumed, produced) = cctx.frame_progression()
"""
progression = lib.ZSTD_getFrameProgression(self._cctx)
return progression.ingested, progression.consumed, progression.produced
class FrameParameters(object):
"""Information about a zstd frame.
Instances have the following attributes:
``content_size``
Integer size of original, uncompressed content. This will be ``0`` if the
original content size isn't written to the frame (controlled with the
``write_content_size`` argument to ``ZstdCompressor``) or if the input
content size was ``0``.
``window_size``
Integer size of maximum back-reference distance in compressed data.
``dict_id``
Integer of dictionary ID used for compression. ``0`` if no dictionary
ID was used or if the dictionary ID was ``0``.
``has_checksum``
Bool indicating whether a 4 byte content checksum is stored at the end
of the frame.
"""
def __init__(self, fparams):
self.content_size = fparams.frameContentSize
self.window_size = fparams.windowSize
self.dict_id = fparams.dictID
self.has_checksum = bool(fparams.checksumFlag)
def frame_content_size(data):
"""Obtain the decompressed size of a frame.
The returned value is usually accurate. But strictly speaking it should
not be trusted.
:return:
``-1`` if size unknown and a non-negative integer otherwise.
"""
data_buffer = ffi.from_buffer(data)
size = lib.ZSTD_getFrameContentSize(data_buffer, len(data_buffer))
if size == lib.ZSTD_CONTENTSIZE_ERROR:
raise ZstdError("error when determining content size")
elif size == lib.ZSTD_CONTENTSIZE_UNKNOWN:
return -1
else:
return size
def frame_header_size(data):
"""Obtain the size of a frame header.
:return:
Integer size in bytes.
"""
data_buffer = ffi.from_buffer(data)
zresult = lib.ZSTD_frameHeaderSize(data_buffer, len(data_buffer))
if lib.ZSTD_isError(zresult):
raise ZstdError(
"could not determine frame header size: %s" % _zstd_error(zresult)
)
return zresult
def get_frame_parameters(data):
"""
Parse a zstd frame header into frame parameters.
Depending on which fields are present in the frame and their values, the
length of the frame parameters varies. If insufficient bytes are passed
in to fully parse the frame parameters, ``ZstdError`` is raised. To ensure
frame parameters can be parsed, pass in at least 18 bytes.
:param data:
Data from which to read frame parameters.
:return:
:py:class:`FrameParameters`
"""
params = ffi.new("ZSTD_frameHeader *")
data_buffer = ffi.from_buffer(data)
zresult = lib.ZSTD_getFrameHeader(params, data_buffer, len(data_buffer))
if lib.ZSTD_isError(zresult):
raise ZstdError(
"cannot get frame parameters: %s" % _zstd_error(zresult)
)
if zresult:
raise ZstdError(
"not enough data for frame parameters; need %d bytes" % zresult
)
return FrameParameters(params[0])
class ZstdCompressionDict(object):
"""Represents a computed compression dictionary.
Instances are obtained by calling :py:func:`train_dictionary` or by
passing bytes obtained from another source into the constructor.
Instances can be constructed from bytes:
>>> dict_data = zstandard.ZstdCompressionDict(data)
It is possible to construct a dictionary from *any* data. If the data
doesn't begin with a magic header, it will be treated as a *prefix*
dictionary. *Prefix* dictionaries allow compression operations to
reference raw data within the dictionary.
It is possible to force the use of *prefix* dictionaries or to require
a dictionary header:
>>> dict_data = zstandard.ZstdCompressionDict(data, dict_type=zstandard.DICT_TYPE_RAWCONTENT)
>>> dict_data = zstandard.ZstdCompressionDict(data, dict_type=zstandard.DICT_TYPE_FULLDICT)
You can see how many bytes are in the dictionary by calling ``len()``:
>>> dict_data = zstandard.train_dictionary(size, samples)
>>> dict_size = len(dict_data) # will not be larger than ``size``
Once you have a dictionary, you can pass it to the objects performing
compression and decompression:
>>> dict_data = zstandard.train_dictionary(131072, samples)
>>> cctx = zstandard.ZstdCompressor(dict_data=dict_data)
>>> for source_data in input_data:
... compressed = cctx.compress(source_data)
... # Do something with compressed data.
...
>>> dctx = zstandard.ZstdDecompressor(dict_data=dict_data)
>>> for compressed_data in input_data:
... buffer = io.BytesIO()
... with dctx.stream_writer(buffer) as decompressor:
... decompressor.write(compressed_data)
... # Do something with raw data in ``buffer``.
Dictionaries have unique integer IDs. You can retrieve this ID via:
>>> dict_id = zstandard.dictionary_id(dict_data)
You can obtain the raw data in the dict (useful for persisting and constructing
a ``ZstdCompressionDict`` later) via ``as_bytes()``:
>>> dict_data = zstandard.train_dictionary(size, samples)
>>> raw_data = dict_data.as_bytes()
By default, when a ``ZstdCompressionDict`` is *attached* to a
``ZstdCompressor``, each ``ZstdCompressor`` performs work to prepare the
dictionary for use. This is fine if only 1 compression operation is being
performed or if the ``ZstdCompressor`` is being reused for multiple operations.
But if multiple ``ZstdCompressor`` instances are being used with the dictionary,
this can add overhead.
It is possible to *precompute* the dictionary so it can readily be consumed
by multiple ``ZstdCompressor`` instances:
>>> d = zstandard.ZstdCompressionDict(data)
>>> # Precompute for compression level 3.
>>> d.precompute_compress(level=3)
>>> # Precompute with specific compression parameters.
>>> params = zstandard.ZstdCompressionParameters(...)
>>> d.precompute_compress(compression_params=params)
.. note::
When a dictionary is precomputed, the compression parameters used to
precompute the dictionary overwrite some of the compression parameters
specified to ``ZstdCompressor``.
:param data:
Dictionary data.
:param dict_type:
Type of dictionary. One of the ``DICT_TYPE_*`` constants.
"""
def __init__(self, data, dict_type=DICT_TYPE_AUTO, k=0, d=0):
assert isinstance(data, bytes)
self._data = data
self.k = k
self.d = d
if dict_type not in (
DICT_TYPE_AUTO,
DICT_TYPE_RAWCONTENT,
DICT_TYPE_FULLDICT,
):
raise ValueError(
"invalid dictionary load mode: %d; must use "
"DICT_TYPE_* constants"
)
self._dict_type = dict_type
self._cdict = None
def __len__(self):
return len(self._data)
def dict_id(self):
"""Obtain the integer ID of the dictionary."""
return int(lib.ZDICT_getDictID(self._data, len(self._data)))
def as_bytes(self):
"""Obtain the ``bytes`` representation of the dictionary."""
return self._data
def precompute_compress(self, level=0, compression_params=None):
"""Precompute a dictionary os it can be used by multiple compressors.
Calling this method on an instance that will be used by multiple
:py:class:`ZstdCompressor` instances will improve performance.
"""
if level and compression_params:
raise ValueError(
"must only specify one of level or " "compression_params"
)
if not level and not compression_params:
raise ValueError("must specify one of level or compression_params")
if level:
cparams = lib.ZSTD_getCParams(level, 0, len(self._data))
else:
cparams = ffi.new("ZSTD_compressionParameters")
cparams.chainLog = compression_params.chain_log
cparams.hashLog = compression_params.hash_log
cparams.minMatch = compression_params.min_match
cparams.searchLog = compression_params.search_log
cparams.strategy = compression_params.strategy
cparams.targetLength = compression_params.target_length
cparams.windowLog = compression_params.window_log
cdict = lib.ZSTD_createCDict_advanced(
self._data,
len(self._data),
lib.ZSTD_dlm_byRef,
self._dict_type,
cparams,
lib.ZSTD_defaultCMem,
)
if cdict == ffi.NULL:
raise ZstdError("unable to precompute dictionary")
self._cdict = ffi.gc(
cdict, lib.ZSTD_freeCDict, size=lib.ZSTD_sizeof_CDict(cdict)
)
@property
def _ddict(self):
ddict = lib.ZSTD_createDDict_advanced(
self._data,
len(self._data),
lib.ZSTD_dlm_byRef,
self._dict_type,
lib.ZSTD_defaultCMem,
)
if ddict == ffi.NULL:
raise ZstdError("could not create decompression dict")
ddict = ffi.gc(
ddict, lib.ZSTD_freeDDict, size=lib.ZSTD_sizeof_DDict(ddict)
)
self.__dict__["_ddict"] = ddict
return ddict
def train_dictionary(
dict_size,
samples,
k=0,
d=0,
f=0,
split_point=0.0,
accel=0,
notifications=0,
dict_id=0,
level=0,
steps=0,
threads=0,
):
"""Train a dictionary from sample data using the COVER algorithm.
A compression dictionary of size ``dict_size`` will be created from the
iterable of ``samples``. The raw dictionary bytes will be returned.
The dictionary training mechanism is known as *cover*. More details about it
are available in the paper *Effective Construction of Relative Lempel-Ziv
Dictionaries* (authors: Liao, Petri, Moffat, Wirth).
The cover algorithm takes parameters ``k`` and ``d``. These are the
*segment size* and *dmer size*, respectively. The returned dictionary
instance created by this function has ``k`` and ``d`` attributes
containing the values for these parameters. If a ``ZstdCompressionDict``
is constructed from raw bytes data (a content-only dictionary), the
``k`` and ``d`` attributes will be ``0``.
The segment and dmer size parameters to the cover algorithm can either be
specified manually or ``train_dictionary()`` can try multiple values
and pick the best one, where *best* means the smallest compressed data size.
This later mode is called *optimization* mode.
Under the hood, this function always calls
``ZDICT_optimizeTrainFromBuffer_fastCover()``. See the corresponding C library
documentation for more.
If neither ``steps`` nor ``threads`` is defined, defaults for ``d``, ``steps``,
and ``level`` will be used that are equivalent with what
``ZDICT_trainFromBuffer()`` would use.
:param dict_size:
Target size in bytes of the dictionary to generate.
:param samples:
A list of bytes holding samples the dictionary will be trained from.
:param k:
Segment size : constraint: 0 < k : Reasonable range [16, 2048+]
:param d:
dmer size : constraint: 0 < d <= k : Reasonable range [6, 16]
:param f:
log of size of frequency array : constraint: 0 < f <= 31 : 1 means
default(20)
:param split_point:
Percentage of samples used for training: Only used for optimization.
The first # samples * ``split_point`` samples will be used to training.
The last # samples * (1 - split_point) samples will be used for testing.
0 means default (0.75), 1.0 when all samples are used for both training
and testing.
:param accel:
Acceleration level: constraint: 0 < accel <= 10. Higher means faster
and less accurate, 0 means default(1).
:param dict_id:
Integer dictionary ID for the produced dictionary. Default is 0, which uses
a random value.
:param steps:
Number of steps through ``k`` values to perform when trying parameter
variations.
:param threads:
Number of threads to use when trying parameter variations. Default is 0,
which means to use a single thread. A negative value can be specified to
use as many threads as there are detected logical CPUs.
:param level:
Integer target compression level when trying parameter variations.
:param notifications:
Controls writing of informational messages to ``stderr``. ``0`` (the
default) means to write nothing. ``1`` writes errors. ``2`` writes
progression info. ``3`` writes more details. And ``4`` writes all info.
"""
if not isinstance(samples, list):
raise TypeError("samples must be a list")
if threads < 0:
threads = _cpu_count()
if not steps and not threads:
d = d or 8
steps = steps or 4
level = level or 3
total_size = sum(map(len, samples))
samples_buffer = new_nonzero("char[]", total_size)
sample_sizes = new_nonzero("size_t[]", len(samples))
offset = 0
for i, sample in enumerate(samples):
if not isinstance(sample, bytes):
raise ValueError("samples must be bytes")
l = len(sample)
ffi.memmove(samples_buffer + offset, sample, l)
offset += l
sample_sizes[i] = l
dict_data = new_nonzero("char[]", dict_size)
dparams = ffi.new("ZDICT_fastCover_params_t *")[0]
dparams.k = k
dparams.d = d
dparams.f = f
dparams.steps = steps
dparams.nbThreads = threads
dparams.splitPoint = split_point
dparams.accel = accel
dparams.zParams.notificationLevel = notifications
dparams.zParams.dictID = dict_id
dparams.zParams.compressionLevel = level
zresult = lib.ZDICT_optimizeTrainFromBuffer_fastCover(
ffi.addressof(dict_data),
dict_size,
ffi.addressof(samples_buffer),
ffi.addressof(sample_sizes, 0),
len(samples),
ffi.addressof(dparams),
)
if lib.ZDICT_isError(zresult):
msg = ffi.string(lib.ZDICT_getErrorName(zresult)).decode("utf-8")
raise ZstdError("cannot train dict: %s" % msg)
return ZstdCompressionDict(
ffi.buffer(dict_data, zresult)[:],
dict_type=DICT_TYPE_FULLDICT,
k=dparams.k,
d=dparams.d,
)
class ZstdDecompressionObj(object):
"""A standard library API compatible decompressor.
This type implements a compressor that conforms to the API by other
decompressors in Python's standard library. e.g. ``zlib.decompressobj``
or ``bz2.BZ2Decompressor``. This allows callers to use zstd compression
while conforming to a similar API.
Compressed data chunks are fed into ``decompress(data)`` and
uncompressed output (or an empty bytes) is returned. Output from
subsequent calls needs to be concatenated to reassemble the full
decompressed byte sequence.
If ``read_across_frames=False``, each instance is single use: once an
input frame is decoded, ``decompress()`` will raise an exception. If
``read_across_frames=True``, instances can decode multiple frames.
>>> dctx = zstandard.ZstdDecompressor()
>>> dobj = dctx.decompressobj()
>>> data = dobj.decompress(compressed_chunk_0)
>>> data = dobj.decompress(compressed_chunk_1)
By default, calls to ``decompress()`` write output data in chunks of size
``DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE``. These chunks are concatenated
before being returned to the caller. It is possible to define the size of
these temporary chunks by passing ``write_size`` to ``decompressobj()``:
>>> dctx = zstandard.ZstdDecompressor()
>>> dobj = dctx.decompressobj(write_size=1048576)
.. note::
Because calls to ``decompress()`` may need to perform multiple
memory (re)allocations, this streaming decompression API isn't as
efficient as other APIs.
"""
def __init__(self, decompressor, write_size, read_across_frames):
self._decompressor = decompressor
self._write_size = write_size
self._finished = False
self._read_across_frames = read_across_frames
self._unused_input = b""
def decompress(self, data):
"""Send compressed data to the decompressor and obtain decompressed data.
:param data:
Data to feed into the decompressor.
:return:
Decompressed bytes.
"""
if self._finished:
raise ZstdError("cannot use a decompressobj multiple times")
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
data_buffer = ffi.from_buffer(data)
if len(data_buffer) == 0:
return b""
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
dst_buffer = ffi.new("char[]", self._write_size)
out_buffer.dst = dst_buffer
out_buffer.size = len(dst_buffer)
out_buffer.pos = 0
chunks = []
while True:
zresult = lib.ZSTD_decompressStream(
self._decompressor._dctx, out_buffer, in_buffer
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd decompressor error: %s" % _zstd_error(zresult)
)
# Always record any output from decompressor.
if out_buffer.pos:
chunks.append(ffi.buffer(out_buffer.dst, out_buffer.pos)[:])
# 0 is only seen when a frame is fully decoded *and* fully flushed.
# Behavior depends on whether we're in single or multiple frame
# mode.
if zresult == 0 and not self._read_across_frames:
# Mark the instance as done and make any unconsumed input available
# for retrieval.
self._finished = True
self._decompressor = None
self._unused_input = data[in_buffer.pos : in_buffer.size]
break
elif zresult == 0 and self._read_across_frames:
# We're at the end of a fully flushed frame and we can read more.
# Try to read more if there's any more input.
if in_buffer.pos == in_buffer.size:
break
else:
out_buffer.pos = 0
# We're not at the end of the frame *or* we're not fully flushed.
# The decompressor will write out all the bytes it can to the output
# buffer. So if the output buffer is partially filled and the input
# is exhausted, there's nothing more to write. So we've done all we
# can.
elif (
in_buffer.pos == in_buffer.size
and out_buffer.pos < out_buffer.size
):
break
else:
out_buffer.pos = 0
return b"".join(chunks)
def flush(self, length=0):
"""Effectively a no-op.
Implemented for compatibility with the standard library APIs.
Safe to call at any time.
:return:
Empty bytes.
"""
return b""
@property
def unused_data(self):
"""Bytes past the end of compressed data.
If ``decompress()`` is fed additional data beyond the end of a zstd
frame, this value will be non-empty once ``decompress()`` fully decodes
the input frame.
"""
return self._unused_input
@property
def unconsumed_tail(self):
"""Data that has not yet been fed into the decompressor."""
return b""
@property
def eof(self):
"""Whether the end of the compressed data stream has been reached."""
return self._finished
class ZstdDecompressionReader(object):
"""Read only decompressor that pull uncompressed data from another stream.
This type provides a read-only stream interface for performing transparent
decompression from another stream or data source. It conforms to the
``io.RawIOBase`` interface. Only methods relevant to reading are
implemented.
>>> with open(path, 'rb') as fh:
>>> dctx = zstandard.ZstdDecompressor()
>>> reader = dctx.stream_reader(fh)
>>> while True:
... chunk = reader.read(16384)
... if not chunk:
... break
... # Do something with decompressed chunk.
The stream can also be used as a context manager:
>>> with open(path, 'rb') as fh:
... dctx = zstandard.ZstdDecompressor()
... with dctx.stream_reader(fh) as reader:
... ...
When used as a context manager, the stream is closed and the underlying
resources are released when the context manager exits. Future operations
against the stream will fail.
The ``source`` argument to ``stream_reader()`` can be any object with a
``read(size)`` method or any object implementing the *buffer protocol*.
If the ``source`` is a stream, you can specify how large ``read()`` requests
to that stream should be via the ``read_size`` argument. It defaults to
``zstandard.DECOMPRESSION_RECOMMENDED_INPUT_SIZE``.:
>>> with open(path, 'rb') as fh:
... dctx = zstandard.ZstdDecompressor()
... # Will perform fh.read(8192) when obtaining data for the decompressor.
... with dctx.stream_reader(fh, read_size=8192) as reader:
... ...
Instances are *partially* seekable. Absolute and relative positions
(``SEEK_SET`` and ``SEEK_CUR``) forward of the current position are
allowed. Offsets behind the current read position and offsets relative
to the end of stream are not allowed and will raise ``ValueError``
if attempted.
``tell()`` returns the number of decompressed bytes read so far.
Not all I/O methods are implemented. Notably missing is support for
``readline()``, ``readlines()``, and linewise iteration support. This is
because streams operate on binary data - not text data. If you want to
convert decompressed output to text, you can chain an ``io.TextIOWrapper``
to the stream:
>>> with open(path, 'rb') as fh:
... dctx = zstandard.ZstdDecompressor()
... stream_reader = dctx.stream_reader(fh)
... text_stream = io.TextIOWrapper(stream_reader, encoding='utf-8')
... for line in text_stream:
... ...
"""
def __init__(
self,
decompressor,
source,
read_size,
read_across_frames,
closefd=True,
):
self._decompressor = decompressor
self._source = source
self._read_size = read_size
self._read_across_frames = bool(read_across_frames)
self._closefd = bool(closefd)
self._entered = False
self._closed = False
self._bytes_decompressed = 0
self._finished_input = False
self._finished_output = False
self._in_buffer = ffi.new("ZSTD_inBuffer *")
# Holds a ref to self._in_buffer.src.
self._source_buffer = None
def __enter__(self):
if self._entered:
raise ValueError("cannot __enter__ multiple times")
if self._closed:
raise ValueError("stream is closed")
self._entered = True
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self._entered = False
self._decompressor = None
self.close()
self._source = None
return False
def readable(self):
return True
def writable(self):
return False
def seekable(self):
return False
def readline(self, size=-1):
raise io.UnsupportedOperation()
def readlines(self, hint=-1):
raise io.UnsupportedOperation()
def write(self, data):
raise io.UnsupportedOperation()
def writelines(self, lines):
raise io.UnsupportedOperation()
def isatty(self):
return False
def flush(self):
return None
def close(self):
if self._closed:
return None
self._closed = True
f = getattr(self._source, "close", None)
if self._closefd and f:
f()
@property
def closed(self):
return self._closed
def tell(self):
return self._bytes_decompressed
def readall(self):
chunks = []
while True:
chunk = self.read(1048576)
if not chunk:
break
chunks.append(chunk)
return b"".join(chunks)
def __iter__(self):
raise io.UnsupportedOperation()
def __next__(self):
raise io.UnsupportedOperation()
next = __next__
def _read_input(self):
# We have data left over in the input buffer. Use it.
if self._in_buffer.pos < self._in_buffer.size:
return
# All input data exhausted. Nothing to do.
if self._finished_input:
return
# Else populate the input buffer from our source.
if hasattr(self._source, "read"):
data = self._source.read(self._read_size)
if not data:
self._finished_input = True
return
self._source_buffer = ffi.from_buffer(data)
self._in_buffer.src = self._source_buffer
self._in_buffer.size = len(self._source_buffer)
self._in_buffer.pos = 0
else:
self._source_buffer = ffi.from_buffer(self._source)
self._in_buffer.src = self._source_buffer
self._in_buffer.size = len(self._source_buffer)
self._in_buffer.pos = 0
def _decompress_into_buffer(self, out_buffer):
"""Decompress available input into an output buffer.
Returns True if data in output buffer should be emitted.
"""
zresult = lib.ZSTD_decompressStream(
self._decompressor._dctx, out_buffer, self._in_buffer
)
if self._in_buffer.pos == self._in_buffer.size:
self._in_buffer.src = ffi.NULL
self._in_buffer.pos = 0
self._in_buffer.size = 0
self._source_buffer = None
if not hasattr(self._source, "read"):
self._finished_input = True
if lib.ZSTD_isError(zresult):
raise ZstdError("zstd decompress error: %s" % _zstd_error(zresult))
# Emit data if there is data AND either:
# a) output buffer is full (read amount is satisfied)
# b) we're at end of a frame and not in frame spanning mode
return out_buffer.pos and (
out_buffer.pos == out_buffer.size
or zresult == 0
and not self._read_across_frames
)
def read(self, size=-1):
if self._closed:
raise ValueError("stream is closed")
if size < -1:
raise ValueError("cannot read negative amounts less than -1")
if size == -1:
# This is recursive. But it gets the job done.
return self.readall()
if self._finished_output or size == 0:
return b""
# We /could/ call into readinto() here. But that introduces more
# overhead.
dst_buffer = ffi.new("char[]", size)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dst_buffer
out_buffer.size = size
out_buffer.pos = 0
self._read_input()
if self._decompress_into_buffer(out_buffer):
self._bytes_decompressed += out_buffer.pos
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
while not self._finished_input:
self._read_input()
if self._decompress_into_buffer(out_buffer):
self._bytes_decompressed += out_buffer.pos
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
self._bytes_decompressed += out_buffer.pos
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
def readinto(self, b):
if self._closed:
raise ValueError("stream is closed")
if self._finished_output:
return 0
# TODO use writable=True once we require CFFI >= 1.12.
dest_buffer = ffi.from_buffer(b)
ffi.memmove(b, b"", 0)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dest_buffer
out_buffer.size = len(dest_buffer)
out_buffer.pos = 0
self._read_input()
if self._decompress_into_buffer(out_buffer):
self._bytes_decompressed += out_buffer.pos
return out_buffer.pos
while not self._finished_input:
self._read_input()
if self._decompress_into_buffer(out_buffer):
self._bytes_decompressed += out_buffer.pos
return out_buffer.pos
self._bytes_decompressed += out_buffer.pos
return out_buffer.pos
def read1(self, size=-1):
if self._closed:
raise ValueError("stream is closed")
if size < -1:
raise ValueError("cannot read negative amounts less than -1")
if self._finished_output or size == 0:
return b""
# -1 returns arbitrary number of bytes.
if size == -1:
size = DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE
dst_buffer = ffi.new("char[]", size)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dst_buffer
out_buffer.size = size
out_buffer.pos = 0
# read1() dictates that we can perform at most 1 call to underlying
# stream to get input. However, we can't satisfy this restriction with
# decompression because not all input generates output. So we allow
# multiple read(). But unlike read(), we stop once we have any output.
while not self._finished_input:
self._read_input()
self._decompress_into_buffer(out_buffer)
if out_buffer.pos:
break
self._bytes_decompressed += out_buffer.pos
return ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
def readinto1(self, b):
if self._closed:
raise ValueError("stream is closed")
if self._finished_output:
return 0
# TODO use writable=True once we require CFFI >= 1.12.
dest_buffer = ffi.from_buffer(b)
ffi.memmove(b, b"", 0)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = dest_buffer
out_buffer.size = len(dest_buffer)
out_buffer.pos = 0
while not self._finished_input and not self._finished_output:
self._read_input()
self._decompress_into_buffer(out_buffer)
if out_buffer.pos:
break
self._bytes_decompressed += out_buffer.pos
return out_buffer.pos
def seek(self, pos, whence=os.SEEK_SET):
if self._closed:
raise ValueError("stream is closed")
read_amount = 0
if whence == os.SEEK_SET:
if pos < 0:
raise OSError("cannot seek to negative position with SEEK_SET")
if pos < self._bytes_decompressed:
raise OSError(
"cannot seek zstd decompression stream " "backwards"
)
read_amount = pos - self._bytes_decompressed
elif whence == os.SEEK_CUR:
if pos < 0:
raise OSError(
"cannot seek zstd decompression stream " "backwards"
)
read_amount = pos
elif whence == os.SEEK_END:
raise OSError(
"zstd decompression streams cannot be seeked " "with SEEK_END"
)
while read_amount:
result = self.read(
min(read_amount, DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE)
)
if not result:
break
read_amount -= len(result)
return self._bytes_decompressed
class ZstdDecompressionWriter(object):
"""
Write-only stream wrapper that performs decompression.
This type provides a writable stream that performs decompression and writes
decompressed data to another stream.
This type implements the ``io.RawIOBase`` interface. Only methods that
involve writing will do useful things.
Behavior is similar to :py:meth:`ZstdCompressor.stream_writer`: compressed
data is sent to the decompressor by calling ``write(data)`` and decompressed
output is written to the inner stream by calling its ``write(data)``
method:
>>> dctx = zstandard.ZstdDecompressor()
>>> decompressor = dctx.stream_writer(fh)
>>> # Will call fh.write() with uncompressed data.
>>> decompressor.write(compressed_data)
Instances can be used as context managers. However, context managers add no
extra special behavior other than automatically calling ``close()`` when
they exit.
Calling ``close()`` will mark the stream as closed and subsequent I/O
operations will raise ``ValueError`` (per the documented behavior of
``io.RawIOBase``). ``close()`` will also call ``close()`` on the
underlying stream if such a method exists and the instance was created with
``closefd=True``.
The size of chunks to ``write()`` to the destination can be specified:
>>> dctx = zstandard.ZstdDecompressor()
>>> with dctx.stream_writer(fh, write_size=16384) as decompressor:
>>> pass
You can see how much memory is being used by the decompressor:
>>> dctx = zstandard.ZstdDecompressor()
>>> with dctx.stream_writer(fh) as decompressor:
>>> byte_size = decompressor.memory_size()
``stream_writer()`` accepts a ``write_return_read`` boolean argument to control
the return value of ``write()``. When ``True`` (the default)``, ``write()``
returns the number of bytes that were read from the input. When ``False``,
``write()`` returns the number of bytes that were ``write()`` to the inner
stream.
"""
def __init__(
self,
decompressor,
writer,
write_size,
write_return_read,
closefd=True,
):
decompressor._ensure_dctx()
self._decompressor = decompressor
self._writer = writer
self._write_size = write_size
self._write_return_read = bool(write_return_read)
self._closefd = bool(closefd)
self._entered = False
self._closing = False
self._closed = False
def __enter__(self):
if self._closed:
raise ValueError("stream is closed")
if self._entered:
raise ZstdError("cannot __enter__ multiple times")
self._entered = True
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self._entered = False
self.close()
return False
def __iter__(self):
raise io.UnsupportedOperation()
def __next__(self):
raise io.UnsupportedOperation()
def memory_size(self):
return lib.ZSTD_sizeof_DCtx(self._decompressor._dctx)
def close(self):
if self._closed:
return
try:
self._closing = True
self.flush()
finally:
self._closing = False
self._closed = True
f = getattr(self._writer, "close", None)
if self._closefd and f:
f()
@property
def closed(self):
return self._closed
def fileno(self):
f = getattr(self._writer, "fileno", None)
if f:
return f()
else:
raise OSError("fileno not available on underlying writer")
def flush(self):
if self._closed:
raise ValueError("stream is closed")
f = getattr(self._writer, "flush", None)
if f and not self._closing:
return f()
def isatty(self):
return False
def readable(self):
return False
def readline(self, size=-1):
raise io.UnsupportedOperation()
def readlines(self, hint=-1):
raise io.UnsupportedOperation()
def seek(self, offset, whence=None):
raise io.UnsupportedOperation()
def seekable(self):
return False
def tell(self):
raise io.UnsupportedOperation()
def truncate(self, size=None):
raise io.UnsupportedOperation()
def writable(self):
return True
def writelines(self, lines):
raise io.UnsupportedOperation()
def read(self, size=-1):
raise io.UnsupportedOperation()
def readall(self):
raise io.UnsupportedOperation()
def readinto(self, b):
raise io.UnsupportedOperation()
def write(self, data):
if self._closed:
raise ValueError("stream is closed")
total_write = 0
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
data_buffer = ffi.from_buffer(data)
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
dst_buffer = ffi.new("char[]", self._write_size)
out_buffer.dst = dst_buffer
out_buffer.size = len(dst_buffer)
out_buffer.pos = 0
dctx = self._decompressor._dctx
while in_buffer.pos < in_buffer.size:
zresult = lib.ZSTD_decompressStream(dctx, out_buffer, in_buffer)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd decompress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
self._writer.write(
ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
)
total_write += out_buffer.pos
out_buffer.pos = 0
if self._write_return_read:
return in_buffer.pos
else:
return total_write
class ZstdDecompressor(object):
"""
Context for performing zstandard decompression.
Each instance is essentially a wrapper around a ``ZSTD_DCtx`` from zstd's
C API.
An instance can compress data various ways. Instances can be used multiple
times.
The interface of this class is very similar to
:py:class:`zstandard.ZstdCompressor` (by design).
Assume that each ``ZstdDecompressor`` instance can only handle a single
logical compression operation at the same time. i.e. if you call a method
like ``decompressobj()`` to obtain multiple objects derived from the same
``ZstdDecompressor`` instance and attempt to use them simultaneously, errors
will likely occur.
If you need to perform multiple logical decompression operations and you
can't guarantee those operations are temporally non-overlapping, you need
to obtain multiple ``ZstdDecompressor`` instances.
Unless specified otherwise, assume that no two methods of
``ZstdDecompressor`` instances can be called from multiple Python
threads simultaneously. In other words, assume instances are not thread safe
unless stated otherwise.
:param dict_data:
Compression dictionary to use.
:param max_window_size:
Sets an upper limit on the window size for decompression operations in
kibibytes. This setting can be used to prevent large memory allocations
for inputs using large compression windows.
:param format:
Set the format of data for the decoder.
By default this is ``zstandard.FORMAT_ZSTD1``. It can be set to
``zstandard.FORMAT_ZSTD1_MAGICLESS`` to allow decoding frames without
the 4 byte magic header. Not all decompression APIs support this mode.
"""
def __init__(self, dict_data=None, max_window_size=0, format=FORMAT_ZSTD1):
self._dict_data = dict_data
self._max_window_size = max_window_size
self._format = format
dctx = lib.ZSTD_createDCtx()
if dctx == ffi.NULL:
raise MemoryError()
self._dctx = dctx
# Defer setting up garbage collection until full state is loaded so
# the memory size is more accurate.
try:
self._ensure_dctx()
finally:
self._dctx = ffi.gc(
dctx, lib.ZSTD_freeDCtx, size=lib.ZSTD_sizeof_DCtx(dctx)
)
def memory_size(self):
"""Size of decompression context, in bytes.
>>> dctx = zstandard.ZstdDecompressor()
>>> size = dctx.memory_size()
"""
return lib.ZSTD_sizeof_DCtx(self._dctx)
def decompress(
self,
data,
max_output_size=0,
read_across_frames=False,
allow_extra_data=True,
):
"""
Decompress data in a single operation.
This method will decompress the input data in a single operation and
return the decompressed data.
The input bytes are expected to contain at least 1 full Zstandard frame
(something compressed with :py:meth:`ZstdCompressor.compress` or
similar). If the input does not contain a full frame, an exception will
be raised.
``read_across_frames`` controls whether to read multiple zstandard
frames in the input. When False, decompression stops after reading the
first frame. This feature is not yet implemented but the argument is
provided for forward API compatibility when the default is changed to
True in a future release. For now, if you need to decompress multiple
frames, use an API like :py:meth:`ZstdCompressor.stream_reader` with
``read_across_frames=True``.
``allow_extra_data`` controls how to handle extra input data after a
fully decoded frame. If False, any extra data (which could be a valid
zstd frame) will result in ``ZstdError`` being raised. If True, extra
data is silently ignored. The default will likely change to False in a
future release when ``read_across_frames`` defaults to True.
If the input contains extra data after a full frame, that extra input
data is silently ignored. This behavior is undesirable in many scenarios
and will likely be changed or controllable in a future release (see
#181).
If the frame header of the compressed data does not contain the content
size, ``max_output_size`` must be specified or ``ZstdError`` will be
raised. An allocation of size ``max_output_size`` will be performed and an
attempt will be made to perform decompression into that buffer. If the
buffer is too small or cannot be allocated, ``ZstdError`` will be
raised. The buffer will be resized if it is too large.
Uncompressed data could be much larger than compressed data. As a result,
calling this function could result in a very large memory allocation
being performed to hold the uncompressed data. This could potentially
result in ``MemoryError`` or system memory swapping. If you don't need
the full output data in a single contiguous array in memory, consider
using streaming decompression for more resilient memory behavior.
Usage:
>>> dctx = zstandard.ZstdDecompressor()
>>> decompressed = dctx.decompress(data)
If the compressed data doesn't have its content size embedded within it,
decompression can be attempted by specifying the ``max_output_size``
argument:
>>> dctx = zstandard.ZstdDecompressor()
>>> uncompressed = dctx.decompress(data, max_output_size=1048576)
Ideally, ``max_output_size`` will be identical to the decompressed
output size.
.. important::
If the exact size of decompressed data is unknown (not passed in
explicitly and not stored in the zstd frame), for performance
reasons it is encouraged to use a streaming API.
:param data:
Compressed data to decompress.
:param max_output_size:
Integer max size of response.
If ``0``, there is no limit and we can attempt to allocate an output
buffer of infinite size.
:return:
``bytes`` representing decompressed output.
"""
if read_across_frames:
raise ZstdError(
"ZstdDecompressor.read_across_frames=True is not yet implemented"
)
self._ensure_dctx()
data_buffer = ffi.from_buffer(data)
output_size = lib.ZSTD_getFrameContentSize(
data_buffer, len(data_buffer)
)
if output_size == lib.ZSTD_CONTENTSIZE_ERROR:
raise ZstdError("error determining content size from frame header")
elif output_size == 0:
return b""
elif output_size == lib.ZSTD_CONTENTSIZE_UNKNOWN:
if not max_output_size:
raise ZstdError(
"could not determine content size in frame header"
)
result_buffer = ffi.new("char[]", max_output_size)
result_size = max_output_size
output_size = 0
else:
result_buffer = ffi.new("char[]", output_size)
result_size = output_size
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = result_buffer
out_buffer.size = result_size
out_buffer.pos = 0
in_buffer = ffi.new("ZSTD_inBuffer *")
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
zresult = lib.ZSTD_decompressStream(self._dctx, out_buffer, in_buffer)
if lib.ZSTD_isError(zresult):
raise ZstdError("decompression error: %s" % _zstd_error(zresult))
elif zresult:
raise ZstdError(
"decompression error: did not decompress full frame"
)
elif output_size and out_buffer.pos != output_size:
raise ZstdError(
"decompression error: decompressed %d bytes; expected %d"
% (zresult, output_size)
)
elif not allow_extra_data and in_buffer.pos < in_buffer.size:
count = in_buffer.size - in_buffer.pos
raise ZstdError(
"compressed input contains %d bytes of unused data, which is disallowed"
% count
)
return ffi.buffer(result_buffer, out_buffer.pos)[:]
def stream_reader(
self,
source,
read_size=DECOMPRESSION_RECOMMENDED_INPUT_SIZE,
read_across_frames=False,
closefd=True,
):
"""
Read-only stream wrapper that performs decompression.
This method obtains an object that conforms to the ``io.RawIOBase``
interface and performs transparent decompression via ``read()``
operations. Source data is obtained by calling ``read()`` on a
source stream or object implementing the buffer protocol.
See :py:class:`zstandard.ZstdDecompressionReader` for more documentation
and usage examples.
:param source:
Source of compressed data to decompress. Can be any object
with a ``read(size)`` method or that conforms to the buffer protocol.
:param read_size:
Integer number of bytes to read from the source and feed into the
compressor at a time.
:param read_across_frames:
Whether to read data across multiple zstd frames. If False,
decompression is stopped at frame boundaries.
:param closefd:
Whether to close the source stream when this instance is closed.
:return:
:py:class:`zstandard.ZstdDecompressionReader`.
"""
self._ensure_dctx()
return ZstdDecompressionReader(
self, source, read_size, read_across_frames, closefd=closefd
)
def decompressobj(
self,
write_size=DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE,
read_across_frames=False,
):
"""Obtain a standard library compatible incremental decompressor.
See :py:class:`ZstdDecompressionObj` for more documentation
and usage examples.
:param write_size: size of internal output buffer to collect decompressed
chunks in.
:param read_across_frames: whether to read across multiple zstd frames.
If False, reading stops after 1 frame and subsequent decompress
attempts will raise an exception.
:return:
:py:class:`zstandard.ZstdDecompressionObj`
"""
if write_size < 1:
raise ValueError("write_size must be positive")
self._ensure_dctx()
return ZstdDecompressionObj(
self, write_size=write_size, read_across_frames=read_across_frames
)
def read_to_iter(
self,
reader,
read_size=DECOMPRESSION_RECOMMENDED_INPUT_SIZE,
write_size=DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE,
skip_bytes=0,
):
"""Read compressed data to an iterator of uncompressed chunks.
This method will read data from ``reader``, feed it to a decompressor,
and emit ``bytes`` chunks representing the decompressed result.
>>> dctx = zstandard.ZstdDecompressor()
>>> for chunk in dctx.read_to_iter(fh):
... # Do something with original data.
``read_to_iter()`` accepts an object with a ``read(size)`` method that
will return compressed bytes or an object conforming to the buffer
protocol.
``read_to_iter()`` returns an iterator whose elements are chunks of the
decompressed data.
The size of requested ``read()`` from the source can be specified:
>>> dctx = zstandard.ZstdDecompressor()
>>> for chunk in dctx.read_to_iter(fh, read_size=16384):
... pass
It is also possible to skip leading bytes in the input data:
>>> dctx = zstandard.ZstdDecompressor()
>>> for chunk in dctx.read_to_iter(fh, skip_bytes=1):
... pass
.. tip::
Skipping leading bytes is useful if the source data contains extra
*header* data. Traditionally, you would need to create a slice or
``memoryview`` of the data you want to decompress. This would create
overhead. It is more efficient to pass the offset into this API.
Similarly to :py:meth:`ZstdCompressor.read_to_iter`, the consumer of the
iterator controls when data is decompressed. If the iterator isn't consumed,
decompression is put on hold.
When ``read_to_iter()`` is passed an object conforming to the buffer protocol,
the behavior may seem similar to what occurs when the simple decompression
API is used. However, this API works when the decompressed size is unknown.
Furthermore, if feeding large inputs, the decompressor will work in chunks
instead of performing a single operation.
:param reader:
Source of compressed data. Can be any object with a
``read(size)`` method or any object conforming to the buffer
protocol.
:param read_size:
Integer size of data chunks to read from ``reader`` and feed into
the decompressor.
:param write_size:
Integer size of data chunks to emit from iterator.
:param skip_bytes:
Integer number of bytes to skip over before sending data into
the decompressor.
:return:
Iterator of ``bytes`` representing uncompressed data.
"""
if skip_bytes >= read_size:
raise ValueError("skip_bytes must be smaller than read_size")
if hasattr(reader, "read"):
have_read = True
elif hasattr(reader, "__getitem__"):
have_read = False
buffer_offset = 0
size = len(reader)
else:
raise ValueError(
"must pass an object with a read() method or "
"conforms to buffer protocol"
)
if skip_bytes:
if have_read:
reader.read(skip_bytes)
else:
if skip_bytes > size:
raise ValueError("skip_bytes larger than first input chunk")
buffer_offset = skip_bytes
self._ensure_dctx()
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
dst_buffer = ffi.new("char[]", write_size)
out_buffer.dst = dst_buffer
out_buffer.size = len(dst_buffer)
out_buffer.pos = 0
while True:
assert out_buffer.pos == 0
if have_read:
read_result = reader.read(read_size)
else:
remaining = size - buffer_offset
slice_size = min(remaining, read_size)
read_result = reader[buffer_offset : buffer_offset + slice_size]
buffer_offset += slice_size
# No new input. Break out of read loop.
if not read_result:
break
# Feed all read data into decompressor and emit output until
# exhausted.
read_buffer = ffi.from_buffer(read_result)
in_buffer.src = read_buffer
in_buffer.size = len(read_buffer)
in_buffer.pos = 0
while in_buffer.pos < in_buffer.size:
assert out_buffer.pos == 0
zresult = lib.ZSTD_decompressStream(
self._dctx, out_buffer, in_buffer
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd decompress error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
data = ffi.buffer(out_buffer.dst, out_buffer.pos)[:]
out_buffer.pos = 0
yield data
if zresult == 0:
return
# Repeat loop to collect more input data.
continue
# If we get here, input is exhausted.
def stream_writer(
self,
writer,
write_size=DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE,
write_return_read=True,
closefd=True,
):
"""
Push-based stream wrapper that performs decompression.
This method constructs a stream wrapper that conforms to the
``io.RawIOBase`` interface and performs transparent decompression
when writing to a wrapper stream.
See :py:class:`zstandard.ZstdDecompressionWriter` for more documentation
and usage examples.
:param writer:
Destination for decompressed output. Can be any object with a
``write(data)``.
:param write_size:
Integer size of chunks to ``write()`` to ``writer``.
:param write_return_read:
Whether ``write()`` should return the number of bytes of input
consumed. If False, ``write()`` returns the number of bytes sent
to the inner stream.
:param closefd:
Whether to ``close()`` the inner stream when this stream is closed.
:return:
:py:class:`zstandard.ZstdDecompressionWriter`
"""
if not hasattr(writer, "write"):
raise ValueError("must pass an object with a write() method")
return ZstdDecompressionWriter(
self,
writer,
write_size,
write_return_read,
closefd=closefd,
)
def copy_stream(
self,
ifh,
ofh,
read_size=DECOMPRESSION_RECOMMENDED_INPUT_SIZE,
write_size=DECOMPRESSION_RECOMMENDED_OUTPUT_SIZE,
):
"""
Copy data between streams, decompressing in the process.
Compressed data will be read from ``ifh``, decompressed, and written
to ``ofh``.
>>> dctx = zstandard.ZstdDecompressor()
>>> dctx.copy_stream(ifh, ofh)
e.g. to decompress a file to another file:
>>> dctx = zstandard.ZstdDecompressor()
>>> with open(input_path, 'rb') as ifh, open(output_path, 'wb') as ofh:
... dctx.copy_stream(ifh, ofh)
The size of chunks being ``read()`` and ``write()`` from and to the
streams can be specified:
>>> dctx = zstandard.ZstdDecompressor()
>>> dctx.copy_stream(ifh, ofh, read_size=8192, write_size=16384)
:param ifh:
Source stream to read compressed data from.
Must have a ``read()`` method.
:param ofh:
Destination stream to write uncompressed data to.
Must have a ``write()`` method.
:param read_size:
The number of bytes to ``read()`` from the source in a single
operation.
:param write_size:
The number of bytes to ``write()`` to the destination in a single
operation.
:return:
2-tuple of integers representing the number of bytes read and
written, respectively.
"""
if not hasattr(ifh, "read"):
raise ValueError("first argument must have a read() method")
if not hasattr(ofh, "write"):
raise ValueError("second argument must have a write() method")
self._ensure_dctx()
in_buffer = ffi.new("ZSTD_inBuffer *")
out_buffer = ffi.new("ZSTD_outBuffer *")
dst_buffer = ffi.new("char[]", write_size)
out_buffer.dst = dst_buffer
out_buffer.size = write_size
out_buffer.pos = 0
total_read, total_write = 0, 0
# Read all available input.
while True:
data = ifh.read(read_size)
if not data:
break
data_buffer = ffi.from_buffer(data)
total_read += len(data_buffer)
in_buffer.src = data_buffer
in_buffer.size = len(data_buffer)
in_buffer.pos = 0
# Flush all read data to output.
while in_buffer.pos < in_buffer.size:
zresult = lib.ZSTD_decompressStream(
self._dctx, out_buffer, in_buffer
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"zstd decompressor error: %s" % _zstd_error(zresult)
)
if out_buffer.pos:
ofh.write(ffi.buffer(out_buffer.dst, out_buffer.pos))
total_write += out_buffer.pos
out_buffer.pos = 0
# Continue loop to keep reading.
return total_read, total_write
def decompress_content_dict_chain(self, frames):
"""
Decompress a series of frames using the content dictionary chaining technique.
Such a list of frames is produced by compressing discrete inputs where
each non-initial input is compressed with a *prefix* dictionary consisting
of the content of the previous input.
For example, say you have the following inputs:
>>> inputs = [b"input 1", b"input 2", b"input 3"]
The zstd frame chain consists of:
1. ``b"input 1"`` compressed in standalone/discrete mode
2. ``b"input 2"`` compressed using ``b"input 1"`` as a *prefix* dictionary
3. ``b"input 3"`` compressed using ``b"input 2"`` as a *prefix* dictionary
Each zstd frame **must** have the content size written.
The following Python code can be used to produce a *prefix dictionary chain*:
>>> def make_chain(inputs):
... frames = []
...
... # First frame is compressed in standalone/discrete mode.
... zctx = zstandard.ZstdCompressor()
... frames.append(zctx.compress(inputs[0]))
...
... # Subsequent frames use the previous fulltext as a prefix dictionary
... for i, raw in enumerate(inputs[1:]):
... dict_data = zstandard.ZstdCompressionDict(
... inputs[i], dict_type=zstandard.DICT_TYPE_RAWCONTENT)
... zctx = zstandard.ZstdCompressor(dict_data=dict_data)
... frames.append(zctx.compress(raw))
...
... return frames
``decompress_content_dict_chain()`` returns the uncompressed data of the last
element in the input chain.
.. note::
It is possible to implement *prefix dictionary chain* decompression
on top of other APIs. However, this function will likely be faster -
especially for long input chains - as it avoids the overhead of
instantiating and passing around intermediate objects between
multiple functions.
:param frames:
List of ``bytes`` holding compressed zstd frames.
:return:
"""
if not isinstance(frames, list):
raise TypeError("argument must be a list")
if not frames:
raise ValueError("empty input chain")
# First chunk should not be using a dictionary. We handle it specially.
chunk = frames[0]
if not isinstance(chunk, bytes):
raise ValueError("chunk 0 must be bytes")
# All chunks should be zstd frames and should have content size set.
chunk_buffer = ffi.from_buffer(chunk)
params = ffi.new("ZSTD_frameHeader *")
zresult = lib.ZSTD_getFrameHeader(
params, chunk_buffer, len(chunk_buffer)
)
if lib.ZSTD_isError(zresult):
raise ValueError("chunk 0 is not a valid zstd frame")
elif zresult:
raise ValueError("chunk 0 is too small to contain a zstd frame")
if params.frameContentSize == lib.ZSTD_CONTENTSIZE_UNKNOWN:
raise ValueError("chunk 0 missing content size in frame")
self._ensure_dctx(load_dict=False)
last_buffer = ffi.new("char[]", params.frameContentSize)
out_buffer = ffi.new("ZSTD_outBuffer *")
out_buffer.dst = last_buffer
out_buffer.size = len(last_buffer)
out_buffer.pos = 0
in_buffer = ffi.new("ZSTD_inBuffer *")
in_buffer.src = chunk_buffer
in_buffer.size = len(chunk_buffer)
in_buffer.pos = 0
zresult = lib.ZSTD_decompressStream(self._dctx, out_buffer, in_buffer)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"could not decompress chunk 0: %s" % _zstd_error(zresult)
)
elif zresult:
raise ZstdError("chunk 0 did not decompress full frame")
# Special case of chain length of 1
if len(frames) == 1:
return ffi.buffer(last_buffer, len(last_buffer))[:]
i = 1
while i < len(frames):
chunk = frames[i]
if not isinstance(chunk, bytes):
raise ValueError("chunk %d must be bytes" % i)
chunk_buffer = ffi.from_buffer(chunk)
zresult = lib.ZSTD_getFrameHeader(
params, chunk_buffer, len(chunk_buffer)
)
if lib.ZSTD_isError(zresult):
raise ValueError("chunk %d is not a valid zstd frame" % i)
elif zresult:
raise ValueError(
"chunk %d is too small to contain a zstd frame" % i
)
if params.frameContentSize == lib.ZSTD_CONTENTSIZE_UNKNOWN:
raise ValueError("chunk %d missing content size in frame" % i)
dest_buffer = ffi.new("char[]", params.frameContentSize)
out_buffer.dst = dest_buffer
out_buffer.size = len(dest_buffer)
out_buffer.pos = 0
in_buffer.src = chunk_buffer
in_buffer.size = len(chunk_buffer)
in_buffer.pos = 0
zresult = lib.ZSTD_decompressStream(
self._dctx, out_buffer, in_buffer
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"could not decompress chunk %d: %s" % _zstd_error(zresult)
)
elif zresult:
raise ZstdError("chunk %d did not decompress full frame" % i)
last_buffer = dest_buffer
i += 1
return ffi.buffer(last_buffer, len(last_buffer))[:]
def multi_decompress_to_buffer(
self, frames, decompressed_sizes=None, threads=0
):
"""
Decompress multiple zstd frames to output buffers as a single operation.
(Experimental. Not available in CFFI backend.)
Compressed frames can be passed to the function as a
``BufferWithSegments``, a ``BufferWithSegmentsCollection``, or as a
list containing objects that conform to the buffer protocol. For best
performance, pass a ``BufferWithSegmentsCollection`` or a
``BufferWithSegments``, as minimal input validation will be done for
that type. If calling from Python (as opposed to C), constructing one
of these instances may add overhead cancelling out the performance
overhead of validation for list inputs.
Returns a ``BufferWithSegmentsCollection`` containing the decompressed
data. All decompressed data is allocated in a single memory buffer. The
``BufferWithSegments`` instance tracks which objects are at which offsets
and their respective lengths.
>>> dctx = zstandard.ZstdDecompressor()
>>> results = dctx.multi_decompress_to_buffer([b'...', b'...'])
The decompressed size of each frame MUST be discoverable. It can either be
embedded within the zstd frame or passed in via the ``decompressed_sizes``
argument.
The ``decompressed_sizes`` argument is an object conforming to the buffer
protocol which holds an array of 64-bit unsigned integers in the machine's
native format defining the decompressed sizes of each frame. If this argument
is passed, it avoids having to scan each frame for its decompressed size.
This frame scanning can add noticeable overhead in some scenarios.
>>> frames = [...]
>>> sizes = struct.pack('=QQQQ', len0, len1, len2, len3)
>>>
>>> dctx = zstandard.ZstdDecompressor()
>>> results = dctx.multi_decompress_to_buffer(frames, decompressed_sizes=sizes)
.. note::
It is possible to pass a ``mmap.mmap()`` instance into this function by
wrapping it with a ``BufferWithSegments`` instance (which will define the
offsets of frames within the memory mapped region).
This function is logically equivalent to performing
:py:meth:`ZstdCompressor.decompress` on each input frame and returning the
result.
This function exists to perform decompression on multiple frames as fast
as possible by having as little overhead as possible. Since decompression is
performed as a single operation and since the decompressed output is stored in
a single buffer, extra memory allocations, Python objects, and Python function
calls are avoided. This is ideal for scenarios where callers know up front that
they need to access data for multiple frames, such as when *delta chains* are
being used.
Currently, the implementation always spawns multiple threads when requested,
even if the amount of work to do is small. In the future, it will be smarter
about avoiding threads and their associated overhead when the amount of
work to do is small.
:param frames:
Source defining zstd frames to decompress.
:param decompressed_sizes:
Array of integers representing sizes of decompressed zstd frames.
:param threads:
How many threads to use for decompression operations.
Negative values will use the same number of threads as logical CPUs
on the machine. Values ``0`` or ``1`` use a single thread.
:return:
``BufferWithSegmentsCollection``
"""
raise NotImplementedError()
def _ensure_dctx(self, load_dict=True):
lib.ZSTD_DCtx_reset(self._dctx, lib.ZSTD_reset_session_only)
if self._max_window_size:
zresult = lib.ZSTD_DCtx_setMaxWindowSize(
self._dctx, self._max_window_size
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"unable to set max window size: %s" % _zstd_error(zresult)
)
zresult = lib.ZSTD_DCtx_setParameter(
self._dctx, lib.ZSTD_d_format, self._format
)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"unable to set decoding format: %s" % _zstd_error(zresult)
)
if self._dict_data and load_dict:
zresult = lib.ZSTD_DCtx_refDDict(self._dctx, self._dict_data._ddict)
if lib.ZSTD_isError(zresult):
raise ZstdError(
"unable to reference prepared dictionary: %s"
% _zstd_error(zresult)
)
|