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
|
(*
Tux Commander - UCore - Some engine-related core functions
Copyright (C) 2008 Tomas Bzatek <tbzatek@users.sourceforge.net>
Check for updates on tuxcmd.sourceforge.net
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
unit UCore;
interface
uses glib2, gtk2, SyncObjs, Classes, GTKForms, GTKView, ULibc, UEngines, UCoreUtils, UProgress, UVFSCore, uVFSprototypes;
function FillPanel(List: TList; ListView: TGTKListView; Engine: TPanelEngine; LeftPanel: boolean): boolean;
function MakeDirectory(ListView: TGTKListView; Engine: TPanelEngine; LeftPanel: boolean; NewDir: string): boolean;
procedure FindNextSelected(ListView: TGTKListView; DataList: TList; var Item1, Item2: string);
procedure UnselectAll(ListView: TGTKListView; DataList: TList);
type TVFSCallbackThread = class(TThread)
private
FThreadID: __pthread_t;
FCopyProgressFunc: TEngineProgressFunc;
procedure PrepareExecute; // Call this right after thread has been started
public
AEngine: TPanelEngine;
APlugin: TVFSPlugin;
VFSCallbackEvent: TSimpleEvent;
VFSAskQuestion_Message: PChar;
VFSAskQuestion_Choices: PPChar;
VFSAskQuestion_Choice: PInteger;
VFSAskQuestion_Display: boolean;
VFSAskPassword_Message: PChar;
VFSAskPassword_default_user: PChar;
VFSAskPassword_default_domain: PChar;
VFSAskPassword_default_password: PChar;
VFSAskPassword_flags: TVFSAskPasswordFlags;
VFSAskPassword_username: PPChar;
VFSAskPassword_password: PPChar;
VFSAskPassword_anonymous: PInteger;
VFSAskPassword_domain: PPChar;
VFSAskPassword_password_save: PVFSPasswordSave;
VFSAskPassword_Display: boolean;
VFSAskPassword_Result: LongBool;
VFSCallbackCancelled: boolean;
VFSConnectionManagerMode: boolean;
VFSQuickConnectMode: boolean;
VFSDialogsParentWindow: PGtkWidget;
FCancelRequested: boolean;
constructor Create(CreateSuspended: boolean);
destructor Destroy; override;
end;
TWorkerThread = class(TVFSCallbackThread)
private
GUIMutex: TCriticalSection;
protected
procedure Execute; override;
procedure CommitGUIUpdate;
public
FCancelled: boolean;
// Data to update
FProgress1Pos, FProgress2Pos, FProgress1Max, FProgress2Max: Int64;
FProgress1Text, FProgress2Text, FLabel1Text, FLabel2Text: string;
FGUIProgress1Pos, FGUIProgress2Pos, FGUIProgress1Max, FGUIProgress2Max: Int64;
FGUIProgress1Text, FGUIProgress2Text, FGUILabel1Text, FGUILabel2Text: string;
FGUIChanged: boolean;
FCancelMessage: string;
FDoneThread, FShowCancelMessage,
FDialogShowDirDelete, FDialogShowOverwrite, FDialogShowNewDir, FDialogShowMsgBox: boolean;
FDialogResultDirDelete, FDialogResultOverwrite, FDialogResultNewDir: integer;
FDirDeleteButtonsType: integer;
FDirDeleteLabel1Text, FDirDeleteLabel2Text, FDirDeleteLabel3Text, FDirDeleteCaption: string;
FDirDeleteLabel2Visible, FDirDeleteLabel3Visible: boolean;
FOverwriteButtonsType: integer;
FOverwriteFromLabel, FOverwriteFromInfoLabel, FOverwriteToLabel, FOverwriteToInfoLabel,
FOverwriteRenameStr, FOverwriteSourceFile, FOverwriteDestFile: string;
FNewDirCaption, FNewDirLabel, FNewDirEdit: string;
FMsgBoxText: string;
FMsgBoxButtons: TMessageButtons;
FMsgBoxStyle: TMessageStyle;
FMsgBoxDefault, FMsgBoxEscape, FDialogResultMsgBox: TMessageButton;
FCallbackLockEvent: TSimpleEvent;
// Parameters
ProgressForm: TFProgress;
Engine, SrcEngine, DestEngine: TPanelEngine;
LeftPanel: boolean;
DataList: TList;
ParamBool1, ParamBool2, ParamBool3, ParamBool4, ParamBool5: boolean;
ParamString1, ParamString2, ParamString3: string;
ParamPointer1: Pointer;
ParamInt64: Int64;
ParamInt1, ParamInt2: integer;
ParamLongWord1: LongWord;
ParamCardinal1, ParamCardinal2: Cardinal;
ParamFloat1, ParamFloat2: Extended;
ParamDataItem1: PDataItem;
WorkerProcedure: procedure(SenderThread: TWorkerThread);
SelectedItem: PDataItem;
ExtractFromVFSMode, ExtractFromVFSAll: boolean;
ErrorHappened: boolean;
constructor Create;
destructor Destroy; override;
procedure CancelIt;
function Cancelled: boolean;
procedure UpdateProgress1(const Progress: Int64; const ProgressText: string);
procedure UpdateProgress2(const Progress: Int64; const ProgressText: string);
procedure SetProgress1Params(const ProgressMax: Int64);
procedure SetProgress2Params(const ProgressMax: Int64);
procedure UpdateCaption1(const CaptionText: string);
procedure UpdateCaption2(const CaptionText: string);
function ShowDirDeleteDialog(ButtonsType: integer; const Label1Text: string; const Label2Text: string = '';
const Label3Text: string = ''; const DirDeleteCaption: string = ''): integer;
function ShowOverwriteDialog(ButtonsType: integer; const FromLabel, FromInfoLabel, ToLabel, ToInfoLabel, RenameStr,
SourceFile, DestFile: string): integer;
function ShowNewDirDialog(Caption, LabelCaption, Edit: string): integer;
function ShowMessageBox(const Text: string; Buttons: TMessageButtons; Style: TMessageStyle;
Default, Escape: TMessageButton): TMessageButton;
end;
TGetDirSizeThread = class(TThread)
private
FCancelled: boolean;
protected
procedure Execute; override;
public
Finished: boolean;
Engine: TPanelEngine;
Path: string;
Result: Int64;
constructor Create;
procedure CancelIt;
end;
TOpenDirThread = class(TVFSCallbackThread)
private
function ChangeDir(Engine: TPanelEngine; Path: string; var SelItem: string; const AutoFallBack: boolean): integer;
protected
procedure Execute; override;
public
APath: string;
ASelItem: string;
AAutoFallBack: boolean;
ADirList: TList;
ChDirResult, ListingResult, VFSOpenResult: integer;
Finished, CancelIt: boolean;
RunningTime: Int64;
AFullPath, AHighlightItem: string;
constructor Create;
destructor Destroy; override;
end;
TOpenConnectionThread = class(TVFSCallbackThread)
private
protected
procedure Execute; override;
public
URI: string;
Finished: boolean;
OpenResult: boolean;
constructor Create;
destructor Destroy; override;
end;
// Thread aware functions (also half-thread-safe) without any piece of GTK code
procedure DeleteFilesWorker(SenderThread: TWorkerThread);
procedure CopyFilesWorker(SenderThread: TWorkerThread);
procedure MergeFilesWorker(SenderThread: TWorkerThread);
procedure SplitFilesWorker(SenderThread: TWorkerThread);
procedure ChmodFilesWorker(SenderThread: TWorkerThread);
procedure ChownFilesWorker(SenderThread: TWorkerThread);
procedure DummyThreadWorker(SenderThread: TWorkerThread);
// Classic functions - don't need progress window
function CreateSymlink(const FileName, PossibleNewName: string; Engine: TPanelEngine) : boolean;
function EditSymlink(const FileName: string; Engine: TPanelEngine) : boolean;
procedure GetDirSize(AListView: TGTKListView; Engine: TPanelEngine; DataList: TList; AllItems: boolean);
type TMounterItem = class
public
// Strings are in locale encoding (ANSI)
DisplayText, MountPath, Device, IconPath, MountCommand, UmountCommand: string;
DeviceType: integer;
function Mounted: boolean;
function IsInFSTab: boolean;
function Mount: boolean;
function Umount: boolean;
function Eject: boolean;
end;
TConnMgrItem = class
public
ConnectionName: string;
ServiceType, Server, Username, Password, TargetDir: string;
PluginID: string; // leave blank for default
function GetURI(IncludePassword: boolean): string;
end;
procedure FillDefaultFstabMounterItems;
procedure ProcessProgressThread(SenderThread: TWorkerThread; ProgressForm: TFProgress);
function CRCGetInfo(FileName: string; Engine: TPanelEngine; var TargetName: string; var TargetCRC: LongWord; var Size: Int64): boolean;
function ComputeBlockSize(TotalSize: Int64): longint;
function PurgeDirectory(APath: string): boolean;
procedure CleanTempDirs;
procedure DebugWriteListSL(List: TList);
procedure DebugWriteList(List: TList);
{$IFDEF KYLIX}
const INFINITE = Cardinal(-1);
{$ENDIF}
var LeftLocalEngine, RightLocalEngine: TPanelEngine;
LeftPanelData, RightPanelData, AssocList, MounterList, ConnectionMgrList: TList;
CommandLineHistory, Bookmarks: TStringList;
LeftPanelTabs, RightPanelTabs: TStringList;
LeftTabSortIDs, RightTabSortIDs: TList;
LeftTabSortTypes, RightTabSortTypes: TList;
FMainEscPressed: boolean;
UsedTempPaths: TStringList;
SelectHistory, SearchHistory, SearchTextHistory: TStringList;
QuickConnectHistory: TStringList;
(********************************************************************************************************************************)
implementation
(********************************************************************************************************************************)
uses SysUtils, DateUtils, StrUtils, UConfig, UDirDelete, UOverwrite, ULocale,
UNewDir, UFileAssoc, USymlink, UCoreClasses, URemoteWait, UMain, UGnome,
crc;
(********************************************************************************************************************************)
constructor TVFSCallbackThread.Create(CreateSuspended: boolean);
begin
inherited Create(CreateSuspended);
APlugin := nil;
VFSCallbackEvent := TSimpleEvent.Create;
VFSAskQuestion_Display := False;
VFSAskPassword_Display := False;
VFSCallbackCancelled := False;
VFSConnectionManagerMode := False;
VFSQuickConnectMode := False;
VFSDialogsParentWindow := FMain.FWidget;
FCancelRequested := False;
end;
destructor TVFSCallbackThread.Destroy;
begin
VFSCallbackEvent.Free;
inherited Destroy;
end;
procedure TVFSCallbackThread.PrepareExecute;
begin
FThreadID := pthread_self;
VFSCallbackCancelled := False;
end;
(********************************************************************************************************************************)
procedure vfs_ask_question_callback(const AMessage: PChar; const Choices: PPChar; choice: PInteger; cancel_choice: Integer; user_data: Pointer); cdecl;
var Thread: TVFSCallbackThread;
begin
Thread := user_data;
if (Thread = nil) { or (not (Thread is TVFSCallbackThread))} then begin
DebugMsg(['(ERROR): vfs_ask_question_callback: user_data is not TVFSCallbackThread, exiting.']);
Exit;
end;
if Thread.FCancelRequested then begin
DebugMsg(['!! (WARNING): vfs_ask_question_callback: FCancelRequested.']);
if (choice <> nil) then choice^ := -1;
Thread.VFSCallbackCancelled := True;
Exit;
end;
if pthread_self = Application.ThreadID then begin
DebugMsg(['!! (WARNING): vfs_ask_question_callback called from the main thread, expected spawn from a TVFSCallbackThread']);
HandleVFSAskQuestionCallback(Thread.VFSDialogsParentWindow, AMessage, Choices, choice);
if (choice <> nil) then Thread.VFSCallbackCancelled := (choice^ < 0) or (choice^ = cancel_choice);
Exit;
end;
if pthread_self = Thread.FThreadID then begin
DebugMsg(['******* vfs_ask_question_callback spawned, user_data = 0x', IntToHex(QWord(user_data), 16), ', ThreadID = 0x', IntToHex(pthread_self, 16)]);
Thread.VFSAskQuestion_Message := AMessage;
Thread.VFSAskQuestion_Choices := Choices;
Thread.VFSAskQuestion_Choice := choice;
Thread.VFSAskQuestion_Display := True;
Thread.VFSCallbackEvent.ResetEvent;
Thread.VFSCallbackEvent.WaitFor(INFINITE);
DebugMsg(['******* thread: resuming...']);
if (choice <> nil) then Thread.VFSCallbackCancelled := (choice^ < 0) or (choice^ = cancel_choice);
Exit;
end;
DebugMsg(['!! (ERROR): vfs_ask_question_callback spawned neither from the main thread nor from active TVFSCallbackThread, dropping the callback to prevent data corruption.']);
DebugMsg([' ThreadID = 0x', IntToHex(pthread_self, 16), ', TVFSCallbackThread ID = 0x', IntToHex(Thread.FThreadID, 16), ', Application.ThreadID = 0x', IntToHex(Application.ThreadID, 16)]);
end;
function vfs_ask_password_callback(const AMessage: PChar; const default_user: PChar; const default_domain: PChar; const default_password: PChar; flags: TVFSAskPasswordFlags;
username, password: PPChar; anonymous: PInteger; domain: PPChar; password_save: PVFSPasswordSave;
user_data: Pointer): LongBool; cdecl;
var Thread: TVFSCallbackThread;
def_pass: PChar;
begin
Result := False;
Thread := user_data;
if (Thread = nil) { or (not (Thread is TVFSCallbackThread))} then begin
DebugMsg(['(ERROR): vfs_ask_question_callback: user_data is not TVFSCallbackThread, exiting.']);
Exit;
end;
if Thread.FCancelRequested then begin
DebugMsg(['!! (WARNING): vfs_ask_password_callback: FCancelRequested.']);
Result := False;
Thread.VFSCallbackCancelled := True;
Exit;
end;
def_pass := default_password;
// Disable password saving if requested
if ConfConnMgrDoNotSynchronizeKeyring then begin
flags := flags and (not VFS_ASK_PASSWORD_SAVING_SUPPORTED);
if password_save <> nil then password_save^ := VFS_PASSWORD_SAVE_NEVER;
end;
if ConfConnMgrDoNotSavePasswords then flags := flags and (not VFS_ASK_PASSWORD_SAVE_INTERNAL) else
if Thread.VFSConnectionManagerMode then flags := flags or VFS_ASK_PASSWORD_SAVE_INTERNAL;
// Use stored password, if previously set
if (((flags and VFS_ASK_PASSWORD_ARCHIVE_MODE) = VFS_ASK_PASSWORD_ARCHIVE_MODE) or Thread.VFSConnectionManagerMode or Thread.VFSQuickConnectMode) and
(password <> nil) and (Thread.AEngine is TVFSEngine) and (Length((Thread.AEngine as TVFSEngine).Password) > 0) then
begin
if not (Thread.AEngine as TVFSEngine).PasswordUsed then begin
DebugMsg([' (II) vfs_ask_password_callback: reusing manually set password']);
password^ := g_strdup(PChar((Thread.AEngine as TVFSEngine).Password));
(Thread.AEngine as TVFSEngine).PasswordUsed := True;
if (password_save <> nil) and Thread.VFSConnectionManagerMode then
if ConfConnMgrDoNotSynchronizeKeyring then password_save^ := VFS_PASSWORD_SAVE_NEVER
else password_save^ := VFS_PASSWORD_SAVE_PERMANENTLY;
Thread.VFSCallbackCancelled := False;
Result := True;
Exit;
end else
if (flags and VFS_ASK_PASSWORD_ARCHIVE_MODE) = VFS_ASK_PASSWORD_ARCHIVE_MODE then
def_pass := PChar((Thread.AEngine as TVFSEngine).Password);
end;
// Ask for password
if pthread_self = Application.ThreadID then begin
DebugMsg(['!! (WARNING): vfs_ask_password_callback called from the main thread, expected spawn from a TVFSCallbackThread']);
Result := HandleVFSAskPasswordCallback(Thread.VFSDialogsParentWindow, AMessage, default_user, default_domain, def_pass, flags, username, password, anonymous, domain, password_save);
Thread.VFSCallbackCancelled := Result = False;
end else
if pthread_self = Thread.FThreadID then begin
DebugMsg(['******* vfs_ask_password_callback spawned, user_data = 0x', IntToHex(QWord(user_data), 16), ', ThreadID = 0x', IntToHex(pthread_self, 16), ', Application.ThreadID = 0x', IntToHex(Application.ThreadID, 16)]);
Thread.VFSAskPassword_Message := AMessage;
Thread.VFSAskPassword_default_user := default_user;
Thread.VFSAskPassword_default_domain := default_domain;
Thread.VFSAskPassword_default_password := def_pass;
Thread.VFSAskPassword_flags := flags;
Thread.VFSAskPassword_username := username;
Thread.VFSAskPassword_password := password;
Thread.VFSAskPassword_anonymous := anonymous;
Thread.VFSAskPassword_domain := domain;
Thread.VFSAskPassword_password_save := password_save;
Thread.VFSAskPassword_Display := True;
Thread.VFSAskPassword_Result := False;
Thread.VFSCallbackEvent.ResetEvent;
Thread.VFSCallbackEvent.WaitFor(INFINITE);
DebugMsg(['******* thread: resuming...']);
Result := Thread.VFSAskPassword_Result;
Thread.VFSCallbackCancelled := Result = False;
end else
begin
DebugMsg(['!! (ERROR): vfs_ask_password_callback spawned neither from the main thread nor from active TVFSCallbackThread, dropping the callback to prevent data corruption.']);
DebugMsg([' ThreadID = 0x', IntToHex(pthread_self, 16), ', TVFSCallbackThread ID = 0x', IntToHex(Thread.FThreadID, 16), ', Application.ThreadID = 0x', IntToHex(Application.ThreadID, 16)]);
end;
// Save password back to the engine
if Result and (password <> nil) and (strlen(password^) > 0) and (Thread.AEngine is TVFSEngine) and
(((flags and VFS_ASK_PASSWORD_ARCHIVE_MODE) = VFS_ASK_PASSWORD_ARCHIVE_MODE) or
(Thread.VFSConnectionManagerMode and (password_save <> nil) and (password_save^ = VFS_PASSWORD_SAVE_PERMANENTLY))) then
begin
(Thread.AEngine as TVFSEngine).Password := string(password^);
(Thread.AEngine as TVFSEngine).PasswordUsed := True;
end;
// Strip password saving if requested
if ConfConnMgrDoNotSynchronizeKeyring and (password_save <> nil) then
password_save^ := VFS_PASSWORD_SAVE_NEVER;
end;
function vfs_progress_callback(position, max: Int64; user_data: Pointer): LongBool; cdecl;
begin
// DebugMsg(['VFSCopyCallBackFunc called (iPos = ', iPos, ', iMax = ', iMax, ')']);
Result := True;
if not Assigned(user_data) then Exit;
if Assigned(TVFSCallbackThread(user_data).FCopyProgressFunc) then
try
Result := TVFSCallbackThread(user_data).FCopyProgressFunc(user_data, position);
except
on E: Exception do DebugMsg(['*** Exception raised in vfs_progress_callback(position=', position, ', max=', max, ', user_data=', user_data, '): (', E.ClassName, '): ', E.Message]);
end;
end;
(********************************************************************************************************************************)
procedure ClearListData(List: TList);
var i: integer;
begin
try
if not Assigned(List) then Exit;
if List.Count > 0 then
for i := 0 to List.Count - 1 do
FreeDataItem(PDataItem(List[i]));
List.Clear;
except
on E: Exception do DebugMsg(['*** Exception raised in UCore.ClearListData (', E.ClassName, '): ', E.Message]);
end;
end;
(********************************************************************************************************************************)
procedure AddUpDirItem(ListView: TGTKListView; DataList: TList);
var ListItem: TGTKListItem;
Data: PDataItem;
j: integer;
s: string;
begin
if ListView.Items.Count = 0
then ListItem := ListView.Items.Add
else ListItem := ListView.Items[0];
Data := malloc(SizeOf(TDataItem));
memset(Data, 0, SizeOf(TDataItem));
with Data^ do begin
UpDir := True;
IsDotFile := False;
FName := nil;
FDisplayName := nil;
LnkPointTo := nil;
Selected := False;
IsLnk := False;
for j := 0 to Length(ColumnData) - 1 do ColumnData[j] := nil;
for j := 1 to ConstNumPanelColumns do
if ConfColumnVisible[j] then
case ConfColumnIDs[j] of
1, 2: begin
if ConfDisableDirectoryBrackets then s := '..'
else s := '[..]';
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s));
end;
4: ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(LANGDIR));
end;
Icon := UpDirIcon.FPixbuf;
ItemColor := NormalItemGDKColor;
if not Application.GTKVersion_2_0_5_Up then ListItem.SetValue(0, Data);
end;
ListItem.Data := Data;
DataList.Add(Data);
end;
(********************************************************************************************************************************)
function FillPanel(List: TList; ListView: TGTKListView; Engine: TPanelEngine; LeftPanel: boolean): boolean;
var DataList: TList;
i, j, SortColumnID, ItemCount : integer;
ListItem : TGTKListItem;
Ext, s, s2 : string;
SortOrder: TGTKTreeViewSortOrder;
Time1, Time2: TDateTime;
IsRoot: boolean;
UsrManager: TUserManager;
begin
Result := False;
try
UsrManager := nil;
if LeftPanel then DataList := LeftPanelData
else DataList := RightPanelData;
IsRoot := (Engine.Path = '/') and (not ((Engine is TVFSEngine) and (Engine as TVFSEngine).ArchiveMode));
{ Time1 := Now;
Time2 := Now;
DebugMsg(['Get Listing: ', SecondOf(Time2 - Time1), ':', MillisecondOf(Time2 - Time1)]); }
Time1 := Now;
SortColumnID := ListView.SortColumnID;
SortOrder := ListView.SortOrder;
ListView.SetSortInfo(-1, soAscending);
ClearListData(DataList);
if List.Count + Ord(not IsRoot) < ListView.Items.Count then
for i := ListView.Items.Count - 1 downto List.Count + Ord(not IsRoot) do
ListView.Items.Delete(i);
ItemCount := ListView.Items.Count;
Time2 := Now;
DebugMsg(['Items clear: ', SecondOf(Time2 - Time1), ':', MillisecondOf(Time2 - Time1)]);
Time1 := Now;
if ((Engine is TVFSEngine) and (Engine as TVFSEngine).ArchiveMode) or (Engine.Path <> '/') then AddUpDirItem(ListView, DataList);
if List.Count > 0 then
for i := 0 to List.Count - 1 do
with PDataItem(List[i])^ do begin
if i + Ord(not IsRoot) > ItemCount - 1
then ListItem := ListView.Items.Add
else ListItem := ListView.Items[i + Ord(not IsRoot)];
s := String(FDisplayName);
Ext := '';
if not IsDir then SeparateExt(s, s, Ext);
// Ext := ANSIToUTF8(Ext);
// Fill the column data
for j := 1 to ConstNumPanelColumns do
if ConfColumnVisible[j] then
case ConfColumnIDs[j] of
1: begin
if IsDir and (not ConfDisableDirectoryBrackets)
then s2 := Format('[%s]', [s])
else s2 := s;
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
2: begin
if IsDir and (not ConfDisableDirectoryBrackets)
then s2 := Format('[%s]', [FDisplayName])
else s2 := FDisplayName;
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
3: ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(Ext));
4: begin
if IsDir then s2 := LANGDIR
else s2 := FormatSize(Size, 0);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
5: begin
s2 := FormatDate(ModifyTime, True, True);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
6: begin
s2 := FormatDate(ModifyTime, False, True);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
7: begin
s2 := FormatDate(ModifyTime, True, False);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
8: begin
if ConfShowTextUIDs then begin
if not Assigned(UsrManager) then UsrManager := TUserManager.Create;
s2 := UsrManager.GetUserName(UID, False);
end else s2 := IntToStr(UID);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
9: begin
if ConfShowTextUIDs then begin
if not Assigned(UsrManager) then UsrManager := TUserManager.Create;
s2 := UsrManager.GetGroupName(GID, False);
end else s2 := IntToStr(GID);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
10: begin
if ConfOctalPerm then s2 := Format('%.4d', [AttrToOctal(Mode mod $1000)])
else s2 := AttrToStr(Mode);
ColumnData[ConfColumnIDs[j] - 1] := strdup(PChar(s2));
end;
end;
ItemColor := nil;
AssignFileType(List[i]);
DataList.Add(List[i]);
ListItem.Data := DataList[DataList.Count - 1];
if not Application.GTKVersion_2_0_5_Up then ListItem.SetValue(0, List[i]);
end;
Time2 := Now;
DebugMsg(['Fill panel: ', SecondOf(Time2 - Time1), ':', MillisecondOf(Time2 - Time1)]);
// DebugWriteList(DataList);
if Assigned(UsrManager) then UsrManager.Free;
Time1 := Now;
ListView.SetSortInfo(SortColumnID, SortOrder);
Time2 := Now;
DebugMsg(['Sorting: ', SecondOf(Time2 - Time1), ':', MillisecondOf(Time2 - Time1)]);
DebugMsg(['------------------------------']);
Result := True;
except
on E: Exception do begin
Application.MessageBox(Format(LANGErrorGettingListingForSPanelNoPath, [LANGPanelStrings[LeftPanel], E.Message]), [mbOK], mbError, mbNone, mbOK);
Exit;
end;
end;
end;
(********************************************************************************************************************************)
function MakeDirectory(ListView: TGTKListView; Engine: TPanelEngine; LeftPanel: boolean; NewDir: string): boolean;
var Error: integer;
begin
Result := False;
try
Error := Engine.MakeDir(IncludeTrailingPathDelimiter(Engine.Path) + NewDir);
if Error <> 0 then begin
Application.MessageBox(Format(LANGErrorCreatingNewDirectorySInSPanel, [StrToUTF8(NewDir), LANGPanelStrings[LeftPanel], GetErrorString(Error)]), [mbOK], mbError, mbNone, mbOK);
Exit;
end;
Result := True;
except
on E: Exception do begin
Application.MessageBox(Format(LANGErrorCreatingNewDirectorySInSPanelNoPath, [LANGPanelStrings[LeftPanel], E.Message]), [mbOK], mbError, mbNone, mbOK);
Exit;
end;
end;
end;
(********************************************************************************************************************************)
procedure DeleteFilesWorker(SenderThread: TWorkerThread);
var SkipAll: boolean;
function HandleDelete(AFileRec: PDataItemSL): boolean;
var Res, Response: integer;
begin
Result := True;
// DebugMsg(['Debug: IsDir: ', AFileRec^.IsDir, ', Stage1: ', AFileRec^.Stage1, ', IsLnk: ', AFileRec^.IsLnk, '; Result = ', AFileRec^.IsDir and AFileRec^.Stage1 and (not AFileRec^.IsLnk)]);
if AFileRec^.IsDir and AFileRec^.Stage1 and (not AFileRec^.IsLnk) then Exit;
Res := SenderThread.Engine.Remove(String(AFileRec^.FName));
// DebugMsg(['Result : ', Res]);
if Res <> 0 then
if SkipAll then Result := True else
begin
Response := SenderThread.ShowDirDeleteDialog(1, LANGTheFileDirectory, String(AFileRec^.FDisplayName),
Format(LANGCouldNotBeDeletedS, [GetErrorString(Res)]));
case Response of
1 : Result := True;
3 : begin
SkipAll := True;
Result := True;
end;
2 : Result := HandleDelete(AFileRec);
else Result := False;
end;
end;
end;
var i: longint;
AList: TList;
CurrPath: string;
Fr: Single;
Response: integer;
DeleteAll, SkipToNext: boolean;
x: PDataItemSL;
begin
SkipAll := False;
AList := TList.Create;
AList.Clear;
with SenderThread do begin
CurrPath := IncludeTrailingPathDelimiter(Engine.Path);
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if (not UpDir) and Selected then
if IsDir and (not IsLnk)
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
if (AList.Count = 0) and Assigned(SelectedItem) and (not SelectedItem^.UpDir) then
with SelectedItem^ do
if IsDir and (not IsLnk)
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
if Engine.ChangeDir(CurrPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour might occur.']);
Engine.ExplicitChDir('/');
SetProgress1Params(AList.Count);
CommitGUIUpdate;
DeleteAll := False;
SkipToNext := False;
// DebugWriteListSL(AList);
if AList.Count = 1 then Fr := 1 else Fr := 100 / (AList.Count - 1);
if AList.Count > 0 then
for i := 0 to AList.Count - 1 do begin
if Cancelled then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
Break;
end;
if SkipToNext and (PDataItemSL(AList[i])^.Level > 1) then Continue;
if SkipToNext and (PDataItemSL(AList[i])^.Level = 1) and (not PDataItemSL(AList[i])^.Stage1) then begin
SkipToNext := False;
Continue;
end;
// Check for non-empty directory
if (not DeleteAll) and (PDataItemSL(AList[i])^.Level = 1) and PDataItemSL(AList[i])^.Stage1 and PDataItemSL(AList[i])^.IsDir and
(not PDataItemSL(AList[i])^.IsLnk) and (i < AList.Count - 2) and (PDataItemSL(AList[i + 1])^.Level = 2) then
begin
Response := ShowDirDeleteDialog(4, Format(LANGTheDirectorySIsNotEmpty, [string(PDataItemSL(AList[i])^.FDisplayName)]),
LANGDoYouWantToDeleteItWithAllItsFilesAndSubdirectories);
case Response of
1 : ; // Do nothing in this case - I will not bother with changing the structure; it works :-)
2 : DeleteAll := True;
3 : SkipToNext := True;
else Break;
end;
end;
// Process delete
if not HandleDelete(AList[i]) then Break;
UpdateProgress1(i, Format('%d%%', [Round(Fr * i)]));
UpdateCaption1(PDataItemSL(AList[i])^.FDisplayName);
CommitGUIUpdate;
end;
// Free the objects
if AList.Count > 0 then
for i := AList.Count - 1 downto 0 do FreeDataItem(PDataItemSL(AList[i]));
AList.Clear;
AList.Free;
if Engine.ChangeDir(CurrPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour might occur.']);
end;
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
(********************************************************************************************************************************)
// Return False to break the process
function CopyFilesWorker_ProgressFunc(Sender: Pointer; BytesDone: Int64): boolean; cdecl;
begin
Result := True;
// DebugMsg(['*** CopyFilesWorker: ProgressFunc called (Sender=', QWord(Sender), ', BytesDone=', BytesDone, ')']);
try
if Assigned(Sender) and (TObject(Sender) is TWorkerThread) then
with TWorkerThread(Sender) do begin
if BytesDone = 0 then UpdateProgress1(0, '0%')
else UpdateProgress1(BytesDone, Format('%d%%', [Round(ParamFloat2 * BytesDone)]));
UpdateProgress2(ParamInt64 + BytesDone, Format('%d%%', [Round(ParamFloat1 * (ParamInt64 + BytesDone))]));
Result := not Cancelled;
CommitGUIUpdate;
end else DebugMsg(['*** CopyFilesWorker: Sender is not TWorkerThread']);
except
on E: Exception do DebugMsg(['*** Exception raised in ProgressFunc(Sender=', QWord(Sender), ', BytesDone=', BytesDone, '): (', E.ClassName, '): ', E.Message]);
end;
end;
// Return True to ignore the error (Skip, Skip All, Ignore, Cancel)
function CopyFilesWorker_ErrorFunc(Sender: Pointer; ErrorType, ErrorNum: integer; FileName: string): boolean; cdecl;
var s, s2, s3: string;
begin
with TWorkerThread(Sender) do begin
if ParamBool2 then begin
Result := True;
Exit;
end;
case ErrorType of
0 : begin
CancelIt;
Exit;
end;
1 : s := LANGMemoryAllocationFailed;
2 : s := LANGCannotOpenSourceFile;
3 : s := LANGCannotOpenDestinationFile;
4 : s := LANGCannotCloseDestinationFile;
5 : s := LANGCannotCloseSourceFile;
6 : s := LANGCannotReadFromSourceFile;
7 : s := LANGCannotWriteToDestinationFile;
end;
if ParamBool1 then s2 := LANGCopyError
else s2 := LANGMoveError;
if ErrorType <> 1 then s3 := StrToUTF8(FileName)
else s3 := '';
case ShowDirDeleteDialog(3, s, s3, GetErrorString(ErrorNum), s2) of
0, 252 : begin // Cancel button, Escape
Result := False;
CancelIt;
end;
2 : Result := True; // Ignore
3 : begin // Skip All
ParamBool2 := True; { Skip All Err }
Result := False; //** True?
end;
else {1, 124, 255 :} Result := False; // Skip
end;
end;
end;
procedure CopyFilesWorker(SenderThread: TWorkerThread);
// ParamFloat1 = Fr - internal
// ParamFloat2 = Fr2 - internal
// ParamInt64 = SizeDone - internal
// ParamBool1 = ModeCopy - internal
// ParamBool2 = SkipAllErr - internal
// ParamBool3 = CopyMode
// ParamBool4 = QuickRename
// ParamBool5 = OneFile
// ParamString1 = NewPath
// ParamString2 = Filepath
// ParamDataItem1 = QuickRenameDataItem
var DefResponse: integer; // Global variables for this function
SkipAll: boolean;
// Returns True if file was successfully copied, if not, the file will be deleted in LocalCopyFile
function ManualCopyFile(SourceFile, DestFile: string; Append: boolean): boolean;
var fsrc, fdst: TEngineFileDes;
Error, BSize: integer;
Buffer: Pointer;
BytesDone, BytesRead, BytesWritten: Int64;
Res: boolean;
begin
DebugMsg(['ManualCopyFile: ', SourceFile, ' ---> ', DestFile]);
with SenderThread do begin
Result := False;
Error := 0;
fsrc := SrcEngine.OpenFile(SourceFile, omRead, Error);
if Error <> 0 then begin
CopyFilesWorker_ErrorFunc(SenderThread, 2, Error, SourceFile); // Cannot open source file
Exit;
end;
if Append then fdst := DestEngine.OpenFile(DestFile, omAppend, Error)
else fdst := DestEngine.OpenFile(DestFile, omWrite, Error);
if Error <> 0 then begin
SrcEngine.CloseFile(fsrc);
CopyFilesWorker_ErrorFunc(SenderThread, 3, Error, SourceFile); // Cannot open target file
Exit;
end;
BytesDone := 0;
Res := True;
BSize := DestEngine.GetBlockSize;
Buffer := malloc(BSize);
if Buffer = nil then begin
CopyFilesWorker_ErrorFunc(SenderThread, 1, errno, SourceFile); // Memory allocation failed
libc_free(Buffer);
Exit;
end;
memset(Buffer, 0, BSize);
BytesWritten := 0;
repeat
BytesRead := SrcEngine.ReadFile(fsrc, Buffer, BSize, Error);
if (BytesRead = 0) and (Error <> 0) then
Res := CopyFilesWorker_ErrorFunc(SenderThread, 6, Error, SourceFile); // Cannot read from source file
if BytesRead > 0 then begin
BytesWritten := DestEngine.WriteFile(fdst, Buffer, BytesRead, Error);
if (BytesWritten < BytesRead) then
Res := CopyFilesWorker_ErrorFunc(SenderThread, 7, Error, DestFile); // Cannot write to source file
end;
Inc(BytesDone, BytesRead);
if not CopyFilesWorker_ProgressFunc(SenderThread, BytesDone) then begin
Res := False;
Break;
end;
until (BytesRead = 0) or (BytesWritten < BytesRead);
libc_free(Buffer);
if DestEngine.CloseFile(fdst) <> 0 then begin
CopyFilesWorker_ErrorFunc(SenderThread, 4, errno, DestFile); // Cannot close target file
Exit;
end;
if SrcEngine.CloseFile(fsrc) <> 0 then begin
CopyFilesWorker_ErrorFunc(SenderThread, 5, errno, SourceFile); // Cannot close source file
Exit;
end;
Result := Res;
end;
end;
// Returns True if the file was successfully copied and will be deleted on move
function LocalCopyFile(SourceFile, DestFile: string; Append: boolean): boolean;
var DataSrc, DataDest: PDataItemSL;
begin
Result := False;
try
with SenderThread do begin
AEngine := nil;
FCopyProgressFunc := CopyFilesWorker_ProgressFunc;
// local -> local
if (SrcEngine is TLocalTreeEngine) and (DestEngine is TLocalTreeEngine)
then Result := DestEngine.CopyFileIn(SenderThread, SourceFile, DestFile, @CopyFilesWorker_ProgressFunc, @CopyFilesWorker_ErrorFunc, Append)
else
// from local engine to VFS engine
if (SrcEngine is TLocalTreeEngine) and (DestEngine is TVFSEngine) then
begin
AEngine := DestEngine;
Result := (DestEngine as TVFSEngine).CopyFileInEx(SenderThread, SourceFile, DestFile, @CopyFilesWorker_ErrorFunc, Append,
@vfs_ask_question_callback, @vfs_ask_password_callback, @vfs_progress_callback, SenderThread);
end else
// from VFS engine to local (most common use)
if (SrcEngine is TVFSEngine) and (DestEngine is TLocalTreeEngine) then
begin
AEngine := SrcEngine;
Result := (SrcEngine as TVFSEngine).CopyFileOutEx(SenderThread, SourceFile, DestFile, @CopyFilesWorker_ErrorFunc, Append,
@vfs_ask_question_callback, @vfs_ask_password_callback, @vfs_progress_callback, SenderThread);
end
// VFS to VFS (not supported yet)
else
begin
AEngine := SrcEngine;
Result := ManualCopyFile(SourceFile, DestFile, Append);
end;
AEngine := nil;
// Copy OK? (check size, otherwise delete target file)
if (not Append) and (not Result) then begin
DataSrc := SrcEngine.GetFileInfoSL(SourceFile);
if DataSrc = nil then Exit;
DataDest := DestEngine.GetFileInfoSL(DestFile);
if DataDest = nil then Exit;
if DataSrc^.Size <> DataDest^.Size then DestEngine.Remove(DestFile);
end;
end;
except
on E: Exception do DebugMsg(['*** Exception raised in LocalCopyFile(SourceFile=', SourceFile, ', DestFile=', DestFile, ', Append=', Append, '): (', E.ClassName, '): ', E.Message]);
end;
end;
function IsOnSameFS(SrcPath, DestPath: string): boolean;
begin
with SenderThread do begin
if (SrcEngine.ClassName <> DestEngine.ClassName) then Result := False else
if (SrcEngine is TVFSEngine) and (DestEngine is TVFSEngine) and
(SrcEngine as TVFSEngine).ArchiveMode and (DestEngine as TVFSEngine).ArchiveMode and
((SrcEngine as TVFSEngine).ArchivePath <> '') and
((SrcEngine as TVFSEngine).ArchivePath = (DestEngine as TVFSEngine).ArchivePath)
then Result := True else
Result := DestEngine.IsOnSameFS(SrcPath, DestPath);
end;
end;
function TwoSameFiles(Path1, Path2: string; TestCaseInsensitiveFS: boolean): boolean;
begin
with SenderThread do begin
if (SrcEngine.ClassName <> DestEngine.ClassName) then Result := False else
if (SrcEngine is TVFSEngine) and (DestEngine is TVFSEngine) and
((SrcEngine as TVFSEngine).ArchiveMode <> (DestEngine as TVFSEngine).ArchiveMode)
then Result := False else
if (SrcEngine is TVFSEngine) and (DestEngine is TVFSEngine) and
(SrcEngine as TVFSEngine).ArchiveMode and (DestEngine as TVFSEngine).ArchiveMode and
((SrcEngine as TVFSEngine).ArchivePath <> '') and
((SrcEngine as TVFSEngine).ArchivePath <> (DestEngine as TVFSEngine).ArchivePath)
then Result := False else
if WideCompareStr(Path1, Path2) = 0 then Result := True else
Result := TestCaseInsensitiveFS and DestEngine.TwoSameFiles(Path1, Path2);
end;
end;
function DoOperation(AFileRec: PDataItemSL; const Dst: string; var ErrorKind: integer; const Append: boolean): integer;
begin
ErrorKind := 0;
Result := 0;
try
with SenderThread do
with AFileRec^ do begin
if IsLnk then begin
// Explicit copy the file
if ParamBool3 or (not IsOnSameFS(String(FName), ExtractFileDir(Dst))) then begin
ErrorKind := DestEngine.MakeSymLink(Dst, String(LnkPointTo));
if ErrorKind <> 0 then Result := ERRCreateLink;
if not ParamBool3 then begin
ErrorKind := SrcEngine.Remove(String(FName));
if ErrorKind <> 0 then Result := ERRRemove;
end;
end else begin // Move the file
ErrorKind := DestEngine.RenameFile(String(FName), Dst);
if ErrorKind <> 0 then Result := ERRCopyMove;
end;
end else // is not link
if ParamBool3 then begin // Copy mode
if LocalCopyFile(String(FName), Dst, Append) then begin
if IsOnRO and ConfClearReadOnlyAttr and (Mode and S_IWUSR = 0) then Mode := Mode or S_IWUSR;
DestEngine.Chmod(Dst, Mode);
DestEngine.Chown(Dst, UID, GID);
DestEngine.ChangeTimes(Dst, mtime, atime);
end;
end else // Move mode
if IsOnSameFS(String(FName), ExtractFileDir(Dst)) then begin
if TwoSameFiles(String(FName), Dst, True) and (not TwoSameFiles(String(FName), Dst, False)) then begin
DebugMsg(['*** Activating double-rename due to renaming on case-insensitive FS']);
ErrorKind := DestEngine.RenameFile(String(FName), Dst + '_tcmd');
if ErrorKind = 0 then ErrorKind := DestEngine.RenameFile(Dst + '_tcmd', Dst);
end else ErrorKind := DestEngine.RenameFile(String(FName), Dst);
if ErrorKind <> 0 then Result := ERRCopyMove;
end else begin
if LocalCopyFile(String(FName), Dst, Append) then begin
if IsOnRO and ConfClearReadOnlyAttr and (Mode and S_IWUSR = 0) then Mode := Mode or S_IWUSR;
DestEngine.Chmod(Dst, Mode);
DestEngine.Chown(Dst, UID, GID);
DestEngine.ChangeTimes(Dst, mtime, atime);
if not Cancelled then begin
ErrorKind := SrcEngine.Remove(String(FName));
if ErrorKind <> 0 then Result := ERRRemove;
end;
end;
end;
end;
// DebugMsg(['(II) CopyFilesWorker.DoOperation: finished']);
except
on E: Exception do DebugMsg(['*** Exception raised in DoOperation(AFileRec=', QWord(AFileRec), ', Dst=', Dst, ', ErrorKind=', ErrorKind, ', Append=', Append, '): (', E.ClassName, '): ', E.Message]);
end;
end;
// Return False to break the processing (Cancel)
function HandleCopy(AFileRec: PDataItemSL; NewFilePath: string): boolean;
var Res, Response, ErrorKind, r: integer;
Item: PDataItemSL;
s, s1, s3, cap: string;
FromInfoLabel, ToInfoLabel, InfoLabelFormat: string;
begin
Result := True;
try
with SenderThread do begin
// Second stage - change permissions
if (not AFileRec^.Stage1) and (ParamBool3 or ((not ParamBool3) and (not AFileRec^.ForceMove))) then
with AFileRec^ do begin
if IsOnRO and ConfClearReadOnlyAttr and (Mode and S_IWUSR = 0) then Mode := Mode or S_IWUSR;
DestEngine.Chmod(NewFilePath, Mode);
DestEngine.Chown(NewFilePath, UID, GID);
DestEngine.ChangeTimes(NewFilePath, mtime, atime);
if not ParamBool3 then SrcEngine.Remove(String(FName)); // Remove directory
Exit;
end;
// First stage - copy data
if AFileRec^.IsDir then begin
Res := 0;
if AFileRec^.ForceMove and (not ParamBool3)
then begin
if TwoSameFiles(ExcludeTrailingPathDelimiter(string(AFileRec^.FName)), ExcludeTrailingPathDelimiter(string(AFileRec^.ADestination)), True) and (not
TwoSameFiles(ExcludeTrailingPathDelimiter(string(AFileRec^.FName)), ExcludeTrailingPathDelimiter(string(AFileRec^.ADestination)), False)) then
begin
DebugMsg(['*** Activating double-rename due to renaming on case-insensitive FS']);
ErrorKind := DestEngine.RenameFile(string(AFileRec^.FName), ExcludeTrailingPathDelimiter(string(AFileRec^.ADestination)) + '_tcmd');
if ErrorKind = 0 then ErrorKind := DestEngine.RenameFile(ExcludeTrailingPathDelimiter(string(AFileRec^.ADestination)) + '_tcmd', ExcludeTrailingPathDelimiter(string(AFileRec^.ADestination)));
end else ErrorKind := DestEngine.RenameFile(string(AFileRec^.FName), string(AFileRec^.ADestination));
if ErrorKind <> 0 then Res := ERRCopyMove
else Res := 0;
end else
if not DestEngine.DirectoryExists(NewFilePath, True) then begin
ErrorKind := DestEngine.MakeDir(NewFilePath);
if ErrorKind <> 0 then Res := ERRMkDir
else Res := 0;
end;
end else begin // not a directory
if not DestEngine.DirectoryExists(ExtractFileDir(NewFilePath), True) then DestEngine.MakeDir(ExtractFileDir(NewFilePath));
SetProgress1Params(AFileRec^.Size + Ord(AFileRec^.Size = 0));
if AFileRec^.Size <= 1 then ParamFloat2 := 1 else ParamFloat2 := 100 / (AFileRec^.Size - 1);
CopyFilesWorker_ProgressFunc(SenderThread, 0);
Res := 0;
if DestEngine.FileExists(NewFilePath, True) and
(not (not ParamBool3 and (not TwoSameFiles(NewFilePath, AFileRec^.FName, False)) and TwoSameFiles(NewFilePath, AFileRec^.FName, True)))
then begin
Response := DefResponse;
Item := DestEngine.GetFileInfoSL(NewFilePath);
if Item = nil then begin
DebugMsg(['Something went terribly wrong during copy - Item := DestEngine.GetFileInfoSL(NewFilePath) == NULL!']);
Result := False;
Exit;
end;
if Response = 0 then begin
case ConfSizeFormat of
5: InfoLabelFormat := '%s, %s';
else InfoLabelFormat := LANGOvewriteSBytesS;
end;
FromInfoLabel := Format(InfoLabelFormat, [FormatSize(Item^.Size, 0), FormatDate(Item^.ModifyTime, True, True)]);
ToInfoLabel := Format(InfoLabelFormat, [FormatSize(AFileRec^.Size, 0), FormatDate(AFileRec^.ModifyTime, True, True)]);
Response := ShowOverwriteDialog(1 + Ord(ParamBool3), Format(LANGOverwriteS, [StrToUTF8(NewFilePath)]), FromInfoLabel,
Format(LANGWithFileS, [AFileRec^.FDisplayName]), ToInfoLabel,
ExtractFileName(StrToUTF8(NewFilePath)), ExtractFileName(AFileRec^.FDisplayName), ExtractFileName(StrToUTF8(NewFilePath)));
s := FOverwriteRenameStr;
case Response of
// 1: Overwrite
// 3: Skip
2 {Overwrite All}, 5 {Overwrite All Older}, 6 {Skip All}: DefResponse := Response;
4 {Cancel}, 124 {Close Window}, 255: begin
Result := False;
Exit;
end;
7: {Rename} begin
NewFilePath := Copy(NewFilePath, 1, LastDelimiter(PathDelim, NewFilePath)) + s;
Result := HandleCopy(AFileRec, NewFilePath);
Exit;
end;
8 {Append}: begin
Res := DoOperation(AFileRec, NewFilePath, ErrorKind, True);
end;
end;
end;
// Remove destination file if exists and should be overwritten
if (Response in [1, 2]) or ((Response = 5) and (Item^.ModifyTime < AFileRec^.ModifyTime)) then begin
r := DestEngine.Remove(NewFilePath);
while r <> 0 do begin
Res := ShowDirDeleteDialog(1, LANGTheFile, StrToUTF8(String(NewFilePath)),
Format(LANGCouldNotBeDeletedS, [GetErrorString(r)]), LANGCopyError);
case Res of
1: begin
Result := True;
Exit;
end;
2: r := DestEngine.Remove(NewFilePath);
0, 124, 255: begin
Result := False;
Exit;
end;
end;
end;
Res := DoOperation(AFileRec, NewFilePath, ErrorKind, False);
end;
end else Res := DoOperation(AFileRec, NewFilePath, ErrorKind, False);
end;
// Error handling
if (Res <> 0) and (not SkipAll) then begin
if ParamBool3 then cap := LANGCopy
else cap := LANGMove;
case Res of
ERRCreateLink: begin
s1 := LANGTheSymbolicLink;
if ErrorKind = 0 then s3 := LANGCouldNotBeCreated else
s3 := Format(LANGCouldNotBeCreatedS, [GetErrorString(ErrorKind)]);
end;
ERRMkDir: begin
s1 := LANGTheDirectory;
if ErrorKind = 0 then s3 := LANGCouldNotBeCreated else
s3 := Format(LANGCouldNotBeCreatedS, [GetErrorString(ErrorKind)]);
end;
ERRRemove: begin
if AFileRec^.IsDir then s1 := LANGTheDirectory else
if AFileRec^.IsLnk then s1 := LANGTheSymbolicLink else
s1 := LANGTheFile;
if ErrorKind = 0 then s3 := LANGCouldNotBeDeleted else
s3 := Format(LANGCouldNotBeDeletedS, [GetErrorString(ErrorKind)]);
end;
ERRCopyMove: begin
if ParamBool3 then s1 := LANGCannotCopyFile else
s1 := LANGCannotMoveFile;
if ErrorKind = 0 then s3 := '' else
s3 := GetErrorString(ErrorKind);
end;
end;
Response := ShowDirDeleteDialog(1, s1, StrToUTF8(String(NewFilePath)), s3, cap);
case Response of
1 : Result := True; // Skip
2 : Result := HandleCopy(AFileRec, NewFilePath); // Retry
3 : begin // Skip All
SkipAll := True;
Result := True;
end;
0, 124, 255 : Result := False; // Cancel
end;
end;
end;
// DebugMsg(['(II) CopyFilesWorker.HandleCopy: finished']);
except
on E: Exception do DebugMsg(['*** Exception raised in HandleCopy(AFileRec=', QWord(AFileRec), ', NewFilePath=', NewFilePath, '): (', E.ClassName, '): ', E.Message]);
end;
end;
procedure HandleProcessPattern(AList: TList; CurrPath, FullPath, ParamFileName: string; ParamDir, Ren: boolean);
var s, s2: string;
b, CaseInsensitiveRename: boolean;
Info: PDataItemSL;
begin
with SenderThread do
if not Ren then begin
if ParamDir then SrcEngine.FillDirFiles(FullPath, AList, 1)
else begin
Info := SrcEngine.GetFileInfoSL(FullPath);
if Info = nil then DebugMsg(['$$$ Copy: Something went wrong while building the filelist...'])
else AList.Add(Info);
end;
end else begin
s := ProcessPattern(DestEngine, ParamString1, CurrPath, ParamFileName, ParamDir);
CaseInsensitiveRename := (WideCompareStr(ParamString1, ParamFileName) <> 0) and (WideCompareText(ParamString1, ParamFileName) = 0) and
ParamDir and DestEngine.TwoSameFiles(IncludeTrailingPathDelimiter(CurrPath) + ParamString1, IncludeTrailingPathDelimiter(CurrPath) + ParamFileName);
// DebugMsg(['HandleProcessPattern: s = ', s]);
b := False;
if ParamDir then begin
b := DestEngine.DirectoryExists(ExcludeTrailingPathDelimiter(s)) and (not CaseInsensitiveRename);
if (not b) and (s <> '/') then begin
s2 := ExcludeTrailingPathDelimiter(s);
s2 := ExcludeTrailingPathDelimiter(Copy(s2, 1, LastDelimiter('/', s2)));
b := DestEngine.DirectoryExists(ExcludeTrailingPathDelimiter(s2));
end;
end;
if (not ParamDir) or (ParamDir and b and IsOnSameFS(ExcludeTrailingPathDelimiter(FullPath), s2))
then begin
Info := SrcEngine.GetFileInfoSL(FullPath);
if Info = nil then begin
DebugMsg(['$$$ Copy: Something went wrong while building the filelist...']);
ErrorHappened := True;
end else begin
Info^.ADestination := strdup(PChar(s));
Info^.ForceMove := True;
AList.Add(Info);
end;
end else SrcEngine.FillDirFiles(FullPath, AList, 1);
end;
end;
var i: longint;
List: TList;
CurrPath, SaveDestPath, SaveSrcPath, s: string;
MaxSize: Int64;
begin
List := TList.Create;
List.Clear;
with SenderThread do begin
ErrorHappened := False;
FCancelled := False;
SaveSrcPath := '';
CurrPath := IncludeTrailingPathDelimiter(SrcEngine.Path);
SaveDestPath := DestEngine.Path;
ParamString1 := ExcludeTrailingPathDelimiter(ParamString1);
if ParamString1 = '' then ParamString1 := PathDelim;
if ParamBool5 then begin // HandleVFSFromArchive
if not ExtractFromVFSAll then HandleProcessPattern(List, CurrPath, ParamString2, ExtractFileName(ParamString2), False, False)
else begin
SaveSrcPath := IncludeTrailingPathDelimiter(SrcEngine.Path);
SrcEngine.SetPath('/');
CurrPath := '/';
HandleProcessPattern(List, '/', '/', '', True, False);
end;
end else
if ParamBool4 then begin // Quick-Rename
with ParamDataItem1^ do
HandleProcessPattern(List, CurrPath, CurrPath + String(FName), String(FName), IsDir and (not IsLnk), True);
end else begin // Not Quick-Rename
if not ExtractFromVFSMode then begin
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if (not UpDir) and Selected
then HandleProcessPattern(List, CurrPath, CurrPath + String(FName), String(FName), IsDir and (not IsLnk), not ParamBool3);
if (List.Count = 0) and Assigned(SelectedItem) and (not SelectedItem^.UpDir) then
with SelectedItem^ do
HandleProcessPattern(List, CurrPath, CurrPath + String(FName), String(FName), IsDir and (not IsLnk), not ParamBool3);
end else begin // Extract from VFS mode
DebugMsg(['CopyFilesWorker: Should not be reached']);
if (not ExtractFromVFSAll) and Assigned(SelectedItem)
then HandleProcessPattern(List, CurrPath, CurrPath + String(SelectedItem^.FName), String(SelectedItem^.FName), SelectedItem^.IsDir and (not SelectedItem^.IsLnk), not ParamBool3)
else begin
SaveSrcPath := IncludeTrailingPathDelimiter(SrcEngine.Path);
SrcEngine.SetPath('/');
CurrPath := '/';
HandleProcessPattern(List, '/', '/', '', True, False);
end;
end;
end;
{ if DestEngine.ChangeDir(CurrPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour may occur.']);
if SrcEngine.ChangeDir(CurrPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour may occur.']); }
// DebugWriteListSL(List);
__chdir('/');
// Compute total size of files to copy
MaxSize := 0; ParamInt64 := 0;
if List.Count > 0 then
for i := 0 to List.Count - 1 do
if PDataItemSL(List[i])^.Stage1 and (PDataItemSL(List[i])^.Size > 0) and (not PDataItemSL(List[i])^.IsDir) and (not PDataItemSL(List[i])^.IsLnk)
then Inc(MaxSize, PDataItemSL(List[i])^.Size);
SrcEngine.BlockSize := ComputeBlockSize(MaxSize);
DestEngine.BlockSize := ComputeBlockSize(MaxSize);
// Prepare the Progress window
SetProgress2Params(MaxSize + Ord(MaxSize = 0));
UpdateProgress1(0, '0%');
UpdateProgress2(0, '0%');
CommitGUIUpdate;
DefResponse := 0;
ParamBool1 := ParamBool3;
SkipAll := False;
ParamBool2 := False;
if MaxSize < 2 then ParamFloat1 := 1 else ParamFloat1 := 100 / (MaxSize - 1);
if List.Count > 0 then
for i := 0 to List.Count - 1 do begin
if Assigned(PDataItemSL(List[i])^.ADestination)
then s := string(PDataItemSL(List[i])^.ADestination)
else
begin
s := ProcessPattern(DestEngine, ParamString1, CurrPath, Copy(PDataItemSL(List[i])^.FName, Length(CurrPath) + 1, Length(PDataItemSL(List[i])^.FName) - Length(CurrPath)),
PDataItemSL(List[i])^.IsDir and (not PDataItemSL(List[i])^.IsLnk));
// DebugMsg(['s2 = ', Copy(PDataItemSL(List[i])^.AName, Length(CurrPath) + 1, Length(PDataItemSL(List[i])^.AName) - Length(CurrPath)), ', s = ', s]);
end;
if not (SrcEngine is TVFSEngine) then UpdateCaption1(Format(LANGFromS, [string(PDataItemSL(List[i])^.FDisplayName)])) else
if (SrcEngine as TVFSEngine).ArchiveMode then UpdateCaption1(Format(LANGFromS, [Format(ConstFullPathFormatStr, [(SrcEngine as TVFSEngine).ArchivePath, string(PDataItemSL(List[i])^.FDisplayName)])]))
else UpdateCaption1(Format(LANGFromS, [GetURIPrefix((SrcEngine as TVFSEngine).GetPathURI) + StrToUTF8(string(PDataItemSL(List[i])^.FDisplayName))]));
if not (DestEngine is TVFSEngine) then UpdateCaption2(Format(LANGToS, [StrToUTF8(s)])) else
if (DestEngine as TVFSEngine).ArchiveMode then UpdateCaption2(Format(LANGToS, [Format(ConstFullPathFormatStr, [(DestEngine as TVFSEngine).ArchivePath, StrToUTF8(s)])]))
else UpdateCaption2(Format(LANGToS, [GetURIPrefix((DestEngine as TVFSEngine).GetPathURI) + StrToUTF8(s)]));
CommitGUIUpdate;
if TwoSameFiles(s, string(PDataItemSL(List[i])^.FName), ParamBool3) and (not PDataItemSL(List[i])^.IsDir) then begin
FCancelMessage := LANGCannotCopyFileToItself;
FShowCancelMessage := True;
ErrorHappened := True;
Break;
end;
if s <> string(PDataItemSL(List[i])^.FName) then
if not HandleCopy(List[i], s) then begin
ErrorHappened := True;
Break;
end;
if (not PDataItemSL(List[i])^.IsDir) and (not PDataItemSL(List[i])^.IsLnk)
then Inc(ParamInt64, PDataItemSL(List[i])^.Size);
if Cancelled then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
ErrorHappened := True;
Break;
end;
end;
// Free the objects
if List.Count > 0 then
for i := List.Count - 1 downto 0 do FreeDataItem(PDataItemSL(List[i]));
List.Clear;
List.Free;
if DestEngine.ChangeDir(SaveDestPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour might occur.']);
if SaveSrcPath <> '' then CurrPath := SaveSrcPath;
if SrcEngine.ChangeDir(CurrPath) <> 0 then DebugMsg(['*** WARNING: Cannot change to the origin location, strange behaviour might occur.']);
end;
SenderThread.FDoneThread := True;
DebugMsg(['(II) CopyFilesWorker: finished']);
end;
(********************************************************************************************************************************)
function ComputeBlockSize(TotalSize: Int64): longint;
begin
if TotalSize < 512*1024 then Result := 32*1024 else
if TotalSize < 1024*1024 then Result := 64*1024 else
if TotalSize < 2048*1024 then Result := 96*1024 else
if TotalSize < 4096*1024 then Result := 128*1024 else
if TotalSize < 8192*1024 then Result := 256*1024 else
{ if TotalSize < 256*1024*1024 then Result := 512*1024 else
if TotalSize < 768*1024*1024 then Result := 2048*1024 else }
Result := 4096*1024;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
(********************************************************************************************************************************)
procedure DebugWriteListSL(List: TList);
var i: integer;
Item: PDataItemSL;
begin
if not ParamDebug then Exit;
if not Assigned(List) then begin
WriteLn('List not assigned');
Exit;
end;
WriteLn('********************************************************');
WriteLn('** List.Count = ', List.Count, ' base @ ', integer(pointer(List)));
if List.Count > 0 then
for i := 0 to List.Count - 1 do
if not Assigned(List[i]) then WriteLn('**** List Item idx ', i, '; base @ nil') else
try
WriteLn('**** List Item idx ', i, '; base @ ', integer(List[i]), '; sizeof = ', SizeOf(List[i]));
Item := List[i];
WriteLn(' Stage1: ', Item^.Stage1, ', Level: ', Item^.Level, ', IsDir: ', Item^.IsDir, ', IsLnk: ', Item^.IsLnk, ', ForceMove: ', Item^.ForceMove{, ', Size: ', Item^.Size});
WriteLn(' FName: ', Item^.FName);
WriteLn(' LnkPointTo: ', Item^.LnkPointTo);
WriteLn(' ADestination: ', Item^.ADestination);
except
on E: Exception do
WriteLn('(EE): Exception ', E.ClassName, ' raised: ', E.Message);
end;
WriteLn('** End of listing');
WriteLn('********************************************************');
end;
procedure DebugWriteList(List: TList);
var i: integer;
Item: PDataItem;
begin
if not ParamDebug then Exit;
if not Assigned(List) then begin
WriteLn('List not assigned');
Exit;
end;
WriteLn('********************************************************');
WriteLn('** List.Count = ', List.Count, ' base @ ', integer(pointer(List)));
if List.Count > 0 then
for i := 0 to List.Count - 1 do
if not Assigned(List[i]) then WriteLn('**** List Item idx ', i, '; base @ nil') else
try
WriteLn('**** List Item idx ', i, '; base @ ', integer(List[i]), '; sizeof = ', SizeOf(List[i]));
Item := List[i];
WriteLn(' IsDir: ', Item^.IsDir, ', IsLnk: ', Item^.IsLnk, ', Size: ', Item^.Size);
WriteLn(' FName: ', Item^.FName);
WriteLn(' LnkPointTo: ', Item^.LnkPointTo);
except
on E: Exception do
WriteLn('(EE): Exception ', E.ClassName, ' raised: ', E.Message);
end;
WriteLn('** End of listing');
WriteLn('********************************************************');
end;
(********************************************************************************************************************************)
procedure FindNextSelected(ListView: TGTKListView; DataList: TList; var Item1, Item2: string);
var i: integer;
SelCount: longint;
begin
SelCount := 0;
Item1 := ''; Item2 := '';
if (not Assigned(ListView.Selected)) or PDataItem(ListView.Selected.Data)^.UpDir then Exit;
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if Selected and (not UpDir) then Inc(SelCount);
Item1 := string(PDataItem(ListView.Selected.Data)^.FName);
if (PDataItem(ListView.Selected.Data)^.Selected and (SelCount > 0)) or (SelCount = 0) then begin
if ListView.ConvertToSorted(ListView.Selected.Index) < ListView.Items.Count then
for i := ListView.ConvertToSorted(ListView.Selected.Index) + 1 to DataList.Count - 1 do
if not PDataItem(DataList[ListView.ConvertFromSorted(i)])^.Selected then begin
Item2 := string(PDataItem(DataList[ListView.ConvertFromSorted(i)])^.FName);
Break;
end;
if (Item2 = '') and (ListView.ConvertToSorted(ListView.Selected.Index) > 0) then
for i := ListView.ConvertToSorted(ListView.Selected.Index) - 1 downto 0 do
if (not PDataItem(DataList[ListView.ConvertFromSorted(i)])^.Selected) and
(not PDataItem(DataList[ListView.ConvertFromSorted(i)])^.UpDir) then
begin
Item2 := string(PDataItem(DataList[ListView.ConvertFromSorted(i)])^.FName);
Break;
end;
end;
end;
(********************************************************************************************************************************)
procedure UnselectAll(ListView: TGTKListView; DataList: TList);
var i: integer;
begin
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if Selected then begin
Selected := False;
ListView.Items[i].RedrawRow;
end;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
(********************************************************************************************************************************)
function CRCGetInfo(FileName: string; Engine: TPanelEngine; var TargetName: string; var TargetCRC: LongWord; var Size: Int64): boolean;
procedure ProcessLine(Str: string);
var UPS: string;
begin
try
TrimCRLFESC(Str);
if Length(Str) < 1 then Exit;
UPS := WideUpperCase(Str);
if Pos('FILENAME', UPS) = 1 then TargetName := Trim(Copy(Str, Pos('=', Str) + 1, Length(Str) - Pos('=', Str))) else
if Pos('SIZE', UPS) = 1 then Size := StrToInt64Def(Trim(Copy(Str, Pos('=', Str) + 1, Length(Str) - Pos('=', Str))), 0) else
if Pos('CRC32', UPS) = 1 then TargetCRC := StrToInt64Def('$' + Trim(Copy(Str, Pos('=', Str) + 1, Length(Str) - Pos('=', Str))), 0);
except end;
end;
const CRCBlockSize = 32768;
var i, Error, Count, Start: integer;
FD: TEngineFileDes;
Buffer: Pointer;
s: string;
begin
Result := False;
if Pos('.', FileName) > 1 then FileName := ChangeFileExt(FileName, '.crc')
else FileName := FileName + '.crc';
try
Buffer := malloc(CRCBlockSize);
memset(Buffer, 0, CRCBlockSize);
except
Application.MessageBox(LANGAnErrorOccuredWhileInitializingMemoryBlock, [mbOK], mbError, mbNone, mbOK);
Exit;
end;
FD := Engine.OpenFile(FileName, omRead, Error);
if Error <> 0 then Exit;
s := '';
repeat
Count := Engine.ReadFile(FD, Buffer, CRCBlockSize, Error);
if Error <> 0 then begin
libc_free(Buffer);
Engine.CloseFile(FD);
Exit;
end;
// processing begins
Start := 1;
if Count > 0 then
for i := 0 to Count - 1 do
if (PByteArray(Buffer)^[i] in [13, 10]) or (i = Count - 1) then begin
s := s + Copy(PChar(Buffer), Start, i - Start + 1 + Ord(i = Count - 1));
Start := i + 2;
if PByteArray(Buffer)^[i] in [13, 10] then begin
ProcessLine(s);
s := '';
end;
end;
// processing ends
until Count < CRCBlockSize;
if Length(s) > 0 then ProcessLine(s);
Engine.CloseFile(FD);
libc_free(Buffer);
Result := True;
end;
(********************************************************************************************************************************)
procedure MergeFilesWorker(SenderThread: TWorkerThread);
// ParamBool1 = HasInitialCRC
// ParamString1 = NewPath
// ParamString2 = FileName
// ParamString3 = TargetName
// ParamLongWord1 = TargetCRC
// ParamInt64 = TargetSize
var FD: TEngineFileDes;
Error, Count, MergeBlockSize: integer;
Buffer: Pointer;
CurrentCRC: LongWord;
PrivateCancel: boolean;
SizeDone: Int64;
TargetName: string;
function PasteFile(FName: string): boolean;
var FDR: TEngineFileDes;
wCount: integer;
Stat: PDataItemSL;
begin
Result := False;
with SenderThread do begin
if ParamBool1 then UpdateCaption2(Format(LANGToS, [StrToUTF8(FName)]))
else UpdateCaption1(Format(LANGFromS, [StrToUTF8(FName)]));
UpdateProgress1(0, '0 %');
CommitGUIUpdate;
Stat := Engine.GetFileInfoSL(FName);
if not Assigned(Stat) then Exit;
SetProgress1Params(Stat^.Size);
FDR := Engine.OpenFile(FName, omRead, Error);
if Error <> 0 then Exit;
repeat
Count := Engine.ReadFile(FDR, Buffer, MergeBlockSize, Error);
if Error <> 0 then begin
Engine.CloseFile(FD);
Exit;
end;
wCount := Engine.WriteFile(FD, Buffer, Count, Error);
if (Error <> 0) or (Count <> wCount) then begin
FCancelMessage := Format(LANGAnErrorOccuredWhileWritingFileSS, [ExtractFileName(TargetName), GetErrorString(Error)]);
FShowCancelMessage := True;
PrivateCancel := True;
Result := True; // Fake this to don't show next disc dialog
Exit;
end;
CurrentCRC := CRC32(CurrentCRC, Buffer, Count);
UpdateProgress1(FProgress1Pos + Count, Format('%d %%', [Trunc((FProgress1Pos + Count) / FProgress1Max * 100)]));
Inc(SizeDone, Count);
if ParamBool1 then UpdateProgress2(SizeDone, Format('%d %%', [Trunc(SizeDone / FProgress2Max * 100)]));
CommitGUIUpdate;
until (Count < MergeBlockSize) or Cancelled;
Engine.CloseFile(FDR);
end;
Result := True;
end;
var CurrFile, SourcePath, TargetFinalName: string;
HasFinalCRC, b: boolean;
Stat: PDataItemSL;
begin
with SenderThread do begin
HasFinalCRC := ParamBool1;
TargetFinalName := ParamString3;
if (Length(ParamString2) > 4) and (WideUpperCase(RightStr(ParamString2, 4)) = '.CRC')
then CurrFile := ChangeFileExt(ExtractFileName(ParamString2), '.001')
else CurrFile := ExtractFileName(ParamString2);
SourcePath := ExtractFilePath(ParamString2);
if ParamString3 = '' then ParamString3 := ChangeFileExt(ExtractFileName(ParamString2), '.out');
TargetName := ProcessPattern(Engine, ParamString1, Engine.Path, ParamString3, False);
if Engine.FileExists(TargetName, True) then
if ShowMessageBox(Format(LANGTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt, [StrToUTF8(TargetName)]), [mbYes, mbNo], mbQuestion, mbNone, mbNo) = mbYes then
begin
Error := Engine.Remove(TargetName);
if Error <> 0 then begin
FCancelMessage := Format(LANGTheTargetFileSCannotBeRemovedS, [StrToUTF8(ExtractFileName(TargetName)), GetErrorString(Error)]);
FShowCancelMessage := True;
Exit;
end;
end else Exit;
Stat := Engine.GetFileInfoSL(ParamString2);
if Assigned(Stat) then MergeBlockSize := ComputeBlockSize(Stat^.Size)
else MergeBlockSize := 65536*4;
try
Buffer := malloc(MergeBlockSize);
memset(Buffer, 0, MergeBlockSize);
except
FCancelMessage := LANGAnErrorOccuredWhileInitializingMemoryBlock;
FShowCancelMessage := True;
Exit;
end;
FD := Engine.OpenFile(TargetName, omWrite, Error);
if Error <> 0 then begin
FCancelMessage := Format(LANGAnErrorOccuredWhileOpeningFileSS, [StrToUTF8(TargetName), GetErrorString(Error)]);
FShowCancelMessage := True;
libc_free(Buffer);
Exit;
end;
CurrentCRC := 0;
SizeDone := 0;
PrivateCancel := False;
if ParamBool1 then begin
SetProgress2Params(ParamInt64);
UpdateProgress2(0, '0 %');
UpdateCaption2(Format(LANGFromS, [StrToUTF8(TargetName)]));
CommitGUIUpdate;
end; { else begin
Label2.XAlign := 0;
Label2.XPadding := 20;
end; }
repeat
b := PasteFile(IncludeTrailingPathDelimiter(SourcePath) + CurrFile);
if not b then begin
PrivateCancel := ShowNewDirDialog(LANGMergeCaption, LANGPleaseInsertNextDiskOrGiveDifferentLocation, StrToUTF8(SourcePath)) <> integer(mbOK);
if not PrivateCancel then begin
SourcePath := UTF8ToStr(FNewDirEdit);
if not HasFinalCRC then
HasFinalCRC := CRCGetInfo(IncludeTrailingPathDelimiter(SourcePath) + CurrFile, Engine, TargetFinalName, ParamLongWord1, ParamInt64);
Continue;
end;
end;
try
CurrFile := Copy(CurrFile, 1, LastDelimiter('.', CurrFile)) + Format('%.3d', [StrToInt(
Copy(CurrFile, LastDelimiter('.', CurrFile) + 1, Length(CurrFile) - LastDelimiter('.', CurrFile))) + 1]);
except
CurrFile := '';
end;
until (SizeDone = ParamInt64) or Cancelled or PrivateCancel {or ((not b) and (not HasInitialCRC))} or (CurrFile = '');
if (not ParamBool1) and HasFinalCRC then Engine.RenameFile(TargetName, IncludeTrailingPathDelimiter(ExtractFilePath(TargetName)) + TargetFinalName);
if Cancelled and (not PrivateCancel) then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
end;
if not (Cancelled or PrivateCancel) then
if HasFinalCRC then begin
if CurrentCRC = ParamLongWord1
then ShowMessageBox(Format(LANGMergeOfSSucceeded, [StrToUTF8(ExtractFileName(TargetFinalName))]), [mbOK], mbInfo, mbNone, mbOK)
else ShowMessageBox(LANGWarningCreatedFileFailsCRCCheck, [mbOK], mbWarning, mbNone, mbOK);
end else ShowMessageBox(Format(LANGMergeOfSSucceeded_NoCRCFileAvailable, [StrToUTF8(ExtractFileName(TargetFinalName))]), [mbOK], mbInfo, mbNone, mbOK);
Engine.CloseFile(FD);
end;
libc_free(Buffer);
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
function WriteCRCFile(Engine: TPanelEngine; TargetFile, SplitFileName: string; const FileSize: Int64; const FileCRC: Longword): boolean;
var FD: TEngineFileDes;
Error, Count: integer;
s: string;
begin
Result := False;
if Pos('.', TargetFile) > 1 then TargetFile := ChangeFileExt(TargetFile, '.crc')
else TargetFile := TargetFile + '.crc';
FD := Engine.OpenFile(TargetFile, omWrite, Error);
if Error <> 0 then begin
Application.MessageBox(Format(LANGAnErrorOccuredWhileOpeningFileSS, [TargetFile, GetErrorString(Error)]), [mbOK], mbError, mbNone, mbOK);
Exit;
end;
s := Format('filename=%s'#13#10'size=%d'#13#10'crc32=%s'#13#10, [SplitFileName, FileSize, WideUpperCase(IntToHex(FileCRC, 8))]);
Count := Engine.WriteFile(FD, @s[1], Length(s), Error);
if (Error <> 0) or (Count <> Length(s)) then begin
Application.MessageBox(Format(LANGAnErrorOccuredWhileWritingFileSS, [TargetFile, GetErrorString(Error)]), [mbOK], mbError, mbNone, mbOK);
Exit;
end;
Engine.CloseFile(FD);
Result := True;
end;
(********************************************************************************************************************************)
procedure SplitFilesWorker(SenderThread: TWorkerThread);
// ParamInt64 = SplitSize
// ParamString1 = FileName
// ParamString2 = NewPath
// ParamBool1 = DeleteTarget
const SplitBlockSize = 65536*4;
var FD: TEngineFileDes;
Error: integer;
FileCRC: LongWord;
Buffer: Pointer;
PrivateCancel: boolean;
FilePath: string;
SizeDone, TDF, FileSize, CurrSize: Int64;
function WriteSplitPart(TargetFile: string; PartSize: Int64; var Written: Int64): boolean;
var FDW: TEngineFileDes;
Count, wCount, bl: integer;
begin
Result := False;
Written := 0;
with SenderThread do begin
FDW := Engine.OpenFile(TargetFile, omWrite, Error);
DebugMsg(['-- Opening file ', ExtractFileName(TargetFile), ', PartSize = ', PartSize]);
if Error <> 0 then Exit;
if ParamInt64 > 0 then begin
UpdateCaption2(Format(LANGToS, [StrToUTF8(TargetFile)]));
SetProgress1Params(PartSize);
UpdateProgress1(0, '0 %');
end else UpdateCaption1(Format(LANGToS, [StrToUTF8(TargetFile)]));
CommitGUIUpdate;
repeat
DebugMsg(['Seek to ', Engine.FileSeek(FD, SizeDone + Written, Error), ', Written = ', Written]);
if Written + SplitBlockSize > PartSize then bl := PartSize - Written
else bl := SplitBlockSize;
Count := Engine.ReadFile(FD, Buffer, bl, Error);
if (Error <> 0) or (Count <> bl) then begin
Engine.CloseFile(FDW);
DebugMsg(['Read Error: ', GetErrorString(Error), ', Count = ', Count, ', bl = ', bl]);
if (Count <> bl) and (Error = 0) then Error := EIO;
Exit;
end;
wCount := Engine.WriteFile(FDW, Buffer, Count, Error);
Inc(Written, wCount);
FileCRC := CRC32(FileCRC, Buffer, wCount);
if (Error <> 0) or (Count <> wCount) then begin
Engine.CloseFile(FDW);
DebugMsg(['Write Error: ', GetErrorString(Error), ', Count = ', Count, ', wCount = ', wCount]);
if (wCount <> Count) and (Error = 0) then Error := ENOSPC;
Exit;
end;
UpdateProgress1(FProgress1Pos + wCount, Format('%d %%', [Trunc((FProgress1Pos + wCount) / FProgress1Max * 100)]));
if ParamInt64 > 0 then UpdateProgress2(FProgress2Pos + wCount, Format('%d %%', [Trunc((FProgress2Pos + wCount) / FProgress2Max * 100)]));
CommitGUIUpdate;
until (Written = PartSize) or Cancelled or PrivateCancel;
Engine.CloseFile(FDW);
end;
DebugMsg(['-- Closing file ', ExtractFileName(TargetFile), ', PartSize = ', PartSize, ', Written = ', Written]);
Result := True;
end;
// Returns True if it should break the process
function NewDiskQuestion: boolean;
begin
Result := False;
with SenderThread do begin
TDF := Engine.GetFileSystemFree(FilePath);
// Calculate part size
if ParamInt64 = 0 then begin
if FileSize - SizeDone > TDF then CurrSize := TDF
else CurrSize := FileSize - SizeDone;
end else
if SizeDone + ParamInt64 > FileSize then CurrSize := FileSize - SizeDone
else CurrSize := ParamInt64;
if (TDF < 512) {or (CurrSize < 512)} or (TDF < CurrSize) then begin
DebugMsg(['-- New disk question']);
Engine.ExplicitChDir('/');
PrivateCancel := ShowNewDirDialog(LANGSplitCaption, LANGPleaseInsertNextDiskOrGiveDifferentLocation,
StrToUTF8(FilePath)) <> integer(mbOK);
if not PrivateCancel then FilePath := UTF8ToStr(FNewDirEdit);
Result := PrivateCancel;
end;
end;
end;
var i: integer;
OriginalFName, st, FileName: string;
ws: Int64;
Stat: PDataItemSL;
b: boolean;
List: TList;
begin
with SenderThread do begin
Stat := Engine.GetFileInfoSL(ParamString1);
if not Assigned(Stat) then begin
FCancelMessage := Format(LANGCannotOpenFileS, [StrToUTF8(ParamString1)]);
FShowCancelMessage := True;
Exit;
end;
if (ParamInt64 > 0) and (Stat^.Size > ParamInt64 * 999) then begin
FCancelMessage := LANGCannotSplitTheFileToMoreThan999Parts;
FShowCancelMessage := True;
Exit;
end;
FileSize := Stat^.Size;
SizeDone := 0;
FileCRC := 0;
List := TList.Create;
try
Buffer := malloc(SplitBlockSize);
memset(Buffer, 0, SplitBlockSize);
except
FCancelMessage := LANGAnErrorOccuredWhileInitializingMemoryBlock;
FShowCancelMessage := True;
Exit;
end;
FD := Engine.OpenFile(ParamString1, omRead, Error);
if Error <> 0 then begin
FCancelMessage := Format(LANGAnErrorOccuredWhileOpeningFileSS, [StrToUTF8(ParamString1), GetErrorString(Error)]);
libc_free(Buffer);
Exit;
end;
FilePath := IncludeTrailingPathDelimiter(ProcessPattern(Engine, ParamString2, Engine.Path, '', True));
FileName := ExtractFileName(ParamString1);
OriginalFName := FileName;
if Pos('.', FileName) > 1 then FileName := ChangeFileExt(FileName, '.001')
else FileName := FileName + '.001';
PrivateCancel := False;
if ParamInt64 > 0 then begin
SetProgress2Params(FileSize);
UpdateProgress2(0, '0 %');
end else begin
SetProgress1Params(FileSize);
UpdateProgress1(0, '0 %');
end;
UpdateCaption1(Format(LANGFromS, [StrToUTF8(IncludeTrailingPathDelimiter(FilePath) + OriginalFName)]));
CommitGUIUpdate;
repeat
TDF := Engine.GetFileSystemFree(FilePath);
// Delete target files if necessary
if ParamBool1 and ((TDF < 512) or (TDF < FileSize) or (TDF < ParamInt64)) then try
if List.Count > 0 then
for i := List.Count - 1 downto 0 do
FreeDataItem(PDataItem(List[i]));
List.Clear;
Error := Engine.GetListing(List, ConfShowDotFiles, FilePath);
if (Error = 0) and (List.Count > 0) then begin
st := '';
if List.Count < 6 then begin
for i := 0 to List.Count - 1 do
st := st + ' ' + string(PDataItem(List[i])^.FDisplayName) + #10;
b := ShowMessageBox(Format(LANGThereAreSomeFilesInTheTargetDirectorySDoYouWantToDeleteThem, [StrToUTF8(st)]), [mbYes, mbNo], mbQuestion, mbNone, mbNo) = mbYes;
end else b := ShowMessageBox(Format(LANGThereAreDFilesInTheTargetDirectoryDoYouWantToDeleteThem, [List.Count]), [mbYes, mbNo], mbQuestion, mbNone, mbNo) = mbYes;
if b then
for i := 0 to List.Count - 1 do begin
Error := Engine.Remove(IncludeTrailingPathDelimiter(FilePath) + string(PDataItem(List[i])^.FName));
if Error <> 0 then ShowMessageBox(Format(LANGTheTargetFileSCannotBeRemovedS, [StrToUTF8(IncludeTrailingPathDelimiter(FilePath)) + string(PDataItem(List[i])^.FDisplayName), GetErrorString(Error)]), [mbOK], mbError, mbNone, mbOK);
end;
end;
except end;
// Test for target file existence
if Engine.FileExists(IncludeTrailingPathDelimiter(FilePath) + FileName) then begin
b := ShowMessageBox(Format(LANGTheTargetFileSAlreadyExistsDoYouWantToOverwriteIt, [StrToUTF8(IncludeTrailingPathDelimiter(FilePath) + FileName)]), [mbYes, mbNo], mbQuestion, mbNone, mbNo) = mbYes;
if b then begin
Error := Engine.Remove(IncludeTrailingPathDelimiter(FilePath) + FileName);
if Error <> 0 then begin
FCancelMessage := Format(LANGTheTargetFileSCannotBeRemovedS, [StrToUTF8(IncludeTrailingPathDelimiter(FilePath) + FileName), GetErrorString(Error)]);
FShowCancelMessage := True;
PrivateCancel := True;
Break;
end;
end else begin
PrivateCancel := True;
Break;
end;
end;
// Free space check
if NewDiskQuestion then Break;
// Writing
ws := 0;
if (CurrSize >= 512) and (TDF >= CurrSize) then begin
b := WriteSplitPart(IncludeTrailingPathDelimiter(FilePath) + FileName, CurrSize, ws);
if (not b) and (ParamInt64 > 0) then begin
FCancelMessage := Format(LANGAnErrorOccuredWhileOperationS, [GetErrorString(Error)]);
FShowCancelMessage := True;
PrivateCancel := True;
Break;
end;
Inc(SizeDone, ws);
if ParamInt64 > 0 then UpdateProgress2(SizeDone, Format('%d %%', [Trunc(SizeDone / FileSize * 100)]))
else UpdateProgress1(SizeDone, Format('%d %%', [Trunc(SizeDone / FileSize * 100)]));
CommitGUIUpdate;
end;
// Free space check - New disk question after operation
if NewDiskQuestion then Break;
// Change filename
if ws > 0 then
try FileName := Copy(FileName, 1, LastDelimiter('.', FileName)) +
Format('%.3d', [StrToInt(Copy(FileName, LastDelimiter('.', FileName) + 1,
Length(FileName) - LastDelimiter('.', FileName))) + 1]);
except
FileName := '';
end;
until (SizeDone = FileSize) or Cancelled or PrivateCancel or (FileName = '');
if Cancelled and (not PrivateCancel) then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
end;
if not (Cancelled or PrivateCancel) then begin
repeat
TDF := Engine.GetFileSystemFree(FilePath);
if (TDF < 512) and (not NewDiskQuestion) then Break;
until (TDF >= 512) or PrivateCancel or Cancelled;
if WriteCRCFile(Engine, IncludeTrailingPathDelimiter(FilePath) + FileName, OriginalFName, SizeDone, FileCRC)
then ShowMessageBox(Format(LANGSplitOfSSucceeded, [StrToUTF8(OriginalFName)]), [mbOK], mbInfo, mbNone, mbOK)
else begin
FCancelMessage := Format(LANGSplitOfSFailed, [StrToUTF8(OriginalFName)]);
FShowCancelMessage := True;
end;
end;
Engine.CloseFile(FD);
end;
List.Free;
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
procedure ChmodFilesWorker(SenderThread: TWorkerThread);
// ParamBool1 = Recursive
// ParamInt1 = All/Dir/Files
// ParamCardinal1 = Mode
var SkipAll: boolean;
function HandleChmod(AFileRec: PDataItemSL): boolean;
var Res, Response: integer;
begin
Result := True;
with SenderThread do begin
// DebugMsg(['Chmod Debug: IsDir: ', AFileRec^.IsDir, ', Stage1: ', AFileRec^.Stage1, ', IsLnk: ', AFileRec^.IsLnk, '; Result = ', AFileRec^.IsDir and AFileRec^.Stage1 and (not AFileRec^.IsLnk)]);
if AFileRec^.IsDir and ParamBool1 and AFileRec^.Stage1 and (not AFileRec^.IsLnk) then Exit;
if (not AFileRec^.IsDir) and ParamBool1 and (ParamInt1 = 1) then Exit; // Directories only
if AFileRec^.IsDir and ParamBool1 and (ParamInt1 = 2) then Exit; // Files only
Res := Engine.Chmod(String(AFileRec^.FName), ParamCardinal1);
// DebugMsg(['Result : ', Res]);
if Res <> 0 then
if SkipAll then Result := True else
begin
Response := ShowDirDeleteDialog(1, LANGTheFileDirectory, String(AFileRec^.FDisplayName), Format(LANGCouldNotBeChmoddedS,
[GetErrorString(Res)]), LANGDialogChangePermissions);
case Response of
1 : Result := True;
3 : begin
SkipAll := True;
Result := True;
end;
2 : Result := HandleChmod(AFileRec);
else Result := False;
end;
end;
end;
end;
var i: longint;
AList: TList;
CurrPath: string;
Fr: Single;
x: PDataItemSL;
begin
SkipAll := False;
with SenderThread do begin
AList := TList.Create;
AList.Clear;
CurrPath := IncludeTrailingPathDelimiter(Engine.Path);
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if (not UpDir) and Selected then
if IsDir and (not IsLnk) and ParamBool1
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
if (AList.Count = 0) and Assigned(SelectedItem) and (not SelectedItem^.UpDir) then
with SelectedItem^ do
if IsDir and (not IsLnk) and ParamBool1
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
Engine.ExplicitChDir('/');
SetProgress1Params(AList.Count);
UpdateProgress1(0, '0 %');
CommitGUIUpdate;
// DebugWriteListSL(AList);
if AList.Count = 1 then Fr := 1 else Fr := 100 / (AList.Count - 1);
if AList.Count > 0 then
for i := 0 to AList.Count - 1 do begin
if Cancelled then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
Break;
end;
// Process chmod
if not HandleChmod(AList[i]) then Break;
UpdateProgress1(i, Format('%d%%', [Round(Fr * i)]));
UpdateCaption1(PDataItemSL(AList[i])^.FDisplayName);
CommitGUIUpdate;
end;
// Free the objects
if AList.Count > 0 then
for i := AList.Count - 1 downto 0 do FreeDataItem(PDataItemSL(AList[i]));
AList.Clear;
AList.Free;
end;
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
procedure ChownFilesWorker(SenderThread: TWorkerThread);
// ParamBool1 = Recursive
// ParamCardinal1 = UID
// ParamCardinal2 = GID
var SkipAll: boolean;
function HandleChown(AFileRec: PDataItemSL): boolean;
var Res, Response: integer;
begin
Result := True;
with SenderThread do begin
// DebugMsg(['Chown Debug: IsDir: ', AFileRec^.IsDir, ', Stage1: ', AFileRec^.Stage1, ', IsLnk: ', AFileRec^.IsLnk, '; Result = ', AFileRec^.IsDir and AFileRec^.Stage1 and (not AFileRec^.IsLnk)]);
if (AFileRec^.IsDir and ParamBool1 and AFileRec^.Stage1 and (not AFileRec^.IsLnk)) or
((not AFileRec^.IsDir) and ParamBool1) then Exit;
Res := Engine.Chown(String(AFileRec^.FName), ParamCardinal1, ParamCardinal2);
// DebugMsg(['Result : ', Res]);
if Res <> 0 then
if SkipAll then Result := True else
begin
Response := ShowDirDeleteDialog(1, LANGTheFileDirectory, String(AFileRec^.FDisplayName), Format(LANGCouldNotBeChownedS,
[GetErrorString(Res)]), LANGDialogChangeOwner);
case Response of
1 : Result := True;
3 : begin
SkipAll := True;
Result := True;
end;
2 : Result := HandleChown(AFileRec);
else Result := False;
end;
end;
end;
end;
var i: longint;
AList: TList;
CurrPath: string;
Fr: Single;
x: PDataItemSL;
begin
SkipAll := False;
with SenderThread do begin
AList := TList.Create;
AList.Clear;
CurrPath := IncludeTrailingPathDelimiter(Engine.Path);
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do
with PDataItem(DataList[i])^ do
if (not UpDir) and Selected then
if IsDir and (not IsLnk) and ParamBool1
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
if (AList.Count = 0) and Assigned(SelectedItem) and (not SelectedItem^.UpDir) then
with SelectedItem^ do
if IsDir and (not IsLnk) and ParamBool1
then Engine.FillDirFiles(CurrPath + String(FName), AList, 1)
else begin
x := Engine.GetFileInfoSL(CurrPath + String(FName));
if x <> nil then AList.Add(x);
end;
Engine.ExplicitChDir('/');
SetProgress1Params(AList.Count);
UpdateProgress1(0, '0 %');
CommitGUIUpdate;
// DebugWriteListSL(AList);
if AList.Count = 1 then Fr := 1 else Fr := 100 / (AList.Count - 1);
if AList.Count > 0 then
for i := 0 to AList.Count - 1 do begin
if Cancelled then begin
FCancelMessage := LANGUserCancelled;
FShowCancelMessage := True;
Break;
end;
// Process chmod
if not HandleChown(AList[i]) then Break;
UpdateProgress1(i, Format('%d%%', [Round(Fr * i)]));
UpdateCaption1(PDataItemSL(AList[i])^.FDisplayName);
CommitGUIUpdate;
end;
// Free the objects
if AList.Count > 0 then
for i := AList.Count - 1 downto 0 do FreeDataItem(PDataItemSL(AList[i]));
AList.Clear;
AList.Free;
end;
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
procedure DummyThreadWorker(SenderThread: TWorkerThread);
var i: integer;
begin
DebugMsg(['(II) DummyThreadWorker: begin']);
with SenderThread do begin
SetProgress1Params(100);
SetProgress2Params(100);
UpdateProgress1(0, '0 %');
UpdateProgress2(100, '100 %');
CommitGUIUpdate;
for i := 1 to 100 do begin
Sleep(100);
DebugMsg([' (II) DummyThreadWorker: done ', i, ' / 100']);
UpdateProgress1(i, Format('%d%%', [i]));
UpdateCaption1(Format('Test %d test', [i]));
UpdateProgress2(101-i, Format('%d%%', [101-i]));
UpdateCaption2(Format('Test %d test', [101-i]));
CommitGUIUpdate;
if Cancelled then Break;
end;
end;
DebugMsg(['(II) DummyThreadWorker: finish']);
SenderThread.FDoneThread := True;
end;
(********************************************************************************************************************************)
function CreateSymlink(const FileName, PossibleNewName: string; Engine: TPanelEngine) : boolean;
var AFSymLink: TFSymlink;
function HandleCreateSymlink(const OldName, NewName: string): boolean;
var Res, Response: integer;
begin
Res := Engine.MakeSymLink(NewName, OldName);
Result := Res = 0;
if not Result then begin
try
FDirDelete := TFDirDelete.Create(AFSymlink);
FDirDelete.Caption := LANGDialogMakeSymlink;
FDirDelete.AddButtons(2);
FDirDelete.Label1.Caption := LANGTheSymbolicLink;
FDirDelete.Label2.Caption := NewName;
FDirDelete.Label3.Caption := Format(LANGCouldNotBeCreatedS, [GetErrorString(Res)]);
FDirDelete.Label3.Visible := True;
Response := Integer(FDirDelete.Run);
finally
FDirDelete.Free;
end;
case Response of
1 : Result := HandleCreateSymlink(OldName, NewName);
else Result := False;
end;
end;
end;
begin
Result := False;
try
AFSymlink := TFSymlink.Create(Application.MainForm);
AFSymLink.FileName := FileName;
AFSymLink.PossibleNewName := PossibleNewName;
AFSymlink.FromEntry.Text := StrToUTF8(FileName);
AFSymlink.ToEntry.Text := StrToUTF8(PossibleNewName);
AFSymlink.ToEntry.SetFocus;
AFSymlink.ToEntry.SelectAll;
AFSymLink.RelativeCheckButton.Checked := ConfMakeSymlinkRelative;
if AFSymlink.Run = mbOK then Result := HandleCreateSymlink(UTF8ToStr(AFSymlink.FromEntry.Text),
ProcessPattern(Engine, UTF8ToStr(AFSymlink.ToEntry.Text), Engine.Path, '', False));
if Result then ConfMakeSymlinkRelative := AFSymLink.RelativeCheckButton.Checked;
finally
AFSymlink.Free;
end;
end;
(********************************************************************************************************************************)
function EditSymlink(const FileName: string; Engine: TPanelEngine) : boolean;
var Data: PDataItemSL;
AFSymLink: TFSymlink;
function HandleEditSymlink(const ExistingName, PointTo: string): boolean;
var Res, Response: integer;
begin
Res := Engine.Remove(ExistingName);
Result := Res = 0;
if not Result then begin
try
FDirDelete := TFDirDelete.Create(AFSymlink);
FDirDelete.Caption := LANGDialogEditSymlink;
FDirDelete.AddButtons(2);
FDirDelete.Label1.Caption := LANGTheSymbolicLink;
FDirDelete.Label2.Caption := StrToUTF8(ExistingName);
FDirDelete.Label3.Caption := Format(LANGCouldNotBeDeletedS, [GetErrorString(Res)]);
FDirDelete.Label3.Visible := True;
Response := Integer(FDirDelete.Run);
finally
FDirDelete.Free;
end;
case Response of
1 : HandleEditSymlink(ExistingName, PointTo);
end;
Exit;
end;
Res := Engine.MakeSymLink(ExistingName, PointTo);
Result := Res = 0;
if not Result then begin
try
FDirDelete := TFDirDelete.Create(AFSymlink);
FDirDelete.Caption := LANGDialogMakeSymlink;
FDirDelete.AddButtons(2);
FDirDelete.Label1.Caption := LANGTheSymbolicLink;
FDirDelete.Label2.Caption := StrToUTF8(ExistingName);
FDirDelete.Label3.Caption := Format(LANGCouldNotBeCreatedS, [GetErrorString(Res)]);
FDirDelete.Label3.Visible := True;
Response := Integer(FDirDelete.Run);
finally
FDirDelete.Free;
end;
case Response of
1 : Result := HandleEditSymlink(ExistingName, PointTo);
else Result := False;
end;
end;
end;
begin
Result := False;
Data := Engine.GetFileInfoSL(FileName);
if Data = nil then begin
Result := False;
Exit;
end;
try
AFSymlink := TFSymlink.Create(Application);
AFSymlink.Caption := LANGFEditSymlink_Caption;
AFSymlink.FromEntry.Text := StrToUTF8(FileName);
AFSymlink.Label1.Caption := LANGFEditSymlink_SymbolicLinkFilename;
AFSymlink.Label1.UseUnderline := True;
AFSymlink.Label2.Caption := LANGFEditSymlink_SymbolicLinkPointsTo;
AFSymlink.Label2.UseUnderline := True;
AFSymlink.FromEntry.Enabled := False;
AFSymlink.ToEntry.Text := StrToUTF8(Data^.LnkPointTo);
AFSymlink.ToEntry.SelectAll;
AFSymLink.RelativeCheckButton.Visible := False;
if AFSymlink.Run = mbOK then Result := HandleEditSymlink(UTF8ToStr(AFSymlink.FromEntry.Text), UTF8ToStr(AFSymlink.ToEntry.Text));
finally
AFSymlink.Free;
end;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
procedure ProcessProgressThread(SenderThread: TWorkerThread; ProgressForm: TFProgress);
var AFDirDelete: TFDirDelete;
AFOverwrite: TFOverwrite;
AFNewDir: TFNewDir;
b: boolean;
begin
DebugMsg([' ** ProcessProgressThread --begin']);
b := False;
try
while not SenderThread.FDoneThread do begin
// Write('.');
Sleep(ConstInternalProgressTimer);
// DebugMsg([' ** ProcessProgressThread: updating UI (FProgress1Pos = ', SenderThread.FProgress1Pos, ', FProgress2Pos = ', SenderThread.FProgress2Pos]);
// DebugMsg(['ProcessProgressThread - before mutex']);
SenderThread.GUIMutex.Acquire;
// WriteLn('ProcessProgressThread - ted mam lock ja! -- enter');
try
if SenderThread.FGUIChanged then begin
if SenderThread.FGUIProgress1Max > 1
then ProgressForm.ProgressBar.Fraction := SenderThread.FGUIProgress1Pos / SenderThread.FGUIProgress1Max
else ProgressForm.ProgressBar.Fraction := 0;
// ProgressForm.ProgressBar.Value := SenderThread.FGUIProgress1Pos;
ProgressForm.ProgressBar.Text := SenderThread.FGUIProgress1Text;
ProgressForm.Label2.Caption := SenderThread.FGUILabel1Text;
if ProgressForm.FTwoBars then begin
if SenderThread.FGUIProgress2Max > 1
then ProgressForm.ProgressBar2.Fraction := SenderThread.FGUIProgress2Pos / SenderThread.FGUIProgress2Max
else ProgressForm.ProgressBar2.Fraction := 0;
// ProgressForm.ProgressBar2.Value := SenderThread.FGUIProgress2Pos;
ProgressForm.ProgressBar2.Text := SenderThread.FGUIProgress2Text;
ProgressForm.Label3.Caption := SenderThread.FGUILabel2Text;
end;
ProgressForm.ProgressBar.Max := SenderThread.FGUIProgress1Max;
ProgressForm.ProgressBar2.Max := SenderThread.FGUIProgress2Max;
SenderThread.FGUIChanged := False;
end;
except
on E: Exception do DebugMsg(['*** Exception raised in UCore.ProcessProgressThread::updating progress bars block (', E.ClassName, '): ', E.Message]);
end;
// Sleep(1000);
// WriteLn('ProcessProgressThread - ted mam lock ja! -- leave');
SenderThread.GUIMutex.Release;
// DebugMsg(['Before refresh']);
Application.ProcessMessages;
// DebugMsg(['After refresh']);
// VFS callbacks
if SenderThread.VFSAskQuestion_Display then begin
SenderThread.VFSAskQuestion_Display := False;
DebugMsg(['ProcessProgressThread - Main thread: displaying question dialog']);
HandleVFSAskQuestionCallback(ProgressForm.FWidget, SenderThread.VFSAskQuestion_Message, SenderThread.VFSAskQuestion_Choices, SenderThread.VFSAskQuestion_Choice);
SenderThread.VFSCallbackEvent.SetEvent;
end;
if SenderThread.VFSAskPassword_Display then begin
SenderThread.VFSAskPassword_Display := False;
DebugMsg(['ProcessProgressThread - Main thread: displaying password prompt']);
SenderThread.VFSAskPassword_Result := HandleVFSAskPasswordCallback(ProgressForm.FWidget,
SenderThread.VFSAskPassword_Message,
SenderThread.VFSAskPassword_default_user,
SenderThread.VFSAskPassword_default_domain,
SenderThread.VFSAskPassword_default_password,
SenderThread.VFSAskPassword_flags,
SenderThread.VFSAskPassword_username,
SenderThread.VFSAskPassword_password,
SenderThread.VFSAskPassword_anonymous,
SenderThread.VFSAskPassword_domain,
SenderThread.VFSAskPassword_password_save);
SenderThread.VFSCallbackEvent.SetEvent;
end;
try
if SenderThread.FDialogShowDirDelete then begin
AFDirDelete := nil;
try
AFDirDelete := TFDirDelete.Create(SenderThread.ProgressForm as TComponent);
AFDirDelete.Caption := SenderThread.FDirDeleteCaption;
AFDirDelete.AddButtons(SenderThread.FDirDeleteButtonsType);
AFDirDelete.Label1.Caption := SenderThread.FDirDeleteLabel1Text;
AFDirDelete.Label2.Caption := SenderThread.FDirDeleteLabel2Text;
AFDirDelete.Label3.Caption := SenderThread.FDirDeleteLabel3Text;
AFDirDelete.Label2.Visible := SenderThread.FDirDeleteLabel2Visible;
AFDirDelete.Label3.Visible := SenderThread.FDirDeleteLabel3Visible;
SenderThread.FDialogResultDirDelete := Integer(AFDirDelete.Run);
if (SenderThread.FDirDeleteButtonsType = 3) and (SenderThread.FDialogResultDirDelete = 2) and (not SenderThread.ParamBool3)
then case Application.MessageBox(LANGIgnoreError, [mbYes, mbNo{, mbCancel}], mbWarning, mbYes, mbNo) of
mbNo: SenderThread.FDialogResultDirDelete := 1;
mbCancel: SenderThread.FDialogResultDirDelete := 0;
end;
finally
AFDirDelete.Free;
end;
SenderThread.FDialogShowDirDelete := False;
b := True;
end;
if SenderThread.FDialogShowOverwrite then begin
AFOverwrite := nil;
try
AFOverwrite := TFOverwrite.Create(SenderThread.ProgressForm as TComponent);
AFOverwrite.AddButtons(SenderThread.FOverwriteButtonsType);
AFOverwrite.FromLabel.Caption := SenderThread.FOverwriteFromLabel;
AFOverwrite.FromInfoLabel.Caption := SenderThread.FOverwriteFromInfoLabel;
AFOverwrite.ToLabel.Caption := SenderThread.FOverwriteToLabel;
AFOverwrite.ToInfoLabel.Caption := SenderThread.FOverwriteToInfoLabel;
AFOverwrite.RenameStr := SenderThread.FOverwriteRenameStr;
AFOverwrite.SourceFile := SenderThread.FOverwriteSourceFile;
AFOverwrite.DestFile := SenderThread.FOverwriteDestFile;
SenderThread.FDialogResultOverwrite := Integer(AFOverwrite.Run);
SenderThread.FOverwriteRenameStr := UTF8ToStr(AFOverwrite.RenameStr);
finally
AFOverwrite.Free;
end;
SenderThread.FDialogShowOverwrite := False;
b := True;
end;
if SenderThread.FDialogShowNewDir then begin
AFNewDir := nil;
try
AFNewDir := TFNewDir.Create(SenderThread.ProgressForm as TComponent);
AFNewDir.Caption := SenderThread.FNewDirCaption;
AFNewDir.Label1.Caption := SenderThread.FNewDirLabel;
AFNewDir.Entry.Text := SenderThread.FNewDirEdit;
AFNewDir.Entry.SelectAll;
SenderThread.FDialogResultNewDir := Integer(AFNewDir.Run);
SenderThread.FNewDirEdit := AFNewDir.Entry.Text;
finally
AFNewDir.Free;
end;
SenderThread.FDialogShowNewDir := False;
b := True;
end;
if SenderThread.FDialogShowMsgBox then begin
SenderThread.FDialogResultMsgBox := Application.MessageBox(SenderThread.FMsgBoxText, SenderThread.FMsgBoxButtons,
SenderThread.FMsgBoxStyle, SenderThread.FMsgBoxDefault,
SenderThread.FMsgBoxEscape);
SenderThread.FDialogShowMsgBox := False;
b := True;
end;
finally
// Unlock the waiting worker thread
if b then begin
b := False;
SenderThread.FCallbackLockEvent.SetEvent;
end;
end;
end;
if SenderThread.FShowCancelMessage then
if SenderThread.FCancelMessage = LANGUserCancelled
then Application.MessageBox(SenderThread.FCancelMessage, [mbOK], mbWarning, mbNone, mbOK)
else Application.MessageBox(SenderThread.FCancelMessage, [mbOK], mbError, mbNone, mbOK);
except
on E: Exception do DebugMsg(['*** Exception raised in UCore.ProcessProgressThread (', E.ClassName, '): ', E.Message]);
end;
DebugMsg([' ** ProcessProgressThread --end']);
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
procedure TWorkerThread.Execute;
begin
PrepareExecute;
if Assigned(WorkerProcedure) then WorkerProcedure(Self);
end;
constructor TWorkerThread.Create;
begin
inherited Create(True);
FreeOnTerminate := False;
GUIMutex := TCriticalSection.Create;
FCallbackLockEvent := TSimpleEvent.Create;
FCancelled := False;
ProgressForm := nil;
Engine := nil;
DataList := nil;
ParamPointer1 := nil;
WorkerProcedure := nil;
SelectedItem := nil;
FDoneThread := False;
FShowCancelMessage := False;
FDialogShowDirDelete := False;
FDialogShowOverwrite := False;
FDialogShowNewDir := False;
FDialogShowMsgBox := False;
ExtractFromVFSMode := False;
ErrorHappened := False;
ParamBool1 := False;
ParamBool2 := False;
ParamBool3 := False;
ParamBool4 := False;
ParamBool5 := False;
FGUIChanged := False;
end;
destructor TWorkerThread.Destroy;
begin
GUIMutex.Free;
FCallbackLockEvent.Free;
inherited Destroy;
end;
procedure TWorkerThread.CancelIt;
begin
FCancelled := True;
end;
function TWorkerThread.Cancelled: boolean;
begin
Result := FCancelled or ProgressForm.Cancelled;
end;
procedure TWorkerThread.UpdateProgress1(const Progress: Int64; const ProgressText: string);
begin
// DebugMsg([' ** TWorkerThread.UpdateProgress1(Progress = ', Progress, ', ProgressText = ', ProgressText]);
FProgress1Pos := Progress;
FProgress1Text := ProgressText;
end;
procedure TWorkerThread.UpdateProgress2(const Progress: Int64; const ProgressText: string);
begin
// DebugMsg([' ** TWorkerThread.UpdateProgress2(Progress = ', Progress, ', ProgressText = ', ProgressText]);
FProgress2Pos := Progress;
FProgress2Text := ProgressText;
end;
procedure TWorkerThread.SetProgress1Params(const ProgressMax: Int64);
begin
FProgress1Max := ProgressMax;
end;
procedure TWorkerThread.SetProgress2Params(const ProgressMax: Int64);
begin
FProgress2Max := ProgressMax;
end;
procedure TWorkerThread.UpdateCaption1(const CaptionText: string);
begin
FLabel1Text := CaptionText;
end;
procedure TWorkerThread.UpdateCaption2(const CaptionText: string);
begin
FLabel2Text := CaptionText;
end;
procedure TWorkerThread.CommitGUIUpdate;
begin
GUIMutex.Acquire;
// WriteLn('TWorkerThread.CommitGUIUpdate, ted mam lock ja! -- enter');
FGUIProgress1Pos := FProgress1Pos;
FGUIProgress2Pos := FProgress2Pos;
FGUIProgress1Max := FProgress1Max;
FGUIProgress2Max := FProgress2Max;
FGUIProgress1Text := FProgress1Text;
FGUIProgress2Text := FProgress2Text;
FGUILabel1Text := FLabel1Text;
FGUILabel2Text := FLabel2Text;
FGUIChanged := True;
// Sleep(1000);
// WriteLn('TWorkerThread.CommitGUIUpdate, ted mam lock ja! -- leave');
GUIMutex.Release;
end;
function TWorkerThread.ShowDirDeleteDialog(ButtonsType: integer; const Label1Text: string; const Label2Text: string = ''; const Label3Text: string = ''; const DirDeleteCaption: string = ''): integer;
begin
FDialogResultDirDelete := integer(mbCancel);
FDirDeleteLabel1Text := Label1Text;
FDirDeleteLabel2Text := Label2Text;
FDirDeleteLabel3Text := Label3Text;
FDirDeleteLabel2Visible := Label2Text <> '';
FDirDeleteLabel3Visible := Label3Text <> '';
FDirDeleteButtonsType := ButtonsType;
if DirDeleteCaption = '' then FDirDeleteCaption := LANGRemoveDirectory
else FDirDeleteCaption := DirDeleteCaption;
FDialogShowDirDelete := True;
FCallbackLockEvent.ResetEvent;
FCallbackLockEvent.WaitFor(INFINITE);
Result := FDialogResultDirDelete;
end;
function TWorkerThread.ShowOverwriteDialog(ButtonsType: integer; const FromLabel, FromInfoLabel, ToLabel, ToInfoLabel, RenameStr, SourceFile, DestFile: string): integer;
begin
FDialogResultOverwrite := integer(mbCancel);
FOverwriteButtonsType := ButtonsType;
FOverwriteFromLabel := FromLabel;
FOverwriteFromInfoLabel := FromInfoLabel;
FOverwriteToLabel := ToLabel;
FOverwriteToInfoLabel := ToInfoLabel;
FOverwriteRenameStr := RenameStr;
FOverwriteSourceFile := SourceFile;
FOverwriteDestFile := DestFile;
FDialogShowOverwrite := True;
FCallbackLockEvent.ResetEvent;
FCallbackLockEvent.WaitFor(INFINITE);
Result := FDialogResultOverwrite;
end;
function TWorkerThread.ShowNewDirDialog(Caption, LabelCaption, Edit: string): integer;
begin
FNewDirCaption := Caption;
FNewDirLabel := LabelCaption;
FNewDirEdit := Edit;
FDialogShowNewDir := True;
FCallbackLockEvent.ResetEvent;
FCallbackLockEvent.WaitFor(INFINITE);
Result := FDialogResultNewDir;
end;
function TWorkerThread.ShowMessageBox(const Text: string; Buttons: TMessageButtons; Style: TMessageStyle; Default, Escape: TMessageButton): TMessageButton;
begin
FMsgBoxText := Text;
FMsgBoxButtons := Buttons;
FMsgBoxStyle := Style;
FMsgBoxDefault := Default;
FMsgBoxEscape := Escape;
FDialogShowMsgBox := True;
FCallbackLockEvent.ResetEvent;
FCallbackLockEvent.WaitFor(INFINITE);
Result := FDialogResultMsgBox;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
(********************************************************************************************************************************)
procedure FillDefaultFstabMounterItems;
var fd: PFILE;
mntent: Pmntent;
MounterItem: TMounterItem;
begin
while MounterList.Count > 0 do begin
TMounterItem(MounterList[MounterList.Count - 1]).Free;
MounterList.Delete(MounterList.Count - 1);
end;
MounterList.Clear;
fd := setmntent(_PATH_MNTTAB, 'r');
if fd = nil then Exit;
// Get mount name
mntent := getmntent(fd);
while mntent <> nil do begin
DebugMsg(['FillDefaultFstabMounterItems: found "', mntent^.mnt_dir, '" --> "', mntent^.mnt_fsname, '", fstype "', mntent^.mnt_type, '"']);
if (mntent^.mnt_dir <> nil) and (mntent^.mnt_type <> nil) and (strlen(mntent^.mnt_dir) > 0) and (strlen(mntent^.mnt_type) > 0) and
(mntent^.mnt_dir <> '/') and (mntent^.mnt_dir <> '/boot') and (Pos('/proc', mntent^.mnt_dir) <> 1) and
(Pos('/dev', mntent^.mnt_dir) <> 1) and (Pos('/sys', mntent^.mnt_dir) <> 1) and (mntent^.mnt_dir <> 'swap') and
(mntent^.mnt_type <> 'swap') and (mntent^.mnt_type <> 'rpc_pipefs') and (mntent^.mnt_type <> 'none') and
(mntent^.mnt_dir <> 'none') then
begin
MounterItem := TMounterItem.Create;
MounterItem.DisplayText := '';
MounterItem.MountPath := mntent^.mnt_dir;
MounterItem.Device := mntent^.mnt_fsname;
if (Pos('ISO9660', UpperCase(mntent^.mnt_type)) > 0) or (Pos('CDROM', UpperCase(mntent^.mnt_dir)) > 0) or
(Pos('CDRW', UpperCase(mntent^.mnt_dir)) > 0) or (Pos('DVD', UpperCase(mntent^.mnt_dir)) > 0)
then MounterItem.DeviceType := 2 else
if (Pos('FLOPPY', UpperCase(mntent^.mnt_dir)) > 0) then MounterItem.DeviceType := 3 else
if (Pos('ZIP', UpperCase(mntent^.mnt_type)) > 0) or (Pos('USB', UpperCase(mntent^.mnt_dir)) > 0) or
(Pos('CAMERA', UpperCase(mntent^.mnt_dir)) > 0) then MounterItem.DeviceType := 1 else
if (Pos('NFS', UpperCase(mntent^.mnt_type)) > 0) or (Pos('SMB', UpperCase(mntent^.mnt_type)) > 0) or
(Pos('NETW', UpperCase(mntent^.mnt_dir)) > 0) then MounterItem.DeviceType := 4 else
MounterItem.DeviceType := 0;
MounterList.Add(MounterItem);
end;
mntent := getmntent(fd);
end;
endmntent(fd);
end;
function TMounterItem.Mounted: boolean;
var fd: PFILE;
mntent: Pmntent;
begin
Result := False;
fd := setmntent(_PATH_MOUNTED, 'r');
if fd = nil then Exit;
// Get mount name
mntent := getmntent(fd);
while mntent <> nil do begin
// DebugMsg(['mntent^.mnt_dir = ', Int64(mntent^.mnt_dir)]);
// DebugMsg(['mntent^.mnt_dir = ', mntent^.mnt_dir]);
// DebugMsg(['sizeof(mntent^.mnt_dir) = ', sizeof(mntent^.mnt_dir)]);
// DebugMsg(['sizeof(Tmntent) = ', sizeof(Tmntent)]);
// DebugMsg(['string(mntent^.mnt_dir) = ', string(mntent^.mnt_dir)]);
// DebugMsg(['MountPath = ', MountPath]);
if mntent^.mnt_dir = MountPath then begin
Result := True;
Break;
end;
mntent := getmntent(fd);
end;
endmntent(fd);
end;
function TMounterItem.IsInFSTab: boolean;
var fd: PFILE;
mntent: Pmntent;
begin
Result := False;
fd := setmntent(_PATH_MNTTAB, 'r');
if fd = nil then Exit;
// Get mount name
mntent := getmntent(fd);
while mntent <> nil do begin
if (mntent^.mnt_dir = MountPath) and (mntent^.mnt_fsname = Device) then begin
Result := True;
Break;
end;
mntent := getmntent(fd);
end;
endmntent(fd);
end;
function TMounterItem.Mount: boolean;
var s: string;
begin
if Length(MountCommand) = 0 then begin
if IsInFSTab then s := Format('mount "%s"', [MountPath])
else s := Format('mount "%s" "%s"', [Device, MountPath]);
end else begin
s := ReplaceStr(MountCommand, '%dev', Device);
s := ReplaceStr(s, '%dir', MountPath);
end;
Result := HandleSystemCommand(s, Format(LANGErrorMount, [StrToUTF8(MountPath)]));
end;
function TMounterItem.Umount: boolean;
var s: string;
begin
if Length(UmountCommand) = 0 then begin
if IsInFSTab then s := Format('umount "%s"', [MountPath])
else s := Format('umount "%s" "%s"', [Device, MountPath]);
end else begin
s := ReplaceStr(UmountCommand, '%dev', Device);
s := ReplaceStr(s, '%dir', MountPath);
end;
Result := HandleSystemCommand(s, Format(LANGErrorUmount, [StrToUTF8(MountPath)]));
end;
function TMounterItem.Eject: boolean;
var s: string;
begin
if Length(UmountCommand) = 0 then begin
if IsInFSTab then s := Format('eject "%s"', [MountPath])
else s := Format('eject "%s" "%s"', [Device, MountPath]);
end else begin
s := ReplaceStr(UmountCommand, '%dev', Device);
s := ReplaceStr(s, '%dir', MountPath);
end;
Result := HandleSystemCommand(s, Format(LANGErrorEject, [StrToUTF8(MountPath)]));
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
procedure TGetDirSizeThread.Execute;
begin
Result := Engine.GetDirSize(Path);
Finished := True;
end;
constructor TGetDirSizeThread.Create;
begin
inherited Create(True);
FreeOnTerminate := False;
FCancelled := False;
Finished := False;
Result := -1;
end;
procedure TGetDirSizeThread.CancelIt;
begin
FCancelled := True;
Engine.BreakProcessing(1);
end;
procedure GetDirSize(AListView: TGTKListView; Engine: TPanelEngine; DataList: TList; AllItems: boolean);
var t: time_t;
b: boolean;
FRemoteWait: TFRemoteWait;
function DoGetDirSizeItem(Index: integer): boolean;
var Item: TGTKListItem;
Data: PDataItem;
APath, s: string;
ASize: Int64;
// List: TList;
Thread: TGetDirSizeThread;
begin
Result := True;
try
Item := AListView.Items[Index];
if not Assigned(Item) then Exit;
Data := Item.Data;
if (not Assigned(Data)) or (not Data^.IsDir) then Exit;
APath := IncludeTrailingPathDelimiter(Engine.Path) + string(Data^.FName);
{ List := TList.Create;
Engine.FillDirFiles(APath, List, 1);
DebugWriteListSL(List); }
Thread := TGetDirSizeThread.Create;
try
Thread.Path := APath;
Thread.Engine := Engine;
Thread.Resume;
// Thread.Execute;
while not Thread.Finished do begin
Sleep(ConstInternalProgressTimer);
if not b and (__time(nil) >= t + 2) then begin
FRemoteWait := TFRemoteWait.Create(Application);
// FRemoteWait.Label2.Visible := False;
FRemoteWait.ParentForm := FMain;
FRemoteWait.ShowModal;
b := True;
end;
Application.ProcessMessages;
if FMainEscPressed or (Assigned(FRemoteWait) and FRemoteWait.Cancelled) then Thread.CancelIt;
end;
ASize := Thread.Result;
finally
Thread.Free;
end;
if (ASize < 0) or FMainEscPressed or (Assigned(FRemoteWait) and FRemoteWait.Cancelled) then Exit;
Data^.Size := ASize;
s := FormatSize(ASize, 0);
libc_free(Data^.ColumnData[3]);
// Data^.ColumnData[3] := malloc(Length(s) + 1);
// memset(Data^.ColumnData[3], 0, Length(s) + 1);
Data^.ColumnData[3] := strdup(PChar(s));
except end;
end;
var i, j: integer;
Data: PDataItem;
begin
t := __time(nil);
b := False;
FRemoteWait := nil;
if not AllItems then DoGetDirSizeItem(AListView.Selected.Index) else
if DataList.Count > 0 then
for i := 0 to DataList.Count - 1 do begin
j := AListView.ConvertFromSorted(i);
Data := DataList[j];
if Data^.IsDir and (not Data^.UpDir) then begin
if not DoGetDirSizeItem(j) then Break;
if FMainEscPressed then Break;
AListView.Items[j].RedrawRow;
end;
end;
if FRemoteWait <> nil then FRemoteWait.Free;
ChDir('/');
end;
(********************************************************************************************************************************)
constructor TOpenDirThread.Create;
begin
inherited Create(True);
FreeOnTerminate := False;
Finished := False;
CancelIt := False;
ChDirResult := 0;
ListingResult := 0;
VFSOpenResult := 0;
RunningTime := 0;
end;
destructor TOpenDirThread.Destroy;
begin
inherited Destroy;
end;
(********************************************************************************************************************************)
function TOpenDirThread.ChangeDir(Engine: TPanelEngine; Path: string; var SelItem: string; const AutoFallBack: boolean): integer;
procedure GoUp(var NewPath: string);
var x: integer;
begin
if NewPath = PathDelim then Exit;
NewPath := ExcludeTrailingPathDelimiter(NewPath);
if Length(Trim(NewPath)) < 2 then Exit;
x := PosEnd(PathDelim, NewPath);
SelItem := Copy(NewPath, x + 1, Length(NewPath) - x);
NewPath := Copy(NewPath, 1, x);
NewPath := IncludeTrailingPathDelimiter(NewPath);
end;
var APath: string;
Error : integer;
begin
try
APath := Engine.Path;
if Path = '..' then GoUp(APath)
else begin
APath := IncludeTrailingPathDelimiter(APath);
Path := IncludeTrailingPathDelimiter(Path);
if (Length(Path) > 0) and (Path[1] <> '/')
then APath := APath + Path
else APath := Path;
APath := IncludeTrailingPathDelimiter(APath);
end;
// AutoFallback loop
if Engine is TVFSEngine
then Error := (Engine as TVFSEngine).ChangeDirEx(APath, @vfs_ask_question_callback, @vfs_ask_password_callback, nil, Self)
else Error := Engine.ChangeDir(APath);
while AutoFallback and (Error <> 0) and (APath <> '/') do begin
GoUp(APath);
if Engine is TVFSEngine
then Error := (Engine as TVFSEngine).ChangeDirEx(APath, @vfs_ask_question_callback, @vfs_ask_password_callback, nil, Self)
else Error := Engine.ChangeDir(APath);
end;
// Going on...
if Error <> 0 then begin
Result := Error;
DebugMsg(['*** UCore.ChangeDir: error during Engine.ChangeDir: ', GetErrorString(Error)]);
Exit;
end;
Engine.Path := APath;
Result := 0;
except
on E: Exception do begin
DebugMsg(['*** Exception raised in UCore.ChangeDir (', E.ClassName, '): ', E.Message]);
Result := 1;
end;
end;
end;
procedure TOpenDirThread.Execute;
var tt: TDateTime;
xEngine: TVFSEngine;
begin
PrepareExecute;
try
tt := Now;
try
if APlugin <> nil then begin
xEngine := TVFSEngine.Create(APlugin);
xEngine.ParentEngine := AEngine;
AEngine.LastHighlightItem := AHighlightItem;
xEngine.SavePath := AEngine.Path;
// AEngine must be set here since VFSOpenEx callbacks will reference it
AEngine := xEngine;
VFSOpenResult := (AEngine as TVFSEngine).VFSOpenEx(AFullPath, @vfs_ask_question_callback, @vfs_ask_password_callback, nil, Self);
end else VFSOpenResult := 0;
if (VFSOpenResult = 0) and (not CancelIt) then begin
ChDirResult := ChangeDir(AEngine, APath, ASelItem, AAutoFallBack);
if (ChDirResult = 0) and (not CancelIt) then
ListingResult := AEngine.GetListing(ADirList, ConfShowDotFiles);
end;
except
on E: Exception do DebugMsg(['*** Exception raised in TOpenDirThread.Execute (', E.ClassName, '): ', E.Message]);
end;
RunningTime := MilliSecondsBetween(tt, Now);
finally
Finished := True;
end;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
constructor TOpenConnectionThread.Create;
begin
inherited Create(True);
FreeOnTerminate := False;
Finished := False;
OpenResult := False;
end;
destructor TOpenConnectionThread.Destroy;
begin
inherited Destroy;
end;
procedure TOpenConnectionThread.Execute;
begin
PrepareExecute;
try
OpenResult := (AEngine as TVFSEngine).VFSOpenURI(URI, @vfs_ask_question_callback, @vfs_ask_password_callback, nil, Self);
finally
Finished := True;
end;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
function PurgeDirectory(APath: string): boolean;
var Handle : PDIR;
DirEnt : PDirent64;
StatBuf : Pstat64;
Buf : PChar;
begin
Result := True;
try
APath := IncludeTrailingPathDelimiter(APath);
Handle := opendir(PChar(APath));
if not Assigned(Handle) then begin
Result := False;
Exit;
end;
repeat
DirEnt := readdir64(Handle);
if Assigned(DirEnt) and Assigned(PChar(@DirEnt^.d_name[0])) then begin
Buf := Pchar(@DirEnt^.d_name[0]);
if (Buf <> '.') and (Buf <> '..') and (DirEnt^.d_name[0] <> #0) then begin
StatBuf := malloc(sizeof(Tstat64));
memset(StatBuf, 0, sizeof(Tstat64));
if lstat64(PChar(APath + string(Buf)), StatBuf) = 0 then
if __S_ISTYPE(StatBuf.st_mode, __S_IFDIR)
then PurgeDirectory(APath + string(Buf))
else begin
// DebugMsg(['Removing ', APath + string(Buf)]);
Result := Result and (libc_remove(PChar(APath + string(Buf))) = 0);
end;
libc_free(StatBuf);
end;
end;
until DirEnt = nil;
closedir(Handle);
// DebugMsg(['Removing ', ExcludeTrailingPathDelimiter(APath)]);
Result := Result and (libc_remove(PChar(ExcludeTrailingPathDelimiter(APath))) = 0);
except
on E: Exception do DebugMsg(['*** Exception raised in UCore.PurgeDirectory(APath = ', APath, '): ', E.ClassName, ': ', E.Message]);
end;
end;
procedure CleanTempDirs;
var i: integer;
begin
try
if Assigned(UsedTempPaths) and (UsedTempPaths.Count > 0) then
for i := 0 to UsedTempPaths.Count - 1 do
DebugMsg(['(II) PurgeDirectory: Cleaning directory "', UsedTempPaths[i], '", Successfull = ', PurgeDirectory(UsedTempPaths[i])]);
UsedTempPaths.Clear;
except
on E: Exception do DebugMsg(['*** Exception raised in UCore.CleanTempDirs (', E.ClassName, '): ', E.Message]);
end;
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
function TConnMgrItem.GetURI(IncludePassword: boolean): string;
begin
Result := ConstructURI(IncludePassword, False, ServiceType, Server, Username, Password, TargetDir);
end;
(********************************************************************************************************************************)
(********************************************************************************************************************************)
(********************************************************************************************************************************)
initialization
LeftPanelData := TList.Create;
RightPanelData := TList.Create;
LeftLocalEngine := TLocalTreeEngine.Create;
RightLocalEngine := TLocalTreeEngine.Create;
FMainEscPressed := False;
LeftPanelTabs := TStringList.Create;
RightPanelTabs := TStringList.Create;
LeftTabSortIDs := TList.Create;
RightTabSortIDs := TList.Create;
LeftTabSortTypes := TList.Create;
RightTabSortTypes := TList.Create;
AssocList := TList.Create;
MounterList := TList.Create;
ConnectionMgrList := TList.Create;
UsedTempPaths := TStringList.Create;
SelectHistory := TStringList.Create;
SearchHistory := TStringList.Create;
SearchTextHistory := TStringList.Create;
finalization
ClearListData(LeftPanelData);
ClearListData(RightPanelData);
LeftPanelTabs.Free;
RightPanelTabs.Free;
LeftTabSortIDs.Free;
RightTabSortIDs.Free;
LeftTabSortTypes.Free;
RightTabSortTypes.Free;
MounterList.Free;
LeftPanelData.Free;
RightPanelData.Free;
AssocList.Free;
ConnectionMgrList.Free;
CleanTempDirs;
UsedTempPaths.Free;
SelectHistory.Free;
SearchHistory.Free;
SearchTextHistory.Free;
end.
|