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
|
/*
* File : pbzip2.cpp
*
* Title : Parallel BZIP2 (pbzip2)
*
* Author: Jeff Gilchrist (http://gilchrist.ca/jeff/)
* - Modified producer/consumer threading code from
* Andrae Muys <andrae@humbug.org.au.au>
* - uses libbzip2 by Julian Seward (http://sources.redhat.com/bzip2/)
* - Major contributions by Yavor Nikolov <nikolov.javor+pbzip2@gmail.com>
*
* Date : April 17, 2010
*
* TODO
* Known Issues
* - direct decompress: (bzerr == BZ_DATA_ERROR_MAGIC) - on rewrite mode
* is handled as cat which is counter-intuitive (though similar to bzip2 handling).
* - some functions are too-long -> harder to maintain (e.g. main)
*
* Contributions
* -------------
* Bryan Stillwell <bryan@bokeoa.com> - code cleanup, RPM spec, prep work
* for inclusion in Fedora Extras
* Dru Lemley [http://lemley.net/smp.html] - help with large file support
* Kir Kolyshkin <kir@sacred.ru> - autodetection for # of CPUs
* Joergen Ramskov <joergen@ramskov.org> - initial version of man page
* Peter Cordes <peter@cordes.ca> - code cleanup
* Kurt Fitzner <kfitzner@excelcia.org> - port to Windows compilers and
* decompression throttling
* Oliver Falk <oliver@linux-kernel.at> - RPM spec update
* Jindrich Novy <jnovy@redhat.com> - code cleanup and bug fixes
* Benjamin Reed <ranger@befunk.com> - autodetection for # of CPUs in OSX
* Chris Dearman <chris@mips.com> - fixed pthreads race condition
* Richard Russon <ntfs@flatcap.org> - help fix decompression bug
* Paul Pluzhnikov <paul@parasoft.com> - fixed minor memory leak
* Aníbal Monsalve Salazar <anibal@debian.org> - creates and maintains Debian packages
* Steve Christensen - creates and maintains Solaris packages (sunfreeware.com)
* Alessio Cervellin - creates and maintains Solaris packages (blastwave.org)
* Ying-Chieh Liao - created the FreeBSD port
* Andrew Pantyukhin <sat@FreeBSD.org> - maintains the FreeBSD ports and willing to
* resolve any FreeBSD-related problems
* Roland Illig <rillig@NetBSD.org> - creates and maintains NetBSD packages
* Matt Turner <mattst88@gmail.com> - code cleanup
* Álvaro Reguly <alvaro@reguly.com> - RPM spec update to support SUSE Linux
* Ivan Voras <ivoras@freebsd.org> - support for stdin and pipes during compression and
* CPU detect changes
* John Dalton <john@johndalton.info> - code cleanup and bug fixes for stdin support
* Rene Georgi <rene.georgi@online.de> - code and Makefile cleanup, support for direct
* decompress and bzcat
* René Rhéaume & Jeroen Roovers <jer@xs4all.nl> - patch to support uclibc's lack of
* a getloadavg function
* Reinhard Schiedermeier <rs@cs.hm.edu> - support for tar --use-compress-prog=pbzip2
* Elbert Pol - creates and maintains OS/2 packages
* Nico Vrouwe <nico@gojelly.com> - support for CPU detection on Win32
* Eduardo Terol <EduardoTerol@gmx.net> - creates and maintains Windows 32bit package
* Nikita Zhuk <nikita@zhuk.fi> - creates and maintains Mac OS X Automator action and
* workflow/service
* Jari Aalto <jari.aalto@cante.net> - Add long options to -h output.
* Add --loadavg, --read long options.
* Scott Emery <emery@sgi.com> - ignore fwrite return and pass chown errors in
* writeFileMetaData if effective uid root
* Steven Chamberlain <steven@pyro.eu.org> - code to support throttling compression to
* prevent memory exhaustion with slow output
* pipe
* Yavor Nikolov <nikolov.javor+pbzip2@gmail.com> - code to support throttling compression to
* prevent memory exhaustion with slow output, cleanup of debug output
* - fixed infinite loop on when fileWriter fails to create output file
* at start
* - allDone renamed to producerDone and added mutex synchronized-access
* - Changed fileWriter loop exit condition: now protected from
* simultaneous access
* - Mutex initialization/disposal refactored
* - Throttling loops using thread condition wait
* - Fatal error handling refactored
* - Removed allDone checks used to signal error (now handled by
* handle_error function)
* - Prevented dangling threads on switch from Multi to Single threaded
* - Inline hint added on a few functions
* - Some additional error_handlers placed instead of returns (kill any
* dangling threads)
* - Cleanup and termination changed in attempt to prevent
* signal-handling issues in mulit-threaded environment (still some
* problems are observed on signalling e.g. with Ctrl+C)
* - Signal-handling in child threads disabled. The goal is to have
* single thread only which accepts signals
* - Using abort instead of exit on error termination
* - Fixed command-line parsing problem (e.g. -m100 -p12 -> 120 CPUs)
* (Problem was unterminated strings afer strncpy).
* - Signal handlers setup refactored to separate function and
* switched from signal to sigaction as per POSIX recommendations
* - Added mutexes unlocking before error-termination.
* - Termination flag introduced (terminateFlag) to indicate abrupt
* termination and facilitate thread finishing in error conditon.
* - fileWriter: error_handler instead of exit on write error.
* - percentComplete progress printed only if changed.
* - signal handling redesigned: using sigwait in separate thread.
* - Makefile: -D_POSIX_PTHREAD_SEMANTICS (used in Solaris).
* - CHAR_BIT instead of 8 used in a warning message.
* - SIGUSR1 signal handling added and used to terminate signal handling
* thread. (Resolved issue with pthread_cancel on Windows-Cygwin)
* - Fixed wrongly issued exit code 1 instead of 0.
* - Corrected some error messages and added a few new ones at signal and
* terminator threads join.
* - Added support for thread stack size customization (-S# option)
* Needs USE_STACKSIZE_CUSTOMIZATION to be defined to enable that option
* - Added define of PTHREAD_STACK_MIN if such is not available in
* standard headers.
* - OutputBuffer usage redesigned as fixed-size circular buffer. Adding
* new elements to it refactored as separate function.
* - OutputBuffer resizing removed from producer_decompress since now
* buffer should be with fixed size.
* - Fixed debug print of OutputBuffer now referencing OutputBuffer in
* old-style absolute index (in fileWriter and others).
* - memstr function implementation simplified (delegated to standard
* library function which is doing the same more efficiently).
* - Changed some variables from int to size_t to get rid of compiler
* warnings (signed + unsigned expressions).
* - Sequential processing of input file/pipe/redirect implemented (capsulated
* as separate class: BZ2StreamScanner)
* - Parallel decompression enabled (now possible with the sequential in)
* - Refactored declarations moved to separate header file (pbzip2.h) to
* make global definitions available to other source modules
* - Progress reporting modified since we don't have number of
* blocks up-front with sequential input read (now based on bytes). fileSize
* moved as InFileSize global variable for that purpose
* - Progress computation in fileWriter moved to QuietMode != 0
* (not needed to do it if we won't print it)
* - disposeMemory helper function implemented to ease memory disposal
* - Processing functions of threads declared as extern "C" since pthread_t
* requires plain "C" calling convention instead of the default "C++"
* - pthread_mutex_{lock|unlock} replaced with safe_mutex_{lock|unlock}
* where appropriate (to prevent from issues like out of sys mutexes)
* - Makefile modified to include the new source files for BZ2StreamScanner
* - Makefile refined (library flags specified in LDFLAGS variable)
* - Makefile.solaris.sunstudio included as example makefile for Solaris
* and SunStudio 12 C++ compiler
* - bz2HeaderZero in main initialized to value 0x90 > 127 which is in general
* out of char type range. Changed to unsigned along with tmpBuff to avoid
* some compiler(e.g. c++0x)/runtime warnings/errors.
* - Some thread conditions signalling added on termination requested to ease
* termination of blocked on conditions threads
* - Other pthread_* calls (signal, wait) migrated to safe_* wrappers to
* handle error return codes (and simplify code where already handled)
* - Timed pthread cond waits refactored to separate function and moved to
* debug sections only; non-timed wait used in non-debug mode. Signalling
* consitions to wake threads waiting on these conditions guaranteed.
* - memstr function templetized to allow working with other data types but
* not only char * (e.g. unsigned char *)
* - safe_cond_broadcast implemented and additional signalling added at
* fileWriter end to prevent consumers blocking at end.
* - Signal error when the input file doesn't contain any bzip2 headers.
* - Fixed problems with not-handling zero-file length special header on compression
* and decompression.
* - Signalling error on stdin decompression when file doesn't start with
* correct bzip2 magic header.
* - Implemented outputBufferInit(size_t size) utility function for output
* buffer initialization/resetting.
* - Plain C headers moved to extern "C" section.
* - Modified file-names handling to avoid issues with file-sizes > 2040
* - Fixed out of array pointer for OutFilename in strncasecmp calls
* - A few other minor modifications
* - consumer_decompress using low-level API now to improve performance of
* long bzip2 streams
* - Fixed issue in safe_cond_timed_wait which caused segmentation fault
* when compiled in DEBUG mode
* - Handle decompression of very long bz2 streams incrementally instead of
* loading whole streams in memory at once
* - Progress calculation changed: fixed issue when large file support is
* disabled and enabled monitoring of segmented long bzip2 streams
* - Fixed issue with Sun Studio compiler - required explicit declaration
* of static const members in .cpp.
*
* Specials thanks for suggestions and testing: Phillippe Welsh,
* James Terhune, Dru Lemley, Bryan Stillwell, George Chalissery,
* Kir Kolyshkin, Madhu Kangara, Mike Furr, Joergen Ramskov, Kurt Fitzner,
* Peter Cordes, Oliver Falk, Jindrich Novy, Benjamin Reed, Chris Dearman,
* Richard Russon, Aníbal Monsalve Salazar, Jim Leonard, Paul Pluzhnikov,
* Coran Fisher, Ken Takusagawa, David Pyke, Matt Turner, Damien Ancelin,
* Álvaro Reguly, Ivan Voras, John Dalton, Sami Liedes, Rene Georgi,
* René Rhéaume, Jeroen Roovers, Reinhard Schiedermeier, Kari Pahula,
* Elbert Pol, Nico Vrouwe, Eduardo Terol, Samuel Thibault, Michael Fuereder,
* Jari Aalto, Scott Emery, Steven Chamberlain, Yavor Nikolov, Nikita Zhuk,
* Joao Seabra, Conn Clark, Mark A. Haun, Tim Bielawa, Michal Gorny,
* Mikolaj Habdank, Christian Kujau, Marc-Christian Petersen, Piero Ottuzzi,
* Ephraim Ofir.
*
*
* This program, "pbzip2" is copyright (C) 2003-2010 Jeff Gilchrist.
* All rights reserved.
*
* The library "libbzip2" which pbzip2 uses, is copyright
* (C) 1996-2008 Julian R Seward. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. The origin of this software must not be misrepresented; you must
* not claim that you wrote the original software. If you use this
* software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 3. Altered source versions must be plainly marked as such, and must
* not be misrepresented as being the original software.
*
* 4. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Jeff Gilchrist, Ottawa, Canada.
* pbzip2@compression.ca
* pbzip2 version 1.1.1 of April 17, 2010
*
*/
#include "pbzip2.h"
#include "BZ2StreamScanner.h"
#include <vector>
#include <algorithm>
#include <string>
#include <new>
extern "C"
{
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <bzlib.h>
#include <limits.h>
}
//
// GLOBALS
//
static int producerDone = 0;
static int terminateFlag = 0; // Abnormal premature termination
static int finishedFlag = 0; // Main thread work finished (about to exit)
static int unfinishedWorkCleaned = 0;
static int numCPU = 2;
static int QUEUESIZE = 2;
static int SIG_HANDLER_QUIT_SIGNAL = SIGUSR1; // signal used to stop SignalHandlerThread
#ifdef USE_STACKSIZE_CUSTOMIZATION
static int ChildThreadStackSize = 0; // -1 - don't modify stacksize; 0 - use minimum; > 0 - use specified
#ifndef PTHREAD_STACK_MIN
#define PTHREAD_STACK_MIN 4096
#endif
#endif // USE_STACKSIZE_CUSTOMIZATION
static unsigned char Bz2HeaderZero[] = {
0x42, 0x5A, 0x68, 0x39, 0x17, 0x72, 0x45, 0x38, 0x50, 0x90, 0x00, 0x00, 0x00, 0x00 };
static OFF_T InFileSize;
static OFF_T InBytesProduced = 0;
static int NumBlocks = 0;
static int NumBlocksEstimated = 0;
static int NumBufferedBlocks = 0;
static size_t NumBufferedTailBlocks = 0;
static size_t NumBufferedBlocksMax = 0;
static int NextBlockToWrite;
static size_t OutBufferPosToWrite; // = 0; // position in output buffer
static int Verbosity = 0;
static int QuietMode = 1;
static int OutputStdOut = 0;
static int ForceOverwrite = 0;
static int BWTblockSize = 9;
static int FileListCount = 0;
static std::vector <outBuff> OutputBuffer;
static queue *FifoQueue; // fifo queue (global var used on termination cleanup)
static pthread_mutex_t *OutMutex = NULL;
static pthread_mutex_t *ProducerDoneMutex = NULL;
static pthread_mutex_t ErrorHandlerMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t TerminateFlagMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t ProgressIndicatorsMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t *notTooMuchNumBuffered;
static pthread_cond_t TerminateCond = PTHREAD_COND_INITIALIZER;
static pthread_attr_t ChildThreadAttributes;
static struct stat fileMetaData;
static const char *sigInFilename = NULL;
static const char *sigOutFilename = NULL;
static char BWTblockSizeChar = '9';
static sigset_t SignalMask;
static pthread_t SignalHandlerThread;
static pthread_t TerminatorThread;
inline int syncGetProducerDone();
inline void syncSetProducerDone(int newValue);
inline int syncGetTerminateFlag();
inline void syncSetTerminateFlag(int newValue);
inline void syncSetFinishedFlag(int newValue);
void cleanupUnfinishedWork();
void cleanupAndQuit(int exitCode);
int initSignalMask();
int setupSignalHandling();
int setupTerminator();
inline void safe_mutex_lock(pthread_mutex_t *mutex);
inline void safe_mutex_unlock(pthread_mutex_t *mutex);
inline void safe_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
inline void safe_cond_signal(pthread_cond_t *cond);
int safe_cond_timed_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, int seconds, const char *caller = "safe_cond_timed_wait");
template <typename FI1, typename FI2>
FI1 memstr(FI1 searchBuf, int searchBufSize, FI2 searchString, int searchStringSize);
int producer_decompress(int, OFF_T, queue *);
int directcompress(int, OFF_T, int, const char *);
int directdecompress(const char *, const char *);
int producer(int hInfile, int blockSize, queue *fifo);
int mutexesInit();
void mutexesDelete();
queue *queueInit(int);
void queueDelete(queue *);
void outputBufferInit(size_t size);
outBuff * outputBufferAdd(const outBuff & element, const char *caller);
outBuff * outputBufferSeqAddNext(outBuff * preveElement, outBuff * newElement);
int getFileMetaData(const char *);
int writeFileMetaData(const char *);
int testBZ2ErrorHandling(int, BZFILE *, int);
int testCompressedData(char *);
ssize_t bufread(int hf, char *buf, size_t bsize);
int detectCPUs(void);
/*
* Pointers to functions used by plain C pthreads API require C calling
* conventions.
*/
extern "C"
{
void* signalHandlerProc(void* arg);
void* terminatorThreadProc(void* arg);
void *consumer_decompress(void *);
void *fileWriter(void *);
void *consumer(void *);
}
/*
* Lock mutex or exit application immediately on error.
*/
inline void safe_mutex_lock(pthread_mutex_t *mutex)
{
int ret = pthread_mutex_lock(mutex);
if (ret != 0)
{
fprintf(stderr, "pthread_mutex_lock error [%d]! Aborting immediately!\n", ret);
cleanupAndQuit(-5);
}
}
/*
* Unlock mutex or exit application immediately on error.
*/
inline void safe_mutex_unlock(pthread_mutex_t *mutex)
{
int ret = pthread_mutex_unlock(mutex);
if (ret != 0)
{
fprintf(stderr, "pthread_mutex_unlock error [%d]! Aborting immediately!\n", ret);
cleanupAndQuit(-6);
}
}
/*
* Call pthread_cond_signal - check return code and exit application immediately
* on error.
*/
inline void safe_cond_signal(pthread_cond_t *cond)
{
int ret = pthread_cond_signal(cond);
if (ret != 0)
{
fprintf(stderr, "pthread_cond_signal error [%d]! Aborting immediately!\n", ret);
cleanupAndQuit(-7);
}
}
/*
* Call pthread_cond_signal - check return code and exit application immediately
* on error.
*/
inline void safe_cond_broadcast(pthread_cond_t *cond)
{
int ret = pthread_cond_broadcast(cond);
if (ret != 0)
{
fprintf(stderr, "pthread_cond_broadcast error [%d]! Aborting immediately!\n", ret);
cleanupAndQuit(-7);
}
}
/*
* Unlock mutex or exit application immediately on error.
*/
inline void safe_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
{
int ret = pthread_cond_wait(cond, mutex);
if (ret != 0)
{
fprintf(stderr, "pthread_cond_wait error [%d]! Aborting immediately!\n", ret);
pthread_mutex_unlock(mutex);
cleanupAndQuit(-8);
}
}
/*
* Delegate to pthread_cond_timedwait. Check for errors and abort if
* any encountered. Return 0 on success and non-zero code on error
*/
int safe_cond_timed_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, int seconds, const char *caller)
{
struct timespec waitTimer;
#ifndef WIN32
struct timeval tv;
struct timezone tz;
#else
SYSTEMTIME systemtime;
LARGE_INTEGER filetime;
#endif
#ifndef WIN32
gettimeofday(&tv, &tz);
waitTimer.tv_sec = tv.tv_sec + seconds;
waitTimer.tv_nsec = tv.tv_usec * 1000;
#else
GetSystemTime(&systemtime);
SystemTimeToFileTime(&systemtime, (FILETIME *)&filetime);
waitTimer.tv_sec = filetime.QuadPart / 10000000;
waitTimer.tv_nsec = filetime.QuadPart - ((LONGLONG)waitTimer.tv_sec * 10000000) * 10;
waitTimer.tv_sec += seconds;
#endif
#ifdef PBZIP_DEBUG
fprintf(stderr, "%s: waitTimer.tv_sec: %d waitTimer.tv_nsec: %lld\n", caller, waitTimer.tv_sec,
(long long)waitTimer.tv_nsec);
#endif
int pret = pthread_cond_timedwait(cond, mutex, &waitTimer);
// we are not using a compatible pthreads library so abort
if ((pret != 0) && (pret != EINTR) && (pret != EBUSY) && (pret != ETIMEDOUT))
{
pthread_mutex_unlock(mutex);
handle_error(EF_EXIT, 1,
"pbzip2: *ERROR: %s: pthread_cond_timedwait() call invalid [pret=%d]. This machine\n"
" does not have compatible pthreads library. Aborting.\n", caller, pret);
cleanupAndQuit(-9);
}
#ifdef PBZIP_DEBUG
else if (pret != 0)
{
fprintf(stderr, "%s: pthread_cond_timedwait returned with non-fatal error [%d]\n", caller, pret);
}
#endif // PBZIP_DEBUG
return 0;
}
/*
* Delegate to write but keep writing until count bytes are written or
* error is encountered (on success all count bytes would be written)
*/
ssize_t do_write(int fd, const void *buf, size_t count)
{
ssize_t bytesRemaining = count;
ssize_t nbytes = 0;
const char *pbuf = (const char *)buf;
while ((bytesRemaining > 0) && ((nbytes = write(fd, pbuf, bytesRemaining)) > 0))
{
bytesRemaining -= nbytes;
pbuf += nbytes;
}
if (nbytes < 0)
{
return nbytes;
}
return (count - bytesRemaining);
}
/*
* Delegate to read but keep writing until count bytes are read or
* error is encountered (on success all count bytes would be read)
*/
ssize_t do_read(int fd, void *buf, size_t count)
{
ssize_t bytesRemaining = count;
ssize_t nbytes = 0;
char *pbuf = (char *)buf;
while ((bytesRemaining > 0) && (nbytes = read(fd, pbuf, bytesRemaining)) > 0)
{
bytesRemaining -= nbytes;
pbuf += nbytes;
}
if (nbytes < 0)
{
return nbytes;
}
return (count - bytesRemaining);
}
/*
*********************************************************
Atomically get producerDone value.
*/
inline int syncGetProducerDone()
{
int ret;
safe_mutex_lock(ProducerDoneMutex);
ret = producerDone;
safe_mutex_unlock(ProducerDoneMutex);
return ret;
}
/*
*********************************************************
Atomically set producerDone value.
*/
inline void syncSetProducerDone(int newValue)
{
safe_mutex_lock(ProducerDoneMutex);
producerDone = newValue;
safe_mutex_unlock(ProducerDoneMutex);
}
/*
* Atomic get terminateFlag
*/
inline int syncGetTerminateFlag()
{
int ret;
safe_mutex_lock(&TerminateFlagMutex);
ret = terminateFlag;
safe_mutex_unlock(&TerminateFlagMutex);
return ret;
}
/*
* Atomically set termination flag and signal the related
* condition.
*/
inline void syncSetTerminateFlag(int newValue)
{
safe_mutex_lock(&TerminateFlagMutex);
terminateFlag = newValue;
if (terminateFlag != 0)
{
// wake up terminator thread
pthread_cond_signal(&TerminateCond);
// wake up all other possibly blocked on cond threads
pthread_cond_broadcast(notTooMuchNumBuffered);
if (FifoQueue != NULL)
{
pthread_cond_broadcast(FifoQueue->notFull);
pthread_cond_broadcast(FifoQueue->notEmpty);
}
}
safe_mutex_unlock(&TerminateFlagMutex);
}
/*
* Set finishedSucessFlag and signal the related condition.
*/
inline void syncSetFinishedFlag(int newValue)
{
safe_mutex_lock(&TerminateFlagMutex);
finishedFlag = newValue;
if (finishedFlag != 0)
{
pthread_cond_signal(&TerminateCond);
}
safe_mutex_unlock(&TerminateFlagMutex);
}
/*
*********************************************************
Print error message and optionally exit or abort
depending on exitFlag:
0 - don't quit;
1 - exit;
2 - abort.
On exit - exitCode status is used.
*/
int handle_error(ExitFlag exitFlag, int exitCode, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
fflush(stderr);
va_end(args);
if (exitFlag == EF_ABORT)
{
syncSetTerminateFlag(1);
abort();
}
if (exitFlag == EF_EXIT)
{
syncSetTerminateFlag(1);
}
return exitCode;
}
/*
* Initialize and set thread signal mask
*/
int initSignalMask()
{
int ret = 0;
ret = sigemptyset(&SignalMask);
ret = sigaddset(&SignalMask, SIGINT) | ret;
ret = sigaddset(&SignalMask, SIGTERM) | ret;
ret = sigaddset(&SignalMask, SIGABRT) | ret;
ret = sigaddset(&SignalMask, SIG_HANDLER_QUIT_SIGNAL) | ret;
#ifndef WIN32
ret = sigaddset(&SignalMask, SIGHUP) | ret;
#endif
if (ret == 0)
{
ret = pthread_sigmask(SIG_BLOCK, &SignalMask, NULL);
}
return ret;
}
/*
* Initialize attributes for child threads.
*
*/
int initChildThreadAttributes()
{
int ret = pthread_attr_init(&ChildThreadAttributes);
if (ret < 0)
{
fprintf(stderr, "Can't initialize thread atrributes [err=%d]! Aborting...\n", ret);
exit(-1);
}
#ifdef USE_STACKSIZE_CUSTOMIZATION
if (ChildThreadStackSize > 0)
{
ret = pthread_attr_setstacksize(&ChildThreadAttributes, ChildThreadStackSize);
if (ret != 0)
{
fprintf(stderr, "Can't set thread stacksize [err=%d]! Countinue with default one.\n", ret);
}
}
#endif // USE_STACKSIZE_CUSTOMIZATION
return ret;
}
/*
* Setup and start signal handling.
*/
int setupSignalHandling()
{
int ret = initSignalMask();
if (ret == 0)
{
ret = pthread_create(&SignalHandlerThread, &ChildThreadAttributes, signalHandlerProc, NULL);
}
return ret;
}
/*
* Setup and start signal handling.
*/
int setupTerminator()
{
return pthread_create(&TerminatorThread, &ChildThreadAttributes, terminatorThreadProc, NULL );
}
/*
*********************************************************
* Clean unfinished work (after error).
* Deletes output file if such exists and if not using pipes.
*/
void cleanupUnfinishedWork()
{
if (unfinishedWorkCleaned != 0)
{
return;
}
struct stat statBuf;
int ret = 0;
#ifdef PBZIP_DEBUG
fprintf(stderr, " Infile: %s Outfile: %s\n", sigInFilename, sigOutFilename);
#endif
// only cleanup files if we did something with them
if ((sigInFilename == NULL) || (sigOutFilename == NULL) || (OutputStdOut == 1))
{
unfinishedWorkCleaned = 1;
return;
}
if (QuietMode != 1)
{
fprintf(stderr, "Cleanup unfinished work [Outfile: %s]...\n", sigOutFilename);
}
// check to see if input file still exists
ret = stat(sigInFilename, &statBuf);
if (ret == 0)
{
// only want to remove output file if input still exists
if (QuietMode != 1)
fprintf(stderr, "Deleting output file: %s, if it exists...\n", sigOutFilename);
ret = remove(sigOutFilename);
if (ret != 0)
{
fprintf(stderr, "pbzip2: *WARNING: Deletion of output file (apparently) failed.\n");
}
else
{
fprintf(stderr, "pbzip2: *INFO: Deletion of output file succeeded.\n");
sigOutFilename = NULL;
}
}
else
{
fprintf(stderr, "pbzip2: *WARNING: Output file was not deleted since input file no longer exists.\n");
fprintf(stderr, "pbzip2: *WARNING: Output file: %s, may be incomplete!\n", sigOutFilename);
}
unfinishedWorkCleaned = 1;
}
/*
*********************************************************
*/
/*
*********************************************************
* Terminator thread procedure: looking at terminateFlag
* and exit application when it's set.
*/
void* terminatorThreadProc(void* arg)
{
int ret = pthread_mutex_lock(&TerminateFlagMutex);
if (ret != 0)
{
fprintf(stderr, "Terminator thread: pthread_mutex_lock error [%d]! Aborting...\n", ret);
syncSetTerminateFlag(1);
cleanupAndQuit(1);
}
while ((finishedFlag == 0) && (terminateFlag == 0))
{
ret = pthread_cond_wait(&TerminateCond, &TerminateFlagMutex);
}
// Successfull end
if (finishedFlag != 0)
{
ret = pthread_mutex_unlock(&TerminateFlagMutex);
return NULL;
}
// Being here implies (terminateFlag != 0)
ret = pthread_mutex_unlock(&TerminateFlagMutex);
fprintf(stderr, "Terminator thread: premature exit requested - quitting...\n");
cleanupAndQuit(1);
return NULL; // never reachable
}
/*
*********************************************************
* Signal handler thread function to hook cleanup on
* certain signals.
*/
void* signalHandlerProc(void* arg)
{
int signalCaught;
// wait for specified in mask signal
int ret = sigwait(&SignalMask, &signalCaught);
if (ret != 0)
{
fprintf(stderr, "\n *signalHandlerProc - sigwait error: %d\n", ret);
}
else if (signalCaught == SIG_HANDLER_QUIT_SIGNAL)
{
return NULL;
}
else // ret == 0
{
fprintf(stderr, "\n *Control-C or similar caught [sig=%d], quitting...\n", signalCaught);
// Delegating cleanup and termination to Terminator Thread
syncSetTerminateFlag(1);
}
return NULL;
}
/*
* Cleanup unfinished work (output file) and exit with the given exit code.
* To be used to quite on error with non-zero exitCode.
*/
void cleanupAndQuit(int exitCode)
{
// syncSetTerminateFlag(1);
int ret = pthread_mutex_lock(&ErrorHandlerMutex);
if (ret != 0)
{
fprintf(stderr, "Cleanup Handler: Failed to lock ErrorHandlerMutex! May double cleanup...\n");
}
cleanupUnfinishedWork();
pthread_mutex_unlock(&ErrorHandlerMutex);
exit(exitCode);
}
/*
*********************************************************
This function will search the array pointed to by
searchBuf[] for the string searchString[] and return
a pointer to the start of the searchString[] if found
otherwise return NULL if not found.
*/
template <typename FI1, typename FI2>
FI1 memstr(FI1 searchBuf, int searchBufSize, FI2 searchString, int searchStringSize)
{
FI1 searchBufEnd = searchBuf + searchBufSize;
FI1 s = std::search(searchBuf, searchBufEnd,
searchString, searchString + searchStringSize);
return (s != searchBufEnd) ? s : NULL;
}
/*
*********************************************************
Function works in single pass. It's Splitting long
streams into sequences of multiple segments.
*/
int producer_decompress(int hInfile, OFF_T fileSize, queue *fifo)
{
safe_mutex_lock(&ProgressIndicatorsMutex);
InBytesProduced = 0;
NumBlocks = 0;
safe_mutex_unlock(&ProgressIndicatorsMutex);
pbzip2::BZ2StreamScanner bz2StreamScanner(hInfile);
// keep going until all the blocks are processed
outBuff * fileData = bz2StreamScanner.getNextStream();
while (!bz2StreamScanner.failed() && (fileData->bufSize > 0))
{
#ifdef PBZIP_DEBUG
fprintf(stderr, " -> Bytes Read: %u bytes...\n", fileData->bufSize);
#endif
if (QuietMode != 1)
{
// give warning to user if block is larger than 250 million bytes
if (fileData->bufSize > 250000000)
{
fprintf(stderr, "pbzip2: *WARNING: Compressed block size is large [%"PRIu64" bytes].\n",
(unsigned long long) fileData->bufSize);
fprintf(stderr, " If program aborts, use regular BZIP2 to decompress.\n");
}
}
// add data to the decompression queue
safe_mutex_lock(fifo->mut);
while (fifo->full)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "producer: queue FULL.\n");
#endif
safe_cond_wait (fifo->notFull, fifo->mut);
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "producer: Buffer: %x Size: %"PRIu64" Block: %d\n", fileData->buf,
(unsigned long long)fileData->bufSize, NumBlocks);
#endif
fifo->add(fileData);
safe_cond_signal (fifo->notEmpty);
safe_mutex_lock(&ProgressIndicatorsMutex);
InBytesProduced += fileData->bufSize;
NumBlocks = fileData->blockNumber + 1;
safe_mutex_unlock(&ProgressIndicatorsMutex);
safe_mutex_unlock(fifo->mut);
fileData = bz2StreamScanner.getNextStream();
} // for
close(hInfile);
// last stream is always dummy one (either error or eof)
delete fileData;
if (bz2StreamScanner.failed() || !bz2StreamScanner.eof())
{
handle_error(EF_EXIT, 1, "pbzip2: producer_decompress: *ERROR: when reading bzip2 input stream\n");
return -1;
}
else if (!bz2StreamScanner.isBz2HeaderFound() || !bz2StreamScanner.eof())
{
handle_error(EF_EXIT, 1, "pbzip2: producer_decompress: *ERROR: input file is not a valid bzip2 stream\n");
return -1;
}
syncSetProducerDone(1);
safe_cond_broadcast(fifo->notEmpty); // just in case
#ifdef PBZIP_DEBUG
fprintf(stderr, "producer: Done - exiting. Last Block: %d\n", NumBlocks);
#endif
return 0;
}
/*
*********************************************************
*/
void *consumer_decompress(void *q)
{
queue *fifo = (queue *)q;
outBuff *fileData = NULL;
outBuff *lastFileData = NULL;
char *DecompressedData = NULL;
unsigned int outSize = 0;
outBuff * prevOutBlockInSequence = NULL;
int outSequenceNumber = 0; // sequence number in multi-part output blocks
unsigned int processedIn = 0;
bz_stream strm;
strm.bzalloc = NULL;
strm.bzfree = NULL;
strm.opaque = NULL;
for (;;)
{
if (syncGetTerminateFlag() != 0)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: terminating1 - terminateFlag set\n");
#endif
return (NULL);
}
safe_mutex_lock(fifo->mut);
for (;;)
{
if (!fifo->empty && (fifo->remove(fileData) == 1))
{
// block retreived - break the loop and continue further
break;
}
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: queue EMPTY.\n");
#endif
if (fifo->empty && ((syncGetProducerDone() == 1) || (syncGetTerminateFlag() != 0)))
{
// finished - either OK or terminated forcibly
pthread_mutex_unlock(fifo->mut);
// BZ2_bzDecompressEnd( &strm );
if (lastFileData != NULL)
{
delete lastFileData;
}
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: exiting2\n");
#endif
return (NULL);
}
#ifdef PBZIP_DEBUG
safe_cond_timed_wait(fifo->notEmpty, fifo->mut, 1, "consumer");
#else
safe_cond_wait(fifo->notEmpty, fifo->mut);
#endif
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "consumer: Buffer: %x Size: %u Block: %d\n",
fileData->buf, (unsigned)fileData->bufSize, fileData->blockNumber);
#endif
safe_cond_signal(fifo->notFull);
safe_mutex_unlock(fifo->mut);
if (lastFileData != NULL)
{
delete lastFileData;
}
lastFileData = fileData;
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: recieved %d.\n", fileData->blockNumber);
#endif
outSize = 900000;
int bzret = BZ_OK;
if (fileData->sequenceNumber < 2)
{
// start of new stream from in queue (0 -> single block; 1 - mutli)
bzret = BZ2_bzDecompressInit(&strm, Verbosity, 0);
if (bzret != BZ_OK)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR during BZ2_bzDecompressInit: %d\n", bzret);
return (NULL);
}
}
strm.avail_in = fileData->bufSize;
strm.next_in = fileData->buf;
while ((bzret == BZ_OK) && (strm.avail_in != 0))
{
#ifdef PBZIP_DEBUG
fprintf(stderr, "decompress: block=%d; seq=%d; prev=%llx; avail_in=%u; avail_out=%u\n",
fileData->blockNumber, outSequenceNumber,
(unsigned long long) prevOutBlockInSequence,
strm.avail_in, strm.avail_out);
#endif
if (DecompressedData == NULL)
{
// allocate memory for decompressed data (start with default 900k block size)
DecompressedData = new(std::nothrow) char[outSize];
// make sure memory was allocated properly
if (DecompressedData == NULL)
{
handle_error(EF_EXIT, -1,
" *ERROR: Could not allocate memory (DecompressedData)! Aborting...\n");
return (NULL);
}
processedIn = 0;
strm.avail_out = outSize;
strm.next_out = DecompressedData;
}
unsigned int availIn = strm.avail_in;
bzret = BZ2_bzDecompress(&strm);
processedIn += (availIn - strm.avail_in);
// issue out block if out buffer is full or stream end is detected
if ( ((bzret == BZ_OK) && strm.avail_out == 0) || (bzret == BZ_STREAM_END) )
{
outBuff * addret = NULL;
unsigned int len = outSize - strm.avail_out;
bool isLast = (bzret == BZ_STREAM_END);
if (outSequenceNumber>0)
{
++outSequenceNumber;
outBuff * nextOutBlock = new(std::nothrow) outBuff(
DecompressedData, len, fileData->blockNumber,
outSequenceNumber, processedIn, isLast, NULL);
if (nextOutBlock == NULL)
{
BZ2_bzDecompressEnd( &strm );
handle_error(EF_EXIT, -1,
" *ERROR: Could not allocate memory (nextOutBlock)! Aborting...\n");
return (NULL);
}
addret = outputBufferSeqAddNext(prevOutBlockInSequence, nextOutBlock);
#ifdef PBZIP_DEBUG
fprintf(stderr, "decompress: outputBufferSeqAddNext->%llx; block=%d; seq=%d; prev=%llx\n",
(unsigned long long)addret,
fileData->blockNumber, outSequenceNumber,
(unsigned long long) prevOutBlockInSequence);
#endif
}
else // sequenceNumber = 0
{
if (bzret == BZ_OK)
{
++outSequenceNumber;
}
addret = outputBufferAdd(outBuff(
DecompressedData, len,
fileData->blockNumber,
outSequenceNumber, processedIn, isLast, NULL), "consumer_decompress");
#ifdef PBZIP_DEBUG
fprintf(stderr, "decompress: outputBufferAdd->%llx; block=%d; seq=%d; prev=%llx\n",
(unsigned long long)addret,
fileData->blockNumber, outSequenceNumber,
(unsigned long long) prevOutBlockInSequence);
#endif
}
if (addret == NULL)
{
// error encountered
BZ2_bzDecompressEnd( &strm );
return (NULL);
}
prevOutBlockInSequence = addret;
DecompressedData = NULL;
}
}
if ((bzret != BZ_STREAM_END) && (bzret != BZ_OK))
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR during BZ2_bzDecompress: ret=%d; block=%d; seq=%d; avail_in=%d\n",
bzret, fileData->blockNumber, outSequenceNumber, strm.avail_in);
return (NULL);
}
if (strm.avail_in != 0)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR unconsumed in after BZ2_bzDecompress loop:"
"ret=%d; block=%d; seq=%d; avail_in=%d\n",
bzret, fileData->blockNumber, outSequenceNumber, strm.avail_in);
return (NULL);
}
if (bzret == BZ_STREAM_END)
{
if (!(fileData->isLastInSequence))
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR on decompress - """
"in segments for stream ended but BZ_STREAM_END not reached: ret=%d; block=%d; seq=%d\n",
bzret, fileData->blockNumber, outSequenceNumber);
return (NULL);
}
bzret = BZ2_bzDecompressEnd(&strm);
if (bzret != BZ_OK)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR during BZ2_bzDecompressEnd: %d\n", bzret);
return (NULL);
}
outSequenceNumber = 0;
prevOutBlockInSequence = NULL;
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n Compressed Block Size: %u\n", (unsigned)fileData->bufSize);
fprintf(stderr, " Original Block Size: %u\n", outSize);
#endif
disposeMemory(fileData->buf);
#ifdef PBZIP_DEBUG
fprintf(stderr, " OutputBuffer[%d].buf = %x\n", fileData->blockNumber, DecompressedData);
fprintf(stderr, " OutputBuffer[%d].bufSize = %u\n", fileData->blockNumber, outSize);
fflush(stderr);
#endif
} // for
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: exiting\n");
#endif
return (NULL);
}
/*
*********************************************************
*/
void *fileWriter(void *outname)
{
char *OutFilename;
OFF_T CompressedSize = 0;
int percentComplete = 0;
int hOutfile = 1; // default to stdout
int currBlock = 0;
size_t outBufferPos = 0;
int ret = -1;
OFF_T bytesProcessed = 0;
OutFilename = (char *) outname;
outBuff * prevBlockInSequence = NULL;
#ifdef PBZIP_DEBUG
fprintf(stderr, "fileWriter function started\n");
#endif
// write to file instead of stdout
if (OutputStdOut == 0)
{
hOutfile = open(OutFilename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, FILE_MODE);
// check to see if file creation was successful
if (hOutfile == -1)
{
handle_error(EF_EXIT, -1,
"pbzip2: *ERROR: Could not create output file [%s]!\n", OutFilename);
return (NULL);
}
}
while (true)
{
#ifdef PBZIP_DEBUG
int lastseq = 0;
if (prevBlockInSequence != NULL)
{
lastseq = prevBlockInSequence->sequenceNumber;
}
#endif
// Order is important. We don't need sync on NumBlocks when producer
// is done.
if ((syncGetProducerDone() == 1) && (currBlock >= NumBlocks) && (prevBlockInSequence == NULL))
{
#ifdef PBZIP_DEBUG
fprintf(stderr, "fileWriter [b:%d:%d]: done - quit loop.\n", currBlock, lastseq);
#endif
// We're done
break;
}
if (syncGetTerminateFlag() != 0)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "fileWriter [b:%d]: terminating1 - terminateFlag set\n", currBlock);
#endif
break;
}
safe_mutex_lock(OutMutex);
#ifdef PBZIP_DEBUG
outBuff * lastnext = (prevBlockInSequence != NULL) ? prevBlockInSequence->next : NULL;
fprintf(stderr, "fileWriter: Block: %d Size: %u Next File Block: %d"
", outBufferPos: %u, NumBlocks: %d, producerDone: %d, lastseq=%d"
", prev=%llx, next=%llx\n",
currBlock, NumBufferedBlocksMax, NextBlockToWrite,
outBufferPos, NumBlocks, syncGetProducerDone(), lastseq,
(unsigned long long)prevBlockInSequence,
(unsigned long long)lastnext);
#endif
if ((OutputBuffer[outBufferPos].buf == NULL) &&
((prevBlockInSequence == NULL) || (prevBlockInSequence->next == NULL)))
{
safe_mutex_unlock(OutMutex);
// sleep a little so we don't go into a tight loop using up all the CPU
usleep(50000);
continue;
}
else
{
safe_mutex_unlock(OutMutex);
}
outBuff * outBlock;
if (prevBlockInSequence != NULL)
{
outBlock = prevBlockInSequence->next;
}
else
{
outBlock = &OutputBuffer[outBufferPos];
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "fileWriter: Buffer: %x Size: %u Block: %d, Seq: %d, isLast: %d\n",
OutputBuffer[outBufferPos].buf, OutputBuffer[outBufferPos].bufSize, currBlock,
outBlock->sequenceNumber, (int)outBlock->isLastInSequence);
#endif
// write data to the output file
ret = do_write(hOutfile, outBlock->buf, outBlock->bufSize);
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n -> Total Bytes Written[%d:%d]: %d bytes...\n", currBlock, outBlock->sequenceNumber, ret);
#endif
if (ret < 0)
{
if (OutputStdOut == 0)
close(hOutfile);
handle_error(EF_EXIT, -1,
"pbzip2: *ERROR: Could not write %d bytes to file [ret=%d]! Aborting...\n",
outBlock->bufSize, ret);
return (NULL);
}
CompressedSize += ret;
bytesProcessed += outBlock->inSize;
delete [] outBlock->buf;
outBlock->buf = NULL;
outBlock->bufSize = 0;
if (outBlock->isLastInSequence)
{
if (++outBufferPos == NumBufferedBlocksMax)
{
outBufferPos = 0;
}
++currBlock;
}
safe_mutex_lock(OutMutex);
if (outBlock->isLastInSequence)
{
++NextBlockToWrite;
OutBufferPosToWrite = outBufferPos;
}
if (outBlock->sequenceNumber > 1)
{
--NumBufferedTailBlocks;
}
// --NumBufferedBlocks; // to be removed
safe_cond_broadcast(notTooMuchNumBuffered);
safe_mutex_unlock(OutMutex);
if (outBlock->sequenceNumber > 2)
{
delete prevBlockInSequence;
}
if (outBlock->isLastInSequence)
{
prevBlockInSequence = NULL;
if (outBlock->sequenceNumber > 1)
{
delete outBlock;
}
}
else
{
prevBlockInSequence = outBlock;
}
if (QuietMode != 1)
{
// print current completion status
int percentCompleteOld = percentComplete;
if (InFileSize > 0)
{
percentComplete = (100.0 * (double)bytesProcessed / (double)InFileSize);
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "Completed: %d%% NextBlockToWrite: %d/%u \r", percentComplete, NextBlockToWrite, NumBufferedBlocksMax);
fflush(stderr);
#else
if (percentComplete != percentCompleteOld)
{
fprintf(stderr, "Completed: %d%% \r", percentComplete);
fflush(stderr);
}
#endif
}
} // while
if (currBlock == 0)
{
// zero-size file needs special handling
ret = do_write(hOutfile, Bz2HeaderZero, sizeof(Bz2HeaderZero) );
if (ret < 0)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not write to file! Aborting...\n");
return (NULL);
}
}
if (OutputStdOut == 0)
close(hOutfile);
if (QuietMode != 1)
{
fprintf(stderr, " Output Size: %"PRIu64" bytes\n", (unsigned long long)CompressedSize);
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "fileWriter exit\n");
fflush(stderr);
#endif
// wake up all other possibly blocked on cond threads
if (FifoQueue != NULL)
{
safe_cond_broadcast(FifoQueue->notEmpty); // important
safe_cond_broadcast(FifoQueue->notFull); // not really needed
}
safe_cond_broadcast(notTooMuchNumBuffered); // not really needed
if (QuietMode != 1)
{
// print current completion status
percentComplete = 100;
#ifdef PBZIP_DEBUG
fprintf(stderr, "Completed: %d%% NextBlockToWrite: %d/%u \r", percentComplete, NextBlockToWrite, NumBufferedBlocksMax);
fflush(stderr);
#else
fprintf(stderr, "Completed: %d%% \r", percentComplete);
fflush(stderr);
#endif
}
return (NULL);
}
/*
*********************************************************
*/
int directcompress(int hInfile, OFF_T fileSize, int blockSize, const char *OutFilename)
{
char *FileData = NULL;
char *CompressedData = NULL;
OFF_T CompressedSize = 0;
OFF_T bytesLeft = 0;
OFF_T inSize = 0;
unsigned int outSize = 0;
int percentComplete = 0;
int hOutfile = 1; // default to stdout
int currBlock = 0;
int rret = 0;
int ret = 0;
bytesLeft = fileSize;
// write to file instead of stdout
if (OutputStdOut == 0)
{
hOutfile = open(OutFilename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, FILE_MODE);
// check to see if file creation was successful
if (hOutfile == -1)
{
fprintf(stderr, "pbzip2: *ERROR: Could not create output file [%s]!\n", OutFilename);
return -1;
}
}
#ifdef WIN32
else
{
setmode(fileno(stdout), O_BINARY);
}
#endif
// keep going until all the file is processed
while (bytesLeft > 0)
{
if (syncGetTerminateFlag() != 0)
{
close(hInfile);
if (OutputStdOut == 0)
close(hOutfile);
fprintf (stderr, "directcompress: terminating - terminateFlag set\n");
return -1;
}
//
// READ DATA
//
// set buffer size
if (bytesLeft > blockSize)
inSize = blockSize;
else
inSize = bytesLeft;
#ifdef PBZIP_DEBUG
fprintf(stderr, " -> Bytes To Read: %"PRIu64" bytes...\n", inSize);
#endif
// allocate memory to read in file
FileData = NULL;
FileData = new(std::nothrow) char[inSize];
// make sure memory was allocated properly
if (FileData == NULL)
{
close(hInfile);
if (OutputStdOut == 0)
close(hOutfile);
handle_error(EF_EXIT, -1,
"pbzip2: *ERROR: Could not allocate memory (FileData)! Aborting...\n");
return -1;
}
// read file data
rret = do_read(hInfile, (char *) FileData, inSize);
#ifdef PBZIP_DEBUG
fprintf(stderr, " -> Total Bytes Read: %d bytes...\n\n", rret);
#endif
if (rret == 0)
{
if (FileData != NULL)
delete [] FileData;
break;
}
else if (rret < 0)
{
close(hInfile);
if (FileData != NULL)
delete [] FileData;
if (OutputStdOut == 0)
close(hOutfile);
handle_error(EF_EXIT, -1,
"pbzip2: *ERROR: Could not read from file! Aborting...\n");
return -1;
}
// set bytes left after read
bytesLeft -= rret;
//
// COMPRESS DATA
//
outSize = (int) ((inSize*1.01)+600);
// allocate memory for compressed data
CompressedData = new(std::nothrow) char[outSize];
// make sure memory was allocated properly
if (CompressedData == NULL)
{
close(hInfile);
if (FileData != NULL)
delete [] FileData;
handle_error(EF_EXIT, -1,
"pbzip2: *ERROR: Could not allocate memory (CompressedData)! Aborting...\n");
return -1;
}
// compress the memory buffer (blocksize=9*100k, verbose=0, worklevel=30)
ret = BZ2_bzBuffToBuffCompress(CompressedData, &outSize, FileData, inSize, BWTblockSize, Verbosity, 30);
if (ret != BZ_OK)
{
close(hInfile);
if (FileData != NULL)
delete [] FileData;
handle_error(EF_EXIT, -1, "pbzip2: *ERROR during compression: %d! Aborting...\n", ret);
return -1;
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n Original Block Size: %u\n", inSize);
fprintf(stderr, " Compressed Block Size: %u\n", outSize);
#endif
//
// WRITE DATA
//
// write data to the output file
ret = do_write(hOutfile, CompressedData, outSize);
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n -> Total Bytes Written[%d]: %d bytes...\n", currBlock, ret);
#endif
if (ret <= 0)
{
close(hInfile);
if (FileData != NULL)
delete [] FileData;
if (CompressedData != NULL)
delete [] CompressedData;
if (OutputStdOut == 0)
close(hOutfile);
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not write to file! Aborting...\n");
return -1;
}
CompressedSize += ret;
currBlock++;
// print current completion status
int percentCompleteOld = percentComplete;
percentComplete = 100 * currBlock / NumBlocksEstimated;
if (QuietMode != 1)
{
if (percentComplete != percentCompleteOld)
{
fprintf(stderr, "Completed: %d%% \r", percentComplete);
fflush(stderr);
}
}
// clean up memory
if (FileData != NULL)
{
delete [] FileData;
FileData = NULL;
}
if (CompressedData != NULL)
{
delete [] CompressedData;
CompressedData = NULL;
}
// check to make sure all the data we expected was read in
if (rret != inSize)
inSize = rret;
} // while
close(hInfile);
if (OutputStdOut == 0)
close(hOutfile);
if (QuietMode != 1)
{
fprintf(stderr, " Output Size: %"PRIu64" bytes\n", (unsigned long long)CompressedSize);
}
syncSetProducerDone(1); // Not really needed for direct version
return 0;
}
/*
*********************************************************
*/
int directdecompress(const char *InFilename, const char *OutFilename)
{
FILE *stream = NULL;
FILE *zStream = NULL;
BZFILE* bzf = NULL;
unsigned char obuf[5000];
unsigned char unused[BZ_MAX_UNUSED];
unsigned char *unusedTmp;
int bzerr, nread, streamNo;
int nUnused;
int ret = 0;
int i;
nUnused = 0;
streamNo = 0;
// see if we are using stdin or not
if (strcmp(InFilename, "-") != 0)
{
// open the file for reading
zStream = fopen(InFilename, "rb");
if (zStream == NULL)
{
handle_error(EF_NOQUIT, -1,
"pbzip2: *ERROR: Could not open input file [%s]! Aborting...\n", InFilename);
return -1;
}
}
else
{
#ifdef WIN32
setmode(fileno(stdin), O_BINARY);
#endif
zStream = stdin;
}
// check file stream for errors
if (ferror(zStream))
{
if (zStream != stdin)
fclose(zStream);
handle_error(EF_NOQUIT, -1,
"pbzip2: *ERROR: Problem with input stream of file [%s]! Aborting...\n", InFilename);
return -1;
}
// see if we are outputting to stdout
if (OutputStdOut == 0)
{
stream = fopen(OutFilename, "wb");
}
else
{
#ifdef WIN32
setmode(fileno(stdout), O_BINARY);
#endif
stream = stdout;
}
// check file stream for errors
if (ferror(stream))
{
if (stream != stdout)
fclose(stream);
handle_error(EF_NOQUIT, -1,
"pbzip2: *ERROR: Problem with output stream of file [%s]! Aborting...\n", InFilename);
return -1;
}
// loop until end of file
while(true)
{
if (syncGetTerminateFlag() != 0)
{
fprintf (stderr, "directdecompress: terminating1 - terminateFlag set\n");
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return -1;
}
bzf = BZ2_bzReadOpen(&bzerr, zStream, Verbosity, 0, unused, nUnused);
if (bzf == NULL || bzerr != BZ_OK)
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return ret;
}
streamNo++;
while (bzerr == BZ_OK)
{
if (syncGetTerminateFlag() != 0)
{
fprintf (stderr, "directdecompress: terminating2 - terminateFlag set\n");
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return -1;
}
nread = BZ2_bzRead(&bzerr, bzf, obuf, sizeof(obuf));
if (bzerr == BZ_DATA_ERROR_MAGIC)
{
// try alternate way of reading data
if (ForceOverwrite == 1)
{
rewind(zStream);
while (true)
{
int c = fgetc(zStream);
if (c == EOF)
break;
ungetc(c,zStream);
nread = fread(obuf, sizeof(unsigned char), sizeof(obuf), zStream );
if (ferror(zStream))
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return ret;
}
if (nread > 0)
(void) fwrite (obuf, sizeof(unsigned char), nread, stream);
if (ferror(stream))
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return ret;
}
}
goto closeok;
}
}
if ((bzerr == BZ_OK || bzerr == BZ_STREAM_END) && nread > 0)
(void) fwrite(obuf, sizeof(unsigned char), nread, stream );
if (ferror(stream))
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return ret;
}
}
if (bzerr != BZ_STREAM_END)
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return ret;
}
BZ2_bzReadGetUnused(&bzerr, bzf, (void**)(&unusedTmp), &nUnused);
if (bzerr != BZ_OK)
{
fprintf(stderr, "pbzip2: *ERROR: Unexpected error. Aborting!\n");
exit(3);
}
for (i = 0; i < nUnused; i++)
unused[i] = unusedTmp[i];
BZ2_bzReadClose(&bzerr, bzf);
if (bzerr != BZ_OK)
{
fprintf(stderr, "pbzip2: *ERROR: Unexpected error. Aborting!\n");
exit(3);
}
// check to see if we are at the end of the file
if (nUnused == 0)
{
int c = fgetc(zStream);
if (c == EOF)
break;
ungetc(c, zStream);
}
}
closeok:
// check file stream for errors
if (ferror(zStream))
{
fprintf(stderr, "pbzip2: *ERROR: Problem with intput stream of file [%s]! Skipping...\n", InFilename);
if (zStream != stdin)
fclose(zStream);
if (stream != stdout)
fclose(stream);
return -1;
}
// close file
ret = fclose(zStream);
if (ret == EOF)
{
fprintf(stderr, "pbzip2: *ERROR: Problem closing file [%s]! Skipping...\n", InFilename);
return -1;
}
// check file stream for errors
if (ferror(stream))
{
fprintf(stderr, "pbzip2: *ERROR: Problem with output stream of file [%s]! Skipping...\n", InFilename);
if (stream != stdout)
fclose(stream);
return -1;
}
ret = fflush(stream);
if (ret != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Problem with output stream of file [%s]! Skipping...\n", InFilename);
if (stream != stdout)
fclose(stream);
return -1;
}
if (stream != stdout)
{
ret = fclose(stream);
if (ret == EOF)
{
fprintf(stderr, "pbzip2: *ERROR: Problem closing file [%s]! Skipping...\n", OutFilename);
return -1;
}
}
syncSetProducerDone(1); // Not really needed for direct version.
return 0;
}
/*
* Simulate an unconditional read(), reading in data to fill the
* bsize-sized buffer if it can, even if it means calling read() multiple
* times. This is needed since pipes and other "special" streams
* sometimes don't allow reading of arbitrary sized buffers.
*/
ssize_t bufread(int hf, char *buf, size_t bsize)
{
size_t bufr = 0;
int ret;
int rsize = bsize;
while (1)
{
ret = read(hf, buf, rsize);
if (ret < 0)
return ret;
if (ret == 0)
return bufr;
bufr += ret;
if (bufr == bsize)
return bsize;
rsize -= ret;
buf += ret;
}
}
/*
*********************************************************
*/
int producer(int hInfile, int blockSize, queue *fifo)
{
char *FileData = NULL;
size_t inSize = 0;
// int blockNum = 0;
int ret = 0;
// int pret = -1;
// We will now totally ignore the fileSize and read the data as it
// comes in. Aside from allowing us to process arbitrary streams, it's
// also the *right thing to do* in unix environments where data may
// be appended to the file as it's processed (e.g. log files).
safe_mutex_lock(&ProgressIndicatorsMutex);
NumBlocks = 0;
InBytesProduced = 0;
safe_mutex_unlock(&ProgressIndicatorsMutex);
// keep going until all the file is processed
while (1)
{
if (syncGetTerminateFlag() != 0)
{
close(hInfile);
return -1;
}
// set buffer size
inSize = blockSize;
#ifdef PBZIP_DEBUG
fprintf(stderr, " -> Bytes To Read: %"PRIu64" bytes...\n", inSize);
#endif
// allocate memory to read in file
FileData = NULL;
FileData = new(std::nothrow) char[inSize];
// make sure memory was allocated properly
if (FileData == NULL)
{
close(hInfile);
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not allocate memory (FileData)! Aborting...\n");
return -1;
}
// read file data
ret = bufread(hInfile, (char *) FileData, inSize);
#ifdef PBZIP_DEBUG
fprintf(stderr, " -> Total Bytes Read: %d bytes...\n\n", ret);
#endif
if (ret == 0)
{
// finished reading.
if (FileData != NULL)
delete [] FileData;
break;
}
else if (ret < 0)
{
close(hInfile);
if (FileData != NULL)
delete [] FileData;
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not read from file! Aborting...\n");
return -1;
}
// check to make sure all the data we expected was read in
if ((size_t)ret != inSize)
inSize = ret;
#ifdef PBZIP_DEBUG
fprintf(stderr, "producer: Going into fifo-mut lock (NumBlocks: %d)\n", NumBlocks);
#endif
// add data to the compression queue
safe_mutex_lock(fifo->mut);
while (fifo->full)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "producer: queue FULL.\n");
#endif
safe_cond_wait(fifo->notFull, fifo->mut);
if (syncGetTerminateFlag() != 0)
{
pthread_mutex_unlock(fifo->mut);
close(hInfile);
return -1;
}
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "producer: Buffer: %x Size: %"PRIu64" Block: %d\n", FileData, inSize, NumBlocks);
#endif
outBuff * queueElement = new(std::nothrow) outBuff(FileData, inSize, NumBlocks, 0);
// make sure memory was allocated properly
if (queueElement == NULL)
{
close(hInfile);
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not allocate memory (queueElement)! Aborting...\n");
return -1;
}
fifo->add(queueElement);
safe_cond_signal(fifo->notEmpty);
safe_mutex_lock(&ProgressIndicatorsMutex);
++NumBlocks;
InBytesProduced += inSize;
safe_mutex_unlock(&ProgressIndicatorsMutex);
safe_mutex_unlock(fifo->mut);
} // while
close(hInfile);
syncSetProducerDone(1);
safe_cond_broadcast(fifo->notEmpty); // just in case
#ifdef PBZIP_DEBUG
fprintf(stderr, "producer: Done - exiting. Num Blocks: %d\n", NumBlocks);
#endif
return 0;
}
/*
*********************************************************
*/
void *consumer (void *q)
{
queue *fifo;
// char *FileData = NULL;
outBuff *fileData;
char *CompressedData = NULL;
// unsigned int inSize = 0;
unsigned int outSize = 0;
// int blockNum = -1;
int ret = -1;
fifo = (queue *)q;
for (;;)
{
if (syncGetTerminateFlag() != 0)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: terminating1 - terminateFlag set\n");
#endif
return (NULL);
}
safe_mutex_lock(fifo->mut);
for (;;)
{
if (!fifo->empty && (fifo->remove(fileData) == 1))
{
// block retreived - break the loop and continue further
break;
}
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: queue EMPTY.\n");
#endif
if (fifo->empty && ((syncGetProducerDone() == 1) || (syncGetTerminateFlag() != 0)))
{
safe_mutex_unlock(fifo->mut);
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: exiting2\n");
#endif
return (NULL);
}
#ifdef PBZIP_DEBUG
safe_cond_timed_wait(fifo->notEmpty, fifo->mut, 1, "consumer");
#else
safe_cond_wait(fifo->notEmpty, fifo->mut);
#endif
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "consumer: Buffer: %x Size: %u Block: %d\n",
fileData->buf, (unsigned)fileData->bufSize, fileData->blockNumber);
#endif
safe_cond_signal(fifo->notFull);
safe_mutex_unlock(fifo->mut);
#ifdef PBZIP_DEBUG
fprintf(stderr, "consumer: received %d.\n", fileData->blockNumber);
#endif
outSize = (unsigned int) (((fileData->bufSize)*1.01)+600);
// allocate memory for compressed data
CompressedData = new(std::nothrow) char[outSize];
// make sure memory was allocated properly
if (CompressedData == NULL)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR: Could not allocate memory (CompressedData)! Aborting...\n");
return (NULL);
}
// compress the memory buffer (blocksize=9*100k, verbose=0, worklevel=30)
ret = BZ2_bzBuffToBuffCompress(CompressedData, &outSize,
fileData->buf, fileData->bufSize, BWTblockSize, Verbosity, 30);
if (ret != BZ_OK)
{
handle_error(EF_EXIT, -1, "pbzip2: *ERROR during compression: %d! Aborting...\n", ret);
return (NULL);
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n Original Block Size: %u\n", (unsigned)fileData->bufSize);
fprintf(stderr, " Compressed Block Size: %u\n", outSize);
#endif
disposeMemory(fileData->buf);
// store data to be written in output bin
outBuff outBlock = outBuff(CompressedData, outSize, fileData->blockNumber, 0, fileData->bufSize);
if (outputBufferAdd(outBlock, "consumer") == NULL)
{
return (NULL);
}
delete fileData;
fileData = NULL;
} // for
#ifdef PBZIP_DEBUG
fprintf (stderr, "consumer: exiting\n");
#endif
return (NULL);
}
/*
*********************************************************
*/
int mutexesInit()
{
// initialize mutexes
OutMutex = new(std::nothrow) pthread_mutex_t;
// make sure memory was allocated properly
if (OutMutex == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: Could not allocate memory (OutMutex)! Aborting...\n");
return 1;
}
pthread_mutex_init(OutMutex, NULL);
ProducerDoneMutex = new(std::nothrow) pthread_mutex_t;
// make sure memory was allocated properly
if (ProducerDoneMutex == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: Could not allocate memory (ProducerDoneMutex)! Aborting...\n");
return 1;
}
pthread_mutex_init(ProducerDoneMutex, NULL);
return 0;
}
/*
*********************************************************
*/
void mutexesDelete()
{
if (OutMutex != NULL)
{
pthread_mutex_destroy(OutMutex);
delete OutMutex;
OutMutex = NULL;
}
if (ProducerDoneMutex != NULL)
{
pthread_mutex_destroy(ProducerDoneMutex);
delete ProducerDoneMutex;
ProducerDoneMutex = NULL;
}
}
/*
*********************************************************
*/
queue *queueInit(int queueSize)
{
queue *q;
QUEUESIZE = queueSize;
q = new(std::nothrow) queue;
if (q == NULL)
return NULL;
q->qData = new(std::nothrow) queue::ElementTypePtr[queueSize];
if (q->qData == NULL)
return NULL;
q->size = queueSize;
q->empty = 1;
q->full = 0;
q->head = 0;
q->tail = 0;
q->mut = NULL;
q->mut = new(std::nothrow) pthread_mutex_t;
if (q->mut == NULL)
return NULL;
pthread_mutex_init(q->mut, NULL);
q->notFull = NULL;
q->notFull = new(std::nothrow) pthread_cond_t;
if (q->notFull == NULL)
return NULL;
pthread_cond_init(q->notFull, NULL);
q->notEmpty = NULL;
q->notEmpty = new(std::nothrow) pthread_cond_t;
if (q->notEmpty == NULL)
return NULL;
pthread_cond_init(q->notEmpty, NULL);
q->consumers = NULL;
q->consumers = new(std::nothrow) pthread_t[queueSize];
if (q->consumers == NULL)
return NULL;
notTooMuchNumBuffered = NULL;
notTooMuchNumBuffered = new(std::nothrow) pthread_cond_t;
if (notTooMuchNumBuffered == NULL)
return NULL;
pthread_cond_init(notTooMuchNumBuffered, NULL);
return (q);
}
/*
*********************************************************
*/
void queueDelete (queue *q)
{
if (q == NULL)
return;
if (q->mut != NULL)
{
pthread_mutex_destroy(q->mut);
delete q->mut;
q->mut = NULL;
}
if (q->notFull != NULL)
{
pthread_cond_destroy(q->notFull);
delete q->notFull;
q->notFull = NULL;
}
if (q->notEmpty != NULL)
{
pthread_cond_destroy(q->notEmpty);
delete q->notEmpty;
q->notEmpty = NULL;
}
delete [] q->consumers;
delete [] q->qData;
delete q;
q = NULL;
if (notTooMuchNumBuffered != NULL)
{
pthread_cond_destroy(notTooMuchNumBuffered);
delete notTooMuchNumBuffered;
notTooMuchNumBuffered = NULL;
}
return;
}
/**
* Initialize output buffer contents with empty (NULL, 0) blocks
*
* @param size new size of buffer
*
*/
void outputBufferInit(size_t size)
{
safe_mutex_lock(OutMutex);
NextBlockToWrite = 0;
OutBufferPosToWrite = 0;
NumBufferedBlocks = 0;
NumBufferedTailBlocks = 0;
outBuff emptyElement;
emptyElement.buf = NULL;
emptyElement.bufSize = 0;
// Resize and fill-in with empty elements
OutputBuffer.assign(size, emptyElement);
// unlikely to get here since more likely exception will be thrown
if (OutputBuffer.size() != size)
{
fprintf(stderr, "pbzip2: *ERROR: Could not initialize (OutputBuffer); size=%u! Aborting...\n", size);
safe_mutex_unlock(OutMutex);
exit(1);
}
safe_mutex_unlock(OutMutex);
}
outBuff * outputBufferSeqAddNext(outBuff * preveElement, outBuff * newElement)
{
safe_mutex_lock(OutMutex);
while (NumBufferedTailBlocks >= NumBufferedBlocksMax)
{
if (syncGetTerminateFlag() != 0)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "%s: terminating2 - terminateFlag set\n", "consumer");
#endif
pthread_mutex_unlock(OutMutex);
return NULL;
}
#ifdef PBZIP_DEBUG
fprintf (stderr, "%s/outputBufferSeqAddNext: Throttling from FileWriter backlog: %d\n", "consumer", NumBufferedBlocks);
#endif
safe_cond_wait(notTooMuchNumBuffered, OutMutex);
}
preveElement->next = newElement;
++NumBufferedTailBlocks;
safe_mutex_unlock(OutMutex);
return newElement;
}
/**
* Store an item in OutputBuffer out bin. Synchronization is embedded to protect
* from simultaneous access.
*
* @param in - item buffer
* @param bufSize - item buffer size
* @param blockNum - block number in the whole stream (not the position in buffer)
* @param caller - calling function (used for logging and debug purposes)
*
* @return pointer to added element on success; NULL - on error
*/
outBuff * outputBufferAdd(const outBuff & element, const char *caller)
{
safe_mutex_lock(OutMutex);
// wait while blockNum is out of range
// [NextBlockToWrite, NextBlockToWrite + NumBufferedBlocksMax)
int dist = element.blockNumber - NumBufferedBlocksMax;
while (dist >= NextBlockToWrite)
{
if (syncGetTerminateFlag() != 0)
{
#ifdef PBZIP_DEBUG
fprintf (stderr, "%s/outputBufferAdd: terminating2 - terminateFlag set\n", caller);
#endif
pthread_mutex_unlock(OutMutex);
return NULL;
}
#ifdef PBZIP_DEBUG
fprintf (stderr, "%s: Throttling from FileWriter backlog: %d\n", caller, NumBufferedBlocks);
#endif
safe_cond_wait(notTooMuchNumBuffered, OutMutex);
}
// calculate output buffer position (used in circular mode)
size_t outBuffPos = OutBufferPosToWrite + element.blockNumber - NextBlockToWrite;
if (outBuffPos >= NumBufferedBlocksMax)
{
outBuffPos -= NumBufferedBlocksMax;
}
OutputBuffer[outBuffPos] = element;
++NumBufferedBlocks;
safe_mutex_unlock(OutMutex);
return &(OutputBuffer[outBuffPos]);
}
/*
*********************************************************
Much of the code in this function is taken from bzip2.c
*/
int testBZ2ErrorHandling(int bzerr, BZFILE* bzf, int streamNo)
{
int bzerr_dummy;
BZ2_bzReadClose(&bzerr_dummy, bzf);
switch (bzerr)
{
case BZ_CONFIG_ERROR:
fprintf(stderr, "pbzip2: *ERROR: Integers are not the right size for libbzip2. Aborting!\n");
exit(3);
break;
case BZ_IO_ERROR:
fprintf(stderr, "pbzip2: *ERROR: Integers are not the right size for libbzip2. Aborting!\n");
return 1;
break;
case BZ_DATA_ERROR:
fprintf(stderr, "pbzip2: *ERROR: Data integrity (CRC) error in data! Skipping...\n");
return -1;
break;
case BZ_MEM_ERROR:
fprintf(stderr, "pbzip2: *ERROR: Could NOT allocate enough memory. Aborting!\n");
return 1;
break;
case BZ_UNEXPECTED_EOF:
fprintf(stderr, "pbzip2: *ERROR: File ends unexpectedly! Skipping...\n");
return -1;
break;
case BZ_DATA_ERROR_MAGIC:
if (streamNo == 1)
{
fprintf(stderr, "pbzip2: *ERROR: Bad magic number (file not created by bzip2)! Skipping...\n");
return -1;
}
else
{
if (QuietMode != 1)
fprintf(stderr, "pbzip2: *WARNING: Trailing garbage after EOF ignored!\n");
return 0;
}
default:
fprintf(stderr, "pbzip2: *ERROR: Unexpected error. Aborting!\n");
exit(3);
}
return 0;
}
/*
*********************************************************
Much of the code in this function is taken from bzip2.c
*/
int testCompressedData(char *fileName)
{
FILE *zStream = NULL;
int ret = 0;
BZFILE* bzf = NULL;
unsigned char obuf[5000];
unsigned char unused[BZ_MAX_UNUSED];
unsigned char *unusedTmp;
int bzerr, nread, streamNo;
int nUnused;
int i;
nUnused = 0;
streamNo = 0;
// see if we are using stdin or not
if (strcmp(fileName, "-") != 0)
{
// open the file for reading
zStream = fopen(fileName, "rb");
if (zStream == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: Could not open input file [%s]! Skipping...\n", fileName);
return -1;
}
}
else
zStream = stdin;
// check file stream for errors
if (ferror(zStream))
{
fprintf(stderr, "pbzip2: *ERROR: Problem with stream of file [%s]! Skipping...\n", fileName);
if (zStream != stdin)
fclose(zStream);
return -1;
}
// loop until end of file
while(true)
{
bzf = BZ2_bzReadOpen(&bzerr, zStream, Verbosity, 0, unused, nUnused);
if (bzf == NULL || bzerr != BZ_OK)
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
return ret;
}
streamNo++;
while (bzerr == BZ_OK)
{
nread = BZ2_bzRead(&bzerr, bzf, obuf, sizeof(obuf));
if (bzerr == BZ_DATA_ERROR_MAGIC)
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
return ret;
}
}
if (bzerr != BZ_STREAM_END)
{
ret = testBZ2ErrorHandling(bzerr, bzf, streamNo);
if (zStream != stdin)
fclose(zStream);
return ret;
}
BZ2_bzReadGetUnused(&bzerr, bzf, (void**)(&unusedTmp), &nUnused);
if (bzerr != BZ_OK)
{
fprintf(stderr, "pbzip2: *ERROR: Unexpected error. Aborting!\n");
exit(3);
}
for (i = 0; i < nUnused; i++)
unused[i] = unusedTmp[i];
BZ2_bzReadClose(&bzerr, bzf);
if (bzerr != BZ_OK)
{
fprintf(stderr, "pbzip2: *ERROR: Unexpected error. Aborting!\n");
exit(3);
}
// check to see if we are at the end of the file
if (nUnused == 0)
{
int c = fgetc(zStream);
if (c == EOF)
break;
else
ungetc(c, zStream);
}
}
// check file stream for errors
if (ferror(zStream))
{
fprintf(stderr, "pbzip2: *ERROR: Problem with stream of file [%s]! Skipping...\n", fileName);
if (zStream != stdin)
fclose(zStream);
return -1;
}
// close file
ret = fclose(zStream);
if (ret == EOF)
{
fprintf(stderr, "pbzip2: *ERROR: Problem closing file [%s]! Skipping...\n", fileName);
return -1;
}
return 0;
}
/*
*********************************************************
*/
int getFileMetaData(const char *fileName)
{
// get the file meta data and store it in the global structure
return stat(fileName, &fileMetaData);
}
/*
*********************************************************
*/
int writeFileMetaData(const char *fileName)
{
int ret = 0;
#ifndef WIN32
struct utimbuf uTimBuf;
#else
_utimbuf uTimBuf;
#endif
// store file times in structure
uTimBuf.actime = fileMetaData.st_atime;
uTimBuf.modtime = fileMetaData.st_mtime;
// update file with stored file permissions
ret = chmod(fileName, fileMetaData.st_mode);
if (ret != 0)
return ret;
// update file with stored file access and modification times
ret = utime(fileName, &uTimBuf);
if (ret != 0)
return ret;
// update file with stored file ownership (if access allows)
#ifndef WIN32
ret = chown(fileName, fileMetaData.st_uid, fileMetaData.st_gid);
// following may happen on some Linux filesystems (i.e. NTFS)
// extra error messages do no harm
if ((geteuid() == 0) && (ret != 0))
return ret;
#endif
return 0;
}
/*
*********************************************************
*/
int detectCPUs()
{
int ncpu;
// Set default to 1 in case there is no auto-detect
ncpu = 1;
// Autodetect the number of CPUs on a box, if available
#if defined(__APPLE__)
size_t len = sizeof(ncpu);
int mib[2];
mib[0] = CTL_HW;
mib[1] = HW_NCPU;
if (sysctl(mib, 2, &ncpu, &len, 0, 0) < 0 || len != sizeof(ncpu))
ncpu = 1;
#elif defined(_SC_NPROCESSORS_ONLN)
ncpu = sysconf(_SC_NPROCESSORS_ONLN);
#elif defined(WIN32)
SYSTEM_INFO si;
GetSystemInfo(&si);
ncpu = si.dwNumberOfProcessors;
#endif
// Ensure we have at least one processor to use
if (ncpu < 1)
ncpu = 1;
return ncpu;
}
/*
*********************************************************
*/
void banner()
{
fprintf(stderr, "Parallel BZIP2 v1.1.1 - by: Jeff Gilchrist [http://compression.ca]\n");
fprintf(stderr, "[Apr. 17, 2010] (uses libbzip2 by Julian Seward)\n");
fprintf(stderr, "Major contributions: Yavor Nikolov <nikolov.javor+pbzip2@gmail.com>\n");
return;
}
/*
*********************************************************
*/
void usage(char* progname, const char *reason)
{
banner();
if (strncmp(reason, "HELP", 4) == 0)
fprintf(stderr, "\n");
else
fprintf(stderr, "\nInvalid command line: %s. Aborting...\n\n", reason);
#ifndef PBZIP_NO_LOADAVG
fprintf(stderr, "Usage: %s [-1 .. -9] [-b#cdfhklm#p#qrS#tVz] <filename> <filename2> <filenameN>\n", progname);
#else
fprintf(stderr, "Usage: %s [-1 .. -9] [-b#cdfhkm#p#qrS#tVz] <filename> <filename2> <filenameN>\n", progname);
#endif // PBZIP_NO_LOADAVG
fprintf(stderr, " -1 .. -9 set BWT block size to 100k .. 900k (default 900k)\n");
fprintf(stderr, " -b# Block size in 100k steps (default 9 = 900k)\n");
fprintf(stderr, " -c,--stdout Output to standard out (stdout)\n");
fprintf(stderr, " -d,--decompress Decompress file\n");
fprintf(stderr, " -f,--force Overwrite existing output file\n");
fprintf(stderr, " -h,--help Print this help message\n");
fprintf(stderr, " -k,--keep Keep input file, don't delete\n");
#ifndef PBZIP_NO_LOADAVG
fprintf(stderr, " -l,--loadavg Load average determines max number processors to use\n");
#endif // PBZIP_NO_LOADAVG
fprintf(stderr, " -m# Maximum memory usage in 1MB steps (default 100 = 100MB)\n");
fprintf(stderr, " -p# Number of processors to use (default");
#if defined(_SC_NPROCESSORS_ONLN) || defined(__APPLE__)
fprintf(stderr, ": autodetect [%d])\n", detectCPUs());
#else
fprintf(stderr, " 2)\n");
#endif // _SC_NPROCESSORS_ONLN || __APPLE__
fprintf(stderr, " -q,--quiet Quiet mode (default)\n");
fprintf(stderr, " -r,--read Read entire input file into RAM and split between processors\n");
#ifdef USE_STACKSIZE_CUSTOMIZATION
fprintf(stderr, " -S# Child thread stack size in 1KB steps (default stack size if unspecified)\n");
#endif // USE_STACKSIZE_CUSTOMIZATION
fprintf(stderr, " -t,--test Test compressed file integrity\n");
fprintf(stderr, " -v,--verbose Verbose mode\n");
fprintf(stderr, " -V,--version Display version info for pbzip2 then exit\n");
fprintf(stderr, " -z,--compress Compress file (default)\n\n");
fprintf(stderr, "Example: pbzip2 -b15vk myfile.tar\n");
fprintf(stderr, "Example: pbzip2 -p4 -r -5 myfile.tar second*.txt\n");
fprintf(stderr, "Example: tar cf myfile.tar.bz2 --use-compress-prog=pbzip2 dir_to_compress/\n");
fprintf(stderr, "Example: pbzip2 -d -m500 myfile.tar.bz2\n\n");
exit(-1);
}
/*
*********************************************************
*/
int main(int argc, char* argv[])
{
queue *fifo;
pthread_t output;
char **FileList = NULL;
char *InFilename = NULL;
char *progName = NULL;
char *progNamePos = NULL;
char bz2Header[] = {"BZh91AY&SY"}; // using 900k block size
std::string outFilename; // [2048];
char cmdLineTemp[2048];
unsigned char tmpBuff[50];
char stdinFile[2] = {"-"};
struct timeval tvStartTime;
struct timeval tvStopTime;
#ifndef WIN32
struct timezone tz;
double loadAverage = 0.0;
double loadAvgArray[3];
int useLoadAverage = 0;
int numCPUtotal = 0;
int numCPUidle = 0;
#else
SYSTEMTIME systemtime;
LARGE_INTEGER filetime;
LARGE_INTEGER fileSize_temp;
HANDLE hInfile_temp;
#endif
double timeCalc = 0.0;
double timeStart = 0.0;
double timeStop = 0.0;
int cmdLineTempCount = 0;
int readEntireFile = 0;
int zeroByteFile = 0;
int hInfile = -1;
int hOutfile = -1;
int numBlocks = 0;
int blockSize = 9*100000;
int maxMemory = 100000000;
int decompress = 0;
int compress = 0;
int testFile = 0;
int errLevel = 0;
int noThreads = 0;
int keep = 0;
int force = 0;
int ret = 0;
int fileLoop;
size_t i, j, k;
bool switchedMtToSt = false; // switched from multi- to single-thread
// get current time for benchmark reference
#ifndef WIN32
gettimeofday(&tvStartTime, &tz);
#else
GetSystemTime(&systemtime);
SystemTimeToFileTime(&systemtime, (FILETIME *)&filetime);
tvStartTime.tv_sec = filetime.QuadPart / 10000000;
tvStartTime.tv_usec = (filetime.QuadPart - (LONGLONG)tvStartTime.tv_sec * 10000000) / 10;
#endif
// check to see if we are likely being called from TAR
if (argc < 2)
{
OutputStdOut = 1;
keep = 1;
}
// get program name to determine if decompress mode should be used
progName = argv[0];
for (progNamePos = argv[0]; progNamePos[0] != '\0'; progNamePos++)
{
if (progNamePos[0] == PATH_SEP)
progName = progNamePos + 1;
}
if ((strstr(progName, "unzip") != 0) || (strstr(progName, "UNZIP") != 0))
{
decompress = 1;
}
if ((strstr(progName, "zcat") != 0) || (strstr(progName, "ZCAT") != 0))
{
decompress = OutputStdOut = keep = 1;
}
FileListCount = 0;
FileList = new(std::nothrow) char *[argc];
if (FileList == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: Not enough memory! Aborting...\n");
return 1;
}
// set default max memory usage to 100MB
maxMemory = 100000000;
NumBufferedBlocksMax = 0;
numCPU = detectCPUs();
#ifndef WIN32
numCPUtotal = numCPU;
#endif
// parse command line switches
for (i=1; (int)i < argc; i++)
{
if (argv[i][0] == '-')
{
if (argv[i][1] == '\0')
{
// support "-" as a filename
FileList[FileListCount] = argv[i];
FileListCount++;
continue;
}
else if (argv[i][1] == '-')
{
// get command line options with "--"
if (strcmp(argv[i], "--best") == 0)
{
BWTblockSize = 9;
}
else if (strcmp(argv[i], "--decompress") == 0)
{
decompress = 1;
}
else if (strcmp(argv[i], "--compress") == 0)
{
compress = 1;
}
else if (strcmp(argv[i], "--fast") == 0)
{
BWTblockSize = 1;
}
else if (strcmp(argv[i], "--force") == 0)
{
force = 1; ForceOverwrite = 1;
}
else if (strcmp(argv[i], "--help") == 0)
{
usage(argv[0], "HELP");
}
else if (strcmp(argv[i], "--keep") == 0)
{
keep = 1;
}
else if (strcmp(argv[i], "--license") == 0)
{
usage(argv[0], "HELP");
}
#ifndef PBZIP_NO_LOADAVG
else if (strcmp(argv[i], "--loadavg") == 0)
{
useLoadAverage = 1;
}
#endif
else if (strcmp(argv[i], "--quiet") == 0)
{
QuietMode = 1;
}
else if (strcmp(argv[i], "--read") == 0)
{
readEntireFile = 1;
}
else if (strcmp(argv[i], "--stdout") == 0)
{
OutputStdOut = 1; keep = 1;
}
else if (strcmp(argv[i], "--test") == 0)
{
testFile = 1;
}
else if (strcmp(argv[i], "--verbose") == 0)
{
QuietMode = 0;
}
else if (strcmp(argv[i], "--version") == 0)
{
banner(); exit(0);
}
continue;
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "argv[%u]: %s Len: %d\n", i, argv[i], strlen(argv[i]));
#endif
// get command line options with single "-"
// check for multiple switches grouped together
for (j=1; argv[i][j] != '\0'; j++)
{
switch (argv[i][j])
{
case 'p': k = j+1; cmdLineTempCount = 0; strcpy(cmdLineTemp, "2");
while (argv[i][k] != '\0' && k < sizeof(cmdLineTemp))
{
// no more numbers, finish
if ((argv[i][k] < '0') || (argv[i][k] > '9'))
break;
k++;
cmdLineTempCount++;
}
if (cmdLineTempCount == 0)
usage(argv[0], "Cannot parse -p argument");
strncpy(cmdLineTemp, argv[i]+j+1, cmdLineTempCount);
cmdLineTemp[cmdLineTempCount] = '\0';
numCPU = atoi(cmdLineTemp);
if (numCPU > 4096)
{
fprintf(stderr,"pbzip2: *ERROR: Maximal number of supported processors is 4096! Aborting...\n");
return 1;
}
else if (numCPU < 1)
{
fprintf(stderr,"pbzip2: *ERROR: Minimum number of supported processors is 1! Aborting...\n");
return 1;
}
j += cmdLineTempCount;
#ifdef PBZIP_DEBUG
fprintf(stderr, "-p%d\n", numCPU);
#endif
break;
case 'b': k = j+1; cmdLineTempCount = 0; strcpy(cmdLineTemp, "9"); blockSize = 900000;
while (argv[i][k] != '\0' && k < sizeof(cmdLineTemp))
{
// no more numbers, finish
if ((argv[i][k] < '0') || (argv[i][k] > '9'))
break;
k++;
cmdLineTempCount++;
}
if (cmdLineTempCount == 0)
usage(argv[0], "Cannot parse file block size");
strncpy(cmdLineTemp, argv[i]+j+1, cmdLineTempCount);
cmdLineTemp[cmdLineTempCount] = '\0';
blockSize = atoi(cmdLineTemp)*100000;
if ((blockSize < 100000) || (blockSize > 1000000000))
{
fprintf(stderr,"pbzip2: *ERROR: File block size Min: 100k and Max: 10000k! Aborting...\n");
return 1;
}
j += cmdLineTempCount;
#ifdef PBZIP_DEBUG
fprintf(stderr, "-b%d\n", blockSize);
#endif
break;
case 'm': k = j+1; cmdLineTempCount = 0; strcpy(cmdLineTemp, "1"); maxMemory = 1000000;
while (argv[i][k] != '\0' && k < sizeof(cmdLineTemp))
{
// no more numbers, finish
if ((argv[i][k] < '0') || (argv[i][k] > '9'))
break;
k++;
cmdLineTempCount++;
}
if (cmdLineTempCount == 0)
usage(argv[0], "Cannot parse -m argument");
strncpy(cmdLineTemp, argv[i]+j+1, cmdLineTempCount);
cmdLineTemp[cmdLineTempCount] = '\0';
maxMemory = atoi(cmdLineTemp)*1000000;
if ((maxMemory < 1000000) || (maxMemory > 1000000000))
{
fprintf(stderr,"pbzip2: *ERROR: Memory usage size Min: 1MB and Max: 1000MB! Aborting...\n");
return 1;
}
j += cmdLineTempCount;
#ifdef PBZIP_DEBUG
fprintf(stderr, "-m%d\n", maxMemory);
#endif
break;
#ifdef USE_STACKSIZE_CUSTOMIZATION
case 'S': k = j+1; cmdLineTempCount = 0; strcpy(cmdLineTemp, "0"); ChildThreadStackSize = -1;
while (argv[i][k] != '\0' && k < sizeof(cmdLineTemp))
{
// no more numbers, finish
if ((argv[i][k] < '0') || (argv[i][k] > '9'))
break;
k++;
cmdLineTempCount++;
}
if (cmdLineTempCount == 0)
usage(argv[0], "Cannot parse -S argument");
strncpy(cmdLineTemp, argv[i]+j+1, cmdLineTempCount);
cmdLineTemp[cmdLineTempCount] = '\0';
ChildThreadStackSize = atoi(cmdLineTemp)*1024;
if (ChildThreadStackSize < 0)
{
fprintf(stderr,"pbzip2: *ERROR: Parsing -S: invalid stack size specified [%d]! Ignoring...\n",
ChildThreadStackSize);
}
else if (ChildThreadStackSize < PTHREAD_STACK_MIN)
{
fprintf(stderr,"pbzip2: *WARNING: Stack size %d bytes less than minumum - adjusting to %d bytes.\n",
ChildThreadStackSize, PTHREAD_STACK_MIN);
ChildThreadStackSize = PTHREAD_STACK_MIN;
}
j += cmdLineTempCount;
#ifdef PBZIP_DEBUG
fprintf(stderr, "-S%d\n", ChildThreadStackSize);
#endif
break;
#endif // USE_STACKSIZE_CUSTOMIZATION
case 'd': decompress = 1; break;
case 'c': OutputStdOut = 1; keep = 1; break;
case 'f': force = 1; ForceOverwrite = 1; break;
case 'h': usage(argv[0], "HELP"); break;
case 'k': keep = 1; break;
#ifndef PBZIP_NO_LOADAVG
case 'l': useLoadAverage = 1; break;
#endif
case 'L': banner(); exit(0); break;
case 'q': QuietMode = 1; break;
case 'r': readEntireFile = 1; break;
case 't': testFile = 1; break;
case 'v': QuietMode = 0; break;
case 'V': banner(); exit(0); break;
case 'z': compress = 1; break;
case '1': BWTblockSize = 1; break;
case '2': BWTblockSize = 2; break;
case '3': BWTblockSize = 3; break;
case '4': BWTblockSize = 4; break;
case '5': BWTblockSize = 5; break;
case '6': BWTblockSize = 6; break;
case '7': BWTblockSize = 7; break;
case '8': BWTblockSize = 8; break;
case '9': BWTblockSize = 9; break;
}
}
}
else
{
// add filename to list for processing FileListCount
FileList[FileListCount] = argv[i];
FileListCount++;
}
} /* for */
Bz2HeaderZero[3] = '0' + BWTblockSize;
bz2Header[3] = Bz2HeaderZero[3];
// check to make sure we are not trying to compress and decompress at same time
if ((compress == 1) && (decompress == 1))
{
fprintf(stderr,"pbzip2: *ERROR: Can't compress and uncompress data at same time. Aborting!\n");
fprintf(stderr,"pbzip2: For help type: %s -h\n", argv[0]);
return 1;
}
if (FileListCount == 0)
{
if (testFile == 1)
{
#ifndef WIN32
if (isatty(fileno(stdin)))
#else
if (_isatty(_fileno(stdin)))
#endif
{
fprintf(stderr,"pbzip2: *ERROR: Won't read compressed data from terminal. Aborting!\n");
fprintf(stderr,"pbzip2: For help type: %s -h\n", argv[0]);
return 1;
}
// expecting data from stdin
FileList[FileListCount] = stdinFile;
FileListCount++;
}
else if (OutputStdOut == 1)
{
#ifndef WIN32
if (isatty(fileno(stdout)))
#else
if (_isatty(_fileno(stdout)))
#endif
{
fprintf(stderr,"pbzip2: *ERROR: Won't write compressed data to terminal. Aborting!\n");
fprintf(stderr,"pbzip2: For help type: %s -h\n", argv[0]);
return 1;
}
// expecting data from stdin
FileList[FileListCount] = stdinFile;
FileListCount++;
}
else if ((decompress == 1) && (argc == 2))
{
#ifndef WIN32
if (isatty(fileno(stdin)))
#else
if (_isatty(_fileno(stdin)))
#endif
{
fprintf(stderr,"pbzip2: *ERROR: Won't read compressed data from terminal. Aborting!\n");
fprintf(stderr,"pbzip2: For help type: %s -h\n", argv[0]);
return 1;
}
// expecting data from stdin via TAR
OutputStdOut = 1;
keep = 1;
FileList[FileListCount] = stdinFile;
FileListCount++;
}
else
{
// probably trying to input data from stdin
if (QuietMode != 1)
fprintf(stderr,"pbzip2: Assuming input data coming from stdin...\n\n");
OutputStdOut = 1;
keep = 1;
#ifndef WIN32
if (isatty(fileno(stdout)))
#else
if (_isatty(_fileno(stdout)))
#endif
{
fprintf(stderr,"pbzip2: *ERROR: Won't write compressed data to terminal. Aborting!\n");
fprintf(stderr,"pbzip2: For help type: %s -h\n", argv[0]);
return 1;
}
// expecting data from stdin
FileList[FileListCount] = stdinFile;
FileListCount++;
}
}
if (QuietMode != 1)
{
// display program banner
banner();
// do sanity check to make sure integers are the size we expect
#ifdef PBZIP_DEBUG
fprintf(stderr, "off_t size: %u uint size: %u\n", sizeof(OFF_T), sizeof(unsigned int));
#endif
if (sizeof(OFF_T) <= 4)
{
fprintf(stderr, "\npbzip2: *WARNING: off_t variable size only %u bits!\n", sizeof(OFF_T)*CHAR_BIT);
if (decompress == 1)
fprintf(stderr, " You will only able to uncompress files smaller than 2GB in size.\n\n");
else
fprintf(stderr, " You will only able to compress files smaller than 2GB in size.\n\n");
}
}
// Calculate number of processors to use based on load average if requested
#ifndef PBZIP_NO_LOADAVG
if (useLoadAverage == 1)
{
// get current load average
ret = getloadavg(loadAvgArray, 3);
if (ret != 3)
{
loadAverage = 0.0;
useLoadAverage = 0;
if (QuietMode != 1)
fprintf(stderr, "pbzip2: *WARNING: Could not get load average! Using requested processors...\n");
}
else
{
#ifdef PBZIP_DEBUG
fprintf(stderr, "Load Avg1: %f Avg5: %f Avg15: %f\n", loadAvgArray[0], loadAvgArray[1], loadAvgArray[2]);
#endif
// use 1 min load average to adjust number of processors used
loadAverage = loadAvgArray[0]; // use [1] for 5 min average and [2] for 15 min average
// total number processors minus load average rounded up
numCPUidle = numCPUtotal - (int)(loadAverage + 0.5);
// if user asked for a specific # processors and they are idle, use all requested
// otherwise give them whatever idle processors are available
if (numCPUidle < numCPU)
numCPU = numCPUidle;
if (numCPU < 1)
numCPU = 1;
}
}
#endif
// Initialize child threads attributes
initChildThreadAttributes();
// setup signal handling (should be before creating any child thread)
sigInFilename = NULL;
sigOutFilename = NULL;
ret = setupSignalHandling();
if (ret != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Can't setup signal handling [%d]. Aborting!\n", ret);
return 1;
}
// Create and start terminator thread.
ret = setupTerminator();
if (ret != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Can't setup terminator thread [%d]. Aborting!\n", ret);
return 1;
}
if (numCPU < 1)
numCPU = 1;
// display global settings
if (QuietMode != 1)
{
if (testFile != 1)
{
fprintf(stderr, "\n # CPUs: %d\n", numCPU);
#ifndef PBZIP_NO_LOADAVG
if (useLoadAverage == 1)
fprintf(stderr, " Load Average: %.2f\n", loadAverage);
#endif
if (decompress != 1)
{
fprintf(stderr, " BWT Block Size: %d00 KB\n", BWTblockSize);
if (blockSize < 100000)
fprintf(stderr, "File Block Size: %d bytes\n", blockSize);
else
fprintf(stderr, "File Block Size: %d KB\n", blockSize/1000);
}
fprintf(stderr, " Maximum Memory: %d MB\n", maxMemory/1000000);
#ifdef USE_STACKSIZE_CUSTOMIZATION
if (ChildThreadStackSize > 0)
fprintf(stderr, " Stack Size: %d KB\n", ChildThreadStackSize/1024);
#endif
}
fprintf(stderr, "-------------------------------------------\n");
}
int mutexesInitRet = mutexesInit();
if ( mutexesInitRet != 0 )
{
return mutexesInitRet;
}
// create queue
fifo = FifoQueue = queueInit(numCPU);
if (fifo == NULL)
{
fprintf (stderr, "pbzip2: *ERROR: Queue Init failed. Aborting...\n");
return 1;
}
// process all files
for (fileLoop=0; fileLoop < FileListCount; fileLoop++)
{
producerDone = 0;
InFileSize = 0;
NumBlocks = 0;
// set input filename
InFilename = FileList[fileLoop];
// test file for errors if requested
if (testFile != 0)
{
if (QuietMode != 1)
{
fprintf(stderr, " File #: %d of %d\n", fileLoop+1, FileListCount);
if (strcmp(InFilename, "-") != 0)
fprintf(stderr, " Testing: %s\n", InFilename);
else
fprintf(stderr, " Testing: <stdin>\n");
}
ret = testCompressedData(InFilename);
if (ret > 0)
return ret;
else if (ret == 0)
{
if (QuietMode != 1)
fprintf(stderr, " Test: OK\n");
}
else
errLevel = 2;
if (QuietMode != 1)
fprintf(stderr, "-------------------------------------------\n");
continue;
}
// set ouput filename
outFilename = std::string(FileList[fileLoop]);
if ((decompress == 1) && (strcmp(InFilename, "-") != 0))
{
// check if input file is a valid .bz2 compressed file
hInfile = open(InFilename, O_RDONLY | O_BINARY);
// check to see if file exists before processing
if (hInfile == -1)
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] NOT found! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
memset(tmpBuff, 0, sizeof(tmpBuff));
size_t size = do_read(hInfile, tmpBuff, strlen(bz2Header)+1);
close(hInfile);
if ((size == (size_t)(-1)) || (size < strlen(bz2Header)+1))
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is NOT a valid bzip2! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
else
{
// make sure start of file has valid bzip2 header
if (memstr(tmpBuff, 4, bz2Header, 3) == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is NOT a valid bzip2! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
// skip 4th char which differs depending on BWT block size used
if (memstr(tmpBuff+4, size-4, bz2Header+4, strlen(bz2Header)-4) == NULL)
{
// check to see if this is a special 0 byte file
if (memstr(tmpBuff+4, size-4, Bz2HeaderZero+4, strlen(bz2Header)-4) == NULL)
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is NOT a valid bzip2! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "** ZERO byte compressed file detected\n");
#endif
}
// set block size for decompression
if ((tmpBuff[3] >= '1') && (tmpBuff[3] <= '9'))
BWTblockSizeChar = tmpBuff[3];
else
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is NOT a valid bzip2! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
}
// check if filename ends with .bz2
std::string bz2Tail(".bz2");
if ( ends_with_icase(outFilename, bz2Tail) )
{
// remove .bz2 extension
outFilename.resize( outFilename.size() - bz2Tail.size() );
}
else
{
// add .out extension so we don't overwrite original file
outFilename += ".out";
}
} // decompress == 1
else
{
// check input file to make sure its not already a .bz2 file
std::string bz2Tail(".bz2");
if ( ends_with_icase(std::string(InFilename), bz2Tail) )
{
fprintf(stderr, "pbzip2: *ERROR: Input file [%s] already has a .bz2 extension! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
outFilename += bz2Tail;
}
// setup signal handling filenames
sigInFilename = InFilename;
sigOutFilename = outFilename.c_str();
if (strcmp(InFilename, "-") != 0)
{
struct stat statbuf;
// read file for compression
hInfile = open(InFilename, O_RDONLY | O_BINARY);
// check to see if file exists before processing
if (hInfile == -1)
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] NOT found! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
// get some information about the file
fstat(hInfile, &statbuf);
// check to make input is not a directory
if (S_ISDIR(statbuf.st_mode))
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is a directory! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
// check to make sure input is a regular file
if (!S_ISREG(statbuf.st_mode))
{
fprintf(stderr, "pbzip2: *ERROR: File [%s] is not a regular file! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
// get size of file
#ifndef WIN32
InFileSize = statbuf.st_size;
#else
fileSize_temp.LowPart = GetFileSize((HANDLE)_get_osfhandle(hInfile), (unsigned long *)&fileSize_temp.HighPart);
InFileSize = fileSize_temp.QuadPart;
#endif
// don't process a 0 byte file
if (InFileSize == 0)
{
if (decompress == 1)
{
fprintf(stderr, "pbzip2: *ERROR: File is of size 0 [%s]! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
// make sure we handle zero byte files specially
zeroByteFile = 1;
}
else
zeroByteFile = 0;
// get file meta data to write to output file
if (getFileMetaData(InFilename) != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Could not get file meta data from [%s]! Skipping...\n", InFilename);
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
}
else
{
hInfile = 0; // stdin
InFileSize = -1; // fake it
}
// check to see if output file exists
if ((force != 1) && (OutputStdOut == 0))
{
hOutfile = open(outFilename.c_str(), O_RDONLY | O_BINARY);
// check to see if file exists before processing
if (hOutfile != -1)
{
fprintf(stderr, "pbzip2: *ERROR: Output file [%s] already exists! Use -f to overwrite...\n", outFilename.c_str());
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
close(hOutfile);
errLevel = 1;
continue;
}
}
if (readEntireFile == 1)
{
if (hInfile == 0)
{
if (QuietMode != 1)
fprintf(stderr, " *Warning: Ignoring -r switch since input is stdin.\n");
}
else
{
// determine block size to try and spread data equally over # CPUs
blockSize = InFileSize / numCPU;
}
}
// display per file settings
if (QuietMode != 1)
{
fprintf(stderr, " File #: %d of %d\n", fileLoop+1, FileListCount);
fprintf(stderr, " Input Name: %s\n", hInfile != 0 ? InFilename : "<stdin>");
if (OutputStdOut == 0)
fprintf(stderr, " Output Name: %s\n\n", outFilename.c_str());
else
fprintf(stderr, " Output Name: <stdout>\n\n");
if (decompress == 1)
fprintf(stderr, " BWT Block Size: %c00k\n", BWTblockSizeChar);
if (strcmp(InFilename, "-") != 0)
fprintf(stderr, " Input Size: %"PRIu64" bytes\n", (unsigned long long)InFileSize);
}
if (decompress == 1)
{
numBlocks = 0;
// Do not use threads if we only have 1 CPU or small files
if ((numCPU == 1) || (InFileSize < 1000000))
noThreads = 1;
else
noThreads = 0;
// Enable threads method for uncompressing from stdin
if ((numCPU > 1) && (strcmp(InFilename, "-") == 0))
noThreads = 0;
}
else
{
if (InFileSize > 0)
{
// calculate the # of blocks of data
numBlocks = (InFileSize + blockSize - 1) / blockSize;
// Do not use threads for small files where we only have 1 block to process
// or if we only have 1 CPU
if ((numBlocks == 1) || (numCPU == 1))
noThreads = 1;
else
noThreads = 0;
}
else
{
// Simulate a "big" number of buffers. Will need to resize it later
numBlocks = 10000;
}
// write special compressed data for special 0 byte input file case
if (zeroByteFile == 1)
{
hOutfile = 1;
// write to file instead of stdout
if (OutputStdOut == 0)
{
hOutfile = open(outFilename.c_str(), O_RDWR | O_CREAT | O_TRUNC | O_BINARY, FILE_MODE);
// check to see if file creation was successful
if (hOutfile == -1)
{
fprintf(stderr, "pbzip2: *ERROR: Could not create output file [%s]!\n", outFilename.c_str());
close(hOutfile);
errLevel = 1;
continue;
}
}
// write data to the output file
ret = do_write(hOutfile, Bz2HeaderZero, sizeof(Bz2HeaderZero));
if (OutputStdOut == 0)
close(hOutfile);
if (ret != sizeof(Bz2HeaderZero))
{
fprintf(stderr, "pbzip2: *ERROR: Could not write to file! Skipping...\n");
fprintf(stderr, "-------------------------------------------\n");
errLevel = 1;
continue;
}
if (QuietMode != 1)
{
fprintf(stderr, " Output Size: %"PRIu64" bytes\n", (unsigned long long)sizeof(Bz2HeaderZero));
fprintf(stderr, "-------------------------------------------\n");
}
// remove input file unless requested not to by user
if (keep != 1)
{
struct stat statbuf;
if (OutputStdOut == 0)
{
// only remove input file if output file exists
if (stat(outFilename.c_str(), &statbuf) == 0)
remove(InFilename);
}
else
remove(InFilename);
}
continue;
}
}
#ifdef PBZIP_DEBUG
fprintf(stderr, "# Blocks: %d\n", numBlocks);
#endif
// set global variable
NumBlocksEstimated = numBlocks;
// Calculate maximum number of buffered blocks to use
NumBufferedBlocksMax = maxMemory / blockSize;
// Subtract blocks for number of extra buffers in producer and fileWriter (~ numCPU for each)
if ((int)NumBufferedBlocksMax - (numCPU * 2) < 1)
NumBufferedBlocksMax = 1;
else
NumBufferedBlocksMax = NumBufferedBlocksMax - (numCPU * 2);
#ifdef PBZIP_DEBUG
fprintf(stderr, "pbzip2: maxMemory: %d blockSize: %d\n", maxMemory, blockSize);
fprintf(stderr, "pbzip2: NumBufferedBlocksMax: %u\n", NumBufferedBlocksMax);
#endif
// create output buffer
outputBufferInit(NumBufferedBlocksMax);
if (decompress == 1)
{
// use multi-threaded code
if (noThreads == 0)
{
// do decompression
if (QuietMode != 1)
fprintf(stderr, "Decompressing data...\n");
for (i=0; (int)i < numCPU; i++)
{
ret = pthread_create(&fifo->consumers[i], &ChildThreadAttributes, consumer_decompress, fifo);
if (ret != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Not enough resources to create consumer thread #%u (code = %d) Aborting...\n", i, ret);
return 1;
}
}
ret = pthread_create(&output, &ChildThreadAttributes, fileWriter, (void*)outFilename.c_str());
if (ret != 0)
{
handle_error(EF_EXIT, 1,
"pbzip2: *ERROR: Not enough resources to create fileWriter thread (code = %d) Aborting...\n", ret);
ret = pthread_join(TerminatorThread, NULL);
return 1;
}
// start reading in data for decompression
ret = producer_decompress(hInfile, InFileSize, fifo);
if (ret == -99)
{
// only 1 block detected, use single threaded code to decompress
noThreads = 1;
switchedMtToSt = true;
// wait for fileWriter thread to exit
if (pthread_join(output, NULL) != 0)
{
errLevel = 1;
}
}
else if (ret != 0)
errLevel = 1;
}
// use single threaded code
if ((noThreads == 1) && (errLevel == 0))
{
if (QuietMode != 1)
fprintf(stderr, "Decompressing data (no threads)...\n");
if (hInfile > 0)
close(hInfile);
ret = directdecompress(InFilename, outFilename.c_str());
if (ret != 0)
errLevel = 1;
}
}
else
{
// do compression code
// use multi-threaded code
if (noThreads == 0)
{
if (QuietMode != 1)
fprintf(stderr, "Compressing data...\n");
for (i=0; (int)i < numCPU; i++)
{
ret = pthread_create(&fifo->consumers[i], &ChildThreadAttributes, consumer, fifo);
if (ret != 0)
{
fprintf(stderr, "pbzip2: *ERROR: Not enough resources to create consumer thread #%u (code = %d) Aborting...\n", i, ret);
return 1;
}
}
ret = pthread_create(&output, &ChildThreadAttributes, fileWriter, (void*)outFilename.c_str());
if (ret != 0)
{
handle_error(EF_EXIT, 1,
"pbzip2: *ERROR: Not enough resources to create fileWriter thread (code = %d) Aborting...\n", ret);
pthread_join(TerminatorThread, NULL);
return 1;
}
// start reading in data for compression
ret = producer(hInfile, blockSize, fifo);
if (ret != 0)
errLevel = 1;
}
else
{
// do not use threads for compression
if (QuietMode != 1)
fprintf(stderr, "Compressing data (no threads)...\n");
ret = directcompress(hInfile, InFileSize, blockSize, outFilename.c_str());
if (ret != 0)
errLevel = 1;
}
} // else
if (noThreads == 0)
{
// wait for fileWriter thread to exit
ret = pthread_join(output, NULL);
if (ret != 0)
errLevel = 1;
}
if ((noThreads == 0) || switchedMtToSt )
{
// wait for consumer threads to exit
for (i = 0; (int)i < numCPU; i++)
{
ret = pthread_join(fifo->consumers[i], NULL);
if (ret != 0)
errLevel = 1;
}
}
if (OutputStdOut == 0)
{
// write store file meta data to output file
if (writeFileMetaData(outFilename.c_str()) != 0)
fprintf(stderr, "pbzip2: *ERROR: Could not write file meta data to [%s]!\n", InFilename);
}
// finished processing file (mutex since accessed by cleanup procedure)
safe_mutex_lock(&ErrorHandlerMutex);
sigInFilename = NULL;
sigOutFilename = NULL;
safe_mutex_unlock(&ErrorHandlerMutex);
// remove input file unless requested not to by user
if (keep != 1)
{
struct stat statbuf;
if (OutputStdOut == 0)
{
// only remove input file if output file exists
if (stat(outFilename.c_str(), &statbuf) == 0)
remove(InFilename);
}
else
remove(InFilename);
}
// reclaim memory
OutputBuffer.clear();
fifo->empty = 1;
fifo->full = 0;
fifo->head = 0;
fifo->tail = 0;
if (QuietMode != 1)
fprintf(stderr, "-------------------------------------------\n");
} /* for */
// Terminate signal handler thread sending SIGQUIT signal
ret = pthread_kill(SignalHandlerThread, SIG_HANDLER_QUIT_SIGNAL);
if (ret != 0)
{
fprintf(stderr, "Couldn't signal signal QUIT to SignalHandlerThread [%d]. Quitting prematurely!\n", ret);
exit(errLevel);
}
else
{
ret = pthread_join(SignalHandlerThread, NULL);
if (ret != 0)
{
fprintf(stderr, "Error on join of SignalHandlerThread [%d]\n", ret);
}
}
syncSetFinishedFlag(1);
ret = pthread_join(TerminatorThread, NULL);
if (ret != 0)
{
fprintf(stderr, "Error on join of TerminatorThread [%d]\n", ret);
}
// reclaim memory
queueDelete(fifo);
mutexesDelete();
disposeMemory(FileList);
// get current time for end of benchmark
#ifndef WIN32
gettimeofday(&tvStopTime, &tz);
#else
GetSystemTime(&systemtime);
SystemTimeToFileTime(&systemtime, (FILETIME *)&filetime);
tvStopTime.tv_sec = filetime.QuadPart / 10000000;
tvStopTime.tv_usec = (filetime.QuadPart - (LONGLONG)tvStopTime.tv_sec * 10000000) / 10;
#endif
#ifdef PBZIP_DEBUG
fprintf(stderr, "\n Start Time: %ld + %ld\n", tvStartTime.tv_sec, tvStartTime.tv_usec);
fprintf(stderr, " Stop Time : %ld + %ld\n", tvStopTime.tv_sec, tvStopTime.tv_usec);
#endif
// convert time structure to real numbers
timeStart = (double)tvStartTime.tv_sec + ((double)tvStartTime.tv_usec / 1000000);
timeStop = (double)tvStopTime.tv_sec + ((double)tvStopTime.tv_usec / 1000000);
timeCalc = timeStop - timeStart;
if (QuietMode != 1)
fprintf(stderr, "\n Wall Clock: %f seconds\n", timeCalc);
exit(errLevel);
}
|