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
|
"""
Parse a .gir file for any of the gtk+ libraries (gtk+, glib,...)
and generate Ada bindings.
"""
from xml.etree.cElementTree import parse, Element, QName, tostring, fromstring
from adaformat import *
import copy
from binding_gtkada import GtkAda
from data import enums, interfaces, binding, user_data_params
from data import destroy_data_params
import sys
SHARED_SLOT_MARSHALLERS = False
from optparse import OptionParser
from sys import version_info
version_string = '.'.join(map(str, version_info[0:3]))
if version_info[0] < 2:
print('Need at least Python 2.7, got version ' + version_string)
quit(1)
if version_info[0] == 2 and version_info[1] < 7:
print('Need at least Python 2.7, got version ' + version_string)
quit(1)
uri = "http://www.gtk.org/introspection/core/1.0"
glib_uri = "http://www.gtk.org/introspection/glib/1.0"
c_uri = "http://www.gtk.org/introspection/c/1.0"
cidentifier = QName(c_uri, "identifier").text
cidentifier_prefix = QName(c_uri, "identifier-prefixes").text
ctype_qname = QName(c_uri, "type").text
ggettype = QName(glib_uri, "get-type").text
gsignal = QName(glib_uri, "signal").text
glib_type_struct = QName(glib_uri, "type-struct").text
glib_type_name = QName(glib_uri, "type-name").text
namespace = QName(uri, "namespace").text
narray = QName(uri, "array").text
nbitfield = QName(uri, "bitfield").text
ncallback = QName(uri, "callback").text
nclass = QName(uri, "class").text
ndoc = QName(uri, "doc").text
nenumeration = QName(uri, "enumeration").text
nfield = QName(uri, "field").text
nfunction = QName(uri, "function").text
nimplements = QName(uri, "implements").text
ninterface = QName(uri, "interface").text
nmember = QName(uri, "member").text
nmethod = QName(uri, "method").text
nvirtualmethod = QName(uri, "virtual-method").text
nparam = QName(uri, "parameter").text
nparams = QName(uri, "parameters").text
nrecord = QName(uri, "record").text
nunion = QName(uri, "union").text
nreturn = QName(uri, "return-value").text
ntype = QName(uri, "type").text
nvalue = QName(uri, "value").text
nvarargs = QName(uri, "varargs").text
nconstant = QName(uri, "constant").text
ninstanceparam = QName(uri, "instance-parameter").text
class GIR(object):
def __init__(self, files):
"""Parse filename and initializes SELF"""
self.packages = dict()
self.ccode = ""
self.classes = dict()
self.interfaces = dict()
self.ctype_interfaces = dict()
self.callbacks = dict()
self.enums = dict()
self.globals = GlobalsBinder(self)
self.records = dict()
self.constants = dict()
self.bound = set()
if SHARED_SLOT_MARSHALLERS:
self.slot_marshallers = set()
self.slot_marshaller_pkg = self.get_package(
name="Gtkada.Marshallers",
ctype=None,
doc="Automatically generated, used internally by GtkAda")
self.slot_marshaller_section = self.slot_marshaller_pkg.section("")
for filename in files:
_tree = parse(filename)
root = _tree.getroot()
identifier_prefix = root.find(namespace).get(cidentifier_prefix)
k = "%s/%s" % (namespace, ncallback)
for cl in root.findall(k):
ct = cl.get(ctype_qname)
type = Callback(naming.case(ct))
naming.add_type_exception(cname=ct, type=type)
ct = naming.type(ct).ada
self.callbacks[ct] = cl
k = "%s/%s" % (namespace, ninterface)
for cl in root.findall(k):
self.ctype_interfaces[cl.get(ctype_qname)] = \
self.interfaces[cl.get("name")] = \
self._create_class(
root, cl, is_interface=True, is_gobject=False,
identifier_prefix=identifier_prefix)
k = "%s/%s" % (namespace, nclass)
for cl in root.findall(k):
self.classes[cl.get(ctype_qname)] = self._create_class(
root, cl, is_interface=False,
identifier_prefix=identifier_prefix)
k = "%s/%s" % (namespace, nconstant)
for cl in root.findall(k):
self.constants[cl.get(ctype_qname)] = cl
k = "%s/%s" % (namespace, nrecord)
for cl in root.findall(k):
if cl.findall(nmethod):
self.classes[cl.get(ctype_qname)] = self._create_class(
root, cl, is_interface=False, is_gobject=False,
identifier_prefix=identifier_prefix)
self.records[cl.get(ctype_qname)] = cl
k = "%s/%s" % (namespace, nunion)
for cl in root.findall(k):
if cl.findall(nmethod):
self.classes[cl.get(ctype_qname)] = self._create_class(
root, cl, is_interface=False, is_gobject=False,
identifier_prefix=identifier_prefix)
self.records[cl.get(ctype_qname)] = cl
for enums in (nenumeration, nbitfield):
k = "%s/%s" % (namespace, enums)
for cl in root.findall(k):
self.enums[cl.get(ctype_qname)] = cl
self.globals.add(root)
def show_unbound(self):
"""Display the list of entities known in the GIR files, but that have
no Ada binding.
"""
print "Missing bindings:"
count = 0
for name in sorted(gir.interfaces.iterkeys()):
if name not in self.bound:
sys.stdout.write("%-28s" % (name + "(intf)", ))
count += 1
if (count % 4) == 0:
sys.stdout.write("\n")
for name in sorted(gir.classes.iterkeys()):
if name not in self.bound:
sys.stdout.write("%-28s" % name)
count += 1
if (count % 4) == 0:
sys.stdout.write("\n")
print
def _get_class_node(self, rootNode, girname):
"""Find the <class> node in the same XML document as node that matches
[girname].
"""
k = "{%(uri)s}namespace/{%(uri)s}class" % {"uri": uri}
for cl in rootNode.findall(k):
if cl.get("name") == girname:
return cl
return None
def _create_class(self, rootNode, node, is_interface,
identifier_prefix, is_gobject=True,
has_toplevel_type=True):
return GIRClass(self, rootNode=rootNode, node=node,
is_interface=is_interface,
is_gobject=is_gobject,
identifier_prefix=identifier_prefix,
has_toplevel_type=has_toplevel_type)
def debug(self, element):
"""A debug form of element"""
return tostring(element)
def get_package(self, name, ctype, doc=""):
"""Return a handle to an Ada package"""
if not name.lower() in self.packages:
pkg = self.packages[name.lower()] = Package(
name=name,
doc=gtkada.get_pkg(ctype).get_doc())
else:
pkg = self.packages[name.lower()]
if doc:
pkg.doc = ["<description>", doc, "</description>"] + pkg.doc
return pkg
def generate(self, out, cout):
"""Generate Ada code for all packages"""
for pkg in self.packages.itervalues():
out.write(pkg.spec().encode('UTF-8'))
out.write("\n")
out.write(pkg.body().encode('UTF-8'))
out.write("\n")
cout.write(self.ccode)
class GlobalsBinder(object):
def __init__(self, gir):
self.gir = gir
self.globals = dict()
def add(self, node):
k = "{%(uri)s}namespace/{%(uri)s}function" % {"uri": uri}
all = node.findall(k)
if all is not None:
for c in all:
id = c.get(cidentifier)
self.globals[id] = c
def get_function(self, id):
"""Return the XML node corresponding to a global function"""
return self.globals[id]
def _get_clean_doc(node):
"""
Get the <doc> child node, and replace common unicode characters by their
ASCII equivalent to keep the Ada specs more readable in a terminal.
"""
doc = node.findtext(ndoc, "")
if doc:
doc = doc.replace(u"\u2019", "'").replace(
u"\u201c", '"').replace(u"\u201d", '"')
return doc
def _get_type(nodeOrType, allow_access=True, allow_none=False,
transfer_ownership=False, userecord=True, pkg=None):
"""Return the type of the GIR XML node.
nodeOrType can be one of:
* a string, given the name of the C type
* an instance of CType, which is returned as is.
* An XML node from which the information is gathered.
`allow_access' should be False if "access Type" parameters should
not be allowed, and an explicit type is needed instead.
`allow_none': see doc for CType.
`pkg' is used to add with statements, if specified
"""
if isinstance(nodeOrType, CType):
return nodeOrType
elif isinstance(nodeOrType, str):
return naming.type(name=nodeOrType,
cname=nodeOrType,
userecord=userecord,
transfer_ownership=transfer_ownership,
allow_access=allow_access,
allow_none=allow_none, pkg=pkg)
else:
t = nodeOrType.find(ntype)
if t is not None:
if t.get("name") == "none":
return None
ctype_name = t.get(ctype_qname)
if ctype_name:
ctype_name = ctype_name.replace("const ", "")
return naming.type(name=t.get("name"),
cname=ctype_name,
userecord=userecord,
transfer_ownership=transfer_ownership,
allow_access=allow_access,
allow_none=allow_none, pkg=pkg)
a = nodeOrType.find(narray)
if a is not None:
t = a.find(ntype)
if a:
type = t.get(ctype_qname)
name = t.get("name") or type
size = a.get("fixed-size", None)
if type:
type = "array_of_%s" % (type, )
return naming.type(name="array_of_%s" % name,
cname=type,
pkg=pkg, isArray=True,
array_fixed_size=size,
transfer_ownership=transfer_ownership,
allow_none=allow_none,
userecord=userecord,
allow_access=allow_access)
a = nodeOrType.find(nvarargs)
if a is not None:
return None
print("Error: XML Node has unknown type: %s (%s)" % (nodeOrType, nodeOrType.attrib))
return None
class SubprogramProfile(object):
"""A class that groups info on the parameters of a function and
its return type.
"""
def __init__(self):
self.node = None
self.gtkmethod = None
self.params = None
self.returns = None
self.returns_doc = ""
self.doc = ""
self.callback_param = []
self.user_data_param = -1
self.destroy_param = -1
def __repr__(self):
return "<SubprogramProfile %s>" % self.node.get('name')
@staticmethod
def parse(node, gtkmethod, pkg=None, ignore_return=False):
"""Parse the parameter info and return type info from the XML
GIR node, overriding with binding.xml.
gtkmethod is the GtkAdaMethod that contains the overriding for the
various method attributes.
If pkg is specified, with statements are added as necessary.
If ignore_return is True, the return type is not parsed. This is
used for constructors, so that we do not end up adding extra 'with'
statements in the generated package.
"""
profile = SubprogramProfile()
profile.node = node
profile.gtkmethod = gtkmethod
if not ignore_return:
profile.returns = profile._returns(node, gtkmethod, pkg=pkg)
profile.params = profile._parameters(node, gtkmethod, pkg=pkg)
profile.doc = profile._getdoc(gtkmethod, node)
return profile
@staticmethod
def setter(node, pkg=None):
"""Create a new SubprogramProfile for a getter"""
profile = SubprogramProfile()
profile.node = node
profile.params = [Parameter("Value", _get_type(node, pkg))]
return profile
def callback_param_info(self):
"""If there is one or more callback parameters in this profile, return
them so that we can generate the appropriate function. Returns None
if there are no such parameters.
"""
if not self.callback_param:
return None
return [self.params[p] for p in self.callback_param]
def callback_destroy(self):
if self.destroy_param < 0:
return None
return self.params[self.destroy_param]
def callback_user_data(self):
"""Returns the name of the "user_data" parameter"""
if self.user_data_param == -1:
return None
return self.params[self.user_data_param].name
def has_varargs(self):
return self.params is None
def direct_c_map(self):
"""Wether all parameters and return value can be mapped directly from
C to Ada.
"""
for p in self.params:
if not p.direct_c_map() or not p.ada_binding:
return False
return self.returns is None or self.returns.direct_c_map()
def c_params(self, localvars, code):
"""Returns the list of parameters for an Ada function that would be
a direct pragma Import. local variables or additional code will
be extended as needed to handle conversions.
"""
assert(isinstance(localvars, list))
assert(isinstance(code, list))
result = []
for p in self.params:
n = p.name
is_temporary = False
if self.returns is not None and p.mode != "in" and p.ada_binding:
n = "Acc_%s" % p.name
var = Local_Var(
name=n,
aliased=True,
default="" if p.mode != "in out" else p.name,
type=p.type)
var.type.userecord = False
localvars.append(var)
if p.mode == "access":
if p.type.allow_none:
code.append(
"if %s /= null then %s.all := %s; end if;"
% (p.name, p.name, var.name))
else:
code.append("%s.all := %s;" % (p.name, var.name))
else:
is_temporary = p.mode != "out"
code.append("%s := %s;" % (p.name, var.name))
result.append(Parameter(
name=n, mode=p.mode, type=p.type,
for_function=self.returns is not None,
default=p.default if not p.ada_binding else None,
is_temporary_variable=is_temporary,
ada_binding=p.ada_binding))
return result
def set_class_wide(self):
"""This profile is not for a primitive operation, but for a class-wide
operation.
"""
if isinstance(self.params[0].type, GObject):
self.params[0].type.classwide = True
def add_param(self, pos, param):
"""Add a new parameter in the list, at the given position"""
self.params.insert(pos, param)
if self.callback_param:
self.callback_param = [p + 1 if p >= pos else p
for p in self.callback_param]
if self.user_data_param >= 0 and self.user_data_param >= pos:
self.user_data_param += 1
if self.destroy_param >= 0 and self.destroy_param >= pos:
self.destroy_param += 1
def replace_param(self, name_or_index, type):
"""Overrides the type of a parameter"""
if name_or_index is None:
return
if isinstance(name_or_index, int):
self.params[name_or_index].set_type(type)
else:
for idx, p in enumerate(self.params):
if p.name.lower() == name_or_index.lower():
self.params[idx].set_type(type)
return
def remove_param(self, names):
"""Remove the parameter with the given names from the list"""
assert(isinstance(names, list))
for n in names:
if n is not None:
n = n.lower()
for p in self.params:
if p.name.lower() == n:
self.params.remove(p)
break
def find_param(self, names):
"""Return the first name for which there is a parameter"""
for n in names:
lo = n.lower()
for p in self.params:
if p.name.lower() == lo:
return n
return None
def unset_default_values(self):
"""Remove the default values for the parameters"""
for p in self.params:
p.default = None
def subprogram(self, name, showdoc=True, local_vars=[], code=[],
convention=None, lang="ada"):
"""Return an instance of Subprogram with the corresponding profile.
lang is one of "ada", "c->ada" or "ada->c".
"""
params = self.params
if lang == "ada":
params = [p for p in self.params if p.ada_binding]
subp = Subprogram(
name=name,
plist=params,
returns=self.returns,
showdoc=showdoc,
doc=self.doc,
lang=lang,
local_vars=local_vars,
code=code)
subp.convention = convention or self.gtkmethod.convention()
if name != "":
depr = self.node.get("deprecated")
if depr is not None:
subp.mark_deprecated(
"\nDeprecated since %s, %s"
% (self.node.get("deprecated-version"), depr))
elif self.gtkmethod and self.gtkmethod.is_obsolete():
subp.mark_deprecated("Deprecated")
return subp
def _getdoc(self, gtkmethod, node):
doc = gtkmethod.get_doc(default=_get_clean_doc(node))
if node.get("version"):
doc.append("Since: gtk+ %s" % node.get("version"))
return doc
def _parameters(self, c, gtkmethod, pkg):
"""Parse the <parameters> child node of c"""
if c is None:
return []
params = c.find(nparams)
if params is None:
return []
is_function = self.returns and not gtkmethod.return_as_param()
result = []
for p_index, p in enumerate(params.findall(nparam)):
name = p.get("name")
if name == "...":
name = "varargs"
gtkparam = gtkmethod.get_param(name=name)
adan = gtkparam.ada_name()
ada_binding = adan is None or adan != ""
name = adan or name
default = gtkparam.get_default()
allow_access = not default
allow_none = gtkparam.allow_none(girnode=p) or default == 'null'
nodeOrType = gtkparam.get_type(pkg=pkg) or p
type = _get_type(
nodeOrType=nodeOrType,
allow_none=allow_none,
userecord=default != 'null',
allow_access=allow_access,
pkg=pkg)
if type is None:
if nodeOrType.find(nvarargs) is not None:
type = gtkmethod.get_param("varargs").get_type(pkg=pkg)
else:
type = gtkmethod.get_param(name).get_type(pkg=pkg)
if type is None:
return None
type = _get_type(type)
if not default and allow_none and isinstance(type, UTF8):
default = '""'
if (p.get("scope", "") in ("notified", "call", "async")
or p.get("closure", "") != ""):
if p.get("scope") != "async" \
or type.ada != "Glib.G_Destroy_Notify_Address":
self.callback_param.append(p_index)
self.user_data_param = int(p.get("closure", "-1"))
self.destroy_param = int(p.get("destroy", "-1")) - 1
direction = gtkparam.get_direction() or p.get("direction", "in")
assert direction in ("in", "out", "inout", "access"), \
"Invalid value for direction: '%s'" % direction
if direction == "inout":
mode = "in out"
elif direction in ("out", "access"):
mode = direction
elif type.is_ptr:
mode = "in out"
else:
mode = "in"
if is_function and direction not in ("in", "access"):
mode = "access"
doc = _get_clean_doc(p)
if doc:
doc = '"%s": %s' % (name, doc)
result.append(
Parameter(name=naming.case(name),
type=type,
mode=mode,
default=default,
ada_binding=ada_binding,
doc=doc))
return result
def _returns(self, node, gtkmethod, pkg):
"""Parse the method's return type"""
returns = gtkmethod.returned_c_type()
if returns is None:
ret = node.find(nreturn)
if ret is None:
ret = node
else:
self.returns_doc = _get_clean_doc(ret)
if self.returns_doc:
self.returns_doc = "Returns %s" % self.returns_doc
return _get_type(
ret, allow_access=False, pkg=pkg,
transfer_ownership=gtkmethod.transfer_ownership(ret))
else:
return naming.type(name=None, cname=returns, pkg=pkg)
class GIRClass(object):
"""Represents a gtk class"""
def __init__(self, gir, rootNode, node, identifier_prefix,
is_interface=False, is_gobject=True, has_toplevel_type=True):
"""If has_toplevel_type is False, no widget type is generated"""
self.gir = gir
self.node = node
self.rootNode = rootNode
self.ctype = self.node.get(ctype_qname)
if not self.ctype:
print("no c:type defined for %s" % (self.node.get(glib_type_name, )))
return
self._private = ""
self._generated = False
self.identifier_prefix = identifier_prefix
self.implements = dict()
self.is_gobject = is_gobject
self.is_interface = is_interface
self.has_toplevel_type = has_toplevel_type
self.callbacks = set()
self.pkg = None
self.conversions = dict()
self.__marshallers = set()
self.gtkpkg = gtkada.get_pkg(self.ctype)
if not self.gtkpkg.bindtype:
self.has_toplevel_type = False
self.is_gobject = False
self.is_proxy = False
self.is_boxed = (self.node.tag == nrecord
and (not self.node.findall(nfield)
or self.node.get("introspectable", "1") == "0"))
self.is_record = self.node.tag == nrecord and not self.is_boxed
if (self.is_boxed
and naming.type_exceptions.get(self.ctype) is not None
and isinstance(naming.type_exceptions.get(self.ctype), Proxy)):
self.is_proxy = True
self.is_boxed = False
n = naming.case(self.ctype)
into = self.gtkpkg.into()
ada = self.gtkpkg.ada_name()
if ada:
pkg = ada
elif into:
into = naming.case(into)
pkg = naming.protect_keywords(into.replace("_", ".", 1))
else:
pkg = naming.protect_keywords(n.replace("_", ".", 1))
pkg = "%s.%s" % (pkg, n)
naming.add_girname(girname=n, ctype=self.ctype)
if has_toplevel_type:
ctype = node.get(ctype_qname)
if is_interface:
t = Interface(pkg)
elif is_gobject:
t = GObject(pkg)
elif self.is_proxy:
t = Proxy(pkg)
elif self.is_boxed:
t = Tagged(pkg)
else:
t = Record(pkg)
naming.add_type_exception(cname=ctype, type=t)
classtype = naming.type(name=self.ctype)
typename = classtype.ada
self.name = package_name(typename)
if ada is not None:
self.name = ada
self.ada_package_name = self.name
if not self.has_toplevel_type:
self.ada_package_name = package_name(pkg)
else:
typename = ""
self.name = package_name(pkg)
self.ada_package_name = self.name
self.gtkpkg.register_types(adapkg=self.ada_package_name)
self._subst = {
"name": self.name,
"typename": base_name(typename),
"cname": self.ctype or ""}
def _handle_function(self, section, c, ismethod=False, gtkmethod=None,
showdoc=True, isinherited=False):
cname = c.get(cidentifier)
if gtkmethod is None:
gtkmethod = self.gtkpkg.get_method(cname=cname)
if gtkmethod.bind():
profile = SubprogramProfile.parse(
node=c, gtkmethod=gtkmethod, pkg=self.pkg)
self._handle_function_internal(
section, node=c, cname=cname,
gtkmethod=gtkmethod,
profile=profile,
showdoc=showdoc,
ismethod=ismethod,
isinherited=isinherited)
else:
naming.add_cmethod(
cname, gtkmethod.ada_name() or cname)
def _func_is_direct_import(self, profile):
"""Whether a function with this profile
should be implemented directly as a pragma Import, rather than
require its own body.
"""
return not self.is_gobject \
and not self.is_boxed \
and profile.direct_c_map()
def _add_self_param(self, adaname, node, gtkmethod, profile, inherited):
"""Add a Self parameter to the list of parameters in profile.
The exact type of the parameter depends on several criteria.
:param bool inherited: should be true if this is for a subprogram
inherited from an interface (in which case we force the type of
Self to be that of the child, not the interface type as described
in the gir file)
"""
t = None
if not inherited:
try:
ip = node.iter(ninstanceparam).next()
ipt = ip.find(ntype)
if ipt is not None:
ctype_name = ipt.get(ctype_qname)
if ctype_name:
ctype_name = ctype_name.replace('const ', '')
t = naming.type(name=ipt.get('name'),
cname=ctype_name,
useclass=gtkmethod.is_class_wide())
except StopIteration:
t = None
if t is None:
t = naming.type(self._subst["cname"],
cname=self._subst["cname"],
useclass=gtkmethod.is_class_wide())
gtkparam = gtkmethod.get_param("self")
pname = gtkparam.ada_name() or "Self"
direction = gtkparam.get_direction() or "in"
if direction in ("out", "access"):
mode = direction
elif direction == "inout":
mode = "in out"
else:
mode = "in"
profile.add_param(0, Parameter(name=pname, type=t, mode=mode))
def _handle_function_internal(self, section, node, cname,
gtkmethod,
profile=None,
showdoc=True,
adaname=None,
ismethod=False,
isinherited=False):
"""Generate a binding for a function.,
This returns None if no binding was made, an instance of Subprogram
otherwise.
`adaname' is the name of the generated Ada subprograms. By default,
it is computed automatically from either binding.xml or the "name"
attribute of `node'.
`profile' is an instance of SubprogramProfile
"""
assert(profile is None or isinstance(profile, SubprogramProfile))
if profile.has_varargs() \
and gtkmethod.get_param("varargs").node is None:
naming.add_cmethod(cname, cname)
print "No binding for %s: varargs" % cname
return None
is_import = self._func_is_direct_import(profile) \
and not gtkmethod.get_body() \
and not gtkmethod.return_as_param()
adaname = adaname or gtkmethod.ada_name() or node.get("name").title()
adaname = naming.protect_keywords(adaname)
if not isinherited:
naming.add_cmethod(cname, "%s.%s" % (self.pkg.name, adaname))
if ismethod:
self._add_self_param(
adaname, node, gtkmethod, profile, inherited=isinherited)
if adaname.startswith("Gtk_New"):
self._handle_constructor(
node, gtkmethod=gtkmethod, cname=cname, profile=profile)
return
local_vars = []
call = ""
body = gtkmethod.get_body()
if not is_import:
internal_call = []
internal = Subprogram(
name="Internal",
returns=profile.returns,
lang="ada->c",
plist=profile.c_params(local_vars, internal_call)
).import_c(cname)
ret_as_param = gtkmethod.return_as_param()
if ret_as_param is not None:
profile.params.append(
Parameter(name=ret_as_param,
type=profile.returns, mode="out"))
profile.returns = None
cb = profile.callback_param_info()
if cb is not None:
if ret_as_param:
raise Exception("Cannot bind function with callback"
+ " and return value as parameter: %s"
% cname)
return self._callback_support(adaname, cname, profile, cb)
execute = internal.call(
in_pkg=self.pkg, extra_postcall="".join(internal_call))
if ret_as_param is not None:
assert execute[1] is not None, \
"Must have a return value in %s => %s" % (cname, execute)
call = "%s%s := %s;" % (execute[0], ret_as_param, execute[1])
else:
if execute[1]:
call = "%sreturn %s;" % (execute[0], execute[1])
else:
call = execute[0]
local_vars += execute[2]
subp = profile.subprogram(name=adaname, showdoc=showdoc,
local_vars=local_vars, code=call)
if is_import:
subp.import_c(cname)
else:
subp.add_nested(internal)
if body:
subp.set_body(" " + body.strip() + "\n")
section.add(subp)
return subp
def _callback_support(self, adaname, cname, profile, cb):
"""Add support for a function with a callback parameter and user data.
We generate multiple bindings for such a function:
* One version that doesn't take a user_data. This looks like:
type My_Callback is access function (Self, other_params);
procedure Gtk_Func (Self : ...; Cb : My_Callback);
since My_Callback doesn't have exactly the same profile as
required by gtk+, we in fact go through an intermediate function
in the body, to which we pass, as user_data, a pointer to the
user's callback:
function Internal_Callback (same_profile_as_c, user_data) is
User_Func : My_Callback := convert (user_data);
begin
return User_Func (...);
end Internal_Callback;
pragma Convention (C, Internal_Callback);
* Ideally we want to generate a generic package to which users
can pass their own user data type. We then need to generate the
proper Destroy callback that C will call to free that user data.
:profile: is an instance of SubprogramProfile.
:cname: is the name of the gtk+ C function.
:adaname: is the name of the corresponding Ada function.
:cb: is a list of Parameter instances representing the callback
parameters.
"""
if len(cb) > 1:
print "No binding for %s: multiple callback parameters" % cname
return
cb = cb[0]
def call_to_c(gtk_func, values,
user_data_setup='', user_data_cleanup=''):
"""Implement the call to the C function.
If the user passes a null callback, we always want to pass null
to C rather than passing our Internal_Callback'Address.
:param values: a dictionary of the parameters to pass to call().
:return: the code for the Ada function's body
"""
values_if_null = copy.deepcopy(values)
values_if_null[cb.name.lower()] = "System.Null_Address"
if user_data is not None:
values_if_null[user_data.lower()] = "System.Null_Address"
exec1 = gtk_func.call(
in_pkg=self.pkg,
extra_postcall="".join(call), values=values_if_null)
call1 = gtk_func.call_to_string(exec1, lang="ada->c")
if not call1.endswith(";"):
call1 += ";"
exec2 = gtk_func.call(
in_pkg=self.pkg,
extra_postcall="".join(call), values=values)
call2 = gtk_func.call_to_string(exec2, lang="ada->c")
if not call2.endswith(";"):
call2 += ";"
if user_data_setup:
call2 = user_data_setup + '\n' + call2
if user_data_cleanup:
call2 += '\n' + user_data_cleanup
return ("""if %s = null then
%s
else
%s
end if;""" % (cb.name, call1, call2), exec2[2])
cbname = cb.type.param
cb_type_name = naming.type(name=cb.type.ada, cname=cbname).ada
funcname = base_name(cb_type_name)
destroy = profile.find_param(destroy_data_params)
gtkmethod = self.gtkpkg.get_method(cname=cname)
try:
cb_gir_node = self.gir.callbacks[cb.type.ada]
except:
raise Exception(
"No GIR node for %s in callback %s" % (cb.type.ada, cname))
cbgtk = self.gtkpkg.get_method(cbname)
cb_profile = SubprogramProfile.parse(
cb_gir_node, gtkmethod=cbgtk, pkg=self.pkg)
user_data = profile.callback_user_data()
cb_user_data = cb_profile.find_param(user_data_params)
if user_data is None and cb_user_data is not None:
user_data = cb_user_data
if cbname not in self.callbacks:
self.callbacks.add(cbname)
section = self.pkg.section("Callbacks")
if cb_user_data is None:
print "callback has no user data: %s" % cbname
nouser_cb_profile = copy.deepcopy(cb_profile)
subp = nouser_cb_profile.subprogram(name="", lang="ada->c")
section.add(
"\ntype %s is %s" % (funcname, subp.spec(pkg=self.pkg)))
section.add(
"\npragma Convention (C, %s);" % funcname)
else:
nouser_cb_profile = copy.deepcopy(cb_profile)
nouser_cb_profile.remove_param(
destroy_data_params + [cb_user_data])
subp = nouser_cb_profile.subprogram(name="")
section.add(
"\ntype %s is %s" % (funcname, subp.spec(pkg=self.pkg)))
self.pkg.add_with(
"Ada.Unchecked_Conversion", do_use=False, specs=False)
section.add(
("function To_%s is new Ada.Unchecked_Conversion\n"
+ " (System.Address, %s);\n") % (funcname, funcname),
in_spec=False)
section.add(
("function To_Address is new Ada.Unchecked_Conversion\n"
+ " (%s, System.Address);\n") % (cb_type_name,),
in_spec=False)
ada_func = copy.deepcopy(subp)
if ada_func.plist:
ada_func.name = "Func"
else:
ada_func.name = "Func.all"
ada_func_call = ada_func.call(in_pkg=self.pkg, lang="c->ada")
body_cb = cb_profile.subprogram(
name="Internal_%s" % funcname,
local_vars=[Local_Var(
"Func", "constant %s" % funcname,
"To_%s (%s)" % (funcname, cb_user_data))]
+ ada_func_call[2],
lang="c->ada",
code=ada_func.call_to_string(ada_func_call, lang="c->ada"))
body_cb.convention = "C"
body_cb.doc = []
section.add(body_cb, in_spec=False)
local_vars = []
call = []
gtk_func_profile = copy.deepcopy(profile)
if cb is not None:
gtk_func_profile.replace_param(cb.name, "System.Address")
if cb_user_data is not None:
gtk_func_profile.replace_param(destroy, "System.Address")
gtk_func = gtk_func_profile.subprogram(
name=naming.case("C_%s" % cname), lang="ada->c").import_c(cname)
self.pkg.section("").add(gtk_func, in_spec=False)
section = self.pkg.section("Methods")
nouser_profile = copy.deepcopy(profile)
if user_data is None:
values = {destroy: "System.Null_Address",
cb.name.lower(): "%s'Address" % cb.name}
elif cb_user_data is None:
values = {destroy: "System.Null_Address",
cb.name.lower(): "Internal_%s'Address" % funcname,
user_data.lower(): "%s'Address" % cb.name}
else:
nouser_profile.remove_param(destroy_data_params + [user_data])
values = {destroy: "System.Null_Address",
cb.name.lower(): "Internal_%s'Address" % funcname,
user_data.lower(): "To_Address (%s)" % cb.name}
c_call = call_to_c(gtk_func, values)
subp = nouser_profile.subprogram(
name=adaname, local_vars=c_call[1],
code=c_call[0])
section.add(subp)
user_data2 = cb_profile.find_param(user_data_params)
if user_data2 is not None:
if profile.callback_destroy() is None \
and '_for' not in cname \
and cname not in ('gtk_tree_view_map_expanded_rows',
'pango_attributes_filter',
'gdk_window_invalidate_maybe_recurse',
'gtk_menu_popup'):
pass
else:
self.pkg.add_with("Glib.Object", do_use=False, specs=False)
pkg2 = Package(name="%s_User_Data" % adaname)
section.add(pkg2)
pkg2.formal_params = """type User_Data_Type (<>) is private;
with procedure Destroy (Data : in out User_Data_Type) is null;"""
sect2 = pkg2.section("")
sect2.add("""package Users is new Glib.Object.User_Data_Closure
(User_Data_Type, Destroy);""", in_spec=False)
sect2.add(
("function To_%s is new Ada.Unchecked_Conversion\n"
+ " (System.Address, %s);\n") % (funcname, funcname),
in_spec=False)
sect2.add(
("function To_Address is new Ada.Unchecked_Conversion\n"
+ " (%s, System.Address);\n") % (funcname,),
in_spec=False)
cb_profile2 = copy.deepcopy(cb_profile)
cb_profile2.replace_param(user_data2, "User_Data_Type")
cb2 = cb_profile2.subprogram(name="")
sect2.add(
"\ntype %s is %s" % (funcname, cb2.spec(pkg=pkg2)))
values = {user_data2.lower(): "D.Data.all"}
user_cb = cb_profile2.subprogram(
name="To_%s (D.Func)" % funcname)
user_cb_call = user_cb.call(
in_pkg=self.pkg,
lang="c->ada",
extra_postcall="".join(call), values=values)
internal_cb = cb_profile.subprogram(
name="Internal_Cb",
local_vars=[
Local_Var("D", "constant Users.Internal_Data_Access",
"Users.Convert (%s)" % user_data2)]
+ user_cb_call[2],
convention="C",
lang="c->ada",
code=user_cb.call_to_string(user_cb_call, lang="c->ada"))
sect2.add(internal_cb, in_spec=False)
values = {destroy: "Users.Free_Data'Address",
cb.name.lower(): "%s'Address" % internal_cb.name,
user_data.lower(): "D"}
full_profile = copy.deepcopy(profile)
full_profile.set_class_wide()
full_profile.remove_param(destroy_data_params)
full_profile.replace_param(cb.name, funcname)
full_profile.replace_param(user_data, "User_Data_Type")
if profile.callback_destroy() is None:
c_call = call_to_c(
gtk_func, values,
user_data_setup=
"D := Users.Build (To_Address (%s), %s);" %
(cb.name, user_data),
user_data_cleanup="Users.Free_Data (D);")
else:
c_call = call_to_c(
gtk_func, values,
user_data_setup=
"D := Users.Build (To_Address (%s), %s);" %
(cb.name, user_data))
subp2 = full_profile.subprogram(
name=adaname,
local_vars=c_call[1] + [Local_Var("D", "System.Address")],
code=c_call[0])
sect2.add(subp2)
return subp
def _constructors(self):
n = QName(uri, "constructor").text
for c in self.node.findall(n):
cname = c.get(cidentifier)
gtkmethod = self.gtkpkg.get_method(cname=cname)
if not gtkmethod.bind():
naming.add_cmethod(
cname, gtkmethod.ada_name() or cname)
continue
profile = SubprogramProfile.parse(
node=c, gtkmethod=gtkmethod, pkg=self.pkg,
ignore_return=True)
if profile.has_varargs() \
and gtkmethod.get_param("varargs").node is None:
naming.add_cmethod(cname, cname)
print "No binding for %s: varargs" % cname
continue
self._handle_constructor(
c, gtkmethod=gtkmethod, cname=cname, profile=profile)
def _handle_constructor(self, c, cname, gtkmethod, profile=None):
assert(profile is None or isinstance(profile, SubprogramProfile))
section = self.pkg.section("Constructors")
name = c.get("name").title()
assert profile.params is not None, "No profile defined for %s" % cname
format_params = ", ".join(p.name for p in profile.params)
if format_params:
self._subst["internal_params"] = " (%s)" % format_params
format_params = ", " + format_params
self._subst["params"] = format_params
else:
self._subst["params"] = ""
self._subst["internal_params"] = ""
if self.is_gobject or self.is_boxed:
profile.returns = AdaType(
"System.Address", pkg=self.pkg, in_spec=False)
else:
profile.returns = AdaType(
"%(typename)s" % self._subst,
pkg=self.pkg, in_spec=False)
local_vars = []
code = []
internal = Subprogram(
name="Internal",
lang="ada->c",
plist=profile.c_params(local_vars, code),
returns=profile.returns).import_c(cname)
call = internal.call(in_pkg=self.pkg)
assert(call[1] is not None)
gtk_new_prefix = "Gtk_New"
adaname = gtkmethod.ada_name()
if not adaname:
if cname.startswith("gdk_") or cname.startswith("pango_"):
gtk_new_prefix = "Gdk_New"
adaname = "Gdk_%s" % name
elif cname.startswith("g_"):
gtk_new_prefix = "G_New"
adaname = "G_%s" % name
else:
adaname = "Gtk_%s" % name
selfname = gtkmethod.get_param("self").ada_name() or "Self"
if self.is_gobject:
selftype = "%(typename)s_Record'Class" % self._subst
else:
selftype = "%(typename)s" % self._subst
if self.is_gobject:
filtered_params = [p for p in profile.params if p.ada_binding]
initialize_name=adaname.replace(
gtk_new_prefix, "%s.Initialize" % self.pkg.name)
initialize_params = [Parameter(
name=selfname,
type=AdaType(selftype, pkg=self.pkg, in_spec=True),
mode="not null access")] + filtered_params
initialize = Subprogram(
name=initialize_name,
plist=initialize_params,
local_vars=local_vars + call[2],
doc=profile.doc +
[('\n%s does nothing if the object was already' +
' created with another call to Initialize* or G_New.') % (
base_name(initialize_name), )],
code="if not %s.Is_Created then %sSet_Object (%s, %s); end if" % (
selfname, call[0], selfname, call[1]),
).add_nested(internal)
call = initialize.call(in_pkg=self.pkg)
assert(call[1] is None)
naming.add_cmethod(cname, "%s.%s" % (self.pkg.name, adaname))
gtk_new = Subprogram(
name=adaname,
plist=[Parameter(
name=selfname,
type=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
mode="out")] + filtered_params,
local_vars=call[2],
code=selfname + " := new %(typename)s_Record;" % self._subst
+ call[0],
doc=profile.doc)
section.add(gtk_new)
section.add(initialize)
gtk_new = Subprogram(
name="%s_%s" % (self._subst["typename"], name),
returns=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
plist=filtered_params,
local_vars=call[2] +
[Local_Var(selfname,
"constant %(typename)s" % self._subst,
"new %(typename)s_Record" % self._subst)],
code=call[0] + "return %s;" % selfname,
doc=profile.doc)
section.add(gtk_new)
elif self.is_boxed:
gtk_new = Subprogram(
name=adaname,
plist=[Parameter(
name=selfname,
type=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
mode="out")] + profile.params,
local_vars=local_vars + call[2],
code="%s%s.Set_Object (%s)" % (call[0], selfname, call[1]),
doc=profile.doc)
gtk_new.add_nested(internal)
section.add(gtk_new)
gtk_new = Subprogram(
name="%s_%s" % (self._subst["typename"], name),
returns=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
plist=profile.params,
local_vars=local_vars + call[2] +
[Local_Var(selfname,
"%(typename)s" % self._subst)],
code="%s%s.Set_Object (%s); return %s" % (
call[0], selfname, call[1], selfname),
doc=profile.doc)
gtk_new.add_nested(internal)
section.add(gtk_new)
else:
gtk_new = Subprogram(
name=adaname,
plist=[Parameter(
name=selfname,
type=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
mode="out")] + profile.params,
local_vars=local_vars + call[2],
code="%s%s := %s" % (call[0], selfname, call[1]),
doc=profile.doc)
gtk_new.add_nested(internal)
section.add(gtk_new)
gtk_new = Subprogram(
name="%s_%s" % (self._subst["typename"], name),
returns=AdaType("%(typename)s" % self._subst,
pkg=self.pkg, in_spec=True),
plist=profile.params,
local_vars=local_vars + call[2] +
[Local_Var(selfname,
"%(typename)s" % self._subst)],
code="%s%s := %s; return %s;" % (
call[0], selfname, call[1], selfname),
doc=profile.doc)
gtk_new.add_nested(internal)
section.add(gtk_new)
def _methods(self):
all = self.node.findall(nmethod)
if all is not None:
section = self.pkg.section("Methods")
for c in all:
self._handle_function(section, c, ismethod=True)
def _functions(self):
all = self.node.findall(nfunction)
if all is not None:
section = self.pkg.section("Functions")
for c in all:
self._handle_function(section, c)
def _virtual_methods(self):
all = self.node.findall(nvirtualmethod)
has_iface = False
if all is not None:
ifacename = base_name(self.name)
info = ''
for c in all:
if not self.gtkpkg.bind_virtual_method(
c.get('name'), default=self.is_interface):
continue
gtkmethod = self.gtkpkg.get_method(cname=c.get('name'))
basename = gtkmethod.ada_name() or c.get('name').title()
adaname = "Virtual_%s" % basename
if not has_iface:
has_iface = True
section = self.pkg.section("Virtual Methods")
info += """
procedure Set_%(basename)s
(Self : %(type)s;
Handler : %(adaname)s);
pragma Import (C, Set_%(basename)s, "gtkada_%(ifacename)s_set_%(method)s");
""" % {"basename": basename,
"type": "%s_Interface_Descr" % ifacename
if self.is_interface
else "Glib.Object.GObject_Class",
"adaname": adaname,
"ifacename": ifacename,
"method": basename.lower()}
c_iface = '%s%s' % (
self.identifier_prefix,
self.node.get(glib_type_struct))
self.gir.ccode += """
void gtkada_%(type)s_set_%(method)s(%(iface)s* iface, void* handler) {
iface->%(field)s = handler;
}
""" % {"type": ifacename,
"method": basename.lower(),
"iface": c_iface,
"field": c.get('name')}
profile = SubprogramProfile.parse(
node=c,
gtkmethod=gtkmethod,
pkg=self.pkg)
self._add_self_param(
adaname=adaname, node=c, gtkmethod=gtkmethod, profile=profile,
inherited=False)
subp = profile.subprogram(
name=adaname,
lang="ada->c",
convention="C",
showdoc=True)
section.add(
'\ntype %s is %s' % (
adaname,
subp.spec(pkg=self.pkg, as_type=True)))
subp.add_withs_for_subprogram(pkg=self.pkg, in_specs=True)
if has_iface:
info = ('subtype %s_Interface_Descr is ' % ifacename
+ 'Glib.Object.Interface_Description;\n'
+ info
+ '-- See Glib.Object.Add_Interface\n')
section.add(info)
self.pkg.add_with('Glib.Object')
def _globals(self):
funcs = self.gtkpkg.get_global_functions()
if funcs:
section = self.pkg.section("Functions")
for f in funcs:
c = self.gir.globals.get_function(
f.cname())
self._handle_function(section, c, gtkmethod=f)
def _method_get_type(self):
"""Generate the Get_Type subprogram"""
n = self.node.get(ggettype)
if n is not None:
section = self.pkg.section("Constructors")
gtkmethod = self.gtkpkg.get_method(cname=n)
if not gtkmethod.bind():
return
self.pkg.add_with("Glib")
get_type_name = gtkmethod.ada_name() or "Get_Type"
section.add(
Subprogram(
name=get_type_name,
doc=gtkmethod.get_doc(default=''),
returns=AdaType("Glib.GType", pkg=self.pkg, in_spec=True))
.import_c(n))
if not self.gtktype.is_subtype() \
and not self.is_interface \
and self.is_gobject \
and self._subst["parent"] is not None:
self.pkg.add_with("Glib.Type_Conversion_Hooks", specs=False)
self._subst["get_type"] = get_type_name
section.add(
("package Type_Conversion_%(typename)s is new"
+ " Glib.Type_Conversion_Hooks.Hook_Registrator\n"
+ " (%(get_type)s'Access, %(typename)s_Record);\n"
+ "pragma Unreferenced (Type_Conversion_%(typename)s);""")
% self._subst, in_spec=False)
def _get_c_type(self, node):
t = node.find(ntype)
if t is not None:
return t.get(ctype_qname)
return None
def _fields(self):
fields = self.node.findall(nfield)
if fields:
section = self.pkg.section("Fields")
for f in fields:
name = f.get("name")
if f.get("readable", "1") != "0":
cname = "gtkada_%(cname)s_get_%(name)s" % {
"cname": self._subst["cname"], "name": name}
gtkmethod = self.gtkpkg.get_method(cname=cname)
if gtkmethod.bind(default="false"):
profile = SubprogramProfile.parse(
node=f, gtkmethod=gtkmethod, pkg=self.pkg)
func = self._handle_function_internal(
section,
node=f,
cname=cname,
adaname="Get_%s" % name,
ismethod=True,
profile=profile,
gtkmethod=gtkmethod)
if func is not None:
ctype = self._get_c_type(f)
if ctype is None:
continue
self.gir.ccode += """
%(ctype)s %(cname)s (%(self)s* self) {
return self->%(name)s;
}
""" % {"ctype": ctype, "cname": cname, "self": self.ctype, "name": name}
if f.get("writable", "1") != "0":
cname = "gtkada_%(cname)s_set_%(name)s" % {
"cname": self._subst["cname"], "name": name}
gtkmethod = self.gtkpkg.get_method(cname=cname)
if gtkmethod.bind("false"):
profile = SubprogramProfile.setter(
node=f, pkg=self.pkg)
func = self._handle_function_internal(
section,
node=f,
cname=cname,
adaname="Set_%s" % name,
ismethod=True,
gtkmethod=gtkmethod,
profile=profile)
if func is not None:
ctype = self._get_c_type(f)
if ctype is None:
continue
self.gir.ccode += """
void %(cname)s (%(self)s* self, %(ctype)s val) {
self->%(name)s = val;
}
""" % {"ctype": ctype, "cname": cname, "self": self.ctype, "name": name}
def _properties(self):
n = QName(uri, "property")
props = list(self.node.findall(n.text))
if props is not None:
adaprops = []
for p in props:
flags = []
if p.get("readable", "1") != "0":
flags.append("read")
if p.get("writable", "1") != "0":
flags.append("write")
tp = _get_type(p)
tp.userecord = False
ptype = tp.as_property()
if ptype:
pkg = ptype[:ptype.rfind(".")]
if pkg:
self.pkg.add_with(pkg)
else:
section = self.pkg.section("Properties")
section.add(
(' %(name)s_Property : constant '
+ 'Glib.Properties.Property_String :=\n'
+ ' Glib.Properties.Build ("%(cname)s");'
+ ' -- Unknown type: %(type)s') % {
"name": naming.case(p.get("name")),
"type": (p.find(ntype).get("name")
if p.find(ntype) is not None
else "unspecified"),
"cname": p.get("name")})
self.pkg.add_with("Glib.Properties")
continue
adaprops.append({
"cname": p.get("name"),
"name": naming.case(p.get("name")),
"flags": "-".join(flags),
"doc": _get_clean_doc(p),
"pkg": pkg,
"ptype": ptype,
"type": tp.as_ada_param(self.pkg)})
if adaprops:
section = self.pkg.section("Properties")
section.add_comment(
"""The following properties are defined for this widget.
See Glib.Properties for more information on properties)""")
adaprops.sort(lambda x, y: cmp(x["name"], y["name"]))
for p in adaprops:
prop_str = ' %(name)s_Property : constant %(ptype)s;' % p
if not section.add(prop_str):
continue
if p["type"] not in ("Boolean", "UTF8_String", "Gfloat",
"Glib.Gint", "Guint") \
and not p["type"].startswith("Gtk.Enums."):
section.add(
Code("Type: %(type)s" % p, iscomment=True))
if p["flags"] != "read-write":
section.add(
Code("Flags: %(flags)s" % p, iscomment=True))
if p["doc"]:
section.add(Code("%s" % p["doc"], iscomment=True))
d = ' %(name)s_Property : constant %(ptype)s' % p
self.pkg.add_private(
d + ' :=\n %(pkg)s.Build ("%(cname)s");' % p)
def _compute_marshaller_suffix(self, selftype, profile):
"""Computes the suffix for the connect and marshallers types based on
the profile of the signal.
"""
return "_".join(
[base_name(selftype.ada)]
+ [base_name(p.type.ada) for p in profile.params]
+ [(base_name(profile.returns.ada)
if profile.returns else "Void")])
def _marshall_gvalue(self, profile):
"""Return the arguments to parse to an Ada callback, after extracting
them from a GValue. Returns a list of local variables for the
marshaller, and its body
"""
call_params = []
for index, p in enumerate(profile.params):
if isinstance(p.type, Tagged):
call_params.append(
"%s.From_Object (Unchecked_To_Address (Params, %d))" %
(package_name(p.type.ada), index + 1))
elif isinstance(p.type, Interface):
call_params.append(
"%s (Unchecked_To_Interface (Params, %d))" %
(p.type.ada, index + 1))
elif isinstance(p.type, GObject):
if p.type.ada != "Glib.Object.GObject":
call_params.append(
"%s (Unchecked_To_Object (Params, %d))" % (
p.type.ada, index + 1))
else:
call_params.append(
"Unchecked_To_Object (Params, %d)" % (index + 1, ))
else:
if p.mode != "in":
call_params.append(
"Unchecked_To_%s_Access (Params, %d)" % (
base_name(p.type.ada), index + 1))
else:
call_params.append(
"Unchecked_To_%s (Params, %d)" % (
base_name(p.type.ada), index + 1))
if call_params:
call = "H (Obj, %s)" % ", ".join(call_params)
else:
call = "H (Obj)"
if profile.returns:
marsh_local = [
Local_Var("V", profile.returns, aliased=True, default=call)]
marsh_body = "Set_Value (Return_Value, V'Address);"
else:
marsh_local = []
marsh_body = "%s;" % call
marsh_body += "exception when E : others => Process_Exception (E);"
return marsh_local, marsh_body
def _generate_slot_marshaller(self, section, selftype, node, gtkmethod):
"""Generate connect+marshaller when connect takes a slot object. These
procedure are independent of the specific widget, and can be shared.
Returns the name for the hander type.
"""
if SHARED_SLOT_MARSHALLERS:
pkg = gir.slot_marshaller_pkg
section = gir.slot_marshaller_section
existing_marshallers = gir.slot_marshallers
else:
pkg = self.pkg
section = section
existing_marshallers = self.__marshallers
profile = SubprogramProfile.parse(
node=node, gtkmethod=gtkmethod, pkg=pkg)
callback_selftype = GObject(
"Glib.Object.GObject", classwide=True, allow_none=True)
name_suffix = self._compute_marshaller_suffix(
callback_selftype, profile)
slot_name = "Cb_%s" % name_suffix
marshname = "Marsh_%s" % name_suffix
callback = Subprogram(
name="",
plist=[Parameter(name="Self", type=callback_selftype)]
+ profile.params,
code="null",
allow_none=False,
returns=profile.returns)
if slot_name not in existing_marshallers:
existing_marshallers.add(slot_name)
slot_handler_type = "type %s is %s;" % (
slot_name, callback.profile(
pkg=pkg,
maxlen=69, indent=" "))
section.add(Code(slot_handler_type), in_spec=True)
section.add(Code(
"""function Cb_To_Address is new Ada.Unchecked_Conversion
(%s, System.Address);
function Address_To_Cb is new Ada.Unchecked_Conversion
(System.Address, %s);
""" % (slot_name, slot_name)),
in_spec=False)
if isinstance(selftype, Interface):
obj_in_body = "Glib.Types.GType_Interface (Object)"
else:
obj_in_body = "Object"
connect_slot_body = """
Unchecked_Do_Signal_Connect
(Object => %s,
C_Name => C_Name,
Marshaller => %s'Access,
Handler => Cb_To_Address (Handler), -- Set in the closure
Slot_Object => Slot,
After => After)""" % (obj_in_body, marshname)
marsh_local, marsh_body = self._marshall_gvalue(profile)
connect_slot = Subprogram(
name="Connect_Slot",
plist=[Parameter("Object", selftype),
Parameter("C_Name", "Glib.Signal_Name"),
Parameter("Handler", slot_name),
Parameter("After", "Boolean"),
Parameter("Slot", GObject(
"Glib.Object.GObject", allow_none=True,
classwide=True), default="null")
],
code=connect_slot_body)
section.add(connect_slot, in_spec=False)
addr_to_obj = "Glib.Object.Convert (Get_Data (Closure))"
marsh = Subprogram(
name=marshname,
plist=[Parameter("Closure", "GClosure"),
Parameter("Return_Value", "Glib.Values.GValue"),
Parameter("N_Params", "Glib.Guint"),
Parameter("Params", "Glib.Values.C_GValues"),
Parameter("Invocation_Hint", "System.Address"),
Parameter("User_Data", "System.Address")],
local_vars=[
Local_Var("H", "constant %s" % slot_name,
"Address_To_Cb (Get_Callback (Closure))"),
Local_Var("Obj", "Glib.Object.GObject", constant=True,
default=addr_to_obj)
] + marsh_local,
convention="C",
code=marsh_body)
section.add(marsh, in_spec=False)
return slot_name, callback
def _generate_marshaller(self, section, selftype, node, gtkmethod):
"""Generate, if needed, a connect+marshaller for signals with this
profile.
Returns the name of the type that contains the subprogram profile
"""
profile = SubprogramProfile.parse(
node=node, gtkmethod=gtkmethod,
pkg=self.pkg if gtkmethod.bind() else None)
name_suffix = self._compute_marshaller_suffix(selftype, profile)
marshname = "Marsh_%s" % name_suffix
name = "Cb_%s" % name_suffix
callback = Subprogram(
name="",
plist=[Parameter(name="Self", type=selftype)] + profile.params,
code="null",
allow_none=False,
returns=profile.returns)
if gtkmethod.bind() and name not in self.__marshallers:
self.__marshallers.add(name)
handler_type = "type %s is %s;" % (
name, callback.profile(
pkg=self.pkg, maxlen=69, indent=" "))
section.add(Code(handler_type), in_spec=True)
section.add(Code(
"""function Cb_To_Address is new Ada.Unchecked_Conversion
(%s, System.Address);
function Address_To_Cb is new Ada.Unchecked_Conversion
(System.Address, %s);
""" % (name, name)),
in_spec=False)
if isinstance(selftype, Interface):
obj_in_body = "Glib.Types.GType_Interface (Object)"
else:
obj_in_body = "Object"
connect_body = """
Unchecked_Do_Signal_Connect
(Object => %s,
C_Name => C_Name,
Marshaller => %s'Access,
Handler => Cb_To_Address (Handler), -- Set in the closure
After => After)""" % (obj_in_body, marshname)
marsh_local, marsh_body = self._marshall_gvalue(profile)
connect = Subprogram(
name="Connect",
plist=[Parameter("Object", selftype),
Parameter("C_Name", "Glib.Signal_Name"),
Parameter("Handler", name),
Parameter("After", "Boolean"),
],
code=connect_body)
section.add(connect, in_spec=False)
if isinstance(selftype, Interface):
addr_to_obj = \
"%s (Unchecked_To_Interface (Params, 0))" % selftype.ada
else:
addr_to_obj = \
"%s (Unchecked_To_Object (Params, 0))" % selftype.ada
marsh = Subprogram(
name=marshname,
plist=[Parameter("Closure", "GClosure"),
Parameter("Return_Value", "Glib.Values.GValue"),
Parameter("N_Params", "Glib.Guint"),
Parameter("Params", "Glib.Values.C_GValues"),
Parameter("Invocation_Hint", "System.Address"),
Parameter("User_Data", "System.Address")],
local_vars=[
Local_Var("H", "constant %s" % name,
"Address_To_Cb (Get_Callback (Closure))"),
Local_Var("Obj", selftype.ada, constant=True,
default=addr_to_obj)
] + marsh_local,
convention="C",
code=marsh_body)
section.add(marsh, in_spec=False)
return name, callback, profile
def _signals(self):
signals = list(self.node.findall(gsignal))
if signals:
adasignals = []
section = self.pkg.section("Signals")
section.sort_objects = False
for s in signals:
if self.gtkpkg.get_method(
cname="::%s" % s.get("name")).bind():
section.add(
Code("use type System.Address;"), in_spec=False)
self.pkg.add_with("Gtkada.Bindings", specs=False)
self.pkg.add_with("Glib.Values", specs=False)
self.pkg.add_with("Gtk.Arguments", specs=False)
if SHARED_SLOT_MARSHALLERS:
self.pkg.add_with("Gtkada.Marshallers")
self.pkg.add_with(
"Ada.Unchecked_Conversion", specs=False, do_use=False)
break
signals.sort(key=lambda x: x.get("name"))
for s in signals:
gtkmethod = self.gtkpkg.get_method(
cname="::%s" % (s.get("name")))
bind = gtkmethod.bind()
name = s.get("name")
if self.is_gobject:
selftype = GObject("%(typename)s" % self._subst,
allow_none=True, classwide=True)
on_selftype = GObject("%(typename)s" % self._subst,
allow_none=False, classwide=False)
elif self.is_interface:
on_selftype = selftype = Interface(
"%(typename)s" % self._subst)
else:
on_selftype = selftype = Proxy(
"%(typename)s" % self._subst)
handler_type_name, sub, profile = \
self._generate_marshaller(
section, selftype, node=s, gtkmethod=gtkmethod)
if bind:
slot_handler_type_name, obj_sub = \
self._generate_slot_marshaller(
section, selftype, node=s, gtkmethod=gtkmethod)
section.add(
Code(' Signal_%s : constant Glib.Signal_Name := "%s";' %
(naming.case(name, protect=False), name)),
add_newline=False)
if bind:
connect = Subprogram(
name="On_%s" % naming.case(name, protect=False),
plist=[Parameter(name="Self", type=on_selftype),
Parameter(
name="Call",
type=Proxy(handler_type_name)),
Parameter(
name="After",
type="Boolean",
default="False")],
code='Connect (Self, "%s" & ASCII.NUL, Call, After);' %
name)
section.add(connect, add_newline=False)
self.pkg.add_with("Glib.Object")
obj_connect = Subprogram(
name="On_%s" % naming.case(name, protect=False),
plist=[Parameter(name="Self", type=on_selftype),
Parameter(
name="Call",
type=Proxy(slot_handler_type_name)),
Parameter(
name="Slot",
type=GObject("Glib.Object.GObject",
allow_none=False,
classwide=True)),
Parameter(
name="After",
type="Boolean",
default="False")],
code=('Connect_Slot (Self, "%s" & ASCII.NUL,'
+ ' Call, After, Slot);') % name)
section.add(obj_connect)
doc = _get_clean_doc(s)
if doc:
section.add(Code(" %s""" % doc, iscomment=True))
if not bind:
sub.name = "Handler"
section.add(
Code(
sub.profile(pkg=self.pkg, maxlen=69),
fill=False, iscomment=True))
if profile.returns_doc or len(profile.params) > 1:
doc = "\n Callback parameters:" + sub.formatted_doc()
if profile.returns_doc:
doc += "\n -- %s" % profile.returns_doc
section.add(Code(doc, fill=False, iscomment=True))
def _implements(self):
"""Bind the interfaces that a class implements"""
implements = list(self.node.findall(nimplements)) or []
for impl in implements:
name = impl.get("name")
if name == "Gio.Icon":
name = "Icon"
if "--%s" % name in interfaces:
continue
try:
intf = self.gir.interfaces[name]
except KeyError:
intf = self.gir.interfaces[naming.girname_to_ctype[name]]
type = naming.type(intf.ctype)
if "." in type.ada:
self.pkg.add_with(type.ada[:type.ada.rfind(".")])
self.pkg.add_with("Glib.Types")
impl = dict(
name=name,
adatype=base_name(type.ada),
impl=type.ada,
interface=intf,
body="",
pkg="%(typename)s" % self._subst)
impl["code"] = \
"""package Implements_%(adatype)s is new Glib.Types.Implements
(%(impl)s, %(pkg)s_Record, %(pkg)s);
function "+"
(Widget : access %(pkg)s_Record'Class)
return %(impl)s
renames Implements_%(adatype)s.To_Interface;
function "-"
(Interf : %(impl)s)
return %(pkg)s
renames Implements_%(adatype)s.To_Object;
""" % impl
self.implements[name] = impl
if self.is_interface:
self.implements[""] = {
"name": self._subst["typename"],
"interface": None,
"code": """function "+" (W : %(typename)s) return %(typename)s;
pragma Inline ("+"); """ % self._subst,
"body": """function "+" (W : %(typename)s) return %(typename)s is
begin
return W;
end "+";""" % self._subst,
}
if self.implements:
section = self.pkg.section(
"Inherited subprograms (from interfaces)")
for impl in sorted(self.implements.iterkeys()):
impl = self.implements[impl]
if impl["name"] == "Buildable":
section.add_comment(
"Methods inherited from the Buildable interface are"
+ " not duplicated here since they are meant to be"
+ " used by tools, mostly. If you need to call them,"
+ ' use an explicit cast through the "-" operator'
+ " below.")
continue
interf = impl["interface"]
if interf is not None and not hasattr(interf, "gtkpkg"):
print "%s: methods for interface %s were not bound" % (
self.name, impl["name"])
elif interf is not None:
all = interf.node.findall(nmethod)
for c in all:
cname = c.get(cidentifier)
gtkmethod = interf.gtkpkg.get_method(cname)
interfmethod = self.gtkpkg.get_method(cname)
if interfmethod.bind():
self._handle_function(
section, c, showdoc=False, gtkmethod=gtkmethod,
ismethod=True, isinherited=True)
section = self.pkg.section("Interfaces")
section.add_comment(
"This class implements several interfaces. See Glib.Types")
for impl in sorted(self.implements.iterkeys()):
impl = self.implements[impl]
section.add_comment("")
section.add_comment('- "%(name)s"' % impl)
section.add(impl["code"])
if impl["body"]:
section.add(impl["body"], in_spec=False)
def add_list_binding(self, section, adaname, ctype, singleList):
"""Generate a list instance"""
conv = "%s->Address" % ctype.ada
decl = ""
body = ""
if conv not in self.conversions:
self.conversions[conv] = True
base = "function Convert (R : %s) return System.Address" % (
ctype.ada)
decl += base + ';\n'
body += base + " is\nbegin\n"
if isinstance(ctype, Proxy):
body += "return Glib.To_Address (Glib.C_Proxy (R));"
else:
body += "return Get_Object (R);"
body += "\nend Convert;\n\n"
conv = "Address->%s" % ctype.ada
if conv not in self.conversions:
self.conversions[conv] = True
decl += "function Convert (R : System.Address) return %s;\n" % (
ctype.ada)
body += "function Convert (R : System.Address) return %s is\n" % (
ctype.ada)
if isinstance(ctype, Proxy):
body += "begin\nreturn %s" % ctype.ada \
+ "(Glib.C_Proxy'(Glib.To_Proxy (R)));"
elif isinstance(ctype, Tagged):
body += "begin\nreturn From_Object(R);"
else:
body += "Stub : %s_Record;" % ctype.ada
body += "begin\n"
body += "return %s (Glib.Object.Get_User_Data (R, Stub));" % (
ctype.ada)
body += "\nend Convert;"
if singleList:
pkg = "GSlist"
generic = "Generic_SList"
else:
pkg = "Glist"
generic = "Generic_List"
self.pkg.add_with("Glib.%s" % pkg)
decl += "package %s is new %s (%s);\n" % (adaname, generic, ctype.ada)
section.add(decl)
section.add(body, in_spec=False)
def record_binding(
self, section, ctype, adaname, type, override_fields,
unions, private):
"""Create the binding for a <record> or <union> type.
override_fields has the same format as returned by
GtkAdaPackage.records()
"""
base = adaname or base_name(type.ada)
try:
node = gir.records[ctype]
except KeyError:
return
gir.bound.add(ctype)
is_union = node.tag == nunion
first_field_ctype = None
fields = []
if (naming.type_exceptions.get(ctype, None) is None
or not isinstance(naming.type_exceptions[ctype], Proxy)):
for field in node.findall(nfield):
name = field.get("name")
ftype = None
type = _get_type(field)
cb = field.findall(ncallback)
if type:
ftype = override_fields.get(name, None)
if ftype is None:
if not first_field_ctype:
t = field.findall(ntype)
assert t, "No type info for %s.%s" % (ctype, name)
ctype = t[0].get(ctype_qname)
if not ctype:
ctype = naming.girname_to_ctype[
t[0].get("name")]
first_field_ctype = ctype
ftype = type
elif cb:
ftype = override_fields.get(name, None)
if ftype is None:
ftype = AdaType(
"System.Address", pkg=self.pkg)
else:
print "WARNING: Field '%s.%s' has no type" % (name, base)
print " generated record is most certainly incorrect"
if ftype is not None:
if ftype.ada in ("GSList", "GList") and private:
ftype = "System.Address"
default_value = "System.Null_Address"
else:
default_value = ftype.default_record_field_value
ftype = ftype.record_field_type(pkg=self.pkg)
self.pkg.add_with(package_name(ftype))
fields.append((naming.case(name), ftype, default_value))
if not fields:
section.add(
("\ntype %(typename)s is new Glib.C_Proxy;\n"
+ "function From_Object_Free (B : access %(typename)s) "
+ "return %(typename)s;\npragma Inline (From_Object_Free);")
% {"typename": base})
section.add("""
function From_Object_Free (B : access %(typename)s) return %(typename)s is
Result : constant %(typename)s := B.all;
begin
Glib.g_free (B.all'Address);
return Result;
end From_Object_Free;""" % {"typename": base}, in_spec=False)
else:
if private:
section.add(
("\ntype %(typename)s is private;\n"
+ "function From_Object_Free (B : access %(typename)s)"
+ " return %(typename)s;\n"
+ "pragma Inline (From_Object_Free);")
% {"typename": base})
adder = self.pkg.add_private
else:
adder = section.add
if is_union:
enums = self.get_enumeration_values(first_field_ctype)
enums_dict = {ctype: adatype for ctype, adatype in enums}
text = "\ntype %s (%s : %s := %s) is record\n" % (
base, fields[0][0], fields[0][1],
enums[0][1]) + \
" case %s is\n" % fields[0][0]
for index, f in enumerate(fields):
if index != 0:
when_stmt = []
if unions:
for v, key in unions:
if key.lower() == f[0].lower():
when_stmt.append(enums_dict[v])
else:
when_stmt = [enums[index][1]]
if not when_stmt:
print("ERROR: no discrimant value for field %s"
% f[0])
text += "\n when %s =>\n %s : %s;\n" % (
"\n | ".join(when_stmt), f[0], f[1])
text += " end case;\nend record;\n"
text += "pragma Convention (C, %s);\n" % base
text += "pragma Unchecked_Union(%s);\n" % base
adder("\n" + Code(text).format())
else:
c = []
for f in fields:
if f[2]:
c.append('%s : %s := %s;' % (f[0], f[1], f[2]))
else:
c.append('%s : %s;' % (f[0], f[1]))
c = Code('\ntype %s is record\n' % base
+ '\n'.join(c)
+ '\nend record;\npragma Convention (C, %s);\n' % base)
adder(c.format())
if not private:
section.add(
("\nfunction From_Object_Free (B : access %(type)s)"
+ " return %(type)s;\n"
+ "pragma Inline (From_Object_Free);") % {"type": base})
section.add("""
function From_Object_Free (B : access %(typename)s) return %(typename)s is
Result : constant %(typename)s := B.all;
begin
Glib.g_free (B.all'Address);
return Result;
end From_Object_Free;""" % {"typename": base}, in_spec=False)
section.add(Code(_get_clean_doc(node), iscomment=True))
def get_enumeration_values(sef, enum_ctype):
"""Return the list of enumeration values for the given enum, as a list
of tuples (C identifier, ada identifier)"""
node = gir.enums[enum_ctype]
return [(m.get(cidentifier), naming.adamethod_name(m.get(cidentifier)))
for m in node.findall(nmember)]
def constants_binding(self, section, regexp, prefix):
constants = []
r = re.compile(regexp)
for name, node in gir.constants.iteritems():
if r.match(name):
name = name.replace(prefix, "").title()
gir.bound.add(node.get(ctype_qname))
type = node.findall(ntype)
ctype = type[0].get(ctype_qname)
ftype = naming.type(name="", cname=ctype)
constants.append(
'%s : constant %s := "%s";' %
(name, ftype.ada, node.get("value")))
constants.sort()
section.add("\n".join(constants))
def enumeration_binding(self, section, ctype, type, prefix,
asbitfield=False, ignore=""):
"""Add to the section the Ada type definition for the <enumeration>
ctype. type is the corresponding instance of CType().
This function also handles <bitfield> types.
:param prefix: is removed from the values to get the default Ada name,
which can be overridden in data.cname_to_adaname.
:param ignore: space-separated list of values that should not be
bound.
"""
base = base_name(type.ada)
node = gir.enums[ctype]
current = 0
is_default_representation = True
gir.bound.add(ctype)
members = []
ignore = set(ignore.split())
for member in node.findall(nmember):
cname = member.get(cidentifier)
if cname in ignore:
continue
m = naming.adamethod_name(cname, warning_if_not_found=False)
if m is None:
continue
if cname == m:
m = cname.replace(prefix, "").title()
else:
m = base_name(m)
naming.add_cmethod(
cname=cname,
adaname="%s.%s" % (self.name, m))
value = int(member.get("value"))
if value != current:
is_default_representation = False
current += 1
members.append((m, value))
decl = ""
if node.tag == nenumeration and not asbitfield:
section.add(
"type %s is " % base
+ "(\n" + ",\n".join(m[0]
for m in sorted(members, key=lambda m: m[1]))
+ ");\n"
+ "pragma Convention (C, %s);\n" % base)
section.add(Code(_get_clean_doc(node), iscomment=True))
if not is_default_representation:
repr = (" for %s use (\n" % base
+ ",\n".join(" %s => %s" % m
for m in sorted(members, key=lambda m: m[1]))
+ ");\n")
section.add(repr)
elif node.tag == nbitfield or asbitfield:
section.add(
"\ntype %s is " % base
+ "mod 2 ** Integer'Size;\n"
+ "pragma Convention (C, %s);\n" % base)
section.add(Code(_get_clean_doc(node), iscomment=True))
for m, value in members:
decl += "%s : constant %s := %s;\n" % (m, base, value)
section.add(decl)
section.pkg.section("Enumeration Properties").add(
"package %s_Properties is\n" % base
+ " new Generic_Internal_Discrete_Property (%s);\n" % base
+ "type Property_%s is new %s_Properties.Property;\n\n" % (
base, base))
self.pkg.add_with("Glib.Generic_Properties")
def generate(self, gir):
if self._generated:
return
extra = self.gtkpkg.extra()
if extra:
self.node.extend(extra)
parent = gir._get_class_node(
self.rootNode,
girname=self.gtkpkg.parent_type() or self.node.get("parent"))
parent = naming.type(
name=self.gtkpkg.parent_type() or self.node.get(
"parent"),
cname=parent and parent.get(ctype_qname)).ada
if parent and parent.rfind(".") != -1:
self._subst["parent_pkg"] = package_name(parent)
self._subst["parent"] = base_name(parent)
else:
self._subst["parent_pkg"] = None
self._subst["parent"] = parent
self._generated = True
girdoc = _get_clean_doc(self.node)
into = self.gtkpkg.into()
if into:
klass = gir.classes.get(into, None) or gir.ctype_interfaces[into]
klass.generate(gir)
into = klass.name
girdoc = ""
typename = "%s.%s" % (into, self._subst["typename"])
oldtype = naming.type(cname=self.ctype)
newtype = None
if isinstance(oldtype, Tagged):
newtype = Tagged(typename)
elif isinstance(oldtype, GObject):
newtype = GObject(typename)
elif isinstance(oldtype, Proxy):
newtype = Proxy(typename)
elif isinstance(oldtype, Record):
newtype = Record(typename)
else:
raise Exception("Can't override %s for a package with 'into'"
% oldtype)
naming.add_type_exception(
override=True,
cname=self.ctype,
type=newtype)
self.pkg = gir.get_package(into or self.ada_package_name,
ctype=self.ctype,
doc=girdoc)
if self._subst["parent_pkg"]:
self.pkg.add_with("%(parent_pkg)s" % self._subst)
self.gtktype = self.gtkpkg.get_type(self._subst["typename"])
section = self.pkg.section("")
if self.gtkpkg.is_obsolete():
section.add("pragma Obsolescent;")
if not self.has_toplevel_type:
pass
elif self.is_interface:
self.pkg.add_with("Glib.Types")
section.add(
"""type %(typename)s is new Glib.Types.GType_Interface;
Null_%(typename)s : constant %(typename)s;""" % self._subst)
self.pkg.add_private("""
Null_%(typename)s : constant %(typename)s :=
%(typename)s (Glib.Types.Null_Interface);""" %
self._subst)
elif self.gtktype.is_subtype():
section.add(
"""
subtype %(typename)s_Record is %(parent)s_Record;
subtype %(typename)s is %(parent)s;""" % self._subst)
elif self.is_proxy:
section.add("""
type %(typename)s is new Glib.C_Proxy;""" % self._subst)
elif self.is_boxed:
section.add("""
type %(typename)s is new Glib.C_Boxed with null record;
Null_%(typename)s : constant %(typename)s;
function From_Object (Object : System.Address) return %(typename)s;
function From_Object_Free (B : access %(typename)s'Class) return %(typename)s;
pragma Inline (From_Object_Free, From_Object);
""" % self._subst)
self.pkg.add_private(
("\n Null_%(typename)s : constant %(typename)s :="
+ " (Glib.C_Boxed with null record);\n") %
self._subst, at_end=True)
section.add("""
function From_Object_Free
(B : access %(typename)s'Class) return %(typename)s
is
Result : constant %(typename)s := %(typename)s (B.all);
begin
Glib.g_free (B.all'Address);
return Result;
end From_Object_Free;
function From_Object (Object : System.Address) return %(typename)s is
S : %(typename)s;
begin
S.Set_Object (Object);
return S;
end From_Object;
""" % self._subst, in_spec=False)
elif self._subst["parent"] is None:
self.gtkpkg.add_record_type(self.ctype)
else:
section.add("""
type %(typename)s_Record is new %(parent)s_Record with null record;
type %(typename)s is access all %(typename)s_Record'Class;"""
% self._subst)
for ctype, enum, prefix, asbitfield, ignore in \
self.gtkpkg.enumerations():
self.enumeration_binding(
section, ctype, enum, prefix, asbitfield=asbitfield,
ignore=ignore)
for regexp, prefix in self.gtkpkg.constants():
self.constants_binding(section, regexp, prefix)
for ctype, enum, adaname, fields, unions, private in \
self.gtkpkg.records():
self.record_binding(
section, ctype, adaname, enum, fields, unions, private)
for ada, ctype, single, sect_name in self.gtkpkg.lists():
sect = self.pkg.section(sect_name)
self.add_list_binding(sect, ada, ctype, single)
if extra:
for p in extra:
if p.tag == "with_spec":
self.pkg.add_with(
p.get("pkg", "Missing package name in <extra>"),
do_use=p.get("use", "true").lower() == "true")
elif p.tag == "with_body":
self.pkg.add_with(
p.get("pkg"), specs=False,
do_use=p.get("use", "true").lower() == "true")
elif p.tag == "type":
naming.add_type_exception(
cname=p.get("ctype"),
type=Proxy(p.get("ada"), p.get("properties", None)))
section.add(p.text)
elif p.tag == "body":
if p.get("before", "true").lower() == "true":
section.add(p.text, in_spec=False)
self._constructors()
self._method_get_type()
self._methods()
if extra:
s = None
for p in extra:
if p.tag == "spec":
if p.get("private", "False").lower() == "true":
self.pkg.add_private(p.text, at_end=True)
else:
s = s or self.pkg.section("GtkAda additions")
s.add(p.text)
elif p.tag == "body" \
and p.get("before", "true").lower() != "true":
s.add(p.text, in_spec=False)
self._functions()
self._globals()
self._fields()
self._virtual_methods()
if not into and self.name != "Gtk.Widget":
self._implements()
self._properties()
self._signals()
parser = OptionParser()
parser.add_option(
"--gir-file",
help="input GTK .gir file",
action="append",
dest="gir_file",
metavar="FILE")
parser.add_option(
"--xml-file",
help="input GtkAda binding.xml file",
dest="xml_file",
metavar="FILE")
parser.add_option(
"--ada-output",
help="Ada language output file",
dest="ada_outfile",
metavar="FILE")
parser.add_option(
"--c-output",
help="C language output file",
dest="c_outfile",
metavar="FILE")
(options, args) = parser.parse_args()
missing_files = []
if options.gir_file is None:
missing_files.append("GIR file")
if options.xml_file is None:
missing_files.append("binding.xml file")
if options.ada_outfile is None:
missing_files.append("Ada output file")
if options.c_outfile is None:
missing_files.append("C output file")
if missing_files:
parser.error('Must specify files:\n\t' + ', '.join(missing_files))
gtkada = GtkAda(options.xml_file)
gir = GIR(options.gir_file)
Package.copyright_header = \
"""------------------------------------------------------------------------------
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2018, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or (at your option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
"""
gir.ccode = \
"""/*****************************************************************************
* GtkAda - Ada95 binding for Gtk+/Gnome *
* *
* Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet *
* Copyright (C) 2000-2018, AdaCore *
* *
* This library is free software; you can redistribute it and/or modify it *
* under terms of the GNU General Public License as published by the Free *
* Software Foundation; either version 3, or (at your option) any later *
* version. This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- *
* TABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* *
* *
* *
* *
* You should have received a copy of the GNU General Public License and *
* a copy of the GCC Runtime Library Exception along with this program; *
* see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
* <http://www.gnu.org/licenses/>. *
*
*****************************************************************************
This file is automatically generated from the .gir files
*/
#include <gtk/gtk.h>
"""
for the_ctype in enums:
node = Element(
nclass,
{ctype_qname: the_ctype})
root = Element(nclass)
cl = gir._create_class(rootNode=root, node=node,
identifier_prefix='',
is_interface=False,
is_gobject=False,
has_toplevel_type=False)
cl.generate(gir)
for name in interfaces:
if name.startswith("--"):
gir.bound.add(name[2:])
continue
gir.interfaces[name].generate(gir)
gir.bound.add(name)
for the_ctype in binding:
if the_ctype.startswith("--"):
gir.bound.add(the_ctype[2:])
continue
try:
e = gir.classes[the_ctype]
except KeyError:
cl = gtkada.get_pkg(the_ctype)
if not cl:
raise
node = Element(nclass, {ctype_qname: the_ctype})
e = gir.classes[the_ctype] = gir._create_class(
rootNode=root, node=node, is_interface=False,
identifier_prefix='')
e.generate(gir)
gir.bound.add(the_ctype)
out = file(options.ada_outfile, "w")
cout = file(options.c_outfile, "w")
gir.generate(out, cout)
gir.show_unbound()
|