1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506
|
{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
-------------------------------------------------------------------------------}
(* some parts (AdjustBalance...) of this unit are based on the AVLTree unit *)
(* TODO: Implement node.eof / node.bof *)
unit SynEditFoldedView;
{$mode objfpc}{$H+}
{$coperators on}
{$IFDEF CPUPOWERPC} {$INLINE OFF} {$ENDIF} (* Workaround for bug 12576 (fpc) see bugs.freepascal.org/view.php?id=12576 *)
{$IFOPT C+}
{$DEFINE SynAssertFold}
{$ENDIF}
{$IFDEF SynAssert}
{$DEFINE SynAssertFold}
{$ENDIF}
{$IFDEF SynFoldDebug}
{$DEFINE SynDebug}
{$DEFINE SynFoldSaveDebug}
{$ENDIF}
{$IFDEF SynFoldSaveDebug}
{$DEFINE SynDebug}
{$ENDIF}
interface
uses
Classes, SysUtils,
// LCL
LCLProc, Graphics,
// LazUtils
LazLoggerBase, LazMethodList,
// SynEdit
LazSynEditText, SynEditTypes, SynEditMiscClasses, SynEditMiscProcs,
SynEditPointClasses, SynEditHighlighter, SynEditHighlighterFoldBase;
type
TFoldNodeClassification = (fncInvalid, fncHighlighter, fncHighlighterEx, fncBlockSelection);
TFoldNodeClassifications = set of TFoldNodeClassification;
{ TSynTextFoldAVLNodeData }
TSynTextFoldAVLNodeData = class(TSynSizedDifferentialAVLNode)
protected
function Left: TSynTextFoldAVLNodeData;
function Parent: TSynTextFoldAVLNodeData;
function Right: TSynTextFoldAVLNodeData;
procedure FreeAllChildrenAndNested;
public (* Position / Size *)
(* FullCount: Amount of lines in source for this fold only
(excluding overlaps) *)
FullCount : Integer;
(* LineOffset: Line-Number Offset to parent node
All line numbers are stored as offsets,
for faster updates if lines are inserted/deleted *)
property LineOffset: Integer read FPositionOffset write FPositionOffset;
(* LeftCount: Lines folded in left tree.
Used to calculate how many lines are folded up to a specified line *)
property LeftCount: Integer read FLeftSizeSum write FLeftSizeSum;
(* MergedLineCount: Amount of lines folded away by this fold,
FullCount + Lines covered by overlaps *)
property MergedLineCount: Integer read FSize write FSize;
public
(* Sub-Tree *)
Nested : TSynTextFoldAVLNodeData; (* Nested folds (folds within this fold) do not need to be part of the searchable tree
They will be restored, if the outer fold (this fold) is unfolded
Nested points to a standalone tree, the root node in the nested tree, does *not* point back to this node *)
(* Source Info *)
FoldIndex: Integer; (* Index of fold in line; if a line has more than one fold starting *)
FoldColumn, FoldColumnLen: Integer; (* The column (1-based) and len of the keywordm which starts this fold *)
FoldTypeCompatible: Pointer; (* help identifying in FixFolding *)
Classification: TFoldNodeClassification;
VisibleLines: Integer; (* Visible Source lines, containing the "fold keyword"
0: Hiden block (the fold-keyword is inside the fold)
1: Normal fold (There is *1* visible line with the fold-keyword)
*)
function RecursiveFoldCount : Integer; (* Amount of lines covered by this and all child nodes *)
function Precessor : TSynTextFoldAVLNodeData; reintroduce;
function Successor : TSynTextFoldAVLNodeData; reintroduce;
function Precessor(var aStartPosition, aSizesBeforeSum : Integer) : TSynTextFoldAVLNodeData; reintroduce;
function Successor(var aStartPosition, aSizesBeforeSum : Integer) : TSynTextFoldAVLNodeData; reintroduce;
end;
{ TSynTextFoldAVLNode }
TSynTextFoldAVLNode = object
private
function GetClassification: TFoldNodeClassification;
function GetFoldColumn: Integer;
function GetFoldColumnLen: Integer;
function GetFoldIndex: Integer;
function GetMergedLineCount : Integer;
function GetFullCount : Integer;
function GetSourceLine: integer;
function GetSourceLineOffset: integer;
procedure SetFoldColumn(const AValue: Integer);
protected
fData : TSynTextFoldAVLNodeData; // nil if unfolded
fStartLine : Integer; // start of folded
fFoldedBefore : Integer;
public
procedure Init(aData : TSynTextFoldAVLNodeData; aStartLine, aFoldedBefore: Integer);
function IsInFold : Boolean;
function Next : TSynTextFoldAVLNode;
function Prev : TSynTextFoldAVLNode;
property MergedLineCount: Integer read GetMergedLineCount; // Zero, if Not in a fold
property FullCount: Integer read GetFullCount; // Zero, if Not in a fold
property StartLine: Integer read fStartLine; // 1st Line of Current Fold
property FoldedBefore: Integer read fFoldedBefore; // Count of Lines folded before Startline
function IsHide: Boolean;
property FoldIndex: Integer read GetFoldIndex;
property FoldColumn: Integer read GetFoldColumn write SetFoldColumn;
property FoldColumnLen: Integer read GetFoldColumnLen;
property SourceLine: integer read GetSourceLine; // The SourceLine with the fold-keyword
property SourceLineOffset: integer read GetSourceLineOffset; // The SourceLine with the fold-keyword
property Classification: TFoldNodeClassification read GetClassification;
end;
{ TSynTextFoldAVLNodeNestedIterator:
Iterates included nested nodes
FoldedBefore is not valid in nested nodes
}
TSynTextFoldAVLNodeNestedIterator = class
private
FCurrentNode: TSynTextFoldAVLNode;
FOuterNodes: Array of TSynTextFoldAVLNode;
public
constructor Create(ANode: TSynTextFoldAVLNode);
destructor Destroy; override;
function Next: TSynTextFoldAVLNode;
function Prev: TSynTextFoldAVLNode;
function EOF: Boolean;
function BOF: Boolean;
function IsInFold: Boolean;
property Node: TSynTextFoldAVLNode read FCurrentNode;
end;
{ TSynTextFoldAVLTree
- Nodes in the tree cover the folded lines only.
The (visible) cfCollapsed line at the start of a fold, is *not* part of a node.
- In the public methods "ALine" indicates the first invisible/hidden line
- TSynEditFoldedView uses this with 1-based lines (ToDo: make 0-based)
}
TSynTextFoldAVLTree = class(TSynSizedDifferentialAVLTree)
protected
fNestParent: TSynTextFoldAVLNodeData;
fNestedNodesTree: TSynTextFoldAVLTree; // FlyWeight Tree used for any nested subtree.
function NewNode : TSynTextFoldAVLNodeData; inline;
Function RemoveFoldForNodeAtLine(ANode: TSynTextFoldAVLNode;
ALine : Integer) : Integer; overload; // Line is for Nested Nodes
// SetRoot, does not obbey fRootOffset => use SetRoot(node, -fRootOffset)
procedure SetRoot(ANode : TSynSizedDifferentialAVLNode); overload; override;
procedure SetRoot(ANode : TSynSizedDifferentialAVLNode; anAdjustChildLineOffset : Integer); overload; override;
Function InsertNode(ANode : TSynTextFoldAVLNodeData) : Integer; reintroduce; // returns FoldedBefore // ANode may not have children
function TreeForNestedNode(ANode: TSynTextFoldAVLNodeData; aOffset : Integer) : TSynTextFoldAVLTree;
public
constructor Create;
destructor Destroy; override;
procedure Clear; override;
(* Find Fold by Line in Real Text *)
Function FindFoldForLine(ALine : Integer; FindNextNode : Boolean = False) : TSynTextFoldAVLNode;
(* Find Fold by Line in Folded Text // always returns unfolded, unless next=true *)
Function FindFoldForFoldedLine(ALine : Integer; FindNextNode: Boolean = False) : TSynTextFoldAVLNode;
Function InsertNewFold(ALine, AFoldIndex, AColumn, AColumnLen, ACount, AVisibleLines: Integer;
AClassification: TFoldNodeClassification;
AFoldTypeCompatible: Pointer
) : TSynTextFoldAVLNode;
(* This will unfold the block which either contains tALine, or has Aline as its cgColapsed line
If IgnoreFirst, the cfCollapsed will *not* unfold => Hint: IgnoreFirst = Make folded visible
Returns the pos(1-based) of the cfCollapsed Line that was expanded; or ALine, if nothing was done
*)
Function RemoveFoldForLine(ALine : Integer; OnlyCol: Integer = -1) : Integer; overload;
Procedure AdjustForLinesInserted(AStartLine, ALineCount, ABytePos: Integer);
Procedure AdjustForLinesDeleted(AStartLine, ALineCount, ABytePos: Integer);
procedure AdjustColumn(ALine, ABytePos, ACount: Integer; InLineBreak: boolean = False);
Function FindLastFold : TSynTextFoldAVLNode;
Function FindFirstFold : TSynTextFoldAVLNode;
Function LastFoldedLine : integer; // The actual line; LastNode.StartLine + LastNode.LineCount - 1
{$IFDEF SynDebug}
procedure Debug; reintroduce;
{$ENDIF}
end;
{ TSynFoldNodeInfoHelper }
TSynFoldNodeInfoHelper = class
FCurInfo: TSynFoldNodeInfo;
FActions: TSynFoldActions;
FHighlighter: TSynCustomFoldHighlighter;
protected
procedure Invalidate;
public
constructor Create(AHighlighter: TSynCustomFoldHighlighter);
function FirstOpen: TSynFoldNodeInfo;
function Next: TSynFoldNodeInfo;
function Prev: TSynFoldNodeInfo;
function FindClose: TSynFoldNodeInfo;
function GotoOpenPos(aLineIdx, aNodeIdx: integer): TSynFoldNodeInfo;
function GotoOpenAtChar(aLineIdx, aXPos: integer): TSynFoldNodeInfo;
function GotoNodeOpenPos(ANode : TSynTextFoldAVLNode): TSynFoldNodeInfo;
function GotoNodeClosePos(ANode : TSynTextFoldAVLNode): TSynFoldNodeInfo;
function IsAtNodeOpenPos(ANode : TSynTextFoldAVLNode): Boolean;
function IsValid: Boolean;
function Equals(AnInfo: TSynFoldNodeInfo): Boolean;
function Equals(AHelper: TSynFoldNodeInfoHelper): Boolean;
property Info: TSynFoldNodeInfo read FCurInfo write FCurInfo;
property Actions: TSynFoldActions read FActions write FActions;
end;
TFoldChangedEvent = procedure(aLine: Integer) of object;
TInvalidateLineProc = procedure(FirstLine, LastLine: integer) of object;
TFoldViewNodeInfo = record
HNode: TSynFoldNodeInfo; // Highlighter Node
FNode: TSynTextFoldAVLNode; // AvlFoldNode
Text, Keyword: String;
LineNum, ColIndex: Integer;
OpenCount: Integer; // Highlighter-Nodes opening on this line (limited to the FoldGroup requested)
end;
TSynEditFoldLineCapability = (
// Capabilities of Line
cfFoldStart, cfHideStart,
cfFoldBody,
cfFoldEnd,
// State indicators
cfCollapsedFold,
cfCollapsedHide, // lines hidden, after this line
// Special flags
cfSingleLineHide,
cfNone
);
TSynEditFoldLineCapabilities = set of TSynEditFoldLineCapability;
TSynEditFoldType = (scftOpen, scftFold, scftHide, scftAll, scftInvalid);
TSynEditFoldLineMapInfo = record
Capability: TSynEditFoldLineCapabilities;
Classifications :TFoldNodeClassifications;
end;
{$IFDEF SynFoldSaveDebug}
const
SynEditFoldTypeNames: Array [TSynEditFoldType] of string =
('scftOpen', 'scftFold', 'scftHide', 'scftAll', 'scftInvalid');
type
{$ENDIF}
{ TSynEditFoldProvider }
TSynEditFoldProviderNodeInfo = record
LineCount: Integer;
Column, ColumnLen: Integer;
DefaultCollapsed: Boolean;
FoldTypeCompatible: Pointer; // eg begin, var, procedure
FoldGroup: Integer; // eg.: pas, region, ifdef
Classification: TFoldNodeClassification;
end;
TSynEditFoldProviderNodeInfoList = array of TSynEditFoldProviderNodeInfo;
TSynEditFoldProvider = class;
TSynEditFoldProvider = class
private
FHighlighter: TSynCustomFoldHighlighter;
FLines : TSynEditStrings;
FSelection: TSynEditSelection;
FFoldTree : TSynTextFoldAVLTree;
FNestedFoldsList: TLazSynEditNestedFoldsList;
function GetFoldsAvailable: Boolean;
function GetHighLighterWithLines: TSynCustomFoldHighlighter;
function GetLineCapabilities(ALineIdx: Integer): TSynEditFoldLineCapabilities;
function GetLineClassification(ALineIdx: Integer): TFoldNodeClassifications;
function GetNestedFoldsList: TLazSynEditNestedFoldsList;
procedure SetHighLighter(const AValue: TSynCustomFoldHighlighter);
procedure SetLines(AValue: TSynEditStrings);
protected
property HighLighterWithLines: TSynCustomFoldHighlighter read GetHighLighterWithLines;
public
constructor Create(aTextView : TSynEditStrings; AFoldTree : TSynTextFoldAVLTree);
destructor Destroy; override;
// Info about Folds opening on ALineIdx
function FoldOpenCount(ALineIdx: Integer; AType: Integer = 0): Integer;
function FoldOpenInfo(ALineIdx, AFoldIdx: Integer; AType: Integer = 0): TSynFoldNodeInfo;
//property FoldOpenInfo[ALineIdx, AColumnIdx: Integer]: Integer read GetFoldOpenInfo;
function FoldLineLength(ALine, AFoldIndex: Integer): integer;
function InfoForFoldAtTextIndex(ALine, AFoldIndex : Integer;
HideLen: Boolean = False;
NeedLen: Boolean = True): TSynEditFoldProviderNodeInfo;
function InfoListForFoldsAtTextIndex(ALine: Integer; NeedLen: Boolean = False): TSynEditFoldProviderNodeInfoList;
property LineCapabilities[ALineIdx: Integer]: TSynEditFoldLineCapabilities
read GetLineCapabilities;
property LineClassification[ALineIdx: Integer]: TFoldNodeClassifications
read GetLineClassification;
property Lines: TSynEditStrings read FLines write SetLines;
property HighLighter: TSynCustomFoldHighlighter read FHighlighter write SetHighLighter;
property FoldsAvailable: Boolean read GetFoldsAvailable;
property NestedFoldsList: TLazSynEditNestedFoldsList read GetNestedFoldsList;
end;
{ TFoldChangedHandlerList }
TFoldChangedHandlerList = class(TMethodList)
public
procedure CallFoldChangedEvents(AnIndex: Integer);
end;
TSynEditFoldedView = class;
{ TLazSynDisplayFold }
TLazSynDisplayFold = class(TLazSynDisplayViewEx)
private
FFoldView: TSynEditFoldedView;
FLineState: integer;
FTokenAttr: TSynHighlighterAttributesModifier;
FMarkupLine: TSynSelectedColorMergeResult;
FLineFlags, FLineFlags2: TSynEditFoldLineCapabilities;
public
constructor Create(AFoldView: TSynEditFoldedView);
destructor Destroy; override;
procedure SetHighlighterTokensLine(ALine: TLineIdx; out ARealLine: TLineIdx); override;
function GetNextHighlighterToken(out ATokenInfo: TLazSynDisplayTokenInfo): Boolean; override;
function GetLinesCount: Integer; override;
function TextToViewIndex(AIndex: TLineIdx): TLineRange; override;
function ViewToTextIndex(AIndex: TLineIdx): TLineIdx; override;
end;
{ TSynTextFoldedView
*Line = Line (0-based) on Screen (except TopLine which should be TopViewPos)
*ViewPos = Line (1-based) in the array of viewable/visible lines
*TextIndex = Line (0-based) in the complete text(folded and unfolded)
}
TSynEditFoldedViewFlag = (fvfNeedCaretCheck, fvfNeedCalcMaps);
TSynEditFoldedViewFlags = set of TSynEditFoldedViewFlag;
{ TSynEditFoldedView }
TSynEditFoldedView = class
private
fCaret: TSynEditCaret;
FBlockSelection: TSynEditSelection;
FFoldProvider: TSynEditFoldProvider;
fLines : TSynEditStrings;
fFoldTree : TSynTextFoldAVLTree; // Folds are stored 1-based (the 1st line is 1)
FMarkupInfoFoldedCode: TSynSelectedColor;
FMarkupInfoFoldedCodeLine: TSynSelectedColor;
FMarkupInfoHiddenCodeLine: TSynSelectedColor;
FOnLineInvalidate: TInvalidateLineProc;
fTopLine : Integer;
fLinesInWindow : Integer; // there may be an additional part visible line
fTextIndexList : Array of integer; (* Map each Screen line into a line in textbuffer *)
fFoldTypeList : Array of TSynEditFoldLineMapInfo;
fOnFoldChanged : TFoldChangedEvent;
fLockCount : Integer;
fNeedFixFrom, fNeedFixMinEnd : Integer;
FFlags: TSynEditFoldedViewFlags;
FInTopLineChanged: Boolean;
FDisplayView: TLazSynDisplayFold;
FFoldChangedHandlerList: TFoldChangedHandlerList;
function GetCount : integer;
function GetDisplayView: TLazSynDisplayView;
function GetFoldClasifications(index : Integer): TFoldNodeClassifications;
function GetHighLighter: TSynCustomHighlighter;
function GetLines(index : Integer) : String;
function GetDisplayNumber(index : Integer) : Integer;
function GetTextIndex(index : Integer) : Integer;
function GetFoldType(index : Integer) : TSynEditFoldLineCapabilities;
function IsFolded(index : integer) : Boolean; // TextIndex
procedure SetBlockSelection(const AValue: TSynEditSelection);
procedure SetHighLighter(AValue: TSynCustomHighlighter);
procedure SetTopLine(const ALine : integer);
function GetTopTextIndex : integer;
procedure SetTopTextIndex(const AIndex : integer);
procedure SetLinesInWindow(const AValue : integer);
procedure DoFoldChanged(AnIndex: Integer);
protected
procedure DoBlockSelChanged(Sender: TObject);
Procedure CalculateMaps;
function FoldNodeAtTextIndex(AStartIndex, ColIndex: Integer): TSynTextFoldAVLNode; (* Returns xth Fold at nth TextIndex (all lines in buffer) / 1-based *)
function FixFolding(AStart : Integer; AMinEnd : Integer; aFoldTree : TSynTextFoldAVLTree) : Boolean;
procedure DoCaretChanged(Sender : TObject);
Procedure LineCountChanged(Sender: TSynEditStrings; AIndex, ACount : Integer);
Procedure LinesCleared(Sender: TObject);
Procedure LineEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
Procedure LinesInsertedAtTextIndex(AStartIndex, ALineCount, ABytePos: Integer;
SkipFixFolding : Boolean = False);
//Procedure LinesInsertedAtViewPos(AStartPos, ALineCount : Integer;
// SkipFixFolding : Boolean = False);
Procedure LinesDeletedAtTextIndex(AStartIndex, ALineCount, ABytePos: Integer;
SkipFixFolding : Boolean = False);
//Procedure LinesDeletedAtViewPos(AStartPos, ALineCount : Integer;
// SkipFixFolding : Boolean = False);
property FoldTree: TSynTextFoldAVLTree read fFoldTree;
public
constructor Create(aTextView : TSynEditStrings; ACaret: TSynEditCaret);
destructor Destroy; override;
// Converting between Folded and Unfolded Lines/Indexes
function TextIndexToViewPos(aTextIndex : Integer) : Integer; (* Convert TextIndex (0-based) to ViewPos (1-based) *)
function TextIndexToScreenLine(aTextIndex : Integer) : Integer; (* Convert TextIndex (0-based) to Screen (0-based) *)
function ViewPosToTextIndex(aViewPos : Integer) : Integer; (* Convert ViewPos (1-based) to TextIndex (0-based) *)
function ScreenLineToTextIndex(aLine : Integer) : Integer; (* Convert Screen (0-based) to TextIndex (0-based) *)
function TextIndexAddLines(aTextIndex, LineOffset : Integer) : Integer; (* Add/Sub to/from TextIndex (0-based) skipping folded *)
function TextPosAddLines(aTextpos, LineOffset : Integer) : Integer; (* Add/Sub to/from TextPos (1-based) skipping folded *)
property BlockSelection: TSynEditSelection write SetBlockSelection;
// Attributes for Visible-Lines-On-screen
property Lines[index : Integer] : String (* Lines on screen / 0 = TopLine *)
read GetLines; default;
property DisplayNumber[index : Integer] : Integer (* LineNumber for display in Gutter / result is 1-based *)
read GetDisplayNumber;
property FoldType[index : Integer] : TSynEditFoldLineCapabilities (* FoldIcon / State *)
read GetFoldType;
property FoldClasifications[index : Integer] : TFoldNodeClassifications (* FoldIcon / State *)
read GetFoldClasifications;
property TextIndex[index : Integer] : Integer (* Position in SynTextBuffer / result is 0-based *)
read GetTextIndex; // maybe writable
// Define Visible Area
property TopLine : integer (* refers to visible (unfolded) lines / 1-based *)
read fTopLine write SetTopLine;
property TopTextIndex : integer (* refers to TextIndex (folded + unfolded lines) / 1-based *)
read GetTopTextIndex write SetTopTextIndex;
property LinesInWindow : integer (* Fully Visible lines in Window; There may be one half visible line *)
read fLinesInWindow write SetLinesInWindow;
property Count : integer read GetCount; (* refers to visible (unfolded) lines *)
property MarkupInfoFoldedCode: TSynSelectedColor read FMarkupInfoFoldedCode;
property MarkupInfoFoldedCodeLine: TSynSelectedColor read FMarkupInfoFoldedCodeLine;
property MarkupInfoHiddenCodeLine: TSynSelectedColor read FMarkupInfoHiddenCodeLine;
public
procedure Lock;
procedure UnLock;
{$IFDEF SynDebug}
procedure debug;
{$ENDIF}
(* Arguments for (Un)FoldAt* (Line, ViewPos, TextIndex):
- ColumnIndex (0-based)
Can be negative, to access the highest(-1) available, 2nd highest(-2) ...
If negative, count points downward
- ColCount = 0 => all
- Skip => Do not count nodes that are already in the desired state
(or can not archive the desired state: e.g. can not hide)
- AVisibleLines: 0 = Hide / 1 = Fold
*)
procedure FoldAtLine(AStartLine: Integer; ColIndex : Integer = -1; (* Folds at ScreenLine / 0-based *)
ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure FoldAtViewPos(AStartPos: Integer; ColIndex : Integer = -1; (* Folds at nth visible/unfolded Line / 1-based *)
ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure FoldAtTextIndex(AStartIndex: Integer; ColIndex : Integer = -1; (* Folds at nth TextIndex (all lines in buffer) / 1-based *)
ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure UnFoldAtLine(AStartLine: Integer; ColIndex : Integer = -1; (* UnFolds at ScreenLine / 0-based *)
ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure UnFoldAtViewPos(AStartPos: Integer; ColIndex : Integer = -1; (* UnFolds at nth visible/unfolded Line / 1-based *)
ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure UnFoldAtTextIndex(AStartIndex: Integer; ColIndex : Integer = -1; (* UnFolds at nth TextIndex (all lines in buffer) / 1-based *)
ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
procedure UnFoldAtTextIndexCollapsed(AStartIndex: Integer); (* UnFolds only if Index is in the fold, ignores cfcollapsed line, if unfolded / 1-based *)
function LogicalPosToNodeIndex(AStartIndex: Integer; LogX: Integer; (* Returns the index of the node, at the logical char pos *)
Previous: Boolean = False): Integer;
procedure CollapseDefaultFolds;
// Load/Save folds to string
// AStartIndex, AEndIndex: (0 based) First/last line (EndIndex = -1 = open end)
// AStartCol, AEndCol: (1 based) Logical text pos in Line. (AEndCol = -1 = full line)
function GetFoldDescription(AStartIndex, AStartCol, AEndIndex,
AEndCol: Integer; AsText: Boolean = False;
Extended: Boolean = False) :String;
procedure ApplyFoldDescription(AStartIndex, AStartCol, AEndIndex,
AEndCol: Integer; FoldDesc: PChar;
FoldDescLen: Integer; IsText: Boolean = False);
procedure UnfoldAll;
procedure FoldAll(StartLevel : Integer = 0; IgnoreNested : Boolean = False);
procedure FixFoldingAtTextIndex(AStartIndex: Integer; AMinEndLine: Integer = 0); // Real/All lines
public
function OpenFoldCount(aStartIndex: Integer; AType: Integer = 0): Integer;
function OpenFoldInfo(aStartIndex, ColIndex: Integer; AType: Integer = 0): TFoldViewNodeInfo;
public
// Find the visible first line of the fold at ALine. Returns -1 if Aline is not folded
function CollapsedLineForFoldAtLine(ALine : Integer) : Integer;
function ExpandedLineForBlockAtLine(ALine : Integer; HalfExpanded: Boolean = True) : Integer;
procedure AddFoldChangedHandler(AHandler: TFoldChangedEvent);
procedure RemoveFoldChangedHandler(AHandler: TFoldChangedEvent);
function GetPhysicalCharWidths(Index: Integer): TPhysicalCharWidths;
function IsFoldedAtTextIndex(AStartIndex, ColIndex: Integer): Boolean; (* Checks xth Fold at nth TextIndex (all lines in buffer) / 1-based *)
property FoldedAtTextIndex [index : integer] : Boolean read IsFolded;
property OnFoldChanged: TFoldChangedEvent (* reports 1-based line *) {TODO: synedit expects 0 based }
read fOnFoldChanged write fOnFoldChanged;
property OnLineInvalidate: TInvalidateLineProc(* reports 1-based line *) {TODO: synedit expects 0 based }
read FOnLineInvalidate write FOnLineInvalidate;
property HighLighter: TSynCustomHighlighter read GetHighLighter
write SetHighLighter;
property FoldProvider: TSynEditFoldProvider read FFoldProvider;
property DisplayView: TLazSynDisplayView read GetDisplayView;
end;
function dbgs(AClassification: TFoldNodeClassification): String; overload;
implementation
//var
// SYN_FOLD_DEBUG: PLazLoggerLogGroup;
type
TFoldExportEntry = Record
// Lines and Pos (o 1st line) are relative to Scan-Start
Line, LogX, LogX2: Integer; // StartLine and Pos
ELine, ELogX, ELogX2: Integer; // EndLine and pos
FType: Integer; // e.g ord(cfbtBeginEnd)
LinesFolded: Integer; // Lines Folded according to AVL-Node
end;
{ TSynEditFoldExportStream }
TSynEditFoldExportStream = class
private
FData: String;
FLen, FPos: Integer;
FMem: PChar;
function GetLen: Integer;
procedure SetLen(const AValue: Integer);
function GetMem: PChar;
procedure SetMem(const AValue: PChar);
function GetText: String;
procedure SetText(const AValue: String);
protected
function GrowData(AppendSize: Integer): PChar;
function EncodeIntEx(Anum: Integer): String; // base 43, with leading continue bit
function EncodeIntEx2(Anum: Integer): String; // for numbers expected below 467; specially 0..80
function InternalReadNum(var APos: Integer): Integer;
function InternalReadNumEx(var APos: Integer): Integer;
public
constructor Create;
procedure Compress;
procedure Decompress;
procedure AddChecksum;
function VerifyChecksum: Boolean;
// see notes for Compression
Procedure AppendMem(AMem: Pointer; ALen: Integer);
Procedure AppendString(ATxt: String);
Procedure AppendNum(ANum: Integer);
Procedure AppendNumEx(ANum: Integer);
Procedure Reset;
Procedure Clear;
function ReadMem(AMem: Pointer; ALen: Integer): Boolean;
function PeakString(ALen: Integer): String;
function FindChar(AChar: Char): Integer; // 0 based
function ReadString(ALen: Integer): String;
function ReadNum: Integer;
function ReadNumEx: Integer;
function EOF: Boolean;
property Text: String read GetText write SetText;
property Mem: PChar read GetMem write SetMem;
property Len: Integer read GetLen write SetLen;
property Pos: Integer read FPos;
end;
TSynEditFoldExportCoderEntry = record
aX, aY, aLen: Integer;
aFoldType: TSynEditFoldType;
end;
TSynEditFoldExportCoderStates =
(sfecAtBegin, sfecAtPoint, sfecInRepeatCount, sfecInvalid, sfecAtEOF);
{$IFDEF SynFoldSaveDebug}
const
SynEditFoldExportCoderStates: Array [TSynEditFoldExportCoderStates] of String =
('sfecAtBegin', 'sfecAtPoint', 'sfecInRepeatCount', 'sfecInvalid', 'sfecAtEOF');
type
{$ENDIF}
{ TSynEditFoldExportCoder }
TSynEditFoldExportCoder = class
private
FExportStream: TSynEditFoldExportStream;
FFoldType: Pointer;
FReadY, FReadLastY, FReadX, FReadSumLen, FReadCount: Integer;
FReadType: TSynEditFoldType;
FReadDefaultType: TSynEditFoldType;
FReadState: TSynEditFoldExportCoderStates;
FWriteCache: Array of TSynEditFoldExportCoderEntry;
FWriteCacheLen: Integer;
FWriteCacheTypes: set of TSynEditFoldType;
function GetReadIsValid: Boolean;
public
constructor Create(AFoldType: Pointer);
constructor Create(AStream: TSynEditFoldExportStream);
destructor Destroy; override;
procedure AddNode(aX, aY, aLen: Integer; aFoldType: TSynEditFoldType);
procedure Finish;
function ReadNode(aX, aY: Integer; aLen: Integer): TSynEditFoldType;
function EOF: Boolean;
procedure Reset;
property ReadIsValid: Boolean read GetReadIsValid;
property FoldType: Pointer read FFoldType;
property Stream: TSynEditFoldExportStream read FExportStream;
end;
const
// use only xml encode-able ascii
// do not use [ or ], they are reserved for compression
// space can be used a special indicator
NumEncode86Chars: string[86] = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-+;:,.@=*/\!?$%()''^{}~_#';
NumEncodeAsOneMax = 80; // Maximum Value to encode as 1 char
NumEncodeAsTwoMax = 81 + 4*86 + 43; // = 467; Maximum Value to encode as 2 char
NumEncodeAsThreeMax = 81 + 4*86 + 43 * 43 - 1; // = 2273 Maximum Value to encode as 3 char
SEQMaxNodeCount = 75; // New Full entry at least every 75 folds
SEQMaxLineDistEach = 500; // New Full entry, if folds startlines are more than 500 appart
SEQMaxLineDistTotal = 2500; // New Full entry at least every 2500; check position
var
NumEncode86Values: Array [Char] of integer;
procedure InitNumEncodeValues;
var
i: integer;
c : Char;
begin
for c := low(Char) to high(Char) do begin
NumEncode86Values[c] := -1;
end;
for i := 1 to length(NumEncode86Chars) do
NumEncode86Values[NumEncode86Chars[i]] := i - 1;
end;
{ TFoldChangedHandlerList }
procedure TFoldChangedHandlerList.CallFoldChangedEvents(AnIndex: Integer);
var
i: LongInt;
begin
i:=Count;
while NextDownIndex(i) do
TFoldChangedEvent(Items[i])(AnIndex);
end;
{ TLazSynDisplayFold }
constructor TLazSynDisplayFold.Create(AFoldView: TSynEditFoldedView);
begin
inherited Create;
FFoldView := AFoldView;
FTokenAttr := TSynHighlighterAttributesModifier.Create(nil);
FMarkupLine := TSynSelectedColorMergeResult.Create(nil);
end;
destructor TLazSynDisplayFold.Destroy;
begin
FreeAndNil(FTokenAttr);
FreeAndNil(FMarkupLine);
inherited Destroy;
end;
procedure TLazSynDisplayFold.SetHighlighterTokensLine(ALine: TLineIdx; out ARealLine: TLineIdx);
begin
FLineState := 0;
CurrentTokenLine := ALine;
FLineFlags := FFoldView.FoldType[CurrentTokenLine + 1 - FFoldView.TopLine] * [cfCollapsedFold, cfCollapsedHide];
FLineFlags2 := FLineFlags;
if not FFoldView.MarkupInfoFoldedCodeLine.IsEnabled then
Exclude(FLineFlags2, cfCollapsedFold);
if not FFoldView.MarkupInfoHiddenCodeLine.IsEnabled then
Exclude(FLineFlags2, cfCollapsedHide);
if (FLineFlags2 <> []) then begin
FFoldView.MarkupInfoFoldedCodeLine.SetFrameBoundsLog(1, MaxInt, 0);
FFoldView.MarkupInfoHiddenCodeLine.SetFrameBoundsLog(1, MaxInt, 0);
end;
inherited SetHighlighterTokensLine(FFoldView.ViewPosToTextIndex(ALine + 1), ARealLine);
end;
function TLazSynDisplayFold.GetNextHighlighterToken(out ATokenInfo: TLazSynDisplayTokenInfo): Boolean;
const
MarkSpaces: string = ' ';
MarkDots: string = '...';
LSTATE_BOL = 0; // at BOL
LSTATE_TEXT = 1; // in text
LSTATE_BOL_GAP = 2; // BOL and in Gap (empty line) // must be LSTATE_BOL + 2
LSTATE_GAP = 3; // In Gap betwen txt and dots // must be LSTATE_TEXT + 2
LSTATE_DOTS = 4; // In Dots
LSTATE_EOL = 5; // at start of EOL
var
EolAttr: TSynHighlighterAttributes;
MergeStartX, MergeEndX: TLazSynDisplayTokenBound;
begin
case FLineState of
LSTATE_BOL, LSTATE_TEXT: begin
Result := inherited GetNextHighlighterToken(ATokenInfo);
if ( (not Result) or (ATokenInfo.TokenStart = nil)) and (FLineFlags <> [])
then begin
inc(FLineState, 2); // LSTATE_BOL_GAP(2), if was at bol // LSTATE_GAP(3) otherwise
ATokenInfo.TokenStart := PChar(MarkSpaces);
ATokenInfo.TokenLength := 3;
if Assigned(CurrentTokenHighlighter)
then EolAttr := CurrentTokenHighlighter.GetEndOfLineAttribute
else EolAttr := nil;
if EolAttr <> nil then begin
FTokenAttr.Assign(EolAttr);
ATokenInfo.TokenAttr := FTokenAttr;
end
else begin
ATokenInfo.TokenAttr := nil;
end;
Result := True;
end;
end;
LSTATE_GAP: begin
FLineState := LSTATE_DOTS;
FTokenAttr.Assign(FFoldView.MarkupInfoFoldedCode);
FTokenAttr.SetAllPriorities(MaxInt);
ATokenInfo.TokenStart := PChar(MarkDots);
ATokenInfo.TokenLength := 3;
ATokenInfo.TokenAttr := FTokenAttr;
Result := True;
end;
else begin
Result := inherited GetNextHighlighterToken(ATokenInfo);
end;
end;
if (FLineFlags2 <> []) then begin
FMarkupLine.Clear;
if ATokenInfo.TokenAttr = nil then begin
// Text Area does not expect StartX/Endx
// So we must merge, to eliminate unwanted borders
// if (cfCollapsedFold in FLineFlags2)
// then ATokenInfo.TokenAttr := FFoldView.MarkupInfoFoldedCodeLine
// else ATokenInfo.TokenAttr := FFoldView.MarkupInfoHiddenCodeLine;
// exit;
FMarkupLine.Clear;
end //;
else
FMarkupLine.Assign(ATokenInfo.TokenAttr);
MergeStartX.Physical := -1;
MergeStartX.Logical := -1;
MergeEndX.Physical := -1;
MergeEndX.Logical := -1;
if FLineState in [LSTATE_BOL, LSTATE_BOL_GAP] then
MergeStartX := FFoldView.MarkupInfoFoldedCodeLine.StartX;
if FLineState = LSTATE_EOL then // LSTATE_GAP; // or result := true
MergeEndX := FFoldView.MarkupInfoFoldedCodeLine.EndX;
// fully expand all frames
//FMarkupLine.SetFrameBoundsLog(0,0,0);
//FMarkupLine.CurrentStartX := FMarkupLine.StartX;
//FMarkupLine.CurrentEndX := FMarkupLine.EndX;
if (cfCollapsedFold in FLineFlags2) then
FMarkupLine.Merge(FFoldView.MarkupInfoFoldedCodeLine, MergeStartX, MergeEndX)
else
FMarkupLine.Merge(FFoldView.MarkupInfoHiddenCodeLine, MergeStartX, MergeEndX);
ATokenInfo.TokenAttr := FMarkupLine;
end;
if FLineState in [LSTATE_BOL, LSTATE_BOL_GAP, LSTATE_DOTS, LSTATE_EOL] then
inc(FLineState);
end;
function TLazSynDisplayFold.GetLinesCount: Integer;
begin
Result := FFoldView.Count;
end;
function TLazSynDisplayFold.TextToViewIndex(AIndex: TLineIdx): TLineRange;
begin
Result := inherited TextToViewIndex(AIndex);
if Result.Top = Result.Bottom then begin
Result.Top := FFoldView.TextIndexToViewPos(Result.Top) - 1;
Result.Bottom := Result.Top;
end
else begin;
Result.Top := FFoldView.TextIndexToViewPos(Result.Top) - 1;
Result.Bottom := FFoldView.TextIndexToViewPos(Result.Bottom) - 1;
end;
end;
function TLazSynDisplayFold.ViewToTextIndex(AIndex: TLineIdx): TLineIdx;
begin
Result := FFoldView.ViewPosToTextIndex(inherited ViewToTextIndex(AIndex)+1);
end;
{ TSynEditFoldExportStream }
constructor TSynEditFoldExportStream.Create;
begin
inherited;
FPos := 0;
FLen := 0;
FMem := nil;
end;
function TSynEditFoldExportStream.GetLen: Integer;
begin
Result := FLen;
end;
procedure TSynEditFoldExportStream.SetLen(const AValue: Integer);
begin
FPos := 0;
FLen:= AValue;
end;
function TSynEditFoldExportStream.GetMem: PChar;
begin
if FData <> '' then
Result := @FData[1]
else
Result := FMem;
end;
procedure TSynEditFoldExportStream.SetMem(const AValue: PChar);
begin
FData := '';
FMem := AValue;
FPos := 0;
end;
function TSynEditFoldExportStream.GetText: String;
begin
// only valid for FData
SetLength(FData, FLen);
Result := FData;
end;
procedure TSynEditFoldExportStream.SetText(const AValue: String);
begin
FData := AValue;
FMem := nil;
FPos := 0;
end;
function TSynEditFoldExportStream.GrowData(AppendSize: Integer): PChar;
var
l: integer;
begin
l := length(FData);
if l < FLen + AppendSize then
SetLength(FData, l + AppendSize + Max((l+AppendSize) div 4, 1024));
Result := @FData[FLen + 1];
inc(FLen, AppendSize);
end;
function TSynEditFoldExportStream.EncodeIntEx(Anum: Integer): String;
var
n: integer;
begin
// 0 - 42 => 1 byte
// 43 - 1848 => 2 byte
// 1849 - .... => 3 and more
Result := '';
if ANum = 0 then Result := NumEncode86Chars[1];
n := 0;
while ANum > 0 do begin
Result := NumEncode86Chars[1 + (Anum mod 43) + n] + Result;
ANum := ANum div 43;
n := 43;
end;
end;
function TSynEditFoldExportStream.EncodeIntEx2(Anum: Integer): String;
var
n: Integer;
begin
// 0 - 80 => 1 char
// 81 - 424 => 2 char (80 + 4 * 86)
// 425 - 467 => 2 char (len(EncodeIntEx) = 1)
// 468 - 2272 => 3 and more char
//2273 - .... => 4 and more char
Result := '';
if Anum <= 80 then
Result := NumEncode86Chars[1 + Anum]
else
begin
n := (Anum-81) div 86;
if n <= 3 then
Result := NumEncode86Chars[1 + 81 + n] + NumEncode86Chars[1 + (Anum - 81) mod 86]
else
Result := NumEncode86Chars[1 + 85] + EncodeIntEx(Anum - 81 - 4*86);
end;
end;
function TSynEditFoldExportStream.InternalReadNum(var APos: Integer): Integer;
var
n: Integer;
begin
Result := 0;
while True do begin
if FPos >= FLen then exit(-1);
n := NumEncode86Values[(FMem + APos)^];
if n < 43 then break;
dec(n, 43);
Result := Result * 43 + n;
inc(APos);
end;
Result := Result * 43 + n;
inc(APos);
end;
function TSynEditFoldExportStream.InternalReadNumEx(var APos: Integer): Integer;
begin
if FPos >= FLen then exit(-1);
Result := NumEncode86Values[(FMem + APos)^];
inc(APos);
if Result <= 80 then
exit;
if FPos >= FLen then exit(-1);
if Result < 85 then begin
Result := 81 + (Result-81)*86 + NumEncode86Values[(FMem + APos)^];
inc(APos);
exit;
end;
Result := 81 + 4*86 + InternalReadNum(APos);
end;
procedure TSynEditFoldExportStream.Compress;
(* Known Sequences: XX = Enc64Num (copy sequence from XX chars before)
NN = ENc22 Num / n = enc22digit (copy n bytes)
[XXn (up to 21 bytes, from up to 64*64 back)
[NNXX[ (more then 21 bytes, from up to 64*64 back)
]X (3 bytes from max 64 back)
]nx ( reocurring space,x times, ever n pos)
const
max_single_len = 22 - 1;
*)
var
CurPos, EndPos, SearchPos: Integer;
FndLen, FndPos, FndPos2: Integer;
BestLen, BestPos, BestPos2: Integer;
s: string;
begin
AppendString(#0);
dec(FLen);
EndPos := FLen;
CurPos := FLen - 3;
while CurPos >= 4 do begin
SearchPos := CurPos - 3;
BestLen := 0;
while (SearchPos >= 1) do begin
if CompareMem(@FData[CurPos], @FData[SearchPos], 3) then begin
FndLen := 3;
FndPos := SearchPos;
FndPos2 := CurPos;
while (SearchPos + FndLen < FndPos2) and
(FndPos2 + FndLen < EndPos - 1) and
(FData[SearchPos + FndLen] = FData[CurPos + FndLen])
do
inc(FndLen);
while (FndPos > 1) and (FndPos + FndLen < FndPos2) and
(FData[FndPos - 1] = FData[FndPos2 - 1]) do
begin
dec(FndPos);
dec(FndPos2);
inc(FndLen);
end;
if (FndLen > BestLen) and
((FndPos2 - FndPos <= NumEncodeAsOneMax) or (FndLen >= 4)) and
((FndPos2 - FndPos <= NumEncodeAsTwoMax) or (FndLen >= 5)) and
((FndPos2 - FndPos <= NumEncodeAsThreeMax) or (FndLen >= 6))
then begin
BestLen := FndLen;
BestPos := FndPos;
BestPos2 := FndPos2;
end;
end;
dec(SearchPos);
end;
s := '';
if (BestLen >= 4) then
s := '[' + EncodeIntEx2(BestPos2 - BestPos) + EncodeIntEx2(BestLen)
else
if (BestLen = 3) and (BestPos2 - BestPos <= NumEncodeAsOneMax) then
s := ']' + EncodeIntEx2(BestPos2 - BestPos);
if (s<>'') and (length(s) < BestLen) then begin
System.Move(s[1], FData[BestPos2], length(s));
System.Move(FData[BestPos2 + BestLen], FData[BestPos2 + length(s)], FLen + 1 - (BestPos2 + BestLen));
dec(FLen, BestLen - length(s));
EndPos := BestPos;
CurPos := BestPos2 - 3;
end
else
dec(CurPos);
end;
end;
procedure TSynEditFoldExportStream.Decompress;
var
i, j, n: Integer;
p, p2: PChar;
NewLen: Integer;
begin
// curently assumes that FMem points NOT at FData
if FLen = 0 then
exit;
NewLen := 0;
i := 0;
while i < Flen do begin
case (FMem+i)^ of
'[' :
begin
inc(i);
j := InternalReadNumEx(i);
n := InternalReadNumEx(i);
if (j < n) or (j > NewLen) then raise ESynEditError.Create('fold format error');
inc(NewLen, n);
end;
']' :
begin
inc(i, 1);
j := InternalReadNumEx(i);
if (j < 3) or (j > NewLen) then raise ESynEditError.Create('fold format error');
inc(NewLen, 3);
end;
else
begin
inc(NewLen);
inc(i);
end;
end;
end;
SetLength(FData, NewLen);
i := 0;
p := PChar(FData);
while i < Flen do begin
case (FMem+i)^ of
'[' :
begin
inc(i);
j := InternalReadNumEx(i);
n := InternalReadNumEx(i);
p2 := p;
while n > 0 do begin
p^ := (p2 - j)^;
inc(p);
dec(j);
dec(n);
end;
end;
']' :
begin
inc(i);
j := InternalReadNumEx(i);
p2 := p;
for n := 0 to 2 do begin
p^ := (p2 - j)^;
inc(p);
dec(j);
end;
end;
else
begin
p^ := (FMem + i)^;
inc(p);
inc(i);
end;
end;
end;
FLen := NewLen;
FMem := PChar(FData);
FPos := 0;
end;
procedure TSynEditFoldExportStream.AddChecksum;
var
i, c: Integer;
begin
if FLen = 0 then
exit;
if FMem = nil then
FMem := @FData[1];
c := 0;
for i := 0 to FLen - 1 do
c := c xor (ord((FMem + i)^) * (i+1));
c := (c mod 256) xor ((c div 256) mod 256) xor ((c div 65536) mod 256);
AppendString(NumEncode86Chars[1 + (c mod 86)]);
end;
function TSynEditFoldExportStream.VerifyChecksum: Boolean;
var
i, c: Integer;
begin
if FLen = 0 then
exit(True);
if FMem = nil then
FMem := @FData[1];
dec(Flen);
c := 0;
for i := 0 to FLen - 1 do
c := c xor (ord((FMem + i)^) * (i+1));
c := (c mod 256) xor ((c div 256) mod 256) xor ((c div 65536) mod 256);
Result := (FMem + FLen)^ = NumEncode86Chars[1 + (c mod 86)];
end;
procedure TSynEditFoldExportStream.AppendMem(AMem: Pointer; ALen: Integer);
begin
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.AppendMem len=', ALen]);
{$ENDIF}
FMem := nil;
if ALen > 0 then
System.Move(AMem^, GrowData(ALen)^, ALen);
end;
procedure TSynEditFoldExportStream.AppendString(ATxt: String);
var
l: Integer;
begin
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.AppendString ', ATxt]);
{$ENDIF}
FMem := nil;
l := length(ATxt);
if l > 0 then
System.Move(ATxt[1], GrowData(l)^, l);
end;
procedure TSynEditFoldExportStream.AppendNum(ANum: Integer);
begin
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.AppendNum ', ANum]);
{$ENDIF}
FMem := nil;
AppendString(EncodeIntEx(ANum));
end;
procedure TSynEditFoldExportStream.AppendNumEx(ANum: Integer);
begin
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.AppendNumEx ', ANum]);
{$ENDIF}
FMem := nil;
AppendString(EncodeIntEx2(ANum));
end;
procedure TSynEditFoldExportStream.Reset;
begin
FPos := 0;
if (FMem = nil) and (FData <> '') then
FMem := @FData[1];
end;
procedure TSynEditFoldExportStream.Clear;
begin
FLen := 0;
FMem := nil;
FPos := 0;
SetLength(FData, 0);
end;
function TSynEditFoldExportStream.ReadMem(AMem: Pointer; ALen: Integer): Boolean;
begin
Result := FPos+ ALen <= FLen;
If not Result then
exit;
System.Move((FMem + FPos)^, AMem^, ALen);
inc(FPos, ALen);
end;
function TSynEditFoldExportStream.PeakString(ALen: Integer): String;
begin
If not(FPos+ ALen <= FLen) then
exit('');
SetLength(Result, ALen);
if ALen > 0 then
System.Move((FMem + FPos)^, Result[1], ALen);
end;
function TSynEditFoldExportStream.FindChar(AChar: Char): Integer;
begin
Result := 0;
While (FPos + Result < FLen) and ((FMem + FPos + Result)^ <> AChar) do
inc(Result);
if FPos + Result = FLen then
Result := -1;
end;
function TSynEditFoldExportStream.ReadString(ALen: Integer): String;
begin
If not(FPos+ ALen <= FLen) then
exit('');
SetLength(Result, ALen);
if ALen > 0 then
System.Move((FMem + FPos)^, Result[1], ALen);
inc(FPos, ALen);
end;
function TSynEditFoldExportStream.ReadNum: Integer;
begin
Result := InternalReadNum(FPos);
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.ReadNum ', Result]);
{$ENDIF}
end;
function TSynEditFoldExportStream.ReadNumEx: Integer;
begin
Result := InternalReadNumEx(FPos);
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportStream.ReadNumEx ', Result]);
{$ENDIF}
end;
function TSynEditFoldExportStream.EOF: Boolean;
begin
Result := FPos >= FLen;
end;
{ TSynEditFoldExportCoder }
function TSynEditFoldExportCoder.GetReadIsValid: Boolean;
begin
Result := FReadState <> sfecInvalid;
end;
constructor TSynEditFoldExportCoder.Create(AFoldType: Pointer);
begin
inherited Create;
FExportStream := TSynEditFoldExportStream.Create;
FExportStream.AppendString(' T'); // Type Marker
FExportStream.AppendNum(PtrUInt(AFoldType));
FFoldType := AFoldType;
FWriteCacheLen := 0;
FWriteCache := nil;
FWriteCacheTypes := [];
end;
constructor TSynEditFoldExportCoder.Create(AStream: TSynEditFoldExportStream);
var
i: Integer;
begin
inherited Create;
FExportStream := TSynEditFoldExportStream.Create;
FReadState := sfecInvalid;
if AStream.PeakString(2) <> ' T' then exit;
AStream.ReadString(2);
FFoldType := Pointer(PtrUInt(AStream.ReadNum));
while(true) do begin
i := AStream.FindChar(' ');
if i < 0 then i := AStream.Len - AStream.Pos;
FExportStream.AppendString(AStream.ReadString(i));
if AStream.EOF or (AStream.PeakString(2) = ' T') then
break;
FExportStream.AppendString(AStream.ReadString(2));
end;
{$IFDEF SynFoldSaveDebug}
DebugLn(['TSynEditFoldExportCoder.Create(<from input-stream> FType=', dbgs(FFoldType), ' txtLen=', FExportStream.Len, ' Txt="', FExportStream.Text, '"']);
{$ENDIF}
Reset;
end;
destructor TSynEditFoldExportCoder.Destroy;
begin
FreeAndNil(FExportStream);
Inherited;
end;
procedure TSynEditFoldExportCoder.AddNode(aX, aY, aLen: Integer; aFoldType: TSynEditFoldType);
(* Format: [Num] <NumEX>
' T' [type] [yo] <X> <len> ( <c>* ' p' [sum] [yo] <X> <len> )* <c>* (' P' [sum] [yo] <X> <len>)?
//////////////////////////
// Version info
V1 - no entries
V2 July 2010 0.9.29
- added fold-hide <HideInfo>
//////////////////////////
<Stream> = { <TypeStream> };
<TypeStream> = " T" <TypeId> <TypeData>; [* Stores all folds for the given type (eg cfbtBeginEnd) *]
<TypeId> = ord(cfbtBeginEnd) or similar
<TypeData> = [<HideInfo>],
<NodePos>,
[ [<FoldList>,] [{ <FoldListEndCont>, <NodePos>, [<FoldList>] }] ],
[ <FoldListEnd> ];
<FoldList> = [{ <ConsecutiveFoldedCount>, <ConsecutiveUnFoldedCount> }],
<ConsecutiveFoldedCount>,
;
[* NodePos: is the position of a folded node (of the type matching the current stream)
ConsecutiveFoldedCount: more folded nodes of the same type, without any
unfolded node (of this type) inbetween.
ConsecutiveUnFoldedCount: amount of unfolded nodes (of this type) before the next folded node.
*]
<NodePos> = <YOffset> <XPos> <len>;
<YOffset> = <Number>
<XPos> = <ExNumber>
<len> = <ExNumber>
<ConsecutiveFoldedCount> = <ExNumber>
<ConsecutiveUnFoldedCount> = <ExNumber>
<FoldListEndCont> = ' p', <SumFoldedLines>;
[* FoldListEndCont is mandotory, if another block of <NodePos>, <FoldList> is coming *]
<FoldListEnd> = ' P' <SumFoldedLines>, <EndY>, <EndX>;
[* FoldListEnd is optional. It is expected if the previous <FoldList> has more than 10 folded lines*]
<SumFoldedLines> = <Number>
[* The sum of all lines folded by folds in <ConsecutiveFoldedCount>.
Not including the fold in <NodePos>, which has it's own len.
*]
<Number> = bigger numbers
<ExNumber> = for numbers expected below 467; specially 0..80
<HideInfo> = ' h' | ' H'
not present: all folds, no hides (default)
' H': all hides, no folds
' h': mixed hides and folds
For mixed lists the following applies:
- XPos is doubled; bit 0 (odd <number>) indicates the first node is a hide
- ConsecutiveFoldedCount, ConsecutiveUnFoldedCount are doubled;
bit 0 indicates:
If last was fold: 1-odd = hide / 0-even = open
If last was hide: 1-odd = fold / 0-even = open
If last was open: 1-odd = hide / 0-even = fold
In the first <ConsecutiveFoldedCount> after <NodePos> the bit is unused, since nodepos is continued.
*)
begin
{$IFDEF SynFoldSaveDebug}
debugln(['TSynEditFoldExportCoder.AddNode FType=', dbgs(FFoldType),' X=', aX, ' Y=', aY, 'Len=', aLen, 'FType=', SynEditFoldTypeNames[aFoldType], ' WCacheLen=', FWriteCacheLen]);
{$ENDIF}
if (FWriteCacheLen = 0) and (aFoldType = scftOpen) then
exit;
if FWriteCacheLen >= length(FWriteCache) then
SetLength(FWriteCache, Max(1000, FWriteCacheLen*2));
FWriteCache[FWriteCacheLen].aY := aY;
FWriteCache[FWriteCacheLen].aX := aX;
FWriteCache[FWriteCacheLen].aLen := aLen;
FWriteCache[FWriteCacheLen].aFoldType := aFoldType;
inc(FWriteCacheLen);
include(FWriteCacheTypes, aFoldType);
end;
procedure TSynEditFoldExportCoder.Finish;
var
FirstLine, HideFactor, HideBit: Integer;
CntSum, LinesSum: Integer;
LastFoldType: TSynEditFoldType;
procedure WriteCachedNode(AIndex: Integer);
begin
HideBit := 0;
LastFoldType := FWriteCache[AIndex].aFoldType;
if (HideFactor = 2) and (LastFoldType = scftHide) then
HideBit := 1;
FExportStream.AppendNum (FWriteCache[AIndex].aY - FirstLine);
FExportStream.AppendNumEx(FWriteCache[AIndex].aX * HideFactor + HideBit);
FExportStream.AppendNumEx(FWriteCache[AIndex].aLen);
FirstLine := FWriteCache[AIndex].aY;
end;
function CountConsecutiveNodes(var AStartIndex: Integer; out ACount, ALines: Integer;
ASkipFirst: Boolean = True): Boolean;
var l1, l2: Integer;
t: TSynEditFoldType;
begin
// reset counters for following <FoldList>
CntSum := 0;
LinesSum := 0;
HideBit := 0;;
case LastFoldType of
scftOpen: if scftHide = FWriteCache[AStartIndex].aFoldType then HideBit := 1;
scftFold: if scftHide = FWriteCache[AStartIndex].aFoldType then HideBit := 1;
scftHide: if scftFold = FWriteCache[AStartIndex].aFoldType then HideBit := 1;
end;
LastFoldType := FWriteCache[AStartIndex].aFoldType;
Result := False;
ACount := 0;
ALines := 0;
l2 := FirstLine;
t := FWriteCache[AStartIndex].aFoldType;
Repeat
if (AStartIndex >= FWriteCacheLen) then
exit;
l1 := FWriteCache[AStartIndex].aY;
if (ACount > SEQMaxNodeCount) or
(ALines > SEQMaxNodeCount) or
(l1 - l2 > SEQMaxLineDistEach) or
(l1 - FirstLine > SEQMaxLineDistTotal)
then
exit;
if not ASkipFirst then begin
ALines := ALines + FWriteCache[AStartIndex].aLen;
inc(ACount);
end;
inc(AStartIndex);
l2 := l1;
ASkipFirst := False;
until FWriteCache[AStartIndex].aFoldType <> t;
Result := True;
end;
var DeferredZero: Boolean;
procedure WriteNodeCount(ACount, ALines: Integer; AState: TSynEditFoldType);
begin
inc(CntSum, ACount);
inc(LinesSum, ALines); // non folds are always 0
if ACount = 0 then begin
DeferredZero := True;
exit;
end;
if DeferredZero then
FExportStream.AppendNumEx(0);
DeferredZero := False;
FExportStream.AppendNumEx(ACount * HideFactor + HideBit);
end;
function ScanForFold(var AIndex: Integer): Boolean;
begin
Result := True;
while AIndex < FWriteCacheLen do begin
if FWriteCache[AIndex].aFoldType in [scftFold, scftHide] then exit;
inc(AIndex);
end;
Result := False;
end;
var
i, i2, CntF, CntNF, LinesF, LinesNF: Integer;
r: boolean;
begin
if (FWriteCacheLen = 0) or (FWriteCacheTypes * [scftFold, scftHide] = []) then begin
FExportStream.Clear;
exit;
end;
{$IFDEF SynFoldSaveDebug}
DebugLnEnter(['TSynEditFoldExportCoder.Finish FType=', dbgs(FFoldType)]);
{$ENDIF}
FirstLine := 0;
if (FWriteCacheTypes * [scftFold, scftHide] = [scftFold, scftHide]) then begin
HideFactor := 2;
FExportStream.AppendString(' h');
end
else begin
HideFactor := 1; // no bit for hide/fold differentation needed
if scftHide in FWriteCacheTypes then
FExportStream.AppendString(' H');
end;
i := 0;
while i < FWriteCacheLen do begin
WriteCachedNode(i);
DeferredZero := False; // special case at start, there may be 0 more folded nodes
r := CountConsecutiveNodes(i, cntF, linesF, True);
WriteNodeCount(CntF, LinesF, scftFold); // or hide, no matter here
while r do begin
r := CountConsecutiveNodes(i, cntNF, linesNF, False);
if not r then break;
r := CountConsecutiveNodes(i, cntF, linesF, False);
WriteNodeCount(CntNF, LinesNF, scftOpen);
WriteNodeCount(CntF, LinesF, scftFold); // or hide, no matter here
end;
i2 := i;
ScanForFold(i);
if (i < FWriteCacheLen) then begin
// another node will follow, must insert ' p' marker
FExportStream.AppendString(' p'); // point marker (no marker needed for first entry)
FExportStream.AppendNum(LinesSum); // Start with sum from last sequence
end;
end;
if LinesSum > 10 then begin
// end of data; write ' P' marker if needed
FExportStream.AppendString(' P'); // point marker (no marker needed for first entry)
FExportStream.AppendNum (LinesSum); // Start with sum from last sequence
FExportStream.AppendNum (FWriteCache[i2-1].aY - FirstLine); // Last folded Coords
FExportStream.AppendNumEx(FWriteCache[i2-1].aX);
end;
{$IFDEF SynFoldSaveDebug}
DebugLnExit(['TSynEditFoldExportCoder.Finish FType=', dbgs(FFoldType), ' txtLen=', FExportStream.Len, ' Txt="', FExportStream.Text, '"']);
{$ENDIF}
end;
function TSynEditFoldExportCoder.ReadNode(aX, aY: Integer; aLen: Integer): TSynEditFoldType;
(* Format: [Num] <NumEX>
' T' [type]
[yo] <X> <len> ( <c>* ' p' [sum] [yo] <X> <len> )* <c>* (' P' [sum] [yo] <X>)?
*)
function GetCommand: Char;
begin
Result := #0;
if (FExportStream.PeakString(1) = ' ') and (FExportStream.Len > FExportStream.Pos+1) then
Result := FExportStream.ReadString(2)[2];
end;
function Invalidate: TSynEditFoldType;
begin
{$IFDEF SynFoldSaveDebug}
DebugLn(['Invalidate']);
{$ENDIF}
FReadState := sfecInvalid;
Result := scftInvalid;
end;
var
i: Integer;
begin
{$IFDEF SynFoldSaveDebug}
DebugLnEnter(['TSynEditFoldExportCoder.Readnode X=', aX, ' Y=', aY, ' Len=',aLen,
' ReadState=',SynEditFoldExportCoderStates[FReadState],
' FReadCount=', FReadCount, ' FReadY=', FReadY, ' FReadX=', FReadX,
' FReadSumLen=', FReadSumLen, ' FReadType=', SynEditFoldTypeNames[FReadType]
]);
try
{$ENDIF}
Result := scftInvalid;
case FReadState of
sfecAtBegin, sfecAtPoint:
begin
if (FReadState = sfecAtBegin) then begin
case GetCommand of
'H': begin
FReadDefaultType := scftHide;
FReadType := scftHide;
end;
'h': begin
FReadDefaultType := scftAll;
end;
end;
FReadState := sfecAtPoint;
end;
if FReadCount = 0 then begin
FReadCount := 1;
FReadY := FExportStream.ReadNum + FReadLastY;
FReadX := FExportStream.ReadNumEx;
FReadSumLen := FExportStream.ReadNumEx;
if FReadSumLen < 0 then exit(Invalidate);
if FReadDefaultType = scftAll then begin
if (FReadX and 1) = 1 then
FReadType := scftHide
else
FReadType := scftFold;
FReadX := FReadX div 2;
end
else
FReadType := FReadDefaultType;
end;
// ax may be off by one, since pas highlighter changed to include $ in $IFDEF
if ((aY < FReadY) or ((aY = FReadY) and (aX+1 < FReadX))) then
exit(scftOpen); // actually, read before point
i := 0;
if FReadType = scftHide then i := 1; // fold one more than len
if (aY <> FReadY) or (abs(aX - FReadX) > 1) or (aLen + i <> FReadSumLen) then
exit(Invalidate);
FReadLastY := FReadY;
FReadSumLen := 0; // was len of current fold, no len remaining => prepare for counting consecutive folds
Result := FReadType;
if FExportStream.EOF then
FReadState := sfecAtEOF
else case GetCommand of
'p':
begin
FExportStream.ReadNum; // skip len (must be 0) since there was no <ConsecutiveFoldedCount>
FReadCount := 0;
FReadState := sfecAtPoint;
end;
'P':
begin
// end marker isnt expected? there were no <ConsecutiveFoldedCount>
FReadState := sfecAtEOF;
end;
else
begin
FReadState := sfecInRepeatCount;
FReadCount := FExportStream.ReadNumEx; // count up and check at end
end;
end;
end;
sfecInRepeatCount:
begin
if FReadCount = 0 then begin
if FExportStream.EOF then begin
FReadState := sfecAtEOF;
exit(scftOpen);
end
else case GetCommand of
'p':
begin
if FReadSumLen <> FExportStream.ReadNum then
exit(Invalidate);
FReadCount := 0;
FReadState := sfecAtPoint;
exit(ReadNode(aX, aY, aLen));
end;
'P':
begin
if (FReadSumLen <> FExportStream.ReadNum) or
(FReadY <> FExportStream.ReadNum + FReadLastY) or
(FReadX <> FExportStream.ReadNumEx)
then
exit(Invalidate);
FReadState := sfecAtEOF;
exit(scftOpen);
end;
else
begin
FReadCount := FExportStream.ReadNumEx; // count up and check at end
if FReadDefaultType = scftAll then begin
if (FReadCount and 1) = 1 then begin
case FReadType of
scftOpen: FReadType := scftHide;
scftFold: FReadType := scftHide;
scftHide: FReadType := scftFold;
end;
end else begin
case FReadType of
scftOpen: FReadType := scftFold;
scftFold: FReadType := scftOpen;
scftHide: FReadType := scftOpen;
end;
end;
FReadCount := FReadCount div 2;
end
else begin
if FReadType = scftOpen then
FReadType := FReadDefaultType
else
FReadType := scftOpen;
end;
end;
end;
end;
dec(FReadCount);
inc(FReadSumLen, aLen);
Result := FReadType;
end;
sfecAtEOF:
begin
exit(scftOpen);
end;
sfecInvalid:
begin
exit(scftInvalid);
end;
end;
{$IFDEF SynFoldSaveDebug}
finally
DebugLnExit(['TSynEditFoldExportCoder.Readnode << ']);
end;
{$ENDIF}
end;
function TSynEditFoldExportCoder.EOF: Boolean;
begin
Result := FExportStream.EOF;
end;
procedure TSynEditFoldExportCoder.Reset;
begin
FExportStream.Reset;
FReadY := -1;
FReadX := -1;
FReadLastY := 0;
FReadCount := 0;
FReadSumLen := 0;
FReadState := sfecAtBegin;
if FExportStream.Len = 0 then
FReadState := sfecInvalid;
FReadDefaultType := scftFold;
FReadType := scftFold;
end;
{ TSynTextFoldAVLNodeData }
function TSynTextFoldAVLNodeData.Left: TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(FLeft);
end;
function TSynTextFoldAVLNodeData.Parent: TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(FParent);
end;
function TSynTextFoldAVLNodeData.Right: TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(FRight);
end;
procedure TSynTextFoldAVLNodeData.FreeAllChildrenAndNested;
begin
if FLeft <> nil then begin
Left.FreeAllChildrenAndNested;
FreeAndNil(FLeft);
end;
if FRight <> nil then begin
Right.FreeAllChildrenAndNested;
FreeAndNil(FRight);
end;
if Nested <> nil then begin
Nested.FreeAllChildrenAndNested;
FreeAndNil(Nested);
end;
end;
function TSynTextFoldAVLNodeData.RecursiveFoldCount : Integer;
var
ANode: TSynTextFoldAVLNodeData;
begin
Result := 0;
ANode := self;
while ANode <> nil do begin
Result := Result + ANode.MergedLineCount + ANode.LeftCount;
ANode := ANode.Right;
end;
end;
function TSynTextFoldAVLNodeData.Precessor: TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(inherited Precessor);
end;
function TSynTextFoldAVLNodeData.Successor: TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(inherited Successor);
end;
function TSynTextFoldAVLNodeData.Precessor(var aStartPosition,
aSizesBeforeSum: Integer): TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(inherited Precessor(aStartPosition, aSizesBeforeSum));
end;
function TSynTextFoldAVLNodeData.Successor(var aStartPosition,
aSizesBeforeSum: Integer): TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData(inherited Successor(aStartPosition, aSizesBeforeSum));
end;
{ TSynTextFoldAVLNode }
function TSynTextFoldAVLNode.GetClassification: TFoldNodeClassification;
begin
if fData = nil
then Result := fncInvalid
else Result := fData.Classification;
end;
function TSynTextFoldAVLNode.GetFoldColumn: Integer;
begin
if fData = nil
then Result := -1
else Result := fData.FoldColumn;
end;
function TSynTextFoldAVLNode.GetFoldColumnLen: Integer;
begin
if fData = nil
then Result := -1
else Result := fData.FoldColumnLen;
end;
function TSynTextFoldAVLNode.GetFoldIndex: Integer;
begin
if fData = nil
then Result := -1
else Result := fData.FoldIndex;
end;
function TSynTextFoldAVLNode.GetMergedLineCount : Integer;
begin
if fData = nil
then Result := 0
else Result := fData.MergedLineCount;
end;
function TSynTextFoldAVLNode.GetFullCount: Integer;
begin
if fData = nil
then Result := -1
else Result := fData.FullCount;
end;
function TSynTextFoldAVLNode.GetSourceLine: integer;
begin
if fData = nil then
Result := -1
else
Result := StartLine - fData.VisibleLines;
end;
function TSynTextFoldAVLNode.GetSourceLineOffset: integer;
begin
if fData = nil then
Result := 0
else
Result := fData.VisibleLines;
end;
procedure TSynTextFoldAVLNode.SetFoldColumn(const AValue: Integer);
begin
if fData <> nil then
fData.FoldColumn := AValue;
end;
procedure TSynTextFoldAVLNode.Init(aData: TSynTextFoldAVLNodeData; aStartLine,
aFoldedBefore: Integer);
begin
fData := aData;
fStartLine := aStartLine;
fFoldedBefore := aFoldedBefore;
end;
function TSynTextFoldAVLNode.IsInFold : Boolean;
begin
Result := fData <> nil;
end;
function TSynTextFoldAVLNode.Next : TSynTextFoldAVLNode;
var aStart, aBefore : Integer;
begin
if fData <> nil then begin
aStart := StartLine;
aBefore := FoldedBefore;
Result.fData := fData.Successor(aStart, aBefore);
Result.fStartLine := aStart;
Result.fFoldedBefore := aBefore;
end
else Result.fData := nil;
end;
function TSynTextFoldAVLNode.Prev : TSynTextFoldAVLNode;
var aStart, aBefore : Integer;
begin
if fData <> nil then begin
aStart := StartLine;
aBefore := FoldedBefore;
Result.fData := fData.Precessor(aStart, aBefore);
Result.fStartLine := aStart;
Result.fFoldedBefore := aBefore;
end
else Result.fData := nil;
end;
function TSynTextFoldAVLNode.IsHide: Boolean;
begin
Result := (fData <> nil) and (fData.VisibleLines = 0);
end;
{ TSynTextFoldAVLNodeNestedIterator }
constructor TSynTextFoldAVLNodeNestedIterator.Create(ANode: TSynTextFoldAVLNode);
begin
SetLength(FOuterNodes, 0);
FCurrentNode := ANode;
end;
destructor TSynTextFoldAVLNodeNestedIterator.Destroy;
begin
SetLength(FOuterNodes, 0);
inherited Destroy;
end;
function TSynTextFoldAVLNodeNestedIterator.Next: TSynTextFoldAVLNode;
var
NewData: TSynTextFoldAVLNodeData;
i: Integer;
PNode: TSynTextFoldAVLNode;
begin
i := length(FOuterNodes);
if FCurrentNode.fData.Nested = nil then begin
FCurrentNode := FCurrentNode.Next;
while (not FCurrentNode.IsInFold) and (i > 0) do begin
dec(i);
FCurrentNode := FOuterNodes[i];
SetLength(FOuterNodes, i);
FCurrentNode := FCurrentNode.Next;
end;
end else begin
SetLength(FOuterNodes, i + 1);
FOuterNodes[i] := FCurrentNode;
NewData := FCurrentNode.fData.Nested;
FCurrentNode.fData := NewData;
FCurrentNode.FStartLine := FCurrentNode.FStartLine + NewData.LineOffset;
PNode := FCurrentNode.Prev;
while PNode.IsInFold do begin
FCurrentNode := PNode;
PNode := FCurrentNode.Prev;
end;
end;
Result := FCurrentNode;
end;
function TSynTextFoldAVLNodeNestedIterator.Prev: TSynTextFoldAVLNode;
var
i: Integer;
NewData: TSynTextFoldAVLNodeData;
PNode: TSynTextFoldAVLNode;
begin
FCurrentNode := FCurrentNode.Prev;
i := length(FOuterNodes);
if FCurrentNode.IsInFold then begin
while (FCurrentNode.fData.Nested <> nil) do begin
SetLength(FOuterNodes, i + 1);
FOuterNodes[i] := FCurrentNode;
NewData := FCurrentNode.fData.Nested;
FCurrentNode.fData := NewData;
FCurrentNode.FStartLine := FCurrentNode.FStartLine + NewData.LineOffset;
PNode := FCurrentNode.Next;
while PNode.IsInFold do begin
FCurrentNode := PNode;
PNode := FCurrentNode.Next;
end;
end;
end
else // not IsInFold
if (i > 0) then begin
dec(i);
FCurrentNode := FOuterNodes[i];
SetLength(FOuterNodes, i);
end;
Result := FCurrentNode;
end;
function TSynTextFoldAVLNodeNestedIterator.EOF: Boolean;
begin
Result := not FCurrentNode.Next.IsInFold;
end;
function TSynTextFoldAVLNodeNestedIterator.BOF: Boolean;
begin
Result := not FCurrentNode.Prev.IsInFold;
end;
function TSynTextFoldAVLNodeNestedIterator.IsInFold: Boolean;
begin
Result := FCurrentNode.IsInFold;
end;
{ TSynFoldNodeInfoHelper }
constructor TSynFoldNodeInfoHelper.Create(AHighlighter: TSynCustomFoldHighlighter);
begin
inherited Create;
FHighlighter := AHighlighter;
Invalidate;
end;
function TSynFoldNodeInfoHelper.FirstOpen: TSynFoldNodeInfo;
begin
FActions := [sfaOpen, sfaFold];
FCurInfo.NodeIndex := -1;
FCurInfo.LineIndex := 0;
Result := Next;
end;
procedure TSynFoldNodeInfoHelper.Invalidate;
begin
FCurInfo.FoldAction := [sfaInvalid];
end;
function TSynFoldNodeInfoHelper.Next: TSynFoldNodeInfo;
var
Cnt, Line, Idx: LongInt;
begin
Idx := FCurInfo.NodeIndex + 1;
Line := FCurInfo.LineIndex;
Cnt := FHighlighter.FoldNodeInfo[Line].CountEx(FActions);
if Idx >= Cnt then begin
Idx := 0;
inc(Line);
while (Line < FHighlighter.CurrentLines.Count) and
(FHighlighter.FoldNodeInfo[Line].CountEx(FActions) = 0)
do
inc(Line);
end;
if (Line < FHighlighter.CurrentLines.Count) then
FCurInfo := FHighlighter.FoldNodeInfo[Line].NodeInfoEx(Idx, FActions)
else
Invalidate;
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.Prev: TSynFoldNodeInfo;
var
Line, Idx: LongInt;
begin
Idx := FCurInfo.NodeIndex - 1;
Line := FCurInfo.LineIndex;
if Idx < 0 then begin
dec(Line);
while (Line >= 0) and
(FHighlighter.FoldNodeInfo[Line].CountEx(FActions) = 0)
do
dec(Line);
Idx := FHighlighter.FoldNodeInfo[Line].CountEx(FActions) - 1;
end;
if (Line >= 0) then
FCurInfo := FHighlighter.FoldNodeInfo[Line].NodeInfoEx(Idx, FActions)
else
Invalidate;
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.FindClose: TSynFoldNodeInfo;
var
Line, EndLine, Cnt: Integer;
NdInfo: TSynFoldNodeInfo;
begin
Line := FCurInfo.LineIndex;
EndLine := FHighlighter.FoldEndLine(Line, FCurInfo.NodeIndex);
FActions := [sfaClose, sfaFold];
Cnt := FHighlighter.FoldNodeInfo[EndLine].CountEx(FActions) - 1;
while Cnt >= 0 do begin
NdInfo := FHighlighter.FoldNodeInfo[EndLine].NodeInfoEx(Cnt, FActions);
if (NdInfo.FoldLvlStart = FCurInfo.FoldLvlEnd) and
(NdInfo.FoldType = FCurInfo.FoldType)
then
break;
dec(Cnt);
end;
if Cnt < 0 then
Invalidate
else
FCurInfo := NdInfo;
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.GotoOpenPos(aLineIdx, aNodeIdx: integer): TSynFoldNodeInfo;
begin
FActions := [sfaOpen, sfaFold];
FCurInfo := FHighlighter.FoldNodeInfo[aLineIdx].NodeInfoEx(aNodeIdx, FActions);
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.GotoOpenAtChar(aLineIdx, aXPos: integer): TSynFoldNodeInfo;
var
Cnt: Integer;
begin
FActions := [sfaOpen, sfaFold];
Cnt := FHighlighter.FoldNodeInfo[aLineIdx].CountEx(FActions) - 1;
while Cnt >= 0 do begin
FCurInfo := FHighlighter.FoldNodeInfo[aLineIdx].NodeInfoEx(Cnt, FActions);
if FCurInfo.LogXStart = aXPos then break;
dec(Cnt);
end;
if Cnt < 0 then
Invalidate;
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.GotoNodeOpenPos(ANode: TSynTextFoldAVLNode): TSynFoldNodeInfo;
begin
FActions := [sfaOpen, sfaFold];
FCurInfo := FHighlighter.FoldNodeInfo[ANode.StartLine - ANode.SourceLineOffset - 1]
.NodeInfoEx(ANode.FoldIndex, FActions);
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.GotoNodeClosePos(ANode: TSynTextFoldAVLNode): TSynFoldNodeInfo;
var
NdInfo, NdInfo2: TSynFoldNodeInfo;
Cnt, EndCol, EndLineIdx: Integer;
begin
FActions := [sfaClose, sfaFold];
NdInfo := FHighlighter.FoldNodeInfo[ANode.StartLine - ANode.SourceLineOffset - 1]
.NodeInfoEx(ANode.FoldIndex, [sfaOpen, sfaFold]);
if sfaInvalid in NdInfo.FoldAction then exit(NdInfo);
EndLineIdx := FHighlighter.FoldEndLine(ANode.StartLine - ANode.SourceLineOffset - 1,
ANode.FoldIndex);
{$IFDEF SynAssertFold}
SynAssert(EndLineIdx >= 0, 'TSynFoldNodeInfoHelper.GotoNodeClosePos: Bad EndLineIdx=%d # Anode: StartLine=%d SrcLOffs=%d ColIdx=%d FoldCol=%d', [EndLineIdx, ANode.StartLine, ANode.SourceLineOffset, ANode.FoldIndex, ANode.FoldColumn]);
{$ENDIF}
Cnt := FHighlighter.FoldNodeInfo[EndLineIdx].CountEx([sfaClose, sfaFold]);
EndCol := 0;
while EndCol < Cnt do begin
NdInfo2 := FHighlighter.FoldNodeInfo[EndLineIdx].NodeInfoEx(EndCol, [sfaClose, sfaFold]);
if (NdInfo2.FoldLvlStart = NdInfo.FoldLvlEnd) and
(NdInfo2.FoldType = NdInfo.FoldType) then break;
inc(EndCol);
end;
if (EndCol = Cnt) or (sfaInvalid in NdInfo2.FoldAction) then
Invalidate
else
FCurInfo := NdInfo2;
Result := FCurInfo;
end;
function TSynFoldNodeInfoHelper.IsAtNodeOpenPos(ANode: TSynTextFoldAVLNode): Boolean;
begin
Result := (not (sfaInvalid in FCurInfo.FoldAction)) and
(ANode.IsInFold) and
(FCurInfo.LineIndex = ANode.StartLine - ANode.SourceLineOffset - 1) and
(FCurInfo.NodeIndex = ANode.FoldIndex);
end;
function TSynFoldNodeInfoHelper.IsValid: Boolean;
begin
Result := (not (sfaInvalid in FCurInfo.FoldAction));
end;
function TSynFoldNodeInfoHelper.Equals(AnInfo: TSynFoldNodeInfo): Boolean;
begin
Result := (FCurInfo.LineIndex = AnInfo.LineIndex) and
(FCurInfo.NodeIndex = AnInfo.NodeIndex) and
(FCurInfo.LogXStart = AnInfo.LogXStart) and
(FCurInfo.LogXEnd = AnInfo.LogXEnd) and
(FCurInfo.FoldLvlStart = AnInfo.FoldLvlStart) and
(FCurInfo.FoldLvlEnd = AnInfo.FoldLvlEnd) and
(FCurInfo.FoldAction = AnInfo.FoldAction) and
(FCurInfo.FoldType = AnInfo.FoldType) and
(FCurInfo.FoldGroup = AnInfo.FoldGroup);
end;
function TSynFoldNodeInfoHelper.Equals(AHelper: TSynFoldNodeInfoHelper): Boolean;
begin
Result := Equals(AHelper.Info);
end;
{ TSynTextFoldAVLTree }
function TSynTextFoldAVLTree.NewNode : TSynTextFoldAVLNodeData;
begin
Result := TSynTextFoldAVLNodeData.Create;
end;
destructor TSynTextFoldAVLTree.Destroy;
begin
Clear;
if fNestedNodesTree <> nil then begin
fNestedNodesTree.fRoot := nil; //was freed in self.Clear
fNestedNodesTree.fNestParent := nil; // Or Destroy will access invalid memory
fNestedNodesTree.Free;
end;
inherited Destroy;
end;
procedure TSynTextFoldAVLTree.Clear;
procedure DeleteNode({var} ANode: TSynTextFoldAVLNodeData);
begin
if ANode.Left <>nil then DeleteNode(ANode.Left);
if ANode.Right <>nil then DeleteNode(ANode.Right);
if ANode.Nested <>nil then DeleteNode(ANode.Nested);
DisposeNode(TSynSizedDifferentialAVLNode(ANode));
end;
begin
if fRoot <> nil then DeleteNode(TSynTextFoldAVLNodeData(fRoot));
SetRoot(nil);
end;
procedure TSynTextFoldAVLTree.SetRoot(ANode : TSynSizedDifferentialAVLNode);
begin
inherited;;
if fNestParent <> nil then fNestParent.Nested := TSynTextFoldAVLNodeData(ANode);
end;
procedure TSynTextFoldAVLTree.SetRoot(ANode : TSynSizedDifferentialAVLNode; anAdjustChildLineOffset : Integer);
begin
inherited;;
if fNestParent <> nil then fNestParent.Nested := TSynTextFoldAVLNodeData(ANode);
end;
(* Find Fold by Line in Real Text *)
function TSynTextFoldAVLTree.FindFoldForLine(ALine : Integer;
FindNextNode : Boolean = False) : TSynTextFoldAVLNode;
var
r : TSynTextFoldAVLNodeData;
rStartLine : Integer;
rFoldedBefore : Integer;
begin
r := TSynTextFoldAVLNodeData(fRoot);
rStartLine := fRootOffset;
rFoldedBefore := 0;
while (r <> nil) do begin
rStartLine := rStartLine + r.LineOffset;
if ALine < rStartLine then begin
if FindNextNode and (r.Left = nil) then break;
r := r.Left; // rStartLine points to r, so if r.Left is nil then it is pointing to the next fold;
continue;
end;
rFoldedBefore := rFoldedBefore + r.LeftCount;
if ALine < rStartLine + r.MergedLineCount
then break;
if FindNextNode and (r.Right = nil) then begin
r := r.Successor(rStartLine, rFoldedBefore);
break;
end;
rFoldedBefore := rFoldedBefore + r.MergedLineCount;
r := r.Right; // rStartLine points to r, which now is the start of the previous fold;
end;
Result{%H-}.Init(r, rStartLine, rFoldedBefore);
end;
(* Find Fold by Line in Folded Text // always returns unfolded, unless next=true *)
function TSynTextFoldAVLTree.FindFoldForFoldedLine(ALine : Integer;
FindNextNode : Boolean) : TSynTextFoldAVLNode;
var
r : TSynTextFoldAVLNodeData;
rStartLine : Integer;
rFoldedBefore : Integer;
begin
r := TSynTextFoldAVLNodeData(fRoot);
rStartLine := fRootOffset;
rFoldedBefore := 0;
while (r <> nil) do begin
rStartLine := rStartLine + r.LineOffset;
// r.LeftCount => "FoldedBefore"
if ALine + r.LeftCount < rStartLine then begin
if FindNextNode and (r.Left = nil) then break;
r := r.Left; // rStartLine points to r, so if r.Left is nil then it is pointing to the next fold;
continue;
end;
ALine := ALine + r.LeftCount + r.MergedLineCount;
rFoldedBefore := rFoldedBefore + r.LeftCount;
if FindNextNode and (r.Right = nil) then begin
r := r.Successor(rStartLine, rFoldedBefore);
break;
end;
rFoldedBefore := rFoldedBefore + r.MergedLineCount;
r := r.Right; // rStartLine points to r, which now is the start of the previous fold;
end;
Result{%H-}.Init(r, rStartLine, rFoldedBefore);
end;
procedure TSynTextFoldAVLTree.AdjustForLinesInserted(AStartLine, ALineCount, ABytePos: Integer);
Procedure DoAdjustForLinesInserted(Current : TSynTextFoldAVLNodeData;
CurrentLine : Integer);
var
t: LongInt;
begin
while (Current <> nil) do begin
CurrentLine := CurrentLine + Current.LineOffset;
if (AStartLine <= CurrentLine - Current.VisibleLines) or
( (AStartLine - 1 = CurrentLine - Current.VisibleLines) and
(ABytePos <= Current.FoldColumn) )
then begin
// move current node
Current.LineOffset := Current.LineOffset + ALineCount;
CurrentLine := CurrentLine + ALineCount;
if Current.Left <> nil then
Current.Left.LineOffset := Current.Left.LineOffset - ALineCount;
Current := Current.Left;
end
else if AStartLine > CurrentLine + Current.MergedLineCount- 1 then begin
// The new lines are entirly behind the current node
Current := Current.Right;
end
else begin
// grow current node (there is only one node one the line, the others are nested)
// CurrentLine <= AStartLine <= CurrentLine + Current.FullCount - 1
t := Current.FullCount;
if AStartLine <= CurrentLine + t - 1 then
Current.FullCount := t + ALineCount;
Current.MergedLineCount:= Current.MergedLineCount+ ALineCount;
Current.AdjustParentLeftCount(ALineCount);
TreeForNestedNode(Current, CurrentLine).AdjustForLinesInserted(AStartLine, ALineCount, ABytePos);
if Current.Right <> nil then // and move entire right
Current.Right.LineOffset := Current.Right.LineOffset + ALineCount;
break;
end;
end;
end;
begin
{$IFDEF SynFoldDebug}debugln(['FOLD-- AdjustForLinesInsertedAStartLine:=', AStartLine, ' ALineCount=',ALineCount, ' ABytePos=',ABytePos ]); {$ENDIF}
DoAdjustForLinesInserted(TSynTextFoldAVLNodeData(fRoot), fRootOffset);
AdjustColumn(AStartLine+ALineCount-1, ABytePos, -ABytePos+1, True);
end;
procedure TSynTextFoldAVLTree.AdjustForLinesDeleted(AStartLine,
ALineCount, ABytePos: Integer);
Procedure AdjustNodeForLinesDeleted(Current : TSynTextFoldAVLNodeData;
CurrentLine, FirstLineToDelete, CountLinesToDelete : Integer);
var
LastLineToDelete, LinesBefore, LinesInside, LinesAfter, t : Integer;
begin
LastLineToDelete := FirstLineToDelete + CountLinesToDelete - 1; // only valid for delete; CountLinesToDelete < 0
while (Current <> nil) do begin
CurrentLine := CurrentLine + Current.LineOffset;
if FirstLineToDelete <= CurrentLine - Current.VisibleLines then begin
// move current node
if LastLineToDelete > CurrentLine - Current.VisibleLines then begin
// overlap => shrink
LinesBefore := CurrentLine - FirstLineToDelete;
LinesInside := CountLinesToDelete - LinesBefore;
// shrink
t := Current.MergedLineCount;
Current.FullCount := Max(Current.FullCount - LinesInside, -1);
Current.MergedLineCount := Max(Current.MergedLineCount - LinesInside, 0);
Current.AdjustParentLeftCount(Current.MergedLineCount - t); // If LineCount = -1; LeftCount will be correctd on delete node
TreeForNestedNode(Current, CurrentLine).AdjustForLinesDeleted(CurrentLine, LinesInside, ABytePos);
if (Current.Right <> nil) then begin
// move right // Calculate from the new curent.LineOffset, as below
AdjustNodeForLinesDeleted(Current.Right, CurrentLine - LinesBefore,
FirstLineToDelete, LinesInside);
end;
end
else LinesBefore := CountLinesToDelete;
// move current node (includes right subtree / left subtree needs eval)
Current.LineOffset := Current.LineOffset - LinesBefore;
CurrentLine := CurrentLine - LinesBefore;
//if AStartLine = CurrentLine then begin
// Current.FoldColumn := Current.FoldColumn + ABytePos-1;
// TreeForNestedNode(Current, CurrentLine).AdjustColumn(CurrentLine, 1, ABytePos-1);
//end;
if Current.Left <> nil then
Current.Left.LineOffset := Current.Left.LineOffset + LinesBefore;
Current := Current.Left;
end
else if FirstLineToDelete > CurrentLine + Current.MergedLineCount - 1 then begin
// The deleted lines are entirly behind the current node
Current := Current.Right;
end
else begin
// (FirstLineToDelete >= CurrentLine) AND (FirstLineToDelete < CurrentLine + Current.LineCount);
LinesAfter := LastLineToDelete - (CurrentLine + Current.MergedLineCount - 1);
if LinesAfter < 0 then LinesAfter := 0;
LinesInside := CountLinesToDelete - LinesAfter;
// shrink current node
t := Current.MergedLineCount;
Current.MergedLineCount := Current.MergedLineCount- LinesInside;
if Current.FullCount > Current.MergedLineCount then
Current.FullCount := Current.MergedLineCount;
Current.AdjustParentLeftCount(Current.MergedLineCount - t); // If MergedLineCount = -1; LeftCount will be correctd on delete node
TreeForNestedNode(Current, CurrentLine).AdjustForLinesDeleted(FirstLineToDelete, LinesInside, ABytePos);
Current := Current.Right;
end;
end;
end;
begin
{$IFDEF SynFoldDebug}debugln(['FOLD-- AdjustForLinesDeleted AStartLine:=', AStartLine, ' ALineCount=',ALineCount, ' ABytePos=',ABytePos ]); {$ENDIF}
if ABytePos > 1 then
AdjustColumn(AStartLine+ALineCount-1, 1, ABytePos-1);
AdjustNodeForLinesDeleted(TSynTextFoldAVLNodeData(fRoot), fRootOffset, AStartLine, ALineCount);
end;
procedure TSynTextFoldAVLTree.AdjustColumn(ALine, ABytePos, ACount: Integer;
InLineBreak: boolean = False);
var
Node: TSynTextFoldAVLNode;
begin
Node := FindFoldForLine(ALine, True);
{$IFDEF SynFoldDebug}debugln(['FOLD-- AdjustColumn ALine:=', ALine, ' ABytePos=',ABytePos, ' ACount=',ACount, ' // node.srcline=',Node.SourceLine, ' StartLine=', node.StartLine, 'column=',Node.FoldColumn ]); {$ENDIF}
if (not Node.IsInFold) or (Node.SourceLine > ALine) then exit;
if (Node.SourceLine = ALine) and (node.FoldColumn >= ABytePos) then begin
node.FoldColumn := Node.FoldColumn + ACount;
if (not InLineBreak) and (node.FoldColumn < ABytePos) then node.FoldColumn := ABytePos;
end;
TreeForNestedNode(Node.fData, node.StartLine).AdjustColumn(ALine, ABytePos, ACount);
end;
function TSynTextFoldAVLTree.FindLastFold : TSynTextFoldAVLNode;
var
r : TSynTextFoldAVLNodeData;
rStartLine : Integer;
rFoldedBefore : Integer;
begin
r := TSynTextFoldAVLNodeData(fRoot);
rStartLine := fRootOffset;
rFoldedBefore := 0;
while (r <> nil) do begin
rStartLine := rStartLine + r.LineOffset;
rFoldedBefore := rFoldedBefore + r.LeftCount + r.MergedLineCount;
if r.Right = nil then break;
r := r.Right; // rStartLine points to r, which now is the start of the previous fold;
end;
Result{%H-}.Init(r, rStartLine, rFoldedBefore);
end;
function TSynTextFoldAVLTree.FindFirstFold : TSynTextFoldAVLNode;
var
r : TSynTextFoldAVLNodeData;
rStartLine : Integer;
begin
r := TSynTextFoldAVLNodeData(fRoot);
rStartLine := fRootOffset;
while (r <> nil) do begin
rStartLine := rStartLine + r.LineOffset;
if r.Left = nil then break;
r := r.Left;
end;
Result{%H-}.Init(r, rStartLine, 0);
end;
function TSynTextFoldAVLTree.LastFoldedLine: integer;
var
n: TSynTextFoldAVLNode;
begin
n := FindFirstFold;
if not n.IsInFold then exit(0);
Result := n.StartLine + n.MergedLineCount - 1;
end;
{$IFDEF SynDebug}
procedure TSynTextFoldAVLTree.debug;
function debug2(ind, typ : String; ANode, AParent : TSynTextFoldAVLNodeData; offset : integer) :integer;
begin
result := 0;
if ANode = nil then exit;
with ANode do
DebugLn([Format('Lines=%3d-%3d (e=%3d / idx=%d) %2d:%d; Lcnt=%2d / Fcnt=%2d | ',
[offset + ANode.LineOffset, offset + ANode.LineOffset + ANode.FullCount -1,
offset + ANode.LineOffset + ANode.MergedLineCount-1, ANode.FoldIndex,
ANode.FoldColumn, ANode.FoldColumnLen,
MergedLineCount, FullCount]),
ind, typ, ' (',LineOffset, ') LeftCount: ', LeftCount,
' Balance: ',FBalance]);
if ANode.Parent <> AParent then DebugLn([ind,'* Bad parent']);
Result := debug2(ind+' ', 'L', ANode.Left, ANode, offset+ANode.LineOffset);
If Result <> ANode.LeftCount then debugln([ind,' ***** Leftcount was ',Result, ' but should be ', ANode.LeftCount]);
Result := Result + debug2(ind+' ', 'R', ANode.Right, ANode, offset+ANode.LineOffset);
debug2(ind+' #', 'N', ANode.Nested, nil, offset+ANode.LineOffset);
Result := Result + ANode.MergedLineCount;
end;
begin
debugln('StartLine, EndLine (MergedEnd, FoldIndex) - Column:Len; MergedLineCnt / FullCCnt | .. (LineOffset) ...');
debug2('', ' -', TSynTextFoldAVLNodeData(fRoot), nil, 0);
end;
{$ENDIF}
function TSynTextFoldAVLTree.InsertNewFold(ALine, AFoldIndex, AColumn, AColumnLen,
ACount, AVisibleLines: Integer; AClassification: TFoldNodeClassification;
AFoldTypeCompatible: Pointer) : TSynTextFoldAVLNode;
var
r : TSynTextFoldAVLNodeData;
begin
{$IFDEF SynFoldDebug}debugln(['FOLD-- InsertNewFold ALine:=', ALine, ' AFoldIndex=', AFoldIndex]);{$ENDIF}
r := NewNode;
r.LineOffset := ALine; // 1-based
r.FoldIndex := AFoldIndex;
r.FoldColumn := AColumn;
r.FoldColumnLen := AColumnLen;
r.MergedLineCount := ACount;
r.FullCount := ACount;
r.LeftCount := 0;
r.VisibleLines := AVisibleLines;
r.Classification := AClassification;
r.FoldTypeCompatible := AFoldTypeCompatible;
Result{%H-}.Init(r, ALine, 0);
Result.fFoldedBefore := InsertNode(r);
end;
function TSynTextFoldAVLTree.RemoveFoldForLine(ALine : Integer;
OnlyCol: Integer = -1) : Integer;
var
OldFold : TSynTextFoldAVLNode;
lcount: Integer;
begin
{$IFDEF SynFoldDebug}debugln(['FOLD-- RemoveFoldForLine ALine:=', ALine, ' OnlyCol=',OnlyCol]);{$ENDIF}
Result := ALine; // - 1; // Return index
OldFold := FindFoldForLine(ALine, False);
if OldFold.StartLine < Result then
Result := OldFold.StartLine;
if (not OldFold.IsInFold) then exit;
if OnlyCol < 0 then
RemoveFoldForNodeAtLine(OldFold, ALine)
else
if OldFold.FoldIndex = OnlyCol then
RemoveFoldForNodeAtLine(OldFold, -1)
else
if OldFold.fData.Nested <> nil then begin
TreeForNestedNode(OldFold.fData, OldFold.StartLine).RemoveFoldForLine
(ALine, OnlyCol);
lcount := max(OldFold.FullCount,
TreeForNestedNode(OldFold.fData, 0).LastFoldedLine + 1);
if lcount <> OldFold.MergedLineCount then begin
OldFold.fData.MergedLineCount := lcount;
OldFold.fData.AdjustParentLeftCount(OldFold.MergedLineCount - lcount);
end;
end;
end;
function TSynTextFoldAVLTree.RemoveFoldForNodeAtLine(ANode : TSynTextFoldAVLNode;
ALine : Integer) : Integer;
var
NestedNode, MergeNode : TSynTextFoldAVLNodeData;
NestedLine, offs, lcount : Integer;
OnlyNested: Boolean;
Nested: TSynTextFoldAVLNode;
begin
{$IFDEF SynFoldDebug}debugln(['FOLD-- RemoveFoldForNodeAtLine: ALine:=', ALine, ' ANode.StartLine=', ANode.StartLine]);{$ENDIF}
OnlyNested := ALine >= ANode.StartLine + ANode.FullCount;
// The cfCollapsed line is one line before the fold
Result := ANode.StartLine-1; // Return the cfcollapsed that was unfolded
if not OnlyNested then
RemoveNode(ANode.fData);
NestedLine := 0;
If ANode.fData.Nested <> nil then
begin
(*Todo: should we mark the tree as NO balancing needed ???*)
TreeForNestedNode(ANode.fData, ANode.StartLine).RemoveFoldForLine(ALine);
if OnlyNested then begin
NestedLine := ANode.StartLine + ANode.FullCount;
Nested := TreeForNestedNode(ANode.fData, ANode.StartLine).FindLastFold;
while Nested.IsInFold and (Nested.StartLine >= NestedLine) do begin
NestedNode := Nested.fData;
offs := Nested.StartLine;
Nested := Nested.Prev;
lcount := ANode.fData.MergedLineCount;
ANode.fData.MergedLineCount := max(ANode.FullCount,
Nested.StartLine + Nested.MergedLineCount - ANode.StartLine);
ANode.fData.AdjustParentLeftCount(ANode.MergedLineCount - lcount);
TreeForNestedNode(ANode.fData, ANode.StartLine).RemoveNode(NestedNode);
NestedNode.LineOffset := offs;
InsertNode(NestedNode);
end;
lcount := max(ANode.FullCount,
TreeForNestedNode(ANode.fData, ANode.StartLine).LastFoldedLine
- ANode.StartLine + 1);
if lcount <> ANode.MergedLineCount then begin
ANode.fData.MergedLineCount := lcount;
ANode.fData.AdjustParentLeftCount(ANode.MergedLineCount - lcount);
end;
end
else begin
// merge the remaining nested into current
NestedNode := ANode.fData.Nested;
if NestedNode <> nil
then NestedLine := ANode.fStartLine + NestedNode.LineOffset;
while NestedNode <> nil do begin
while NestedNode.Left <> nil do begin
NestedNode := NestedNode.Left;
NestedLine := NestedLine + NestedNode.LineOffset;
end;
if NestedNode.Right <> nil then begin
NestedNode := NestedNode.Right;
NestedLine := NestedLine + NestedNode.LineOffset;
continue;
end;
// leaf node
// Anything that is still nested (MergeNode.Nested), will stay nested
MergeNode := NestedNode;
NestedLine := NestedLine - NestedNode.LineOffset;
NestedNode := NestedNode.Parent;
MergeNode.LineOffset := MergeNode.LineOffset + NestedLine;
if NestedNode <> nil then begin
NestedNode.ReplaceChild(MergeNode, nil);
MergeNode.FParent := nil;
end;
MergeNode.LeftCount := 0;
MergeNode.FBalance := 0;
if MergeNode.FullCount <= 0 then begin
MergeNode.FreeAllChildrenAndNested;
MergeNode.Free;
end
else
InsertNode(MergeNode);
end;
end;
end;
if not OnlyNested then
DisposeNode(TSynSizedDifferentialAVLNode(ANode.fData));
end;
function TSynTextFoldAVLTree.InsertNode(ANode : TSynTextFoldAVLNodeData) : Integer;
var
rStartLine, NestStartLine : Integer;
rFoldedBefore, NestFoldedBefore : Integer;
current, Nest : TSynTextFoldAVLNodeData;
ALine, AEnd, ACount : Integer;
(* ANode.StartLine < Current.StartLine // ANode goes into tree *)
procedure NestCurrentIntoNewBlock; inline;
var
diff, start2, before2 : Integer;
p : TSynTextFoldAVLNodeData;
begin
current.AdjustParentLeftCount(ACount-current.MergedLineCount); // -RecursiveFoldCount(current));
rStartLine := rStartLine - current.LineOffset; // rStarteLine is now current.Parent
p := current.Parent;
if p <> nil
then p.ReplaceChild(current, ANode, -rStartLine)
else SetRoot(ANode, -rStartLine);
diff := current.LineOffset - ANode.LineOffset;
ANode.Nested := current;
ANode.FBalance := current.FBalance;
current.LineOffset := diff; // offset to ANode (via Nested)
current.FParent := nil;
current.FBalance := 0;
ANode.SetLeftChild(current.Left, diff, current.LeftCount);
current.FLeft := nil;
current.LeftCount := 0;
ANode.SetRightChild(current.Right, diff);
current.FRight := nil;
start2 := ALine; before2 := rFoldedBefore;
p := ANode.Successor(start2, before2);
while (p <> nil) and (start2 <= AEnd) do begin
RemoveNode(p);
p.LineOffset := start2- ALine;
TreeForNestedNode(Anode, 0).InsertNode(p);
start2 := ALine; before2 := rFoldedBefore;
p := ANode.Successor(start2, before2);
end;
// check only after loop, if we gre, we did so by existing nodes, so no new overlaps
start2 := TreeForNestedNode(Anode, 0).LastFoldedLine;
if start2 > ANode.FullCount - 1 then begin
ANode.AdjustParentLeftCount(start2 + 1 - ANode.MergedLineCount);
ANode.MergedLineCount := start2 + 1;
end;
end;
(* ANode.StartLine > Current.StartLine // Current remains in tree *)
procedure NestNewBlockIntoCurrent; //inline;
var
end2, start2, before2: Integer;
p: TSynTextFoldAVLNodeData;
begin
// Check if current.LineCount needs extension
ANode.LineOffset := ALine - rStartLine;
if current.Nested <> nil
then TreeForNestedNode(current, 0).InsertNode(ANode)
else current.Nested := ANode;
end2 := TreeForNestedNode(current, 0).LastFoldedLine;
if end2 > current.FullCount -1 then begin
end2 := rStartLine + end2;
start2 := rStartLine; before2 := rFoldedBefore;
p := current.Successor(start2, before2);
while (p <> nil) and (start2 <= end2) do begin
RemoveNode(p);
p.LineOffset := start2 - rStartLine;
TreeForNestedNode(current, 0).InsertNode(p);
start2 := rStartLine; before2 := rFoldedBefore;
p := current.Successor(start2, before2);
end;
end2 := TreeForNestedNode(current, 0).LastFoldedLine;
if end2 > current.FullCount -1 then begin
current.AdjustParentLeftCount(end2 + 1 - current.MergedLineCount);
current.MergedLineCount := end2 + 1;
end;
end;
end;
begin
Result := 0;
if fRoot = nil then begin
SetRoot(ANode, -fRootOffset);
exit;
end;
ALine := ANode.LineOffset;
ACount := ANode.MergedLineCount;
AEnd := ALine + ACount - 1;
current := TSynTextFoldAVLNodeData(fRoot);
rStartLine := fRootOffset;
rFoldedBefore := 0;
Nest := nil;
NestFoldedBefore := 0;
NestStartLine := 0;
while (current <> nil) do begin
rStartLine := rStartLine + current.LineOffset;
if ALine < rStartLine then begin
(* *** New block goes to the left *** *)
// remember possible nesting, continue scan for nesting with precessor
if (AEnd >= rStartLine) then begin
Nest := current;
NestFoldedBefore := rFoldedBefore;
NestStartLine := rStartLine;
end;
if current.Left <> nil Then begin
current := current.Left;
continue;
end
else if Nest = nil then begin // insert as Left - no nesting
current.AdjustParentLeftCount(ACount);
current.SetLeftChild(ANode, -rStartLine, ANode.MergedLineCount);
BalanceAfterInsert(ANode);
end
else begin // nest
current := Nest;
rStartLine := NestStartLine;
rFoldedBefore := NestFoldedBefore;
NestCurrentIntoNewBlock;
end;
break;
end;
rFoldedBefore := rFoldedBefore + current.LeftCount;
if ALine = rStartLine then begin
if ANode.FoldIndex > current.FoldIndex then
(* *** New Block will be nested in current *** *)
NestNewBlockIntoCurrent
else
if ANode.FoldIndex < current.FoldIndex then
(* *** current will be nested in New Block *** *)
NestCurrentIntoNewBlock
else begin
debugln(['Droping Foldnode / Already exists. Startline=', rStartLine,' LineCount=',ACount]);
FreeAndNil(ANode);
end;
end
else begin
If ALine <= rStartLine + current.MergedLineCount - 1
(* *** New Block will be nested in current *** *)
then NestNewBlockIntoCurrent
(* *** New block goes to the right *** *)
else begin
rFoldedBefore := rFoldedBefore + current.MergedLineCount;
if current.Right <> nil then begin
current := current.Right;
continue;
end
else if Nest=nil then Begin // insert to the right - no nesting
current.AdjustParentLeftCount(ACount);
current.SetRightChild(ANode, -rStartLine);
BalanceAfterInsert(ANode);
end
else begin // nest
current := Nest;
rStartLine := NestStartLine;
rFoldedBefore := NestFoldedBefore;
NestCurrentIntoNewBlock;
end;
end;
end;
break;
end; // while
Result := rFoldedBefore;
end;
function TSynTextFoldAVLTree.TreeForNestedNode(ANode: TSynTextFoldAVLNodeData; aOffset : Integer) : TSynTextFoldAVLTree;
begin
if fNestedNodesTree = nil then fNestedNodesTree := TSynTextFoldAVLTree.Create;
Result := fNestedNodesTree;
Result.fRoot := ANode.Nested;
Result.fNestParent := ANode; // TODO: this is dangerous, this is never cleaned up, even if ANode is Destroyed
Result.fRootOffset := aOffset;
end;
constructor TSynTextFoldAVLTree.Create;
begin
inherited;
fNestParent := nil;
fNestedNodesTree := nil;
end;
{ TSynEditFoldProvider }
function TSynEditFoldProvider.GetLineCapabilities(ALineIdx: Integer): TSynEditFoldLineCapabilities;
var
c: Integer;
begin
Result := [];
if (FSelection <> nil) and (FSelection.SelAvail) then begin
if (FSelection.FirstLineBytePos.Y < ALineIdx+1) and
(FSelection.LastLineBytePos.Y > ALineIdx+1)
then Result := [cfFoldBody];
if (FSelection.LastLineBytePos.Y = ALineIdx+1) then Result := [cfFoldEnd];
if (FSelection.FirstLineBytePos.Y = ALineIdx+1) then Result := [cfHideStart];
if (FSelection.FirstLineBytePos.Y = ALineIdx+1) and
(FSelection.LastLineBytePos.Y = ALineIdx+1) then Result := [cfHideStart, cfSingleLineHide];
end;
if (FHighlighter = nil) or (ALineIdx < 0) then
exit;
FHighlighter.CurrentLines := FLines;
if FHighlighter.FoldBlockEndLevel(ALineIdx - 1) > 0 then Result := Result + [cfFoldBody];
if FHighlighter.FoldBlockClosingCount(ALineIdx) > 0 then Result := Result + [cfFoldEnd, cfFoldBody];
c := FHighlighter.FoldNodeInfo[ALineIdx].CountEx([]);
if c > 0 then begin
c := FHighlighter.FoldNodeInfo[ALineIdx].CountEx([sfaOpenFold, sfaFoldFold]);
if c > 0 then
include(Result, cfFoldStart);
c := FHighlighter.FoldNodeInfo[ALineIdx].CountEx([sfaOpenFold, sfaFoldHide]);
if c > 0 then
include(Result, cfHideStart);
c := FHighlighter.FoldNodeInfo[ALineIdx].CountEx([sfaOneLineOpen, sfaFoldHide]); // TODO: Include scftFoldEnd ?
// Todo: cfSingleLineHide only, if there is no other hide
if c > 0 then
Result := Result + [cfHideStart, cfSingleLineHide];
end
else
if FHighlighter.FoldBlockOpeningCount(ALineIdx) > 0 then include(Result, cfFoldStart);
end;
function TSynEditFoldProvider.GetLineClassification(ALineIdx: Integer): TFoldNodeClassifications;
begin
Result := [];
if (FSelection <> nil) and FSelection.SelAvail and (FSelection.FirstLineBytePos.Y = ALineIdx+1) then
Result := [fncBlockSelection];
end;
function TSynEditFoldProvider.GetNestedFoldsList: TLazSynEditNestedFoldsList;
begin
if FNestedFoldsList = nil then
FNestedFoldsList := TLazSynEditNestedFoldsList.Create(FLines, FHighlighter);
Result := FNestedFoldsList;
end;
function TSynEditFoldProvider.GetFoldsAvailable: Boolean;
begin
Result := (FHighlighter <> nil) or
((FSelection <> nil) and FSelection.SelAvail);
end;
function TSynEditFoldProvider.GetHighLighterWithLines: TSynCustomFoldHighlighter;
begin
Result := FHighlighter;
if (Result = nil) then
exit;
Result.CurrentLines := FLines;
end;
procedure TSynEditFoldProvider.SetHighLighter(const AValue: TSynCustomFoldHighlighter);
begin
if FHighlighter = AValue then exit;
FHighlighter := AValue;
if FNestedFoldsList <> nil then
FNestedFoldsList.HighLighter := FHighlighter;
end;
procedure TSynEditFoldProvider.SetLines(AValue: TSynEditStrings);
begin
if FLines = AValue then Exit;
FLines := AValue;
FNestedFoldsList.Lines := FLines;
end;
constructor TSynEditFoldProvider.Create(aTextView: TSynEditStrings; AFoldTree : TSynTextFoldAVLTree);
begin
FLines := aTextView;
FFoldTree := AFoldTree;
end;
destructor TSynEditFoldProvider.Destroy;
begin
inherited Destroy;
FreeAndNil(FNestedFoldsList);
end;
function TSynEditFoldProvider.FoldOpenCount(ALineIdx: Integer; AType: Integer = 0): Integer;
begin
if (FHighlighter = nil) or (ALineIdx < 0) then begin
if (AType=0) and (FSelection <> nil) and FSelection.SelAvail and (FSelection.FirstLineBytePos.Y=ALineIdx+1) then exit(1);
exit(0);
end;
// Need to check alll nodes with FoldNodeInfoCount
// Hide-able nodes can open and close on the same line "(* comment *)"
FHighlighter.CurrentLines := FLines;
Result := FHighlighter.FoldNodeInfo[ALineIdx].CountEx([sfaOpenFold, sfaFold], AType);
// fallback for HL without GetFoldNodeInfoCountEx
if Result < 0 then
Result := FHighlighter.FoldBlockOpeningCount(ALineIdx, AType);
if (AType=0) and (FSelection <> nil) and FSelection.SelAvail and (FSelection.FirstLineBytePos.Y=ALineIdx+1) then
inc(Result);
end;
function TSynEditFoldProvider.FoldOpenInfo(ALineIdx, AFoldIdx: Integer;
AType: Integer = 0): TSynFoldNodeInfo;
function BlockSelInfo(NIdx: Integer): TSynFoldNodeInfo;
begin
Result.LineIndex := ALineIdx;
Result.NodeIndex := NIdx;
Result.LogXStart := FSelection.FirstLineBytePos.x;
Result.LogXEnd := FSelection.FirstLineBytePos.x;
Result.FoldLvlStart := 0;
Result.NestLvlStart := 0;
Result.NestLvlEnd := 1;
Result.FoldLvlEnd := 1;
Result.FoldAction := [sfaOpen, sfaOpenFold, sfaFold, sfaFoldHide];
Result.FoldType := nil;
Result.FoldTypeCompatible := nil;
Result.FoldGroup := -1;
end;
begin
Result.FoldAction := [sfaInvalid];
if (FHighlighter = nil) or (ALineIdx < 0) then begin
if (AType=0) and (FSelection <> nil) and FSelection.SelAvail and (FSelection.FirstLineBytePos.Y=ALineIdx+1) then
exit(BlockSelInfo(0));
exit;
end;
FHighlighter.CurrentLines := FLines;
if (AType = 0) and (FSelection <> nil) and FSelection.SelAvail and
(FSelection.FirstLineBytePos.Y=ALineIdx+1) and
(AFoldIdx = FoldOpenCount(ALineIdx, AType)-1)
then
Result := BlockSelInfo(AFoldIdx)
else
Result := FHighlighter.FoldNodeInfo[ALineIdx].NodeInfoEx(AFoldIdx, [sfaOpen, sfaFold], AType);
end;
function TSynEditFoldProvider.FoldLineLength(ALine, AFoldIndex: Integer): integer;
begin
if (FSelection <> nil) and FSelection.SelAvail and (FSelection.FirstLineBytePos.Y=ALine+1) and
(AFoldIndex = FoldOpenCount(ALine, 0)-1)
then
exit(FSelection.LastLineBytePos.y - FSelection.FirstLineBytePos.y);
FHighlighter.CurrentLines := FLines;
Result := FHighlighter.FoldLineLength(ALine, AFoldIndex);
end;
function TSynEditFoldProvider.InfoForFoldAtTextIndex(ALine, AFoldIndex: Integer;
HideLen: Boolean; NeedLen: Boolean = True): TSynEditFoldProviderNodeInfo;
var
nd: TSynFoldNodeInfo;
begin
Result.LineCount := 0;
Result.Column := 0;
Result.ColumnLen := 0;
Result.DefaultCollapsed := False;
Result.Classification := fncInvalid;
if not FoldsAvailable then
exit;
if NeedLen then begin
Result.LineCount := FoldLineLength(ALine, AFoldIndex);
if HideLen then
inc(Result.LineCount);
end
else
Result.LineCount := -1;
nd := FoldOpenInfo(ALine, AFoldIndex, 0);
Result.Column := nd.LogXStart+1;
Result.ColumnLen := nd.LogXEnd - nd.LogXStart;
Result.DefaultCollapsed := (sfaDefaultCollapsed in nd.FoldAction);
Result.FoldTypeCompatible := nd.FoldTypeCompatible;
Result.FoldGroup := nd.FoldGroup;
if Result.FoldGroup = -1 then
Result.Classification := fncBlockSelection
else
Result.Classification := fncHighlighter;
end;
function TSynEditFoldProvider.InfoListForFoldsAtTextIndex(ALine: Integer;
NeedLen: Boolean): TSynEditFoldProviderNodeInfoList;
var
i: Integer;
begin
i := FoldOpenCount(ALine);
SetLength(Result, i);
while i > 0 do begin
dec(i);
Result[i] := InfoForFoldAtTextIndex(ALine, i, False, NeedLen);
end;
end;
{ TSynEditFoldedView }
constructor TSynEditFoldedView.Create(aTextView : TSynEditStrings; ACaret: TSynEditCaret);
begin
fTopLine := 0;
fLinesInWindow := -1;
fLines := aTextView;
fCaret := ACaret;
fCaret.AddChangeHandler(@DoCaretChanged);
fFoldTree := TSynTextFoldAVLTree.Create;
FFoldProvider := TSynEditFoldProvider.Create(aTextView, fFoldTree);
// TODO: if NextLineChanges, update FFoldProvider // DoSynStringsChanged
FDisplayView := TLazSynDisplayFold.Create(Self);
FFoldChangedHandlerList := TFoldChangedHandlerList.Create;
FMarkupInfoFoldedCode := TSynSelectedColor.Create;
FMarkupInfoFoldedCode.Background := clNone;
FMarkupInfoFoldedCode.Foreground := clDkGray;
FMarkupInfoFoldedCode.FrameColor := clDkGray;
FMarkupInfoFoldedCodeLine := TSynSelectedColor.Create;
FMarkupInfoFoldedCodeLine.Background := clNone;
FMarkupInfoFoldedCodeLine.Foreground := clNone;
FMarkupInfoFoldedCodeLine.FrameColor := clNone;
FMarkupInfoHiddenCodeLine := TSynSelectedColor.Create;
FMarkupInfoHiddenCodeLine.Background := clNone;
FMarkupInfoHiddenCodeLine.Foreground := clNone;
FMarkupInfoHiddenCodeLine.FrameColor := clNone;
fLines.AddChangeHandler(senrLineCount, @LineCountChanged);
fLines.AddNotifyHandler(senrCleared, @LinesCleared);
fLines.AddEditHandler(@LineEdited);
end;
destructor TSynEditFoldedView.Destroy;
begin
fLines.RemoveChangeHandler(senrLineCount, @LineCountChanged);
fLines.RemoveNotifyHandler(senrCleared, @LinesCleared);
fLines.RemoveEditHandler(@LineEdited);
fCaret.RemoveChangeHandler(@DoCaretChanged);
FreeAndNil(FDisplayView);
FreeAndNil(FFoldChangedHandlerList);
fFoldTree.Free;
fTextIndexList := nil;
fFoldTypeList := nil;
FMarkupInfoFoldedCode.Free;
FMarkupInfoFoldedCodeLine.Free;
FMarkupInfoHiddenCodeLine.Free;
FreeAndNil(FFoldProvider);
inherited Destroy;
end;
procedure TSynEditFoldedView.LinesInsertedAtTextIndex(AStartIndex, ALineCount, ABytePos: Integer; SkipFixFolding : Boolean);
var top : Integer;
begin
if ALineCount = 0 then exit;
top := TopTextIndex;
fFoldTree.AdjustForLinesInserted(AStartIndex+1, ALineCount, ABytePos);
if AStartIndex < top then
TopTextIndex := top + ALineCount;
if not(SkipFixFolding) then FixFoldingAtTextIndex(AStartIndex, AStartIndex+ALineCount+1)
else
if AStartIndex < top + ALineCount then CalculateMaps;
end;
//procedure TSynEditFoldedView.LinesInsertedAtViewPos(AStartPos, ALineCount : Integer; SkipFixFolding : Boolean);
//begin
// LinesInsertedAtTextIndex(ViewPosToTextIndex(AStartPos), ALineCount, SkipFixFolding);
//end;
procedure TSynEditFoldedView.LinesDeletedAtTextIndex(AStartIndex, ALineCount, ABytePos: Integer; SkipFixFolding : Boolean);
var top : Integer;
begin
top := TopTextIndex;
// topline may get out of sync => synedit is always going to change it back
fFoldTree.AdjustForLinesDeleted(AStartIndex+1, ALineCount, ABytePos);
if not(SkipFixFolding) then
FixFoldingAtTextIndex(AStartIndex, AStartIndex+ALineCount+1)
else
if AStartIndex < top - ALineCount then CalculateMaps;
end;
//procedure TSynEditFoldedView.LinesDeletedAtViewPos(AStartPos, ALineCount : Integer; SkipFixFolding : Boolean);
//begin
// LinesDeletedAtTextIndex(ViewPosToTextIndex(AStartPos), ALineCount, SkipFixFolding);
//end;
function TSynEditFoldedView.TextIndexToViewPos(aTextIndex : Integer) : Integer;
var
n: TSynTextFoldAVLNode;
begin
n := fFoldTree.FindFoldForLine(aTextIndex + 1);
if n.IsInFold then
Result := n.StartLine - 1 - n.FoldedBefore
else
Result := aTextIndex + 1 - n.FoldedBefore;
end;
function TSynEditFoldedView.TextIndexToScreenLine(aTextIndex : Integer) : Integer;
begin
Result := TextIndexToViewPos(aTextIndex) - TopLine;
end;
function TSynEditFoldedView.ViewPosToTextIndex(aViewPos : Integer) : Integer;
begin
result := aViewPos - 1 + fFoldTree.FindFoldForFoldedLine(aViewPos).FoldedBefore;
end;
function TSynEditFoldedView.ScreenLineToTextIndex(aLine : Integer) : Integer;
begin
Result := ViewPosToTextIndex(aLine + TopLine);
end;
function TSynEditFoldedView.TextIndexAddLines(aTextIndex, LineOffset : Integer) : Integer;
var
node : TSynTextFoldAVLNode;
boundary : integer;
begin
node := fFoldTree.FindFoldForLine(aTextIndex+1, True);
result := aTextIndex;
if LineOffset < 0 then begin
boundary := Max(0, ViewPosToTextIndex(1));
if node.IsInFold
then node := node.Prev
else node := fFoldTree.FindLastFold;
while LineOffset < 0 do begin
dec(Result);
if Result <= boundary then exit(boundary);
while node.IsInFold and (Result+1 < node.StartLine + node.MergedLineCount) do begin
Result := Result - node.MergedLineCount;
if Result <= boundary then exit(boundary);
node := node.Prev;
end;
inc(LineOffset);
end;
end else begin
boundary := fLines.Count;
while LineOffset > 0 do begin
if Result >= boundary then exit(boundary);
inc(Result);
while node.IsInFold and (Result+1 >= node.StartLine) do begin
Result := Result + node.MergedLineCount;
if Result >= boundary then exit(boundary);
if Result >= boundary then exit(boundary-node.MergedLineCount-1);
node := node.Next;
end;
dec(LineOffset);
end;
end;
end;
function TSynEditFoldedView.TextPosAddLines(aTextpos, LineOffset : Integer) : Integer;
begin
Result := TextIndexAddLines(aTextpos-1, LineOffset)+1;
end;
procedure TSynEditFoldedView.Lock;
begin
if fLockCount=0 then begin
fNeedFixFrom := -1;
fNeedFixMinEnd := -1;
end;
inc(fLockCount);
end;
procedure TSynEditFoldedView.UnLock;
begin
dec(fLockCount);
if (fLockCount=0) then begin
if (fNeedFixFrom >= 0) then
FixFolding(fNeedFixFrom, fNeedFixMinEnd, fFoldTree);
if fvfNeedCaretCheck in FFlags then
DoCaretChanged(fCaret);
if fvfNeedCalcMaps in FFlags then
CalculateMaps;
end;
end;
(* Count *)
function TSynEditFoldedView.GetCount : integer;
begin
Result := fLines.Count - fFoldTree.FindLastFold.FoldedBefore;
end;
function TSynEditFoldedView.GetDisplayView: TLazSynDisplayView;
begin
Result := FDisplayView;
end;
function TSynEditFoldedView.GetFoldClasifications(index : Integer): TFoldNodeClassifications;
begin
if (index < -1) or (index > fLinesInWindow + 1) then exit([]);
Result := fFoldTypeList[index+1].Classifications;
end;
function TSynEditFoldedView.GetHighLighter: TSynCustomHighlighter;
begin
Result := FFoldProvider.HighLighter;
if assigned(Result) then
Result.CurrentLines := fLines;
end;
(* Topline *)
procedure TSynEditFoldedView.SetTopLine(const ALine : integer);
begin
if fTopLine = ALine then exit;
FInTopLineChanged := True;
fTopLine := ALine;
CalculateMaps;
FInTopLineChanged := False;
end;
function TSynEditFoldedView.GetTopTextIndex : integer;
begin
Result := fTopLine + fFoldTree.FindFoldForFoldedLine(fTopLine).FoldedBefore - 1;
end;
procedure TSynEditFoldedView.SetTopTextIndex(const AIndex : integer);
begin
TopLine := AIndex + 1 - fFoldTree.FindFoldForLine(AIndex+1).FoldedBefore;
end;
(* LinesInWindow*)
procedure TSynEditFoldedView.SetLinesInWindow(const AValue : integer);
begin
if fLinesInWindow = AValue then exit;
fLinesInWindow := AValue;
SetLength(fTextIndexList, AValue + 3);
SetLength(fFoldTypeList, AValue + 3); // start 1 before topline
CalculateMaps;
end;
procedure TSynEditFoldedView.DoFoldChanged(AnIndex: Integer);
begin
if Assigned(fOnFoldChanged) then
fOnFoldChanged(AnIndex);
FFoldChangedHandlerList.CallFoldChangedEvents(AnIndex);
end;
procedure TSynEditFoldedView.DoBlockSelChanged(Sender: TObject);
begin
CalculateMaps;
end;
procedure TSynEditFoldedView.CalculateMaps;
var
i, tpos, cnt : Integer;
node, tmpnode: TSynTextFoldAVLNode;
FirstChanged, LastChanged: Integer;
NewCapability: TSynEditFoldLineCapabilities;
NewClassifications :TFoldNodeClassifications;
begin
if fLinesInWindow < 0 then exit;
if (fLockCount > 0) and
((not FInTopLineChanged) or (fvfNeedCalcMaps in FFlags)) // TODO: Scan now, to avoid invalidate later
then begin
Include(FFlags, fvfNeedCalcMaps);
exit;
end;
Exclude(FFlags, fvfNeedCalcMaps);
node := fFoldTree.FindFoldForFoldedLine(fTopLine, true);
// ftopline is not a folded line
// so node.FoldedBefore(next node after ftopl) does apply
tpos := fTopLine + node.FoldedBefore - 1;
if node.IsInFold then
tmpnode := node.Prev
else
tmpnode := fFoldTree.FindLastFold;
if tmpnode.IsInFold and (tmpnode.StartLine + tmpnode.MergedLineCount = tpos + 1) then begin
node := tmpnode;
tpos := tpos - node.MergedLineCount;
end;
{$IFDEF SynFoldDebug}debugln(['FOLD-- CalculateMaps fTopLine:=', fTopLine, ' tpos=',tpos]);{$ENDIF}
cnt := fLines.Count;
FirstChanged := -1;
LastChanged := -1;
for i := 0 to fLinesInWindow + 2 do begin
if (tpos > cnt) or (tpos < 0) then begin
// Past end of Text
fTextIndexList[i] := -1;
NewCapability := [];
NewClassifications := [];
end else begin
fTextIndexList[i] := tpos - 1; // TextIndex is 0-based
NewCapability := FFoldProvider.LineCapabilities[tpos - 1];
NewClassifications := FFoldProvider.LineClassification[tpos - 1];
if (node.IsInFold) then begin
if (tpos = node.SourceLine) then begin
include(NewCapability, cfCollapsedFold);
include(NewClassifications, node.fData.Classification);
end
else if node.IsHide and (tpos + 1 = node.SourceLine) then begin
include(NewCapability, cfCollapsedHide);
include(NewClassifications, node.fData.Classification);
end;
end;
inc(tpos);
while (node.IsInFold) and (tpos >= node.StartLine) do begin
tpos := tpos + node.MergedLineCount;
node := node.Next;
end;
end;
if (fFoldTypeList[i].Capability <> NewCapability) or
(fFoldTypeList[i].Classifications <> NewClassifications)
then begin
if FirstChanged < 0 then FirstChanged := tpos - 1;
LastChanged := tpos;
end;
fFoldTypeList[i].Capability := NewCapability;
fFoldTypeList[i].Classifications := NewClassifications;
end;
if (not FInTopLineChanged) and assigned(FOnLineInvalidate) and (FirstChanged > 0) then
FOnLineInvalidate(FirstChanged, LastChanged + 1);
end;
(* Lines *)
function TSynEditFoldedView.GetLines(index : Integer) : String;
begin
if (index < -1) or (index > fLinesInWindow + 1) then
exit(fLines[ScreenLineToTextIndex(Index)]);
Result := fLines[fTextIndexList[index+1]];
end;
function TSynEditFoldedView.GetDisplayNumber(index : Integer) : Integer;
begin
if (index < -1) or (index > fLinesInWindow + 1)
or (fTextIndexList[index+1] < 0) then exit(-1);
Result := fTextIndexList[index+1]+1;
end;
function TSynEditFoldedView.GetTextIndex(index : Integer) : Integer;
begin
if (index < -1) or (index > fLinesInWindow + 1) then
exit(ScreenLineToTextIndex(Index));
Result := fTextIndexList[index+1];
end;
function TSynEditFoldedView.GetFoldType(index : Integer) : TSynEditFoldLineCapabilities;
begin
if (index < -1) or (index > fLinesInWindow + 1) then exit([]);
Result := fFoldTypeList[index+1].Capability;
end;
function TSynEditFoldedView.IsFolded(index : integer) : Boolean;
begin
Result := fFoldTree.FindFoldForLine(index+1).IsInFold;
end;
procedure TSynEditFoldedView.SetBlockSelection(const AValue: TSynEditSelection);
begin
if FBlockSelection <> nil then
FBlockSelection.RemoveChangeHandler(@DoBlockSelChanged);
FBlockSelection := AValue;
if FBlockSelection <> nil then
FBlockSelection.AddChangeHandler(@DoBlockSelChanged);
FoldProvider.FSelection := AValue;
end;
procedure TSynEditFoldedView.SetHighLighter(AValue: TSynCustomHighlighter);
begin
if not(AValue is TSynCustomFoldHighlighter) then
AValue := nil;
FFoldProvider.HighLighter := TSynCustomFoldHighlighter(AValue);
UnfoldAll;
end;
(* Folding *)
procedure TSynEditFoldedView.FoldAtLine(AStartLine : Integer;
ColIndex : Integer = -1; ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
begin
FoldAtViewPos(AStartLine + fTopLine, ColIndex, ColCount, Skip, AVisibleLines);
end;
procedure TSynEditFoldedView.FoldAtViewPos(AStartPos : Integer;
ColIndex : Integer = -1; ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
begin
FoldAtTextIndex(AStartPos - 1 + fFoldTree.FindFoldForFoldedLine(AStartPos).FoldedBefore,
ColIndex, ColCount, Skip, AVisibleLines);
end;
function TSynEditFoldedView.FoldNodeAtTextIndex(AStartIndex,
ColIndex: Integer): TSynTextFoldAVLNode;
var
tree: TSynTextFoldAVLTree;
begin
Result := fFoldTree.FindFoldForLine(AStartIndex + 1, True);
tree := fFoldTree;
while (not Result.IsInFold) or (Result.SourceLine <> AStartIndex + 1) do begin
if (not Result.IsInFold) then
Result := tree.FindLastFold;
while Result.IsInFold and (Result.SourceLine > AStartIndex + 1) do
Result := Result.Prev;
if not Result.IsInFold then break;
if Result.IsInFold and (Result.SourceLine < AStartIndex + 1) then begin
if Result.fData.Nested = nil then break;
tree := fFoldTree.TreeForNestedNode(Result.fData, Result.StartLine);
Result := tree.FindFirstFold;
while Result.IsInFold and (Result.SourceLine < AStartIndex + 1) do
Result := Result.Next;
end
else
break;
end;
while Result.IsInFold and (Result.SourceLine = AStartIndex + 1) do begin
if Result.FoldIndex = ColIndex then
exit;
if Result.fData.Nested = nil then break;
Result := fFoldTree.TreeForNestedNode(Result.fData, Result.StartLine).FindFirstFold;
end;
Result.fData := nil;
end;
function TSynEditFoldedView.IsFoldedAtTextIndex(AStartIndex, ColIndex: Integer): Boolean;
begin
Result := FoldNodeAtTextIndex(AStartIndex, ColIndex).IsInFold;
end;
function TSynEditFoldedView.LogicalPosToNodeIndex(AStartIndex: Integer; LogX: Integer;
Previous: Boolean): Integer;
var
hl: TSynCustomFoldHighlighter;
c, i: Integer;
nd: TSynFoldNodeInfo;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit(0);
// AStartIndex is 0-based
// FoldTree is 1-based AND first line remains visble
c := hl.FoldNodeInfo[AStartIndex].CountEx([sfaOpen, sfaFold]);
if c = 0 then
exit(-1);
i := 0;
while i < c do begin
nd := hl.FoldNodeInfo[aStartIndex].NodeInfoEx(i, [sfaOpen, sfaFold]);
if (nd.LogXStart >= LogX) then begin
dec(i);
if not Previous then
i := -1;
break;
end;
if (nd.LogXEnd >= LogX) then
break;
inc(i);
end;
Result := i;
end;
procedure TSynEditFoldedView.CollapseDefaultFolds;
var
i, j, c: Integer;
hl: TSynCustomFoldHighlighter;
fldinf: TSynEditFoldProviderNodeInfo;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit;
i := 0;
while i < fLines.Count do begin
// Todo: Highlighter should return a list of types that can return default folded
// Currently PascalHl Type 2 = Region
c := hl.FoldBlockOpeningCount(i, 2);
if c > 0 then begin
c := hl.FoldNodeInfo[i].CountEx([sfaOpen, sfaFold]);
j := 0;
while j < c do begin
fldinf := FoldProvider.InfoForFoldAtTextIndex(i, j);
if (fldinf.DefaultCollapsed) and (not IsFoldedAtTextIndex(i, j))
then begin
// TODO: detect default hide too
// currently always VisibleLines=1 => since region only folds
fFoldTree.InsertNewFold(i+2, j, fldinf.Column, fldinf.ColumnLen, fldinf.LineCount, 1,
fldinf.Classification, fldinf.FoldTypeCompatible);
DoFoldChanged(i);
end;
inc(j);
end;
end;
inc(i);
end;
CalculateMaps;
end;
function TSynEditFoldedView.GetFoldDescription(AStartIndex, AStartCol, AEndIndex,
AEndCol: Integer; AsText: Boolean = False; Extended: Boolean = False): String;
var
FoldCoders: Array of TSynEditFoldExportCoder;
function FoldCoderForType(AType: Pointer): TSynEditFoldExportCoder;
var
i, j: Integer;
begin
i := 0;
j := length(FoldCoders);
while (i < j) and (FoldCoders[i].FoldType <> AType) do
inc(i);
if (i = j) then begin
SetLength(FoldCoders, i + 1);
FoldCoders[i] := TSynEditFoldExportCoder.Create(AType);
end;
Result := FoldCoders[i];
end;
var
hl: TSynCustomFoldHighlighter;
FoldHelper: TSynEditFoldExportStream;
NodeIterator: TSynTextFoldAVLNodeNestedIterator;
NdiHelper1: TSynFoldNodeInfoHelper;
Node: TSynTextFoldAVLNode;
NdInfo, NdInfo2: TSynFoldNodeInfo;
entry: TFoldExportEntry;
i: Integer;
NodeFoldType: TSynEditFoldType;
begin
Result := '';
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then exit;
if AEndIndex < 0 then AEndIndex := MaxInt;
if AEndCol < 0 then AEndCol := MaxInt;
Node := fFoldTree.FindFoldForLine(AStartIndex + 1, True);
NodeIterator := TSynTextFoldAVLNodeNestedIterator.Create(Node);
FoldHelper := TSynEditFoldExportStream.Create;
NdiHelper1 := TSynFoldNodeInfoHelper.Create(hl);
try
if (AStartCol > 1) then
while Node.IsInFold and (Node.StartLine = AStartIndex + 2) do begin
NdInfo := NdiHelper1.GotoNodeOpenPos(Node);
if (sfaInvalid in NdInfo.FoldAction) or (ndinfo.LogXStart >= AStartCol) then
break;
Node := NodeIterator.Next;
end;
dec(AStartCol);
if not node.IsInFold then
exit;
(* Text stores fold length according to AVLNode
Binary stores line-diff between highlighter open and close line
*)
if AsText then
begin (* *** Encode as Text for XML *** *)
{$IFDEF SynFoldSaveDebug}
DebugLnEnter(['TSynEditFoldedView.GetFoldDescription as Text']);
{$ENDIF}
while Node.IsInFold and (Node.fData.Classification <> fncHighlighter) do
Node := NodeIterator.Next;
if not node.IsInFold then
exit;
NdInfo := NdiHelper1.GotoNodeOpenPos(Node);
while Node.IsInFold and (Node.StartLine-2 <= AEndIndex) do
begin
if (node.StartLine > AStartIndex + 2) then AStartCol := 0;
NodeFoldType := scftFold;
if Node.SourceLineOffset = 0 then
NodeFoldType := scftHide;
if (NdInfo.FoldAction * [sfaInvalid, sfaDefaultCollapsed] = []) then // Currently skip default nodes
FoldCoderForType(NdInfo.FoldType).AddNode
(NdInfo.LogXStart, NdInfo.LineIndex, Node.FullCount, NodeFoldType);
Node := NodeIterator.Next;
while Node.IsInFold and (Node.fData.Classification <> fncHighlighter) do
Node := NodeIterator.Next;
if not Node.IsInFold then
break;
NdInfo := NdiHelper1.Next;
while NdiHelper1.IsValid and (not NdiHelper1.IsAtNodeOpenPos(Node)) do begin
// Add unfolded nodes
if (NdInfo.FoldAction * [sfaInvalid, sfaDefaultCollapsed] = []) then // Currently skip default nodes
FoldCoderForType(NdInfo.FoldType).AddNode
(NdInfo.LogXStart, NdInfo.LineIndex, 0, scftOpen);
NdInfo := NdiHelper1.Next;
end;
end;
for i := 0 to length(FoldCoders) - 1 do begin
FoldCoders[i].Finish;
FoldHelper.AppendMem(FoldCoders[i].Stream.Mem, FoldCoders[i].Stream.Len);
end;
FoldHelper.AddChecksum;
FoldHelper.Compress;
{$IFDEF SynFoldSaveDebug}
DebugLnExit(['TSynEditFoldedView.GetFoldDescription as Text']);
{$ENDIF}
end (* *** END: Encode as Text for XML *** *)
else
begin (* *** Encode as Binary *** *)
while Node.IsInFold and (Node.StartLine-2 <= AEndIndex) do
begin
if (node.StartLine > AStartIndex + 2) then
AStartCol := 0;
NdInfo2 := NdiHelper1.GotoNodeClosePos(Node);
if (sfaInvalid in NdInfo2.FoldAction) or
(NdInfo2.LineIndex > AEndIndex) or
((NdInfo2.LineIndex = AEndIndex) and (ndinfo2.LogXEnd > AEndCol))
then begin
node := NodeIterator.Next;
continue;
end;
NdInfo := NdiHelper1.GotoNodeOpenPos(Node);
with entry do begin
LogX := NdInfo.LogXStart - AStartCol;
LogX2 := NdInfo.LogXEnd - ndinfo.LogXStart + (ndinfo.LogXStart - AStartCol);
Line := NdInfo.LineIndex - AStartIndex;
ELogX := NdInfo2.LogXStart;
ELogX2 := NdInfo2.LogXEnd;
ELine := NdInfo2.LineIndex - AStartIndex;
//if sfaLastLineClose in NdInfo2.FoldAction then
// ELine := -1; // unfinished fold
FType := PtrUInt(NdInfo.FoldType);
LinesFolded := node.FullCount;
end;
FoldHelper.AppendMem(@entry, SizeOf(TFoldExportEntry));
Node := NodeIterator.Next;
end;
end; (* *** END: Encode as Binary *** *)
Result := FoldHelper.Text;
finally
FoldHelper.Free;
for i := 0 to length(FoldCoders) - 1 do
FoldCoders[i].Free;
NodeIterator.Free;
NdiHelper1.Free;
end;
end;
procedure TSynEditFoldedView.ApplyFoldDescription(AStartIndex, AStartCol, AEndIndex,
AEndCol: Integer; FoldDesc: PChar; FoldDescLen: Integer; IsText: Boolean = False);
var
FoldCoders: Array of TSynEditFoldExportCoder;
function FoldCoderForType(AType: Pointer): TSynEditFoldExportCoder;
var
j: Integer;
begin
j := length(FoldCoders) - 1;
while (j >= 0) and (FoldCoders[j] <> nil) and (FoldCoders[j].FoldType <> AType) do
dec(j);
if (j < 0) then
Result := nil
else
Result := FoldCoders[j];
end;
procedure RemoveCoderForType(AType: Pointer);
var
j: Integer;
begin
j := length(FoldCoders) - 1;
while (j >= 0) and (FoldCoders[j] <> nil) and (FoldCoders[j].FoldType <> AType) do
dec(j);
if (j >= 0) then begin
debugln(['FoldState loading removed data for foldtype: ', PtrUInt(AType)]);
FreeAndNil(FoldCoders[j]);
end;
end;
var
hl: TSynCustomFoldHighlighter;
FoldHelper: TSynEditFoldExportStream;
NdiHelper1: TSynFoldNodeInfoHelper;
NdInfo, ndinfo2: TSynFoldNodeInfo;
i: Integer;
Line, FL: Integer;
entry: TFoldExportEntry;
Coder: TSynEditFoldExportCoder;
IsFold, IsHide: Boolean;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit;
if (FoldDesc = nil) or (FoldDescLen = 0) then exit;
NdiHelper1 := TSynFoldNodeInfoHelper.Create(hl);
FoldHelper := TSynEditFoldExportStream.Create;
try
FoldHelper.Mem := FoldDesc;
FoldHelper.Len := FoldDescLen;
if IsText then
begin (* *** Decode from Text for XML *** *)
try
FoldHelper.Decompress;
except
exit;
end;
if not FoldHelper.VerifyChecksum then
exit; //raise ESynEditError.Create('fold checksum error');
i := 0;
while not FoldHelper.EOF do begin
SetLength(FoldCoders, i + 1);
FoldCoders[i] := TSynEditFoldExportCoder.Create(FoldHelper);
if not FoldCoders[i].ReadIsValid then
break;
inc(i);
end;
NdInfo := NdiHelper1.FirstOpen;
while NdiHelper1.IsValid do begin
if (sfaDefaultCollapsed in NdInfo.FoldAction) then begin // Currently skip default nodes
NdInfo := NdiHelper1.Next;
continue;
end;
Coder := FoldCoderForType(NdInfo.FoldType);
if coder <> nil then begin
i := FoldProvider.InfoForFoldAtTextIndex(NdInfo.LineIndex, NdInfo.NodeIndex).LineCount;
case coder.ReadNode(NdInfo.LogXStart, NdInfo.LineIndex, i) of
scftFold: FoldAtTextIndex(NdInfo.LineIndex, NdInfo.NodeIndex);
scftHide: FoldAtTextIndex(NdInfo.LineIndex, NdInfo.NodeIndex, 1, False, 0);
scftInvalid: RemoveCoderForType(NdInfo.FoldType);
end;
end;
NdInfo := NdiHelper1.Next;
end;
end (* *** END: Encode as Text for XML *** *)
else
begin (* *** Decode from Binary *** *)
entry.Line := 0;
if AStartCol > 0 then
dec(AStartCol);
while not FoldHelper.EOF do begin
if not FoldHelper.ReadMem(@entry, sizeof(TFoldExportEntry)) then
break;
if entry.Line > 0 then AStartCol := 0;
Line := AStartIndex + entry.Line;
if Line >= FLines.Count then
continue;
ndinfo :=NdiHelper1.GotoOpenAtChar(Line, entry.LogX);
Fl := FoldProvider.InfoForFoldAtTextIndex(Line, ndinfo.NodeIndex).LineCount;
IsFold := (sfaFoldFold in NdInfo.FoldAction) and (entry.LinesFolded = FL);
IsHide := (sfaFoldHide in NdInfo.FoldAction) and (entry.LinesFolded = FL + 1);
if (sfaInvalid in ndinfo.FoldAction) or
(ndinfo.LogXStart <> entry.LogX + AStartCol) or
(ndinfo.LogXEnd <> entry.LogX2 + AStartCol) or
//(ndinfo.FoldType <> entry.FType) or
(not (IsHide or IsFold))
then
continue;
ndinfo2 := NdiHelper1.FindClose;
if (sfaInvalid in ndinfo2.FoldAction) or
(ndinfo2.LogXStart <> entry.ELogX) or
(ndinfo2.LogXEnd <> entry.ELogX2)
then
continue;
i := 1;
if IsHide then i := 0;;
FoldAtTextIndex(Line, NdInfo.NodeIndex, 1, False, i);
end;
end; (* *** END: Encode as Binary *** *)
finally
for i := 0 to length(FoldCoders) - 1 do
FoldCoders[i].Free;
FreeAndNil(FoldHelper);
FreeAndNil(NdiHelper1);
end;
end;
procedure TSynEditFoldedView.FoldAtTextIndex(AStartIndex : Integer;
ColIndex : Integer = -1; ColCount : Integer = 1; Skip: Boolean = False;
AVisibleLines: Integer = 1);
var
NodeCount, top: Integer;
down: Boolean;
NFolded: TSynTextFoldAVLNode;
IsHide: Boolean;
fldinf: TSynEditFoldProviderNodeInfo;
begin
if not FoldProvider.FoldsAvailable then exit;
top := TopTextIndex;
// AStartIndex is 0-based
// FoldTree is 1-based AND first line remains visble
NodeCount := FoldProvider.FoldOpenCount(AStartIndex);
if ColCount = 0 then
ColCount := NodeCount;
down := ColIndex < 0;
if down then
ColIndex := NodeCount + ColIndex;
IsHide := AVisibleLines = 0;
while ColCount > 0 do begin
if (ColIndex < 0) or (ColIndex >= NodeCount) then break;
NFolded := FoldNodeAtTextIndex(AStartIndex, ColIndex);
// TODO: Check if position can Hide or fold
if skip and ( ( (AVisibleLines=0) and NFolded.IsHide ) or
( (AVisibleLines>0) and NFolded.IsInFold ) )
then begin
if down
then dec(ColIndex)
else inc(ColIndex);
continue;
end;
// TODO: missing check, that hl-node is hideable
fldinf := FoldProvider.InfoForFoldAtTextIndex(AStartIndex, ColIndex, IsHide);
if not NFolded.IsInFold then begin
if fldinf.LineCount > 0 then
fFoldTree.InsertNewFold(AStartIndex+1+AVisibleLines, ColIndex,
fldinf.Column, fldinf.ColumnLen, fldinf.LineCount,
AVisibleLines,
fldinf.Classification, fldinf.FoldTypeCompatible)
end
else begin
if (AVisibleLines=0) and (not NFolded.IsHide) and (fldinf.LineCount > 0) then begin
// upgrade to hide
fFoldTree.RemoveFoldForNodeAtLine(NFolded, -1);
fFoldTree.InsertNewFold(AStartIndex+1, ColIndex,
fldinf.Column, fldinf.ColumnLen, fldinf.LineCount,
AVisibleLines,
fldinf.Classification, fldinf.FoldTypeCompatible);
end;
end;
if down
then dec(ColIndex)
else inc(ColIndex);
dec(ColCount);
end;
fTopLine := -1; // make sure seting TopLineTextIndex, will do CalculateMaps;
TopTextIndex := top;
DoFoldChanged(AStartIndex);
end;
procedure TSynEditFoldedView.UnFoldAtLine(AStartLine : Integer;
ColIndex : Integer = -1; ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
begin
UnFoldAtViewPos(AStartLine + fTopLine, ColIndex, ColCount, Skip, AVisibleLines);
end;
procedure TSynEditFoldedView.UnFoldAtViewPos(AStartPos : Integer;
ColIndex : Integer = -1; ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
begin
UnFoldAtTextIndex(AStartPos - 1 + fFoldTree.FindFoldForFoldedLine(AStartPos).FoldedBefore,
ColIndex, ColCount, Skip, AVisibleLines);
end;
procedure TSynEditFoldedView.UnFoldAtTextIndex(AStartIndex : Integer;
ColIndex : Integer = -1; ColCount : Integer = 0; Skip: Boolean = False;
AVisibleLines: Integer = 1);
var
top, c, r, r2 : Integer;
down: Boolean;
NFolded: TSynTextFoldAVLNode;
begin
top := TopTextIndex;
c := FoldProvider.FoldOpenCount(AStartIndex);
//TODO move to FoldProvider
NFolded := fFoldTree.FindFoldForLine(AStartIndex+1, True);
while NFolded.IsInFold and (NFolded.StartLine = AStartIndex+1) do begin
if NFolded.FoldIndex + 1 > c then c := NFolded.FoldIndex + 1;
NFolded := fFoldTree.TreeForNestedNode(NFolded.fData, NFolded.StartLine).FindFoldForLine(AStartIndex, True);
end;
if c < 1 then begin
// TODO: foldprovider to return all folded nodes, for hte line
ColCount := 0;
end;
r := -1;
if ColCount = 0 then begin
r := fFoldTree.RemoveFoldForLine(AStartIndex+AVisibleLines+1); // r is 1-based num of first (ex-)hidden line
end
else begin
down := ColIndex < 0;
if down then
ColIndex := c + ColIndex ;
while ColCount > 0 do begin
if (ColIndex < 0) or (ColIndex >= c) then break;
NFolded := FoldNodeAtTextIndex(AStartIndex, ColIndex);
if skip and ( ( (AVisibleLines=0) and not NFolded.IsHide ) or
( (AVisibleLines>0) and not NFolded.IsInFold ) )
then begin
if down
then dec(ColIndex)
else inc(ColIndex);
continue;
end;
r2 := fFoldTree.RemoveFoldForLine(AStartIndex+1+AVisibleLines, ColIndex);
if r2 > 0 then dec(r2);
if (r < 0) or (r2 < r) then r := r2;
if down
then dec(ColIndex)
else inc(ColIndex);
dec(ColCount);
end;
end;
fTopLine := -1; // make sure seting TopLineTextIndex, will do CalculateMaps;
TopTextIndex := top;
if (r >= 0) then
DoFoldChanged(Max(0, r - 2));
end;
procedure TSynEditFoldedView.UnFoldAtTextIndexCollapsed(AStartIndex: Integer);
var
top, r: Integer;
begin
top := TopTextIndex;
r := fFoldTree.RemoveFoldForLine(AStartIndex+1) - 1;
fTopLine := -1; // make sure seting TopLineTextIndex, will do CalculateMaps;
TopTextIndex := top;
DoFoldChanged(r);
end;
procedure TSynEditFoldedView.UnfoldAll;
var
top : Integer;
begin
top := TopTextIndex;
fFoldTree.Clear;
fTopLine := -1; // make sure seting TopLineTextIndex, will do CalculateMaps;
TopTextIndex := top;
DoFoldChanged(0);
end;
procedure TSynEditFoldedView.FoldAll(StartLevel : Integer = 0; IgnoreNested : Boolean = False);
var
c, i, top, t: Integer;
hl: TSynCustomFoldHighlighter;
fldinf: TSynEditFoldProviderNodeInfo;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit;
t := 1; // TODO: Highlighter default type; or iterate through all types
top := TopTextIndex;
fFoldTree.Clear;
i := 0;
while i < fLines.Count do begin
if (hl.FoldBlockOpeningCount(i, t) > 0)
and (hl.FoldBlockEndLevel(i, t) > StartLevel) then begin
c := hl.FoldBlockOpeningCount(i) -1;
fldinf := FoldProvider.InfoForFoldAtTextIndex(i, c);
// i is 0-based
// FoldTree is 1-based AND first line remains visble
fFoldTree.InsertNewFold(i+2, c, fldinf.Column, fldinf.ColumnLen, fldinf.LineCount, 1,
fldinf.Classification, fldinf.FoldTypeCompatible); // TODO: hide too? currently VisibleLines=1
if IgnoreNested then
i := i + fldinf.LineCount;
end;
inc(i);
end;
fTopLine := -1;
TopTextIndex := top;
DoFoldChanged(0);
end;
function TSynEditFoldedView.FixFolding(AStart: Integer; AMinEnd: Integer;
aFoldTree: TSynTextFoldAVLTree): Boolean;
var
FirstchangedLine, MaxCol: Integer;
SrcLineForFldInfos: Integer;
FldInfos: TSynEditFoldProviderNodeInfoList;
function DoFixFolding(doStart: Integer; doMinEnd, AtColumn: Integer;
doFoldTree: TSynTextFoldAVLTree; node: TSynTextFoldAVLNode) : Boolean;
Procedure DoRemoveNode(var theNode: TSynTextFoldAVLNode);
var
tmpnode: TSynTextFoldAVLNode;
l: Integer;
begin
Result := True;
tmpnode := theNode.Prev;
l := theNode.SourceLine;
doFoldTree.RemoveFoldForNodeAtLine(theNode, -1); // Don't touch any nested node
if tmpnode.IsInFold then theNode := tmpnode.Next
else theNode := doFoldTree.FindFirstFold;
if (FirstchangedLine < 0) or (l < FirstchangedLine) then
FirstchangedLine := l;
end;
var
FldSrcLine, FldSrcIndex, FLdNodeLine, FldLen, FndLen: Integer;
i, j, CurLen: Integer;
SubTree: TSynTextFoldAVLTree;
begin
{$IFDEF SynFoldDebug}try DebugLnEnter(['>>FOLD-- DoFixFolding: doStart=', doStart, ' AMinEnd=',AMinEnd]);{$ENDIF}
{$IFDEF SynFoldDebug}aFoldTree.Debug;{$ENDIF}
Result := False;
FldSrcLine := doStart;
while node.IsInFold do begin
{$IFDEF SynFoldDebug}debugln(['>>FOLD-- Node StartLine=', node.StartLine, ' FoldColumn=', node.FoldColumn, ' FoldIndex=', node.FoldIndex, ' FullCount=', node.FullCount, ' Classification=', dbgs(node.Classification)]);{$ENDIF}
FldSrcLine := node.SourceLine; // the 1-based cfCollapsed (last visible) Line (or 1st hidden)
FLdNodeLine := node.StartLine; // the 1 based, first hidden line
FldSrcIndex := FldSrcLine - 1;
FldLen := node.FullCount;
if (FldLen <= 0) then begin
{$IFDEF SynFoldDebug}debugln(['>>FOLD-- FixFolding: Remove node with len<0 FldSrcLine=', FldSrcLine]);{$ENDIF}
DoRemoveNode(node);
continue;
end;
//{$IFDEF SynAssertFold}
//With mixed fold/hide => line goes up/down
//SynAssert(FldSrcLine >= SrcLineForFldInfos, 'TSynEditFoldedView.FixFolding: FoldLine went backwards now %d was %d', [FldSrcLine, SrcLineForFldInfos]);
//{$ENDIF}
if (FldSrcLine <> SrcLineForFldInfos) then begin
// Next Line
SrcLineForFldInfos := FldSrcLine;
AtColumn := 0;
// AtColumn is used for nodes, behing the HLs index-range (fncHighlighterEx, fncBlockSelection)
// TODO: At Colum may be wrong for mixed fold/hide
FldInfos := FoldProvider.InfoListForFoldsAtTextIndex(FldSrcIndex, False);
MaxCol := length(FldInfos)-1;
{$IFDEF SynFoldDebug}debugln(['>>FOLD-- Got FldInfos for FldSrcIndex=', FldSrcIndex, ' MaxCol=', MaxCol]);{$ENDIF}
end;
if node.fData.Classification in [fncHighlighter, fncHighlighterEx] then begin
// find node in list
i := -1;
while (i < MaxCol) do begin
inc(i);
if (FldInfos[i].Classification <> fncHighlighter) or
(FldInfos[i].FoldTypeCompatible <> node.fData.FoldTypeCompatible)
then
continue;
FndLen := -1;
j := abs(FldInfos[i].Column - node.FoldColumn);
if (j > 0) and (j < node.FoldColumnLen) then begin
//maybe
FndLen := FoldProvider.FoldLineLength(FldSrcIndex, i);
if node.IsHide then inc(FndLen);
if FndLen <> node.FullCount then Continue;
{$IFDEF SynFoldDebug}debugln('******** FixFolding: Adjusting x pos');{$ENDIF}
//FldInfos[i].Column := node.FoldColumn;
end;
if (FndLen > 0) or (FldInfos[i].Column = node.FoldColumn) then begin
if FndLen < 0 then begin
FndLen := FoldProvider.FoldLineLength(FldSrcIndex, i);
if node.IsHide then inc(FndLen);
end;
if abs(FndLen - node.FullCount) > 1 then continue;
if (node.fData.Classification <> fncHighlighter) or
(node.FoldColumn <> FldInfos[i].Column) or
(node.FoldIndex <> i)
then
Result := true;
{$IFDEF SynFoldDebug}if (node.fData.Classification <> fncHighlighter) then debugln(['>>FOLD-- FixFolding: set Node to fncHighlighter (FOUND) FldSrcLine=', FldSrcLine]);{$ENDIF}
node.fData.Classification := fncHighlighter;
node.FoldColumn := FldInfos[i].Column;
node.fData.FoldIndex := i;
i := -1;
break;
end;
end;
if i = MaxCol then begin
{$IFDEF SynFoldDebug}debugln(['>>FOLD-- FixFolding: set Node to fncHighlighterEx (NOT FOUND) FldSrcLine=', FldSrcLine]);{$ENDIF}
node.fData.Classification := fncHighlighterEx;
node.fData.FoldIndex := MaxCol + AtColumn;
inc(AtColumn);
Result := True;
end;
end
else begin
if node.fData.FoldIndex <> MaxCol + AtColumn then
Result := True;
node.fData.FoldIndex := MaxCol + AtColumn;
inc(AtColumn);
end;
if (node.fData.Nested <> nil) then begin
SubTree := doFoldTree.TreeForNestedNode(node.fData, FLdNodeLine);
CurLen := node.MergedLineCount;
if DoFixFolding(FldSrcLine, FLdNodeLine + CurLen, AtColumn, SubTree, SubTree.FindFirstFold)
then begin
if CurLen > FldLen then begin
node.fData.MergedLineCount:= max(node.FullCount,
doFoldTree.TreeForNestedNode(node.fData, 0).LastFoldedLine + 1);
if CurLen <> node.MergedLineCount then
node.fData.AdjustParentLeftCount(node.MergedLineCount - CurLen);
end;
end;
end;
// the node was ok
if node.StartLine >= doMinEnd then break;
node := node.Next;
end;
{$IFDEF SynFoldDebug}finally DebugLnExit(['<<FOLD-- DoFixFolding: DONE=', Result]); end{$ENDIF}
end;
var
node, tmpnode: TSynTextFoldAVLNode;
begin
{$IFDEF SynFoldDebug}try DebugLnEnter(['>>FOLD-- FixFolding: Start=', AStart, ' AMinEnd=',AMinEnd]);{$ENDIF}
Result := false;
if fLockCount > 0 then begin
Include(FFlags, fvfNeedCaretCheck);
if fNeedFixFrom < 0 then fNeedFixFrom := AStart
else fNeedFixFrom := Min(fNeedFixFrom, AStart);
fNeedFixMinEnd := Max(fNeedFixMinEnd, AMinEnd);
exit;
end;
node := aFoldTree.FindFoldForLine(aStart, true);
if not node.IsInFold then node:= aFoldTree.FindLastFold;
if not node.IsInFold then begin
CalculateMaps;
exit;
end;
If aMinEnd < node.StartLine then aMinEnd := node.StartLine; // XXX SourceLine
// FullCount is allowed to be -1
while node.IsInFold and (node.StartLine + node.FullCount + 1 >= aStart) do begin
tmpnode := node.Prev;
if tmpnode.IsInFold
then node := tmpnode
else break; // first node
end;
FirstchangedLine := -1;
FldInfos := nil;
MaxCol := -1;
SrcLineForFldInfos := -1;
Result := DoFixFolding(-1, AMinEnd, 0, aFoldTree, node);
CalculateMaps;
if (FirstchangedLine >= 0) then
DoFoldChanged(FirstchangedLine);
{$IFDEF SynFoldDebug}finally DebugLnExit(['<<FOLD-- FixFolding: DONE=', Result]); end{$ENDIF}
end;
procedure TSynEditFoldedView.DoCaretChanged(Sender : TObject);
var
i: Integer;
begin
if fLockCount > 0 then begin
Include(FFlags, fvfNeedCaretCheck);
exit;
end;
Exclude(FFlags, fvfNeedCaretCheck);
i := TSynEditCaret(Sender).LinePos-1;
{$IFDEF SynFoldDebug}if FoldedAtTextIndex[i] then debugln(['FOLD-- DoCaretChanged about to unfold at Index=', i]);{$ENDIF}
if FoldedAtTextIndex[i] then
UnFoldAtTextIndexCollapsed(i);
end;
procedure TSynEditFoldedView.LineCountChanged(Sender: TSynEditStrings; AIndex, ACount : Integer);
begin
{$IFDEF SynFoldDebug}try DebugLnEnter(['>> FOLD-- LineCountChanged AIndex=', AIndex, ' Acount=',ACount]);{$ENDIF}
// no need for fix folding => synedit will be called, and scanlines will call fixfolding
{TODO: a "need fix folding" flag => to ensure it will be called if synedit doesnt
SynEdit.ScanRanges, calls Fixfolding as workaroound => review
}
if (fLockCount > 0) and (AIndex < max(fNeedFixFrom, fNeedFixMinEnd)) then begin
// adapt the fixfold range. Could be done smarter, but it doesn't matter if the range gets bigger than needed.
if (ACount < 0) and (AIndex < fNeedFixFrom) then inc(fNeedFixFrom, ACount);
if (ACount > 0) and (AIndex < fNeedFixMinEnd) then inc(fNeedFixMinEnd, ACount);
end;
if fLines.IsInEditAction then exit;
if ACount<0
then LinesDeletedAtTextIndex(AIndex+1, -ACount, 1, true)
else LinesInsertedAtTextIndex(AIndex+1, ACount, 1, true);
{$IFDEF SynFoldDebug}finally DebugLnExit(['<< FOLD-- LineCountChanged']); end;{$ENDIF}
end;
procedure TSynEditFoldedView.LinesCleared(Sender: TObject);
begin
UnfoldAll;
end;
procedure TSynEditFoldedView.LineEdited(Sender: TSynEditStrings; aLinePos, aBytePos, aCount,
aLineBrkCnt: Integer; aText: String);
begin
{$IFDEF SynFoldDebug}try DebugLnEnter(['>> FOLD-- LineEditied aLinePos=', aLinePos, ' aBytePos=', aBytePos, ' Acount=',ACount, ' aLineBrkCnt=',aLineBrkCnt]);{$ENDIF}
if aLineBrkCnt<0
then LinesDeletedAtTextIndex(aLinePos, -aLineBrkCnt, ABytePos, true)
else if aLineBrkCnt > 0
then LinesInsertedAtTextIndex(aLinePos, aLineBrkCnt, ABytePos, true)
else begin
fFoldTree.AdjustColumn(aLinePos, aBytePos, aCount);
//if not(SkipFixFolding) then FixFoldingAtTextIndex(AStartIndex, AStartIndex+ALineCount+1)
//else
//if aLinePos < top + ALineCount then CalculateMaps;
end;
{$IFDEF SynFoldDebug}finally DebugLnExit(['<< FOLD-- LineEditied']); end;{$ENDIF}
end;
procedure TSynEditFoldedView.FixFoldingAtTextIndex(AStartIndex: Integer; AMinEndLine : Integer);
begin
FixFolding(AStartIndex + 1, AMinEndLine, fFoldTree);
end;
function TSynEditFoldedView.OpenFoldCount(aStartIndex: Integer; AType: Integer = 0): Integer;
// Todo: move entirely to FoldProvider
var
hl: TSynCustomFoldHighlighter;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit(-1);
Result := hl.FoldBlockEndLevel(AStartIndex-1, AType) + FoldProvider.FoldOpenCount(AStartIndex);
end;
function TSynEditFoldedView.OpenFoldInfo(aStartIndex, ColIndex: Integer; AType: Integer = 0): TFoldViewNodeInfo;
var
hl: TSynCustomFoldHighlighter;
TypeCnt, Lvl: Integer;
EndLvl, CurLvl: Array of integer;
i, c, t, n, o: Integer;
nd: TSynFoldNodeInfo;
procedure GetEndLvl(l: Integer);
var i: integer;
begin
if AType = 0 then begin;
for i := 1 to TypeCnt do begin
EndLvl[i] := hl.FoldBlockEndLevel(l-1, i);
EndLvl[i] := EndLvl[i] + FoldProvider.FoldOpenCount(l, i);
CurLvl[i] := EndLvl[i];
end;
end
else begin
EndLvl[0] := hl.FoldBlockEndLevel(l-1, AType);
EndLvl[0] := EndLvl[0] + FoldProvider.FoldOpenCount(l, AType);
CurLvl[0] := EndLvl[0];
end;
end;
begin
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit; // ToDo: Initialize Result
nd.LogXStart := 0;
nd.LogXEnd := 0;
nd.FoldAction := [];
nd.FoldType := Nil;
nd.FoldGroup := 0;
n := 0;
if AType <> 0 then
TypeCnt := 1
else
TypeCnt := hl.FoldTypeCount;
Lvl := hl.FoldBlockEndLevel(AStartIndex-1, AType);
if ColIndex >= Lvl then begin
n := ColIndex - Lvl;
if AType = 0 then begin
o := hl.FoldNodeInfo[aStartIndex].CountEx([sfaOpen, sfaFold]);
nd := hl.FoldNodeInfo[aStartIndex].NodeInfoEx(n, [sfaOpen, sfaFold]);
end else begin
// no sfaFold
o := hl.FoldNodeInfo[aStartIndex].CountEx([sfaOpenFold],AType);
nd := hl.FoldNodeInfo[aStartIndex].NodeInfoEx(n, [sfaOpenFold], AType);
end;
end
else begin
SetLength(EndLvl, TypeCnt+1);
SetLength(CurLvl, TypeCnt+1);
GetEndLvl(aStartIndex);
aStartIndex := aStartIndex;
while (ColIndex < Lvl) and (aStartIndex > 0) do begin
dec(aStartIndex);
o := hl.FoldBlockOpeningCount(AStartIndex, AType);
if (o > 0) or (hl.FoldBlockClosingCount(aStartIndex, AType) > 0) then begin
n := o;
c := hl.FoldNodeInfo[aStartIndex].CountEx([], AType) - 1;
for i := c downto 0 do begin
nd := hl.FoldNodeInfo[aStartIndex].NodeInfoEx(i, [], AType);
if (AType = 0) and not(sfaFold in nd.FoldAction) then
continue;
if AType = 0 then
t := nd.FoldGroup
else
t := 0;
if sfaOpenFold in nd.FoldAction then begin
dec(n);
dec(CurLvl[t]);
if CurLvl[t] < EndLvl[t] then begin
dec(EndLvl[t]);
dec(Lvl);
if ColIndex = Lvl then begin
break;
end;
end;
end else
if sfaCloseFold in nd.FoldAction then begin
inc(CurLvl[t]);
end;
end;
end
else
if hl.FoldBlockEndLevel(AStartIndex-1, AType) = 0 then break;
end;
end;
Result.HNode := nd;
Result.OpenCount := o;
Result.Text := fLines[aStartIndex];
if not(sfaInvalid in nd.FoldAction) then
Result.Keyword := copy(Result.Text, 1 + nd.LogXStart, nd.LogXEnd-nd.LogXStart);
Result.LineNum := aStartIndex + 1;
Result.ColIndex := n;
Result.FNode := FoldNodeAtTextIndex(aStartIndex, n);
end;
function TSynEditFoldedView.ExpandedLineForBlockAtLine(ALine : Integer;
HalfExpanded: Boolean = True) : Integer;
var
i, l : Integer;
node: TSynTextFoldAVLNode;
hl: TSynCustomFoldHighlighter;
begin
Result := -1;
hl := TSynCustomFoldHighlighter(HighLighter);
if not assigned(hl) then
exit;
i := ALine;
l := hl.FoldBlockOpeningCount(i - 1);
if l > 0 then begin
node := fFoldTree.FindFoldForLine(ALine, true);
if node.IsInFold and (node.StartLine = ALine +1) then begin
dec(l);
if HalfExpanded then while (l >= 0) do begin
if not IsFoldedAtTextIndex(ALine-1, l) then exit(ALine);
dec(l);
end;
dec(i);
end
else
exit(ALine);
end
else if hl.FoldBlockClosingCount(i - 1) > 0 then
dec(i);
if (i < 0) or (hl.FoldBlockEndLevel(i-1) = 0) then
exit;
l := 0;
while (i > 0) and (l >= 0) do begin // (FoldMinLevel[i] >= l) do
dec(i);
l := l - hl.FoldBlockOpeningCount(i);
if l >= 0 then
l := l + hl.FoldBlockClosingCount(i);
end;
if (hl.FoldBlockEndLevel(i) > 0) then // TODO, check for collapsed at index = 0
Result := i + 1;
end;
procedure TSynEditFoldedView.AddFoldChangedHandler(AHandler: TFoldChangedEvent);
begin
FFoldChangedHandlerList.Add(TMethod(AHandler));
end;
procedure TSynEditFoldedView.RemoveFoldChangedHandler(
AHandler: TFoldChangedEvent);
begin
FFoldChangedHandlerList.Remove(TMethod(AHandler));
end;
function TSynEditFoldedView.GetPhysicalCharWidths(Index: Integer): TPhysicalCharWidths;
begin
Result := fLines.GetPhysicalCharWidths(ScreenLineToTextIndex(Index));
end;
function TSynEditFoldedView.CollapsedLineForFoldAtLine(ALine : Integer) : Integer;
// for hides => line before the hide
var
node, tmpnode: TSynTextFoldAVLNode;
begin
Result := -1;
node := fFoldTree.FindFoldForLine(ALine, false);
if node.IsInFold then begin
tmpnode := node.Prev;
while tmpnode.IsInFold and
(tmpnode.StartLine + tmpnode.MergedLineCount = node.StartLine)
do begin
node := tmpnode;
tmpnode := node.Prev;
end;
Result := node.StartLine-1;
// Can be 0, if lines are hiden at begin of file
end;
end;
function dbgs(AClassification: TFoldNodeClassification): String;
begin
WriteStr(Result{%H-}, AClassification);
end;
{$IFDEF SynDebug}
procedure TSynEditFoldedView.debug;
begin
fFoldTree.debug;
end;
{$ENDIF}
initialization
InitNumEncodeValues;
//SYN_FOLD_DEBUG := DebugLogger.RegisterLogGroup('SynFoldDebug' {$IFDEF SynFoldDebug} , True {$ENDIF} );
end.
|