1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017
|
-----------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2002-2008, AdaCore --
-- --
-- GPS is free software; you can redistribute it and/or modify it --
-- under the terms of the GNU General Public License as published by --
-- the Free Software Foundation; either version 2 of the License, or --
-- (at your option) any later version. --
-- --
-- This program is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. You should have received --
-- a copy of the GNU General Public License along with this program; --
-- if not, write to the Free Software Foundation, Inc., 59 Temple --
-- Place - Suite 330, Boston, MA 02111-1307, USA. --
-----------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Unchecked_Deallocation;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with File_Utils; use File_Utils;
with GPS.Intl; use GPS.Intl;
with Namet; use Namet;
with Prj.Attr; use Prj.Attr;
with Prj.Com; use Prj.Com;
with Prj.Ext; use Prj.Ext;
with Prj.Part; use Prj.Part;
with Prj.Util; use Prj.Util;
with Projects.Editor.Normalize; use Projects.Editor.Normalize;
with Projects.Graphs; use Projects.Graphs;
with Projects.Registry; use Projects.Registry;
with Remote; use Remote;
with Snames; use Snames;
with Traces; use Traces;
with Types; use Types;
with GNATCOLL.VFS; use GNATCOLL.VFS;
package body Projects.Editor is
Me : constant Debug_Handle := Create ("Projects.Editor");
type Project_Node_Array_Access is access Project_Node_Array;
procedure Free is new Ada.Unchecked_Deallocation
(Project_Node_Array, Project_Node_Array_Access);
--------------
-- Projects --
--------------
function Find_Project_In_Hierarchy
(Root_Project : Project_Type; Name : Namet.Name_Id)
return Project_Node_Id;
-- Find in the project tree starting at Root_Project a subproject called
-- Name.
-- This is different from using directly Prj.Tree.Projects_Htable, since we
-- only look for the project in the hierarchy of Root_Project.
procedure Set_With_Clause_Path
(Tree : Project_Node_Tree_Ref;
With_Clause : Project_Node_Id;
Imported_Project_Location : String;
Imported_Project : Project_Node_Id;
Importing_Project : Project_Node_Id;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean;
Limited_With : Boolean := False);
-- Set the attributes of the with_clause (imported project node, imported
-- project path,....)
procedure Reset_All_Caches (Project : Project_Type);
-- Reset all the caches for the whole project hierarchy
function Add_Imported_Project
(Root_Project : Project_Type;
Project : Project_Type;
Imported_Project : Project_Node_Id;
Imported_Project_Location : GNATCOLL.VFS.Virtual_File;
Report_Errors : Output.Output_Proc := null;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean;
Limited_With : Boolean := False)
return Import_Project_Error;
-- Internal version of Add_Imported_Project
---------------
-- Variables --
---------------
function Find_Scenario_Variable
(Tree : Project_Node_Tree_Ref;
Project : Project_Type;
External_Name : Name_Id) return Project_Node_Id;
-- Return the declaration of the scenario variable associated with
-- the external variable External_Name.
-- In normalized projects, there should be only such variable.
function Length
(Tree : Project_Tree_Ref;
Value : Variable_Value) return Integer;
-- Return the number of elements in Value (1 if Value is of kind Single)
type Environment_Variable_Callback is access procedure
(Project, Parent, Node, Choice : Project_Node_Id);
-- Callback for For_Each_Environment_Variable.
-- The various possible combinations are:
-- Node Parent Choice
-- N_Variable_Reference N_Term in expression Empty_Node
-- N_External_Value N_Term in expression Empty_Node
-- N_Case_Item N_Declarative_Item of matching choice
-- case construction N_Literal_String
-- N_String_Type_Declaration Empty_Node Empty_Node
-- N_Typed_Variable_Declaration N_Declarative_Item Empty_Node
procedure For_Each_Environment_Variable
(Root_Project : Project_Type;
Ext_Variable_Name : Name_Id;
Specific_Choice : Name_Id;
Action : Environment_Variable_Callback);
-- Iterate over all possible references to an external variable. This
-- returns N_External_Value, N_Variable_Reference,
-- N_Typed_Variable_Declaration and N_String_Type_Declaration (the last
-- three are indirect references through a named variable.
type Node_Callback is access procedure (Node : Project_Node_Id);
procedure For_Each_Directory_Node
(Project : Project_Type; Action : Node_Callback);
-- For each node that deals with a procedure, calls Action
procedure Remove_Variable_Declaration
(Tree : Project_Node_Tree_Ref;
Project_Or_Package : Project_Node_Id;
Declaration : Project_Node_Id);
-- Remove the variable declaration from the list of variables in
-- Project_Or_Package.
function Get_All_Possible_Values
(Tree : Project_Node_Tree_Ref;
Variable : Project_Node_Id) return Name_Id_Array;
-- Return the list of all possible values for Variable
----------------
-- Attributes --
----------------
function Create_Attribute
(Tree : Project_Node_Tree_Ref;
Prj_Or_Pkg : Project_Node_Id;
Name : Name_Id;
Index_Name : Name_Id := No_Name;
Kind : Variable_Kind := List) return Project_Node_Id;
-- Create a new attribute.
-- The new declaration is added at the end of the declarative item list for
-- Prj_Or_Pkg (but before any package declaration). No addition is done if
-- Prj_Or_Pkg is Empty_Node.
-- If Index_Name is not "", then if creates an attribute value for a
-- specific index
--
-- If the variable is a list, it also creates the associated
-- N_Literal_String_List node.
function Find_Last_Declaration_Of
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Attr_Name : Namet.Name_Id;
Attr_Index : Namet.Name_Id := No_Name) return Project_Node_Id;
-- Find the last declaration for the attribute Attr_Name, in the
-- declarative list contained in Parent.
-- The returned value is the last such declaration, or Empty_Node if there
-- was none.
-- This returns the current item of the declarative item
procedure Remove_Attribute_Declarations
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Attribute_Name : Name_Id;
Attribute_Index : Name_Id);
-- Remove all declarations for Attribute_Name in the declarative item list
-- of Parent.
-- If Attribute_Index is Any_Attribute, no matching is done on the index.
function Attribute_Matches
(Tree : Project_Node_Tree_Ref;
Node : Project_Node_Id;
Attribute_Name : Name_Id;
Attribute_Index : Name_Id) return Boolean;
-- Return True if Node is an attribute declaration matching Attribute_Name
-- and Attribute_Index.
-- If Attribute_Index is Any_Attribute, no matching is done on the index.
procedure Update_Attribute_Value_In_Scenario
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Values : GNAT.OS_Lib.Argument_List;
Attribute_Index : String := "";
Prepend : Boolean := False);
procedure Update_Attribute_Value_In_Scenario
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Value : String;
Attribute_Index : String := "");
-- Internal version of Update_Attribute_Value_In_Scenario
--------------
-- Packages --
--------------
function Get_Or_Create_Package
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Pkg : String) return Project_Node_Id;
-- Create (or get an existing) package in project.
--
-- ??? Should always create, since we can use a find_* function to get an
-- existing one.
function Find_Package_Declaration
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id; Name : Namet.Name_Id) return Project_Node_Id;
-- Return the package whose name is Name, or Empty_Node if there is none
-----------------
-- Expressions --
-----------------
function Enclose_In_Expression
(Node : Project_Node_Id;
Tree : Project_Node_Tree_Ref) return Project_Node_Id;
-- Enclose the Node inside a N_Expression node, and return this expression
function String_As_Expression
(Value : Name_Id; Tree : Project_Node_Tree_Ref) return Project_Node_Id;
-- Return an N_Expression node that represents the static string Value.
-- ??? Could be implemented in terms of Concatenate.
function Expression_As_String
(Tree : Project_Node_Tree_Ref;
Expression : Project_Node_Id) return Name_Id;
-- Return the string contained in an expression. If the expression contains
-- more than a string literal, No_Name is returned.
-- This also accepts cases when Expression itself is a string_literal
procedure Set_Expression
(Tree : Project_Node_Tree_Ref;
Var_Or_Attribute : Project_Node_Id;
Expr : Project_Node_Id);
-- Set Var as the expression to use for the value of Var. This
-- properly handles standard variables and variables defined through
-- references to external environment variables.
----------
-- Misc --
----------
function Create_Literal_String
(Str : Namet.Name_Id; Tree : Project_Node_Tree_Ref)
return Project_Node_Id;
-- Create a literal string whose value is Str
function Find_Node_By_Name
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Kind : Project_Node_Kind;
Name : Name_Id) return Project_Node_Id;
-- Find a node given its name
procedure Remove_Node
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Node : Project_Node_Id);
-- Remove Node from the declaration list in Parent.
-- This doesn't search recursively inside nested packages, case
-- constructions, ...
procedure Move_From_Common_To_Case_Construct
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Pkg : Project_Node_Id;
Case_Construct : in out Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute_Name : Namet.Name_Id;
Attribute_Index : Namet.Name_Id := No_Name);
-- Move any declaration for the attribute from the common part of the
-- project into each branch of the nested case construct. Nothing is done
-- if there is no such declaration.
procedure Common_Setup_For_Update_Attribute
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Attribute : Attribute_Pkg;
Attribute_Index : String;
Rename_Prj : out Project_Node_Id;
Pkg : out Project_Node_Id;
Attr_Name : out Name_Id;
Attr_Index : out Name_Id;
Case_Construct : out Project_Node_Id);
-- Common initialization function for all functions that update the
-- attributes. The output parameters represent the project/package and
-- attributes that should be modified, taking into account renaming
-- clauses.
procedure Add_Node_To_List
(To : in out Project_Node_Array_Access;
Last : in out Natural;
Node : Project_Node_Id);
-- Add a new node into the list of nodes To.
-- To is resized as needed
------------
-- Length --
------------
function Length
(Tree : Prj.Project_Tree_Ref; List : Prj.String_List_Id) return Natural
is
L : String_List_Id := List;
Count : Natural := 0;
begin
while L /= Nil_String loop
Count := Count + 1;
L := Tree.String_Elements.Table (L).Next;
end loop;
return Count;
end Length;
---------------------------
-- Create_Literal_String --
---------------------------
function Create_Literal_String
(Str : Namet.Name_Id; Tree : Project_Node_Tree_Ref)
return Project_Node_Id
is
Node : Project_Node_Id;
begin
Node := Default_Project_Node (Tree, N_Literal_String, Prj.Single);
Set_Next_Literal_String (Node, Tree, Empty_Node);
Set_String_Value_Of (Node, Tree, Str);
return Node;
end Create_Literal_String;
--------------------------
-- String_As_Expression --
--------------------------
function String_As_Expression
(Value : Name_Id; Tree : Project_Node_Tree_Ref) return Project_Node_Id is
begin
return Enclose_In_Expression (Create_Literal_String (Value, Tree), Tree);
end String_As_Expression;
---------------------------
-- Enclose_In_Expression --
---------------------------
function Enclose_In_Expression
(Node : Project_Node_Id;
Tree : Project_Node_Tree_Ref) return Project_Node_Id
is
Expr : constant Project_Node_Id :=
Default_Project_Node (Tree, N_Expression, Single);
begin
Set_First_Term (Expr, Tree, Default_Project_Node (Tree, N_Term, Single));
Set_Current_Term (First_Term (Expr, Tree), Tree, Node);
return Expr;
end Enclose_In_Expression;
------------------------------
-- Find_Package_Declaration --
------------------------------
function Find_Package_Declaration
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id; Name : Namet.Name_Id)
return Project_Node_Id is
begin
return Find_Node_By_Name (Tree, Project, N_Package_Declaration, Name);
end Find_Package_Declaration;
---------------------------
-- Get_Or_Create_Package --
---------------------------
function Get_Or_Create_Package
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Pkg : String) return Project_Node_Id
is
Pack : Project_Node_Id;
N : Name_Id;
begin
N := Get_String (Pkg);
-- Check if the package already exists
Pack := First_Package_Of (Project, Tree);
while Pack /= Empty_Node loop
if Prj.Tree.Name_Of (Pack, Tree) = N then
return Pack;
end if;
Pack := Next_Package_In_Project (Pack, Tree);
end loop;
-- Create the package and add it to the declarative item
Pack := Default_Project_Node (Tree, N_Package_Declaration);
Set_Name_Of (Pack, Tree, N);
-- Find the correct package id to use
Set_Package_Id_Of (Pack, Tree, Package_Node_Id_Of (N));
-- Add it to the list of packages
Set_Next_Package_In_Project
(Pack, Tree, First_Package_Of (Project, Tree));
Set_First_Package_Of (Project, Tree, Pack);
Add_At_End (Tree, Project_Declaration_Of (Project, Tree), Pack);
return Pack;
end Get_Or_Create_Package;
-----------------------
-- Find_Node_By_Name --
-----------------------
function Find_Node_By_Name
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Kind : Project_Node_Kind;
Name : Name_Id) return Project_Node_Id
is
Decl : Project_Node_Id := First_Declarative_Item_Of
(Project_Declaration_Of (Project, Tree), Tree);
Current : Project_Node_Id;
begin
while Decl /= Empty_Node loop
Current := Current_Item_Node (Decl, Tree);
if Kind_Of (Current, Tree) = Kind
and then Prj.Tree.Name_Of (Current, Tree) = Name
then
return Current;
end if;
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
return Empty_Node;
end Find_Node_By_Name;
----------------------
-- Create_Attribute --
----------------------
function Create_Attribute
(Tree : Project_Node_Tree_Ref;
Prj_Or_Pkg : Project_Node_Id;
Name : Name_Id;
Index_Name : Name_Id := No_Name;
Kind : Variable_Kind := List) return Project_Node_Id
is
Node : constant Project_Node_Id :=
Default_Project_Node (Tree, N_Attribute_Declaration, Kind);
begin
Set_Name_Of (Node, Tree, Name);
if Index_Name /= No_Name then
Set_Associative_Array_Index_Of (Node, Tree, Index_Name);
end if;
if Prj_Or_Pkg /= Empty_Node then
Add_At_End (Tree, Prj_Or_Pkg, Node);
end if;
return Node;
end Create_Attribute;
------------
-- Length --
------------
function Length
(Tree : Project_Tree_Ref;
Value : Variable_Value) return Integer is
begin
case Value.Kind is
when Undefined => return 0;
when Single => return 1;
when List => return Length (Tree, Value.Values);
end case;
end Length;
-----------------
-- Remove_Node --
-----------------
procedure Remove_Node
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Node : Project_Node_Id)
is
P : Project_Node_Id := Parent;
Decl, Next : Project_Node_Id;
begin
-- ??? Should reset the list of Variables and Types if the node matches
if Kind_Of (Parent, Tree) = N_Project then
P := Project_Declaration_Of (Parent, Tree);
end if;
Decl := First_Declarative_Item_Of (P, Tree);
if Current_Item_Node (Decl, Tree) = Node then
Set_First_Declarative_Item_Of
(P, Tree, Next_Declarative_Item (Decl, Tree));
end if;
while Decl /= Empty_Node loop
Next := Next_Declarative_Item (Decl, Tree);
if Next /= Empty_Node
and then Current_Item_Node (Next, Tree) = Node
then
Set_Next_Declarative_Item
(Decl, Tree, Next_Declarative_Item (Next, Tree));
exit;
end if;
Decl := Next;
end loop;
end Remove_Node;
--------------------
-- Set_Expression --
--------------------
procedure Set_Expression
(Tree : Project_Node_Tree_Ref;
Var_Or_Attribute : Project_Node_Id;
Expr : Project_Node_Id)
is
E : Project_Node_Id;
begin
E := Expression_Of (Var_Or_Attribute, Tree);
if E = Empty_Node then
Set_Expression_Of (Var_Or_Attribute, Tree, Expr);
else
case Kind_Of (E, Tree) is
when N_Expression =>
Set_Expression_Of (Var_Or_Attribute, Tree, Expr);
when N_External_Value =>
Set_External_Default_Of (E, Tree, Expr);
when others =>
raise Program_Error;
end case;
end if;
end Set_Expression;
----------------------------
-- Find_Scenario_Variable --
----------------------------
function Find_Scenario_Variable
(Tree : Project_Node_Tree_Ref;
Project : Project_Type;
External_Name : Name_Id)
return Project_Node_Id
is
Name : constant String := Get_String (External_Name);
Decl : Project_Node_Id := First_Declarative_Item_Of
(Project_Declaration_Of (Project.Node, Tree), Tree);
Current : Project_Node_Id;
begin
while Decl /= Empty_Node loop
Current := Current_Item_Node (Decl, Tree);
if Kind_Of (Current, Tree) = N_Typed_Variable_Declaration
and then Is_External_Variable (Current, Tree)
then
Get_Name_String (External_Reference_Of (Current, Tree));
if Name_Buffer (1 .. Name_Len) = Name then
return Current;
end if;
end if;
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
return Empty_Node;
end Find_Scenario_Variable;
-------------------------------
-- Find_Project_In_Hierarchy --
-------------------------------
function Find_Project_In_Hierarchy
(Root_Project : Project_Type; Name : Namet.Name_Id) return Project_Node_Id
is
Iter : Imported_Project_Iterator := Start (Root_Project);
begin
while Current (Iter) /= No_Project loop
if Prj.Tree.Name_Of (Current (Iter).Node, Root_Project.Tree) =
Name
then
return Current (Iter).Node;
end if;
Next (Iter);
end loop;
return Empty_Node;
end Find_Project_In_Hierarchy;
--------------
-- Value_Of --
--------------
function Value_Of
(Tree : Project_Node_Tree_Ref;
Var : Scenario_Variable) return String_List_Iterator
is
V, Expr : Project_Node_Id;
begin
case Kind_Of (Var.String_Type, Tree) is
when N_String_Type_Declaration =>
return (Current => First_Literal_String (Var.String_Type, Tree));
when N_Attribute_Declaration
| N_Typed_Variable_Declaration
| N_Variable_Declaration =>
V := Expression_Of (Var.String_Type, Tree);
case Kind_Of (V, Tree) is
when N_Expression =>
Expr := First_Term (V, Tree);
pragma Assert (Kind_Of (Expr, Tree) = N_Term);
Expr := Current_Term (Expr, Tree);
case Kind_Of (Expr, Tree) is
when N_Literal_String_List =>
return
(Current => First_Expression_In_List (Expr, Tree));
when N_External_Value =>
return
(Current => External_Default_Of (Expr, Tree));
when others =>
return (Current => V);
end case;
when others =>
raise Program_Error;
end case;
when others =>
raise Program_Error;
end case;
end Value_Of;
-----------------
-- Type_Values --
-----------------
function Type_Values
(Tree : Project_Node_Tree_Ref;
Var_Or_Type : Project_Node_Id) return String_List_Iterator
is
Typ : Project_Node_Id := Var_Or_Type;
begin
if Kind_Of (Var_Or_Type, Tree) = N_Typed_Variable_Declaration then
Typ := String_Type_Of (Var_Or_Type, Tree);
end if;
return (Current => First_Literal_String (Typ, Tree));
end Type_Values;
----------
-- Data --
----------
function Data (Iter : String_List_Iterator) return Project_Node_Id is
begin
pragma Assert (Iter.Current /= Empty_Node);
return Iter.Current;
end Data;
----------
-- Data --
----------
function Data
(Tree : Project_Node_Tree_Ref;
Iter : String_List_Iterator) return Namet.Name_Id is
begin
pragma Assert (Kind_Of (Iter.Current, Tree) = N_Literal_String);
return String_Value_Of (Iter.Current, Tree);
end Data;
----------
-- Done --
----------
function Done (Iter : String_List_Iterator) return Boolean is
begin
return Iter.Current = Empty_Node;
end Done;
----------
-- Next --
----------
function Next
(Tree : Project_Node_Tree_Ref;
Iter : String_List_Iterator) return String_List_Iterator is
begin
pragma Assert (Iter.Current /= Empty_Node);
case Kind_Of (Iter.Current, Tree) is
when N_Literal_String =>
return (Current => Next_Literal_String (Iter.Current, Tree));
when N_Expression =>
return (Current => Next_Expression_In_List (Iter.Current, Tree));
when others =>
raise Program_Error;
end case;
end Next;
-------------------------
-- Get_Attribute_Value --
-------------------------
function Get_Attribute_Value
(Project : Project_Type;
Attribute : Attribute_Pkg;
Index : String := "";
Use_Extended : Boolean := False) return Variable_Value
is
Sep : constant Natural := Split_Package (Attribute);
Attribute_Name : constant String :=
String (Attribute (Sep + 1 .. Attribute'Last));
Pkg_Name : constant String :=
String (Attribute (Attribute'First .. Sep - 1));
Project_View : constant Project_Id := Get_View (Project);
Pkg : Package_Id := No_Package;
Value : Variable_Value := Nil_Variable_Value;
Var : Variable_Id;
Arr : Array_Id;
Elem : Array_Element_Id;
N : Name_Id;
begin
if Project_View = Prj.No_Project then
return Nil_Variable_Value;
end if;
if Pkg_Name /= "" then
Pkg := Value_Of
(Get_String (Pkg_Name),
In_Packages =>
Project.View_Tree.Projects.Table (Project_View).Decl.Packages,
In_Tree => Project.View_Tree);
if Pkg = No_Package then
if Use_Extended
and then Extended_Project (Project) /= No_Project
then
return Get_Attribute_Value
(Extended_Project (Project), Attribute, Index, Use_Extended);
else
return Nil_Variable_Value;
end if;
end if;
Var := Project.View_Tree.Packages.Table (Pkg).Decl.Attributes;
Arr := Project.View_Tree.Packages.Table (Pkg).Decl.Arrays;
else
Var := Project.View_Tree.Projects.Table
(Project_View).Decl.Attributes;
Arr := Project.View_Tree.Projects.Table (Project_View).Decl.Arrays;
end if;
N := Get_String (Attribute_Name);
if Index /= "" then
Elem := Value_Of (N, In_Arrays => Arr, In_Tree => Project.View_Tree);
if Elem /= No_Array_Element then
Value := Value_Of (Index => Get_String (Index), In_Array => Elem,
In_Tree => Project.View_Tree);
end if;
else
Value := Value_Of (N, Var, In_Tree => Project.View_Tree);
end if;
if Value = Nil_Variable_Value
and then Use_Extended
and then Extended_Project (Project) /= No_Project
then
return Get_Attribute_Value
(Extended_Project (Project), Attribute, Index, Use_Extended);
else
return Value;
end if;
end Get_Attribute_Value;
--------------------------
-- Attribute_Is_Defined --
--------------------------
function Attribute_Is_Defined
(Project : Project_Type;
Attribute : Attribute_Pkg;
Index : String := "") return Boolean
is
Sep : constant Natural := Split_Package (Attribute);
Attribute_Name : constant String :=
String (Attribute (Sep + 1 .. Attribute'Last));
Pkg_Name : constant String :=
String (Attribute (Attribute'First .. Sep - 1));
Project_View : constant Project_Id := Get_View (Project);
Pkg : Package_Id := No_Package;
Var : Variable_Id;
Arr : Array_Id;
N : Name_Id;
begin
if Project_View = Prj.No_Project then
return False;
end if;
if Pkg_Name /= "" then
Pkg := Value_Of
(Get_String (Pkg_Name),
In_Packages =>
Project.View_Tree.Projects.Table (Project_View).Decl.Packages,
In_Tree => Project.View_Tree);
if Pkg = No_Package then
return False;
end if;
Var := Project.View_Tree.Packages.Table (Pkg).Decl.Attributes;
Arr := Project.View_Tree.Packages.Table (Pkg).Decl.Arrays;
else
Var :=
Project.View_Tree.Projects.Table (Project_View).Decl.Attributes;
Arr := Project.View_Tree.Projects.Table (Project_View).Decl.Arrays;
end if;
N := Get_String (Attribute_Name);
if Index /= "" then
return Value_Of (N, In_Arrays => Arr, In_Tree => Project.View_Tree)
/= No_Array_Element;
else
return not Value_Of (N, Var, Project.View_Tree).Default;
end if;
end Attribute_Is_Defined;
----------------------------------------
-- Update_Attribute_Value_In_Scenario --
----------------------------------------
procedure Update_Attribute_Value_In_Scenario
(Project : Project_Type;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Values : GNAT.OS_Lib.Argument_List;
Attribute_Index : String := "";
Prepend : Boolean := False)
is
Sep : constant Natural := Split_Package (Attribute);
Pkg_Name : constant String :=
String (Attribute (Attribute'First .. Sep - 1));
Pkg_Prj : constant Project_Type :=
Find_Project_Of_Package (Project, Pkg_Name);
begin
if not Is_Editable (Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Pkg_Prj);
Update_Attribute_Value_In_Scenario
(Project.Tree, Pkg_Prj.Node, Scenario_Variables, Attribute,
Values, Attribute_Index, Prepend);
Set_Project_Modified (Pkg_Prj, True);
end Update_Attribute_Value_In_Scenario;
----------------------------------------
-- Update_Attribute_Value_In_Scenario --
----------------------------------------
procedure Update_Attribute_Value_In_Scenario
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Values : GNAT.OS_Lib.Argument_List;
Attribute_Index : String := "";
Prepend : Boolean := False)
is
Attribute_N : Name_Id;
List : Project_Node_Id := Empty_Node;
Pkg, Term, Expr : Project_Node_Id;
Rename_Prj : Project_Node_Id;
Case_Construct : Project_Node_Id;
Index : Name_Id;
procedure Add_Or_Replace (Case_Item : Project_Node_Id);
-- Add or replace the attribute Attribute_Name in the declarative list
-- for Case_Item
--------------------
-- Add_Or_Replace --
--------------------
procedure Add_Or_Replace (Case_Item : Project_Node_Id) is
Previous_Decl, Decl, Expr : Project_Node_Id;
begin
Previous_Decl := Find_Last_Declaration_Of
(Tree, Case_Item, Attribute_N, Index);
-- Do we already have some declarations for this attribute ?
-- If we found a previous declaration, update it
if Previous_Decl /= Empty_Node then
Previous_Decl := Expression_Of (Previous_Decl, Tree);
if Prepend then
Expr := First_Expression_In_List (List, Tree);
while Next_Expression_In_List (Expr, Tree) /= Empty_Node loop
Expr := Next_Expression_In_List (Expr, Tree);
end loop;
Set_Next_Expression_In_List
(Expr, Tree, First_Expression_In_List
(Current_Term (First_Term (Previous_Decl, Tree), Tree),
Tree));
else
Set_Next_Expression_In_List (Previous_Decl, Tree, Empty_Node);
Set_Next_Term
(First_Term (Previous_Decl, Tree), Tree, Empty_Node);
end if;
Set_Current_Term (First_Term (Previous_Decl, Tree), Tree, List);
-- Else create the new instruction to be added to the project
else
Decl := Create_Attribute (Tree, Case_Item, Attribute_N, Index);
Expr := Enclose_In_Expression (List, Tree);
if Prepend then
Set_Next_Term
(First_Term (Expr, Tree), Tree,
Default_Project_Node (Tree, N_Term, Prj.List));
Term := Next_Term (First_Term (Expr, Tree), Tree);
Set_Current_Term
(Term,
Tree,
Default_Project_Node
(Tree, N_Attribute_Reference, Prj.List));
Term := Current_Term (Term, Tree);
Set_Name_Of (Term, Tree, Attribute_N);
Set_Project_Node_Of (Term, Tree, Rename_Prj);
end if;
Set_Expression_Of (Decl, Tree, Expr);
end if;
end Add_Or_Replace;
begin
Common_Setup_For_Update_Attribute
(Tree, Project, Attribute, Attribute_Index,
Rename_Prj, Pkg, Attribute_N, Index, Case_Construct);
Move_From_Common_To_Case_Construct
(Tree, Rename_Prj, Pkg, Case_Construct, Scenario_Variables,
Attribute_N, Index);
-- Create the string list for the new values.
-- This can be prepended later on to the existing list of values.
List := Default_Project_Node (Tree, N_Literal_String_List, Prj.List);
for A in reverse Values'Range loop
Expr := String_As_Expression (Get_String (Values (A).all), Tree);
Set_Next_Expression_In_List
(Expr, Tree, First_Expression_In_List (List, Tree));
Set_First_Expression_In_List (List, Tree, Expr);
end loop;
For_Each_Scenario_Case_Item
(Tree, Rename_Prj, Pkg, Case_Construct, Scenario_Variables,
Add_Or_Replace'Unrestricted_Access);
end Update_Attribute_Value_In_Scenario;
----------------------------------------
-- Update_Attribute_Value_In_Scenario --
----------------------------------------
procedure Update_Attribute_Value_In_Scenario
(Project : Project_Type;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Value : String;
Attribute_Index : String := "")
is
Sep : constant Natural := Split_Package (Attribute);
Pkg_Prj : Project_Type := Project;
begin
if not Is_Editable (Project) then
Trace (Me, "Project is not editable");
return;
end if;
if Sep > Attribute'First then
Pkg_Prj := Find_Project_Of_Package
(Project, String (Attribute (Attribute'First .. Sep - 1)));
end if;
Projects.Editor.Normalize.Normalize (Pkg_Prj);
Update_Attribute_Value_In_Scenario
(Project.Tree, Pkg_Prj.Node, Scenario_Variables, Attribute,
Value, Attribute_Index);
Set_Project_Modified (Pkg_Prj, True);
end Update_Attribute_Value_In_Scenario;
----------------------------------------
-- Update_Attribute_Value_In_Scenario --
----------------------------------------
procedure Update_Attribute_Value_In_Scenario
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Value : String;
Attribute_Index : String := "")
is
Attribute_N : Name_Id;
Val : Project_Node_Id;
Pkg : Project_Node_Id;
Rename_Prj : Project_Node_Id := Project;
Case_Construct : Project_Node_Id;
Index : Name_Id;
procedure Add_Or_Replace (Case_Item : Project_Node_Id);
-- Add or replace the attribute Attribute_Name in the declarative list
-- for Case_Item
--------------------
-- Add_Or_Replace --
--------------------
procedure Add_Or_Replace (Case_Item : Project_Node_Id) is
Previous_Decl, Decl : Project_Node_Id;
begin
Previous_Decl := Find_Last_Declaration_Of
(Tree, Case_Item, Attribute_N, Index);
-- If we found a previous declaration, update it
if Previous_Decl /= Empty_Node then
Previous_Decl := Expression_Of (Previous_Decl, Tree);
Set_Current_Term (First_Term (Previous_Decl, Tree), Tree, Val);
-- Else create the new instruction to be added to the project
else
Decl := Create_Attribute
(Tree, Case_Item, Attribute_N, Index, Prj.Single);
Set_Expression_Of (Decl, Tree, Enclose_In_Expression (Val, Tree));
end if;
end Add_Or_Replace;
begin
Common_Setup_For_Update_Attribute
(Tree, Project, Attribute, Attribute_Index,
Rename_Prj, Pkg, Attribute_N, Index, Case_Construct);
Move_From_Common_To_Case_Construct
(Tree, Rename_Prj, Pkg, Case_Construct, Scenario_Variables,
Attribute_N, Index);
-- Create the node for the new value
Val := Create_Literal_String (Get_String (Value), Tree);
For_Each_Scenario_Case_Item
(Tree, Rename_Prj, Pkg, Case_Construct, Scenario_Variables,
Add_Or_Replace'Unrestricted_Access);
end Update_Attribute_Value_In_Scenario;
---------------------------------------
-- Common_Setup_For_Update_Attribute --
---------------------------------------
procedure Common_Setup_For_Update_Attribute
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Attribute : Attribute_Pkg;
Attribute_Index : String;
Rename_Prj : out Project_Node_Id;
Pkg : out Project_Node_Id;
Attr_Name : out Name_Id;
Attr_Index : out Name_Id;
Case_Construct : out Project_Node_Id)
is
Sep : constant Natural := Split_Package (Attribute);
Pkg_Name : constant String :=
String (Attribute (Attribute'First .. Sep - 1));
Attribute_Name : constant String :=
String (Attribute (Sep + 1 .. Attribute'Last));
begin
Attr_Name := Get_String (Attribute_Name);
if Attribute_Index /= "" then
Attr_Index := Get_String (Attribute_Index);
else
Attr_Index := No_Name;
end if;
if Pkg_Name /= "" then
Pkg := Get_Or_Create_Package (Tree, Project, Pkg_Name);
-- If we have a renamed package, modify the target package
Rename_Prj := Project_Of_Renamed_Package_Of (Pkg, Tree);
if Rename_Prj /= Empty_Node then
Pkg := Get_Or_Create_Package (Tree, Rename_Prj, Pkg_Name);
else
Rename_Prj := Project;
end if;
else
Rename_Prj := Project;
Pkg := Empty_Node;
end if;
Case_Construct := Find_Case_Statement (Tree, Rename_Prj, Pkg);
end Common_Setup_For_Update_Attribute;
-------------------------------------
-- Set_Attribute_Value_In_Scenario --
-------------------------------------
procedure Set_Attribute_Value_In_Scenario
(Project : Project_Type;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Values : Associative_Array_Values)
is
Rename_Prj, Pkg, Case_Construct, Val : Project_Node_Id;
Attr_Name, Attr_Index : Name_Id;
First : Project_Node_Id := Empty_Node;
Next : Project_Node_Id := Empty_Node;
N : Project_Node_Id;
procedure Add_Or_Replace (Case_Item : Project_Node_Id);
-- Add or replace the attribute Attribute_Name in the declarative list
-- for Case_Item
--------------------
-- Add_Or_Replace --
--------------------
procedure Add_Or_Replace (Case_Item : Project_Node_Id) is
begin
Add_In_Front
(Project.Tree, Case_Item, Clone_Node (Project.Tree, First, True));
end Add_Or_Replace;
begin
if not Is_Editable (Project) then
Trace (Me, "Project is not editable");
return;
end if;
-- The call to Delete_Attribute will normalize the right project
Delete_Attribute
(Project, Scenario_Variables, Attribute, Any_Attribute);
Common_Setup_For_Update_Attribute
(Project.Tree, Project.Node, Attribute, "",
Rename_Prj, Pkg, Attr_Name, Attr_Index, Case_Construct);
for V in Values'Range loop
Attr_Index := Get_String (Values (V).Index.all);
Val := Create_Literal_String
(Get_String (Values (V).Value.all), Project.Tree);
N := Default_Project_Node
(Project.Tree, N_Declarative_Item, Prj.Single);
if First = Empty_Node then
First := N;
else
Set_Next_Declarative_Item (Next, Project.Tree, N);
end if;
Next := N;
Set_Current_Item_Node
(N, Project.Tree,
Create_Attribute (Tree => Project.Tree,
Prj_Or_Pkg => Empty_Node,
Name => Attr_Name,
Index_Name => Attr_Index,
Kind => Prj.Single));
Set_Expression_Of
(Current_Item_Node (N, Project.Tree), Project.Tree,
Enclose_In_Expression (Val, Project.Tree));
end loop;
For_Each_Scenario_Case_Item
(Project.Tree, Rename_Prj, Pkg, Case_Construct, Scenario_Variables,
Add_Or_Replace'Unrestricted_Access);
end Set_Attribute_Value_In_Scenario;
------------------------------
-- Find_Last_Declaration_Of --
------------------------------
function Find_Last_Declaration_Of
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Attr_Name : Name_Id;
Attr_Index : Name_Id := No_Name) return Project_Node_Id
is
Decl, Expr : Project_Node_Id;
Result : Project_Node_Id := Empty_Node;
begin
Decl := First_Declarative_Item_Of (Parent, Tree);
while Decl /= Empty_Node loop
Expr := Current_Item_Node (Decl, Tree);
if Attribute_Matches (Tree, Expr, Attr_Name, Attr_Index) then
Result := Expr;
end if;
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
return Result;
end Find_Last_Declaration_Of;
----------------------------------------
-- Move_From_Common_To_Case_Construct --
----------------------------------------
procedure Move_From_Common_To_Case_Construct
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Pkg : Project_Node_Id;
Case_Construct : in out Project_Node_Id;
Scenario_Variables : Scenario_Variable_Array;
Attribute_Name : Namet.Name_Id;
Attribute_Index : Namet.Name_Id := No_Name)
is
Parent : Project_Node_Id;
Node, Tmp : Project_Node_Id;
Case_Items : Project_Node_Array_Access :=
new Project_Node_Array (1 .. 100);
Case_Items_Last : Natural := Case_Items'First - 1;
procedure Add_Item (Case_Item : Project_Node_Id);
-- Add the declaration Node to Case_Item, in front, since the
-- declaration necessarily occured before the case item
--------------
-- Add_Item --
--------------
procedure Add_Item (Case_Item : Project_Node_Id) is
begin
Add_Node_To_List (Case_Items, Case_Items_Last, Case_Item);
end Add_Item;
begin
if Pkg /= Empty_Node then
Parent := Pkg;
else
Parent := Project_Declaration_Of (Project, Tree);
end if;
-- First, create the nested case for the scenario, and memorize each of
-- them. This will easily allow to keep the order of all the
-- declarations for this attribute that are currently in the common part
For_Each_Scenario_Case_Item
(Tree, Project, Pkg, Case_Construct, Scenario_Variables, null);
For_Each_Matching_Case_Item
(Tree, Project, Pkg, Case_Construct,
All_Case_Items, Add_Item'Unrestricted_Access);
-- Nothing to do if there are no case items
if Case_Items_Last > Case_Items'First then
Node := First_Declarative_Item_Of (Parent, Tree);
while Node /= Empty_Node loop
if Attribute_Matches
(Tree, Current_Item_Node (Node, Tree),
Attribute_Name, Attribute_Index)
then
for Parent in Case_Items'First .. Case_Items_Last loop
Tmp := Default_Project_Node (Tree, N_Declarative_Item);
Set_Current_Item_Node
(Tmp, Tree,
Clone_Node (Tree, Current_Item_Node (Node, Tree), True));
if Kind_Of (Case_Items (Parent), Tree) /=
N_Declarative_Item
then
Set_Next_Declarative_Item
(Tmp, Tree,
First_Declarative_Item_Of (Case_Items (Parent), Tree));
Set_First_Declarative_Item_Of
(Case_Items (Parent), Tree, Tmp);
else
Set_Next_Declarative_Item
(Tmp, Tree,
Next_Declarative_Item (Case_Items (Parent), Tree));
Set_Next_Declarative_Item
(Case_Items (Parent), Tree, Tmp);
end if;
Case_Items (Parent) := Tmp;
end loop;
end if;
Node := Next_Declarative_Item (Node, Tree);
end loop;
Free (Case_Items);
Remove_Attribute_Declarations
(Tree, Parent, Attribute_Name, Attribute_Index);
end if;
end Move_From_Common_To_Case_Construct;
-----------------------------------
-- Remove_Attribute_Declarations --
-----------------------------------
procedure Remove_Attribute_Declarations
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Attribute_Name : Name_Id;
Attribute_Index : Name_Id)
is
Decl : Project_Node_Id := First_Declarative_Item_Of (Parent, Tree);
Previous : Project_Node_Id := Empty_Node;
begin
while Decl /= Empty_Node loop
if Attribute_Matches
(Tree, Current_Item_Node (Decl, Tree),
Attribute_Name, Attribute_Index)
then
if Previous = Empty_Node then
Set_First_Declarative_Item_Of
(Parent, Tree, Next_Declarative_Item (Decl, Tree));
else
Set_Next_Declarative_Item
(Previous, Tree, Next_Declarative_Item (Decl, Tree));
end if;
else
Previous := Decl;
end if;
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
end Remove_Attribute_Declarations;
----------------------
-- Add_Node_To_List --
----------------------
procedure Add_Node_To_List
(To : in out Project_Node_Array_Access;
Last : in out Natural;
Node : Project_Node_Id)
is
Old : Project_Node_Array_Access := To;
begin
-- ??? Should use Basic_Types.Add
if Last = To'Last then
To := new Project_Node_Array (1 .. Old'Last * 2);
To (1 .. Old'Length) := Old.all;
Free (Old);
end if;
Last := Last + 1;
To (Last) := Node;
end Add_Node_To_List;
-----------------------
-- Attribute_Matches --
-----------------------
function Attribute_Matches
(Tree : Project_Node_Tree_Ref;
Node : Project_Node_Id;
Attribute_Name : Name_Id;
Attribute_Index : Name_Id) return Boolean is
begin
return Kind_Of (Node, Tree) = N_Attribute_Declaration
and then Prj.Tree.Name_Of (Node, Tree) = Attribute_Name
and then
(Attribute_Index = Any_Attribute_Name
or else (Attribute_Index = No_Name
and then Associative_Array_Index_Of (Node, Tree) = No_Name)
or else (Attribute_Index /= No_Name
and then Associative_Array_Index_Of (Node, Tree) /= No_Name
and then Associative_Array_Index_Of (Node, Tree) =
Attribute_Index));
end Attribute_Matches;
----------------------
-- Delete_Attribute --
----------------------
procedure Delete_Attribute
(Project : Project_Type;
Scenario_Variables : Scenario_Variable_Array;
Attribute : Attribute_Pkg;
Attribute_Index : String := "")
is
Sep : constant Natural := Split_Package (Attribute);
Pkg_Name : constant String :=
String (Attribute (Attribute'First .. Sep - 1));
Attribute_Name : constant String :=
String (Attribute (Sep + 1 .. Attribute'Last));
Attribute_N : Name_Id;
Pkg : Project_Node_Id;
Pkg_Prj : constant Project_Type :=
Find_Project_Of_Package (Project, Pkg_Name);
Case_Construct : Project_Node_Id;
Index : Name_Id := No_Name;
procedure Delete_Attr (Case_Item : Project_Node_Id);
-- Remove all definitions for the attribute in the case item
-----------------
-- Delete_Attr --
-----------------
procedure Delete_Attr (Case_Item : Project_Node_Id) is
begin
Remove_Attribute_Declarations
(Project.Tree, Case_Item, Attribute_N, Index);
end Delete_Attr;
begin
if not Is_Editable (Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Pkg_Prj);
Attribute_N := Get_String (Attribute_Name);
if Pkg_Name /= "" then
Pkg := Find_Package_Declaration
(Project.Tree, Pkg_Prj.Node, Get_String (Pkg_Name));
-- If the package doesn't exist, no need to do anything
if Pkg = Empty_Node then
return;
end if;
else
Pkg := Empty_Node;
end if;
if Attribute_Index /= "" then
Index := Get_String (Attribute_Index);
end if;
Case_Construct := Find_Case_Statement (Project.Tree, Pkg_Prj.Node, Pkg);
Move_From_Common_To_Case_Construct
(Project.Tree, Pkg_Prj.Node, Pkg, Case_Construct, Scenario_Variables,
Attribute_N, Index);
For_Each_Scenario_Case_Item
(Project.Tree, Pkg_Prj.Node, Pkg, Case_Construct, Scenario_Variables,
Delete_Attr'Unrestricted_Access);
Set_Project_Modified (Pkg_Prj, True);
end Delete_Attribute;
---------------------------
-- Create_Typed_Variable --
---------------------------
function Create_Typed_Variable
(Tree : Project_Node_Tree_Ref;
Prj_Or_Pkg : Project_Node_Id;
Name : String;
Typ : Project_Node_Id;
Add_Before_First_Case_Or_Pkg : Boolean := False) return Project_Node_Id
is
Node : constant Project_Node_Id :=
Default_Project_Node (Tree, N_Typed_Variable_Declaration, Prj.Single);
begin
Set_Name_Of (Node, Tree, Get_String (Name));
Set_String_Type_Of (Node, Tree, Typ);
Add_At_End (Tree, Prj_Or_Pkg, Node,
Add_Before_First_Pkg => Add_Before_First_Case_Or_Pkg,
Add_Before_First_Case => Add_Before_First_Case_Or_Pkg);
Set_Next_Variable (Node, Tree, First_Variable_Of (Prj_Or_Pkg, Tree));
Set_First_Variable_Of (Prj_Or_Pkg, Tree, Node);
return Node;
end Create_Typed_Variable;
------------------------
-- Add_Possible_Value --
------------------------
procedure Add_Possible_Value
(Tree : Project_Node_Tree_Ref;
Typ : Project_Node_Id;
Choice : Name_Id)
is
Str, S2 : Project_Node_Id;
begin
pragma Assert (Kind_Of (Typ, Tree) = N_String_Type_Declaration);
Str := First_Literal_String (Typ, Tree);
while Str /= Empty_Node loop
if String_Value_Of (Str, Tree) = Choice then
return;
end if;
Str := Next_Literal_String (Str, Tree);
end loop;
S2 := Create_Literal_String (Choice, Tree);
Set_Next_Literal_String (S2, Tree, First_Literal_String (Typ, Tree));
Set_First_Literal_String (Typ, Tree, S2);
end Add_Possible_Value;
---------------------------
-- Find_Type_Declaration --
---------------------------
function Find_Type_Declaration
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Name : Namet.Name_Id) return Project_Node_Id is
begin
return Find_Node_By_Name
(Tree, Project, N_String_Type_Declaration, Name);
end Find_Type_Declaration;
-----------------
-- Create_Type --
-----------------
function Create_Type
(Tree : Project_Node_Tree_Ref;
Prj_Or_Pkg : Project_Node_Id;
Name : String) return Project_Node_Id
is
Node : Project_Node_Id;
begin
Node := Default_Project_Node (Tree, N_String_Type_Declaration);
Set_Name_Of (Node, Tree, Get_String (Name));
Add_At_End (Tree, Prj_Or_Pkg, Node, True, True);
return Node;
end Create_Type;
------------------
-- Remove_Value --
------------------
procedure Remove_Value
(Root_Project : Project_Type;
Ext_Variable_Name : String;
Value_Name : String)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
Delete_Variable : exception;
Type_Decl : Project_Node_Id := Empty_Node;
V_Name : constant Name_Id := Get_String (Value_Name);
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id);
-- Called for each matching node for the env. variable
--------------
-- Callback --
--------------
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id) is
pragma Unreferenced (Project, Choice);
C, C2 : Project_Node_Id;
begin
case Kind_Of (Node, Root_Project.Tree) is
when N_String_Type_Declaration =>
Type_Decl := Node;
C := First_Literal_String (Node, Tree);
if Next_Literal_String (C, Tree) = Empty_Node then
raise Delete_Variable;
end if;
if String_Value_Of (C, Tree) = V_Name then
Set_First_Literal_String
(Node, Tree, Next_Literal_String (C, Tree));
return;
end if;
loop
C2 := Next_Literal_String (C, Tree);
exit when C2 = Empty_Node;
if String_Value_Of (C2, Tree) = V_Name then
Set_Next_Literal_String
(C, Tree, Next_Literal_String (C2, Tree));
exit;
end if;
C := C2;
end loop;
when N_External_Value =>
if External_Default_Of (Node, Tree) /= Empty_Node
and then String_Value_Of
(External_Default_Of (Node, Tree), Tree) = V_Name
then
Set_External_Default_Of (Node, Tree, Empty_Node);
end if;
when N_Case_Item =>
C := First_Case_Item_Of
(Current_Item_Node (Parent, Tree), Tree);
if C = Node then
Set_First_Case_Item_Of
(Current_Item_Node (Parent, Tree), Tree,
Next_Case_Item (C, Tree));
return;
end if;
loop
C2 := Next_Case_Item (C, Tree);
exit when C2 = Empty_Node;
if C2 = Node then
Set_Next_Case_Item (C, Tree, Next_Case_Item (C2, Tree));
end if;
C := C2;
end loop;
when others =>
null;
end case;
end Callback;
Ext_Var : constant Name_Id := Get_String (Ext_Variable_Name);
begin
if not Is_Editable (Root_Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Root_Project);
For_Each_Environment_Variable
(Root_Project, Ext_Var,
Get_String (Value_Name), Callback'Unrestricted_Access);
-- Reset the value of the external variable if needed
if Value_Of (Ext_Var) = V_Name then
if Type_Decl /= Empty_Node then
Add (Ext_Variable_Name,
Get_String (String_Value_Of
(First_Literal_String (Type_Decl, Tree),
Tree)));
else
Add (Ext_Variable_Name, "");
end if;
end if;
Set_Project_Modified (Root_Project, True);
exception
when Delete_Variable =>
Delete_External_Variable
(Root_Project,
Ext_Variable_Name => Ext_Variable_Name,
Keep_Choice => Value_Name,
Delete_Direct_References => False);
end Remove_Value;
--------------------------
-- Expression_As_String --
--------------------------
function Expression_As_String
(Tree : Project_Node_Tree_Ref;
Expression : Project_Node_Id) return Name_Id
is
Term : Project_Node_Id;
begin
case Kind_Of (Expression, Tree) is
when N_Literal_String =>
return String_Value_Of (Expression, Tree);
when N_Expression =>
Term := First_Term (Expression, Tree);
if Term /= Empty_Node
and then Next_Term (Term, Tree) = Empty_Node
and then Kind_Of (Current_Term (Term, Tree), Tree) =
N_Literal_String
then
return String_Value_Of (Current_Term (Term, Tree), Tree);
else
return No_Name;
end if;
when others =>
return No_Name;
end case;
end Expression_As_String;
----------------------------------------
-- Rename_Value_For_External_Variable --
----------------------------------------
procedure Rename_Value_For_External_Variable
(Root_Project : Project_Type;
Ext_Variable_Name : String;
Old_Value_Name : String;
New_Value_Name : Namet.Name_Id)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
Old_V_Name : constant Name_Id := Get_String (Old_Value_Name);
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id);
-- Called for each mtching node for the env. variable
--------------
-- Callback --
--------------
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id) is
pragma Unreferenced (Project, Parent);
C : Project_Node_Id;
begin
case Kind_Of (Node, Root_Project.Tree) is
when N_External_Value =>
if External_Default_Of (Node, Tree) /= Empty_Node
and then Expression_As_String
(Tree, External_Default_Of (Node, Tree)) = Old_V_Name
then
if Kind_Of (External_Default_Of (Node, Tree), Tree) =
N_Literal_String
then
Set_String_Value_Of
(External_Default_Of (Node, Tree), Tree,
New_Value_Name);
else
Set_External_Default_Of
(Node, Tree,
Create_Literal_String (New_Value_Name, Tree));
end if;
end if;
when N_String_Type_Declaration =>
C := First_Literal_String (Node, Tree);
while C /= Empty_Node loop
if String_Value_Of (C, Tree) = Old_V_Name then
Set_String_Value_Of (C, Tree, New_Value_Name);
exit;
end if;
C := Next_Literal_String (C, Tree);
end loop;
when N_Case_Item =>
Set_String_Value_Of (Choice, Tree, New_Value_Name);
when others =>
null;
end case;
end Callback;
N : constant Name_Id := Get_String (Ext_Variable_Name);
begin
if not Is_Editable (Root_Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Root_Project);
For_Each_Environment_Variable
(Root_Project, N, Get_String (Old_Value_Name),
Callback'Unrestricted_Access);
if Value_Of (N) /= No_Name
and then Value_Of (N) = Old_V_Name
then
Add (Ext_Variable_Name, Get_String (New_Value_Name));
end if;
Set_Project_Modified (Root_Project, True);
end Rename_Value_For_External_Variable;
-----------------------------------
-- For_Each_Environment_Variable --
-----------------------------------
procedure For_Each_Environment_Variable
(Root_Project : Project_Type;
Ext_Variable_Name : Name_Id;
Specific_Choice : Name_Id;
Action : Environment_Variable_Callback)
is
Tree : constant Project_Node_Tree_Ref :=
Root_Project.Tree;
Variable_Nodes : Project_Node_Array_Access :=
new Project_Node_Array (1 .. 100);
Variable_Nodes_Last : Natural := Variable_Nodes'First - 1;
-- List of all the variables that reference Ext_Variable_Name
-- in the current project.
procedure Process_Expression
(Project : Project_Node_Id; Expression : Project_Node_Id);
-- Delete all references to the variable in Expr
procedure Recurse_In_Project
(Project : Project_Node_Id; Pkg_Or_Case_Item : Project_Node_Id);
-- Delete the scenario variable in a specific part of Root_Project
-- (either the project itself, if Pkg_Or_Case_Item is Empty_Node,
-- or a package or a case item.
function Is_Reference_To_Ext
(Node : Project_Node_Id) return Boolean;
-- Return True if Node is a reference (N_External_Value or
-- N_Variable_Reference) to the external variable Ext_Variable_Name.
-- Var_Declarations should contain the list of
-- N_Typed_Variable_Declaration nodes that refer to Ext_Variable_Name.
-------------------------
-- Is_Reference_To_Ext --
-------------------------
function Is_Reference_To_Ext
(Node : Project_Node_Id) return Boolean is
begin
case Kind_Of (Node, Tree) is
when N_External_Value =>
return String_Value_Of
(Prj.Tree.External_Reference_Of (Node, Tree), Tree) =
Ext_Variable_Name;
when N_Variable_Reference =>
for J in Variable_Nodes'First .. Variable_Nodes_Last loop
if Prj.Tree.Name_Of (Node, Tree) =
Prj.Tree.Name_Of (Variable_Nodes (J), Tree)
then
return True;
end if;
end loop;
return False;
when others =>
return False;
end case;
end Is_Reference_To_Ext;
------------------------
-- Process_Expression --
------------------------
procedure Process_Expression
(Project : Project_Node_Id; Expression : Project_Node_Id)
is
Expr : Project_Node_Id := Expression;
Term : Project_Node_Id;
begin
while Expr /= Empty_Node loop
Term := First_Term (Expr, Tree);
while Term /= Empty_Node loop
case Kind_Of (Current_Term (Term, Tree), Tree) is
-- Handles ("-g" & A, "-O2" & external ("A"))
when N_Literal_String_List =>
Process_Expression
(Project,
First_Expression_In_List
(Current_Term (Term, Tree), Tree));
-- Handles "-g" & external ("A")
-- Replace A by the constant string representing its value
when N_External_Value =>
if Is_Reference_To_Ext (Current_Term (Term, Tree)) then
Action (Project, Term, Current_Term (Term, Tree),
Empty_Node);
end if;
-- Handles "-g" & Var
-- Where Var is a reference to the external variable
when N_Variable_Reference =>
if Is_Reference_To_Ext (Current_Term (Term, Tree)) then
Action (Project, Term, Current_Term (Term, Tree),
Empty_Node);
end if;
when others =>
null;
end case;
Term := Next_Term (Term, Tree);
end loop;
Expr := Next_Expression_In_List (Expr, Tree);
end loop;
end Process_Expression;
------------------------
-- Recurse_In_Project --
------------------------
procedure Recurse_In_Project
(Project : Project_Node_Id; Pkg_Or_Case_Item : Project_Node_Id)
is
Decl, Current, Case_Item, Choice : Project_Node_Id;
Match : Boolean;
begin
if Pkg_Or_Case_Item /= Empty_Node then
Decl := First_Declarative_Item_Of (Pkg_Or_Case_Item, Tree);
else
Decl := First_Declarative_Item_Of
(Project_Declaration_Of (Project, Tree), Tree);
end if;
while Decl /= Empty_Node loop
Current := Current_Item_Node (Decl, Tree);
case Kind_Of (Current, Tree) is
when N_Typed_Variable_Declaration =>
if Is_External_Variable (Current, Tree)
and then
External_Reference_Of (Current, Tree) = Ext_Variable_Name
then
Add_Node_To_List
(Variable_Nodes, Variable_Nodes_Last, Current);
Action
(Project, Empty_Node, String_Type_Of (Current, Tree),
Empty_Node);
Action (Project, Decl, Current, Empty_Node);
end if;
Process_Expression (Project, Expression_Of (Current, Tree));
when N_Case_Construction =>
if Is_Reference_To_Ext
(Case_Variable_Reference_Of (Current, Tree))
then
Case_Item := First_Case_Item_Of (Current, Tree);
while Case_Item /= Empty_Node loop
Choice := First_Choice_Of (Case_Item, Tree);
-- If we have reached Empty_Node and nothing matched
-- before, then that is the case item we want to keep.
-- This corresponds to "when others"
Match := Choice = Empty_Node
or else Specific_Choice = No_Name;
if not Match then
while Choice /= Empty_Node loop
if String_Value_Of (Choice, Tree) =
Specific_Choice
then
Match := True;
exit;
end if;
Choice := Next_Literal_String (Choice, Tree);
end loop;
end if;
if Match then
Action (Project, Decl, Case_Item, Choice);
end if;
Recurse_In_Project (Project, Case_Item);
Case_Item := Next_Case_Item (Case_Item, Tree);
end loop;
else
Case_Item := First_Case_Item_Of (Current, Tree);
while Case_Item /= Empty_Node loop
Recurse_In_Project (Project, Case_Item);
Case_Item := Next_Case_Item (Case_Item, Tree);
end loop;
end if;
when N_Package_Declaration =>
Recurse_In_Project (Project, Current);
when N_Variable_Declaration
| N_Attribute_Declaration =>
Process_Expression (Project, Expression_Of (Current, Tree));
when others =>
null;
end case;
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
end Recurse_In_Project;
Iter : Imported_Project_Iterator := Start (Root_Project);
begin
while Current (Iter) /= No_Project loop
Recurse_In_Project (Current (Iter).Node, Empty_Node);
Next (Iter);
end loop;
Free (Variable_Nodes);
end For_Each_Environment_Variable;
------------------------------
-- Delete_External_Variable --
------------------------------
procedure Delete_External_Variable
(Root_Project : Project_Type;
Ext_Variable_Name : String;
Keep_Choice : String;
Delete_Direct_References : Boolean := True)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id);
-- Called for each mtching node for the env. variable
--------------
-- Callback --
--------------
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id) is
pragma Unreferenced (Choice);
begin
case Kind_Of (Node, Tree) is
when N_External_Value =>
if Delete_Direct_References then
Set_Current_Term
(Parent, Tree,
Create_Literal_String (Get_String (Keep_Choice), Tree));
end if;
when N_Variable_Reference =>
Set_Current_Term
(Parent, Tree,
Create_Literal_String (Get_String (Keep_Choice), Tree));
when N_Typed_Variable_Declaration =>
Remove_Node (Tree, Project, Node);
Remove_Variable_Declaration (Tree, Project, Node);
when N_String_Type_Declaration =>
Remove_Node (Tree, Project, Node);
when N_Case_Item =>
-- The first declarative item might be null when there was no
-- actual "when ..." for Keep_Choice. In that case, Prj.Proc
-- inserts an entry with no declarative item.
if First_Declarative_Item_Of (Node, Tree) /= Empty_Node then
Tree.Project_Nodes.Table (Parent) := Tree.Project_Nodes.Table
(First_Declarative_Item_Of (Node, Tree));
else
Set_Current_Item_Node (Parent, Tree, Empty_Node);
end if;
when others =>
null;
pragma Assert (False, "Unexpected node type");
end case;
end Callback;
begin
if not Is_Editable (Root_Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Root_Project);
For_Each_Environment_Variable
(Root_Project, Get_String (Ext_Variable_Name),
Get_String (Keep_Choice), Callback'Unrestricted_Access);
-- Mark all projects in the hierarchy as modified, since they are
-- potentially all impacted.
declare
Iterator : Imported_Project_Iterator := Start
(Root_Project, Recursive => True);
P : Project_Type;
begin
loop
P := Current (Iterator);
exit when P = No_Project;
Set_Project_Modified (P, True);
Next (Iterator);
end loop;
end;
end Delete_External_Variable;
---------------------------------
-- Remove_Variable_Declaration --
---------------------------------
procedure Remove_Variable_Declaration
(Tree : Project_Node_Tree_Ref;
Project_Or_Package : Project_Node_Id;
Declaration : Project_Node_Id)
is
Tmp, Next : Project_Node_Id;
Pkg : Project_Node_Id := Project_Or_Package;
begin
while Pkg /= Empty_Node loop
Tmp := First_Variable_Of (Pkg, Tree);
if Tmp = Declaration then
Set_First_Variable_Of (Pkg, Tree, Next_Variable (Tmp, Tree));
return;
else
loop
Next := Next_Variable (Tmp, Tree);
exit when Next = Empty_Node;
if Next = Declaration then
Set_Next_Variable (Tmp, Tree, Next_Variable (Next, Tree));
return;
end if;
end loop;
end if;
if Kind_Of (Pkg, Tree) = N_Project then
Pkg := First_Package_Of (Pkg, Tree);
else
Pkg := Next_Package_In_Project (Pkg, Tree);
end if;
end loop;
Trace (Me, "Remove_Variable_Declaration: did not find the declaration"
& " for the variable");
end Remove_Variable_Declaration;
---------------------------------------------
-- Set_Default_Value_For_External_Variable --
---------------------------------------------
procedure Set_Default_Value_For_External_Variable
(Root_Project : Project_Type;
Ext_Variable_Name : String;
Default : Name_Id)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id);
-- Called for each mtching node for the env. variable
--------------
-- Callback --
--------------
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id) is
pragma Unreferenced (Project, Parent, Choice);
begin
if Kind_Of (Node, Tree) = N_Typed_Variable_Declaration then
Set_External_Default_Of
(Current_Term
(First_Term (Expression_Of (Node, Tree), Tree), Tree),
Tree,
Enclose_In_Expression
(Create_Literal_String (Default, Tree), Tree));
end if;
end Callback;
begin
if not Is_Editable (Root_Project) then
Trace (Me, "Project is not editable");
return;
end if;
For_Each_Environment_Variable
(Root_Project, Get_String (Ext_Variable_Name), No_Name,
Callback'Unrestricted_Access);
Set_Project_Modified (Root_Project, True);
end Set_Default_Value_For_External_Variable;
------------------------------
-- Rename_External_Variable --
------------------------------
procedure Rename_External_Variable
(Root_Project : Project_Type;
Variable : in out Scenario_Variable;
New_Name : Namet.Name_Id)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id);
-- Called for each mtching node for the env. variable
--------------
-- Callback --
--------------
procedure Callback (Project, Parent, Node, Choice : Project_Node_Id) is
pragma Unreferenced (Project, Parent, Choice);
begin
if Kind_Of (Node, Tree) = N_External_Value then
Set_String_Value_Of
(External_Reference_Of (Node, Tree), Tree, New_Name);
end if;
end Callback;
Ext_Ref : constant Name_Id :=
Get_String (External_Reference_Of (Variable));
begin
if not Is_Editable (Root_Project) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (Root_Project);
For_Each_Environment_Variable
(Root_Project, Ext_Ref, No_Name, Callback'Unrestricted_Access);
Set_Project_Modified (Root_Project, True);
-- Create the new variable, to avoid errors when computing the view of
-- the project.
Variable.Name := New_Name;
if Value_Of (Ext_Ref) /= No_Name then
Set_Value (Variable, Get_String (Value_Of (Ext_Ref)));
end if;
end Rename_External_Variable;
----------------------------------
-- Add_Scenario_Variable_Values --
----------------------------------
procedure Add_Scenario_Variable_Values
(Root_Project : Project_Type;
External_Var : Scenario_Variable;
Values : Name_Id_Array)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
Type_Node, Var : Project_Node_Id;
Iter : Imported_Project_Iterator := Start (Root_Project);
P : Project_Type;
begin
loop
P := Current (Iter);
exit when P = No_Project;
if not Is_Editable (P) then
Trace (Me, "Project is not editable");
return;
end if;
Projects.Editor.Normalize.Normalize (P);
Var := Find_Scenario_Variable (Tree, P, External_Var.Name);
-- If variable is defined in the current project, then modify the
-- type to Values.
if Var /= Empty_Node then
Type_Node := String_Type_Of (Var, Tree);
pragma Assert (Type_Node /= Empty_Node);
-- Set_First_Literal_String (Type_Node, Empty_Node);
for J in Values'Range loop
Add_Possible_Value (Tree, Type_Node, Values (J));
end loop;
Set_Project_Modified (P, True);
end if;
Next (Iter);
end loop;
end Add_Scenario_Variable_Values;
----------------------
-- To_Argument_List --
----------------------
function To_Argument_List
(Tree : Project_Tree_Ref; Value : Variable_Value) return Argument_List
is
S : Argument_List (1 .. Length (Tree, Value)) := (others => null);
V : String_List_Id;
begin
case Value.Kind is
when Undefined =>
null;
when Single =>
Get_Name_String (Value.Value);
S (1) := new String'(Name_Buffer (1 .. Name_Len));
when List =>
V := Value.Values;
for J in S'Range loop
Get_Name_String (Tree.String_Elements.Table (V).Value);
S (J) := new String'(Name_Buffer (1 .. Name_Len));
V := Tree.String_Elements.Table (V).Next;
end loop;
end case;
return S;
end To_Argument_List;
---------------
-- To_String --
---------------
function To_String
(Tree : Project_Tree_Ref; Value : Variable_Value) return String
is
Buffer : String (1 .. 1024);
Current : Prj.String_List_Id;
The_String : String_Element;
Index : Natural := Buffer'First;
begin
case Value.Kind is
when Prj.Undefined =>
return "";
when Prj.Single =>
Get_Name_String (Value.Value);
return Name_Buffer (1 .. Name_Len);
when Prj.List =>
Current := Value.Values;
while Current /= Prj.Nil_String loop
The_String := Tree.String_Elements.Table (Current);
Get_Name_String (The_String.Value);
if Index /= Buffer'First then
Buffer (Index) := ' ';
Index := Index + 1;
end if;
Buffer (Index .. Index + Name_Len - 1) :=
Name_Buffer (1 .. Name_Len);
Index := Index + Name_Len;
Current := The_String.Next;
end loop;
return Buffer (Buffer'First .. Index - 1);
end case;
end To_String;
---------------------
-- Get_Environment --
---------------------
function Get_Environment
(Tree : Project_Node_Tree_Ref;
Var_Or_Attribute : Project_Node_Id) return Name_Id
is
Ext : Project_Node_Id;
begin
-- ??? We do not correctly detect constructions like
-- A : A_Type := "A" & external ("OS");
-- The external reference must be by itself in the reference
pragma Assert (Var_Or_Attribute /= Empty_Node);
Ext := Expression_Of (Var_Or_Attribute, Tree);
pragma Assert (Kind_Of (Ext, Tree) = N_Expression);
Ext := First_Term (Ext, Tree);
pragma Assert (Kind_Of (Ext, Tree) = N_Term);
Ext := Current_Term (Ext, Tree);
if Kind_Of (Ext, Tree) = N_External_Value then
Ext := External_Reference_Of (Ext, Tree);
if Kind_Of (Ext, Tree) = N_Expression then
Ext := Current_Term (First_Term (Ext, Tree), Tree);
end if;
pragma Assert (Kind_Of (Ext, Tree) = N_Literal_String);
return String_Value_Of (Ext, Tree);
else
return No_Name;
end if;
end Get_Environment;
---------------------------
-- Set_Value_As_External --
---------------------------
procedure Set_Value_As_External
(Tree : Project_Node_Tree_Ref;
Var : Project_Node_Id;
External_Name : String;
Default : String := "")
is
Ext : Project_Node_Id;
Str : Project_Node_Id;
begin
pragma Assert (Expression_Kind_Of (Var, Tree) = Prj.Single);
-- Create the expression if required
Ext := Default_Project_Node (Tree, N_External_Value, Single);
Set_Expression (Tree, Var, Enclose_In_Expression (Ext, Tree));
Str := Create_Literal_String (Get_String (External_Name), Tree);
Set_External_Reference_Of (Ext, Tree, Str);
if Default /= "" then
Str := Create_Literal_String (Get_String (Default), Tree);
Set_External_Default_Of (Ext, Tree, Str);
end if;
end Set_Value_As_External;
-------------------------------
-- Create_Variable_Reference --
-------------------------------
function Create_Variable_Reference
(Tree : Project_Node_Tree_Ref; Var : Project_Node_Id)
return Project_Node_Id
is
Ref : Project_Node_Id;
begin
Assert (Me,
Kind_Of (Var, Tree) = N_Typed_Variable_Declaration
or else Kind_Of (Var, Tree) = N_Variable_Declaration,
"Create_Variable_Reference: unexpected node type "
& Kind_Of (Var, Tree)'Img);
Ref := Default_Project_Node (Tree, N_Variable_Reference);
Set_Name_Of (Ref, Tree, Prj.Tree.Name_Of (Var, Tree));
Set_Expression_Kind_Of (Ref, Tree, Expression_Kind_Of (Var, Tree));
if Kind_Of (Var, Tree) = N_Typed_Variable_Declaration then
Set_String_Type_Of (Ref, Tree, String_Type_Of (Var, Tree));
end if;
return Ref;
end Create_Variable_Reference;
-------------------
-- Contains_Path --
-------------------
function Contains_Path
(Project : Project_Type;
Path : String) return Boolean
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
Result : Boolean;
function Normalize (P : String) return String;
-- Normalizes the paths before comparison
procedure Test_P (Node : Project_Node_Id);
-- Test the project's node for existing path
---------------
-- Normalize --
---------------
function Normalize (P : String) return String is
begin
if Is_Absolute_Path_Or_URL (P) then
declare
Conv : constant String :=
Relative_Path_Name
(P,
Dir (Project_Path (Project)).Full_Name.all,
Build_Server);
begin
return Conv;
end;
end if;
return P;
end Normalize;
The_Path : constant String := Normalize (Path);
------------
-- Test_P --
------------
procedure Test_P (Node : Project_Node_Id) is
Node_P : constant String :=
Normalize (Get_String (String_Value_Of (Node, Tree)));
begin
-- Test if Node_P is a subdir of The_Path
if Node_P'Length >= The_Path'Length
and then File_Equal
(Node_P (Node_P'First .. Node_P'First + The_Path'Length - 1),
The_Path, Build_Server)
then
Result := True;
end if;
end Test_P;
begin
Result := False;
-- Test all paths
For_Each_Directory_Node (Project, Test_P'Unrestricted_Access);
return Result;
end Contains_Path;
-----------------
-- Rename_Path --
-----------------
function Rename_Path
(Project : Project_Type;
Old_Path : String;
New_Path : String;
Use_Relative_Paths : Boolean) return Boolean
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
Changed : Boolean := False;
procedure Rename_P (Node : Project_Node_Id);
-- Convert the path to an absolute path
function Path (P : String) return String;
-- Returns the path with relative or absolute convention
----------
-- Path --
----------
function Path (P : String) return String is
begin
if Use_Relative_Paths
and then Is_Absolute_Path_Or_URL (P)
then
declare
Conv : constant String :=
Relative_Path_Name
(P,
Dir (Project_Path (Project)).Full_Name.all,
Build_Server);
begin
return Conv;
end;
elsif not Use_Relative_Paths then
declare
Conv : constant String := Normalize_Pathname
(P, Dir (Project_Path (Project)).Full_Name.all);
begin
return Conv;
end;
end if;
return P;
end Path;
Old_P : constant String := Path (Old_Path);
New_P : constant String := Path (New_Path);
--------------
-- Rename_P --
--------------
procedure Rename_P (Node : Project_Node_Id) is
Node_P : constant String :=
Path (Get_String (String_Value_Of (Node, Tree)));
begin
if Node_P'Length >= Old_P'Length
and then File_Equal
(Node_P (Node_P'First .. Node_P'First + Old_P'Length - 1),
Old_P, Build_Server)
then
Set_String_Value_Of
(Node, Tree,
Get_String
(New_P &
Node_P (Node_P'First + Old_P'Length .. Node_P'Last)));
Changed := True;
end if;
end Rename_P;
begin
-- Replace all the paths
For_Each_Directory_Node (Project, Rename_P'Unrestricted_Access);
if Changed then
Set_Project_Modified (Project, True);
end if;
return Changed;
end Rename_Path;
------------------------------
-- Post_Process_After_Clone --
------------------------------
procedure Post_Process_After_Clone
(Tree : Project_Node_Tree_Ref;
Project : Project_Node_Id;
Pkg : Project_Node_Id := Empty_Node)
is
Last_Var : Project_Node_Id := Empty_Node;
Last_Type : Project_Node_Id := Empty_Node;
Last_Package : Project_Node_Id := Empty_Node;
Decl_Item : Project_Node_Id;
Current_Node : Project_Node_Id;
begin
if Pkg = Empty_Node then
Decl_Item := First_Declarative_Item_Of
(Project_Declaration_Of (Project, Tree), Tree);
else
pragma Assert (Kind_Of (Pkg, Tree) = N_Package_Declaration);
Decl_Item := First_Declarative_Item_Of (Pkg, Tree);
end if;
while Decl_Item /= Empty_Node loop
Current_Node := Current_Item_Node (Decl_Item, Tree);
case Kind_Of (Current_Node, Tree) is
when N_Package_Declaration =>
if Last_Package /= Empty_Node then
Set_Next_Package_In_Project
(Last_Package, Tree, Current_Node);
Last_Package := Current_Node;
else
Last_Package := Current_Node;
Tree.Project_Nodes.Table (Project).Packages := Last_Package;
end if;
Post_Process_After_Clone (Tree, Project, Last_Package);
when N_Variable_Declaration | N_Typed_Variable_Declaration =>
if Last_Var /= Empty_Node then
Set_Next_Variable (Last_Var, Tree, Current_Node);
Set_Next_Variable (Current_Node, Tree, Empty_Node);
Last_Var := Current_Node;
else
Last_Var := Current_Node;
Set_Next_Variable (Last_Var, Tree, Empty_Node);
if Pkg /= Empty_Node then
Tree.Project_Nodes.Table (Pkg).Variables := Last_Var;
else
Tree.Project_Nodes.Table (Project).Variables := Last_Var;
end if;
end if;
-- Make sure that we do reference the type defined in the new
-- project, not in some older project
if Kind_Of (Current_Node, Tree) =
N_Typed_Variable_Declaration
then
Set_String_Type_Of
(Current_Node, Tree,
Find_Type_Declaration
(Tree,
Project,
Prj.Tree.Name_Of
(String_Type_Of (Current_Node, Tree), Tree)));
end if;
when N_Variable_Reference =>
if String_Type_Of (Current_Node, Tree) /= Empty_Node then
Set_String_Type_Of
(Current_Node, Tree,
Find_Type_Declaration
(Tree,
Project,
Prj.Tree.Name_Of (String_Type_Of (Current_Node, Tree),
Tree)));
end if;
if Package_Node_Of (Current_Node, Tree) /= Empty_Node then
Set_Package_Node_Of
(Current_Node, Tree,
Find_Package_Declaration
(Tree,
Project,
Prj.Tree.Name_Of (Package_Node_Of (Current_Node, Tree),
Tree)));
end if;
when N_Attribute_Reference =>
if Package_Node_Of (Current_Node, Tree) /= Empty_Node then
Set_Package_Node_Of
(Current_Node, Tree,
Find_Package_Declaration
(Tree,
Project,
Prj.Tree.Name_Of (Package_Node_Of (Current_Node, Tree),
Tree)));
end if;
when N_String_Type_Declaration =>
if Last_Type /= Empty_Node then
Set_Next_String_Type (Last_Type, Tree, Current_Node);
Last_Type := Current_Node;
else
Last_Type := Current_Node;
Set_First_String_Type_Of (Project, Tree, Last_Type);
end if;
when others =>
null;
end case;
Decl_Item := Next_Declarative_Item (Decl_Item, Tree);
end loop;
end Post_Process_After_Clone;
----------------
-- Clone_Node --
----------------
function Clone_Node
(Tree : Project_Node_Tree_Ref;
Node : Project_Node_Id;
Deep_Clone : Boolean := False) return Project_Node_Id
is
New_Node : Project_Node_Id;
begin
if Node = Empty_Node then
return Empty_Node;
end if;
Tree_Private_Part.Project_Node_Table.Increment_Last (Tree.Project_Nodes);
New_Node :=
Tree_Private_Part.Project_Node_Table.Last (Tree.Project_Nodes);
-- Simple copy of all the fields. There is no need to duplicate
-- Name_Id at this point, since nobody will modify them later on
-- anyway. So we save some memory and keep them as is.
-- Only the node ids will need to be copied for deep copies.
Tree.Project_Nodes.Table (New_Node) := Tree.Project_Nodes.Table (Node);
if Deep_Clone then
case Kind_Of (Node, Tree) is
when N_Project =>
-- Packages, Variables, First_String_Type_Of must be outside of
-- this subprogram.
Set_First_With_Clause_Of
(New_Node, Tree,
Clone_Node (Tree, First_With_Clause_Of (Node, Tree), True));
Set_Project_Declaration_Of
(New_Node, Tree,
Clone_Node (Tree,
Project_Declaration_Of (Node, Tree), True));
Set_First_String_Type_Of (New_Node, Tree, Empty_Node);
when N_With_Clause =>
Set_Next_With_Clause_Of
(New_Node, Tree,
Clone_Node (Tree, Next_With_Clause_Of (Node, Tree), True));
when N_Project_Declaration =>
Set_First_Declarative_Item_Of
(New_Node, Tree,
Clone_Node
(Tree, First_Declarative_Item_Of (Node, Tree), True));
when N_Declarative_Item =>
Set_Current_Item_Node
(New_Node, Tree,
Clone_Node (Tree, Current_Item_Node (Node, Tree), True));
Set_Next_Declarative_Item
(New_Node, Tree,
Clone_Node (Tree, Next_Declarative_Item (Node, Tree), True));
when N_Package_Declaration =>
-- Next_Package_In_Project and Variables must be set outside of
-- this subprogram
-- Pkg_Id doesn't need to be cloned, as per 9509-010.
Set_First_Declarative_Item_Of
(New_Node, Tree,
Clone_Node
(Tree, First_Declarative_Item_Of (Node, Tree), True));
Set_Next_Package_In_Project (New_Node, Tree, Empty_Node);
when N_String_Type_Declaration =>
-- Next_String_Type must be set outside of this
Set_First_Literal_String
(New_Node, Tree,
Clone_Node (Tree, First_Literal_String (Node, Tree), True));
Set_Next_String_Type (New_Node, Tree, Empty_Node);
when N_Literal_String =>
Set_Next_Literal_String
(New_Node, Tree,
Clone_Node (Tree, Next_Literal_String (Node, Tree), True));
when N_Attribute_Declaration =>
Set_Expression_Of
(New_Node, Tree,
Clone_Node (Tree, Expression_Of (Node, Tree), True));
when N_Typed_Variable_Declaration =>
-- Next_Variable must be set outside of this
-- String_Type_Of is set to the same value as for Node, and
-- this needs to be fixed in a post-processing phase.
Set_Expression_Of
(New_Node, Tree,
Clone_Node (Tree, Expression_Of (Node, Tree), True));
Set_String_Type_Of
(New_Node, Tree, String_Type_Of (Node, Tree));
Set_Next_Variable (New_Node, Tree, Empty_Node);
when N_Variable_Declaration =>
-- Next_Variable must be set outside of this
Set_Expression_Of
(New_Node, Tree,
Clone_Node (Tree, Expression_Of (Node, Tree), True));
Set_Next_Variable (New_Node, Tree, Empty_Node);
when N_Expression =>
Set_First_Term
(New_Node, Tree,
Clone_Node (Tree, First_Term (Node, Tree), True));
Set_Next_Expression_In_List
(New_Node, Tree,
Clone_Node (Tree,
Next_Expression_In_List (Node, Tree), True));
when N_Term =>
Set_Current_Term
(New_Node, Tree,
Clone_Node (Tree, Current_Term (Node, Tree), True));
Set_Next_Term
(New_Node, Tree,
Clone_Node (Tree, Next_Term (Node, Tree), True));
when N_Literal_String_List =>
Set_First_Expression_In_List
(New_Node, Tree,
Clone_Node (Tree, First_Expression_In_List (Node, Tree),
True));
when N_Variable_Reference =>
-- String_Type_Of is set to the same value as for Node, and
-- this needs to be fixed in a post-processing phase.
-- Same for Package_Node_Of
null;
when N_External_Value =>
Set_External_Reference_Of
(New_Node, Tree,
Clone_Node (Tree, External_Reference_Of (Node, Tree), True));
Set_External_Default_Of
(New_Node, Tree,
Clone_Node (Tree, External_Default_Of (Node, Tree), True));
when N_Attribute_Reference =>
-- Package_Node_Of is set to the same value of for Node, and
-- this needs to be fixed in a post-processing phase.
null;
when N_Case_Construction =>
Set_Case_Variable_Reference_Of
(New_Node, Tree,
Clone_Node (Tree,
Case_Variable_Reference_Of (Node, Tree), True));
Set_First_Case_Item_Of
(New_Node, Tree,
Clone_Node (Tree, First_Case_Item_Of (Node, Tree), True));
when N_Case_Item =>
Set_First_Choice_Of
(New_Node, Tree,
Clone_Node (Tree, First_Choice_Of (Node, Tree), True));
Set_First_Declarative_Item_Of
(New_Node, Tree,
Clone_Node
(Tree, First_Declarative_Item_Of (Node, Tree), True));
when N_Comment_Zones =>
null;
when N_Comment =>
null;
end case;
end if;
return New_Node;
end Clone_Node;
----------------
-- Add_At_End --
----------------
procedure Add_At_End
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Expr : Project_Node_Id;
Add_Before_First_Pkg : Boolean := False;
Add_Before_First_Case : Boolean := False)
is
Real_Parent : Project_Node_Id;
New_Decl, Decl, Next : Project_Node_Id;
Last, L : Project_Node_Id;
begin
if Kind_Of (Expr, Tree) /= N_Declarative_Item then
New_Decl := Default_Project_Node (Tree, N_Declarative_Item);
Set_Current_Item_Node (New_Decl, Tree, Expr);
else
New_Decl := Expr;
end if;
if Kind_Of (Parent, Tree) = N_Project then
Real_Parent := Project_Declaration_Of (Parent, Tree);
else
Real_Parent := Parent;
end if;
Decl := First_Declarative_Item_Of (Real_Parent, Tree);
if Decl = Empty_Node then
Set_First_Declarative_Item_Of (Real_Parent, Tree, New_Decl);
else
loop
Next := Next_Declarative_Item (Decl, Tree);
exit when Next = Empty_Node
or else
(Add_Before_First_Pkg
and then Kind_Of (Current_Item_Node (Next, Tree), Tree)
= N_Package_Declaration)
or else
(Add_Before_First_Case
and then Kind_Of (Current_Item_Node (Next, Tree), Tree)
= N_Case_Construction);
Decl := Next;
end loop;
-- In case Expr is in fact a range of declarative items
Last := New_Decl;
loop
L := Next_Declarative_Item (Last, Tree);
exit when L = Empty_Node;
Last := L;
end loop;
Set_Next_Declarative_Item (Last, Tree, Next);
Set_Next_Declarative_Item (Decl, Tree, New_Decl);
end if;
end Add_At_End;
------------------
-- Add_In_Front --
------------------
procedure Add_In_Front
(Tree : Project_Node_Tree_Ref;
Parent : Project_Node_Id;
Node : Project_Node_Id)
is
Real_Parent : Project_Node_Id;
New_Decl, Decl : Project_Node_Id;
begin
if Kind_Of (Node, Tree) /= N_Declarative_Item then
New_Decl := Default_Project_Node (Tree, N_Declarative_Item);
Set_Current_Item_Node (New_Decl, Tree, Node);
else
New_Decl := Node;
end if;
if Kind_Of (Parent, Tree) = N_Project then
Real_Parent := Project_Declaration_Of (Parent, Tree);
else
Real_Parent := Parent;
end if;
Decl := New_Decl;
while Next_Declarative_Item (Decl, Tree) /= Empty_Node loop
Decl := Next_Declarative_Item (Decl, Tree);
end loop;
Set_Next_Declarative_Item
(Decl, Tree, First_Declarative_Item_Of (Real_Parent, Tree));
Set_First_Declarative_Item_Of (Real_Parent, Tree, New_Decl);
end Add_In_Front;
-----------------------------
-- Find_Project_Of_Package --
-----------------------------
function Find_Project_Of_Package
(Project : Project_Type;
Pkg_Name : String) return Project_Type
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
Pkg : Project_Node_Id;
P : Project_Type := No_Project;
begin
Pkg := Find_Package_Declaration
(Tree, Project.Node, Get_String (Pkg_Name));
if Pkg /= Empty_Node
and then Project_Of_Renamed_Package_Of (Pkg, Tree) /= Empty_Node
then
Pkg := Project_Of_Renamed_Package_Of (Pkg, Tree);
P := Get_Project_From_Name
(Project_Registry'Class (Get_Registry (Project)),
Prj.Tree.Name_Of (Pkg, Tree));
end if;
if P = No_Project then
P := Project;
end if;
return P;
end Find_Project_Of_Package;
----------------------
-- Reset_All_Caches --
----------------------
procedure Reset_All_Caches (Project : Project_Type) is
Root : constant Project_Type := Get_Root_Project
(Project_Registry (Get_Registry (Project)));
Iter : Imported_Project_Iterator := Start (Root, Recursive => True);
Count : Natural := 0;
begin
while Current (Iter) /= No_Project loop
Count := Count + 1;
Projects.Next (Iter);
end loop;
declare
Prjs : Project_Type_Array (1 .. Count);
begin
Count := Prjs'First;
Iter := Start (Root, Recursive => True);
while Current (Iter) /= No_Project loop
Prjs (Count) := Current (Iter);
Count := Count + 1;
Projects.Next (Iter);
end loop;
for P in Prjs'Range loop
Reset_Cache (Prjs (P), Imported_By => False);
Reset_Cache (Prjs (P), Imported_By => True);
end loop;
end;
end Reset_All_Caches;
-----------------------------
-- Remove_Imported_Project --
-----------------------------
procedure Remove_Imported_Project
(Project : Project_Type; Imported_Project : Project_Type)
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
With_Clause : Project_Node_Id :=
First_With_Clause_Of (Project.Node, Tree);
Next : Project_Node_Id;
begin
-- ??? When the project is no longer found in the hierarchy, it should
-- also be removed from the htable in Prj.Tree, so that another
-- project by that name can be loaded.
if With_Clause /= Empty_Node
and then Prj.Tree.Name_Of (With_Clause, Tree) =
Prj.Tree.Name_Of (Imported_Project.Node, Tree)
then
Set_First_With_Clause_Of
(Project.Node, Tree, Next_With_Clause_Of (With_Clause, Tree));
else
loop
Next := Next_With_Clause_Of (With_Clause, Tree);
exit when Next = Empty_Node;
if Prj.Tree.Name_Of (Next, Tree) =
Prj.Tree.Name_Of (Imported_Project.Node, Tree)
then
Set_Next_With_Clause_Of
(With_Clause, Tree, Next_With_Clause_Of (Next, Tree));
end if;
With_Clause := Next;
end loop;
end if;
Set_Project_Modified (Project, True);
-- Need to reset all the caches, since the caches contain the indirect
-- dependencies as well.
Reset_All_Caches (Project);
end Remove_Imported_Project;
--------------------------
-- Set_With_Clause_Path --
--------------------------
procedure Set_With_Clause_Path
(Tree : Project_Node_Tree_Ref;
With_Clause : Project_Node_Id;
Imported_Project_Location : String;
Imported_Project : Project_Node_Id;
Importing_Project : Project_Node_Id;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean;
Limited_With : Boolean := False)
is
Clause : Name_Id;
begin
if Use_Base_Name then
Clause := Get_String (Base_Name (Imported_Project_Location));
elsif Use_Relative_Path then
Clause := Get_String
(Relative_Path_Name
(Imported_Project_Location,
Dir_Name
(Get_String (Path_Name_Of (Importing_Project, Tree))),
Build_Server));
else
Clause := Get_String (Imported_Project_Location);
end if;
Set_String_Value_Of (With_Clause, Tree, Clause);
Set_Path_Name_Of (With_Clause, Tree,
Prj.Tree.Path_Name_Of (Imported_Project, Tree));
Set_Project_Node_Of (With_Clause, Tree, Imported_Project,
Limited_With => Limited_With);
end Set_With_Clause_Path;
--------------------------
-- Add_Imported_Project --
--------------------------
function Add_Imported_Project
(Root_Project : Project_Type;
Project : Project_Type;
Imported_Project : Project_Node_Id;
Imported_Project_Location : GNATCOLL.VFS.Virtual_File;
Report_Errors : Output.Output_Proc := null;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean;
Limited_With : Boolean := False)
return Import_Project_Error
is
use Prj.Tree.Tree_Private_Part;
use type Output.Output_Proc;
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
procedure Fail (S1 : String; S2 : String := ""; S3 : String := "");
-- Replaces Osint.Fail
----------
-- Fail --
----------
procedure Fail (S1 : String; S2 : String := ""; S3 : String := "") is
begin
if Report_Errors /= null then
Report_Errors (S1 & S2 & S3);
end if;
end Fail;
With_Clause : Project_Node_Id;
Iter : Imported_Project_Iterator;
Tmp_Prj : Project_Type;
begin
Output.Set_Special_Output (Report_Errors);
Prj.Com.Fail := Fail'Unrestricted_Access;
-- Make sure we are not trying to import ourselves, since otherwise it
-- would result in an infinite loop when manipulating the project.
if Prj.Tree.Name_Of (Project.Node, Tree) =
Prj.Tree.Name_Of (Imported_Project, Tree)
then
if Report_Errors /= null then
Report_Errors (-"Cannot add dependency to self");
end if;
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
return Dependency_On_Self;
end if;
-- Check if it is already there. If we have the same name but not the
-- same path, we replace it anyway.
With_Clause := First_With_Clause_Of (Project.Node, Tree);
while With_Clause /= Empty_Node loop
if Prj.Tree.Name_Of (Project_Node_Of (With_Clause, Tree), Tree) =
Prj.Tree.Name_Of (Imported_Project, Tree)
then
if Report_Errors /= null then
Report_Errors
(-"There is already a dependency on "
& Get_String (Prj.Tree.Name_Of (Imported_Project, Tree)));
end if;
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
return Dependency_Already_Exists;
end if;
With_Clause := Next_With_Clause_Of (With_Clause, Tree);
end loop;
With_Clause := Default_Project_Node (Tree, N_With_Clause);
Set_Name_Of
(With_Clause, Tree, Prj.Tree.Name_Of (Imported_Project, Tree));
Set_Next_With_Clause_Of
(With_Clause, Tree, First_With_Clause_Of (Project.Node, Tree));
Set_First_With_Clause_Of (Project.Node, Tree, With_Clause);
Set_With_Clause_Path
(Tree, With_Clause,
Full_Name (Imported_Project_Location).all,
Imported_Project, Project.Node,
Use_Relative_Path => Use_Relative_Path,
Use_Base_Name => Use_Base_Name,
Limited_With => Limited_With);
if Has_Circular_Dependencies (Project.Tree, Project.Node) then
Set_First_With_Clause_Of
(Project.Node, Tree, Next_With_Clause_Of (With_Clause, Tree));
if Report_Errors /= null then
Report_Errors
(-"Circular dependency detected in the project hierarchy");
end if;
Trace (Me, "Circular dependency detected in the project hierarchy");
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
return Circular_Dependency;
end if;
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
Set_Project_Modified (Project, True);
-- Reset all importing caches, since they store the list recursively
Iter := Start (Root_Project);
loop
Tmp_Prj := Current (Iter);
Reset_Cache (Tmp_Prj, Imported_By => False);
exit when Tmp_Prj = Root_Project;
Next (Iter);
end loop;
Reset_Cache
(Get_Project_From_Name
(Project_Registry'Class (Get_Registry (Project)),
Get_String
(To_Lower
(Base_Name
(Imported_Project_Location, Project_File_Extension)))),
Imported_By => True);
return Success;
exception
when others =>
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
raise;
end Add_Imported_Project;
--------------------------
-- Add_Imported_Project --
--------------------------
function Add_Imported_Project
(Root_Project : Project_Type;
Project : Project_Type;
Imported_Project : Project_Type;
Report_Errors : Output.Output_Proc := null;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean := False;
Limited_With : Boolean := False) return Import_Project_Error is
begin
return Add_Imported_Project
(Root_Project => Root_Project,
Project => Project,
Imported_Project => Imported_Project.Node,
Imported_Project_Location => Project_Path (Imported_Project),
Report_Errors => Report_Errors,
Use_Relative_Path => Use_Relative_Path,
Use_Base_Name => Use_Base_Name,
Limited_With => Limited_With);
end Add_Imported_Project;
--------------------------
-- Add_Imported_Project --
--------------------------
function Add_Imported_Project
(Root_Project : Project_Type;
Project : Project_Type;
Imported_Project_Location : GNATCOLL.VFS.Virtual_File;
Report_Errors : Output.Output_Proc := null;
Use_Relative_Path : Boolean;
Use_Base_Name : Boolean := False;
Limited_With : Boolean := False)
return Import_Project_Error
is
use Prj.Tree.Tree_Private_Part;
use type Output.Output_Proc;
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
procedure Fail (S1 : String; S2 : String := ""; S3 : String := "");
-- Replaces Osint.Fail
----------
-- Fail --
----------
procedure Fail (S1 : String; S2 : String := ""; S3 : String := "") is
begin
if Report_Errors /= null then
Report_Errors (S1 & S2 & S3);
end if;
end Fail;
Basename : constant String := Base_Name
(Imported_Project_Location, Project_File_Extension);
Imported_Project : Project_Node_Id := Empty_Node;
Dep_ID : Name_Id;
Dep_Name : Prj.Tree.Tree_Private_Part.Project_Name_And_Node;
begin
Output.Set_Special_Output (Report_Errors);
Prj.Com.Fail := Fail'Unrestricted_Access;
Dep_ID := Get_String (Basename);
Dep_Name := Tree_Private_Part.Projects_Htable.Get
(Tree.Projects_HT, Dep_ID);
if Dep_Name /= No_Project_Name_And_Node then
if not File_Equal
(Format_Pathname
(Get_String (Path_Name_Of (Dep_Name.Node, Tree))),
Full_Name (Imported_Project_Location).all,
Build_Server)
then
if Report_Errors /= null then
Report_Errors
(-"A different project with the same name"
& " already exists in the project tree.");
end if;
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
return Project_Already_Exists;
else
Imported_Project := Dep_Name.Node;
end if;
else
Prj.Part.Parse
(Tree, Imported_Project,
Full_Name (Imported_Project_Location).all,
Current_Directory => Get_Current_Dir,
Always_Errout_Finalize => True);
end if;
if Imported_Project = Empty_Node then
Trace (Me, "Add_Imported_Project: imported project not found ("
& Full_Name (Imported_Project_Location).all & ")");
Output.Set_Special_Output (null);
Prj.Com.Fail := null;
return Imported_Project_Not_Found;
end if;
return Add_Imported_Project
(Root_Project => Root_Project,
Project => Project,
Imported_Project => Imported_Project,
Imported_Project_Location => Imported_Project_Location,
Report_Errors => Report_Errors,
Use_Relative_Path => Use_Relative_Path,
Use_Base_Name => Use_Base_Name,
Limited_With => Limited_With);
end Add_Imported_Project;
-----------------------------
-- For_Each_Directory_Node --
-----------------------------
procedure For_Each_Directory_Node
(Project : Project_Type; Action : Node_Callback)
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
procedure Process_List (List : Project_Node_Id);
-- Process a list of declarative items
------------------
-- Process_List --
------------------
procedure Process_List (List : Project_Node_Id) is
Node : Project_Node_Id := List;
Current, Expr, Term, Expr2 : Project_Node_Id;
begin
while Node /= Empty_Node loop
Current := Current_Item_Node (Node, Tree);
case Kind_Of (Current, Tree) is
when N_Attribute_Declaration =>
-- ??? Should avoid a hard-coded list of directory
-- attributes. Ideally, we would take into account
-- the attributes defined in the XML file
if Prj.Tree.Name_Of (Current, Tree) = Name_Source_Dirs
or else Prj.Tree.Name_Of (Current, Tree) = Name_Object_Dir
or else Prj.Tree.Name_Of (Current, Tree) = Name_Exec_Dir
then
Expr := Expression_Of (Current, Tree);
while Expr /= Empty_Node loop
Term := First_Term (Expr, Tree);
while Term /= Empty_Node loop
Current := Current_Term (Term, Tree);
case Kind_Of (Current, Tree) is
when N_Literal_String_List =>
Expr2 := First_Expression_In_List
(Current, Tree);
while Expr2 /= Empty_Node loop
Current := Current_Term
(First_Term (Expr2, Tree), Tree);
if Kind_Of (Current, Tree) /=
N_Literal_String
or else Next_Term
(First_Term (Expr2, Tree), Tree) /=
Empty_Node
then
Trace
(Me, "Cannot process lists of "
& " non-literal string "
& Kind_Of (Current, Tree)'Img);
else
Action (Current);
end if;
Expr2 := Next_Expression_In_List
(Expr2, Tree);
end loop;
when N_Literal_String =>
Action (Current);
when others =>
Trace (Me, "Ignoring "
& Kind_Of (Current, Tree)'Img);
null;
end case;
Term := Next_Term (Term, Tree);
end loop;
Expr := Next_Expression_In_List (Expr, Tree);
end loop;
end if;
when N_Case_Construction =>
Expr := First_Case_Item_Of (Current, Tree);
while Expr /= Empty_Node loop
Process_List (First_Declarative_Item_Of (Expr, Tree));
Expr := Next_Case_Item (Expr, Tree);
end loop;
when others =>
null;
end case;
Node := Next_Declarative_Item (Node, Tree);
end loop;
end Process_List;
begin
Process_List (First_Declarative_Item_Of
(Project_Declaration_Of (Project.Node, Tree), Tree));
end For_Each_Directory_Node;
---------------------
-- Rename_And_Move --
---------------------
procedure Rename_And_Move
(Root_Project : Project_Type;
Project : Project_Type;
New_Name : String;
New_Path : Virtual_File;
Report_Errors : Output.Output_Proc := null)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
Old_Path : constant Virtual_File := Project_Directory (Project);
procedure Change_Directory (Node : Project_Node_Id);
-- Change the directory refered to by Node
----------------------
-- Change_Directory --
----------------------
procedure Change_Directory (Node : Project_Node_Id) is
begin
case Kind_Of (Node, Tree) is
when N_Literal_String =>
declare
D : constant String :=
Get_String (String_Value_Of (Node, Tree));
begin
if not Is_Absolute_Path (D) then
Set_String_Value_Of
(Node,
Tree,
Get_String
(Relative_Path_Name
(Normalize_Pathname
(D, Full_Name
(Old_Path).all, Resolve_Links => False),
Full_Name (New_Path).all,
Build_Server)));
end if;
end;
when others =>
Trace (Me, "For_Each_Directory_Node: unknown node type: "
& Kind_Of (Node, Tree)'Img);
end case;
end Change_Directory;
D : constant String :=
Name_As_Directory (Full_Name (New_Path).all)
& To_File_Name (New_Name) & Project_File_Extension;
Full_Path : Name_Id := No_Name;
Name : constant Name_Id := Get_String (New_Name);
Old_Name : constant Name_Id := Prj.Tree.Name_Of (Project.Node, Tree);
Old : constant Project_Node_Id :=
Find_Project_In_Hierarchy (Root_Project, Name);
Imported : Project_Type;
Iterator : Imported_Project_Iterator;
With_Clause : Project_Node_Id;
Modified : Boolean;
begin
if Old /= Empty_Node
and then Old /= Project.Node
then
Trace (Me, "Rename_And_Move: project " & New_Name
& " already exists in the hierarchy");
Report_Errors
(-"Couldn't rename the project to " & New_Name
& ASCII.LF & (-"Project already exists in the project graph"));
return;
end if;
-- Replace all the with_clauses in the project hierarchy that points to
-- Project.
Iterator := Find_All_Projects_Importing (Project, Direct_Only => False);
loop
Imported := Current (Iterator);
exit when Imported = No_Project;
With_Clause := First_With_Clause_Of (Imported.Node, Tree);
Modified := False;
while With_Clause /= Empty_Node loop
if Project_Node_Of (With_Clause, Tree) = Project.Node then
Set_Name_Of (With_Clause, Tree, Name);
Set_Path_Name_Of (With_Clause, Tree,
Path_Name_Of (Project.Node, Tree));
if Full_Path = No_Name then
Full_Path := Get_String (D);
end if;
Set_String_Value_Of (With_Clause, Tree, Full_Path);
Modified := True;
end if;
With_Clause := Next_With_Clause_Of (With_Clause, Tree);
end loop;
if Modified then
Set_Project_Modified (Imported, True);
Reset_Cache (Imported, Imported_By => True);
Reset_Cache (Imported, Imported_By => False);
end if;
Next (Iterator);
end loop;
-- If the file was moved, update the source directories so that we still
-- point to the same physical directories.
if New_Path /= Project_Directory (Project) then
For_Each_Directory_Node
(Project, Change_Directory'Unrestricted_Access);
end if;
Set_Name_Of (Project.Node, Tree, Name);
Set_Directory_Of
(Project.Node,
Tree,
Get_String (Full_Name (New_Path).all));
Set_Path_Name_Of (Project.Node, Tree, Get_String (D));
-- We do not want to reread the display_name from the source, which is
-- no longer up-to-date, so we'll force its refresh from the tree
Set_Location_Of (Project.Node, Tree, No_Location);
-- Unregister the old name
Prj.Tree.Tree_Private_Part.Projects_Htable.Set
(Tree.Projects_HT,
Prj.Tree.Name_Of (Project.Node, Tree),
Prj.Tree.Tree_Private_Part.Project_Name_And_Node'
(Name => Old_Name,
Node => Empty_Node,
Canonical_Path => Path_Name_Type (Old_Name),
Extended => False,
Proj_Qualifier => Unspecified));
-- Register the new name
Prj.Tree.Tree_Private_Part.Projects_Htable.Set
(Tree.Projects_HT,
Prj.Tree.Name_Of (Project.Node, Tree),
Prj.Tree.Tree_Private_Part.Project_Name_And_Node'
(Name => Name,
Canonical_Path => Get_String (D),
Node => Project.Node,
Extended => False,
Proj_Qualifier => Unspecified));
Reset_Name_Table
(Project_Registry (Get_Registry (Project)),
Project, Get_String (Old_Name), New_Name);
Set_Project_Modified (Project, True);
Reset_Cache (Project, Imported_By => True);
Reset_Cache (Project, Imported_By => False);
-- This is no longer the default project, since it was
-- renamed. Otherwise, Project_Path would still return "" when saving
-- the default project.
Set_Status (Project, From_File);
exception
when E : others => Trace (Exception_Handle, E);
end Rename_And_Move;
--------------------
-- Create_Project --
--------------------
function Create_Project
(Registry : Projects.Registry.Project_Registry'Class;
Name : String;
Path : GNATCOLL.VFS.Virtual_File) return Project_Type
is
Tree : constant Project_Node_Tree_Ref := Get_Tree (Registry);
D : constant String :=
Name_As_Directory (Full_Name (Path).all)
& To_File_Name (Name) & Project_File_Extension;
Project : constant Project_Node_Id :=
Default_Project_Node (Tree, N_Project);
Project_Name : Name_Id;
P : Project_Type;
begin
-- Adding the name of the project
Project_Name := Get_String (Name);
Set_Name_Of (Project, Tree, Project_Name);
-- Adding the project path
Set_Directory_Of
(Project, Tree, Get_String (Full_Name (Path).all));
Set_Path_Name_Of (Project, Tree, Get_String (D));
-- Create the project declaration
Set_Project_Declaration_Of
(Project, Tree, Default_Project_Node (Tree, N_Project_Declaration));
-- Register the name of the project so that we can retrieve it from one
-- of its views
Prj.Tree.Tree_Private_Part.Projects_Htable.Set
(Tree.Projects_HT,
Prj.Tree.Name_Of (Project, Tree),
Prj.Tree.Tree_Private_Part.Project_Name_And_Node'
(Name => Project_Name,
Canonical_Path => Path_Name_Type (Project_Name),
Node => Project,
Extended => False,
Proj_Qualifier => Unspecified));
Reset_Project_Name_Hash (Registry, Prj.Tree.Name_Of (Project, Tree));
P := Get_Project_From_Name (Registry, Prj.Tree.Name_Of (Project, Tree));
Set_Project_Modified (P, True);
return P;
end Create_Project;
----------------
-- Get_String --
----------------
function Get_String (Str : String) return Name_Id is
begin
Name_Len := Str'Length;
Name_Buffer (1 .. Name_Len) := Str;
return Name_Find;
end Get_String;
function Get_String (Str : String) return Namet.File_Name_Type is
begin
Name_Len := Str'Length;
Name_Buffer (1 .. Name_Len) := Str;
return Name_Find;
end Get_String;
function Get_String (Str : String) return Namet.Path_Name_Type is
begin
Name_Len := Str'Length;
Name_Buffer (1 .. Name_Len) := Str;
return Name_Find;
end Get_String;
---------------------------------
-- Replace_Project_Occurrences --
---------------------------------
procedure Replace_Project_Occurrences
(Root_Project : Project_Type;
Project : Project_Type;
Use_Relative_Path : Boolean)
is
Tree : constant Project_Node_Tree_Ref := Root_Project.Tree;
Iterator : Imported_Project_Iterator :=
Start (Root_Project, Recursive => True);
With_Clause : Project_Node_Id;
P : Project_Type;
begin
loop
P := Current (Iterator);
exit when P = No_Project;
With_Clause := First_With_Clause_Of (P.Node, Tree);
while With_Clause /= Empty_Node loop
if Prj.Tree.Name_Of (Project_Node_Of (With_Clause, Tree), Tree) =
Prj.Tree.Name_Of (Project.Node, Tree)
then
Set_With_Clause_Path
(Tree, With_Clause, Full_Name (Project_Path (Project)).all,
Project.Node,
P.Node,
Use_Base_Name => False,
Use_Relative_Path => Use_Relative_Path);
Set_Project_Modified (P, True);
Reset_Cache (P, Imported_By => True);
end if;
With_Clause := Next_With_Clause_Of (With_Clause, Tree);
end loop;
Next (Iterator);
end loop;
Reset_Cache (Project, Imported_By => False);
end Replace_Project_Occurrences;
---------------------------------
-- Create_Environment_Variable --
---------------------------------
function Create_Environment_Variable
(Project : Project_Type;
Name : String;
Type_Name : String;
Env_Name : String) return Scenario_Variable
is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
Typ, Var : Project_Node_Id;
begin
if not Is_Editable (Project) then
Trace (Me, "Project is not editable");
return No_Variable;
end if;
Projects.Editor.Normalize.Normalize (Project);
Typ := Create_Type (Tree, Project.Node, Type_Name);
Var := Create_Typed_Variable
(Tree, Project.Node, Name, Typ, Add_Before_First_Case_Or_Pkg => True);
Set_Value_As_External (Tree, Var, Env_Name);
Set_Project_Modified (Project, True);
Reset_Scenario_Variables_Cache
(Project_Registry'Class (Get_Registry (Project)));
return (Name => Get_String (Env_Name),
Default => No_Name,
String_Type => Typ);
end Create_Environment_Variable;
-------------------
-- Add_Case_Item --
-------------------
procedure Add_Case_Item
(Tree : Project_Node_Tree_Ref;
Case_Node : Project_Node_Id;
Choice : Name_Id)
is
Item, S, In_List : Project_Node_Id;
begin
-- Add the new case item at the end of the list, so that the order of
-- items is the same as in the type declaration (H222-027)
Item := Default_Project_Node (Tree, N_Case_Item);
S := Default_Project_Node (Tree, N_Literal_String);
Set_String_Value_Of (S, Tree, Choice);
Set_First_Choice_Of (Item, Tree, S);
In_List := First_Case_Item_Of (Case_Node, Tree);
if In_List = Empty_Node then
Set_First_Case_Item_Of (Case_Node, Tree, Item);
else
while Next_Case_Item (In_List, Tree) /= Empty_Node loop
In_List := Next_Case_Item (In_List, Tree);
end loop;
Set_Next_Case_Item (In_List, Tree, Item);
end if;
end Add_Case_Item;
-----------------------------
-- Get_All_Possible_Values --
-----------------------------
function Get_All_Possible_Values
(Tree : Project_Node_Tree_Ref;
Variable : Project_Node_Id) return Name_Id_Array
is
Choice : Project_Node_Id := First_Literal_String
(String_Type_Of (Variable, Tree), Tree);
Choices_Count : Natural := 0;
begin
while Choice /= Empty_Node loop
Choices_Count := Choices_Count + 1;
Choice := Next_Literal_String (Choice, Tree);
end loop;
declare
Choices : Name_Id_Array (1 .. Choices_Count);
Index : Natural := Choices'First;
begin
Choice := First_Literal_String
(String_Type_Of (Variable, Tree), Tree);
while Choice /= Empty_Node loop
Choices (Index) := String_Value_Of (Choice, Tree);
Index := Index + 1;
Choice := Next_Literal_String (Choice, Tree);
end loop;
return Choices;
end;
end Get_All_Possible_Values;
---------------------
-- Normalize_Cases --
---------------------
procedure Normalize_Cases (Project : Projects.Project_Type) is
Tree : constant Project_Node_Tree_Ref := Project.Tree;
procedure Process_Declarative_List (Node : Project_Node_Id);
-- Check all case statements in the declarative list
------------------------------
-- Process_Declarative_List --
------------------------------
procedure Process_Declarative_List (Node : Project_Node_Id) is
Decl_Item, Current : Project_Node_Id := Node;
begin
-- Nothing to do if there is no project
if Node = Empty_Node then
return;
end if;
pragma Assert (Kind_Of (Decl_Item, Tree) = N_Declarative_Item);
while Decl_Item /= Empty_Node loop
Current := Current_Item_Node (Decl_Item, Tree);
exit when Current = Empty_Node;
case Kind_Of (Current, Tree) is
when N_Package_Declaration =>
Process_Declarative_List
(First_Declarative_Item_Of (Current, Tree));
when N_Case_Construction =>
declare
Values : Name_Id_Array := Get_All_Possible_Values
(Tree, Case_Variable_Reference_Of (Current, Tree));
Case_Item : Project_Node_Id :=
First_Case_Item_Of (Current, Tree);
Choice : Project_Node_Id;
begin
while Case_Item /= Empty_Node loop
Choice := First_Choice_Of (Case_Item, Tree);
while Choice /= Empty_Node loop
for N in Values'Range loop
if Values (N) =
String_Value_Of (Choice, Tree)
then
Values (N) := No_Name;
exit;
end if;
end loop;
Choice := Next_Literal_String (Choice, Tree);
end loop;
Process_Declarative_List
(First_Declarative_Item_Of (Case_Item, Tree));
Case_Item := Next_Case_Item (Case_Item, Tree);
end loop;
for V in Values'Range loop
if Values (V) /= No_Name then
Add_Case_Item
(Tree => Tree,
Case_Node => Current,
Choice => Values (V));
end if;
end loop;
end;
when others =>
null;
end case;
Decl_Item := Next_Declarative_Item (Decl_Item, Tree);
end loop;
end Process_Declarative_List;
begin
Process_Declarative_List
(First_Declarative_Item_Of
(Project_Declaration_Of (Project.Node, Tree), Tree));
end Normalize_Cases;
--------------------------
-- Set_Extended_Project --
--------------------------
procedure Set_Extended_Project
(Project : Projects.Project_Type;
Extended : Projects.Project_Type;
Extend_All : Boolean := False;
Use_Relative_Paths : Boolean := False)
is
begin
if Use_Relative_Paths then
declare
Path : constant String :=
Relative_Path_Name (Full_Name (Project_Path (Extended)).all,
Full_Name (Project_Directory (Project)).all,
Build_Server);
begin
Set_Extended_Project_Path_Of
(Project.Node,
Project.Tree,
To => Get_String (Path));
end;
else
Set_Extended_Project_Path_Of
(Project.Node,
Project.Tree,
To => Get_String (Full_Name (Project_Path (Extended)).all));
end if;
Set_Extended_Project_Of
(Project_Declaration_Of (Project.Node, Project.Tree),
Project.Tree,
To => Extended.Node);
if Extend_All then
Set_Is_Extending_All (Project.Node, Project.Tree);
end if;
end Set_Extended_Project;
end Projects.Editor;
|