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
|
------------------------------------------------------------------------------
-- --
-- GNATPP COMPONENTS --
-- --
-- Pp --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2017, AdaCore --
-- --
-- GNATPP is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or ( at your option) any later --
-- version. GNATCHECK is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General --
-- Public License for more details. You should have received a copy of the --
-- GNU General Public License distributed with GNAT; see file COPYING3. If --
-- not, go to http://www.gnu.org/licenses for a complete copy of the --
-- license. --
-- --
-- GNATPP is maintained by AdaCore (http://www.adacore.com) --
-- --
------------------------------------------------------------------------------
pragma Ada_2012;
with Ada.Strings.Unbounded;
with Ada.Wide_Text_IO;
with System.WCh_Con;
use type System.WCh_Con.WC_Encoding_Method;
with Snames;
with Types;
use type Types.Int;
with GNATCOLL.Paragraph_Filling;
with Text_IO;
with Pp.Formatting.Tree_Formatting;
-- pragma Warnings (On); -- ????
package body Pp.Formatting is
subtype Name_Id is Namet.Name_Id;
use type Name_Id;
function Name_Find (S : String) return Name_Id renames Namet.Name_Find;
function Get_Name_String (Id : Name_Id) return String
renames Namet.Get_Name_String;
pragma Style_Checks ("M85");
package body Generic_Lines_Data is
procedure Assert_No_Trailing_Blanks (S : W_Str);
-- Assert that there are no lines with trailing blanks in S.
procedure Insert_Comment_Text
(Lines_Data : in out Lines_Data_Rec;
Options : Formatting_Options;
Comment_Tok : Scanner.Token);
-- Insert the text of the comment into Out_Buf, including the initial
-- "--" and leading blanks.
procedure Append_Temp_Line_Break (Lines_Data : in out Lines_Data_Rec);
----------------
procedure Collect_Enabled_Line_Breaks
(Lines_Data : in out Lines_Data_Rec; Syntax_Also : Boolean)
is
All_Line_Breaks : Line_Break_Vector renames Lines_Data.All_Line_Breaks;
Enabled_Line_Breaks : Line_Break_Vector
renames Lines_Data.Enabled_Line_Breaks;
Syntax_Line_Breaks : Line_Break_Vector
renames Lines_Data.Syntax_Line_Breaks;
begin
Clear (Enabled_Line_Breaks);
Clear (Syntax_Line_Breaks);
-- We always include the last one, even though it has Length = 0
for J in 1 .. Last_Index (All_Line_Breaks) loop
if All_Line_Breaks (J).Enabled then
Append (Enabled_Line_Breaks, All_Line_Breaks (J));
if Syntax_Also and then All_Line_Breaks (J).Hard then
if All_Line_Breaks (J).Length /= 0
or else J = Last_Index (All_Line_Breaks)
then
Append (Syntax_Line_Breaks, All_Line_Breaks (J));
end if;
end if;
end if;
end loop;
end Collect_Enabled_Line_Breaks;
function Next_Enabled
(Line_Breaks : Line_Break_Vector; F : Line_Break_Index)
return Line_Break_Index
is
First : constant Line_Break := Line_Breaks (F);
pragma Assert (First.Enabled);
Result : Line_Break_Index := F + 1;
Last : Line_Break := Line_Breaks (Result);
begin
while not Last.Enabled loop
Result := Result + 1;
Last := Line_Breaks (Result);
end loop;
--??? pragma Assert (First.Level = Last.Level);
return Result;
end Next_Enabled;
function Is_Empty_Line
(Out_Buf : Buffer;
Line_Breaks : Line_Break_Vector;
F, L : Line_Break_Index) return Boolean
is
First : constant Line_Break := Line_Breaks (F);
Last : constant Line_Break := Line_Breaks (L);
FP : Positive := Position (Out_Buf, First.Mark);
LP : constant Positive := Position (Out_Buf, Last.Mark);
procedure Assert (Result : Boolean);
procedure Assert (Result : Boolean) is
S : constant W_Str := Slice (Out_Buf, FP, LP - 1);
begin
if Result then
pragma Assert (S = "");
else
pragma Assert (S /= "");
pragma Assert (S /= " ");
if True then -- slow
pragma Assert (for some C of S => C /= ' ');
end if;
end if;
end Assert;
begin
-- Take into account the fact that a hard line break occupies one
-- character (the NL), whereas a soft line break does not, and the fact
-- that a soft line break can be preceded or followed by a single blank
-- (but not both).
if First.Hard then
FP := FP + 1;
end if;
if FP < LP and then Char_At (Out_Buf, FP) = ' ' then
FP := FP + 1;
end if;
pragma Assert (FP <= LP);
return Result : constant Boolean := FP = LP do
pragma Debug (Assert (Result));
end return;
end Is_Empty_Line;
----------------
procedure Raise_Token_Mismatch
(Message : String;
Lines_Data : Lines_Data_Rec;
Src_Buf : Buffer;
Src_Index, Out_Index : Scanner.Token_Index;
Src_Tok, Out_Tok : Scanner.Token);
-- Called when either Insert_Comments_And_Blank_Lines or Final_Check finds
-- a mismatch. Prints debugging information and raises Token_Mismatch.
procedure Final_Check_Helper
(Lines_Data : in out Lines_Data_Rec;
Src_Buf : in out Buffer;
Options : Formatting_Options);
procedure Final_Check
(Lines_Data : in out Lines_Data_Rec;
Src_Buf : in out Buffer;
Options : Formatting_Options);
-- Final pass: check that we have not damaged the input source text.
-- Parameters and Out_Buf are as for Insert_Comments_And_Blank_Lines,
-- except that comments are now included in Out_[Tokens|Buf], and this
-- checks that they match the ones in Src_Tokens. Final_Check simply
-- calls Final_Check_Helper, plus asserts that Out_Buf wasn't modified.
-- The code in Final_Check[_Helper] is parallel to the code in
-- Insert_Comments_And_Blank_Lines, so there's a bit of code duplication.
-- It is worth it to keep Final_Check[_Helper] as simple as possible. If
-- you make changes to one, consider making similar changes to the other.
procedure Assert_No_Trailing_Blanks (S : W_Str) is
begin
pragma Assert (S'First = 1);
for X in 2 .. S'Last loop
pragma Assert (if S (X) /= ' ' then not Is_Space (S (X)));
if S (X) = NL then
pragma Assert (S (X - 1) /= ' ');
end if;
end loop;
pragma Assert (S (S'Last) = NL);
end Assert_No_Trailing_Blanks;
procedure Append_Temp_Line_Break (Lines_Data : in out Lines_Data_Rec) is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Cur_Indentation : Natural renames Lines_Data.Cur_Indentation;
Next_Line_Break_Unique_Id : Modular
renames Lines_Data.Next_Line_Break_Unique_Id;
All_Line_Breaks : Line_Break_Vector renames Lines_Data.All_Line_Breaks;
Temp_Line_Breaks : Line_Break_Vector renames Lines_Data.Temp_Line_Breaks;
M : Marker;
begin
pragma Assert (Lookback (Out_Buf) /= ' '); -- no trailing blanks
Insert_NL (Out_Buf);
M := Mark_Previous (Out_Buf, Name => '-');
if False then -- Too slow, but we keep it for documentation
for L of All_Line_Breaks loop
pragma Assert (M /= L.Mark);
end loop;
end if;
Append
(Temp_Line_Breaks,
Line_Break'
(Mark => M,
Hard => True,
Affects_Comments => False,
Enabled => True,
Level => 0,
Indentation => Cur_Indentation,
Length => <>,
-- Kind => Not_An_Element,
Template => Name_Find ("Insert_Comments_And_Blank_Lines"),
UID => Next_Line_Break_Unique_Id));
Next_Line_Break_Unique_Id := Next_Line_Break_Unique_Id + 1;
pragma Assert (Char_At (Out_Buf, M) = NL);
end Append_Temp_Line_Break;
procedure Insert_Comment_Text
(Lines_Data : in out Lines_Data_Rec;
Options : Formatting_Options;
Comment_Tok : Scanner.Token)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Cur_Indentation : Natural renames Lines_Data.Cur_Indentation;
use Scanner;
function Filled_Text
(Comment_Tok : Token;
Leading_Blanks : Natural)
return W_Str;
-- Returns the text of the comment after filling (see
-- GNATCOLL.Paragraph_Filling).
function Filled_Text
(Comment_Tok : Token;
Leading_Blanks : Natural)
return W_Str
is
use GNATCOLL.Paragraph_Filling, Ada.Strings.Unbounded;
S1 : constant String := Namet.Get_Name_String (Comment_Tok.Text);
S2 : constant String :=
To_String
(Pretty_Fill
(S1,
Max_Line_Length =>
Options.Max_Line_Length -
(Cur_Indentation + String'("--")'Length + Leading_Blanks)));
pragma Debug (Assert_No_Trailing_Blanks (From_UTF8 (S2)));
begin
return From_UTF8 (S2);
end Filled_Text;
-- GNAT_Comment_Start causes the comment to start with at least 2
-- blanks.
Leading_Blanks : constant Natural :=
(if
Options.GNAT_Comment_Start and Comment_Tok.Is_Fillable_Comment
then
Natural'Max (Comment_Tok.Leading_Blanks, 2)
else Comment_Tok.Leading_Blanks);
-- In Comments_Only mode, we need to indent "by hand" here. In normal
-- mode, Cur_Indentation will be heeded by the line breaks.
Indentation : constant W_Str :=
(if Options.Comments_Only
then (1 .. Cur_Indentation => ' ')
else "");
Prelude : constant W_Str :=
Indentation & "--" & (1 .. Leading_Blanks => ' ');
Do_Filling : constant Boolean :=
Comment_Filling_Enabled (Options)
and then Comment_Tok.Is_Fillable_Comment;
Text : constant W_Str :=
(if Do_Filling then Filled_Text (Comment_Tok, Leading_Blanks)
else Get_Name_String (Comment_Tok.Text));
-- Start of processing for Insert_Comment_Text
begin
Insert (Out_Buf, Prelude);
pragma Assert (Text (Text'Last) = NL);
for X in Text'First .. Text'Last - 1 loop -- skip last NL
if Text (X) = NL then
Append_Temp_Line_Break (Lines_Data);
Insert (Out_Buf, Prelude);
else
Insert (Out_Buf, Text (X));
end if;
end loop;
end Insert_Comment_Text;
procedure Do_Comments_Only
(Lines_Data : in out Lines_Data_Rec;
Src_Buf : in out Buffer;
Options : Formatting_Options)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Cur_Indentation : Natural renames Lines_Data.Cur_Indentation;
Pp_Off_On_Delimiters : Scanner.Pp_Off_On_Delimiters_Rec
renames Lines_Data.Pp_Off_On_Delimiters;
use Scanner;
Src_Toks : Token_Vector;
Cur_Token_Index : Token_Index := 2; -- skip sentinel
function Cur_Tok return Token is (Src_Toks (Cur_Token_Index));
procedure Assert;
-- If Comments_Only is True, but Comment_Filling_Enabled and
-- GNAT_Comment_Start are both False, then the input and output should
-- be identical. So assert.
procedure Assert is
begin
if Comment_Filling_Enabled (Options)
or else Options.GNAT_Comment_Start
then
return;
end if;
-- Slice removes the extra leading NL
if Slice (Out_Buf, 2, Last_Position (Out_Buf)) /=
To_W_Str (Src_Buf)
then
ASIS_UL.Dbg_Out.Output_Enabled := True;
Text_IO.Put_Line ("Src_Buf:");
Dump_Buf (Src_Buf);
Text_IO.Put_Line ("Out_Buf:");
Dump_Buf (Out_Buf);
pragma Assert (False);
end if;
end Assert;
-- Start of processing for Do_Comments_Only
begin
Get_Tokens (Src_Buf, Src_Toks, Pp_Off_On_Delimiters,
Ignore_Single_Line_Breaks => False);
Insert_NL (Out_Buf);
while Cur_Tok.Kind /= End_Of_Input loop
if Cur_Tok.Kind in Comment_Kind then
-- Set Cur_Indentation to the number of spaces to be inserted
-- before "--". For whole-line comments, that's one less than the
-- starting column. For end-of-line comments, it's the number of
-- blanks between the last character of the previous token to the
-- first character of this (comment) token.
case Comment_Kind'(Cur_Tok.Kind) is
when Whole_Line_Comment =>
Cur_Indentation := Cur_Tok.Sloc.Col - 1;
when End_Of_Line_Comment =>
Cur_Indentation :=
Cur_Tok.Sloc.First -
Src_Toks (Cur_Token_Index - 1).Sloc.Last -
1;
when others => null;
end case;
Insert_Comment_Text (Lines_Data, Options, Cur_Tok);
Cur_Indentation := 0;
end if;
loop
if Cur_Tok.Kind not in Comment_Kind then
Insert_Any (Out_Buf, Cur (Src_Buf));
end if;
Move_Forward (Src_Buf);
exit when At_Point (Src_Buf, Cur_Tok.Sloc.Lastx);
end loop;
Cur_Token_Index := Cur_Token_Index + 1;
end loop;
pragma Assert (At_End (Src_Buf));
Reset (Src_Buf);
Reset (Out_Buf);
pragma Debug (Assert);
Final_Check (Lines_Data, Src_Buf, Options);
end Do_Comments_Only;
procedure Post_Tree_Phases
(Lines_Data : in out Lines_Data_Rec;
Source_File_Name : String;
Src_Buf : in out Buffer;
Options : Formatting_Options)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Cur_Indentation : Natural renames Lines_Data.Cur_Indentation;
All_Line_Breaks : Line_Break_Vector renames Lines_Data.All_Line_Breaks;
Temp_Line_Breaks : Line_Break_Vector renames Lines_Data.Temp_Line_Breaks;
Enabled_Line_Breaks : Line_Break_Vector
renames Lines_Data.Enabled_Line_Breaks;
Syntax_Line_Breaks : Line_Break_Vector
renames Lines_Data.Syntax_Line_Breaks;
Tabs : Tab_Vector renames Lines_Data.Tabs;
Src_Tokens : Scanner.Token_Vector renames Lines_Data.Src_Tokens;
Out_Tokens : Scanner.Token_Vector renames Lines_Data.Out_Tokens;
Out_Buf_Line_Ends : Marker_Vector renames Lines_Data.Out_Buf_Line_Ends;
Pp_Off_On_Delimiters : Scanner.Pp_Off_On_Delimiters_Rec
renames Lines_Data.Pp_Off_On_Delimiters;
Inner_Loop_Count : Natural := 0;
pragma Warnings (Off); -- ????
-- Miscellaneous useful Name_Ids (???duplicate):
-- These need to be duplicated, because they need to be initialized
-- late (not during library-level elaboration), because Tree_Read
-- destroys the name table. Better to use LAL_UL.Symbols.
Name_Empty : constant Name_Id := Name_Find ("");
Name_Semicolon : constant Name_Id := Name_Find (";");
Name_L_Paren : constant Name_Id := Name_Find ("(");
Name_R_Paren : constant Name_Id := Name_Find (")");
Name_Colon : constant Name_Id := Name_Find (":");
Name_Assign : constant Name_Id := Name_Find (":=");
Name_Bang : constant Name_Id := Name_Find ("!");
Name_Bar : constant Name_Id := Name_Find ("|");
Name_Arrow : constant Name_Id := Name_Find ("=>");
Name_Dot : constant Name_Id := Name_Find (".");
Name_And_Then : constant Name_Id := Name_Find ("and then");
Name_Or_Else : constant Name_Id := Name_Find ("or else");
Name_Q_And : constant Name_Id := Name_Find ("""and""");
Name_Q_Or : constant Name_Id := Name_Find ("""or""");
Name_Q_Xor : constant Name_Id := Name_Find ("""xor""");
Name_Q_Mod : constant Name_Id := Name_Find ("""mod""");
Name_Q_Rem : constant Name_Id := Name_Find ("""rem""");
Name_Q_Abs : constant Name_Id := Name_Find ("""abs""");
Name_Q_Not : constant Name_Id := Name_Find ("""not""");
Name_Depends : constant Name_Id := Name_Find ("Depends");
Name_Tab_Insertion_Point : constant Name_Id :=
Name_Find ("tab insertion point");
Name_Tab_In_Out : constant Name_Id := Name_Find ("tab in out");
Name_Dot_Dot : constant Name_Id := Name_Find ("..");
Name_R_Sq : constant Name_Id := Name_Find ("]");
Op_Sym_Table : constant array (Positive range <>) of Name_Id :=
(Name_Q_And,
Name_Q_Or,
Name_Q_Xor,
Name_Q_Mod,
Name_Q_Rem,
Name_Q_Abs,
Name_Q_Not);
function Is_Op_Sym_With_Letters
(N : Name_Id)
return Boolean is
(for some Op of Op_Sym_Table => N = Op);
-- True if N looks like a string literal that can be used as an operator
-- symbol containing letters, so case might matter. N should be in all
-- lower case.
pragma Warnings (On);
procedure Split_Lines (First_Time : Boolean);
-- Enable soft line breaks as necessary to prevent too-long lines.
-- First_Time is for debugging.
procedure Split_Lines (First_Time : Boolean) is
Line_Breaks : Line_Break_Vector renames All_Line_Breaks;
procedure Remove_Duplicates;
-- Remove soft line breaks that have the same Mark as other line
-- break(s). This is necessary because we don't want line breaks to
-- form blank lines.
function Line_Length (F, L : Line_Break_Index) return Natural;
-- F and L are the first and last index forming a line; returns the
-- length of the line, not counting new-lines. F and L must be enabled.
function Worthwhile_Line_Break (X : Line_Break_Index) return Boolean;
-- Called for the first so-far-disabled line break on a line. Returning
-- False means don't bother enabling it.
procedure Assert;
-- Assert that the line Length has been set if and only if the line
-- break is enabled.
procedure Assert is
begin
for X in 1 .. Last_Index (Line_Breaks) loop
declare
Break : constant Line_Break := Line_Breaks (X);
begin
if X = Last_Index (Line_Breaks) then
pragma Assert (Break.Enabled and then Break.Length = 0);
elsif Break.Enabled then
pragma Assert
(Break.Length =
Line_Length (X, Next_Enabled (All_Line_Breaks, X)));
pragma Assert
(Break.Mark /=
Line_Breaks (Next_Enabled (All_Line_Breaks, X)).Mark);
else
pragma Assert (Break.Length = Natural'Last);
end if;
end;
end loop;
Assert_No_Trailing_Blanks (To_W_Str (Out_Buf));
pragma Assert
(Position (Out_Buf, All_Line_Breaks (Last (All_Line_Breaks)).Mark) =
Last_Position (Out_Buf));
end Assert;
function Line_Length (F, L : Line_Break_Index) return Natural is
First : constant Line_Break := Line_Breaks (F);
Last : constant Line_Break := Line_Breaks (L);
F_Pos : constant Natural := Position (Out_Buf, First.Mark);
L_Pos : constant Natural := Position (Out_Buf, Last.Mark);
NL_Count : constant Natural := (if First.Hard then 1 else 0);
Leading_Blank : constant Natural :=
(if L_Pos > F_Pos + 1 and then Char_At (Out_Buf, F_Pos) = ' ' then 1
else 0);
Trailing_Blank : constant Natural :=
(if
L_Pos > F_Pos + 2 and then Char_At (Out_Buf, L_Pos - 1) = ' '
then
1
else 0);
Without_Indent : constant Natural :=
Position (Out_Buf, Last.Mark) -
Position (Out_Buf, First.Mark) -
NL_Count -
Leading_Blank -
Trailing_Blank;
-- The length without the indentation is just the difference between the
-- two marks, except that if the first one is hard, we don't count the
-- NL character. If it's soft, there is no NL character yet. Also, if
-- the first or last character is ' ', it doesn't count.
begin
-- If the line is blank, we ignore the indentation; we won't be
-- putting blanks in the output. Otherwise, the length is the
-- indentation plus the length without the indentation as
-- calculated above.
if Without_Indent = 0 then
return 0;
else
return First.Indentation + Without_Indent;
end if;
end Line_Length;
procedure Remove_Duplicates is
Temp : Line_Break_Vector;
-- ???If we have duplicates with different Indentation, should we choose
-- the least indented? If we remove a line break for a '[', should we
-- remove the corresponding one for ']', and vice-versa?
begin
Append (Temp, Line_Breaks (1));
for X in 2 .. Last_Index (Line_Breaks) loop
if Line_Breaks (X).Enabled
or else not Is_Empty_Line (Out_Buf, Line_Breaks, X - 1, X)
then
Append (Temp, Line_Breaks (X));
else
pragma Assert (not Line_Breaks (X).Hard);
end if;
end loop;
Move (Target => Line_Breaks, Source => Temp);
end Remove_Duplicates;
function Worthwhile_Line_Break (X : Line_Break_Index) return Boolean is
This : constant Positive := Position (Out_Buf, Line_Breaks (X).Mark);
Prev : Positive := Position (Out_Buf, Line_Breaks (X - 1).Mark);
More : constant Boolean := -- more to be enabled to the right
X < Last_Index (Line_Breaks)
and then not Line_Breaks (X + 1).Enabled;
Threshold : constant Positive :=
(if True then Options.PP_Cont_Line_Indentation -- ????
else Positive'Max (Options.PP_Cont_Line_Indentation - 1,
(if More then 6 -- arbitrary
else 1)));
begin
if Line_Breaks (X - 1).Hard then
Prev := Prev + 1; -- skip NL
end if;
-- If we have something like:
-- P (...
-- there's no point in turning it into:
-- P
-- (...
-- assuming PP_Cont_Line_Indentation = 2, because it doesn't shorten
-- any lines. If the procedure name is slightly longer than "P":
-- Proc (...
-- there's _probably_ no point in turning it into:
-- Proc
-- (...
-- because it only saves 3 characters, so we will probably have
-- to split up the "..." parameters anyway.
if This - Prev <= Threshold then
return False;
end if;
return True;
end Worthwhile_Line_Break;
F : Line_Break_Index := 1;
L : Line_Break_Index;
Len : Natural;
Level : Nesting_Level;
More_Levels : Boolean;
Again : constant String :=
(if First_Time then "first time" else " again");
-- Start of processing for Split_Lines
begin
pragma Debug
(Format_Debug_Output
(Lines_Data, "before Split_Lines " & Again));
Remove_Duplicates;
if False then
-- ???For debugging, always split at optional newlines
for Line_Index in 1 .. Last_Index (Line_Breaks) loop
Line_Breaks (Line_Index).Enabled := True;
end loop;
return;
end if;
while F /= Last_Index (Line_Breaks) loop
Level := 0;
More_Levels := True;
loop -- through levels
L := Next_Enabled (All_Line_Breaks, F);
Len := Line_Length (F, L);
exit when Len <= Options.Max_Line_Length; -- short enough
exit when not More_Levels; -- no more line breaks to enable
More_Levels := False;
for X in F + 1 .. L - 1 loop
if Line_Breaks (X).Level > Level then
More_Levels := True;
elsif Line_Breaks (X).Level = Level then
Inner_Loop_Count := Inner_Loop_Count + 1;
-- Don't enable the first one, unless it's "worthwhile"
-- according to the heuristic.
if X = F + 1 and then not Worthwhile_Line_Break (X) then
null;
-- We don't want soft line breaks to form blank lines, so
-- don't enable this one if the previous one is already
-- enabled.
else
pragma Assert
(not Line_Breaks (X - 1).Enabled
or else
not Is_Empty_Line (Out_Buf, Line_Breaks, X - 1, X));
pragma Assert
(if
Line_Breaks (X - 1).Enabled
then
Line_Breaks (X - 1).Mark /= Line_Breaks (X).Mark);
if True -- ????
or else L = Last_Index (Line_Breaks)
or else
Line_Length (F, L + 1) >= Options.Max_Line_Length
then
Line_Breaks (X).Enabled := True;
end if;
end if;
end if;
end loop;
Level := Level + 1;
end loop; -- through levels
Line_Breaks (F).Length := Len;
F := L;
end loop; -- through line breaks
Line_Breaks (F).Length := 0; -- last line
pragma Debug
(Format_Debug_Output
(Lines_Data, "after Split_Lines" & Again));
pragma Debug (Assert);
end Split_Lines;
procedure Insert_NLs_And_Indentation;
procedure Insert_NLs_And_Indentation is
-- We loop through Out_Buf, and for each character, take care of
-- the Line_Break at that character, if any. The Line_Breaks are in
-- Enabled_Line_Breaks. Enabled_Line_Breaks cannot have duplicates (two
-- elements at the same Mark), because hard line breaks take up space in
-- Out_Buf (there is an NL), and we never enable two soft line breaks in
-- a row.
At_Line_Start : Boolean := True;
Indentation : Natural := 0;
Cur_Line : Line_Break_Index := 1;
Line_Breaks : Line_Break_Vector renames Enabled_Line_Breaks;
begin
Collect_Enabled_Line_Breaks (Lines_Data, Syntax_Also => False);
Char_Loop : loop
pragma Assert
(Position (Out_Buf, Last_Element (Tabs).Mark) =
Last_Position (Out_Buf) + 1);
pragma Assert
(Point (Out_Buf) <=
Position (Out_Buf, Line_Breaks (Cur_Line).Mark));
-- if At_Point (Out_Buf, Line_Breaks (Cur_Line).Mark) then
-- Dbg_Out.Put ("\n");
-- end if;
-- Even though Enabled_Line_Breaks cannot have duplicates, we still
-- need 'while' (not 'if'), because in one case we Move_Forward
-- below.
while At_Point (Out_Buf, Line_Breaks (Cur_Line).Mark) loop
pragma Assert
(Point (Out_Buf) =
Position (Out_Buf, Line_Breaks (Cur_Line).Mark));
-- Dbg_Out.Put ("Point = \1, break = ", Image (Point (Out_Buf)));
-- Dump_Marker (Out_Buf, Line_Breaks (Cur_Line).Mark);
At_Line_Start := True;
-- A hard line break already has NL; for a soft one, we need to
-- add NL
if Line_Breaks (Cur_Line).Hard then
-- Dbg_Out.Put
-- ("\1: hard line break\n",
-- Image (Integer (Cur_Line)));
pragma Assert (Cur (Out_Buf) = NL);
Move_Forward (Out_Buf);
else
-- A soft line break can be preceded or followed by a blank,
-- but never both, and never more than one. If there is a
-- blank, we replace it with NL, otherwise we insert NL.
if Lookback (Out_Buf) = ' ' then
-- Dbg_Out.Put
-- ("\1: soft line break Replace_Previous\n",
-- Image (Integer (Cur_Line)));
pragma Assert (Cur (Out_Buf) /= ' ');
Replace_Previous (Out_Buf, NL);
pragma Assert
(not At_Point (Out_Buf, Line_Breaks (Cur_Line + 1).Mark));
elsif Cur (Out_Buf) = ' ' then
-- Dbg_Out.Put
-- ("\1: soft line break Replace_Cur\n",
-- Image (Integer (Cur_Line)));
Replace_Cur (Out_Buf, NL);
pragma Assert
(not At_Point (Out_Buf, Line_Breaks (Cur_Line + 1).Mark));
Move_Forward (Out_Buf);
else
-- Dbg_Out.Put
-- ("\1: soft line break insert\n",
-- Image (Integer (Cur_Line)));
Insert_NL (Out_Buf);
pragma Assert
(not At_Point (Out_Buf, Line_Breaks (Cur_Line + 1).Mark));
end if;
end if;
Indentation := Line_Breaks (Cur_Line).Indentation;
pragma Assert
(At_End (Out_Buf) = (Cur_Line = Last_Index (Line_Breaks)));
exit Char_Loop when Cur_Line = Last_Index (Line_Breaks);
Cur_Line := Cur_Line + 1;
-- Dbg_Out.Put
-- (" point = \1, next break = ",
-- Image (Point (Out_Buf)));
-- Dump_Marker (Out_Buf, Line_Breaks (Cur_Line).Mark);
-- Dbg_Out.Put ("\n");
pragma Assert
(Point (Out_Buf) <=
Position (Out_Buf, Line_Breaks (Cur_Line).Mark));
end loop; -- through Line_Breaks table
-- We can't be At_End, because we would have done "exit Char_Loop"
-- above.
pragma Assert (not At_End (Out_Buf));
pragma Assert (Cur (Out_Buf) not in NL | W_NUL);
if At_Line_Start then
for J in 1 .. Indentation loop
Insert (Out_Buf, ' ');
end loop;
At_Line_Start := False;
end if;
Move_Forward (Out_Buf);
end loop Char_Loop;
pragma Assert (At_End (Out_Buf));
pragma Assert (Cur_Line = Last_Index (Line_Breaks));
Reset (Out_Buf);
pragma Debug (Assert_No_Trailing_Blanks (To_W_Str (Out_Buf)));
end Insert_NLs_And_Indentation;
procedure Insert_Comments_And_Blank_Lines;
-- Src_Tokens is the tokens from the original source file. Out_Tokens
-- is the newly-generated tokens. Out_Buf contains the corresponding
-- characters to Out_Tokens. Out_[Tokens|Buf] doesn't contain any
-- comments; they are inserted into the output from Src_Tokens.
--
-- This procedure also does some work in preparation for
-- Copy_Pp_Off_Regions. In particular, it checks that OFF/ON commands are
-- in the proper sequence, and it sets the Pp_Off_Present flag.
procedure Insert_Comment_Text (Comment_Tok : Scanner.Token);
-- Call the more global version
procedure Insert_Comment_Text (Comment_Tok : Scanner.Token) is
begin
Insert_Comment_Text (Lines_Data, Options, Comment_Tok);
end Insert_Comment_Text;
Pp_Off_Present : Boolean := False;
-- True if there is at least one Pp_Off_Comment. We don't care about
-- Pp_On_Comments, because it's an error to have a Pp_On_Comment without a
-- preceding Pp_Off_Comment. Set True if appropriate by
-- Insert_Comments_And_Blank_Lines. This allows us to skip the
-- Copy_Pp_Off_Regions pass as an optimization.
procedure Insert_Comments_And_Blank_Lines is
use Scanner;
-- use all type Token_Vector;
function Match (Tok1, Tok2 : Token) return Boolean;
-- True if the tokens have the same kind and same text, except that the
-- matching is case insensitive for identifiers, reserved words, and
-- string literals that could be operator symbols. The source locations
-- are ignored.
procedure Move_Past_Char;
procedure Move_Past_Out_Tok;
procedure Insert_End_Of_Line_Comment;
-- Found an End_Of_Line_Comment comment; copy it to the buffer. If it
-- is too long to fit on the line, turn it into a Whole_Line_Comment,
-- taking care to indent.
-- Note that the Subtree_To_Ada pass already inserted indentation, so we
-- mostly keep the indentation level at zero. The exception is comments,
-- which Subtree_To_Ada didn't see. For comments, we temporarily set the
-- indentation to that of the surrounding code.
procedure Insert_Whole_Line_Comment;
-- Found a Whole_Line_Comment; copy it to the buffer, taking care to
-- indent, except that if the comment starts in column 1, we assume
-- the user wants to keep it that way.
procedure Insert_Declare_Or_Private (Declare_Or_Private : W_Str) with
Pre => Declare_Or_Private in "declare" | "private";
-- If a block statement has no declarations, the earlier passes
-- don't insert "declare", whether or not it was in the source code.
-- If Do_Inserts is True, and there is a comment, this re-inserts
-- "declare" before the comment, to avoid messing up the formatting.
-- Similarly for "private [possible comment] end".
function Extra_Blank_On_Return return Boolean;
-- This is to deal with something like:
-- function Some_Function
-- (A_Parameter : A_Parameter_Type;
-- Another_Parameter : Another_Parameter_Type)
-- return Result_Type;
-- ^ Need to insert an extra blank there.
-- Returns true if done.
function Match (Tok1, Tok2 : Token) return Boolean is
begin
if Tok1.Kind = Tok2.Kind then
case Tok1.Kind is
when Nil | End_Of_Line | Comment_Kind =>
pragma Assert (False);
when Start_Of_Input | End_Of_Input | Blank_Line =>
pragma Assert (Tok1.Normalized = Tok2.Normalized);
return True;
when Lexeme | Identifier | Reserved_Word =>
return Tok1.Normalized = Tok2.Normalized;
when Numeric_Literal =>
if Tok1.Text = Tok2.Text then
return True;
end if;
declare
Tok1_Text : constant W_Str := Get_Name_String (Tok1.Text);
Tok2_Text : constant W_Str := Get_Name_String (Tok2.Text);
begin
if (Options.Decimal_Grouping = 0
and then Options.Based_Grouping = 0)
or else Find (Tok1_Text, "_") /= 0
then
return False;
else
return Tok1_Text = Replace_All (Tok2_Text, "_", "");
end if;
end;
when String_Literal =>
if Is_Op_Sym_With_Letters (Tok1.Normalized) then
return Tok1.Normalized = Tok2.Normalized;
else
return Tok1.Text = Tok2.Text;
end if;
end case;
end if;
return False;
end Match;
Src_Index, Out_Index : Token_Index := 2;
-- Skip the first Start_Of_Input token, which is just a sentinel
Src_Tok, Out_Tok : Token;
Line_Breaks : Line_Break_Vector renames Syntax_Line_Breaks;
-- Line breaks used for indenting whole-line comments
-- ???
EOL_Line_Breaks : Line_Break_Vector renames Enabled_Line_Breaks;
-- EOL_Line_Breaks : Line_Break_Vector renames Nonblank_Line_Breaks; Line
-- breaks used for indenting end-of-line comments
Cur_Line : Line_Break_Index := 2;
EOL_Cur_Line : Line_Break_Index := 2; -- for end-of-line comments
procedure Move_Past_Char is
begin
pragma Assert
(Point (Out_Buf) <=
Position (Out_Buf, Line_Breaks (Cur_Line).Mark));
-- Step past Line_Breaks at the current position
while Cur_Line <= Last_Index (Line_Breaks)
and then At_Point (Out_Buf, Line_Breaks (Cur_Line).Mark)
loop
Cur_Line := Cur_Line + 1;
end loop;
-- Step past EOL_Line_Breaks at the current position
while EOL_Cur_Line <= Last_Index (EOL_Line_Breaks)
and then At_Point (Out_Buf, EOL_Line_Breaks (EOL_Cur_Line).Mark)
loop
EOL_Cur_Line := EOL_Cur_Line + 1;
end loop;
-- Step past character
Move_Forward (Out_Buf);
end Move_Past_Char;
procedure Move_Past_Out_Tok is
begin
loop
Move_Past_Char;
exit when At_Point (Out_Buf, Out_Tok.Sloc.Lastx);
end loop;
end Move_Past_Out_Tok;
function Extra_Blank_On_Return return Boolean is
begin
if Out_Tok.Normalized = Snames.Name_Return then
declare
Paren : constant Token := Out_Tokens (Out_Index - 1);
LB : constant Line_Break := EOL_Line_Breaks (EOL_Cur_Line);
begin
-- If the function has no parameters, or if this is the
-- "return" of a return_statement, then there will be no ")",
-- and we won't do anything. If there is a comment between ")"
-- and "return", we do nothing.
if Paren.Normalized = Name_R_Paren then
if not LB.Hard -- will be hard if comment present
and then LB.Enabled
and then At_Point (Out_Buf, LB.Mark)
then
pragma Assert (Cur (Out_Buf) = ' ');
Move_Past_Char;
pragma Assert (To_Lower (Cur (Out_Buf)) = 'r');
Insert (Out_Buf, ' '); -- before "return"
Move_Past_Out_Tok;
-- No need to insert ' ' after "return"
return True;
end if;
end if;
end;
end if;
return False;
end Extra_Blank_On_Return;
Prev_EOL_Comment_Src_Col : Natural := 0;
-- If the previous line had an end-of-line comment, this is its column
-- in the original source; otherwise 0.
Prev_EOL_Comment_Out_Col : Natural := 0;
-- If the previous line had an end-of-line comment, this is its column
-- in the output; otherwise 0.
procedure Insert_End_Of_Line_Comment is
Indentation : Natural := 0;
Prev_Src_Tok : constant Token := Src_Tokens (Src_Index - 1);
pragma Assert (Src_Tok.Sloc.Line = Prev_Src_Tok.Sloc.Line);
Preceding_Blanks : Natural :=
First_Pos (Src_Buf, Src_Tok.Sloc) -
Last_Pos (Src_Buf, Prev_Src_Tok.Sloc) -
1;
-- Number of blanks between the previous token and this comment. Note
-- that tabs have been expanded in Src_Buf.
begin
pragma Assert (EOL_Cur_Line > 1);
Indentation := EOL_Line_Breaks (EOL_Cur_Line - 1).Indentation;
-- If we're just before a blank followed by NL, move past the blank,
-- so we won't add a new NL below.
if not At_Point (Out_Buf, EOL_Line_Breaks (EOL_Cur_Line).Mark)
and then Cur (Out_Buf) = ' '
then
Move_Past_Char;
pragma Assert (Cur (Out_Buf) /= ' ');
if Preceding_Blanks > 0 then
Preceding_Blanks := Preceding_Blanks - 1;
end if;
end if;
-- If this comment is lined up with one on the previous line in the
-- source, then line it up in the output. Otherwise, just preserve
-- Preceding_Blanks. ???Disabled for now.
if False and then Src_Tok.Sloc.Col = Prev_EOL_Comment_Src_Col then
while Cur_Column (Out_Buf) < Prev_EOL_Comment_Out_Col loop
Insert (Out_Buf, ' ');
end loop;
else
for J in 1 .. Preceding_Blanks loop
Insert (Out_Buf, ' '); -- Avoid making line too long???
end loop;
end if;
if False then -- ???Disabled for now.
-- This doesn't work, because Cur_Column is wrong, because Out_Buf
-- does not yet contain any NLs. Also, we presumably need to reset
-- these variables to 0 when we see a line without a comment.
Prev_EOL_Comment_Src_Col := Src_Tok.Sloc.Col;
Prev_EOL_Comment_Out_Col := Cur_Column (Out_Buf);
end if;
Insert_Comment_Text (Src_Tok);
-- In the usual case, the end-of-line comment is at a natural line
-- break, like this:
-- X := X + 1; -- Increment X
-- so we don't need another one. But if the original was:
-- X := -- Increment X
-- X + 1;
-- we need to add a line break after the comment.
if not At_Point (Out_Buf, EOL_Line_Breaks (EOL_Cur_Line).Mark) then
pragma Assert (Cur (Out_Buf) /= NL);
Cur_Indentation := Indentation;
Append_Temp_Line_Break (Lines_Data);
Cur_Indentation := 0;
end if;
Src_Index := Src_Index + 1;
end Insert_End_Of_Line_Comment;
Pp_On : Boolean := True;
-- True initially, and if the most recently encountered Pp_Off_Comment
-- or Pp_On_Comment was Pp_On_Comment.
Last_Pp_Off_On : Token_Index := 1;
-- If > 1, this is the index in Src_Tokens of the most recently
-- encountered Pp_Off_Comment or Pp_On_Comment. Used to check for
-- errors; they must alternate, OFF, ON, OFF, ....
procedure Insert_Whole_Line_Comment is
function Look_Before return Boolean;
-- True if we should look before the current location to determine
-- indentation level for the comment. If the next lexeme is "begin",
-- for example, we want to indent to the level of "begin", even
-- though there is probably previous code more deeply indented.
procedure Set_Cur_Indent;
-- Set Cur_Indentation as appropriate
function Before_Indentation return Natural;
-- Same as "Line_Breaks (Cur_Line - 1).Indentation", except we skip
-- Line_Breaks with Affects_Comments = False. In other words, this is
-- the previous line-breaks indentation which should affect comments.
function After_Indentation return Natural;
-- Same as "Line_Breaks (Cur_Line).Indentation", except we skip
-- Line_Breaks with Affects_Comments = False.In other words, this is
-- the current/next line-breaks indentation which should affect
-- comments.
function Look_Before return Boolean is
begin
if Out_Tok.Kind = End_Of_Input then
return True;
end if;
-- Should the following list include "exception"???
return not
(Out_Tok.Normalized = Snames.Name_Begin
or else Out_Tok.Normalized = Snames.Name_When
or else Out_Tok.Normalized = Snames.Name_Elsif
or else Out_Tok.Normalized = Snames.Name_Else);
end Look_Before;
Indentation : Natural;
procedure Set_Cur_Indent is
begin
if Src_Tok.Sloc.Col = 1
or else Src_Tok.Is_Special_Comment
or else not Options.Format_Comments
then
Cur_Indentation := Src_Tok.Sloc.Col - 1; -- Keep as in input
else
Cur_Indentation := Indentation;
-- Try to make comment fit on line. If we're filling it, then
-- rely on that to make it fit. If Cur_Indentation pushes
-- it past Max_Line_Length, and the comment would fit if
-- not indented, then reduce the indentation.
if
(not Comment_Filling_Enabled (Options)
or else not Src_Tok.Is_Fillable_Comment)
and then
Cur_Indentation + Src_Tok.Width >
Options.Max_Line_Length
and then Src_Tok.Width <= Options.Max_Line_Length
then
Cur_Indentation :=
Good_Column (Options.PP_Indentation,
Options.Max_Line_Length - Src_Tok.Width);
pragma Assert
((Cur_Indentation mod Options.PP_Indentation) = 0);
end if;
end if;
end Set_Cur_Indent;
function Before_Indentation return Natural is
X : Line_Break_Index := Cur_Line - 1;
begin
while X > 1 and then not Line_Breaks (X).Affects_Comments loop
X := X - 1;
end loop;
return Line_Breaks (X).Indentation;
end Before_Indentation;
function After_Indentation return Natural is
X : Line_Break_Index := Cur_Line;
begin
while X < Last_Index (Line_Breaks)
and then not Line_Breaks (X).Affects_Comments
loop
X := X + 1;
end loop;
return Line_Breaks (X).Indentation;
end After_Indentation;
-- Start of processing for Insert_Whole_Line_Comment
begin
-- Processing in preparation for Copy_Pp_Off_Regions. That depends on
-- an alternating sequence: OFF, ON, OFF, ON, .... So we check that
-- here, and abort processing if it's not true.
case Whole_Line_Comment'(Src_Tok.Kind) is
when Pp_Off_Comment =>
if Pp_On then
Pp_On := False;
Last_Pp_Off_On := Src_Index;
pragma Assert (Last_Pp_Off_On /= 1);
else
Error_Message
(Message_Image (Source_File_Name, Src_Tok.Sloc) &
": pretty printing already disabled at " &
Sloc_Image (Src_Tokens (Last_Pp_Off_On).Sloc));
end if;
when Pp_On_Comment =>
if Pp_On then
Error_Message
(Message_Image (Source_File_Name, Src_Tok.Sloc) &
": pretty printing already enabled at " &
Sloc_Image (Src_Tokens (Last_Pp_Off_On).Sloc));
else
Pp_On := True;
Last_Pp_Off_On := Src_Index;
pragma Assert (Last_Pp_Off_On /= 1);
end if;
when Other_Whole_Line_Comment => null;
end case;
-- Comments at the beginning are not indented. The "2" is to skip the
-- initial sentinel NL.
if Point (Out_Buf) = 2 then
Indentation := 0;
-- Otherwise, we indent as for the max of the preceding and following
-- line breaks, except when Look_Before is False (as it is for this
-- comment, which is followed by "else").
else
Indentation := After_Indentation;
if Look_Before then
Indentation := Natural'Max (Indentation, Before_Indentation);
end if;
end if;
-- Make sure Indentation is a multiple of PP_Indentation; otherwise
-- style checking complains "(style) bad column".
Indentation :=
(Indentation / Options.PP_Indentation) * Options.PP_Indentation;
pragma Assert ((Indentation mod Options.PP_Indentation) = 0);
Set_Cur_Indent;
if Src_Tokens (Src_Index - 1).Kind = Blank_Line
or else Lookback (Out_Buf) /= NL
then
Append_Temp_Line_Break (Lines_Data);
end if;
loop
-- ???Handle blank lines here, too?
Insert_Comment_Text (Src_Tok);
Src_Index := Src_Index + 1;
Src_Tok := Src_Tokens (Src_Index);
exit when Src_Tok.Kind not in Other_Whole_Line_Comment;
Set_Cur_Indent;
Append_Temp_Line_Break (Lines_Data);
end loop;
-- If we don't have an enabled line break here, we need to add one.
if not Options.Insert_Blank_Lines
and then not Options.Preserve_Blank_Lines
then
pragma Assert
((Cur (Out_Buf) = NL) =
(At_Point (Out_Buf, Line_Breaks (Cur_Line).Mark)));
pragma Assert
(if
Cur (Out_Buf) = NL
then
At_Point (Out_Buf, EOL_Line_Breaks (EOL_Cur_Line).Mark));
end if;
declare
LB_Pos : constant Positive :=
Position (Out_Buf, EOL_Line_Breaks (EOL_Cur_Line).Mark);
P : constant Positive := Point (Out_Buf);
begin
if LB_Pos = P then
null;
elsif Cur (Out_Buf) = ' ' and then LB_Pos = P + 1 then
null;
else
Cur_Indentation := Indentation;
Append_Temp_Line_Break (Lines_Data);
end if;
end;
Cur_Indentation := 0;
end Insert_Whole_Line_Comment;
procedure Insert_Declare_Or_Private (Declare_Or_Private : W_Str) is
Out_Tok_Pos : constant Positive :=
Position (Out_Buf, Out_Tok.Sloc.Firstx);
LB_Pos : constant Positive :=
Position (Out_Buf, Line_Breaks (Cur_Line).Mark);
Prev_LB_Pos : constant Positive :=
Position (Out_Buf, Line_Breaks (Cur_Line - 1).Mark);
begin
-- Either the current or previous line break is just before "begin"
-- or "end"; that's the indentation we want for "declare" or
-- "private", respectively. There is one exception: a named block
-- of the form "Name : begin", we want to insert the declare before
-- "begin", and we don't care about indentation. ???Better would be
-- to use indentation of "Name".
if LB_Pos = Out_Tok_Pos - 1 then
Cur_Indentation := Line_Breaks (Cur_Line).Indentation;
elsif Prev_LB_Pos = Out_Tok_Pos - 1 then
Cur_Indentation := Line_Breaks (Cur_Line - 1).Indentation;
-- The "one exception" mentioned above
else
pragma Assert
(Declare_Or_Private = "declare"
and then Out_Tokens (Out_Index - 1).Text = Name_Colon
and then Out_Tokens (Out_Index - 2).Kind = Identifier);
end if;
Append_Temp_Line_Break (Lines_Data);
Insert (Out_Buf, Declare_Or_Private);
Cur_Indentation := 0;
Src_Index := Src_Index + 1;
end Insert_Declare_Or_Private;
function Line_Break_LT (X, Y : Line_Break) return Boolean;
function Line_Break_LT (X, Y : Line_Break) return Boolean is
begin
return Mark_LT (Out_Buf, X.Mark, Y.Mark);
end Line_Break_LT;
package Line_Break_Sorting is new Line_Break_Vectors.Generic_Sorting
("<" => Line_Break_LT);
Qual_Nesting : Natural := 0;
-- Count the nesting level of qualified expressions containing aggregates
-- with extra parentheses.
-- Start of processing for Insert_Comments_And_Blank_Lines
begin
pragma Debug
(Format_Debug_Output
(Lines_Data, "before Insert_Comments_And_Blank_Lines"));
Get_Tokens (Out_Buf, Out_Tokens, Pp_Off_On_Delimiters);
-- ???At this point, we might need another pass to insert hard line
-- breaks after end-of-line comments, so they will be indented properly.
-- Or better yet, insert the EOL comments, with tabs and soft line break
-- before, hard line break after.
pragma Assert (Cur (Out_Buf) = NL);
Move_Forward (Out_Buf); -- skip sentinel
Collect_Enabled_Line_Breaks (Lines_Data, Syntax_Also => True);
Clear (Temp_Line_Breaks);
-- The two sequences Src_Tokens and Out_Tokens should be identical,
-- with some exceptions where mismatches are possible. The code below
-- to insert comments depends on this fact. We step through the two
-- sequences, copying text into Buffer, and detect any token mismatch.
-- The allowed mismatches are:
--
-- The Out sequence has no comments, so when we detect a mismatch and
-- the source one is a comment, that's where we insert the comment.
--
-- The sequences may have blank lines in different places.
--
-- We normalize "end;" to "end Some_Name;"
--
-- We normalize by removing "declare" from a block statement with no
-- declarative items. We put the "declare" back in here.
--
-- We normalize by removing "private" from a package (etc) when there
-- is nothing in the private part. We put the "private" back in here.
--
-- We normalize a qualified expression with unnecessary parentheses
-- containing an aggregate. That is "T'((X, Y, Z))" is normalized to
-- "T'(X, Y, Z)", where "(X, Y, Z)" is an aggregate. We pretty-much
-- have to do that, because ASIS provides no way to distinguish these
-- two forms.
--
-- We normalize "X : in T" to "X : T" (currently disabled to match
-- the old gnatpp).
--
-- There is a mode in which we insert underscores in numeric
-- literals, as in 12_345_678.
--
-- Allowed Replacements of Characters (see RM-J.2). We normalize "!"
-- to "|" when used as a delimiter. The other allowed replacements
-- (: for # and % for ") are not normalized.
--
-- Any other mismatch is considered to be a bug.
loop
Src_Tok := Src_Tokens (Src_Index);
Out_Tok := Out_Tokens (Out_Index);
pragma Assert (Out_Tok.Kind not in Comment_Kind);
-- Move into comment area???
pragma Assert
(Prev_Lexeme (Out_Tokens, Out_Index).Kind not in
Blank_Line |
Comment_Kind);
-- The order of the if/elsif's below is important in some
-- cases. Blank lines must be handled late, even if they match.
-- End_Of_Line_Comments must be handled before blank lines,
-- because they need to appear at the end of the preceding line.
-- Whole_Line_Comments must be handled after blank lines, because
-- the blank line should precede the comment.
if Src_Tok.Kind /= Blank_Line
and then
(Match (Src_Tok, Out_Tok)
or else
(Src_Tok.Normalized = Name_Bang
and then Out_Tok.Normalized = Name_Bar))
then
exit when Src_Tok.Kind = End_Of_Input;
-- i.e. exit when both Src and Out are at end of input
if Extra_Blank_On_Return then
null; -- Extra_Blank_On_Return took care of it
else
Move_Past_Out_Tok;
end if;
Src_Index := Src_Index + 1;
Out_Index := Out_Index + 1;
else
-- Check for "end;" --> "end Some_Name;" case
if Src_Tok.Text = Name_Semicolon
and then
Prev_Lexeme (Src_Tokens, Src_Index).Normalized =
Snames.Name_End
and then Out_Tok.Kind in Identifier | String_Literal
then
loop -- could be "end A.B.C;"
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
Out_Tok := Out_Tokens (Out_Index);
-- ???Shouldn't have to set Out_Tok here. Either write a
-- procedure that sets it every time Out_Index changes,
-- or make Out_Tok a function.
exit when Out_Tok.Normalized /= Name_Dot;
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
Out_Tok := Out_Tokens (Out_Index);
pragma Assert (Out_Tok.Kind in Identifier | String_Literal);
end loop;
pragma Assert (Out_Tok.Normalized = Name_Semicolon);
-- Check for "end Some_Name;" --> "end;" case. This only happens
-- when the --no-end-id switch was given. Here, the name was
-- present in the source, so we insert it.
elsif not Options.End_Id
and then Out_Tok.Text = Name_Semicolon
and then
Prev_Lexeme (Out_Tokens, Out_Index).Normalized =
Snames.Name_End
and then Src_Tok.Kind in Identifier | String_Literal
then
Insert (Out_Buf, " ");
loop -- could be "end A.B.C;"
Insert (Out_Buf, Get_Name_String (Src_Tok.Text));
Src_Index := Src_Index + 1;
Src_Tok := Src_Tokens (Src_Index);
exit when Src_Tok.Normalized /= Name_Dot;
Insert (Out_Buf, Get_Name_String (Src_Tok.Text));
Src_Index := Src_Index + 1;
Src_Tok := Src_Tokens (Src_Index);
pragma Assert (Src_Tok.Kind in Identifier | String_Literal);
end loop;
pragma Assert
(Disable_Final_Check
or else Src_Tok.Normalized = Name_Semicolon);
-- Check for "declare begin" --> "begin" case, with a possible
-- comment between "declare" and "begin".
elsif Src_Tok.Normalized = Snames.Name_Declare
and then Out_Tok.Normalized = Snames.Name_Begin
then
pragma Assert
(Next_Lexeme (Src_Tokens, Src_Index).Normalized =
Snames.Name_Begin);
Insert_Declare_Or_Private ("declare");
-- Check for "private end" --> "end" case.
elsif Src_Tok.Normalized = Snames.Name_Private
and then Out_Tok.Normalized = Snames.Name_End
then
pragma Assert
(Next_Lexeme (Src_Tokens, Src_Index).Normalized =
Snames.Name_End);
Insert_Declare_Or_Private ("private");
-- Check for "T'((X, Y, Z))" --> "T'(X, Y, Z)" case
elsif Src_Tok.Text = Name_L_Paren
and then Prev_Lexeme (Src_Tokens, Src_Index).Text = Name_L_Paren
--???Also check that the one before that is a tick!
then
Qual_Nesting := Qual_Nesting + 1;
Insert (Out_Buf, '(');
Src_Index := Src_Index + 1;
elsif Qual_Nesting > 0
and then Src_Tok.Text = Name_R_Paren
and then Prev_Lexeme (Src_Tokens, Src_Index).Text = Name_R_Paren
then
Qual_Nesting := Qual_Nesting - 1;
Insert (Out_Buf, ')');
Src_Index := Src_Index + 1;
-- Check for "X : in T" --> "X : T" case
elsif False -- Deletion of "in" is currently disabled
and then Src_Tok.Normalized = Snames.Name_In
and then Prev_Lexeme (Src_Tokens, Src_Index).Text = Name_Colon
then
Src_Index := Src_Index + 1;
elsif Src_Tok.Kind = End_Of_Line_Comment then
Insert_End_Of_Line_Comment;
-- If the source has a blank line at this point, send it to the
-- output, but avoid multiple blank lines (unless
-- Preserve_Blank_Lines is True) and blank lines just before
-- End_Of_Input.
elsif Src_Tok.Kind = Blank_Line then
loop
Src_Index := Src_Index + 1;
Src_Tok := Src_Tokens (Src_Index);
exit when Src_Tok.Kind /= Blank_Line
or else Options.Preserve_Blank_Lines;
end loop;
if Src_Tok.Kind /= End_Of_Input
or else Options.Preserve_Blank_Lines
then
Append_Temp_Line_Break (Lines_Data);
end if;
elsif Src_Tok.Kind in Whole_Line_Comment then
Insert_Whole_Line_Comment;
elsif Out_Tok.Kind = Blank_Line then
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
-- Else print out debugging information and crash. This
-- avoids damaging the source code in case of bugs. However,
-- if the Disable_Final_Check debug flag is set, try to
-- continue by skipping one source token, or one output
-- token.
elsif Disable_Final_Check then
Src_Index := Src_Index + 1;
if Src_Index < Last_Index (Src_Tokens) then
Src_Tok := Src_Tokens (Src_Index);
else
while not At_End (Out_Buf) loop
Move_Forward (Out_Buf); -- ????Move_Past_Char;
end loop;
goto Done;
end if;
else
Raise_Token_Mismatch
("Inserting",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end if;
end loop;
if Last_Pp_Off_On > 1 then
Pp_Off_Present := True;
end if;
pragma Assert (Point (Out_Buf) = Last_Position (Out_Buf));
pragma Assert (Cur (Out_Buf) = NL);
Move_Past_Out_Tok;
pragma Assert (Cur_Indentation = 0);
pragma Assert (Src_Index = Last_Index (Src_Tokens));
pragma Assert (Out_Index = Last_Index (Out_Tokens));
pragma Assert (At_End (Out_Buf) and then Lookback (Out_Buf) = NL);
pragma Assert (Cur_Line = Last_Index (Line_Breaks) + 1);
pragma Assert (EOL_Cur_Line = Last_Index (EOL_Line_Breaks) + 1);
<<Done>> null;
pragma Assert (Line_Break_Sorting.Is_Sorted (All_Line_Breaks));
pragma Assert (Line_Break_Sorting.Is_Sorted (Temp_Line_Breaks));
Line_Break_Sorting.Merge
(Target => All_Line_Breaks,
Source => Temp_Line_Breaks);
pragma Assert (Is_Empty (Temp_Line_Breaks));
pragma Assert (Line_Break_Sorting.Is_Sorted (All_Line_Breaks));
pragma Assert (Qual_Nesting = 0);
pragma Debug (Assert_No_Trailing_Blanks (To_W_Str (Out_Buf)));
Reset (Out_Buf);
Clear (Out_Tokens);
pragma Assert (At_Beginning (Src_Buf));
end Insert_Comments_And_Blank_Lines;
procedure Insert_Alignment (Tokens : Scanner.Token_Vector);
-- Expand tabs as necessary to align things
procedure Insert_Alignment (Tokens : Scanner.Token_Vector) is
procedure Calculate_Num_Blanks;
procedure Calculate_Num_Blanks is
use Scanner;
-- use all type Token_Vector;
-- Note on Col and Num_Blanks components of Tab_Rec: Col is
-- initialized to a bogus value, and Num_Blanks to 0. Process_Line
-- sets Col to the correct value. Flush_Para uses Col, and possibly
-- changes Num_Blanks to some positive value. After the call to
-- Calculate_Num_Blanks, Num_Blanks is used to insert the correct
-- number of ' ' characters. Thus, Col is temporary, used only within
-- Calculate_Num_Blanks, to communicate information from Process_Line
-- to Flush_Para.
Paragraph_Tabs : Tab_In_Line_Vector_Vectors.Vector;
-- One Tab_In_Line_Vector for each line in the current paragraph
procedure Put_Paragraph_Tabs;
procedure Flush_Para;
-- Called at the end of a "tabbing paragraph", i.e. a group of one or
-- more lines that each represents similar constructs that should be
-- treated together for alignment purposes.
procedure Flush_Para is
Num_Lines : constant Tab_In_Line_Vector_Index'Base :=
Last_Index (Paragraph_Tabs);
begin
-- Here we have Paragraph_Tabs set to a sequence of lines (or the
-- tabs in those lines, really). For example, if the input text
-- was (*1):
--
-- package P is
--
-- X : T := 1;
-- A_Long_Variable_Name : T := 2;
-- Y : A_Long_Type_Name := 3;
--
-- end P;
-- ^
-- |
-- column 1
--
-- then previous passes will have turned that into (*2):
--
-- package P is
--
-- X ^1: T ^2:= 1;
-- A_Long_Variable_Name ^1: T ^2:= 2;
-- Y ^1: A_Long_Type_Name ^2:= 3;
--
-- end P;
--
-- The tabs are shown as ^1 and ^2 in (*2) above, although they
-- are really kept in a separate data structure (Tabs) rather than
-- in the text itself, and take up zero columns in the buffer.
-- The "paragraph" we're talking about consists of the three
-- variable-declaration lines. Note that the alignment from the
-- input has been forgotten; we would get the same thing if the
-- input were unaligned. Our job is to align the ":" and ":="
-- symbols, whether or not they were originally aligned.
--
-- ^1 means Index_In_Line = 1; ^2 means Index_In_Line = 2 (see
-- type Tab_Rec). The Col of each tab is currently set to the
-- column in which it appears in (*2), and the Num_Blanks is
-- currently set to 0. The following code sets the Col of each tab
-- to the column in which it WILL appear, and the Num_Blanks to
-- the number of blanks to expand the tab to in order to achieve
-- that.
--
-- We first loop through all the ^1 tabs, and calculate the max
-- Col, which will be the ":" of the A_Long_Variable_Name line.
-- We then loop through those again, and set the Num_Blanks to be
-- the number of blanks needed to reach that max column. For each
-- such ^1 tab, we loop from that ^1, through ^2 and ^3 and so
-- on (we have no ^3... in this example), adjusting their Col
-- accordingly.
--
-- Then we loop through all the ^2 tabs in the same way, and so on
-- for ^3, etc.
--
-- So in this example, we loop down through the ^1 tabs to
-- calculate where to put the ":"'s. Then down through the ^1 tabs
-- again to adjust the Num_Blanks for the ^1 tabs, and loop across
-- to adjust the Col for the ^1 and ^2 tabs. Then down through the
-- ^2 tabs to calculate where to put the ":="'s.
--
-- Then down through the ^2 tabs to adjust the Num_Blanks for the
-- ^2 tabs, and loop across to adjust the Col for the ^2 tabs.
-- Note that adjusting the Col for the ":"'s affects where
-- we're going to put the ":="'s -- that's the reason for the
-- "loop across" part.
--
-- The end result is to calculate the Num_Blanks so that when
-- we expand the tabs, (*2) above will be turned (back) into
-- the (*1).
-- We must not process a zero-line paragraph. For efficiency, we
-- can avoid processing a one-line paragraph (leaving all tabs, if
-- any with Num_Blanks = 0). Multi-line paragraphs always have at
-- least one tab per line, and all lines have the same number of
-- tabs.
if Num_Lines = 0 then
return;
end if;
if Num_Lines = 1 then
Clear (Paragraph_Tabs);
return;
end if;
pragma Debug (Put_Paragraph_Tabs);
pragma Assert (Last_Index (Paragraph_Tabs (1)) /= 0);
for Index_In_Line in 1 .. Last_Index (Paragraph_Tabs (1)) loop
declare
Max_Col : Positive := 1;
begin
for Line of Paragraph_Tabs loop
declare
Tab_I : constant Tab_Index := Line (Index_In_Line);
Tab : Tab_Rec renames Tabs (Tab_I);
begin
Max_Col := Positive'Max (Max_Col, Tab.Col);
end;
end loop;
for Line of Paragraph_Tabs loop
declare
Tab_I : constant Tab_Index := Line (Index_In_Line);
Tab : Tab_Rec renames Tabs (Tab_I);
begin
if Tab.Is_Fake then
Tab.Col := Max_Col;
end if;
Tab.Num_Blanks := Max_Col - Tab.Col;
pragma Assert (if Tab.Is_Fake then Tab.Num_Blanks = 0);
for X_In_Line in Index_In_Line .. Last_Index (Line)
loop
declare
Tab_J : constant Tab_Index := Line (X_In_Line);
Tab_2 : Tab_Rec renames Tabs (Tab_J);
begin
Tab_2.Col := Tab_2.Col + Tab.Num_Blanks;
end;
end loop;
pragma Assert (Tab.Col = Max_Col);
pragma Assert
(if Num_Lines = 1 then Tab.Num_Blanks = 0);
-- Because of that fact, we can skip all this for
-- 1-line paragraphs.
end;
end loop;
end;
end loop;
pragma Debug (Put_Paragraph_Tabs);
Clear (Paragraph_Tabs);
end Flush_Para;
Cur_Token_Index : Token_Index := 1;
function Cur_Tok return Token is (Tokens (Cur_Token_Index));
Cur_Tab_Index : Tab_Index := 1;
function Cur_Tab return Tab_Rec is (Tabs (Cur_Tab_Index));
First_Line_Tabs, Cur_Line_Tabs : Tab_In_Line_Vector;
-- Tabs for first line of paragraph and for current line.
procedure Process_Line;
-- Process a single line in Out_Buf. Collect together all relevant
-- tabs in Cur_Line_Tabs. All tabs in Cur_Line_Tabs must have the
-- same Tree (that of the first tab on the line). Other tabs (for
-- more nested constructs) are skipped. So for example:
-- X : T (Discrim => 123) := (This | That => 345);
-- we collect two tabs for ':' and ':=', which have the same Tree
-- (a variable declaration tree). The '|' and '=>' characters in
-- the discriminant constraint and the aggregate also have tabs, but
-- these are skipped, because their Tree is different (more nested).
-- If there are no tabs on the line, then of course Cur_Line_Tabs
-- will be empty. In addition, if we have something like:
-- A := (1 | 2 | 3 => ...);
-- the '|' and '=>' tabs will have the same Index_In_Line, in which
-- case we give up (set Tab_Mismatch to True, and set Cur_Line_Tabs
-- to empty). Those tabs are only of use if we end up enabling line
-- breaks after the '|'s.
--
-- Handling of "insertion points".
--
-- Let's pretend the template for assignment_statement is
--
-- ! ^:= !
--
-- which means insert the left-hand side, followed by " := ",
-- followed by the right-hand side. (It's actually more complicated;
-- this is just an example.) There is a tab before ":=", so multiple
-- assignment_statements line up like this:
--
-- Long_Name := 1;
-- X := 10_000;
-- Even_Longer_Name := 1_000_000;
--
-- If we add a tab at the end (just before the ";"): "! ^:= !^2", we
-- get this:
--
-- Long_Name := 1 ;
-- X := 10_000 ;
-- Even_Longer_Name := 1_000_000;
--
-- If in addition we add an insertion point before the right-hand
-- side, so the template is: "! ^:= &2!^2", then the blanks are
-- inserted before the right-hand side, resulting in right-justified
-- expressions:
--
-- Long_Name := 1;
-- X := 10_000;
-- Even_Longer_Name := 1_000_000;
--
-- (We currently do not right-justify those expressions; this is just
-- an example to show how "&" works. "&" is actually used in
-- Do_Component_Clause.)
procedure Process_Line is
Tab_Mismatch : Boolean := False;
First_Time : Boolean := True;
Tree : Ada_Tree_Base;
Insertion_Point : Marker;
Have_Insertion_Point : Boolean := False;
IP_Index_In_Line : Tab_Index_In_Line;
begin
while Cur_Tok.Kind not in End_Of_Input | End_Of_Line | Blank_Line
loop
pragma Assert
(Cur_Tok.Sloc.First <= Position (Out_Buf, Cur_Tab.Mark));
-- We can have two tabs at the same place if the second one is
-- fake. Also for implicit 'in' mode, etc. Hence 'while', not
-- 'if' here:
while Cur_Tok.Sloc.Firstx = Cur_Tab.Mark loop
if First_Time then
pragma Assert (Is_Empty (Cur_Line_Tabs));
First_Time := False;
Tree := Cur_Tab.Tree;
end if;
if Cur_Tab.Tree = Tree then
if Cur_Tab.Is_Insertion_Point then
pragma Assert (not Have_Insertion_Point);
Have_Insertion_Point := True;
Insertion_Point := Cur_Tab.Mark;
IP_Index_In_Line := Cur_Tab.Index_In_Line;
-- Ignore if too many tabs in one line:
elsif Last_Index (Cur_Line_Tabs) <
Tab_Index_In_Line'Last
then
Append (Cur_Line_Tabs, Cur_Tab_Index);
if Cur_Tab.Index_In_Line /=
Last_Index (Cur_Line_Tabs)
then
Tab_Mismatch := True;
end if;
Tabs (Cur_Tab_Index).Col := Cur_Tok.Sloc.Col;
if Have_Insertion_Point then
Have_Insertion_Point := False;
pragma Assert
(Cur_Tab.Index_In_Line = IP_Index_In_Line);
Tabs (Cur_Tab_Index).Mark := Insertion_Point;
end if;
end if;
end if;
Cur_Tab_Index := Cur_Tab_Index + 1;
end loop;
Cur_Token_Index := Cur_Token_Index + 1;
end loop;
if Tab_Mismatch then
Clear (Cur_Line_Tabs);
end if;
end Process_Line;
procedure Check_Tokens_Match (X, Y : Tab_In_Line_Vector);
-- If two lines come from the same construct, then the tokens should
-- match. Raise an exception if they don't.
procedure Check_Tokens_Match (X, Y : Tab_In_Line_Vector) is
begin
pragma Assert (not Is_Empty (X) and then not Is_Empty (Y));
for J in 1 .. Last_Index (X) loop
declare
XX : constant Tab_Index := X (J);
YY : constant Tab_Index := Y (J);
XT : constant Name_Id := Tabs (XX).Token;
YT : constant Name_Id := Tabs (YY).Token;
begin
if XT /= YT then
-- "=>" matches a preceding "|"
if XT = Name_Arrow and then YT = Name_Bar then
null;
else
raise Program_Error;
end if;
end if;
end;
end loop;
end Check_Tokens_Match;
procedure Put_Tab_In_Line_Vector
(Name : String;
X : Tab_In_Line_Vector);
procedure Put_Tab_In_Line_Vector
(Name : String;
X : Tab_In_Line_Vector)
is
begin
if Is_Empty (X) then
return;
end if;
Dbg_Out.Put ("\1: \t", Name);
for J in 1 .. Last_Index (X) loop
if J /= 1 then
Dbg_Out.Put ("; ");
end if;
Dbg_Out.Put ("\1", Tab_Image (Out_Buf, Tabs, X (J)));
end loop;
Dbg_Out.Put ("\n");
end Put_Tab_In_Line_Vector;
procedure Put_Paragraph_Tabs is
begin
Dbg_Out.Put
("\1 Paragraph_Tabs\n",
Image (Integer (Last_Index (Paragraph_Tabs))));
for X of Paragraph_Tabs loop
Put_Tab_In_Line_Vector ("", X);
end loop;
Dbg_Out.Put ("end Paragraph_Tabs\n");
end Put_Paragraph_Tabs;
F_Tab, C_Tab : Tab_Rec;
-- Start of processing for Calculate_Num_Blanks
begin
-- Debug printouts commented out for efficiency
while Cur_Tok.Kind /= End_Of_Input loop
declare
-- First_Char_In_Line : constant Natural :=
-- Cur_Tok.Sloc.First - Cur_Tok.Sloc.Col + 1;
begin
Process_Line;
-- Dbg_Out.Put ("<<");
--
-- for X in First_Char_In_Line .. Cur_Tok.Sloc.First - 1 loop
-- for Tab of Cur_Line_Tabs loop
-- if X = Position (Out_Buf, Tabs (Tab).Mark) then
-- Dbg_Out.Put ("^");
-- end if;
-- end loop;
-- Dbg_Out.Put ("\1", To_UTF8 ((1 => Char_At (Out_Buf, X))));
-- end loop;
-- Dbg_Out.Put (">>\n");
-- Put_Tab_In_Line_Vector ("First", First_Line_Tabs);
-- Put_Tab_In_Line_Vector ("Cur", Cur_Line_Tabs);
Cur_Token_Index := Cur_Token_Index + 1;
-- Consume the newline
if Is_Empty (Cur_Line_Tabs) then
-- Dbg_Out.Put ("Flush_Para -- no tabs\n");
Flush_Para;
-- Leave tabs from this line with Num_Blanks = 0.
Clear (First_Line_Tabs);
else
if Is_Empty (First_Line_Tabs) then
First_Line_Tabs := Cur_Line_Tabs;
else
-- If the Parents don't match, we're at the end of a
-- paragraph. We also end the paragraph if the line-tab
-- arrays are of different length, which can only
-- happen if a comment occurs in the middle of a
-- tabable construct (e.g. before ":=" in a variable
-- declaration), thus forcing a tab onto the next line.
F_Tab := Element (Tabs, First_Line_Tabs (1));
C_Tab := Element (Tabs, Cur_Line_Tabs (1));
if C_Tab.Parent = F_Tab.Parent
and then
Last_Index (Cur_Line_Tabs) =
Last_Index (First_Line_Tabs)
then
pragma Debug
(Check_Tokens_Match
(Cur_Line_Tabs,
First_Line_Tabs));
else
-- Dbg_Out.Put ("Flush_Para -- parent mismatch\n");
Flush_Para;
First_Line_Tabs := Cur_Line_Tabs;
end if;
F_Tab := (others => <>);
C_Tab := (others => <>);
end if;
Append (Paragraph_Tabs, Cur_Line_Tabs);
Clear (Cur_Line_Tabs);
end if;
end;
-- Dbg_Out.Put ("\n");
end loop;
pragma Assert (Cur_Tab_Index = Last_Index (Tabs));
end Calculate_Num_Blanks;
-- Start of processing for Insert_Alignment
begin
if not Alignment_Enabled (Options) then
return;
end if;
Clear (Out_Buf_Line_Ends);
Scanner.Get_Tokens
(Out_Buf,
Out_Tokens, Pp_Off_On_Delimiters,
Ignore_Single_Line_Breaks => False,
Line_Ends => Out_Buf_Line_Ends'Unchecked_Access);
-- First go through the tabs and set their Num_Blanks field to the
-- appropriate value. Tabs that are not expanded at all will have
-- Num_Blanks left equal to zero.
pragma Debug
(Format_Debug_Output
(Lines_Data, "before Calculate_Num_Blanks"));
Calculate_Num_Blanks;
pragma Debug
(Format_Debug_Output
(Lines_Data, "after Calculate_Num_Blanks"));
-- Now go through the buffer, inserting blanks for tabs that should be
-- expanded. Don't expand a tab if it would make the line too long.
declare
Cur_Tab_Index : Tab_Index := 1;
Cur_Tab : Tab_Rec := Tabs (Cur_Tab_Index);
Cur_Line_Num : Positive := 1;
begin
while not At_End (Out_Buf) loop
pragma Assert
(Point (Out_Buf) <= Position (Out_Buf, Cur_Tab.Mark));
while At_Point (Out_Buf, Cur_Tab.Mark) loop
if Scanner.Line_Length
(Out_Buf,
Out_Buf_Line_Ends,
Cur_Line_Num) +
Cur_Tab.Num_Blanks <=
Options.Max_Line_Length
then
for J in 1 .. Cur_Tab.Num_Blanks loop
Insert (Out_Buf, ' ');
end loop;
end if;
Cur_Tab_Index := Cur_Tab_Index + 1;
Cur_Tab := Tabs (Cur_Tab_Index);
end loop;
if Cur (Out_Buf) = NL then
Cur_Line_Num := Cur_Line_Num + 1;
end if;
Move_Forward (Out_Buf);
end loop;
pragma Assert (Cur_Tab_Index = Last_Index (Tabs));
end;
Reset (Out_Buf);
pragma Debug (Assert_No_Trailing_Blanks (To_W_Str (Out_Buf)));
end Insert_Alignment;
procedure Keyword_Casing;
-- Convert reserved words to lower/upper case based on command-line
-- options.
procedure Keyword_Casing is
-- The usual case is Lower_Case, in which case there's nothing to do,
-- because all of the Ada_Templates have reserved words in lower case.
-- If it's Upper_Case, we loop through the tokens, converting reserved
-- words to upper case.
use Scanner;
-- use all type Token_Vector;
Out_Tok : Token;
begin
case Options.PP_Keyword_Casing is
when Lower_Case =>
null;
when Upper_Case =>
Scanner.Get_Tokens (Out_Buf, Out_Tokens, Pp_Off_On_Delimiters);
Outer_Loop :
for Out_Index in 2 .. Last_Index (Out_Tokens) loop
Out_Tok := Out_Tokens (Out_Index);
loop
if Out_Tok.Kind = Reserved_Word then
Replace_Cur (Out_Buf, To_Upper (Cur (Out_Buf)));
end if;
Move_Forward (Out_Buf);
exit Outer_Loop when At_End (Out_Buf);
-- If there are extra blank lines at the end of file,
-- then we need the At_End test.
exit when At_Point (Out_Buf, Out_Tok.Sloc.Lastx);
end loop;
end loop Outer_Loop;
Reset (Out_Buf);
end case;
end Keyword_Casing;
procedure Insert_Form_Feeds;
-- Insert FF after "pragma Page;" if -ff switch was given. It might seem
-- silly to have a whole extra pass for this little feature, but it's a
-- rarely used feature, so we don't care if it's a little slower, and this
-- seems cleanest. We could have put this processing in some other
-- unrelated pass. Note that it would not be easy to do this in
-- Convert_Tree_To_Ada, because the FF goes after the ";", and the ";" is
-- not printed as part of the pragma -- it goes BETWEEN the pragma and
-- whatever comes next. Furthermore, we want to do this last so the FF
-- doesn't get turned back into NL.
procedure Insert_Form_Feeds is
use Scanner;
-- use all type Token_Vector;
Out_Tok, Prev_Tok, Prev_Prev_Tok : Token;
begin
if not Options.Add_FF then
return;
end if;
Scanner.Get_Tokens (Out_Buf, Out_Tokens, Pp_Off_On_Delimiters);
for Out_Index in 2 + 3 - 1 .. Last_Index (Out_Tokens) loop
-- Skip sentinel and first 3 tokens
Out_Tok := Out_Tokens (Out_Index);
Prev_Tok := Out_Tokens (Out_Index - 1);
Prev_Prev_Tok := Out_Tokens (Out_Index - 2);
loop
Move_Forward (Out_Buf);
exit when At_Point (Out_Buf, Out_Tok.Sloc.Lastx);
end loop;
if Out_Tok.Text = Name_Semicolon
and then Prev_Tok.Normalized = Snames.Name_Page
and then Prev_Prev_Tok.Normalized = Snames.Name_Pragma
then
Insert_Any (Out_Buf, W_FF);
end if;
end loop;
Reset (Out_Buf);
end Insert_Form_Feeds;
procedure Copy_Pp_Off_Regions;
-- Out_Buf is fully formatted at this point, including regions where pretty
-- printing is supposed to be turned off. This replaces those regions of
-- Out_Buf with the corresponding regions of Src_Buf.
-- Note that this destroys any markers that might be pointing to Out_Buf
procedure Copy_Pp_Off_Regions is
-- The Src_Buf contains a sequence of zero or more OFF and ON
-- commands. The first must be OFF, then ON, then OFF and so on,
-- alternating. If that weren't true, we would have gotten an error in
-- Insert_Comments_And_Blank_Lines, in which case we don't get here.
-- The final End_Of_Input acts as an ON or OFF as appropriate.
-- The Out_Buf contains a corresponding sequence with the same
-- number of OFF's and ON's.
-- Pretty printing is ON between the beginning and the first OFF, then
-- OFF until the next ON, and so on.
use Scanner;
New_Buf : Buffer;
-- Buffers don't support deletion, so we need to build up a whole new
-- Buffer. This will be moved into Out_Buf when we are done.
procedure Get_Next_Off_On
(Tokens : Token_Vector;
Index : in out Token_Index;
Tok, Prev_Tok : out Token;
Expect : Pp_Off_On_Comment);
-- Get the next OFF or ON (or End_Of_Input). The index of that token in
-- Tokens is returned in Index. The token itself is returned in Tok. The
-- token before Tok is Prev_Tok, which is necessarily an End_Of_Line or
-- New_Line. Expect is purely for assertions; it alternates between OFF
-- and ON; Tok must be as expected (or End_Of_Input).
procedure Copy (Buf : in out Buffer; Up_To : Marker);
-- Copy from Buf to New_Buf, up to the given marker.
procedure Skip (Buf : in out Buffer; Up_To : Marker);
-- Move forward in Buf, up to the given marker, ignoring the characters.
procedure Get_Next_Off_On
(Tokens : Token_Vector;
Index : in out Token_Index;
Tok, Prev_Tok : out Token;
Expect : Pp_Off_On_Comment) is
begin
loop
Index := Index + 1;
Tok := Tokens (Index);
exit when Tok.Kind in Pp_Off_On_Comment | End_Of_Input;
end loop;
Prev_Tok := Tokens (Index - 1);
pragma Assert (Tok.Kind in Expect | End_Of_Input);
pragma Assert
(Prev_Tok.Kind in Start_Of_Input | End_Of_Line | Blank_Line);
end Get_Next_Off_On;
procedure Copy (Buf : in out Buffer; Up_To : Marker) is
begin
while not At_Point (Buf, Up_To) loop
Insert_Any (New_Buf, Cur (Buf));
Move_Forward (Buf);
end loop;
end Copy;
procedure Skip (Buf : in out Buffer; Up_To : Marker) is
begin
while not At_Point (Buf, Up_To) loop
Move_Forward (Buf);
end loop;
end Skip;
Src_Index, Out_Index : Token_Index := 1;
Src_Tok, Out_Tok, Prev_Tok : Token;
Src_Toks : Token_Vector;
-- Note that we don't use Src_Tokens (the one in Ada_Trees.Formatting).
-- We don't want to destroy that one with Ignore_Single_Line_Breaks =>
-- False.
-- Start of processing for Copy_Pp_Off_Regions
begin
-- Optimize by skipping this phase if there are no Pp_Off_Comments
if not Pp_Off_Present then
return;
end if;
-- We need to see End_Of_Line tokens, because when we see an OFF, we
-- want to copy/ignore starting at the beginning of the line on which
-- the OFF appears. For an ON, we ignore the Prev_Tok.
Get_Tokens (Src_Buf, Src_Toks, Pp_Off_On_Delimiters,
Ignore_Single_Line_Breaks => False);
Get_Tokens (Out_Buf, Out_Tokens, Pp_Off_On_Delimiters,
Ignore_Single_Line_Breaks => False);
if Debug_Mode then
Dbg_Out.Put ("Copy_Pp_Off_Regions: Src_Toks:\n");
Put_Tokens (Src_Toks);
Dbg_Out.Put ("end Src_Toks:\n");
Dbg_Out.Put ("Copy_Pp_Off_Regions: Out_Tokens:\n");
Put_Tokens (Out_Tokens);
Dbg_Out.Put ("end Out_Tokens:\n");
end if;
-- The following loop repeatedly copies an ON region from Out_Buf to
-- New_Buf (ignoring the corresponding region of Src_Buf), then copies
-- an OFF region from Src_Buf to New_Buf (ignoring the corresponding
-- region of Out_Buf).
loop
Get_Next_Off_On
(Out_Tokens, Out_Index, Out_Tok, Prev_Tok => Prev_Tok,
Expect => Pp_Off_Comment);
Copy (Out_Buf, Up_To => Prev_Tok.Sloc.Lastx);
Get_Next_Off_On (Src_Toks, Src_Index, Src_Tok, Prev_Tok,
Expect => Pp_Off_Comment);
Skip (Src_Buf, Up_To => Prev_Tok.Sloc.Lastx);
pragma Assert
((Out_Tok.Kind = End_Of_Input) = (Src_Tok.Kind = End_Of_Input));
exit when Out_Tok.Kind = End_Of_Input;
Get_Next_Off_On (Src_Toks, Src_Index, Src_Tok, Prev_Tok,
Expect => Pp_On_Comment);
Copy (Src_Buf, Up_To => Src_Tok.Sloc.Lastx);
Get_Next_Off_On (Out_Tokens, Out_Index, Out_Tok, Prev_Tok,
Expect => Pp_On_Comment);
Skip (Out_Buf, Up_To => Out_Tok.Sloc.Lastx);
pragma Assert
((Out_Tok.Kind = End_Of_Input) = (Src_Tok.Kind = End_Of_Input));
exit when Out_Tok.Kind = End_Of_Input;
end loop;
Reset (Src_Buf);
Reset (Out_Buf);
Reset (New_Buf);
Move (Target => Out_Buf, Source => New_Buf);
end Copy_Pp_Off_Regions;
-- Start of processing for Post_Tree_Phases
begin
Split_Lines (First_Time => True);
Insert_Comments_And_Blank_Lines;
Split_Lines (First_Time => False);
Insert_NLs_And_Indentation;
Insert_Alignment (Tokens => Out_Tokens);
Keyword_Casing;
Insert_Form_Feeds;
Copy_Pp_Off_Regions;
-- The following pass doesn't modify anything; it just checks that the
-- sequence of tokens we have constructed matches the original source
-- code (with some allowed exceptions).
Final_Check (Lines_Data, Src_Buf, Options);
end Post_Tree_Phases;
procedure Raise_Token_Mismatch
(Message : String;
Lines_Data : Lines_Data_Rec;
Src_Buf : Buffer;
Src_Index, Out_Index : Scanner.Token_Index;
Src_Tok, Out_Tok : Scanner.Token)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Src_Tokens : Scanner.Token_Vector renames Lines_Data.Src_Tokens;
Out_Tokens : Scanner.Token_Vector renames Lines_Data.Out_Tokens;
begin
if Enable_Token_Mismatch then
declare
use Scanner;
Num_Toks : constant Token_Index := 8;
-- Number of tokens before and after the mismatch to print
First_Src_Index : constant Token_Index :=
Token_Index'Max (Src_Index - Num_Toks, 1);
Last_Src_Index : constant Token_Index :=
Token_Index'Min (Src_Index + Num_Toks, Last_Index (Src_Tokens));
First_Out_Index : constant Token_Index :=
Token_Index'Max (Out_Index - Num_Toks, 1);
Last_Out_Index : constant Token_Index :=
Token_Index'Min (Out_Index + Num_Toks, Last_Index (Out_Tokens));
begin
ASIS_UL.Dbg_Out.Output_Enabled := True;
Text_IO.Put_Line ("Src_Buf:");
Dump_Buf (Src_Buf);
Text_IO.Put_Line ("Out_Buf:");
Dump_Buf (Out_Buf);
Text_IO.Put_Line
(Text_IO.Standard_Output,
Message &
": Token mismatch: " &
Get_Name_String (Src_Tok.Text) &
" --> " &
Get_Name_String (Out_Tok.Text));
Text_IO.Put_Line (Text_IO.Standard_Output, "Src tokens:");
Put_Tokens
(Src_Tokens,
First => First_Src_Index,
Last => Last_Src_Index,
Highlight => Src_Index);
Text_IO.Put_Line
(Text_IO.Standard_Output,
"========================================");
Text_IO.Put_Line (Text_IO.Standard_Output, "Out tokens:");
Put_Tokens
(Out_Tokens,
First => First_Out_Index,
Last => Last_Out_Index,
Highlight => Out_Index);
Text_IO.Put_Line (Text_IO.Standard_Output, "Src text:");
Wide_Text_IO.Put
(Wide_Text_IO.Standard_Output, Slice (Src_Buf,
Src_Tokens (First_Src_Index).Sloc.First,
Src_Tokens (Last_Src_Index).Sloc.Last,
Lines => True));
Text_IO.Put_Line (Text_IO.Standard_Output, "Out text:");
Wide_Text_IO.Put
(Wide_Text_IO.Standard_Output, Slice (Out_Buf,
Out_Tokens (First_Out_Index).Sloc.First,
Out_Tokens (Last_Out_Index).Sloc.Last,
Lines => True));
end;
end if;
raise Token_Mismatch with Scanner.Sloc_Image (Src_Tok.Sloc);
end Raise_Token_Mismatch;
procedure Final_Check_Helper
(Lines_Data : in out Lines_Data_Rec;
Src_Buf : in out Buffer;
Options : Formatting_Options)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Src_Tokens : Scanner.Token_Vector renames Lines_Data.Src_Tokens;
Out_Tokens : Scanner.Token_Vector renames Lines_Data.Out_Tokens;
Pp_Off_On_Delimiters : Scanner.Pp_Off_On_Delimiters_Rec
renames Lines_Data.Pp_Off_On_Delimiters;
pragma Warnings (Off); -- ????
-- Miscellaneous useful Name_Ids (???duplicate):
Name_Empty : constant Name_Id := Name_Find ("");
Name_Semicolon : constant Name_Id := Name_Find (";");
Name_L_Paren : constant Name_Id := Name_Find ("(");
Name_R_Paren : constant Name_Id := Name_Find (")");
Name_Colon : constant Name_Id := Name_Find (":");
Name_Assign : constant Name_Id := Name_Find (":=");
Name_Bang : constant Name_Id := Name_Find ("!");
Name_Bar : constant Name_Id := Name_Find ("|");
Name_Arrow : constant Name_Id := Name_Find ("=>");
Name_Dot : constant Name_Id := Name_Find (".");
Name_And_Then : constant Name_Id := Name_Find ("and then");
Name_Or_Else : constant Name_Id := Name_Find ("or else");
Name_Q_And : constant Name_Id := Name_Find ("""and""");
Name_Q_Or : constant Name_Id := Name_Find ("""or""");
Name_Q_Xor : constant Name_Id := Name_Find ("""xor""");
Name_Q_Mod : constant Name_Id := Name_Find ("""mod""");
Name_Q_Rem : constant Name_Id := Name_Find ("""rem""");
Name_Q_Abs : constant Name_Id := Name_Find ("""abs""");
Name_Q_Not : constant Name_Id := Name_Find ("""not""");
Name_Depends : constant Name_Id := Name_Find ("Depends");
Name_Tab_Insertion_Point : constant Name_Id :=
Name_Find ("tab insertion point");
Name_Tab_In_Out : constant Name_Id := Name_Find ("tab in out");
Name_Dot_Dot : constant Name_Id := Name_Find ("..");
Name_R_Sq : constant Name_Id := Name_Find ("]");
Op_Sym_Table : constant array (Positive range <>) of Name_Id :=
(Name_Q_And,
Name_Q_Or,
Name_Q_Xor,
Name_Q_Mod,
Name_Q_Rem,
Name_Q_Abs,
Name_Q_Not);
function Is_Op_Sym_With_Letters
(N : Name_Id)
return Boolean is
(for some Op of Op_Sym_Table => N = Op);
-- True if N looks like a string literal that can be used as an operator
-- symbol containing letters, so case might matter. N should be in all
-- lower case.
pragma Warnings (On);
use Scanner;
-- use all type Token_Vector;
function Match (Tok1, Tok2 : Token) return Boolean;
-- Similar to Match in Insert_Comments_And_Blank_Lines, but here we need
-- to deal with comments.
procedure Move_Past_Char;
procedure Move_Past_Out_Tok;
-- These are similar to the procedures in
-- Insert_Comments_And_Blank_Lines, but here we don't need to keep
-- track of line breaks.
procedure Collect_Comments
(Tokens : Token_Vector;
Index : in out Token_Index;
Tok : in out Token;
Result : in out Char_Vector;
Is_Out : Boolean);
-- Collect up all the text of a sequence of Whole_Line_Comments,
-- ignoring changes made by paragraph filling. Paragraph_Filling might
-- have changed blank to NL and vice versa, and it turns a series of
-- blanks into a single one. Similarly needed if GNAT_Comment_Start is
-- True.
function Match (Tok1, Tok2 : Token) return Boolean is
begin
if Tok1.Kind = Tok2.Kind then
case Tok1.Kind is
when Nil | End_Of_Line =>
raise Program_Error;
when Start_Of_Input | End_Of_Input | Blank_Line =>
pragma Assert (Tok1.Normalized = Tok2.Normalized);
return True;
when Comment_Kind =>
return
(Options.GNAT_Comment_Start
or else Tok1.Leading_Blanks = Tok2.Leading_Blanks)
and then Tok1.Text = Tok2.Text;
when Lexeme | Identifier | Reserved_Word =>
return Tok1.Normalized = Tok2.Normalized;
when Numeric_Literal =>
if Tok1.Text = Tok2.Text then
return True;
end if;
declare
Tok1_Text : constant W_Str := Get_Name_String (Tok1.Text);
Tok2_Text : constant W_Str := Get_Name_String (Tok2.Text);
begin
if (Options.Decimal_Grouping = 0
and then Options.Based_Grouping = 0)
or else Find (Tok1_Text, "_") /= 0
then
return False;
else
return Tok1_Text = Replace_All (Tok2_Text, "_", "");
end if;
end;
when String_Literal =>
if True or else Is_Op_Sym_With_Letters (Tok1.Normalized) then
return Tok1.Normalized = Tok2.Normalized;
else
return Tok1.Text = Tok2.Text;
end if;
end case;
elsif Tok1.Kind = End_Of_Line_Comment
and then Tok2.Kind in Whole_Line_Comment
then
return Tok1.Text = Tok2.Text
and then
(if
not Options.GNAT_Comment_Start
then
Tok1.Leading_Blanks = Tok2.Leading_Blanks);
-- ???This case will be needed if/when we turn end-of-line
-- comments that don't fit into whole-line comments. That
-- transformation seems questionable, because it would damage
-- idempotency: first run of gnatpp turns an end-of-line comment
-- into a whole-line-comment, and then a second run considers it
-- part of a comment paragraph and fills it.
end if;
return False;
end Match;
Src_Index, Out_Index : Token_Index := 2;
-- Skip the first Start_Of_Input token, which is just a sentinel
Src_Tok, Out_Tok : Token;
procedure Move_Past_Char is
begin
-- Step past character
Move_Forward (Out_Buf);
end Move_Past_Char;
procedure Move_Past_Out_Tok is
begin
-- ???Make sure we're not moving past multiple tokens here. Move past
-- whitespace, then assert we're at token start, then move to end. Or
-- something like that.
loop
Move_Past_Char;
exit when At_Point (Out_Buf, Out_Tok.Sloc.Lastx);
end loop;
end Move_Past_Out_Tok;
procedure Collect_Comments
(Tokens : Token_Vector;
Index : in out Token_Index;
Tok : in out Token;
Result : in out Char_Vector;
Is_Out : Boolean)
is
begin
while Tok.Kind in Whole_Line_Comment loop
declare
Text : constant W_Str := Get_Name_String (Tok.Text);
function White
(X : Positive)
return Boolean is
(X <= Text'Last
and then
(Is_Space (Text (X)) or else Is_Line_Terminator (Text (X))));
-- True if X points to a space or NL character
pragma Assert
(Text'First = 1
and then Text'Last >= 1
and then (if Text'Last > 1 then not White (1))
and then White (Text'Last));
X : Positive := 1;
begin
while X <= Text'Last loop
if White (X) then
Append (Result, ' ');
while White (X) loop
X := X + 1;
end loop;
else
Append (Result, Text (X));
X := X + 1;
end if;
end loop;
end;
if Is_Out then
Move_Past_Out_Tok;
end if;
Index := Index + 1;
Tok := Tokens (Index);
end loop;
end Collect_Comments;
-- Start of processing for Final_Check_Helper
begin
Get_Tokens (Out_Buf, Out_Tokens, Pp_Off_On_Delimiters);
pragma Assert (Cur (Out_Buf) = NL);
Move_Forward (Out_Buf); -- skip sentinel
loop
Src_Tok := Src_Tokens (Src_Index);
Out_Tok := Out_Tokens (Out_Index);
if Src_Index > 5 and then Simulate_Token_Mismatch then
-- Simulate a token mismatch, for testing
Raise_Token_Mismatch
("Final_Check 0",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
if Src_Tok.Kind /= Blank_Line
and then
(Match (Src_Tok, Out_Tok)
or else
(Src_Tok.Normalized = Name_Bang
and then Out_Tok.Normalized = Name_Bar))
then
exit when Src_Tok.Kind = End_Of_Input;
-- i.e. exit when both Src and Out are at end of input
Move_Past_Out_Tok;
Src_Index := Src_Index + 1;
Out_Index := Out_Index + 1;
else
-- If we're filling comments, then the comments might not match
-- up. For example, a line break could be added such that the
-- first line is too short to be considered part of a fillable
-- comment paragraph, thus turning one comment into two. So
-- we collect them all together and check that their text
-- more-or-less matches.
--
-- Similarly, we do this if GNAT_Comment_Start. For example, if
-- one comment starts with a single blank and the next starts with
-- two, then they will not look like a single paragraph during
-- Insert_Comments_And_Blank_Lines, but here they will, because an
-- extra blank has been added to the first.
--
-- Actually, we need to do this in any case: if two comments in
-- the input are not indented the same, they will be indented the
-- same in the output, and thus appear to be a fillable paragraph.
if Src_Tok.Kind in Whole_Line_Comment
and then Out_Tok.Kind in Whole_Line_Comment
then
declare
Src_Comments : Char_Vector;
Out_Comments : Char_Vector;
begin
Collect_Comments
(Src_Tokens,
Src_Index,
Src_Tok,
Src_Comments,
Is_Out => False);
Collect_Comments
(Out_Tokens,
Out_Index,
Out_Tok,
Out_Comments,
Is_Out => True);
if Src_Comments /= Out_Comments then
Text_IO.Put_Line
(Text_IO.Standard_Output,
To_UTF8 (To_Array (Src_Comments)) &
" --> " &
To_UTF8 (To_Array (Out_Comments)));
Raise_Token_Mismatch
("Final_Check 1",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end;
-- Check for "end;" --> "end Some_Name;" case
--???Check next Out token is ";"
elsif Src_Tok.Text = Name_Semicolon
and then
Prev_Lexeme (Src_Tokens, Src_Index).Normalized =
Snames.Name_End
and then Out_Tok.Kind in Identifier | String_Literal
then
loop -- could be "end A.B.C;"
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
Out_Tok := Out_Tokens (Out_Index);
-- ???Shouldn't have to set Out_Tok here. Either write a
-- procedure that sets it every time Out_Index changes,
-- or make Out_Tok a function.
exit when Out_Tok.Normalized /= Name_Dot;
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
Out_Tok := Out_Tokens (Out_Index);
if Out_Tok.Kind not in Identifier | String_Literal then
Raise_Token_Mismatch
("Final_Check 2",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end loop;
-- Check for "X : in T" --> "X : T" case
elsif False -- Deletion of "in" is currently disabled
and then Src_Tok.Normalized = Snames.Name_In
and then Prev_Lexeme (Src_Tokens, Src_Index).Text = Name_Colon
--???Check prev&next ids match???
then
Src_Index := Src_Index + 1;
elsif Src_Tok.Kind = Blank_Line then
Src_Index := Src_Index + 1;
Src_Tok := Src_Tokens (Src_Index);
elsif Out_Tok.Kind = Blank_Line then
Move_Past_Out_Tok;
Out_Index := Out_Index + 1;
-- Else print out debugging information and crash. This avoids
-- damaging the source code in case of bugs.
else
Raise_Token_Mismatch
("Final_Check 3",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end if;
end loop;
if not Options.Comments_Only
and then not Options.Preserve_Blank_Lines
then
if Point (Out_Buf) /= Last_Position (Out_Buf) then
Raise_Token_Mismatch
("Final_Check 4",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end if;
while not At_End (Out_Buf) loop
if not Is_Line_Terminator (Cur (Out_Buf)) then
Raise_Token_Mismatch
("Final_Check 5",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
Move_Forward (Out_Buf);
end loop;
Reset (Out_Buf);
if Src_Index /= Last_Index (Src_Tokens)
or else Out_Index /= Last_Index (Out_Tokens)
then
Raise_Token_Mismatch
("Final_Check 6",
Lines_Data,
Src_Buf,
Src_Index,
Out_Index,
Src_Tok,
Out_Tok);
end if;
end Final_Check_Helper;
procedure Final_Check
(Lines_Data : in out Lines_Data_Rec;
Src_Buf : in out Buffer;
Options : Formatting_Options)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
begin
if Disable_Final_Check then
return;
end if;
if Enable_Token_Mismatch then
declare
Old_Out_Buf : constant Char_Vector := To_Vector (Out_Buf);
begin
Final_Check_Helper (Lines_Data, Src_Buf, Options);
pragma Assert (To_Vector (Out_Buf) = Old_Out_Buf);
pragma Debug (Assert_No_Trailing_Blanks (To_W_Str (Out_Buf)));
end;
else
Final_Check_Helper (Lines_Data, Src_Buf, Options);
end if;
end Final_Check;
----------------
-- Debugging:
function Line_Text
(Out_Buf : Buffer;
Line_Breaks : Line_Break_Vector;
F, L : Line_Break_Index) return W_Str
is
First : constant Line_Break := Line_Breaks (F);
Last : constant Line_Break := Line_Breaks (L);
Result : constant W_Str := Slice (Out_Buf, First.Mark, Last.Mark);
begin
return Result (Result'First + 1 .. Result'Last);
end Line_Text;
function Tab_Image
(Out_Buf : Buffer; Tabs : Tab_Vector; X : Tab_Index) return String
is
Tab : constant Tab_Rec := Tabs (X);
begin
return "Tabs(" &
Image (Integer (X)) &
") = ^" &
Image (Integer (Tab.Index_In_Line)) &
Get_Name_String (Tab.Token) &
ASCII.HT &
" at " &
Image (Position (Out_Buf, Tab.Mark)) &
(if Tab.Col = Positive'Last
then ""
else " Col = " & Image (Tab.Col)) &
(if Tab.Num_Blanks = 0 then ""
else " Blanks = " & Image (Tab.Num_Blanks)) &
(if Tab.Is_Fake then " FAKE" else "") &
(if Is_Null (Tab.Tree)
then ""
else "(Tr = " & T_Img (Tab.Tree) & ")") &
(if Is_Null (Tab.Parent) then ""
else "(Pa = " & T_Img (Tab.Parent) & ")");
end Tab_Image;
procedure Put_Buf_With_Marks (Lines_Data : Lines_Data_Rec) is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
Line_Breaks : Line_Break_Vector renames Lines_Data.All_Line_Breaks;
Tabs : Tab_Vector renames Lines_Data.Tabs;
Cur_Line : Line_Break_Index := 1;
Cur_Tab : Tab_Index := 1;
S : constant String := To_String (Out_Buf);
use Dbg_Out;
begin
if not Dbg_Out.Output_Enabled then
return;
end if;
for Cur_Char in S'Range loop
while Cur_Tab <= Last_Index (Tabs)
and then Position (Out_Buf, Tabs (Cur_Tab).Mark) = Cur_Char
loop
Put_Char ('^');
Cur_Tab := Cur_Tab + 1;
end loop;
declare
Indentation : Natural := 0;
begin
while Cur_Line <= Last_Index (Line_Breaks)
and then
Position (Out_Buf, Line_Breaks (Cur_Line).Mark) =
Cur_Char
loop
declare
Break : constant Line_Break := Line_Breaks (Cur_Line);
begin
if Break.Enabled then
Indentation := Break.Indentation;
end if;
if Break.Hard then
Put_Char ('$');
elsif Break.Enabled then
Put_Char ('!');
else
Put_Char ('?');
end if;
Put ("\1", Image (Integer (Break.Level)));
end;
Cur_Line := Cur_Line + 1;
end loop;
Put_Char (S (Cur_Char));
for J in 1 .. Indentation loop
Put_Char ('_');
end loop;
end;
end loop;
end Put_Buf_With_Marks;
procedure Put_Line_Break (Out_Buf : Buffer; Break : Line_Break) is
use Dbg_Out;
begin
Put
("\1\2, \3, \4, \5\n",
String'(1 .. Break.Indentation => '_'),
Image (Position (Out_Buf, Break.Mark)),
(if Break.Enabled then "hard" else "soft"),
(if Break.Enabled then "enabled" else "disabled"),
(if At_Point (Out_Buf, Break.Mark) then "at point"
elsif
Position (Out_Buf, Break.Mark) = Point (Out_Buf) - 1
then
"just before point"
else "not at point"));
end Put_Line_Break;
procedure Put_Line_Breaks
(Out_Buf : Buffer; Line_Breaks : Line_Break_Vector)
is
L : Line_Break_Index;
Line_Num : Natural := 0; -- only counts enabled lines
use Dbg_Out;
begin
Put
("Last_Index (Line_Breaks) = \1\n",
Image (Integer (Last_Index (Line_Breaks))));
for Cur_Line in 1 .. Last_Index (Line_Breaks) loop
if Line_Breaks (Cur_Line).Enabled then
Line_Num := Line_Num + 1;
end if;
Put
("\1:\t\2\3\4",
Image (Line_Num),
String'(1 .. Line_Breaks (Cur_Line).Indentation => '_'),
Image (Position (Out_Buf, Line_Breaks (Cur_Line).Mark)),
(if Line_Breaks (Cur_Line).Enabled then "" else "?"));
Put (" lev=\1", Image (Integer (Line_Breaks (Cur_Line).Level)));
if False then
-- Put ("\t\1", Image (Line_Breaks (Cur_Line).Kind));
Put ("\t\1", Get_Name_String (Line_Breaks (Cur_Line).Template));
end if;
if Line_Breaks (Cur_Line).Enabled
and then Cur_Line /= Last_Index (Line_Breaks)
then
L := Next_Enabled (Line_Breaks, Cur_Line);
Put
("\t\1..\2 len=\3",
Image (Integer (Cur_Line)),
Image (Integer (L)),
Image (Line_Breaks (Cur_Line).Length));
Put ("\t<<\1>>",
To_UTF8 (Line_Text (Out_Buf, Line_Breaks, Cur_Line, L)));
end if;
Put ("#\1", Image (Line_Breaks (Cur_Line).UID));
Put ("\n");
end loop;
for Cur_Line in 1 .. Last_Index (Line_Breaks) loop
Put_Line_Break (Out_Buf, Line_Breaks (Cur_Line));
end loop;
end Put_Line_Breaks;
procedure Format_Debug_Output
(Lines_Data : Lines_Data_Rec; Message : String)
is
Out_Buf : Buffer renames Lines_Data.Out_Buf;
All_Line_Breaks : Line_Break_Vector renames Lines_Data.All_Line_Breaks;
Tabs : Tab_Vector renames Lines_Data.Tabs;
use Dbg_Out;
begin
if not Dbg_Out.Output_Enabled then
return;
end if;
Text_IO.Flush (Text_IO.Standard_Output);
Text_IO.Flush (Text_IO.Standard_Error);
Put ("\n\nFormat_Debug_Output: \1:\n", Message);
Dump_Buf (Out_Buf);
Put_Line_Breaks (Out_Buf, All_Line_Breaks);
for X in 1 .. Last_Index (Tabs) loop
Put ("\1\n", Tab_Image (Out_Buf, Tabs, X));
end loop;
Put_Buf_With_Marks (Lines_Data);
Text_IO.Flush (Text_IO.Standard_Error);
Text_IO.Flush (Text_IO.Standard_Output);
end Format_Debug_Output;
end Generic_Lines_Data;
pragma Style_Checks ("M79");
end Pp.Formatting;
|