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
|
/* -----------------------------------------------------------------------------
* This file is part of SWIG, which is licensed as a whole under version 3
* (or any later version) of the GNU General Public License. Some additional
* terms also apply to certain portions of SWIG. The full details of the SWIG
* license and copyrights can be found in the LICENSE and COPYRIGHT files
* included with the SWIG source code as distributed by the SWIG developers
* and at http://www.swig.org/legal.html.
*
* modula3.cxx
*
* Modula3 language module for SWIG.
* ----------------------------------------------------------------------------- */
/*
Text formatted with
indent -sob -br -ce -nut -npsl
*/
/*
Report:
- It's not a good concept to use member variables or global variables
for passing parameters to functions.
It's not a good concept to use functions of superclasses for specific services.
E.g. For SWIG this means: Generating accessor functions for member variables
is the most common but no general task to be processed in membervariableHandler.
Better provide a service function which generates accessor function code
and equip this service function with all parameters needed for input (parse node)
and output (generated code).
- How can I make globalvariableHandler not to generate
interface functions to two accessor functions
(that don't exist) ?
- How can I generate a typemap that turns every C reference argument into
its Modula 3 counterpart, that is
void test(Complex &z);
PROCEDURE test(VAR z:Complex);
- neither $*n_mangle nor $*n_type nor $*n_ltype return the type without
pointer converted to Modula3 equivalent,
$*n_mangle is the variant closest to what I expect
- using a typemap like
typemap(m3wrapintype) int * %{VAR $1_name: INTEGER%}
has the advantages:
- one C parameter can be turned into multiple M3 parameters
- the argument can be renamed
- using typemaps like
typemap(m3wrapinmode) int * "VAR"
typemap(m3wrapintype) int * "INTEGER"
has the advantages:
- multiple parameters with same type and default value can be bundled
- more conform to the other language modules
- Where takes the reduction of multi-typemaps place?
How can I preserve all parameters for functions of the intermediary class?
The answer is Getattrs(n,"tmap:m3rawintype:next")
- Char() can be used to transform a String to (char *)
which can be used for output with printf
- What is the while (checkAttribute()) loop in functionWrapper good for?
Appearently for skipping (numinputs=0) typemaps.
- SWIGTYPE const * - typemap is ignored, whereas
SWIGTYPE * - typemap is invoked, why?
Had it been (const SWIGTYPE *) instead?
- enumeration items should definitely be equipped
with its plain numerical value
One could add tag 'numvalue' in CParse/parser.y,
but it is still possible that someone declares an
enumeration using a symbolic constant.
I have quickly hacked
that the successive number is assigned
if "enumvalue" has suffix "+1".
The ultimate solution would be to generate a C program
which includes the header and outputs all constants.
This program might be compiled and run
by 'make' or by SWIG and the resulting output is fed back to SWIG.
- It's a bad idea to interpret feature value ""
'disable feature' because the value ""
might be sensible in case of feature:modula3:oldprefix.
- What's the difference between "sym:name" and "name" ?
"name" is the original name and
"sym:name" is probably modified by the user using %rename
- Is it possible for 'configure' to find out if m3pp is installed
and to invoke it for generated Modula3 files?
- It would be better to separate an arguments purpose and its name,
because an output variable with name "OUTPUT" is not very descriptive.
In case of PLPlot this could be solved by typedefs
that assign special purposes to the array types.
- Can one interpret $n_basetype as the identifier matched with SWIGTYPE ?
SWIG's odds:
- arguments of type (Node *) for SWIG functions
should be most often better (const Node *):
Swig_symbol_qualified, Getattr, nodeType, parentNode
- unique identifier style instead of
NewString, Getattr, firstChild
- 'class'.name is qualified,
'enum'.name and 'enumitem'.name is not
- Swig_symbol_qualified() returns NIL for enumeration nodes
- Is there a function that creates a C representation of a SWIG type string?
ToDo:
- create WeakRefs only for resources returned by function marked with %newobject
-> part of output conversion
- clean typemap conception
- should a multi-typemap for m3wrapouttype skip the corresponding input parameters?
when yes - How to handle inout-arguments? In this case like in-argument.
- C++ classes
- C++ exceptions
- allow for moving RECORD and OBJECT definitions
to separate files, with the main type called T
- call-back functions
- special option: fast access to class members by pointer arithmetic,
member offsets can be determined by a C++ program that print them.
- emit enumeration definitions when its first item is declared,
currently enumerations are emitted at the beginning of the file
Done:
- addThrow should convert the typemap by itself
- not possible because routine for attaching mapped types to parameter nodes
won't work for the function node
- turning error codes into exceptions
-> part of output value checking
- create WeakRefs for resources allocated by the library
-> part of output conversion
- TRY..FINALLY..END; can be omitted
- if there is no m3wrapfreearg
- no exception can be raised in the body (empty RAISES) list
*/
#include "swigmod.h"
#include <limits.h> // for INT_MAX
#include <ctype.h>
#define USAGE_ARG_DIR "m3wrapargdir typemap expect values: in, out, inout\n"
class MODULA3:public Language {
public:
enum block_type { no_block, constant, variable, blocktype, revelation };
private:
struct M3File {
String *f;
Hash *import;
block_type bt;
/* VC++ 6 doesn't allow the access to 'no_block'
if it is a private member of MODULA3 class */
M3File():f(NewString("")), import(NewHash()), bt(no_block) {
}
~M3File() {
Delete(f);
Delete(import);
}
/* -----------------------------------------------------------------------------
* enterBlock()
*
* Make sure that a given declaration is written to the right declaration block,
* that is constants are written after "CONST" and so on ...
* ----------------------------------------------------------------------------- */
void enterBlock(block_type newbt) {
static const char *ident[] = { "", "\nCONST\n", "\nVAR\n", "\nTYPE\n", "\nREVEAL\n" };
#ifdef DEBUG
if ((bt < 0) || (4 < bt)) {
printf("bt %d out of range\n", bt);
}
#endif
if (newbt != bt) {
Append(f, ident[newbt]);
bt = newbt;
}
}
};
static const char *usage;
const String *empty_string;
Hash *swig_types_hash;
File *f_begin;
File *f_runtime;
File *f_header;
File *f_wrappers;
File *f_init;
bool proxy_flag; // Flag for generating proxy classes
bool have_default_constructor_flag;
bool native_function_flag; // Flag for when wrapping a native function
bool enum_constant_flag; // Flag for when wrapping an enum or constant
bool static_flag; // Flag for when wrapping a static functions or member variables
bool variable_wrapper_flag; // Flag for when wrapping a nonstatic member variable
bool wrapping_member_flag; // Flag for when wrapping a member variable/enum/const
bool global_variable_flag; // Flag for when wrapping a global variable
bool old_variable_names; // Flag for old style variable names in the intermediary class
bool unsafe_module;
String *m3raw_name; // raw interface name
M3File m3raw_intf; // raw interface
M3File m3raw_impl; // raw implementation (usually empty)
String *m3wrap_name; // wrapper module
M3File m3wrap_intf;
M3File m3wrap_impl;
String *m3makefile;
String *targetlibrary;
String *proxy_class_def;
String *proxy_class_code;
String *proxy_class_name;
String *variable_name; //Name of a variable being wrapped
String *variable_type; //Type of this variable
Hash *enumeration_coll; //Collection of all enumerations.
/* The items are nodes with members:
"items" - hash of with key 'itemname' and content 'itemvalue'
"max" - maximum value in item list
*/
String *constant_values;
String *constantfilename;
String *renamefilename;
String *typemapfilename;
String *m3raw_imports; //intermediary class imports from %pragma
String *module_imports; //module imports from %pragma
String *m3raw_baseclass; //inheritance for intermediary class class from %pragma
String *module_baseclass; //inheritance for module class from %pragma
String *m3raw_interfaces; //interfaces for intermediary class class from %pragma
String *module_interfaces; //interfaces for module class from %pragma
String *m3raw_class_modifiers; //class modifiers for intermediary class overriden by %pragma
String *m3wrap_modifiers; //class modifiers for module class overriden by %pragma
String *upcasts_code; //C++ casts for inheritance hierarchies C++ code
String *m3raw_cppcasts_code; //C++ casts up inheritance hierarchies intermediary class code
String *destructor_call; //C++ destructor call if any
String *outfile;
enum type_additions { none, pointer, reference };
public:
/* -----------------------------------------------------------------------------
* MODULA3()
* ----------------------------------------------------------------------------- */
MODULA3():
empty_string(NewString("")),
swig_types_hash(NULL),
f_begin(NULL),
f_runtime(NULL),
f_header(NULL),
f_wrappers(NULL),
f_init(NULL),
proxy_flag(true),
have_default_constructor_flag(false),
native_function_flag(false),
enum_constant_flag(false),
static_flag(false),
variable_wrapper_flag(false),
wrapping_member_flag(false),
global_variable_flag(false),
old_variable_names(false),
unsafe_module(false),
m3raw_name(NULL),
m3raw_intf(),
m3raw_impl(),
m3wrap_name(NULL),
m3wrap_intf(),
m3wrap_impl(),
m3makefile(NULL),
targetlibrary(NULL),
proxy_class_def(NULL),
proxy_class_code(NULL),
proxy_class_name(NULL),
variable_name(NULL),
variable_type(NULL),
enumeration_coll(NULL),
constant_values(NULL),
constantfilename(NULL),
renamefilename(NULL),
typemapfilename(NULL),
m3raw_imports(NULL),
module_imports(NULL),
m3raw_baseclass(NULL),
module_baseclass(NULL),
m3raw_interfaces(NULL),
module_interfaces(NULL),
m3raw_class_modifiers(NULL),
m3wrap_modifiers(NULL),
upcasts_code(NULL),
m3raw_cppcasts_code(NULL),
destructor_call(NULL),
outfile(NULL) {
}
/************** some utility functions ***************/
/* -----------------------------------------------------------------------------
* getMappedType()
*
* Return the type of 'p' mapped by 'map'.
* Print a standard warning if 'p' can't be mapped.
* ----------------------------------------------------------------------------- */
String *getMappedType(Node *p, const char *map) {
String *mapattr = NewString("tmap:");
Append(mapattr, map);
String *tm = Getattr(p, mapattr);
if (tm == NIL) {
Swig_warning(WARN_MODULA3_TYPEMAP_TYPE_UNDEF, input_file, line_number,
"No '%s' typemap defined for type '%s'\n", map, SwigType_str(Getattr(p, "type"), 0));
}
Delete(mapattr);
return tm;
}
/* -----------------------------------------------------------------------------
* getMappedTypeNew()
*
* Similar to getMappedType but uses Swig_type_lookup_new.
* ----------------------------------------------------------------------------- */
String *getMappedTypeNew(Node *n, const char *map, const char *lname = "", bool warn = true) {
String *tm = Swig_typemap_lookup(map, n, lname, 0);
if ((tm == NIL) && warn) {
Swig_warning(WARN_MODULA3_TYPEMAP_TYPE_UNDEF, input_file, line_number,
"No '%s' typemap defined for type '%s'\n", map, SwigType_str(Getattr(n, "type"), 0));
}
return tm;
}
/* -----------------------------------------------------------------------------
* attachMappedType()
*
* Obtain the type mapped by 'map' and attach it to the node
* ----------------------------------------------------------------------------- */
void attachMappedType(Node *n, const char *map, const char *lname = "") {
String *tm = Swig_typemap_lookup(map, n, lname, 0);
if (tm != NIL) {
String *attr = NewStringf("tmap:%s", map);
Setattr(n, attr, tm);
Delete(attr);
}
}
/* -----------------------------------------------------------------------------
* skipIgnored()
*
* Skip all parameters that have 'numinputs=0'
* with respect to a given typemap.
* ----------------------------------------------------------------------------- */
Node *skipIgnored(Node *p, const char *map) {
String *niattr = NewStringf("tmap:%s:numinputs", map);
String *nextattr = NewStringf("tmap:%s:next", map);
while ((p != NIL) && checkAttribute(p, niattr, "0")) {
p = Getattr(p, nextattr);
}
Delete(nextattr);
Delete(niattr);
return p;
}
/* -----------------------------------------------------------------------------
* isInParam()
* isOutParam()
*
* Check if the parameter is intended for input or for output.
* ----------------------------------------------------------------------------- */
bool isInParam(Node *p) {
String *dir = Getattr(p, "tmap:m3wrapargdir");
//printf("dir for %s: %s\n", Char(Getattr(p,"name")), Char(dir));
if ((dir == NIL) || (Strcmp(dir, "in") == 0)
|| (Strcmp(dir, "inout") == 0)) {
return true;
} else if (Strcmp(dir, "out") == 0) {
return false;
} else {
printf("%s", USAGE_ARG_DIR);
return false;
}
}
bool isOutParam(Node *p) {
String *dir = Getattr(p, "tmap:m3wrapargdir");
if ((dir == NIL) || (Strcmp(dir, "in") == 0)) {
return false;
} else if ((Strcmp(dir, "out") == 0) || (Strcmp(dir, "inout") == 0)) {
return true;
} else {
printf("%s", USAGE_ARG_DIR);
return false;
}
}
/* -----------------------------------------------------------------------------
* printAttrs()
*
* For debugging: Show all attributes of a node and their values.
* ----------------------------------------------------------------------------- */
void printAttrs(Node *n) {
Iterator it;
for (it = First(n); it.key != NIL; it = Next(it)) {
printf("%s = %s\n", Char(it.key), Char(Getattr(n, it.key)));
}
}
/* -----------------------------------------------------------------------------
* hasPrefix()
*
* Check if a string have a given prefix.
* ----------------------------------------------------------------------------- */
bool hasPrefix(const String *str, const String *prefix) {
int len_prefix = Len(prefix);
return (Len(str) > len_prefix)
&& (Strncmp(str, prefix, len_prefix) == 0);
}
/* -----------------------------------------------------------------------------
* getQualifiedName()
*
* Return fully qualified identifier of n.
* ----------------------------------------------------------------------------- */
#if 0
// Swig_symbol_qualified returns NIL for enumeration nodes
String *getQualifiedName(Node *n) {
String *qual = Swig_symbol_qualified(n);
String *name = Getattr(n, "name");
if (hasContent(qual)) {
return NewStringf("%s::%s", qual, name);
} else {
return name;
}
}
#else
String *getQualifiedName(Node *n) {
String *name = Copy(Getattr(n, "name"));
n = parentNode(n);
while (n != NIL) {
const String *type = nodeType(n);
if ((Strcmp(type, "class") == 0) || (Strcmp(type, "struct") == 0) || (Strcmp(type, "namespace") == 0)) {
String *newname = NewStringf("%s::%s", Getattr(n, "name"), name);
Delete(name);
//name = newname;
// Hmpf, the class name is already qualified.
return newname;
}
n = parentNode(n);
}
//printf("qualified name: %s\n", Char(name));
return name;
}
#endif
/* -----------------------------------------------------------------------------
* nameToModula3()
*
* Turn usual C identifiers like "this_is_an_identifier"
* into usual Modula 3 identifier like "thisIsAnIdentifier"
* ----------------------------------------------------------------------------- */
String *nameToModula3(const String *sym, bool leadingCap) {
int len_sym = Len(sym);
char *csym = Char(sym);
char *m3sym = new char[len_sym + 1];
int i, j;
bool cap = leadingCap;
for (i = 0, j = 0; j < len_sym; j++) {
char c = csym[j];
if ((c == '_') || (c == ':')) {
cap = true;
} else {
if (isdigit(c)) {
m3sym[i] = c;
cap = true;
} else {
if (cap) {
m3sym[i] = (char)toupper(c);
} else {
m3sym[i] = (char)tolower(c);
}
cap = false;
}
i++;
}
}
m3sym[i] = 0;
String *result = NewString(m3sym);
delete[]m3sym;
return result;
}
/* -----------------------------------------------------------------------------
* capitalizeFirst()
*
* Make the first character upper case.
* ----------------------------------------------------------------------------- */
String *capitalizeFirst(const String *str) {
return NewStringf("%c%s", toupper(*Char(str)), Char(str) + 1);
}
/* -----------------------------------------------------------------------------
* prefixedNameToModula3()
*
* If feature modula3:oldprefix and modula3:newprefix is present
* and the C identifier has leading 'oldprefix'
* then it is replaced by the 'newprefix'.
* The rest is converted to Modula style.
* ----------------------------------------------------------------------------- */
String *prefixedNameToModula3(Node *n, const String *sym, bool leadingCap) {
String *oldPrefix = Getattr(n, "feature:modula3:oldprefix");
String *newPrefix = Getattr(n, "feature:modula3:newprefix");
String *result = NewString("");
char *short_sym = Char(sym);
// if at least one prefix feature is present
// the replacement takes place
if ((oldPrefix != NIL) || (newPrefix != NIL)) {
if ((oldPrefix == NIL) || hasPrefix(sym, oldPrefix)) {
short_sym += Len(oldPrefix);
if (newPrefix != NIL) {
Append(result, newPrefix);
}
}
}
String *suffix = nameToModula3(short_sym, leadingCap || hasContent(newPrefix));
Append(result, suffix);
Delete(suffix);
return result;
}
/* -----------------------------------------------------------------------------
* hasContent()
*
* Check if the string exists and contains something.
* ----------------------------------------------------------------------------- */
bool hasContent(const String *str) {
return (str != NIL) && (Strcmp(str, "") != 0);
}
/* -----------------------------------------------------------------------------
* openWriteFile()
*
* Caution: The file must be freshly allocated and will be destroyed
* by this routine.
* ----------------------------------------------------------------------------- */
File *openWriteFile(String *name) {
File *file = NewFile(name, "w", SWIG_output_files());
if (!file) {
FileErrorDisplay(name);
SWIG_exit(EXIT_FAILURE);
}
Delete(name);
return file;
}
/* -----------------------------------------------------------------------------
* aToL()
*
* like atol but with additional user warning
* ----------------------------------------------------------------------------- */
long aToL(const String *value) {
char *endptr;
long numvalue = strtol(Char(value), &endptr, 0);
if (*endptr != 0) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "The string <%s> does not denote a numeric value.\n", value);
}
return numvalue;
}
/* -----------------------------------------------------------------------------
* strToL()
*
* like strtol but returns if the conversion was successful
* ----------------------------------------------------------------------------- */
bool strToL(const String *value, long &numvalue) {
char *endptr;
numvalue = strtol(Char(value), &endptr, 0);
return (*endptr == 0);
}
/* -----------------------------------------------------------------------------
* evalExpr()
*
* Evaluate simple expression as they may occur in "enumvalue" attributes.
* ----------------------------------------------------------------------------- */
bool evalExpr(String *value, long &numvalue) {
// Split changes file status of String and thus cannot receive 'const' strings
//printf("evaluate <%s>\n", Char(value));
List *summands = Split(value, '+', INT_MAX);
Iterator sm = First(summands);
numvalue = 0;
for (; sm.item != NIL; sm = Next(sm)) {
String *smvalue = Getattr(constant_values, sm.item);
long smnumvalue;
if (smvalue != NIL) {
if (!strToL(smvalue, smnumvalue)) {
//printf("evaluation: abort 0 <%s>\n", Char(smvalue));
return false;
}
} else {
if (!strToL(sm.item, smnumvalue)) {
//printf("evaluation: abort 1 <%s>\n", Char(sm));
return false;
}
}
numvalue += smnumvalue;
}
//printf("evaluation: return %ld\n", numvalue);
return true;
}
/* -----------------------------------------------------------------------------
* log2()
*
* Determine the position of the single bit of a power of two.
* Returns true if the given number is a power of two.
* ----------------------------------------------------------------------------- */
bool log2(long n, long &exp) {
exp = 0;
while (n > 0) {
if ((n & 1) != 0) {
return n == 1;
}
exp++;
n >>= 1;
}
return false;
}
/* -----------------------------------------------------------------------------
* writeArg
*
* Write a function argument or RECORD entry definition.
* Bundles arguments of same type and default value.
* 'name.next==NIL' denotes the end of the entry or argument list.
* ----------------------------------------------------------------------------- */
bool equalNilStr(const String *str0, const String *str1) {
if (str0 == NIL) {
return (str1 == NIL);
//return (str0==NIL) == (str1==NIL);
} else {
return (str1 != NIL) && (Cmp(str0, str1) == 0);
//return Cmp(str0,str1)==0;
}
}
struct writeArgState {
String *mode, *name, *type, *value;
bool hold;
writeArgState():mode(NIL), name(NIL), type(NIL), value(NIL), hold(false) {
}
};
void writeArg(File *f, writeArgState & state, String *mode, String *name, String *type, String *value) {
/* skip the first argument,
only store the information for the next call in this case */
if (state.name != NIL) {
if ((!state.hold) && (state.mode != NIL)) {
Printf(f, "%s ", state.mode);
}
if ((name != NIL) && equalNilStr(state.mode, mode) && equalNilStr(state.type, type) && (state.value == NIL) && (value == NIL)
/* the same expression may have different values
due to side effects of the called function */
/*equalNilStr(state.value,value) */
) {
Printf(f, "%s, ", state.name);
state.hold = true;
} else {
Append(f, state.name);
if (state.type != NIL) {
Printf(f, ": %s", state.type);
}
if (state.value != NIL) {
Printf(f, ":= %s", state.value);
}
Append(f, ";\n");
state.hold = false;
}
}
/* at the next call the current argument will be the previous one */
state.mode = mode;
state.name = name;
state.type = type;
state.value = value;
}
/* -----------------------------------------------------------------------------
* getProxyName()
*
* Test to see if a type corresponds to something wrapped with a proxy class
* Return NULL if not otherwise the proxy class name
* ----------------------------------------------------------------------------- */
String *getProxyName(SwigType *t) {
if (proxy_flag) {
Node *n = classLookup(t);
if (n) {
return Getattr(n, "sym:name");
}
}
return NULL;
}
/*************** language processing ********************/
/* ------------------------------------------------------------
* main()
* ------------------------------------------------------------ */
virtual void main(int argc, char *argv[]) {
SWIG_library_directory("modula3");
// Look for certain command line options
for (int i = 1; i < argc; i++) {
if (argv[i]) {
if (strcmp(argv[i], "-generateconst") == 0) {
if (argv[i + 1]) {
constantfilename = NewString(argv[i + 1]);
Swig_mark_arg(i);
Swig_mark_arg(i + 1);
i++;
} else {
Swig_arg_error();
}
} else if (strcmp(argv[i], "-generaterename") == 0) {
if (argv[i + 1]) {
renamefilename = NewString(argv[i + 1]);
Swig_mark_arg(i);
Swig_mark_arg(i + 1);
i++;
} else {
Swig_arg_error();
}
} else if (strcmp(argv[i], "-generatetypemap") == 0) {
if (argv[i + 1]) {
typemapfilename = NewString(argv[i + 1]);
Swig_mark_arg(i);
Swig_mark_arg(i + 1);
i++;
} else {
Swig_arg_error();
}
} else if (strcmp(argv[i], "-noproxy") == 0) {
Swig_mark_arg(i);
proxy_flag = false;
} else if (strcmp(argv[i], "-oldvarnames") == 0) {
Swig_mark_arg(i);
old_variable_names = true;
} else if (strcmp(argv[i], "-help") == 0) {
Printf(stdout, "%s\n", usage);
}
}
}
// Add a symbol to the parser for conditional compilation
Preprocessor_define("SWIGMODULA3 1", 0);
// Add typemap definitions
SWIG_typemap_lang("modula3");
SWIG_config_file("modula3.swg");
allow_overloading();
}
/* ---------------------------------------------------------------------
* top()
* --------------------------------------------------------------------- */
virtual int top(Node *n) {
if (hasContent(constantfilename) || hasContent(renamefilename) || hasContent(typemapfilename)) {
int result = SWIG_OK;
if (hasContent(constantfilename)) {
result = generateConstantTop(n) && result;
}
if (hasContent(renamefilename)) {
result = generateRenameTop(n) && result;
}
if (hasContent(typemapfilename)) {
result = generateTypemapTop(n) && result;
}
return result;
} else {
return generateM3Top(n);
}
}
void scanConstant(File *file, Node *n) {
Node *child = firstChild(n);
while (child != NIL) {
String *constname = NIL;
String *type = nodeType(child);
if ((Strcmp(type, "enumitem") == 0)
|| (Strcmp(type, "constant") == 0)) {
#if 1
constname = getQualifiedName(child);
#else
constname = Getattr(child, "value");
if ((!hasContent(constname))
|| (('0' <= *Char(constname)) && (*Char(constname) <= '9'))) {
constname = Getattr(child, "name");
}
#endif
}
if (constname != NIL) {
Printf(file, " printf(\"%%%%constnumeric(%%Lg) %s;\\n\", (long double)%s);\n", constname, constname);
}
scanConstant(file, child);
child = nextSibling(child);
}
}
int generateConstantTop(Node *n) {
File *file = openWriteFile(NewStringf("%s.c", constantfilename));
if (CPlusPlus) {
Printf(file, "#include <cstdio>\n");
} else {
Printf(file, "#include <stdio.h>\n");
}
Printf(file, "#include \"%s\"\n", input_file);
Printf(file, "\n");
Printf(file, "int main (int argc, char *argv[]) {\n");
Printf(file, "\
/*This progam must work for floating point numbers and integers.\n\
Thus all numbers are converted to double precision floating point format.*/\n");
scanConstant(file, n);
Printf(file, " return 0;\n");
Printf(file, "}\n");
Delete(file);
return SWIG_OK;
}
void scanRename(File *file, Node *n) {
Node *child = firstChild(n);
while (child != NIL) {
String *type = nodeType(child);
if (Strcmp(type, "cdecl") == 0) {
ParmList *p = Getattr(child, "parms");
if (p != NIL) {
String *name = getQualifiedName(child);
String *m3name = nameToModula3(name, true);
/*don't know how to get the original C type identifiers */
//String *arguments = createCSignature (child);
Printf(file, "%%rename(\"%s\") %s;\n", m3name, name);
/*Printf(file, "%%rename(\"%s\") %s %s(%s);\n",
m3name, Getattr(n,"type"), name, arguments); */
Delete(name);
Delete(m3name);
//Delete (arguments);
}
}
scanRename(file, child);
child = nextSibling(child);
}
}
int generateRenameTop(Node *n) {
File *file = openWriteFile(NewStringf("%s.i", renamefilename));
Printf(file, "\
/* This file was generated from %s\n\
by SWIG with option -generaterename. */\n\
\n", input_file);
scanRename(file, n);
Delete(file);
return SWIG_OK;
}
void scanTypemap(File *file, Node *n) {
Node *child = firstChild(n);
while (child != NIL) {
String *type = nodeType(child);
//printf("nodetype %s\n", Char(type));
String *storage = Getattr(child, "storage");
if ((Strcmp(type, "class") == 0) || ((Strcmp(type, "cdecl") == 0) && (storage != NIL)
&& (Strcmp(storage, "typedef") == 0))) {
String *name = getQualifiedName(child);
String *m3name = nameToModula3(name, true);
Printf(file, "%%typemap(\"m3wrapintype\") %s %%{%s%%}\n", name, m3name);
Printf(file, "%%typemap(\"m3rawintype\") %s %%{%s%%}\n", name, m3name);
Printf(file, "\n");
}
scanTypemap(file, child);
child = nextSibling(child);
}
}
int generateTypemapTop(Node *n) {
File *file = openWriteFile(NewStringf("%s.i", typemapfilename));
Printf(file, "\
/* This file was generated from %s\n\
by SWIG with option -generatetypemap. */\n\
\n", input_file);
scanTypemap(file, n);
Delete(file);
return SWIG_OK;
}
int generateM3Top(Node *n) {
/* Initialize all of the output files */
outfile = Getattr(n, "outfile");
f_begin = NewFile(outfile, "w", SWIG_output_files());
if (!f_begin) {
FileErrorDisplay(outfile);
SWIG_exit(EXIT_FAILURE);
}
f_runtime = NewString("");
f_init = NewString("");
f_header = NewString("");
f_wrappers = NewString("");
m3makefile = NewString("");
/* Register file targets with the SWIG file handler */
Swig_register_filebyname("header", f_header);
Swig_register_filebyname("wrapper", f_wrappers);
Swig_register_filebyname("begin", f_begin);
Swig_register_filebyname("runtime", f_runtime);
Swig_register_filebyname("init", f_init);
Swig_register_filebyname("m3rawintf", m3raw_intf.f);
Swig_register_filebyname("m3rawimpl", m3raw_impl.f);
Swig_register_filebyname("m3wrapintf", m3wrap_intf.f);
Swig_register_filebyname("m3wrapimpl", m3wrap_impl.f);
Swig_register_filebyname("m3makefile", m3makefile);
swig_types_hash = NewHash();
String *name = Getattr(n, "name");
// Make the intermediary class and module class names. The intermediary class name can be set in the module directive.
Node *optionsnode = Getattr(Getattr(n, "module"), "options");
if (optionsnode != NIL) {
String *m3raw_name_tmp = Getattr(optionsnode, "m3rawname");
if (m3raw_name_tmp != NIL) {
m3raw_name = Copy(m3raw_name_tmp);
}
}
if (m3raw_name == NIL) {
m3raw_name = NewStringf("%sRaw", name);
}
Setattr(m3wrap_impl.import, m3raw_name, "");
m3wrap_name = Copy(name);
proxy_class_def = NewString("");
proxy_class_code = NewString("");
m3raw_baseclass = NewString("");
m3raw_interfaces = NewString("");
m3raw_class_modifiers = NewString(""); // package access only to the intermediary class by default
m3raw_imports = NewString("");
m3raw_cppcasts_code = NewString("");
m3wrap_modifiers = NewString("public");
module_baseclass = NewString("");
module_interfaces = NewString("");
module_imports = NewString("");
upcasts_code = NewString("");
Swig_banner(f_begin);
Printf(f_runtime, "\n\n#ifndef SWIGMODULA3\n#define SWIGMODULA3\n#endif\n\n");
Swig_name_register("wrapper", "Modula3_%f");
if (old_variable_names) {
Swig_name_register("set", "set_%n%v");
Swig_name_register("get", "get_%n%v");
}
Printf(f_wrappers, "\n#ifdef __cplusplus\n");
Printf(f_wrappers, "extern \"C\" {\n");
Printf(f_wrappers, "#endif\n\n");
constant_values = NewHash();
scanForConstPragmas(n);
enumeration_coll = NewHash();
collectEnumerations(enumeration_coll, n);
/* Emit code */
Language::top(n);
// Generate m3makefile
// This will be unnecessary if SWIG is invoked from Quake.
{
File *file = openWriteFile(NewStringf("%sm3makefile", SWIG_output_directory()));
Printf(file, "%% automatically generated quake file for %s\n\n", name);
/* Write the fragments written by '%insert'
collected while 'top' processed the parse tree */
Printv(file, m3makefile, NIL);
Printf(file, "import(\"libm3\")\n");
//Printf(file, "import_lib(\"%s\",\"/usr/lib\")\n", name);
Printf(file, "module(\"%s\")\n", m3raw_name);
Printf(file, "module(\"%s\")\n\n", m3wrap_name);
if (targetlibrary != NIL) {
Printf(file, "library(\"%s\")\n", targetlibrary);
} else {
Printf(file, "library(\"m3%s\")\n", name);
}
Delete(file);
}
// Generate the raw interface
{
File *file = openWriteFile(NewStringf("%s%s.i3", SWIG_output_directory(), m3raw_name));
emitBanner(file);
Printf(file, "INTERFACE %s;\n\n", m3raw_name);
emitImportStatements(m3raw_intf.import, file);
Printf(file, "\n");
// Write the interface generated within 'top'
Printv(file, m3raw_intf.f, NIL);
Printf(file, "\nEND %s.\n", m3raw_name);
Delete(file);
}
// Generate the raw module
{
File *file = openWriteFile(NewStringf("%s%s.m3", SWIG_output_directory(), m3raw_name));
emitBanner(file);
Printf(file, "MODULE %s;\n\n", m3raw_name);
emitImportStatements(m3raw_impl.import, file);
Printf(file, "\n");
// will be empty usually
Printv(file, m3raw_impl.f, NIL);
Printf(file, "BEGIN\nEND %s.\n", m3raw_name);
Delete(file);
}
// Generate the interface for the comfort wrappers
{
File *file = openWriteFile(NewStringf("%s%s.i3", SWIG_output_directory(), m3wrap_name));
emitBanner(file);
Printf(file, "INTERFACE %s;\n", m3wrap_name);
emitImportStatements(m3wrap_intf.import, file);
Printf(file, "\n");
{
Iterator it = First(enumeration_coll);
if (it.key != NIL) {
Printf(file, "TYPE\n");
}
for (; it.key != NIL; it = Next(it)) {
Printf(file, "\n");
emitEnumeration(file, it.key, it.item);
}
}
// Add the wrapper methods
Printv(file, m3wrap_intf.f, NIL);
// Finish off the class
Printf(file, "\nEND %s.\n", m3wrap_name);
Delete(file);
}
// Generate the wrapper routines implemented in Modula 3
{
File *file = openWriteFile(NewStringf("%s%s.m3", SWIG_output_directory(), m3wrap_name));
emitBanner(file);
if (unsafe_module) {
Printf(file, "UNSAFE ");
}
Printf(file, "MODULE %s;\n\n", m3wrap_name);
emitImportStatements(m3wrap_impl.import, file);
Printf(file, "\n");
// Add the wrapper methods
Printv(file, m3wrap_impl.f, NIL);
Printf(file, "\nBEGIN\nEND %s.\n", m3wrap_name);
Delete(file);
}
if (upcasts_code)
Printv(f_wrappers, upcasts_code, NIL);
Printf(f_wrappers, "#ifdef __cplusplus\n");
Printf(f_wrappers, "}\n");
Printf(f_wrappers, "#endif\n");
// Output a Modula 3 type wrapper class for each SWIG type
for (Iterator swig_type = First(swig_types_hash); swig_type.item != NIL; swig_type = Next(swig_type)) {
emitTypeWrapperClass(swig_type.key, swig_type.item);
}
Delete(swig_types_hash);
swig_types_hash = NULL;
Delete(constant_values);
constant_values = NULL;
Delete(enumeration_coll);
enumeration_coll = NULL;
Delete(m3raw_name);
m3raw_name = NULL;
Delete(m3raw_baseclass);
m3raw_baseclass = NULL;
Delete(m3raw_interfaces);
m3raw_interfaces = NULL;
Delete(m3raw_class_modifiers);
m3raw_class_modifiers = NULL;
Delete(m3raw_imports);
m3raw_imports = NULL;
Delete(m3raw_cppcasts_code);
m3raw_cppcasts_code = NULL;
Delete(proxy_class_def);
proxy_class_def = NULL;
Delete(proxy_class_code);
proxy_class_code = NULL;
Delete(m3wrap_name);
m3wrap_name = NULL;
Delete(m3wrap_modifiers);
m3wrap_modifiers = NULL;
Delete(targetlibrary);
targetlibrary = NULL;
Delete(module_baseclass);
module_baseclass = NULL;
Delete(module_interfaces);
module_interfaces = NULL;
Delete(module_imports);
module_imports = NULL;
Delete(upcasts_code);
upcasts_code = NULL;
Delete(constantfilename);
constantfilename = NULL;
Delete(renamefilename);
renamefilename = NULL;
Delete(typemapfilename);
typemapfilename = NULL;
/* Close all of the files */
Dump(f_runtime, f_begin);
Dump(f_header, f_begin);
Dump(f_wrappers, f_begin);
Wrapper_pretty_print(f_init, f_begin);
Delete(f_header);
Delete(f_wrappers);
Delete(f_init);
Delete(f_runtime);
Delete(f_begin);
return SWIG_OK;
}
/* -----------------------------------------------------------------------------
* emitBanner()
* ----------------------------------------------------------------------------- */
void emitBanner(File *f) {
Printf(f, "(*******************************************************************************\n");
Swig_banner_target_lang(f, " *");
Printf(f, "*******************************************************************************)\n\n");
}
/* ----------------------------------------------------------------------
* nativeWrapper()
* ---------------------------------------------------------------------- */
virtual int nativeWrapper(Node *n) {
String *wrapname = Getattr(n, "wrap:name");
if (!addSymbol(wrapname, n))
return SWIG_ERROR;
if (Getattr(n, "type")) {
Swig_save("nativeWrapper", n, "name", NIL);
Setattr(n, "name", wrapname);
native_function_flag = true;
functionWrapper(n);
Swig_restore(n);
native_function_flag = false;
} else {
Swig_error(input_file, line_number, "No return type for %%native method %s.\n", Getattr(n, "wrap:name"));
}
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* functionWrapper()
* ---------------------------------------------------------------------- */
virtual int functionWrapper(Node *n) {
String *type = nodeType(n);
String *funcType = Getattr(n, "modula3:functype");
String *rawname = Getattr(n, "name");
String *symname = Getattr(n, "sym:name");
String *capname = capitalizeFirst(symname);
//String *wname = Swig_name_wrapper(symname);
//printf("function: %s\n", Char(symname));
//printf(" purpose: %s\n", Char(funcType));
if (Strcmp(type, "cdecl") == 0) {
if (funcType == NIL) {
// no wrapper needed for plain functions
emitM3RawPrototype(n, rawname, symname);
emitM3Wrapper(n, symname);
} else if (Strcmp(funcType, "method") == 0) {
Setattr(n, "modula3:funcname", capname);
emitCWrapper(n, capname);
emitM3RawPrototype(n, capname, capname);
emitM3Wrapper(n, capname);
} else if (Strcmp(funcType, "accessor") == 0) {
/*
* Generate the proxy class properties for public member variables.
* Not for enums and constants.
*/
if (proxy_flag && wrapping_member_flag && !enum_constant_flag) {
// Capitalize the first letter in the function name
Setattr(n, "proxyfuncname", capname);
Setattr(n, "imfuncname", symname);
if (hasPrefix(capname, "Set")) {
Setattr(n, "modula3:setname", capname);
} else {
Setattr(n, "modula3:getname", capname);
}
emitCWrapper(n, capname);
emitM3RawPrototype(n, capname, capname);
emitM3Wrapper(n, capname);
//proxyClassFunctionHandler(n);
}
#ifdef DEBUG
} else {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Function type <%s> unknown.\n", Char(funcType));
#endif
}
} else if ((Strcmp(type, "constructor") == 0) || (Strcmp(type, "destructor") == 0)) {
emitCWrapper(n, capname);
emitM3RawPrototype(n, capname, capname);
emitM3Wrapper(n, capname);
}
// a Java relict
#if 0
if (!(proxy_flag && is_wrapping_class()) && !enum_constant_flag) {
emitM3Wrapper(n, capname);
}
#endif
Delete(capname);
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* emitCWrapper()
*
* Generate the wrapper in C which calls C++ methods.
* ---------------------------------------------------------------------- */
virtual int emitCWrapper(Node *n, const String *wname) {
String *rawname = Getattr(n, "name");
String *c_return_type = NewString("");
String *cleanup = NewString("");
String *outarg = NewString("");
String *body = NewString("");
Hash *throws_hash = NewHash();
ParmList *l = Getattr(n, "parms");
SwigType *t = Getattr(n, "type");
String *symname = Getattr(n, "sym:name");
if (!Getattr(n, "sym:overloaded")) {
if (!addSymbol(wname, n)) {
return SWIG_ERROR;
}
}
// A new wrapper function object
Wrapper *f = NewWrapper();
/* Attach the non-standard typemaps to the parameter list. */
Swig_typemap_attach_parms("ctype", l, f);
/* Get return types */
{
String *tm = getMappedTypeNew(n, "ctype", "");
if (tm != NIL) {
Printf(c_return_type, "%s", tm);
}
}
bool is_void_return = (Cmp(c_return_type, "void") == 0);
if (!is_void_return) {
Wrapper_add_localv(f, "cresult", c_return_type, "cresult = 0", NIL);
}
Printv(f->def, " SWIGEXPORT ", c_return_type, " ", wname, "(", NIL);
// Emit all of the local variables for holding arguments.
emit_parameter_variables(l, f);
/* Attach the standard typemaps */
emit_attach_parmmaps(l, f);
Setattr(n, "wrap:parms", l);
// Generate signature and argument conversion for C wrapper
{
Parm *p;
attachParameterNames(n, "tmap:name", "c:wrapname", "m3arg%d");
bool gencomma = false;
for (p = skipIgnored(l, "in"); p; p = skipIgnored(p, "in")) {
String *arg = Getattr(p, "c:wrapname");
{
/* Get the ctype types of the parameter */
String *c_param_type = getMappedType(p, "ctype");
// Add parameter to C function
Printv(f->def, gencomma ? ", " : "", c_param_type, " ", arg, NIL);
Delete(c_param_type);
gencomma = true;
}
// Get typemap for this argument
String *tm = getMappedType(p, "in");
if (tm != NIL) {
addThrows(throws_hash, "in", p);
Replaceall(tm, "$input", arg);
Setattr(p, "emit:input", arg); /*??? */
Printf(f->code, "%s\n", tm);
p = Getattr(p, "tmap:in:next");
} else {
p = nextSibling(p);
}
}
}
/* Insert constraint checking code */
{
Parm *p;
for (p = l; p;) {
String *tm = Getattr(p, "tmap:check");
if (tm != NIL) {
addThrows(throws_hash, "check", p);
Replaceall(tm, "$target", Getattr(p, "lname")); /* deprecated */
Replaceall(tm, "$arg", Getattr(p, "emit:input")); /* deprecated? */
Replaceall(tm, "$input", Getattr(p, "emit:input"));
Printv(f->code, tm, "\n", NIL);
p = Getattr(p, "tmap:check:next");
} else {
p = nextSibling(p);
}
}
}
/* Insert cleanup code */
{
Parm *p;
for (p = l; p;) {
String *tm = Getattr(p, "tmap:freearg");
if (tm != NIL) {
addThrows(throws_hash, "freearg", p);
Replaceall(tm, "$source", Getattr(p, "emit:input")); /* deprecated */
Replaceall(tm, "$arg", Getattr(p, "emit:input")); /* deprecated? */
Replaceall(tm, "$input", Getattr(p, "emit:input"));
Printv(cleanup, tm, "\n", NIL);
p = Getattr(p, "tmap:freearg:next");
} else {
p = nextSibling(p);
}
}
}
/* Insert argument output code */
{
Parm *p;
for (p = l; p;) {
String *tm = Getattr(p, "tmap:argout");
if (tm != NIL) {
addThrows(throws_hash, "argout", p);
Replaceall(tm, "$source", Getattr(p, "emit:input")); /* deprecated */
Replaceall(tm, "$target", Getattr(p, "lname")); /* deprecated */
Replaceall(tm, "$arg", Getattr(p, "emit:input")); /* deprecated? */
Replaceall(tm, "$result", "cresult");
Replaceall(tm, "$input", Getattr(p, "emit:input"));
Printv(outarg, tm, "\n", NIL);
p = Getattr(p, "tmap:argout:next");
} else {
p = nextSibling(p);
}
}
}
// Get any Modula 3 exception classes in the throws typemap
ParmList *throw_parm_list = NULL;
if ((throw_parm_list = Getattr(n, "catchlist"))) {
Swig_typemap_attach_parms("throws", throw_parm_list, f);
Parm *p;
for (p = throw_parm_list; p; p = nextSibling(p)) {
addThrows(throws_hash, "throws", p);
}
}
Setattr(n, "wrap:name", wname);
// Now write code to make the function call
if (!native_function_flag) {
String *actioncode = emit_action(n);
/* Return value if necessary */
String *tm;
if ((tm = Swig_typemap_lookup_out("out", n, Swig_cresult_name(), f, actioncode))) {
addThrows(throws_hash, "out", n);
Replaceall(tm, "$source", Swig_cresult_name()); /* deprecated */
Replaceall(tm, "$target", "cresult"); /* deprecated */
Replaceall(tm, "$result", "cresult");
Printf(f->code, "%s", tm);
if (hasContent(tm))
Printf(f->code, "\n");
} else {
Swig_warning(WARN_TYPEMAP_OUT_UNDEF, input_file, line_number, "Unable to use return type %s in function %s.\n", SwigType_str(t, 0), rawname);
}
emit_return_variable(n, t, f);
}
/* Output argument output code */
Printv(f->code, outarg, NIL);
/* Output cleanup code */
Printv(f->code, cleanup, NIL);
/* Look to see if there is any newfree cleanup code */
if (GetFlag(n, "feature:new")) {
String *tm = Swig_typemap_lookup("newfree", n, Swig_cresult_name(), 0);
if (tm != NIL) {
addThrows(throws_hash, "newfree", n);
Replaceall(tm, "$source", Swig_cresult_name()); /* deprecated */
Printf(f->code, "%s\n", tm);
}
}
/* See if there is any return cleanup code */
if (!native_function_flag) {
String *tm = Swig_typemap_lookup("ret", n, Swig_cresult_name(), 0);
if (tm != NIL) {
Replaceall(tm, "$source", Swig_cresult_name()); /* deprecated */
Printf(f->code, "%s\n", tm);
}
}
/* Finish C wrapper */
Printf(f->def, ") {");
if (!is_void_return)
Printv(f->code, " return cresult;\n", NIL);
Printf(f->code, "}\n");
/* Substitute the cleanup code */
Replaceall(f->code, "$cleanup", cleanup);
/* Substitute the function name */
Replaceall(f->code, "$symname", symname);
if (!is_void_return) {
Replaceall(f->code, "$null", "0");
} else {
Replaceall(f->code, "$null", "");
}
/* Dump the function out */
if (!native_function_flag) {
Wrapper_print(f, f_wrappers);
}
Delete(c_return_type);
Delete(cleanup);
Delete(outarg);
Delete(body);
Delete(throws_hash);
DelWrapper(f);
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* emitM3RawPrototype()
*
* Generate an EXTERNAL procedure declaration in Modula 3
* which is the interface to an existing C routine or a C wrapper.
* ---------------------------------------------------------------------- */
virtual int emitM3RawPrototype(Node *n, const String *cname, const String *m3name) {
String *im_return_type = NewString("");
//String *symname = Getattr(n,"sym:name");
ParmList *l = Getattr(n, "parms");
/* Attach the non-standard typemaps to the parameter list. */
Swig_typemap_attach_parms("m3rawinmode", l, NULL);
Swig_typemap_attach_parms("m3rawintype", l, NULL);
/* Get return types */
bool has_return;
{
String *tm = getMappedTypeNew(n, "m3rawrettype", "");
if (tm != NIL) {
Printf(im_return_type, "%s", tm);
}
has_return = hasContent(tm);
}
/* cname is the original name if 'n' denotes a C function
and it is the relabeled name (sym:name) if 'n' denotes a C++ method or similar */
m3raw_intf.enterBlock(no_block);
Printf(m3raw_intf.f, "\n<* EXTERNAL %s *>\nPROCEDURE %s (", cname, m3name);
// Generate signature for raw interface
{
Parm *p;
writeArgState state;
attachParameterNames(n, "tmap:rawinname", "modula3:rawname", "arg%d");
for (p = skipIgnored(l, "m3rawintype"); p; p = skipIgnored(p, "m3rawintype")) {
/* Get argument passing mode, should be one of VALUE, VAR, READONLY */
String *mode = Getattr(p, "tmap:m3rawinmode");
String *argname = Getattr(p, "modula3:rawname");
String *im_param_type = getMappedType(p, "m3rawintype");
addImports(m3raw_intf.import, "m3rawintype", p);
writeArg(m3raw_intf.f, state, mode, argname, im_param_type, NIL);
if (im_param_type != NIL) {
p = Getattr(p, "tmap:m3rawintype:next");
} else {
p = nextSibling(p);
}
}
writeArg(m3raw_intf.f, state, NIL, NIL, NIL, NIL);
}
/* Finish M3 raw prototype */
Printf(m3raw_intf.f, ")");
// neither a C wrapper nor a plain C function may throw an exception
//generateThrowsClause(throws_hash, m3raw_intf.f);
if (has_return) {
Printf(m3raw_intf.f, ": %s", im_return_type);
}
Printf(m3raw_intf.f, ";\n");
Delete(im_return_type);
return SWIG_OK;
}
/* -----------------------------------------------------------------------
* variableWrapper()
* ----------------------------------------------------------------------- */
virtual int variableWrapper(Node *n) {
Language::variableWrapper(n);
return SWIG_OK;
}
/* -----------------------------------------------------------------------
* globalvariableHandler()
* ----------------------------------------------------------------------- */
virtual int globalvariableHandler(Node *n) {
SwigType *t = Getattr(n, "type");
String *tm;
// Get the variable type
if ((tm = getMappedTypeNew(n, "m3wraptype", ""))) {
substituteClassname(t, tm);
}
variable_name = Getattr(n, "sym:name");
variable_type = Copy(tm);
// Get the variable type expressed in terms of Modula 3 equivalents of C types
if ((tm = getMappedTypeNew(n, "m3rawtype", ""))) {
m3raw_intf.enterBlock(no_block);
Printf(m3raw_intf.f, "\n<* EXTERNAL *> VAR %s: %s;\n", variable_name, tm);
}
// Output the property's accessor methods
/*
global_variable_flag = true;
int ret = Language::globalvariableHandler(n);
global_variable_flag = false;
*/
Printf(m3wrap_impl.f, "\n\n");
//return ret;
return 1;
}
long getConstNumeric(Node *n) {
String *constnumeric = Getfeature(n, "constnumeric");
String *name = Getattr(n, "name");
long numvalue;
if (constnumeric == NIL) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Feature 'constnumeric' is necessary to obtain value of %s.\n", name);
return 0;
} else if (!strToL(constnumeric, numvalue)) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number,
"The feature 'constnumeric' of %s specifies value <%s> which is not an integer constant.\n", name, constnumeric);
return 0;
} else {
return numvalue;
}
}
/* ------------------------------------------------------------------------
* generateIntConstant()
*
* Considers node as an integer constant definition
* and generate a Modula 3 constant definition.
* ------------------------------------------------------------------------ */
void generateIntConstant(Node *n, String *name) {
String *value = Getattr(n, "value");
String *type = Getfeature(n, "modula3:constint:type");
String *conv = Getfeature(n, "modula3:constint:conv");
if (name == NIL) {
name = Getattr(n, "sym:name");
}
long numvalue;
bool isSimpleNum = strToL(value, numvalue);
if (!isSimpleNum) {
numvalue = getConstNumeric(n);
}
String *m3value;
if ((conv == NIL) || ((Strcmp(conv, "set:int") != 0) && (Strcmp(conv, "int:set") != 0))) {
/* The original value of the constant has precedence over
'constnumeric' feature since we like to keep
the style (that is the base) of simple numeric constants */
if (isSimpleNum) {
if (hasPrefix(value, "0x")) {
m3value = NewStringf("16_%s", Char(value) + 2);
} else if ((Len(value) > 1) && (*Char(value) == '0')) {
m3value = NewStringf("8_%s", Char(value) + 1);
} else {
m3value = Copy(value);
}
/* If we cannot easily obtain the value of a numeric constant,
we use the results given by a C compiler. */
} else {
m3value = Copy(Getfeature(n, "constnumeric"));
}
} else {
// if the value can't be converted, it is ignored
if (convertInt(numvalue, numvalue, conv)) {
m3value = NewStringf("%d", numvalue);
} else {
m3value = NIL;
}
}
if (m3value != NIL) {
m3wrap_intf.enterBlock(constant);
Printf(m3wrap_intf.f, "%s", name);
if (hasContent(type)) {
Printf(m3wrap_intf.f, ": %s", type);
}
Printf(m3wrap_intf.f, " = %s;\n", m3value);
Delete(m3value);
}
}
/* -----------------------------------------------------------------------
* generateSetConstant()
*
* Considers node as a set constant definition
* and generate a Modula 3 constant definition.
* ------------------------------------------------------------------------ */
void generateSetConstant(Node *n, String *name) {
String *value = Getattr(n, "value");
String *type = Getfeature(n, "modula3:constset:type");
String *setname = Getfeature(n, "modula3:constset:set");
String *basename = Getfeature(n, "modula3:constset:base");
String *conv = Getfeature(n, "modula3:constset:conv");
m3wrap_intf.enterBlock(constant);
Printf(m3wrap_intf.f, "%s", name);
if (type != NIL) {
Printf(m3wrap_intf.f, ":%s ", type);
}
Printf(m3wrap_intf.f, " = %s{", setname);
long numvalue = 0;
if (!strToL(value, numvalue)) {
numvalue = getConstNumeric(n);
}
convertInt(numvalue, numvalue, conv);
bool isIntType = Strcmp(basename, "CARDINAL") == 0;
Hash *items = NIL;
if (!isIntType) {
Hash *enumeration = Getattr(enumeration_coll, basename);
if (enumeration == NIL) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "There is no enumeration <%s> as needed for the set.\n", setname);
isIntType = true;
} else {
items = Getattr(enumeration, "items");
}
}
bool gencomma = false;
int bitpos = 0;
while (numvalue > 0) {
if ((numvalue & 1) != 0) {
if (isIntType) {
if (gencomma) {
Printv(m3wrap_intf.f, ",", NIL);
}
gencomma = true;
Printf(m3wrap_intf.f, "%d", bitpos);
} else {
char bitval[15];
sprintf(bitval, "%d", bitpos);
String *bitname = Getattr(items, bitval);
if (bitname == NIL) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Enumeration <%s> has no value <%s>.\n", setname, bitval);
} else {
if (gencomma) {
Printv(m3wrap_intf.f, ",", NIL);
}
gencomma = true;
Printf(m3wrap_intf.f, "%s.%s", basename, bitname);
}
}
}
numvalue >>= 1;
bitpos++;
}
Printf(m3wrap_intf.f, "};\n");
}
void generateConstant(Node *n) {
// any of the special interpretation disables the default behaviour
String *enumitem = Getfeature(n, "modula3:enumitem:name");
String *constset = Getfeature(n, "modula3:constset:name");
String *constint = Getfeature(n, "modula3:constint:name");
if (hasContent(enumitem) || hasContent(constset) || hasContent(constint)) {
if (hasContent(constset)) {
generateSetConstant(n, constset);
}
if (hasContent(constint)) {
generateIntConstant(n, constint);
}
} else {
String *value = Getattr(n, "value");
String *name = Getattr(n, "sym:name");
if (name == NIL) {
name = Getattr(n, "name");
}
m3wrap_intf.enterBlock(constant);
Printf(m3wrap_intf.f, "%s = %s;\n", name, value);
}
}
void emitEnumeration(File *file, String *name, Node *n) {
Printf(file, "%s = {", name);
int i;
bool gencomma = false;
int max = aToL(Getattr(n, "max"));
Hash *items = Getattr(n, "items");
for (i = 0; i <= max; i++) {
if (gencomma) {
Printf(file, ",");
}
Printf(file, "\n");
gencomma = true;
char numstr[15];
sprintf(numstr, "%d", i);
String *name = Getattr(items, numstr);
if (name != NIL) {
Printv(file, name, NIL);
} else {
Printf(file, "Dummy%d", i);
}
}
Printf(file, "\n};\n");
}
/* -----------------------------------------------------------------------
* constantWrapper()
*
* Handles constants and enumeration items.
* ------------------------------------------------------------------------ */
virtual int constantWrapper(Node *n) {
generateConstant(n);
return SWIG_OK;
}
#if 0
// enumerations are handled like constant definitions
/* -----------------------------------------------------------------------------
* enumDeclaration()
* ----------------------------------------------------------------------------- */
virtual int enumDeclaration(Node *n) {
String *symname = nameToModula3(Getattr(n, "sym:name"), true);
enumerationStart(symname);
int result = Language::enumDeclaration(n);
enumerationStop();
Delete(symname);
return result;
}
#endif
/* -----------------------------------------------------------------------------
* enumvalueDeclaration()
* ----------------------------------------------------------------------------- */
virtual int enumvalueDeclaration(Node *n) {
generateConstant(n);
/*
This call would continue processing in the constantWrapper
which cannot handle values like "RED+1".
return Language::enumvalueDeclaration(n);
*/
return SWIG_OK;
}
/* -----------------------------------------------------------------------------
* pragmaDirective()
*
* Valid Pragmas:
* imclassbase - base (extends) for the intermediary class
* imclassclassmodifiers - class modifiers for the intermediary class
* imclasscode - text (Modula 3 code) is copied verbatim to the intermediary class
* imclassimports - import statements for the intermediary class
* imclassinterfaces - interface (implements) for the intermediary class
*
* modulebase - base (extends) for the module class
* moduleclassmodifiers - class modifiers for the module class
* modulecode - text (Modula 3 code) is copied verbatim to the module class
* moduleimports - import statements for the module class
* moduleinterfaces - interface (implements) for the module class
*
* ----------------------------------------------------------------------------- */
virtual int pragmaDirective(Node *n) {
if (!ImportMode) {
String *lang = Getattr(n, "lang");
String *code = Getattr(n, "name");
String *value = Getattr(n, "value");
if (Strcmp(lang, "modula3") == 0) {
String *strvalue = NewString(value);
Replaceall(strvalue, "\\\"", "\"");
/*
bool isEnumItem = Strcmp(code, "enumitem") == 0;
bool isSetItem = Strcmp(code, "setitem") == 0;
*/
if (Strcmp(code, "imclassbase") == 0) {
Delete(m3raw_baseclass);
m3raw_baseclass = Copy(strvalue);
} else if (Strcmp(code, "imclassclassmodifiers") == 0) {
Delete(m3raw_class_modifiers);
m3raw_class_modifiers = Copy(strvalue);
} else if (Strcmp(code, "imclasscode") == 0) {
Printf(m3raw_intf.f, "%s\n", strvalue);
} else if (Strcmp(code, "imclassimports") == 0) {
Delete(m3raw_imports);
m3raw_imports = Copy(strvalue);
} else if (Strcmp(code, "imclassinterfaces") == 0) {
Delete(m3raw_interfaces);
m3raw_interfaces = Copy(strvalue);
} else if (Strcmp(code, "modulebase") == 0) {
Delete(module_baseclass);
module_baseclass = Copy(strvalue);
} else if (Strcmp(code, "moduleclassmodifiers") == 0) {
Delete(m3wrap_modifiers);
m3wrap_modifiers = Copy(strvalue);
} else if (Strcmp(code, "modulecode") == 0) {
Printf(m3wrap_impl.f, "%s\n", strvalue);
} else if (Strcmp(code, "moduleimports") == 0) {
Delete(module_imports);
module_imports = Copy(strvalue);
} else if (Strcmp(code, "moduleinterfaces") == 0) {
Delete(module_interfaces);
module_interfaces = Copy(strvalue);
} else if (Strcmp(code, "unsafe") == 0) {
unsafe_module = true;
} else if (Strcmp(code, "library") == 0) {
if (targetlibrary) {
Delete(targetlibrary);
}
targetlibrary = Copy(strvalue);
} else if (Strcmp(code, "enumitem") == 0) {
} else if (Strcmp(code, "constset") == 0) {
} else if (Strcmp(code, "constint") == 0) {
} else if (Strcmp(code, "makesetofenum") == 0) {
m3wrap_intf.enterBlock(blocktype);
Printf(m3wrap_intf.f, "%sSet = SET OF %s;\n", value, value);
} else {
Swig_warning(WARN_MODULA3_UNKNOWN_PRAGMA, input_file, line_number, "Unrecognized pragma <%s>.\n", code);
}
Delete(strvalue);
}
}
return Language::pragmaDirective(n);
}
void Setfeature(Node *n, const char *feature, const String *value, bool warn = false) {
//printf("tag feature <%s> with value <%s>\n", feature, Char(value));
String *attr = NewStringf("feature:%s", feature);
if ((Setattr(n, attr, value) != 0) && warn) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Feature <%s> of %s did already exist.\n", feature, Getattr(n, "name"));
}
Delete(attr);
}
String *Getfeature(Node *n, const char *feature) {
//printf("retrieve feature <%s> with value <%s>\n", feature, Char(value));
String *attr = NewStringf("feature:%s", feature);
String *result = Getattr(n, attr);
Delete(attr);
return result;
}
bool convertInt(long in, long &out, const String *mode) {
if ((mode == NIL) || (Strcmp(mode, "int:int") == 0) || (Strcmp(mode, "set:set") == 0)) {
out = in;
return true;
} else if (Strcmp(mode, "set:int") == 0) {
return log2(in, out);
} else if (Strcmp(mode, "int:set") == 0) {
out = 1L << in;
return unsigned (in) < (sizeof(out) * 8);
} else {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Unknown integer conversion method <%s>.\n", mode);
return false;
}
}
void collectEnumerations(Hash *enums, Node *n) {
Node *child = firstChild(n);
while (child != NIL) {
String *name = Getattr(child, "name");
const bool isConstant = Strcmp(nodeType(child), "constant") == 0;
const bool isEnumItem = Strcmp(nodeType(child), "enumitem") == 0;
if (isConstant || isEnumItem) {
//printf("%s%s name %s\n", isConstant?"constant":"", isEnumItem?"enumitem":"", Char(name));
{
String *m3name = Getfeature(child, "modula3:enumitem:name");
String *m3enum = Getfeature(child, "modula3:enumitem:enum");
String *conv = Getfeature(child, "modula3:enumitem:conv");
if (m3enum != NIL) {
//printf("m3enum %s\n", Char(m3enum));
if (m3name == NIL) {
m3name = name;
}
long max = -1;
Hash *items;
Hash *enumnode = Getattr(enums, m3enum);
if (enumnode == NIL) {
enumnode = NewHash();
items = NewHash();
Setattr(enumnode, "items", items);
Setattr(enums, m3enum, enumnode);
} else {
String *maxstr = Getattr(enumnode, "max");
if (maxstr != NIL) {
max = aToL(maxstr);
}
items = Getattr(enumnode, "items");
}
long numvalue;
String *value = Getattr(child, "value");
//printf("value: %s\n", Char(value));
if ((value == NIL) || (!strToL(value, numvalue))) {
value = Getattr(child, "enumvalue");
if ((value == NIL) || (!evalExpr(value, numvalue))) {
numvalue = getConstNumeric(child);
}
//printf("constnumeric: %s\n", Char(value));
}
Setattr(constant_values, name, NewStringf("%d", numvalue));
if (convertInt(numvalue, numvalue, conv)) {
String *newvalue = NewStringf("%d", numvalue);
String *oldname = Getattr(items, newvalue);
if (oldname != NIL) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "The value <%s> is already assigned to <%s>.\n", value, oldname);
}
//printf("items %p, set %s = %s\n", items, Char(newvalue), Char(m3name));
Setattr(items, newvalue, m3name);
if (max < numvalue) {
max = numvalue;
}
Setattr(enumnode, "max", NewStringf("%d", max));
}
}
}
}
collectEnumerations(enums, child);
child = nextSibling(child);
}
}
enum const_pragma_type { cpt_none, cpt_constint, cpt_constset, cpt_enumitem };
struct const_id_pattern {
String *prefix, *parentEnum;
};
void tagConstants(Node *first, String *parentEnum, const const_id_pattern & pat, const String *pragma, List *convdesc) {
Node *n = first;
while (n != NIL) {
String *name = getQualifiedName(n);
bool isConstant = Strcmp(nodeType(n), "constant") == 0;
bool isEnumItem = Strcmp(nodeType(n), "enumitem") == 0;
if ((isConstant || isEnumItem) && ((pat.prefix == NIL) || (hasPrefix(name, pat.prefix))) && ((pat.parentEnum == NIL) || ((parentEnum != NIL)
&&
(Strcmp
(pat.parentEnum, parentEnum)
== 0)))) {
//printf("tag %s\n", Char(name));
String *srctype = Getitem(convdesc, 1);
String *relationstr = Getitem(convdesc, 3);
List *relationdesc = Split(relationstr, ',', 2);
// transform name from C to Modula3 style
String *srcstyle = NIL;
String *newprefix = NIL;
{
//printf("name conversion <%s>\n", Char(Getitem(convdesc,2)));
List *namedesc = Split(Getitem(convdesc, 2), ',', INT_MAX);
Iterator nameit = First(namedesc);
for (; nameit.item != NIL; nameit = Next(nameit)) {
List *nameassign = Split(nameit.item, '=', 2);
String *tag = Getitem(nameassign, 0);
String *data = Getitem(nameassign, 1);
//printf("name conv <%s> = <%s>\n", Char(tag), Char(data));
if (Strcmp(tag, "srcstyle") == 0) {
srcstyle = Copy(data);
} else if (Strcmp(tag, "prefix") == 0) {
newprefix = Copy(data);
} else {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Unknown name conversion tag <%s> with value <%s>.\n", tag, data);
}
Delete(nameassign);
}
Delete(namedesc);
}
const char *stem = Char(name);
if (pat.prefix != NIL) {
//printf("pat.prefix %s for %s\n", Char(pat.prefix), Char(name));
stem += Len(pat.prefix);
}
String *newname;
if (srcstyle && Strcmp(srcstyle, "underscore") == 0) {
if (newprefix != NIL) {
String *newstem = nameToModula3(stem, true);
newname = NewStringf("%s%s", newprefix, newstem);
Delete(newstem);
} else {
newname = nameToModula3(stem, true);
}
} else {
if (srcstyle != NIL) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Unknown C identifier style <%s>.\n", srcstyle);
}
newname = Copy(name);
}
if (Strcmp(pragma, "enumitem") == 0) {
if (Len(relationdesc) != 1) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Expected <enumeration>, got <%s>.\n", relationstr);
}
Setfeature(n, "modula3:enumitem:name", newname, true);
Setfeature(n, "modula3:enumitem:enum", relationstr, true);
Setfeature(n, "modula3:enumitem:conv", NewStringf("%s:int", srctype), true);
} else if (Strcmp(pragma, "constint") == 0) {
if (Len(relationdesc) != 1) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Expected <ordinal type>, got <%s>.\n", relationstr);
}
Setfeature(n, "modula3:constint:name", newname, true);
Setfeature(n, "modula3:constint:type", Getitem(relationdesc, 0), true);
Setfeature(n, "modula3:constint:conv", NewStringf("%s:int", srctype), true);
} else if (Strcmp(pragma, "constset") == 0) {
if (Len(relationdesc) != 2) {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Expected <set type,base type>, got <%s>.\n", relationstr);
}
String *settype = Getitem(relationdesc, 0);
Setfeature(n, "modula3:constset:name", newname, true);
//Setfeature(n,"modula3:constset:type",settype,true);
Setfeature(n, "modula3:constset:set", settype, true);
Setfeature(n, "modula3:constset:base", Getitem(relationdesc, 1), true);
Setfeature(n, "modula3:constset:conv", NewStringf("%s:set", srctype), true);
}
Delete(newname);
Delete(relationdesc);
}
if (Strcmp(nodeType(n), "enum") == 0) {
//printf("explore enum %s, qualification %s\n", Char(name), Char(Swig_symbol_qualified(n)));
tagConstants(firstChild(n), name, pat, pragma, convdesc);
} else {
tagConstants(firstChild(n), NIL, pat, pragma, convdesc);
}
n = nextSibling(n);
}
}
void scanForConstPragmas(Node *n) {
Node *child = firstChild(n);
while (child != NIL) {
const String *type = nodeType(child);
if (Strcmp(type, "pragma") == 0) {
const String *lang = Getattr(child, "lang");
const String *code = Getattr(child, "name");
String *value = Getattr(child, "value");
if (Strcmp(lang, "modula3") == 0) {
const_pragma_type cpt = cpt_none;
if (Strcmp(code, "constint") == 0) {
cpt = cpt_constint;
} else if (Strcmp(code, "constset") == 0) {
cpt = cpt_constset;
} else if (Strcmp(code, "enumitem") == 0) {
cpt = cpt_enumitem;
}
if (cpt != cpt_none) {
const_id_pattern pat = { NIL, NIL };
List *convdesc = Split(value, ';', 4);
List *patterndesc = Split(Getitem(convdesc, 0), ',', INT_MAX);
Iterator patternit;
for (patternit = First(patterndesc); patternit.item != NIL; patternit = Next(patternit)) {
List *patternassign = Split(patternit.item, '=', 2);
String *tag = Getitem(patternassign, 0);
String *data = Getitem(patternassign, 1);
if (Strcmp(tag, "prefix") == 0) {
pat.prefix = Copy(data);
} else if (Strcmp(tag, "enum") == 0) {
pat.parentEnum = Copy(data);
} else {
Swig_warning(WARN_MODULA3_BAD_ENUMERATION, input_file, line_number, "Unknown identification tag <%s> with value <%s>.\n", tag, data);
}
Delete(patternassign);
}
tagConstants(child, NIL, pat, code, convdesc);
Delete(patterndesc);
}
}
}
scanForConstPragmas(child);
child = nextSibling(child);
}
}
/* -----------------------------------------------------------------------------
* emitProxyClassDefAndCPPCasts()
* ----------------------------------------------------------------------------- */
void emitProxyClassDefAndCPPCasts(Node *n) {
String *c_classname = SwigType_namestr(Getattr(n, "name"));
String *c_baseclass = NULL;
String *baseclass = NULL;
String *c_baseclassname = NULL;
String *name = Getattr(n, "name");
/* Deal with inheritance */
List *baselist = Getattr(n, "bases");
if (baselist) {
Iterator base = First(baselist);
while (base.item) {
if (!GetFlag(base.item, "feature:ignore")) {
String *baseclassname = Getattr(base.item, "name");
if (!c_baseclassname) {
c_baseclassname = baseclassname;
baseclass = Copy(getProxyName(baseclassname));
if (baseclass)
c_baseclass = SwigType_namestr(baseclassname);
} else {
/* Warn about multiple inheritance for additional base class(es) */
String *proxyclassname = Getattr(n, "classtypeobj");
Swig_warning(WARN_MODULA3_MULTIPLE_INHERITANCE, Getfile(n), Getline(n),
"Warning for %s, base %s ignored. Multiple inheritance is not supported in Modula 3.\n", SwigType_namestr(proxyclassname), SwigType_namestr(baseclassname));
}
}
base = Next(base);
}
}
bool derived = baseclass && getProxyName(c_baseclassname);
if (!baseclass)
baseclass = NewString("");
// Inheritance from pure Modula 3 classes
const String *pure_baseclass = typemapLookup(n, "m3base", name, WARN_NONE);
if (hasContent(pure_baseclass) && hasContent(baseclass)) {
Swig_warning(WARN_MODULA3_MULTIPLE_INHERITANCE, Getfile(n), Getline(n),
"Warning for %s, base %s ignored. Multiple inheritance is not supported in Modula 3.\n", name, pure_baseclass);
}
// Pure Modula 3 interfaces
const String *pure_interfaces = typemapLookup(n, derived ? "m3interfaces_derived" : "m3interfaces",
name, WARN_NONE);
// Start writing the proxy class
Printv(proxy_class_def, typemapLookup(n, "m3imports", name, WARN_NONE), // Import statements
"\n", typemapLookup(n, "m3classmodifiers", name, WARN_MODULA3_TYPEMAP_CLASSMOD_UNDEF), // Class modifiers
" class $m3classname", // Class name and bases
(derived || *Char(pure_baseclass) || *Char(pure_interfaces)) ? " : " : "", baseclass, pure_baseclass, ((derived || *Char(pure_baseclass)) && *Char(pure_interfaces)) ? // Interfaces
", " : "", pure_interfaces, " {\n", " private IntPtr swigCPtr;\n", // Member variables for memory handling
derived ? "" : " protected bool swigCMemOwn;\n", "\n", " ", typemapLookup(n, "m3ptrconstructormodifiers", name, WARN_MODULA3_TYPEMAP_PTRCONSTMOD_UNDEF), // pointer constructor modifiers
" $m3classname(IntPtr cPtr, bool cMemoryOwn) ", // Constructor used for wrapping pointers
derived ?
": base($imclassname.$m3classnameTo$baseclass(cPtr), cMemoryOwn) {\n"
: "{\n swigCMemOwn = cMemoryOwn;\n", " swigCPtr = cPtr;\n", " }\n", NIL);
if (!have_default_constructor_flag) { // All proxy classes need a constructor
Printv(proxy_class_def, "\n", " protected $m3classname() : this(IntPtr.Zero, false) {\n", " }\n", NIL);
}
// C++ destructor is wrapped by the Dispose method
// Note that the method name is specified in a typemap attribute called methodname
String *destruct = NewString("");
const String *tm = NULL;
Node *attributes = NewHash();
String *destruct_methodname = NULL;
if (derived) {
tm = typemapLookup(n, "m3destruct_derived", name, WARN_NONE, attributes);
destruct_methodname = Getattr(attributes, "tmap:m3destruct_derived:methodname");
} else {
tm = typemapLookup(n, "m3destruct", name, WARN_NONE, attributes);
destruct_methodname = Getattr(attributes, "tmap:m3destruct:methodname");
}
if (!destruct_methodname) {
Swig_error(Getfile(n), Getline(n), "No methodname attribute defined in m3destruct%s typemap for %s\n", (derived ? "_derived" : ""), proxy_class_name);
}
// Emit the Finalize and Dispose methods
if (tm) {
// Finalize method
if (*Char(destructor_call)) {
Printv(proxy_class_def, typemapLookup(n, "m3finalize", name, WARN_NONE), NIL);
}
// Dispose method
Printv(destruct, tm, NIL);
if (*Char(destructor_call))
Replaceall(destruct, "$imcall", destructor_call);
else
Replaceall(destruct, "$imcall", "throw new MethodAccessException(\"C++ destructor does not have public access\")");
if (*Char(destruct))
Printv(proxy_class_def, "\n public ", derived ? "override" : "virtual", " void ", destruct_methodname, "() ", destruct, "\n", NIL);
}
Delete(attributes);
Delete(destruct);
// Emit various other methods
Printv(proxy_class_def, typemapLookup(n, "m3getcptr", name, WARN_MODULA3_TYPEMAP_GETCPTR_UNDEF), // getCPtr method
typemapLookup(n, "m3code", name, WARN_NONE), // extra Modula 3 code
"\n", NIL);
// Substitute various strings into the above template
Replaceall(proxy_class_def, "$m3classname", proxy_class_name);
Replaceall(proxy_class_code, "$m3classname", proxy_class_name);
Replaceall(proxy_class_def, "$baseclass", baseclass);
Replaceall(proxy_class_code, "$baseclass", baseclass);
Replaceall(proxy_class_def, "$imclassname", m3raw_name);
Replaceall(proxy_class_code, "$imclassname", m3raw_name);
// Add code to do C++ casting to base class (only for classes in an inheritance hierarchy)
if (derived) {
Printv(m3raw_cppcasts_code, "\n [DllImport(\"", m3wrap_name, "\", EntryPoint=\"Modula3_", proxy_class_name, "To", baseclass, "\")]\n", NIL);
Printv(m3raw_cppcasts_code, " public static extern IntPtr ", "$m3classnameTo$baseclass(IntPtr objectRef);\n", NIL);
Replaceall(m3raw_cppcasts_code, "$m3classname", proxy_class_name);
Replaceall(m3raw_cppcasts_code, "$baseclass", baseclass);
Printv(upcasts_code,
"SWIGEXPORT long Modula3_$imclazznameTo$imbaseclass",
"(long objectRef) {\n",
" long baseptr = 0;\n" " *($cbaseclass **)&baseptr = *($cclass **)&objectRef;\n" " return baseptr;\n" "}\n", "\n", NIL);
Replaceall(upcasts_code, "$imbaseclass", baseclass);
Replaceall(upcasts_code, "$cbaseclass", c_baseclass);
Replaceall(upcasts_code, "$imclazzname", proxy_class_name);
Replaceall(upcasts_code, "$cclass", c_classname);
}
Delete(baseclass);
}
/* ----------------------------------------------------------------------
* getAttrString()
*
* If necessary create and return the string
* associated with a certain attribute of 'n'.
* ---------------------------------------------------------------------- */
String *getAttrString(Node *n, const char *attr) {
String *str = Getattr(n, attr);
if (str == NIL) {
str = NewString("");
Setattr(n, attr, str);
}
return str;
}
/* ----------------------------------------------------------------------
* getMethodDeclarations()
*
* If necessary create and return the handle
* where the methods of the current access can be written to.
* 'n' must be a member of a struct or a class.
* ---------------------------------------------------------------------- */
String *getMethodDeclarations(Node *n) {
String *acc_str = Getattr(n, "access");
String *methodattr;
if (acc_str == NIL) {
methodattr = NewString("modula3:method:public");
} else {
methodattr = NewStringf("modula3:method:%s", acc_str);
}
String *methods = getAttrString(parentNode(n), Char(methodattr));
Delete(methodattr);
return methods;
}
/* ----------------------------------------------------------------------
* classHandler()
* ---------------------------------------------------------------------- */
virtual int classHandler(Node *n) {
File *f_proxy = NULL;
proxy_class_name = Copy(Getattr(n, "sym:name"));
//String *rawname = Getattr(n,"name");
if (proxy_flag) {
if (!addSymbol(proxy_class_name, n))
return SWIG_ERROR;
if (Cmp(proxy_class_name, m3raw_name) == 0) {
Printf(stderr, "Class name cannot be equal to intermediary class name: %s\n", proxy_class_name);
SWIG_exit(EXIT_FAILURE);
}
if (Cmp(proxy_class_name, m3wrap_name) == 0) {
Printf(stderr, "Class name cannot be equal to module class name: %s\n", proxy_class_name);
SWIG_exit(EXIT_FAILURE);
}
String *filen = NewStringf("%s%s.m3", SWIG_output_directory(), proxy_class_name);
f_proxy = NewFile(filen, "w", SWIG_output_files());
if (!f_proxy) {
FileErrorDisplay(filen);
SWIG_exit(EXIT_FAILURE);
}
Delete(filen);
filen = NULL;
emitBanner(f_proxy);
Clear(proxy_class_def);
Clear(proxy_class_code);
have_default_constructor_flag = false;
destructor_call = NewString("");
}
/* This will invoke memberfunctionHandler, membervariableHandler ...
and finally it may invoke functionWrapper
for wrappers and member variable accessors.
It will invoke Language:constructorDeclaration
which decides whether to call MODULA3::constructorHandler */
Language::classHandler(n);
{
String *kind = Getattr(n, "kind");
if (Cmp(kind, "struct") == 0) {
String *entries = NewString("");
Node *child;
writeArgState state;
for (child = firstChild(n); child != NIL; child = nextSibling(child)) {
String *childType = nodeType(child);
if (Strcmp(childType, "cdecl") == 0) {
String *member = Getattr(child, "sym:name");
ParmList *pl = Getattr(child, "parms");
if (pl == NIL) {
// Get the variable type in Modula 3 type equivalents
String *m3ct = getMappedTypeNew(child, "m3rawtype", "");
writeArg(entries, state, NIL, member, m3ct, NIL);
}
}
}
writeArg(entries, state, NIL, NIL, NIL, NIL);
m3raw_intf.enterBlock(blocktype);
Printf(m3raw_intf.f, "%s =\nRECORD\n%sEND;\n", proxy_class_name, entries);
Delete(entries);
} else if (Cmp(kind, "class") == 0) {
enum access_privilege { acc_public, acc_protected, acc_private };
int max_acc = acc_public;
const char *acc_name[3] = { "public", "protected", "private" };
String *methods[3];
int acc;
for (acc = acc_public; acc <= acc_private; acc++) {
String *methodattr = NewStringf("modula3:method:%s", acc_name[acc]);
methods[acc] = Getattr(n, methodattr);
Delete(methodattr);
max_acc = max_acc > acc ? max_acc : acc;
}
/* Determine the name of the base class */
String *baseclassname = NewString("");
{
List *baselist = Getattr(n, "bases");
if (baselist) {
/* Look for the first (principal?) base class -
Modula 3 does not support multiple inheritance */
Iterator base = First(baselist);
if (base.item) {
Append(baseclassname, Getattr(base.item, "sym:name"));
base = Next(base);
if (base.item) {
Swig_warning(WARN_MODULA3_MULTIPLE_INHERITANCE, Getfile(n), Getline(n),
"Warning for %s, base %s ignored. Multiple inheritance is not supported in Modula 3.\n",
proxy_class_name, Getattr(base.item, "name"));
}
}
}
}
/* the private class of the base class and only this
need a pointer to the C++ object */
bool need_private = !hasContent(baseclassname);
max_acc = need_private ? acc_private : max_acc;
/* Declare C++ object as abstract pointer in Modula 3 */
/* The revelation system does not allow us
to imitate the whole class hierarchy of the C++ library,
but at least we can distinguish between classes of different roots. */
if (hasContent(baseclassname)) {
m3raw_intf.enterBlock(blocktype);
Printf(m3raw_intf.f, "%s = %s;\n", proxy_class_name, baseclassname);
} else {
m3raw_intf.enterBlock(blocktype);
Printf(m3raw_intf.f, "%s <: ADDRESS;\n", proxy_class_name);
m3raw_impl.enterBlock(revelation);
Printf(m3raw_impl.f, "%s = UNTRACED BRANDED REF RECORD (*Dummy*) END;\n", proxy_class_name);
}
String *superclass;
m3wrap_intf.enterBlock(blocktype);
if (hasContent(methods[acc_public])) {
superclass = NewStringf("%sPublic", proxy_class_name);
} else if (hasContent(baseclassname)) {
superclass = Copy(baseclassname);
} else {
superclass = NewString("ROOT");
}
Printf(m3wrap_intf.f, "%s <: %s;\n", proxy_class_name, superclass);
Delete(superclass);
{
static const char *acc_m3suffix[] = { "Public", "Protected", "Private" };
int acc;
for (acc = acc_public; acc <= acc_private; acc++) {
bool process_private = (acc == acc_private) && need_private;
if (hasContent(methods[acc]) || process_private) {
String *subclass = NewStringf("%s%s", proxy_class_name, acc_m3suffix[acc]);
/*
m3wrap_intf.enterBlock(revelation);
Printf(m3wrap_intf.f, "%s <: %s;\n", proxy_class_name, subclass);
*/
if (acc == max_acc) {
m3wrap_intf.enterBlock(revelation);
Printf(m3wrap_intf.f, "%s =\n", proxy_class_name);
} else {
m3wrap_intf.enterBlock(blocktype);
Printf(m3wrap_intf.f, "%s =\n", subclass);
}
Printf(m3wrap_intf.f, "%s BRANDED OBJECT\n", baseclassname);
if (process_private) {
Setattr(m3wrap_intf.import, m3raw_name, "");
Printf(m3wrap_intf.f, "cxxObj:%s.%s;\n", m3raw_name, proxy_class_name);
}
if (hasContent(methods[acc])) {
Printf(m3wrap_intf.f, "METHODS\n%s", methods[acc]);
}
if (acc == max_acc) {
String *overrides = Getattr(n, "modula3:override");
Printf(m3wrap_intf.f, "OVERRIDES\n%s", overrides);
}
Printf(m3wrap_intf.f, "END;\n");
Delete(baseclassname);
baseclassname = subclass;
}
}
}
Delete(methods[acc_public]);
Delete(methods[acc_protected]);
Delete(methods[acc_private]);
} else {
Swig_warning(WARN_MODULA3_TYPECONSTRUCTOR_UNKNOWN, input_file, line_number, "Unknown type constructor %s\n", kind);
}
}
if (proxy_flag) {
emitProxyClassDefAndCPPCasts(n);
Printv(f_proxy, proxy_class_def, proxy_class_code, NIL);
Printf(f_proxy, "}\n");
Delete(f_proxy);
f_proxy = NULL;
Delete(proxy_class_name);
proxy_class_name = NULL;
Delete(destructor_call);
destructor_call = NULL;
}
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* memberfunctionHandler()
* ---------------------------------------------------------------------- */
virtual int memberfunctionHandler(Node *n) {
//printf("begin memberfunctionHandler(%s)\n", Char(Getattr(n,"name")));
Setattr(n, "modula3:functype", "method");
Language::memberfunctionHandler(n);
{
/* Language::memberfunctionHandler will remove the mapped types
that emitM3Wrapper may attach */
ParmList *pl = Getattr(n, "parms");
Swig_typemap_attach_parms("m3wrapinmode", pl, NULL);
Swig_typemap_attach_parms("m3wrapinname", pl, NULL);
Swig_typemap_attach_parms("m3wrapintype", pl, NULL);
Swig_typemap_attach_parms("m3wrapindefault", pl, NULL);
attachParameterNames(n, "tmap:m3wrapinname", "autoname", "arg%d");
String *rettype = getMappedTypeNew(n, "m3wrapouttype", "");
String *methodname = Getattr(n, "sym:name");
/*
if (methodname==NIL) {
methodname = Getattr(n,"name");
}
*/
String *arguments = createM3Signature(n);
String *storage = Getattr(n, "storage");
String *overridden = Getattr(n, "override");
bool isVirtual = (storage != NIL) && (Strcmp(storage, "virtual") == 0);
bool isOverridden = (overridden != NIL)
&& (Strcmp(overridden, "1") == 0);
if ((!isVirtual) || (!isOverridden)) {
{
String *methods = getMethodDeclarations(n);
Printf(methods, "%s(%s)%s%s;%s\n",
methodname, arguments,
hasContent(rettype) ? ": " : "", hasContent(rettype) ? (const String *) rettype : "", isVirtual ? " (* base method *)" : "");
}
{
/* this was attached by functionWrapper
invoked by Language::memberfunctionHandler */
String *fname = Getattr(n, "modula3:funcname");
String *overrides = getAttrString(parentNode(n), "modula3:override");
Printf(overrides, "%s := %s;\n", methodname, fname);
}
}
}
if (proxy_flag) {
String *overloaded_name = getOverloadedName(n);
String *intermediary_function_name = Swig_name_member(NSPACE_TODO, proxy_class_name, overloaded_name);
Setattr(n, "proxyfuncname", Getattr(n, "sym:name"));
Setattr(n, "imfuncname", intermediary_function_name);
proxyClassFunctionHandler(n);
Delete(overloaded_name);
}
//printf("end memberfunctionHandler(%s)\n", Char(Getattr(n,"name")));
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* staticmemberfunctionHandler()
* ---------------------------------------------------------------------- */
virtual int staticmemberfunctionHandler(Node *n) {
static_flag = true;
Language::staticmemberfunctionHandler(n);
if (proxy_flag) {
String *overloaded_name = getOverloadedName(n);
String *intermediary_function_name = Swig_name_member(NSPACE_TODO, proxy_class_name, overloaded_name);
Setattr(n, "proxyfuncname", Getattr(n, "sym:name"));
Setattr(n, "imfuncname", intermediary_function_name);
proxyClassFunctionHandler(n);
Delete(overloaded_name);
}
static_flag = false;
return SWIG_OK;
}
/* -----------------------------------------------------------------------------
* proxyClassFunctionHandler()
*
* Function called for creating a Modula 3 wrapper function around a c++ function in the
* proxy class. Used for both static and non-static C++ class functions.
* C++ class static functions map to Modula 3 static functions.
* Two extra attributes in the Node must be available. These are "proxyfuncname" -
* the name of the Modula 3 class proxy function, which in turn will call "imfuncname" -
* the intermediary (PInvoke) function name in the intermediary class.
* ----------------------------------------------------------------------------- */
void proxyClassFunctionHandler(Node *n) {
SwigType *t = Getattr(n, "type");
ParmList *l = Getattr(n, "parms");
Hash *throws_hash = NewHash();
String *intermediary_function_name = Getattr(n, "imfuncname");
String *proxy_function_name = Getattr(n, "proxyfuncname");
String *tm;
Parm *p;
int i;
String *imcall = NewString("");
String *return_type = NewString("");
String *function_code = NewString("");
bool setter_flag = false;
if (!proxy_flag)
return;
if (l) {
if (SwigType_type(Getattr(l, "type")) == T_VOID) {
l = nextSibling(l);
}
}
/* Attach the non-standard typemaps to the parameter list */
Swig_typemap_attach_parms("in", l, NULL);
Swig_typemap_attach_parms("m3wraptype", l, NULL);
Swig_typemap_attach_parms("m3in", l, NULL);
/* Get return types */
if ((tm = getMappedTypeNew(n, "m3wraptype", ""))) {
substituteClassname(t, tm);
Printf(return_type, "%s", tm);
}
if (proxy_flag && wrapping_member_flag && !enum_constant_flag) {
// Properties
setter_flag = (Cmp(Getattr(n, "sym:name"), Swig_name_set(NSPACE_TODO, Swig_name_member(NSPACE_TODO, proxy_class_name, variable_name)))
== 0);
}
/* Start generating the proxy function */
Printf(function_code, " %s ", Getattr(n, "feature:modula3:methodmodifiers"));
if (static_flag)
Printf(function_code, "static ");
if (Getattr(n, "override"))
Printf(function_code, "override ");
else if (checkAttribute(n, "storage", "virtual"))
Printf(function_code, "virtual ");
Printf(function_code, "%s %s(", return_type, proxy_function_name);
Printv(imcall, m3raw_name, ".", intermediary_function_name, "(", NIL);
if (!static_flag)
Printv(imcall, "swigCPtr", NIL);
emit_mark_varargs(l);
int gencomma = !static_flag;
/* Output each parameter */
for (i = 0, p = l; p; i++) {
/* Ignored varargs */
if (checkAttribute(p, "varargs:ignore", "1")) {
p = nextSibling(p);
continue;
}
/* Ignored parameters */
if (checkAttribute(p, "tmap:in:numinputs", "0")) {
p = Getattr(p, "tmap:in:next");
continue;
}
/* Ignore the 'this' argument for variable wrappers */
if (!(variable_wrapper_flag && i == 0)) {
SwigType *pt = Getattr(p, "type");
String *param_type = NewString("");
/* Get the Modula 3 parameter type */
if ((tm = getMappedType(p, "m3wraptype"))) {
substituteClassname(pt, tm);
Printf(param_type, "%s", tm);
}
if (gencomma)
Printf(imcall, ", ");
String *arg = variable_wrapper_flag ? NewString("value") : makeParameterName(n,
p,
i);
// Use typemaps to transform type used in Modula 3 wrapper function (in proxy class) to type used in PInvoke function (in intermediary class)
if ((tm = getMappedType(p, "in"))) {
addThrows(throws_hash, "in", p);
substituteClassname(pt, tm);
Replaceall(tm, "$input", arg);
Printv(imcall, tm, NIL);
}
/* Add parameter to proxy function */
if (gencomma >= 2)
Printf(function_code, ", ");
gencomma = 2;
Printf(function_code, "%s %s", param_type, arg);
Delete(arg);
Delete(param_type);
}
p = Getattr(p, "tmap:in:next");
}
Printf(imcall, ")");
Printf(function_code, ")");
// Transform return type used in PInvoke function (in intermediary class) to type used in Modula 3 wrapper function (in proxy class)
if ((tm = getMappedTypeNew(n, "m3out", ""))) {
addThrows(throws_hash, "m3out", n);
if (GetFlag(n, "feature:new"))
Replaceall(tm, "$owner", "true");
else
Replaceall(tm, "$owner", "false");
substituteClassname(t, tm);
Replaceall(tm, "$imcall", imcall);
}
generateThrowsClause(throws_hash, function_code);
Printf(function_code, " %s\n\n", tm ? (const String *) tm : empty_string);
if (proxy_flag && wrapping_member_flag && !enum_constant_flag) {
// Properties
if (setter_flag) {
// Setter method
if ((tm = getMappedTypeNew(n, "m3varin", ""))) {
if (GetFlag(n, "feature:new"))
Replaceall(tm, "$owner", "true");
else
Replaceall(tm, "$owner", "false");
substituteClassname(t, tm);
Replaceall(tm, "$imcall", imcall);
Printf(proxy_class_code, "%s", tm);
}
} else {
// Getter method
if ((tm = getMappedTypeNew(n, "m3varout", ""))) {
if (GetFlag(n, "feature:new"))
Replaceall(tm, "$owner", "true");
else
Replaceall(tm, "$owner", "false");
substituteClassname(t, tm);
Replaceall(tm, "$imcall", imcall);
Printf(proxy_class_code, "%s", tm);
}
}
} else {
// Normal function call
Printv(proxy_class_code, function_code, NIL);
}
Delete(function_code);
Delete(return_type);
Delete(imcall);
Delete(throws_hash);
}
/* ----------------------------------------------------------------------
* constructorHandler()
* ---------------------------------------------------------------------- */
virtual int constructorHandler(Node *n) {
// this invokes functionWrapper
Language::constructorHandler(n);
if (proxy_flag) {
ParmList *l = Getattr(n, "parms");
Hash *throws_hash = NewHash();
String *overloaded_name = getOverloadedName(n);
String *imcall = NewString("");
Printf(proxy_class_code, " %s %s(", Getattr(n, "feature:modula3:methodmodifiers"), proxy_class_name);
Printv(imcall, " : this(", m3raw_name, ".", Swig_name_construct(NSPACE_TODO, overloaded_name), "(", NIL);
/* Attach the non-standard typemaps to the parameter list */
Swig_typemap_attach_parms("in", l, NULL);
Swig_typemap_attach_parms("m3wraptype", l, NULL);
Swig_typemap_attach_parms("m3in", l, NULL);
emit_mark_varargs(l);
int gencomma = 0;
String *tm;
Parm *p = l;
int i;
/* Output each parameter */
for (i = 0; p; i++) {
/* Ignored varargs */
if (checkAttribute(p, "varargs:ignore", "1")) {
p = nextSibling(p);
continue;
}
/* Ignored parameters */
if (checkAttribute(p, "tmap:in:numinputs", "0")) {
p = Getattr(p, "tmap:in:next");
continue;
}
SwigType *pt = Getattr(p, "type");
String *param_type = NewString("");
/* Get the Modula 3 parameter type */
if ((tm = getMappedType(p, "m3wraptype"))) {
substituteClassname(pt, tm);
Printf(param_type, "%s", tm);
}
if (gencomma)
Printf(imcall, ", ");
String *arg = makeParameterName(n, p, i);
// Use typemaps to transform type used in Modula 3 wrapper function (in proxy class) to type used in PInvoke function (in intermediary class)
if ((tm = getMappedType(p, "in"))) {
addThrows(throws_hash, "in", p);
substituteClassname(pt, tm);
Replaceall(tm, "$input", arg);
Printv(imcall, tm, NIL);
}
/* Add parameter to proxy function */
if (gencomma)
Printf(proxy_class_code, ", ");
Printf(proxy_class_code, "%s %s", param_type, arg);
gencomma = 1;
Delete(arg);
Delete(param_type);
p = Getattr(p, "tmap:in:next");
}
Printf(imcall, "), true)");
Printf(proxy_class_code, ")");
Printf(proxy_class_code, "%s", imcall);
generateThrowsClause(throws_hash, proxy_class_code);
Printf(proxy_class_code, " {\n");
Printf(proxy_class_code, " }\n\n");
if (!gencomma) // We must have a default constructor
have_default_constructor_flag = true;
Delete(overloaded_name);
Delete(imcall);
Delete(throws_hash);
}
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* destructorHandler()
* ---------------------------------------------------------------------- */
virtual int destructorHandler(Node *n) {
Language::destructorHandler(n);
String *symname = Getattr(n, "sym:name");
if (proxy_flag) {
Printv(destructor_call, m3raw_name, ".", Swig_name_destroy(NSPACE_TODO, symname), "(swigCPtr)", NIL);
}
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* membervariableHandler()
* ---------------------------------------------------------------------- */
virtual int membervariableHandler(Node *n) {
//printf("begin membervariableHandler(%s)\n", Char(Getattr(n,"name")));
SwigType *t = Getattr(n, "type");
String *tm;
// Get the variable type
if ((tm = getMappedTypeNew(n, "m3wraptype", ""))) {
substituteClassname(t, tm);
}
variable_name = Getattr(n, "sym:name");
//printf("member variable: %s\n", Char(variable_name));
// Output the property's field declaration and accessor methods
Printf(proxy_class_code, " public %s %s {", tm, variable_name);
Setattr(n, "modula3:functype", "accessor");
wrapping_member_flag = true;
variable_wrapper_flag = true;
Language::membervariableHandler(n);
wrapping_member_flag = false;
variable_wrapper_flag = false;
Printf(proxy_class_code, "\n }\n\n");
{
String *methods = getMethodDeclarations(n);
String *overrides = getAttrString(parentNode(n), "modula3:override");
SwigType *type = Getattr(n, "type");
String *m3name = capitalizeFirst(variable_name);
//String *m3name = nameToModula3(variable_name,true);
if (!SwigType_isconst(type)) {
{
String *inmode = getMappedTypeNew(n, "m3wrapinmode", "", false);
String *intype = getMappedTypeNew(n, "m3wrapintype", "");
Printf(methods, "set%s(%s val:%s);\n", m3name, (inmode != NIL) ? (const String *) inmode : "", intype);
}
{
/* this was attached by functionWrapper
invoked by Language::memberfunctionHandler */
String *fname = Getattr(n, "modula3:setname");
Printf(overrides, "set%s := %s;\n", m3name, fname);
}
}
{
{
String *outtype = getMappedTypeNew(n, "m3wrapouttype", "");
Printf(methods, "get%s():%s;\n", m3name, outtype);
}
{
/* this was attached by functionWrapper
invoked by Language::memberfunctionHandler */
String *fname = Getattr(n, "modula3:getname");
Printf(overrides, "get%s := %s;\n", m3name, fname);
}
}
Delete(m3name);
}
//printf("end membervariableHandler(%s)\n", Char(Getattr(n,"name")));
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* staticmembervariableHandler()
* ---------------------------------------------------------------------- */
virtual int staticmembervariableHandler(Node *n) {
bool static_const_member_flag = (Getattr(n, "value") == 0);
if (static_const_member_flag) {
SwigType *t = Getattr(n, "type");
String *tm;
// Get the variable type
if ((tm = getMappedTypeNew(n, "m3wraptype", ""))) {
substituteClassname(t, tm);
}
// Output the property's field declaration and accessor methods
Printf(proxy_class_code, " public static %s %s {", tm, Getattr(n, "sym:name"));
}
variable_name = Getattr(n, "sym:name");
wrapping_member_flag = true;
static_flag = true;
Language::staticmembervariableHandler(n);
wrapping_member_flag = false;
static_flag = false;
if (static_const_member_flag)
Printf(proxy_class_code, "\n }\n\n");
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* memberconstantHandler()
* ---------------------------------------------------------------------- */
virtual int memberconstantHandler(Node *n) {
variable_name = Getattr(n, "sym:name");
wrapping_member_flag = true;
Language::memberconstantHandler(n);
wrapping_member_flag = false;
return SWIG_OK;
}
/* -----------------------------------------------------------------------------
* getOverloadedName()
* ----------------------------------------------------------------------------- */
String *getOverloadedName(Node *n) {
String *overloaded_name = Copy(Getattr(n, "sym:name"));
if (Getattr(n, "sym:overloaded")) {
Printv(overloaded_name, Getattr(n, "sym:overname"), NIL);
}
return overloaded_name;
}
/* -----------------------------------------------------------------------------
* emitM3Wrapper()
* It is also used for set and get methods of global variables.
* ----------------------------------------------------------------------------- */
void emitM3Wrapper(Node *n, const String *func_name) {
SwigType *t = Getattr(n, "type");
ParmList *l = Getattr(n, "parms");
Hash *throws_hash = NewHash();
int num_exceptions = 0;
int num_returns = 0;
String *rawcall = NewString("");
String *reccall = NewString("");
String *local_variables = NewString("");
String *local_constants = NewString("");
String *incheck = NewString("");
String *outcheck = NewString("");
String *setup = NewString("");
String *cleanup = NewString("");
String *outarg = NewString(""); /* don't mix up with 'autark' :-] */
String *storeout = NewString("");
String *result_name = NewString("");
String *return_variables = NewString("");
const char *result_return = "ret";
String *function_code = NewString("");
/*several names for the same function */
String *raw_name = Getattr(n, "name"); /*original C function name */
//String *func_name = Getattr(n,"sym:name"); /*final Modula3 name chosen by the user*/
bool setter_flag = false;
int multiretval = GetFlag(n, "feature:modula3:multiretval");
if (l) {
if (SwigType_type(Getattr(l, "type")) == T_VOID) {
l = nextSibling(l);
}
}
/* Attach the non-standard typemaps to the parameter list */
Swig_typemap_attach_parms("m3wrapargvar", l, NULL);
Swig_typemap_attach_parms("m3wrapargconst", l, NULL);
Swig_typemap_attach_parms("m3wrapargraw", l, NULL);
Swig_typemap_attach_parms("m3wrapargdir", l, NULL);
Swig_typemap_attach_parms("m3wrapinmode", l, NULL);
Swig_typemap_attach_parms("m3wrapinname", l, NULL);
Swig_typemap_attach_parms("m3wrapintype", l, NULL);
Swig_typemap_attach_parms("m3wrapindefault", l, NULL);
Swig_typemap_attach_parms("m3wrapinconv", l, NULL);
Swig_typemap_attach_parms("m3wrapincheck", l, NULL);
Swig_typemap_attach_parms("m3wrapoutname", l, NULL);
Swig_typemap_attach_parms("m3wrapouttype", l, NULL);
Swig_typemap_attach_parms("m3wrapoutconv", l, NULL);
Swig_typemap_attach_parms("m3wrapoutcheck", l, NULL);
attachMappedType(n, "m3wrapretraw");
attachMappedType(n, "m3wrapretname");
attachMappedType(n, "m3wraprettype");
attachMappedType(n, "m3wrapretvar");
attachMappedType(n, "m3wrapretconv");
attachMappedType(n, "m3wrapretcheck");
Swig_typemap_attach_parms("m3wrapfreearg", l, NULL);
/*
Swig_typemap_attach_parms("m3wrapargvar:throws", l, NULL);
Swig_typemap_attach_parms("m3wrapargraw:throws", l, NULL);
Swig_typemap_attach_parms("m3wrapinconv:throws", l, NULL);
Swig_typemap_attach_parms("m3wrapincheck:throws", l, NULL);
Swig_typemap_attach_parms("m3wrapoutconv:throws", l, NULL);
Swig_typemap_attach_parms("m3wrapoutcheck:throws", l, NULL);
attachMappedType(n, "m3wrapretvar:throws");
attachMappedType(n, "m3wrapretconv:throws");
attachMappedType(n, "m3wrapretcheck:throws");
Swig_typemap_attach_parms("m3wrapfreearg:throws", l, NULL);
*/
/* Attach argument names to the parameter list */
/* should be a separate procedure making use of hashes */
attachParameterNames(n, "tmap:m3wrapinname", "autoname", "arg%d");
/* Get return types */
String *result_m3rawtype = Copy(getMappedTypeNew(n, "m3rawrettype", ""));
String *result_m3wraptype = Copy(getMappedTypeNew(n, "m3wraprettype", ""));
bool has_return_raw = hasContent(result_m3rawtype);
bool has_return_m3 = hasContent(result_m3wraptype);
if (has_return_m3) {
num_returns++;
//printf("%s: %s\n", Char(func_name),Char(result_m3wraptype));
}
String *arguments = createM3Signature(n);
/* Create local variables or RECORD fields for return values
and determine return type that might result from a converted VAR argument. */
{
writeArgState state;
if (multiretval && has_return_m3) {
writeArg(return_variables, state, NIL, NewString(result_return), result_m3wraptype, NIL);
}
Parm *p = skipIgnored(l, "m3wrapouttype");
while (p != NIL) {
String *arg = Getattr(p, "tmap:m3wrapoutname");
if (arg == NIL) {
arg = Getattr(p, "name");
}
String *tm = Getattr(p, "tmap:m3wrapouttype");
if (tm != NIL) {
if (isOutParam(p)) {
if (!multiretval) {
if (num_returns == 0) {
Printv(result_name, arg, NIL);
Clear(result_m3wraptype);
Printv(result_m3wraptype, tm, NIL);
} else {
Swig_warning(WARN_MODULA3_TYPEMAP_MULTIPLE_RETURN, input_file, line_number,
"Typemap m3wrapargdir set to 'out' for %s implies a RETURN value, but the routine %s has already one.\nUse %%multiretval feature.\n",
SwigType_str(Getattr(p, "type"), 0), raw_name);
}
}
num_returns++;
addImports(m3wrap_intf.import, "m3wrapouttype", p);
writeArg(return_variables, state, NIL, arg, tm, NIL);
}
p = skipIgnored(Getattr(p, "tmap:m3wrapouttype:next"), "m3wrapouttype");
} else {
p = nextSibling(p);
}
}
writeArg(return_variables, state, NIL, NIL, NIL, NIL);
if (multiretval) {
Printv(result_name, Swig_cresult_name(), NIL);
Printf(result_m3wraptype, "%sResult", func_name);
m3wrap_intf.enterBlock(blocktype);
Printf(m3wrap_intf.f, "%s =\nRECORD\n%sEND;\n", result_m3wraptype, return_variables);
Printf(local_variables, "%s: %s;\n", result_name, result_m3wraptype);
} else {
Append(local_variables, return_variables);
}
}
/* Declare local constants e.g. for storing argument names. */
{
Parm *p = l;
while (p != NIL) {
String *arg = Getattr(p, "autoname");
String *tm = Getattr(p, "tmap:m3wrapargconst");
if (tm != NIL) {
addImports(m3wrap_impl.import, "m3wrapargconst", p);
Replaceall(tm, "$input", arg);
Printv(local_constants, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapargconst:next");
} else {
p = nextSibling(p);
}
}
}
/* Declare local variables e.g. for converted input values. */
{
String *tm = getMappedTypeNew(n, "m3wrapretvar", "", false);
if (tm != NIL) {
addImports(m3wrap_impl.import, "m3wrapretvar", n);
addThrows(throws_hash, "m3wrapretvar", n);
Printv(local_variables, tm, "\n", NIL);
}
Parm *p = l;
while (p != NIL) {
String *arg = Getattr(p, "autoname");
tm = Getattr(p, "tmap:m3wrapargvar");
if (tm != NIL) {
/* exceptions that may be raised but can't be catched,
thus we won't count them in num_exceptions */
addImports(m3wrap_impl.import, "m3wrapargvar", p);
addThrows(throws_hash, "m3wrapargvar", p);
Replaceall(tm, "$input", arg);
Printv(local_variables, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapargvar:next");
} else {
p = nextSibling(p);
}
}
}
/* Convert input values from Modula 3 to C. */
{
Parm *p = l;
while (p != NIL) {
String *arg = Getattr(p, "autoname");
String *tm = Getattr(p, "tmap:m3wrapinconv");
if (tm != NIL) {
addImports(m3wrap_impl.import, "m3wrapinconv", p);
num_exceptions += addThrows(throws_hash, "m3wrapinconv", p);
Replaceall(tm, "$input", arg);
Printv(setup, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapinconv:next");
} else {
p = nextSibling(p);
}
}
}
/* Generate checks for input value integrity. */
{
Parm *p = l;
while (p != NIL) {
String *arg = Getattr(p, "autoname");
String *tm = Getattr(p, "tmap:m3wrapincheck");
if (tm != NIL) {
addImports(m3wrap_impl.import, "m3wrapincheck", p);
num_exceptions += addThrows(throws_hash, "m3wrapincheck", p);
Replaceall(tm, "$input", arg);
Printv(incheck, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapincheck:next");
} else {
p = nextSibling(p);
}
}
}
Printv(rawcall, m3raw_name, ".", func_name, "(", NIL);
/* Arguments to the raw C function */
{
bool gencomma = false;
Parm *p = l;
while (p != NIL) {
if (gencomma) {
Printf(rawcall, ", ");
}
gencomma = true;
addImports(m3wrap_impl.import, "m3wrapargraw", p);
num_exceptions += addThrows(throws_hash, "m3wrapargraw", p);
String *arg = Getattr(p, "autoname");
String *qualarg = NewString("");
if (!isInParam(p)) {
String *tmparg = Getattr(p, "tmap:m3wrapoutname");
if (tmparg != NIL) {
arg = tmparg;
}
if (multiretval /*&& isOutParam(p) - automatically fulfilled */ ) {
Printf(qualarg, "%s.", result_name);
}
}
Append(qualarg, arg);
Setattr(p, "m3outarg", qualarg);
String *tm = Getattr(p, "tmap:m3wrapargraw");
if (tm != NIL) {
Replaceall(tm, "$input", arg);
Replaceall(tm, "$output", qualarg);
Printv(rawcall, tm, NIL);
p = Getattr(p, "tmap:m3wrapargraw:next");
} else {
//Printv(rawcall, Getattr(p,"lname"), NIL);
Printv(rawcall, qualarg, NIL);
p = nextSibling(p);
}
Delete(qualarg);
}
}
Printf(rawcall, ")");
/* Check for error codes and integrity of results */
{
String *tm = getMappedTypeNew(n, "m3wrapretcheck", "", false);
if (tm != NIL) {
addImports(m3wrap_impl.import, "m3wrapretcheck", n);
num_exceptions += addThrows(throws_hash, "m3wrapretcheck", n);
Printv(outcheck, tm, "\n", NIL);
}
Parm *p = l;
while (p != NIL) {
tm = Getattr(p, "tmap:m3wrapoutcheck");
if (tm != NIL) {
String *arg = Getattr(p, "autoname");
String *outarg = Getattr(p, "m3outarg");
addImports(m3wrap_impl.import, "m3wrapoutcheck", p);
num_exceptions += addThrows(throws_hash, "m3wrapoutcheck", p);
//substituteClassname(Getattr(p,"type"), tm);
Replaceall(tm, "$input", arg);
Replaceall(tm, "$output", outarg);
Printv(outcheck, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapoutcheck:next");
} else {
p = nextSibling(p);
}
}
}
/* Convert the results to Modula 3 data structures and
put them in the record prepared for returning */
{
/* m3wrapretconv is processed
when it is clear if there is some output conversion and checking code */
Parm *p = l;
while (p != NIL) {
String *tm = Getattr(p, "tmap:m3wrapoutconv");
if (tm != NIL) {
String *arg = Getattr(p, "autoname");
String *outarg = Getattr(p, "m3outarg");
addImports(m3wrap_impl.import, "m3wrapoutconv", n);
num_exceptions += addThrows(throws_hash, "m3wrapoutconv", p);
//substituteClassname(Getattr(p,"type"), tm);
Replaceall(tm, "$input", arg);
Replaceall(tm, "$output", outarg);
Printf(storeout, "%s := %s;\n", outarg, tm);
p = Getattr(p, "tmap:m3wrapoutconv:next");
} else {
p = nextSibling(p);
}
}
}
/* Generate cleanup code */
{
Parm *p = l;
while (p != NIL) {
String *tm = Getattr(p, "tmap:m3wrapfreearg");
if (tm != NIL) {
String *arg = Getattr(p, "autoname");
String *outarg = Getattr(p, "m3outarg");
addImports(m3wrap_impl.import, "m3wrapfreearg", p);
num_exceptions += addThrows(throws_hash, "m3wrapfreearg", p);
//substituteClassname(Getattr(p,"type"), tm);
Replaceall(tm, "$input", arg);
Replaceall(tm, "$output", outarg);
Printv(cleanup, tm, "\n", NIL);
p = Getattr(p, "tmap:m3wrapfreearg:next");
} else {
p = nextSibling(p);
}
}
}
{
/* Currently I don't know how a typemap similar to the original 'out' typemap
could help returning the return value. */
/* Receive result from call to raw library function */
if (!has_return_raw) {
/*
rawcall(arg1);
result.val := arg1;
RETURN result;
*/
/*
rawcall(arg1);
RETURN arg1;
*/
Printf(reccall, "%s;\n", rawcall);
if (hasContent(result_name)) {
Printf(outarg, "RETURN %s;\n", result_name);
}
} else {
/*
arg0 := rawcall(arg1);
result.ret := Convert(arg0);
result.val := arg1;
RETURN result;
*/
/*
arg0 := rawcall();
RETURN Convert(arg0);
*/
/*
RETURN rawcall();
*/
String *return_raw = getMappedTypeNew(n, "m3wrapretraw", "", false);
String *return_conv = getMappedTypeNew(n, "m3wrapretconv", "", false);
/* immediate RETURN would skip result checking */
if ((hasContent(outcheck) || hasContent(storeout)
|| hasContent(cleanup)) && (!hasContent(result_name))
&& (return_raw == NIL)) {
Printv(result_name, Swig_cresult_name(), NIL);
Printf(local_variables, "%s: %s;\n", result_name, result_m3wraptype);
}
String *result_lvalue = Copy(result_name);
if (multiretval) {
Printf(result_lvalue, ".%s", result_return);
}
if (return_raw != NIL) {
Printf(reccall, "%s := %s;\n", return_raw, rawcall);
} else if (hasContent(result_name)) {
Printf(reccall, "%s := %s;\n", result_lvalue, rawcall);
} else {
Printf(outarg, "RETURN %s;\n", rawcall);
}
if (return_conv != NIL) {
addImports(m3wrap_impl.import, "m3wrapretconv", n);
num_exceptions += addThrows(throws_hash, "m3wrapretconv", n);
if (hasContent(result_name)) {
Printf(reccall, "%s := %s;\n", result_lvalue, return_conv);
Printf(outarg, "RETURN %s;\n", result_name);
} else {
Printf(outarg, "RETURN %s;\n", return_conv);
}
} else {
if (hasContent(result_name)) {
Printf(outarg, "RETURN %s;\n", result_name);
}
}
}
}
/* Create procedure header */
{
String *header = NewStringf("PROCEDURE %s (%s)",
func_name, arguments);
if ((num_returns > 0) || multiretval) {
Printf(header, ": %s", result_m3wraptype);
}
generateThrowsClause(throws_hash, header);
Append(function_code, header);
m3wrap_intf.enterBlock(no_block);
Printf(m3wrap_intf.f, "%s;\n\n", header);
}
{
String *body = NewStringf("%s%s%s%s%s",
incheck,
setup,
reccall,
outcheck,
storeout);
String *exc_handler;
if (hasContent(cleanup) && (num_exceptions > 0)) {
exc_handler = NewStringf("TRY\n%sFINALLY\n%sEND;\n", body, cleanup);
} else {
exc_handler = NewStringf("%s%s", body, cleanup);
}
Printf(function_code, " =\n%s%s%s%sBEGIN\n%s%sEND %s;\n\n",
hasContent(local_constants) ? "CONST\n" : "", local_constants,
hasContent(local_variables) ? "VAR\n" : "", local_variables, exc_handler, outarg, func_name);
Delete(exc_handler);
Delete(body);
}
m3wrap_impl.enterBlock(no_block);
if (proxy_flag && global_variable_flag) {
setter_flag = (Cmp(Getattr(n, "sym:name"), Swig_name_set(NSPACE_TODO, variable_name)) == 0);
// Properties
if (setter_flag) {
// Setter method
String *tm = getMappedTypeNew(n, "m3varin", "");
if (tm != NIL) {
if (GetFlag(n, "feature:new")) {
Replaceall(tm, "$owner", "true");
} else {
Replaceall(tm, "$owner", "false");
}
substituteClassname(t, tm);
Replaceall(tm, "$rawcall", rawcall);
Replaceall(tm, "$vartype", variable_type); /* $type is already replaced by some super class */
Replaceall(tm, "$var", variable_name);
Printf(m3wrap_impl.f, "%s", tm);
}
} else {
// Getter method
String *tm = getMappedTypeNew(n, "m3varout", "");
if (tm != NIL) {
if (GetFlag(n, "feature:new"))
Replaceall(tm, "$owner", "true");
else
Replaceall(tm, "$owner", "false");
substituteClassname(t, tm);
Replaceall(tm, "$rawcall", rawcall);
Replaceall(tm, "$vartype", variable_type);
Replaceall(tm, "$var", variable_name);
Printf(m3wrap_impl.f, "%s", tm);
}
}
} else {
// Normal function call
Printv(m3wrap_impl.f, function_code, NIL);
}
Delete(arguments);
Delete(return_variables);
Delete(local_variables);
Delete(local_constants);
Delete(outarg);
Delete(incheck);
Delete(outcheck);
Delete(setup);
Delete(cleanup);
Delete(storeout);
Delete(function_code);
Delete(result_name);
Delete(result_m3wraptype);
Delete(reccall);
Delete(rawcall);
Delete(throws_hash);
}
/*----------------------------------------------------------------------
* replaceSpecialVariables()
*--------------------------------------------------------------------*/
virtual void replaceSpecialVariables(String *method, String *tm, Parm *parm) {
(void)method;
SwigType *type = Getattr(parm, "type");
substituteClassname(type, tm);
}
/* -----------------------------------------------------------------------------
* substituteClassname()
*
* Substitute the special variable $m3classname with the proxy class name for classes/structs/unions
* that SWIG knows about.
* Otherwise use the $descriptor name for the Modula 3 class name. Note that the $&m3classname substitution
* is the same as a $&descriptor substitution, ie one pointer added to descriptor name.
* Inputs:
* pt - parameter type
* tm - typemap contents that might contain the special variable to be replaced
* Outputs:
* tm - typemap contents complete with the special variable substitution
* Return:
* substitution_performed - flag indicating if a substitution was performed
* ----------------------------------------------------------------------------- */
bool substituteClassname(SwigType *pt, String *tm) {
bool substitution_performed = false;
if (Strstr(tm, "$m3classname") || Strstr(tm, "$&m3classname")) {
String *classname = getProxyName(pt);
if (classname) {
Replaceall(tm, "$&m3classname", classname); // getProxyName() works for pointers to classes too
Replaceall(tm, "$m3classname", classname);
} else { // use $descriptor if SWIG does not know anything about this type. Note that any typedefs are resolved.
String *descriptor = NULL;
SwigType *type = Copy(SwigType_typedef_resolve_all(pt));
if (Strstr(tm, "$&m3classname")) {
SwigType_add_pointer(type);
descriptor = NewStringf("SWIGTYPE%s", SwigType_manglestr(type));
Replaceall(tm, "$&m3classname", descriptor);
} else { // $m3classname
descriptor = NewStringf("SWIGTYPE%s", SwigType_manglestr(type));
Replaceall(tm, "$m3classname", descriptor);
}
// Add to hash table so that the type wrapper classes can be created later
Setattr(swig_types_hash, descriptor, type);
Delete(descriptor);
Delete(type);
}
substitution_performed = true;
}
return substitution_performed;
}
/* -----------------------------------------------------------------------------
* attachParameterNames()
*
* Inputs:
* n - Node of a function declaration
* tmid - attribute name for overriding C argument names,
* e.g. "tmap:m3wrapinname",
* don't forget to attach the mapped types before
* nameid - attribute for attaching the names,
* e.g. "modula3:inname"
* fmt - format for the argument name containing %d
* e.g. "arg%d"
* ----------------------------------------------------------------------------- */
void attachParameterNames(Node *n, const char *tmid, const char *nameid, const char *fmt) {
/* Use C parameter name if present and unique,
otherwise create an 'arg%d' name */
Hash *hash = NewHash();
Parm *p = Getattr(n, "parms");
int count = 0;
while (p != NIL) {
String *name = Getattr(p, tmid);
if (name == NIL) {
name = Getattr(p, "name");
}
String *newname;
if ((!hasContent(name)) || (Getattr(hash, name) != NIL)) {
newname = NewStringf(fmt, count);
} else {
newname = Copy(name);
}
if (1 == Setattr(hash, newname, "1")) {
Swig_warning(WARN_MODULA3_DOUBLE_ID, input_file, line_number, "Argument '%s' twice.\n", newname);
}
Setattr(p, nameid, newname);
// Delete(newname);
p = nextSibling(p);
count++;
}
Delete(hash);
}
/* -----------------------------------------------------------------------------
* createM3Signature()
*
* Create signature of M3 wrapper procedure
* Call attachParameterNames and attach mapped types before!
* m3wrapintype, m3wrapinmode, m3wrapindefault
* ----------------------------------------------------------------------------- */
String *createM3Signature(Node *n) {
String *arguments = NewString("");
Parm *p = skipIgnored(Getattr(n, "parms"), "m3wrapintype");
writeArgState state;
while (p != NIL) {
/* Get the M3 parameter type */
String *tm = getMappedType(p, "m3wrapintype");
if (tm != NIL) {
if (isInParam(p)) {
addImports(m3wrap_intf.import, "m3wrapintype", p);
addImports(m3wrap_impl.import, "m3wrapintype", p);
String *mode = Getattr(p, "tmap:m3wrapinmode");
String *deflt = Getattr(p, "tmap:m3wrapindefault");
String *arg = Getattr(p, "autoname");
SwigType *pt = Getattr(p, "type");
substituteClassname(pt, tm); /* do we need this ? */
writeArg(arguments, state, mode, arg, tm, deflt);
}
p = skipIgnored(Getattr(p, "tmap:m3wrapintype:next"), "m3wrapintype");
} else {
p = nextSibling(p);
}
}
writeArg(arguments, state, NIL, NIL, NIL, NIL);
return (arguments);
}
/* not used any longer
- try SwigType_str if required again */
#if 0
/* -----------------------------------------------------------------------------
* createCSignature()
*
* Create signature of C function
* ----------------------------------------------------------------------------- */
String *createCSignature(Node *n) {
String *arguments = NewString("");
bool gencomma = false;
Node *p;
for (p = Getattr(n, "parms"); p != NIL; p = nextSibling(p)) {
if (gencomma) {
Append(arguments, ",");
}
gencomma = true;
String *type = Getattr(p, "type");
String *ctype = getMappedTypeNew(type, "ctype");
Append(arguments, ctype);
}
return arguments;
}
#endif
/* -----------------------------------------------------------------------------
* emitTypeWrapperClass()
* ----------------------------------------------------------------------------- */
void emitTypeWrapperClass(String *classname, SwigType *type) {
Node *n = NewHash();
Setfile(n, input_file);
Setline(n, line_number);
String *filen = NewStringf("%s%s.m3", SWIG_output_directory(), classname);
File *f_swigtype = NewFile(filen, "w", SWIG_output_files());
if (!f_swigtype) {
FileErrorDisplay(filen);
SWIG_exit(EXIT_FAILURE);
}
String *swigtype = NewString("");
// Emit banner name
emitBanner(f_swigtype);
// Pure Modula 3 baseclass and interfaces
const String *pure_baseclass = typemapLookup(n, "m3base", type, WARN_NONE);
const String *pure_interfaces = typemapLookup(n, "m3interfaces", type, WARN_NONE);
// Emit the class
Printv(swigtype, typemapLookup(n, "m3imports", type, WARN_NONE), // Import statements
"\n", typemapLookup(n, "m3classmodifiers", type, WARN_MODULA3_TYPEMAP_CLASSMOD_UNDEF), // Class modifiers
" class $m3classname", // Class name and bases
*Char(pure_baseclass) ? " : " : "", pure_baseclass, *Char(pure_interfaces) ? // Interfaces
" : " : "", pure_interfaces, " {\n", " private IntPtr swigCPtr;\n", "\n", " ", typemapLookup(n, "m3ptrconstructormodifiers", type, WARN_MODULA3_TYPEMAP_PTRCONSTMOD_UNDEF), // pointer constructor modifiers
" $m3classname(IntPtr cPtr, bool bFutureUse) {\n", // Constructor used for wrapping pointers
" swigCPtr = cPtr;\n", " }\n", "\n", " protected $m3classname() {\n", // Default constructor
" swigCPtr = IntPtr.Zero;\n", " }\n", typemapLookup(n, "m3getcptr", type, WARN_MODULA3_TYPEMAP_GETCPTR_UNDEF), // getCPtr method
typemapLookup(n, "m3code", type, WARN_NONE), // extra Modula 3 code
"}\n", "\n", NIL);
Replaceall(swigtype, "$m3classname", classname);
Printv(f_swigtype, swigtype, NIL);
Delete(f_swigtype);
Delete(filen);
Delete(swigtype);
}
/* -----------------------------------------------------------------------------
* typemapLookup()
* n - for input only and must contain info for Getfile(n) and Getline(n) to work
* tmap_method - typemap method name
* type - typemap type to lookup
* warning - warning number to issue if no typemaps found
* typemap_attributes - the typemap attributes are attached to this node and will
* also be used for temporary storage if non null
* return is never NULL, unlike Swig_typemap_lookup()
* ----------------------------------------------------------------------------- */
const String *typemapLookup(Node *n, const_String_or_char_ptr tmap_method, SwigType *type, int warning, Node *typemap_attributes = 0) {
Node *node = !typemap_attributes ? NewHash() : typemap_attributes;
Setattr(node, "type", type);
Setfile(node, Getfile(n));
Setline(node, Getline(n));
const String *tm = Swig_typemap_lookup(tmap_method, node, "", 0);
if (!tm) {
tm = empty_string;
if (warning != WARN_NONE)
Swig_warning(warning, Getfile(n), Getline(n), "No %s typemap defined for %s\n", tmap_method, SwigType_str(type, 0));
}
if (!typemap_attributes)
Delete(node);
return tm;
}
/* -----------------------------------------------------------------------------
* addThrows()
*
* Add all exceptions to a hash that are associated with the 'typemap'.
* Return number the number of these exceptions.
* ----------------------------------------------------------------------------- */
int addThrows(Hash *throws_hash, const String *typemap, Node *parameter) {
// Get the comma separated throws clause - held in "throws" attribute in the typemap passed in
int len = 0;
String *throws_attribute = NewStringf("%s:throws", typemap);
addImports(m3wrap_intf.import, throws_attribute, parameter);
addImports(m3wrap_impl.import, throws_attribute, parameter);
String *throws = getMappedTypeNew(parameter, Char(throws_attribute), "", false);
//printf("got exceptions %s for %s\n", Char(throws), Char(throws_attribute));
if (throws) {
// Put the exception classes in the throws clause into a temporary List
List *temp_classes_list = Split(throws, ',', INT_MAX);
len = Len(temp_classes_list);
// Add the exception classes to the node throws list, but don't duplicate if already in list
if (temp_classes_list /*&& hasContent(temp_classes_list) */ ) {
for (Iterator cls = First(temp_classes_list); cls.item != NIL; cls = Next(cls)) {
String *exception_class = NewString(cls.item);
Replaceall(exception_class, " ", ""); // remove spaces
Replaceall(exception_class, "\t", ""); // remove tabs
if (hasContent(exception_class)) {
// $m3classname substitution
SwigType *pt = Getattr(parameter, "type");
substituteClassname(pt, exception_class);
// Don't duplicate the exception class in the throws clause
//printf("add exception %s\n", Char(exception_class));
Setattr(throws_hash, exception_class, "1");
}
Delete(exception_class);
}
}
Delete(temp_classes_list);
}
Delete(throws_attribute);
return len;
}
/* -----------------------------------------------------------------------------
* generateThrowsClause()
* ----------------------------------------------------------------------------- */
void generateThrowsClause(Hash *throws_hash, String *code) {
// Add the throws clause into code
if (Len(throws_hash) > 0) {
Iterator cls = First(throws_hash);
Printf(code, " RAISES {%s", cls.key);
for (cls = Next(cls); cls.key != NIL; cls = Next(cls)) {
Printf(code, ", %s", cls.key);
}
Printf(code, "}");
}
}
/* -----------------------------------------------------------------------------
* addImports()
*
* Add all imports that are needed for contents of 'typemap'.
* ----------------------------------------------------------------------------- */
void addImports(Hash *imports_hash, const String *typemap, Node *node) {
// Get the comma separated throws clause - held in "throws" attribute in the typemap passed in
String *imports_attribute = NewStringf("%s:import", typemap);
String *imports = getMappedTypeNew(node, Char(imports_attribute), "", false);
//printf("got imports %s for %s\n", Char(imports), Char(imports_attribute));
if (imports != NIL) {
List *import_list = Split(imports, ',', INT_MAX);
// Add the exception classes to the node imports list, but don't duplicate if already in list
if (import_list != NIL) {
for (Iterator imp = First(import_list); imp.item != NIL; imp = Next(imp)) {
List *import_pair = Split(imp.item, ' ', 3);
if (Len(import_pair) == 1) {
Setattr(imports_hash, Getitem(import_pair, 0), "");
} else if ((Len(import_pair) == 3)
&& Strcmp(Getitem(import_pair, 1), "AS") == 0) {
Setattr(imports_hash, Getitem(import_pair, 0), Getitem(import_pair, 2));
} else {
Swig_warning(WARN_MODULA3_BAD_IMPORT, input_file, line_number,
"Malformed import '%s' for typemap '%s' defined for type '%s'\n", imp, typemap, SwigType_str(Getattr(node, "type"), 0));
}
Delete(import_pair);
}
}
Delete(import_list);
}
Delete(imports_attribute);
}
/* -----------------------------------------------------------------------------
* emitImportStatements()
* ----------------------------------------------------------------------------- */
void emitImportStatements(Hash *imports_hash, String *code) {
// Add the imports statements into code
Iterator imp = First(imports_hash);
while (imp.key != NIL) {
Printf(code, "IMPORT %s", imp.key);
String *imp_as = imp.item;
if (hasContent(imp_as)) {
Printf(code, " AS %s", imp_as);
}
Printf(code, ";\n");
imp = Next(imp);
}
}
}; /* class MODULA3 */
/* -----------------------------------------------------------------------------
* swig_modula3() - Instantiate module
* ----------------------------------------------------------------------------- */
extern "C" Language *swig_modula3(void) {
return new MODULA3();
}
/* -----------------------------------------------------------------------------
* Static member variables
* ----------------------------------------------------------------------------- */
const char *MODULA3::usage = "\
Modula 3 Options (available with -modula3)\n\
-generateconst <file> - Generate code for computing numeric values of constants\n\
-generaterename <file> - Generate suggestions for %rename\n\
-generatetypemap <file> - Generate templates for some basic typemaps\n\
-oldvarnames - Old intermediary method names for variable wrappers\n\
\n";
/*
-generateconst <file> - stem of the .c source file for computing the numeric values of constants\n\
-generaterename <file> - stem of the .i source file containing %rename suggestions\n\
-generatetypemap <file> - stem of the .i source file containing typemap patterns\n\
*/
|