1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939
|
#lang racket/base
(require (for-syntax racket/base)
(only-in racket/list remove-duplicates)
racket/stxparam
racket/unsafe/ops
"serialize-structs.rkt"
"class-wrapped.rkt"
racket/runtime-path
(only-in "../contract/region.rkt" current-contract-region)
"../contract/base.rkt"
"../contract/combinator.rkt"
racket/unsafe/undefined
"class-undef.rkt"
(for-syntax racket/stxparam
racket/private/immediate-default
syntax/kerncase
syntax/stx
syntax/name
syntax/define
syntax/flatten-begin
syntax/private/boundmap
syntax/parse
"classidmap.rkt"
"intdef-util.rkt"))
(define insp (current-inspector)) ; for all opaque structures
;;--------------------------------------------------------------------
;; spec for external interface
;;--------------------------------------------------------------------
(provide provide-public-names
;; needed for Typed Racket
(protect-out do-make-object find-method/who))
(define-syntax (provide-public-names stx)
(class-syntax-protect
(datum->syntax
stx
'(provide class class* class/derived
define-serializable-class define-serializable-class*
class?
mixin
interface interface* interface?
object% object? externalizable<%> printable<%> writable<%> equal<%>
object=? object-or-false=? object=-hash-code
new make-object instantiate
send send/apply send/keyword-apply send* send+ dynamic-send
class-field-accessor class-field-mutator with-method
get-field set-field! field-bound? field-names
dynamic-get-field dynamic-set-field!
private* public* pubment*
override* overment*
augride* augment*
public-final* override-final* augment-final*
define/private define/public define/pubment
define/override define/overment
define/augride define/augment
define/public-final define/override-final define/augment-final
define-local-member-name define-member-name
member-name-key generate-member-key
member-name-key? member-name-key=? member-name-key-hash-code
generic make-generic send-generic
is-a? subclass? implementation? interface-extension?
object-interface object-info object->vector
object-method-arity-includes?
method-in-interface? interface->method-names class->interface class-info
(struct-out exn:fail:object)
make-primitive-class
class/c ->m ->*m ->dm case->m object/c instanceof/c
dynamic-object/c
class-seal class-unseal
;; "keywords":
private public override augment
pubment overment augride
public-final override-final augment-final
field init init-field init-rest
rename-super rename-inner inherit inherit/super inherit/inner inherit-field
this this% super inner
super-make-object super-instantiate super-new
inspect absent abstract)
stx)))
;;--------------------------------------------------------------------
;; keyword setup
;;--------------------------------------------------------------------
(define-for-syntax (do-class-keyword stx orig-sym)
(let ([orig-stx (datum->syntax #f orig-sym stx)])
(if (identifier? stx)
(raise-syntax-error
#f
"illegal (unparenthesized) use of a class keyword"
orig-stx)
(raise-syntax-error
#f
"use of a class keyword is not in a class top-level"
orig-stx))))
(define-for-syntax (rewrite-renaming-class-keyword stx internal-id)
(syntax-case stx ()
[(_ elem ...)
;; Set taint mode on elem ...
(with-syntax ([internal-id internal-id]
[(elem ...) (for/list ([e (in-list (syntax->list #'(elem ...)))])
(if (identifier? e)
e
(syntax-property e 'taint-mode 'transparent)))])
(class-syntax-protect
(syntax-property (syntax/loc stx (internal-id elem ...))
'taint-mode
'transparent)))]))
(define-syntax provide-renaming-class-keyword
(syntax-rules ()
[(_ [id internal-id] ...)
(begin
(define-syntax (id stx) (rewrite-renaming-class-keyword stx #'internal-id))
...
(define-syntax (internal-id stx) (do-class-keyword stx 'id))
...
(provide id ...))]))
(provide-renaming-class-keyword [private -private]
[public -public]
[override -override]
[augride -augride]
[pubment -pubment]
[overment -overment]
[augment -augment]
[public-final -public-final]
[override-final -override-final]
[augment-final -augment-final]
[rename-super -rename-super]
[rename-inner -rename-inner]
[inherit -inherit]
[inherit-field -inherit-field]
[inherit/super -inherit/super]
[inherit/inner -inherit/inner]
[abstract -abstract])
(define-for-syntax (rewrite-naming-class-keyword stx internal-id)
(syntax-case stx ()
[(_ elem ...)
(with-syntax ([internal-id internal-id])
(class-syntax-protect
(syntax-property (syntax/loc stx (internal-id elem ...))
'taint-mode
'transparent)))]))
(define-syntax provide-naming-class-keyword
(syntax-rules ()
[(_ [id internal-id] ...)
(begin
(define-syntax (id stx) (rewrite-naming-class-keyword stx #'internal-id))
...
(define-syntax (internal-id stx) (do-class-keyword stx 'id))
...
(provide id ...))]))
(provide-naming-class-keyword [inspect -inspect]
[init-rest -init-rest])
;; Going ahead and doing this in a generic fashion, in case we later realize that
;; we need more class contract-specific keywords.
(define-for-syntax (do-class-contract-keyword stx)
(raise-syntax-error
#f
"use of a class contract keyword is not in a class contract"
stx))
(define-syntax provide-class-contract-keyword
(syntax-rules ()
[(_ id ...)
(begin
(define-syntax (id stx) (do-class-contract-keyword stx))
...
(provide id ...))]))
(provide-class-contract-keyword absent)
(define-for-syntax (do-define-like-internal stx)
(syntax-case stx ()
[(_ orig . __)
(raise-syntax-error
#f
"use of a class keyword is not in a class top-level"
#'orig)]))
(define-for-syntax (do-define-like stx internal-id)
(syntax-case stx ()
[(_ elem ...)
(syntax-property
#`(#,internal-id #,stx
#,@(map (lambda (e)
(if (identifier? e)
e
(syntax-property
(syntax-case e ()
[((n1 n2) . expr)
(syntax-property
(quasisyntax/loc e
(#,(syntax-property
#'(n1 n2)
'certify-mode 'transparent)
. expr))
'certify-mode 'transparent)]
[(n . expr)
(identifier? #'n)
(syntax-property e 'certify-mode 'transparent)]
[_else e])
'certify-mode 'transparent)))
(syntax-e #'(elem ...))))
'certify-mode
'transparent)]
[(_ . elems)
#`(#,internal-id #,stx . elems)]
[_else
(raise-syntax-error #f "illegal (unparenthesized) use of class keyword" stx)]))
(define-syntax provide-class-define-like-keyword
(syntax-rules ()
[(_ [internal-id id] ...)
(begin
(define-syntax (internal-id stx) (do-define-like-internal stx))
...
(define-syntax (id stx) (do-define-like stx #'internal-id))
...
(provide id ...))]))
(provide-class-define-like-keyword
[-field field]
[-init init]
[-init-field init-field])
(define-for-syntax not-in-a-class
(lambda (stx)
(if (eq? (syntax-local-context) 'expression)
(raise-syntax-error
#f
"use of a class keyword is not in a class"
stx)
(quasisyntax/loc stx (#%expression #,stx)))))
(define-syntax define/provide-context-keyword
(syntax-rules ()
[(_ (id param-id) ...)
(begin
(begin
(provide id)
(define-syntax-parameter param-id
(make-set!-transformer not-in-a-class))
(define-syntax id
(make-parameter-rename-transformer #'param-id)))
...)]))
(define/provide-context-keyword
[this this-param]
[this% this%-param]
[super super-param]
[inner inner-param]
[super-make-object super-make-object-param]
[super-instantiate super-instantiate-param]
[super-new super-new-param])
;;--------------------------------------------------------------------
;; local member name lookup
;;--------------------------------------------------------------------
(define-for-syntax (localize orig-id)
(do-localize orig-id #'validate-local-member))
(define (validate-local-member orig s)
(if (symbol? s)
s
(obj-error 'local-member-name
"used before its definition"
"name" (as-write orig))))
;;--------------------------------------------------------------------
;; field info creation/access
;;--------------------------------------------------------------------
;; A field-info is a (vector iref iset eref eset)
;; where
;; iref, iset, eref, and eset are projections to be applied
;; on internal and external access and mutation.
;; make-field-info creates a new field-info for a field.
;; The caller gives the class and relative position (in the
;; new object struct layer), and this function fills
;; in the projections.
(define (make-field-info cls rpos)
(let ([field-ref (make-struct-field-accessor (class-field-ref cls) rpos)]
[field-set! (make-struct-field-mutator (class-field-set! cls) rpos)])
(vector field-ref field-set! field-ref field-set!)))
(define (field-info-extend-internal fi ppos pneg neg-party)
(let* ([old-ref (unsafe-vector-ref fi 0)]
[old-set! (unsafe-vector-ref fi 1)])
(vector (λ (o) (ppos (old-ref o) neg-party))
(λ (o v) (old-set! o (pneg v neg-party)))
(unsafe-vector-ref fi 2)
(unsafe-vector-ref fi 3))))
(define (field-info-extend-external fi ppos pneg neg-party)
(let* ([old-ref (unsafe-vector-ref fi 2)]
[old-set! (unsafe-vector-ref fi 3)])
(vector (unsafe-vector-ref fi 0)
(unsafe-vector-ref fi 1)
(λ (o) (ppos (old-ref o) neg-party))
(λ (o v) (old-set! o (pneg v neg-party))))))
(define (field-info-internal-ref fi) (unsafe-vector-ref fi 0))
(define (field-info-internal-set! fi) (unsafe-vector-ref fi 1))
(define (field-info-external-ref fi) (unsafe-vector-ref fi 2))
(define (field-info-external-set! fi) (unsafe-vector-ref fi 3))
;;--------------------------------------------------------------------
;; class macros
;;--------------------------------------------------------------------
(define-syntaxes (class* _class class/derived)
(let ()
;; Start with Helper functions
(define (expand-all-forms stx defn-and-exprs def-ctx bind-local-id)
(let* ([stop-forms
(append
(kernel-form-identifier-list)
(list
(quote-syntax #%app) ; racket/base app, as opposed to #%plain-app
(quote-syntax lambda) ; racket/base lambda, as opposed to #%plain-lambda
(quote-syntax -init)
(quote-syntax -init-rest)
(quote-syntax -field)
(quote-syntax -init-field)
(quote-syntax -inherit-field)
(quote-syntax -private)
(quote-syntax -public)
(quote-syntax -override)
(quote-syntax -augride)
(quote-syntax -public-final)
(quote-syntax -override-final)
(quote-syntax -augment-final)
(quote-syntax -pubment)
(quote-syntax -overment)
(quote-syntax -augment)
(quote-syntax -rename-super)
(quote-syntax -inherit)
(quote-syntax -inherit/super)
(quote-syntax -inherit/inner)
(quote-syntax -rename-inner)
(quote-syntax -abstract)
(quote-syntax super)
(quote-syntax inner)
(quote-syntax this)
(quote-syntax this%)
(quote-syntax super-instantiate)
(quote-syntax super-make-object)
(quote-syntax super-new)
(quote-syntax -inspect)))]
[expand-context (generate-class-expand-context)]
[expand
(lambda (defn-or-expr)
(local-expand
defn-or-expr
expand-context
stop-forms
def-ctx))])
(let loop ([l defn-and-exprs])
(if (null? l)
null
(let ([e (expand (car l))])
(define (copy-prop stx . ps) (for/fold ([stx stx])
([p ps])
(syntax-property stx p (syntax-property e p))))
(syntax-case e (begin define-syntaxes define-values)
[(begin . _)
(loop (append
(flatten-begin e)
(cdr l)))]
[(define-syntaxes (id ...) rhs)
(andmap identifier? (syntax->list #'(id ...)))
(begin
(with-syntax ([rhs (local-transformer-expand
#'rhs
'expression
null)])
(syntax-local-bind-syntaxes (syntax->list #'(id ...)) #'rhs def-ctx)
(with-syntax ([(id ...) (map syntax-local-identifier-as-binding
(syntax->list #'(id ...)))])
(cons (copy-prop (syntax/loc e (define-syntaxes (id ...) rhs))
'disappeared-use 'origin 'disappeared-binding)
(loop (cdr l))))))]
[(define-values (id ...) rhs)
(andmap identifier? (syntax->list #'(id ...)))
(let ([ids (map bind-local-id (syntax->list #'(id ...)))])
(with-syntax ([(id ...) ids])
(cons (datum->syntax e (list #'define-values #'(id ...) #'rhs) e e)
(loop (cdr l)))))]
[_else
(cons e (loop (cdr l)))]))))))
;; returns two lists: expressions that start with an identifier in
;; `kws', and expressions that don't
(define (extract kws l out-cons)
(let loop ([l l])
(if (null? l)
(values null null)
(let-values ([(in out) (loop (cdr l))])
(cond
[(and (stx-pair? (car l))
(let ([id (stx-car (car l))])
(and (identifier? id)
(ormap (lambda (k) (free-identifier=? k id)) kws))))
(values (cons (car l) in) out)]
[else
(values in (out-cons (car l) out))])))))
(define (extract* kws l)
(let-values ([(in out) (extract kws l void)])
in))
(define (flatten alone l)
(apply append
(map (lambda (i)
(let ([l (let ([l (syntax->list i)])
(if (ormap (lambda (i)
(free-identifier=? (car l) i))
(syntax-e (quote-syntax (-init -init-field -field))))
(cddr l)
(cdr l)))])
(if alone
(map (lambda (i)
(if (identifier? i)
(alone (syntax-local-identifier-as-binding i))
(cons (syntax-local-identifier-as-binding (stx-car i))
(syntax-local-identifier-as-binding (stx-car (stx-cdr i))))))
l)
l)))
l)))
;; Used with flatten:
(define (pair i) (cons i i))
(define (normalize-init/field i)
;; Put i in ((iid eid) optional-expr) form
(cond
[(identifier? i) (list (list i i))]
[else (let ([a (stx-car i)])
(if (identifier? a)
(cons (list a a) (stx-cdr i))
i))]))
(define (norm-init/field-iid norm) (syntax-local-identifier-as-binding (stx-car (stx-car norm))))
(define (norm-init/field-eid norm) (syntax-local-identifier-as-binding (stx-car (stx-cdr (stx-car norm)))))
;; expands an expression enough that we can check whether it has
;; the right form for a method; must use local syntax definitions
(define (proc-shape name orig-stx xform?
the-obj the-finder
bad class-name expand-stop-names
def-ctx lookup-localize)
(define (expand expr locals)
(local-expand
expr
'expression
(append locals (list #'lambda #'λ) expand-stop-names)
def-ctx))
;; Checks whether the vars sequence is well-formed
(define (vars-ok? vars)
(or (identifier? vars)
(stx-null? vars)
(and (stx-pair? vars)
(identifier? (stx-car vars))
(vars-ok? (stx-cdr vars)))))
(define (kw-vars-ok? vars)
(or (identifier? vars)
(stx-null? vars)
(and (stx-pair? vars)
(let ([a (stx-car vars)]
[opt-arg-ok?
(lambda (a)
(or (identifier? a)
(and (stx-pair? a)
(identifier? (stx-car a))
(stx-pair? (stx-cdr a))
(stx-null? (stx-cdr (stx-cdr a))))))])
(or (and (opt-arg-ok? a)
(kw-vars-ok? (stx-cdr vars)))
(and (keyword? (syntax-e a))
(stx-pair? (stx-cdr vars))
(opt-arg-ok? (stx-car (stx-cdr vars)))
(kw-vars-ok? (stx-cdr (stx-cdr vars)))))))))
;; mk-name: constructs a method name
;; for error reporting, etc.
(define (mk-name name)
(datum->syntax
#f
(string->symbol (format "~a method~a~a"
(syntax-e name)
(if class-name
" in "
"")
(or class-name
"")))
#f))
;; -- transform loop starts here --
(let loop ([stx orig-stx][can-expand? #t][name name][locals null])
(syntax-case (disarm stx) (#%plain-lambda lambda λ case-lambda letrec-values let-values)
[(lam vars body1 body ...)
(or (and (free-identifier=? #'lam #'#%plain-lambda)
(vars-ok? (syntax vars)))
(and (or (free-identifier=? #'lam #'lambda)
(free-identifier=? #'lam #'λ))
(kw-vars-ok? (syntax vars))))
(if xform?
(with-syntax ([the-obj the-obj]
[the-finder the-finder]
[name (mk-name name)])
(with-syntax ([vars (if (or (free-identifier=? #'lam #'lambda)
(free-identifier=? #'lam #'λ))
(let loop ([vars #'vars])
(cond
[(identifier? vars) vars]
[(syntax? vars)
(datum->syntax vars
(loop (syntax-e vars))
vars
vars)]
[(pair? vars)
(syntax-case (car vars) ()
[(id expr)
(and (identifier? #'id) (not (immediate-default? #'expr)))
;; optional argument; need to wrap arg expression
(cons
(with-syntax ([expr (syntax/loc #'expr
(syntax-parameterize ([the-finder (quote-syntax the-obj)])
(#%expression expr)))])
(syntax/loc (car vars)
(id expr)))
(loop (cdr vars)))]
[_ (cons (car vars) (loop (cdr vars)))])]
[else vars]))
#'vars)])
(let ([l (syntax/loc stx
(lambda (the-obj . vars)
(syntax-parameterize ([the-finder (quote-syntax the-obj)])
body1 body ...)))])
(syntax-track-origin
(with-syntax ([l (rearm (add-method-property l) stx)])
(syntax/loc stx
(let ([name l]) name)))
stx
(syntax-local-introduce #'lam)))))
stx)]
[(#%plain-lambda . _)
(bad "ill-formed lambda expression for method" stx)]
[(lambda . _)
(bad "ill-formed lambda expression for method" stx)]
[(λ . _)
(bad "ill-formed lambda expression for method" stx)]
[(case-lam [vars body1 body ...] ...)
(and (free-identifier=? #'case-lam #'case-lambda)
(andmap vars-ok? (syntax->list (syntax (vars ...)))))
(if xform?
(with-syntax ([the-obj the-obj]
[the-finder the-finder]
[name (mk-name name)])
(let ([cl (syntax/loc stx
(case-lambda [(the-obj . vars)
(syntax-parameterize ([the-finder (quote-syntax the-obj)])
body1 body ...)] ...))])
(syntax-track-origin
(with-syntax ([cl (rearm (add-method-property cl) stx)])
(syntax/loc stx
(let ([name cl]) name)))
stx
(syntax-local-introduce #'case-lam))))
stx)]
[(case-lambda . _)
(bad "ill-formed case-lambda expression for method" stx)]
[(let- ([(id) expr] ...) let-body)
(and (or (free-identifier=? (syntax let-)
(quote-syntax let-values))
(free-identifier=? (syntax let-)
(quote-syntax letrec-values)))
(andmap identifier? (syntax->list (syntax (id ...)))))
(let* ([letrec? (free-identifier=? (syntax let-)
(quote-syntax letrec-values))]
[ids (syntax->list (syntax (id ...)))]
[new-ids (if xform?
(map
(lambda (id)
(datum->syntax
#f
(gensym (syntax-e id))))
ids)
ids)]
[body-locals (append ids locals)]
[exprs (map (lambda (expr id)
(loop expr #t id (if letrec?
body-locals
locals)))
(syntax->list (syntax (expr ...)))
ids)]
[body (let ([body (syntax let-body)])
(if (identifier? body)
(ormap (lambda (id new-id)
(and (bound-identifier=? body id)
new-id))
ids new-ids)
(loop body #t name body-locals)))])
(unless body
(bad "bad form for method definition" orig-stx))
(with-syntax ([(proc ...) exprs]
[(new-id ...) new-ids]
[mappings
(if xform?
(map
(lambda (old-id new-id)
(with-syntax ([old-id old-id]
[old-id-localized (lookup-localize (localize old-id))]
[new-id new-id]
[the-obj the-obj]
[the-finder the-finder])
(syntax (old-id (make-direct-method-map
(quote-syntax the-finder)
(quote the-obj)
(quote-syntax old-id)
(quote-syntax old-id-localized)
(quote new-id))))))
ids new-ids)
null)]
[body body])
(syntax-track-origin
(rearm
(if xform?
(if letrec?
(syntax/loc stx (letrec-syntax mappings
(let- ([(new-id) proc] ...)
body)))
(syntax/loc stx (let- ([(new-id) proc] ...)
(letrec-syntax mappings
body))))
(syntax/loc stx (let- ([(new-id) proc] ...)
body)))
stx)
stx
(syntax-local-introduce #'let-))))]
[(-#%app -chaperone-procedure expr . rst)
(and (free-identifier=? (syntax -#%app)
(quote-syntax #%plain-app))
(free-identifier=? (syntax -chaperone-procedure)
(quote-syntax chaperone-procedure)))
(with-syntax ([expr (loop #'expr #t name locals)])
(syntax-track-origin
(rearm
(syntax/loc stx (-#%app -chaperone-procedure expr . rst))
stx)
stx
(syntax-local-introduce #'-#%app)))]
[_else
(if can-expand?
(loop (expand stx locals) #f name locals)
(bad "bad form for method definition" orig-stx))])))
(define (add-method-property l)
(syntax-property l 'method-arity-error #t))
;; `class' wants to be priviledged with respect to
;; syntax taints: save the declaration-time inspector and use it
;; to disarm syntax taints
(define method-insp (variable-reference->module-declaration-inspector
(#%variable-reference)))
(define (disarm stx)
(syntax-disarm stx method-insp))
(define (rearm new old)
(syntax-rearm new old))
;; --------------------------------------------------------------------------------
;; Start here:
(define (main stx super-expr deserialize-id-expr name-id interface-exprs defn-and-exprs)
(let-values ([(this-id) #'this-id]
[(the-obj) (datum->syntax (quote-syntax here) (gensym 'self))]
[(the-finder) (datum->syntax #f (gensym 'find-self))])
(let* ([def-ctx (syntax-local-make-definition-context)]
[localized-map (make-bound-identifier-mapping)]
[any-localized? #f]
[localize/set-flag (lambda (id)
(let ([id2 (localize id)])
(unless (eq? id id2)
(set! any-localized? #t))
id2))]
[bind-local-id (lambda (orig-id)
(let ([l (localize/set-flag orig-id)]
[id (syntax-local-identifier-as-binding orig-id)])
(syntax-local-bind-syntaxes (list id) #f def-ctx)
(bound-identifier-mapping-put!
localized-map
id
l)
id))]
[lookup-localize (lambda (id)
(bound-identifier-mapping-get
localized-map
id
(lambda ()
;; If internal & external names are distinguished,
;; we need to fall back to localize:
(localize id))))])
;; ----- Expand definitions -----
(let ([defn-and-exprs (expand-all-forms stx defn-and-exprs def-ctx bind-local-id)]
[bad (lambda (msg expr)
(raise-syntax-error #f msg stx expr))]
[class-name (if name-id
(syntax-e name-id)
(let ([s (syntax-local-infer-name stx)])
(if (syntax? s)
(syntax-e s)
s)))])
;; ------ Basic syntax checks -----
(for-each (lambda (stx)
(syntax-case stx (-init -init-rest -field -init-field -inherit-field
-private -public -override -augride
-public-final -override-final -augment-final
-pubment -overment -augment
-rename-super -inherit -inherit/super -inherit/inner -rename-inner
-abstract
-inspect)
[(form orig idp ...)
(and (identifier? (syntax form))
(or (free-identifier=? (syntax form) (quote-syntax -init))
(free-identifier=? (syntax form) (quote-syntax -init-field))))
(let ([form (syntax-e (stx-car (syntax orig)))])
(for-each
(lambda (idp)
(syntax-case idp ()
[id (identifier? (syntax id)) 'ok]
[((iid eid)) (and (identifier? (syntax iid))
(identifier? (syntax eid))) 'ok]
[(id expr) (identifier? (syntax id)) 'ok]
[((iid eid) expr) (and (identifier? (syntax iid))
(identifier? (syntax eid))) 'ok]
[else
(bad
(format
"~a element is not an optionally renamed identifier or identifier-expression pair"
form)
idp)]))
(syntax->list (syntax (idp ...)))))]
[(-inspect expr)
'ok]
[(-inspect . rest)
(bad "ill-formed inspect clause" stx)]
[(-init orig . rest)
(bad "ill-formed init clause" #'orig)]
[(-init-rest)
'ok]
[(-init-rest rest)
(identifier? (syntax rest))
'ok]
[(-init-rest . rest)
(bad "ill-formed init-rest clause" stx)]
[(-init-field orig . rest)
(bad "ill-formed init-field clause" #'orig)]
[(-field orig idp ...)
(for-each (lambda (idp)
(syntax-case idp ()
[(id expr) (identifier? (syntax id)) 'ok]
[((iid eid) expr) (and (identifier? (syntax iid))
(identifier? (syntax eid)))
'ok]
[else
(bad
"field element is not an optionally renamed identifier-expression pair"
idp)]))
(syntax->list (syntax (idp ...))))]
[(-field orig . rest)
(bad "ill-formed field clause" #'orig)]
[(-private id ...)
(for-each
(lambda (id)
(unless (identifier? id)
(bad "private element is not an identifier" id)))
(syntax->list (syntax (id ...))))]
[(-private . rest)
(bad "ill-formed private clause" stx)]
[(-abstract id ...)
(for-each
(lambda (id)
(unless (identifier? id)
(bad "abstract element is not an identifier" id)))
(syntax->list (syntax (id ...))))]
[(-abstract . rest)
(bad "ill-formed abstract clause" stx)]
[(form idp ...)
(and (identifier? (syntax form))
(ormap (lambda (f) (free-identifier=? (syntax form) f))
(syntax-e (quote-syntax (-public
-override
-augride
-public-final
-override-final
-augment-final
-pubment
-overment
-augment
-inherit
-inherit/super
-inherit/inner
-inherit-field)))))
(let ([form (syntax-e (syntax form))])
(for-each
(lambda (idp)
(syntax-case idp ()
[id (identifier? (syntax id)) 'ok]
[(iid eid) (and (identifier? (syntax iid)) (identifier? (syntax eid))) 'ok]
[else
(bad
(format
"~a element is not an identifier or pair of identifiers"
form)
idp)]))
(syntax->list (syntax (idp ...)))))]
[(-public . rest)
(bad "ill-formed public clause" stx)]
[(-override . rest)
(bad "ill-formed override clause" stx)]
[(-augride . rest)
(bad "ill-formed augride clause" stx)]
[(-public-final . rest)
(bad "ill-formed public-final clause" stx)]
[(-override-final . rest)
(bad "ill-formed override-final clause" stx)]
[(-augment-final . rest)
(bad "ill-formed augment-final clause" stx)]
[(-pubment . rest)
(bad "ill-formed pubment clause" stx)]
[(-overment . rest)
(bad "ill-formed overment clause" stx)]
[(-augment . rest)
(bad "ill-formed augment clause" stx)]
[(-inherit . rest)
(bad "ill-formed inherit clause" stx)]
[(-inherit/super . rest)
(bad "ill-formed inherit/super clause" stx)]
[(-inherit/inner . rest)
(bad "ill-formed inherit/inner clause" stx)]
[(-inherit-field . rest)
(bad "ill-formed inherit-field clause" stx)]
[(kw idp ...)
(and (identifier? #'kw)
(or (free-identifier=? #'-rename-super #'kw)
(free-identifier=? #'-rename-inner #'kw)))
(for-each
(lambda (idp)
(syntax-case idp ()
[(iid eid) (and (identifier? (syntax iid)) (identifier? (syntax eid))) 'ok]
[else
(bad
(format "~a element is not a pair of identifiers" (syntax-e #'kw))
idp)]))
(syntax->list (syntax (idp ...))))]
[(-rename-super . rest)
(bad "ill-formed rename-super clause" stx)]
[(-rename-inner . rest)
(bad "ill-formed rename-inner clause" stx)]
[_ 'ok]))
defn-and-exprs)
;; ----- Sort body into different categories -----
(let*-values ([(decls exprs)
(extract (syntax-e (quote-syntax (-inherit-field
-private
-public
-override
-augride
-public-final
-override-final
-augment-final
-pubment
-overment
-augment
-rename-super
-inherit
-inherit/super
-inherit/inner
-abstract
-rename-inner)))
defn-and-exprs
cons)]
[(inspect-decls exprs)
(extract (list (quote-syntax -inspect))
exprs
cons)]
[(plain-inits)
;; Normalize after, but keep un-normal for error reporting
(flatten #f (extract* (syntax-e
(quote-syntax (-init -init-rest)))
exprs))]
[(normal-plain-inits) (map normalize-init/field plain-inits)]
[(init-rest-decls _)
(extract (list (quote-syntax -init-rest))
exprs
void)]
[(inits)
(flatten #f (extract* (syntax-e
(quote-syntax (-init -init-field)))
exprs))]
[(normal-inits)
(map normalize-init/field inits)]
[(plain-fields)
(flatten #f (extract* (list (quote-syntax -field)) exprs))]
[(normal-plain-fields)
(map normalize-init/field plain-fields)]
[(plain-init-fields)
(flatten #f (extract* (list (quote-syntax -init-field)) exprs))]
[(normal-plain-init-fields)
(map normalize-init/field plain-init-fields)]
[(inherit-fields)
(flatten pair (extract* (list (quote-syntax -inherit-field)) decls))]
[(privates)
(flatten pair (extract* (list (quote-syntax -private)) decls))]
[(publics)
(flatten pair (extract* (list (quote-syntax -public)) decls))]
[(overrides)
(flatten pair (extract* (list (quote-syntax -override)) decls))]
[(augrides)
(flatten pair (extract* (list (quote-syntax -augride)) decls))]
[(public-finals)
(flatten pair (extract* (list (quote-syntax -public-final)) decls))]
[(override-finals)
(flatten pair (extract* (list (quote-syntax -override-final)) decls))]
[(pubments)
(flatten pair (extract* (list (quote-syntax -pubment)) decls))]
[(overments)
(flatten pair (extract* (list (quote-syntax -overment)) decls))]
[(augments)
(flatten pair (extract* (list (quote-syntax -augment)) decls))]
[(augment-finals)
(flatten pair (extract* (list (quote-syntax -augment-final)) decls))]
[(rename-supers)
(flatten pair (extract* (list (quote-syntax -rename-super)) decls))]
[(inherits)
(flatten pair (extract* (list (quote-syntax -inherit)) decls))]
[(inherit/supers)
(flatten pair (extract* (list (quote-syntax -inherit/super)) decls))]
[(inherit/inners)
(flatten pair (extract* (list (quote-syntax -inherit/inner)) decls))]
[(abstracts)
(flatten pair (extract* (list (quote-syntax -abstract)) decls))]
[(rename-inners)
(flatten pair (extract* (list (quote-syntax -rename-inner)) decls))])
;; At most one inspect:
(unless (or (null? inspect-decls)
(null? (cdr inspect-decls)))
(bad "multiple inspect clauses" (cadr inspect-decls)))
;; At most one init-rest:
(unless (or (null? init-rest-decls)
(null? (cdr init-rest-decls)))
(bad "multiple init-rest clauses" (cadr init-rest-decls)))
;; Make sure init-rest is last
(unless (null? init-rest-decls)
(let loop ([l exprs] [saw-rest? #f])
(unless (null? l)
(cond
[(and (stx-pair? (car l))
(identifier? (stx-car (car l))))
(let ([form (stx-car (car l))])
(cond
[(free-identifier=? #'-init-rest form)
(loop (cdr l) #t)]
[(not saw-rest?) (loop (cdr l) #f)]
[(free-identifier=? #'-init form)
(bad "init clause follows init-rest clause" (stx-car (stx-cdr (car l))))]
[(free-identifier=? #'-init-field form)
(bad "init-field clause follows init-rest clause" (stx-car (stx-cdr (car l))))]
[else (loop (cdr l) #t)]))]
[else (loop (cdr l) saw-rest?)]))))
;; --- Check initialization on inits: ---
(let loop ([inits inits] [normal-inits normal-inits])
(unless (null? normal-inits)
(if (stx-null? (stx-cdr (car normal-inits)))
(loop (cdr inits)(cdr normal-inits))
(let loop ([inits (cdr inits)] [normal-inits (cdr normal-inits)])
(unless (null? inits)
(if (stx-null? (stx-cdr (car normal-inits)))
(bad "initializer without default follows an initializer with default"
(car inits))
(loop (cdr inits) (cdr normal-inits))))))))
;; ----- Extract method definitions; check that they look like procs -----
;; Optionally transform them, can expand even if not transforming.
(let* ([field-names (map norm-init/field-iid
(append normal-plain-fields normal-plain-init-fields))]
[inherit-field-names (map car inherit-fields)]
[plain-init-names (map norm-init/field-iid normal-plain-inits)]
[inherit-names (map car inherits)]
[inherit/super-names (map car inherit/supers)]
[inherit/inner-names (map car inherit/inners)]
[abstract-names (map car abstracts)]
[rename-super-names (map car rename-supers)]
[rename-inner-names (map car rename-inners)]
[local-public-dynamic-names (map car (append publics overrides augrides
overments augments
override-finals augment-finals
abstracts))]
[local-public-names (append (map car (append pubments public-finals))
local-public-dynamic-names)]
[local-method-names (append (map car privates) local-public-names)]
[expand-stop-names (append
local-method-names
field-names
inherit-field-names
plain-init-names
inherit-names
inherit/super-names
inherit/inner-names
rename-super-names
rename-inner-names
(kernel-form-identifier-list))])
;; Do the extraction:
(let-values ([(methods ; (listof (cons id stx))
private-methods ; (listof (cons id stx))
exprs ; (listof stx)
stx-defines) ; (listof (cons (listof id) stx))
(let loop ([exprs exprs][ms null][pms null][es null][sd null])
(if (null? exprs)
(values (reverse ms) (reverse pms) (reverse es) (reverse sd))
(syntax-case (car exprs) (define-values define-syntaxes)
[(d-v (id ...) expr)
(free-identifier=? #'d-v #'define-values)
(let ([ids (syntax->list (syntax (id ...)))])
;; Check form:
(for-each (lambda (id)
(unless (identifier? id)
(bad "not an identifier for definition" id)))
ids)
;; method defn? (id in the list of privates/publics/overrides/augrides?)
(if (ormap (lambda (id)
(ormap (lambda (i) (bound-identifier=? i id))
local-method-names))
ids)
;; Yes, it's a method:
(begin
(unless (null? (cdr ids))
(bad "each method variable needs its own definition"
(car exprs)))
(let ([expr
(syntax-track-origin
(proc-shape #f (syntax expr) #f
the-obj the-finder
bad class-name expand-stop-names
def-ctx lookup-localize)
(car exprs)
(syntax-local-introduce #'d-v))]
[public? (ormap (lambda (i)
(bound-identifier=? i (car ids)))
local-public-names)])
(loop (cdr exprs)
(if public?
(cons (cons (car ids) expr) ms)
ms)
(if public?
pms
(cons (cons (car ids) expr) pms))
es
sd)))
;; Non-method defn:
(loop (cdr exprs) ms pms (cons (car exprs) es) sd)))]
[(define-values . _)
(bad "ill-formed definition" (car exprs))]
[(define-syntaxes (id ...) expr)
(let ([ids (syntax->list (syntax (id ...)))])
(for-each (lambda (id) (unless (identifier? id)
(bad "syntax name is not an identifier" id)))
ids)
(loop (cdr exprs) ms pms es (cons (cons ids (car exprs)) sd)))]
[(define-syntaxes . _)
(bad "ill-formed syntax definition" (car exprs))]
[_else
(loop (cdr exprs) ms pms (cons (car exprs) es) sd)])))])
;; ---- Extract all defined names, including field accessors and mutators ---
(let ([defined-syntax-names (apply append (map car stx-defines))]
[defined-method-names (append (map car methods)
(map car private-methods))]
[private-field-names (let loop ([l exprs])
(if (null? l)
null
(syntax-case (car l) (define-values)
[(define-values (id ...) expr)
(append (syntax->list (syntax (id ...)))
(loop (cdr l)))]
[_else (loop (cdr l))])))]
[init-mode (cond
[(null? init-rest-decls) 'normal]
[(stx-null? (stx-cdr (car init-rest-decls))) 'stop]
[else 'list])])
;; -- Look for duplicates --
(let ([dup (check-duplicate-identifier
(append defined-syntax-names
defined-method-names
private-field-names
field-names
inherit-field-names
plain-init-names
inherit-names
inherit/super-names
inherit/inner-names
rename-super-names
rename-inner-names))])
(when dup
(bad "duplicate declared identifier" dup)))
;; -- Could still have duplicates within private/public/override/augride --
(let ([dup (check-duplicate-identifier local-method-names)])
(when dup
(bad "duplicate declared identifier" dup)))
;; -- Check for duplicate external method names, init names, or field names
(let ([check-dup
(lambda (what l)
(let ([ht (make-hasheq)])
(for-each (lambda (id)
(define key (let ([l-id (lookup-localize id)])
(if (identifier? l-id)
(syntax-e l-id)
;; For a given localized id, `lookup-localize`
;; will return the same (eq?) value
l-id)))
(when (hash-ref ht key #f)
(bad (format "duplicate declared external ~a name" what) id))
(hash-set! ht key #t))
l)))])
;; method names
(check-dup "method" (map cdr (append publics overrides augrides
pubments overments augments
public-finals override-finals augment-finals)))
;; inits
(check-dup "init" (map norm-init/field-eid (append normal-inits)))
;; fields
(check-dup "field" (map norm-init/field-eid (append normal-plain-fields normal-plain-init-fields))))
;; -- Check that private/public/override/augride are defined --
;; -- and that abstracts are *not* defined --
(let ([ht (make-hasheq)]
[stx-ht (make-hasheq)])
(for-each
(lambda (defined-name)
(let ([l (hash-ref ht (syntax-e defined-name) null)])
(hash-set! ht (syntax-e defined-name) (cons defined-name l))))
defined-method-names)
(for-each
(lambda (defined-name)
(let ([l (hash-ref stx-ht (syntax-e defined-name) null)])
(hash-set! stx-ht (syntax-e defined-name) (cons defined-name l))))
defined-syntax-names)
(for-each
(lambda (pubovr-name)
(let ([l (hash-ref ht (syntax-e pubovr-name) null)]
[stx-l (hash-ref stx-ht (syntax-e pubovr-name) null)])
(cond ;; defined as value
[(ormap (lambda (i) (bound-identifier=? i pubovr-name)) l)
;; check if abstract and fail if so
(when (memq pubovr-name abstract-names)
(bad "method declared as abstract but was defined"
pubovr-name))]
;; defined as syntax
[(ormap (lambda (i) (bound-identifier=? i pubovr-name)) stx-l)
(bad "method declared but defined as syntax"
pubovr-name)]
;; undefined
[else
(unless (memq pubovr-name abstract-names)
(bad "method declared as concrete but not defined"
pubovr-name))])))
local-method-names))
;; ---- Check that rename-inner doesn't have a non-final decl ---
(unless (null? rename-inners)
(let ([ht (make-hasheq)])
(for-each (lambda (pub)
(hash-set! ht (syntax-e (cdr pub)) #t))
(append publics public-finals overrides override-finals augrides))
(for-each (lambda (inn)
(when (hash-ref ht (syntax-e (cdr inn)) #f)
(bad
"inner method is locally declared as public, override, public-final, override-final, or augride"
(cdr inn))))
rename-inners)))
;; ---- Convert expressions ----
;; Non-method definitions to set!
;; Initializations args access/set!
(let ([exprs (map (lambda (e)
(syntax-case e ()
[(d-v (id ...) expr)
(and (identifier? #'d-v)
(free-identifier=? #'d-v #'define-values))
(let* ([ids (syntax->list #'(id ...))]
[assignment
(if (= 1 (length ids))
;; Special-case single variable in case the RHS
;; uses the name:
(syntax/loc e
(set! id ... (field-initialization-value expr)))
;; General case:
(with-syntax ([(temp ...) (generate-temporaries ids)])
(syntax/loc e
(let-values ([(temp ...) expr])
(set! id (field-initialization-value temp))
...
(void)))))])
(syntax-track-origin assignment e #'d-v))]
[(_init orig idp ...)
(and (identifier? (syntax _init))
(ormap (lambda (it)
(free-identifier=? it (syntax _init)))
(syntax-e (quote-syntax (-init
-init-field)))))
(let* ([norms (map normalize-init/field
(syntax->list (syntax (idp ...))))]
[iids (map norm-init/field-iid norms)]
[exids (map norm-init/field-eid norms)])
(with-syntax ([(id ...) iids]
[(idpos ...) (map localize/set-flag exids)]
[(defval ...)
(map (lambda (norm)
(if (stx-null? (stx-cdr norm))
(syntax #f)
(with-syntax ([defexp (stx-car (stx-cdr norm))])
(syntax (lambda () defexp)))))
norms)]
[class-name class-name]
[wrapper (if (free-identifier=? #'_init #'-init-field)
#'field-initialization-value
#'begin)])
(syntax-track-origin
(syntax/loc e
(begin
(set! id (wrapper (extract-arg 'class-name `idpos init-args defval)))
...))
e
#'_init)))]
[(-fld orig idp ...)
(and (identifier? #'-fld)
(free-identifier=? #'-fld #'-field))
(with-syntax ([(((iid eid) expr) ...)
(map normalize-init/field (syntax->list #'(idp ...)))])
(syntax-track-origin
(syntax/loc e (begin
(set! iid (field-initialization-value expr))
...))
e
#'-fld))]
[(-i-r id/rename)
(and (identifier? #'-i-r)
(free-identifier=? #'-i-r #'-init-rest))
(with-syntax ([n (+ (length plain-inits)
(length plain-init-fields)
-1)]
[id (if (identifier? #'id/rename)
#'id/rename
(stx-car #'id/rename))])
(syntax-track-origin
(syntax/loc e
(set! id (extract-rest-args n init-args)))
e
#'-i-r))]
[(-i-r)
(and (identifier? #'-i-r)
(free-identifier=? #'-i-r #'-init-rest))
(syntax-track-origin (syntax (void)) e #'-i-r)]
[_else e]))
exprs)]
[mk-method-temp
(lambda (id-stx)
(datum->syntax (quote-syntax here)
(gensym (syntax-e id-stx))))]
[rename-super-extras (append overments overrides override-finals inherit/supers)]
[rename-inner-extras (append pubments overments augments inherit/inners)]
[all-rename-inners (append (map car rename-inners)
(generate-temporaries (map car pubments))
(generate-temporaries (map car overments))
(generate-temporaries (map car augments))
(generate-temporaries (map car inherit/inners)))]
[all-inherits (append inherits inherit/supers inherit/inners)]
[definify (lambda (l)
(map bind-local-id l))])
;; ---- set up field and method mappings ----
(with-syntax ([(rename-super-orig ...) (definify (map car rename-supers))]
[(rename-super-orig-localized ...) (map lookup-localize (map car rename-supers))]
[(rename-super-extra-orig ...) (map car rename-super-extras)]
[(rename-super-temp ...) (definify (generate-temporaries (map car rename-supers)))]
[(rename-super-extra-temp ...) (generate-temporaries (map car rename-super-extras))]
[(rename-inner-orig ...) (definify (map car rename-inners))]
[(rename-inner-orig-localized ...) (map lookup-localize (map car rename-inners))]
[(rename-inner-extra-orig ...) (map car rename-inner-extras)]
[(rename-inner-temp ...) (generate-temporaries (map car rename-inners))]
[(rename-inner-extra-temp ...) (generate-temporaries (map car rename-inner-extras))]
[(private-name ...) (map car privates)]
[(private-name-localized ...) (map lookup-localize (map car privates))]
[(private-temp ...) (map mk-method-temp (map car privates))]
[(pubment-name ...) (map car pubments)]
[(pubment-name-localized ...) (map lookup-localize (map car pubments))]
[(pubment-temp ...) (map
mk-method-temp
(map car pubments))]
[(public-final-name ...) (map car public-finals)]
[(public-final-name-localized ...) (map lookup-localize (map car public-finals))]
[(public-final-temp ...) (map
mk-method-temp
(map car public-finals))]
[(method-name ...) (append local-public-dynamic-names
(map car all-inherits))]
[(method-name-localized ...) (map lookup-localize
(append local-public-dynamic-names
(map car all-inherits)))]
[(method-accessor ...) (generate-temporaries
(append local-public-dynamic-names
(map car all-inherits)))]
[(inherit-field-accessor ...) (generate-temporaries
(map (lambda (id)
(format "get-~a"
(syntax-e id)))
inherit-field-names))]
[(inherit-field-mutator ...) (generate-temporaries
(map (lambda (id)
(format "set-~a!"
(syntax-e id)))
inherit-field-names))]
[(inherit-name ...) (definify (map car all-inherits))]
[(inherit-field-name ...) (definify inherit-field-names)]
[(inherit-field-name-localized ...) (map lookup-localize inherit-field-names)]
[(local-field ...) (definify
(append field-names
private-field-names))]
[(local-field-localized ...) (map lookup-localize
(append field-names
private-field-names))]
[(local-field-pos ...) (let loop ([pos 0][l (append field-names
private-field-names)])
(if (null? l)
null
(cons pos (loop (add1 pos) (cdr l)))))]
[(local-field-accessor ...) (generate-temporaries (append field-names private-field-names))]
[(local-field-mutator ...) (generate-temporaries (append field-names private-field-names))]
[(plain-init-name ...) (definify plain-init-names)]
[(plain-init-name-localized ...) (map lookup-localize plain-init-names)]
[(local-plain-init-name ...) (generate-temporaries plain-init-names)])
(let ([mappings
;; make-XXX-map is supplied by private/classidmap.rkt
(with-syntax ([the-obj the-obj]
[the-finder the-finder]
[this-id this-id])
(syntax
([(inherit-field-name ...
local-field ...
rename-super-orig ...
rename-inner-orig ...
method-name ...
private-name ...
public-final-name ...
pubment-name ...)
(values
(make-field-map #t
(quote-syntax the-finder)
(quote the-obj)
(quote-syntax inherit-field-name)
(quote-syntax inherit-field-name-localized)
(quote-syntax inherit-field-accessor)
(quote-syntax inherit-field-mutator))
...
(make-field-map #f
(quote-syntax the-finder)
(quote the-obj)
(quote-syntax local-field)
(quote-syntax local-field-localized)
(quote-syntax local-field-accessor)
(quote-syntax local-field-mutator))
...
(make-rename-super-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax rename-super-orig)
(quote-syntax rename-super-orig-localized)
(quote-syntax rename-super-temp))
...
(make-rename-inner-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax rename-inner-orig)
(quote-syntax rename-inner-orig-localized)
(quote-syntax rename-inner-temp))
...
(make-method-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax method-name)
(quote-syntax method-name-localized)
(quote-syntax method-accessor))
...
(make-direct-method-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax private-name)
(quote-syntax private-name-localized)
(quote private-temp))
...
(make-direct-method-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax public-final-name)
(quote-syntax public-final-name-localized)
(quote public-final-temp))
...
(make-direct-method-map (quote-syntax the-finder)
(quote the-obj)
(quote-syntax pubment-name)
(quote-syntax pubment-name-localized)
(quote pubment-temp))
...)])))]
[extra-init-mappings (syntax
([(plain-init-name ...)
(values
(make-init-error-map (quote-syntax plain-init-name-localized))
...)]))])
(let ([find-method
(lambda (methods)
(lambda (name)
(ormap
(lambda (m)
(and (bound-identifier=? (car m) name)
(with-syntax ([proc (proc-shape (car m) (cdr m) #t
the-obj the-finder
bad class-name expand-stop-names
def-ctx lookup-localize)]
[extra-init-mappings extra-init-mappings])
(syntax
(syntax-parameterize
([super-instantiate-param super-error-map]
[super-make-object-param super-error-map]
[super-new-param super-error-map])
(letrec-syntaxes+values extra-init-mappings ()
proc))))))
methods)))]
[lookup-localize-cdr (lambda (p) (lookup-localize (cdr p)))])
(internal-definition-context-seal def-ctx)
;; ---- build final result ----
(with-syntax ([public-names (map lookup-localize-cdr publics)]
[public-final-names (map lookup-localize-cdr public-finals)]
[override-names (map lookup-localize-cdr overrides)]
[override-final-names (map lookup-localize-cdr override-finals)]
[augride-names (map lookup-localize-cdr augrides)]
[pubment-names (map lookup-localize-cdr pubments)]
[overment-names (map lookup-localize-cdr overments)]
[augment-names (map lookup-localize-cdr augments)]
[augment-final-names (map lookup-localize-cdr augment-finals)]
[(rename-super-name ...) (map lookup-localize-cdr rename-supers)]
[(rename-super-extra-name ...) (map lookup-localize-cdr rename-super-extras)]
[(rename-inner-name ...) (map lookup-localize-cdr rename-inners)]
[(rename-inner-extra-name ...) (map lookup-localize-cdr rename-inner-extras)]
[inherit-names (map lookup-localize-cdr all-inherits)]
[abstract-names (map lookup-localize-cdr abstracts)]
[num-fields (datum->syntax
(quote-syntax here)
(+ (length private-field-names)
(length plain-init-fields)
(length plain-fields)))]
[field-names (map (lambda (norm)
(lookup-localize (norm-init/field-eid norm)))
(append
normal-plain-fields
normal-plain-init-fields))]
[inherit-field-names (map lookup-localize (map cdr inherit-fields))]
[init-names (map (lambda (norm)
(lookup-localize
(norm-init/field-eid norm)))
normal-inits)]
[init-mode init-mode]
[(private-method ...) (map (find-method private-methods) (map car privates))]
[public-methods (map (find-method methods) (map car publics))]
[override-methods (map (find-method methods) (map car (append overments
override-finals
overrides)))]
[augride-methods (map (find-method methods) (map car (append augments
augment-finals
augrides)))]
[(pubment-method ...) (map (find-method methods) (map car pubments))]
[(public-final-method ...) (map (find-method methods) (map car public-finals))]
;; store a dummy method body that should never be called for abstracts
[(abstract-method ...) (map (lambda (abs)
#'(lambda (this . rest)
(obj-error 'class "cannot call abstract method")))
(map car abstracts))]
[mappings mappings]
[exprs exprs]
[the-obj the-obj]
[the-finder the-finder]
[name class-name]
[(stx-def ...) (map cdr stx-defines)]
[super-expression super-expr]
[(interface-expression ...) interface-exprs]
[inspector (if (pair? inspect-decls)
(stx-car (stx-cdr (car inspect-decls)))
#'(current-inspector))]
[deserialize-id-expr deserialize-id-expr]
[private-field-names private-field-names])
(class-syntax-protect
(add-decl-props
def-ctx
(append inspect-decls decls)
(quasisyntax/loc stx
(detect-field-unsafe-undefined
compose-class
'name
super-expression
(list interface-expression ...)
inspector deserialize-id-expr #,any-localized?
;; Field count:
num-fields
;; Field names:
`field-names
`inherit-field-names
`private-field-names ; for undefined-checking property
;; Method names:
`(rename-super-name ... rename-super-extra-name ...)
`(rename-inner-name ... rename-inner-extra-name ...)
`pubment-names
`public-final-names
`public-names
`overment-names
`override-final-names
`override-names
`augment-names
`augment-final-names
`augride-names
`inherit-names
`abstract-names
;; Init arg names (in order)
`init-names
(quote init-mode)
;; Methods (when given needed super-methods, etc.):
#, ;; Attach srcloc (useful for profiling)
(quasisyntax/loc stx
(lambda (local-accessor
local-mutator
inherit-field-accessor ... ; inherit
inherit-field-mutator ...
rename-super-temp ... rename-super-extra-temp ...
rename-inner-temp ... rename-inner-extra-temp ...
method-accessor ...) ; for a local call that needs a dynamic lookup
(define-syntax-parameter the-finder #f)
(let ([local-field-accessor
(make-struct-field-accessor local-accessor local-field-pos #f)]
...
[local-field-mutator
(make-struct-field-mutator local-mutator local-field-pos #f)]
...)
(syntax-parameterize
([this-param (make-this-map (quote-syntax this-id)
(quote-syntax the-finder)
(quote the-obj))]
[this%-param (make-this%-map (quote-syntax (object-ref this))
(quote-syntax the-finder))])
(let-syntaxes
mappings
(syntax-parameterize
([super-param
(lambda (stx)
(syntax-case stx (rename-super-extra-orig ...)
[(_ rename-super-extra-orig . args)
(generate-super-call
stx
(quote-syntax the-finder)
(quote the-obj)
(quote-syntax rename-super-extra-temp)
(syntax args))]
...
[(_ id . args)
(identifier? #'id)
(raise-syntax-error
#f
(string-append
"identifier for super call does not have an override, "
"override-final, overment, or inherit/super declaration")
stx
#'id)]
[_else
(raise-syntax-error
#f
"expected an identifier after the keyword"
stx)]))]
[inner-param
(lambda (stx)
(syntax-case stx (rename-inner-extra-orig ...)
[(_ default-expr rename-inner-extra-orig . args)
(generate-inner-call
stx
(quote-syntax the-finder)
(quote the-obj)
(syntax default-expr)
(quote-syntax rename-inner-extra-temp)
(syntax args))]
...
[(_ default-expr id . args)
(identifier? #'id)
(raise-syntax-error
#f
(string-append
"identifier for inner call does not have a pubment, augment, "
"overment, or inherit/inner declaration")
stx
#'id)]
[(_)
(raise-syntax-error
#f
"expected a default-value expression after the keyword"
stx
#'id)]
[_else
(raise-syntax-error
#f
"expected an identifier after the keyword and default-value expression"
stx)]))])
stx-def ...
(letrec ([private-temp private-method]
...
[pubment-temp pubment-method]
...
[public-final-temp public-final-method]
...)
(values
(list pubment-temp ... public-final-temp ...
abstract-method ... . public-methods)
(list . override-methods)
(list . augride-methods)
;; Initialization
#, ;; Attach srcloc (useful for profiling)
(quasisyntax/loc stx
(lambda (the-obj super-go si_c si_inited? si_leftovers init-args)
(syntax-parameterize ([the-finder (quote-syntax the-obj)])
(syntax-parameterize
([super-instantiate-param
(lambda (stx)
(syntax-case stx ()
[(_ (arg (... ...)) (kw kwarg) (... ...))
(with-syntax ([stx stx])
(syntax
(begin
`(declare-super-new)
(-instantiate super-go stx #f (the-obj si_c si_inited?
si_leftovers)
(list arg (... ...))
(kw kwarg) (... ...)))))]))]
[super-new-param
(lambda (stx)
(syntax-case stx ()
[(_ (kw kwarg) (... ...))
(with-syntax ([stx stx])
(syntax
(begin
`(declare-super-new)
(-instantiate super-go stx #f (the-obj si_c si_inited?
si_leftovers)
null
(kw kwarg) (... ...)))))]))]
[super-make-object-param
(lambda (stx)
(let ([code
(quote-syntax
(lambda args
(super-go the-obj si_c si_inited? si_leftovers args null)))])
#`(begin
`(declare-super-new)
#,(if (identifier? stx)
code
(datum->syntax
code
(cons code
(cdr (syntax-e stx))))))))])
(letrec-syntaxes+values
([(plain-init-name) (make-init-redirect
(quote-syntax local-plain-init-name)
(quote-syntax plain-init-name-localized))] ...)
([(local-plain-init-name) unsafe-undefined] ...)
(void) ; in case the body is empty
(begin
'(declare-field-use-start) ; see "class-undef.rkt"
. exprs))))))))))))))
;; Extra argument added here by `detect-field-unsafe-undefined`
#; check-undef?
;; Not primitive:
#f)))))))))))))))))
;; The class* and class entry points:
(values
;; class*
(lambda (stx)
(syntax-case stx ()
[(_ super-expression (interface-expr ...)
defn-or-expr
...)
(main stx
#'super-expression
#f #f
(syntax->list #'(interface-expr ...))
(syntax->list #'(defn-or-expr ...)))]
[(_ super-expression no-parens-interface-expr
defn-or-expr
...)
(raise-syntax-error 'class*
"expected a sequence of interfaces"
stx
#'no-parens-interface-expr)]))
;; class
(lambda (stx)
(syntax-case stx ()
[(_ super-expression
defn-or-expr
...)
(main stx
#'super-expression
#f #f
null
(syntax->list #'(defn-or-expr ...)))]))
;; class/derived
(lambda (stx)
(syntax-case stx ()
[(_ orig-stx
[name-id super-expression (interface-expr ...) deserialize-id-expr]
defn-or-expr
...)
(main #'orig-stx
#'super-expression
#'deserialize-id-expr
(and (syntax-e #'name-id) #'name-id)
(syntax->list #'(interface-expr ...))
(syntax->list #'(defn-or-expr ...)))]))
)))
(define-syntax (-define-serializable-class stx)
(syntax-case stx ()
[(_ orig-stx name super-expression (interface-expr ...)
defn-or-expr ...)
(let ([deserialize-name-info (datum->syntax
#'name
(string->symbol
(format "deserialize-info:~a" (syntax-e #'name)))
#'name)])
(unless (memq (syntax-local-context) '(top-level module))
(raise-syntax-error
#f
"allowed only at the top level or within a module top level"
#'orig-stx))
(with-syntax ([deserialize-name-info deserialize-name-info]
[(provision ...) (if (eq? (syntax-local-context) 'module)
#`((runtime-require (submod "." deserialize-info))
(module+ deserialize-info (provide #,deserialize-name-info)))
#'())])
(class-syntax-protect
#'(begin
(define-values (name deserialize-name-info)
(class/derived orig-stx [name
super-expression
(interface-expr ...)
#'deserialize-name-info]
defn-or-expr ...))
provision ...))))]))
(define-syntax (define-serializable-class* stx)
(syntax-case stx ()
[(_ name super-expression (interface-expr ...)
defn-or-expr ...)
(with-syntax ([orig-stx stx])
(class-syntax-protect
#'(-define-serializable-class orig-stx
name
super-expression
(interface-expr ...)
defn-or-expr ...)))]))
(define-syntax (define-serializable-class stx)
(syntax-case stx ()
[(_ name super-expression
defn-or-expr ...)
(with-syntax ([orig-stx stx])
(class-syntax-protect
#'(-define-serializable-class orig-stx
name
super-expression
()
defn-or-expr ...)))]))
(define-syntaxes (private* public* pubment* override* overment* augride* augment*
public-final* override-final* augment-final*)
(let ([mk
(lambda (who decl-form)
(lambda (stx)
(unless (class-top-level-context? (syntax-local-context))
(raise-syntax-error
#f
"use of a class keyword is not in a class top-level"
stx))
(syntax-case stx ()
[(_ binding ...)
(let ([bindings (syntax->list (syntax (binding ...)))])
(let ([name-exprs
(map (lambda (binding)
(syntax-case binding ()
[(name expr)
(identifier? (syntax name))
(cons (syntax name) (syntax expr))]
[_else
(identifier? (syntax name))
(raise-syntax-error
#f
"expected an identifier and expression"
stx
binding)]))
bindings)])
(with-syntax ([(name ...) (map car name-exprs)]
[(expr ...) (map cdr name-exprs)]
[decl-form decl-form])
(class-syntax-protect
(syntax
(begin
(decl-form name ...)
(define name expr)
...))))))])))])
(values
(mk 'private* (syntax private))
(mk 'public* (syntax public))
(mk 'pubment* (syntax pubment))
(mk 'override* (syntax override))
(mk 'overment* (syntax overment))
(mk 'augride* (syntax augride))
(mk 'augment* (syntax augment))
(mk 'public-final* (syntax public-final))
(mk 'override-final* (syntax override-final))
(mk 'augment-final* (syntax augment)))))
(define-syntaxes (define/private define/public define/pubment
define/override define/overment
define/augride define/augment
define/public-final define/override-final define/augment-final)
(let ([mk
(lambda (decl-form)
(lambda (stx)
(unless (class-top-level-context? (syntax-local-context))
(raise-syntax-error
#f
"use of a class keyword is not in a class top-level"
stx))
(let-values ([(id rhs) (normalize-definition stx #'lambda #f #t)])
(quasisyntax/loc stx
(begin
(#,decl-form #,id)
(define #,id #,rhs))))))])
(values
(mk #'private)
(mk #'public)
(mk #'pubment)
(mk #'override)
(mk #'overment)
(mk #'augride)
(mk #'augment)
(mk #'public-final)
(mk #'override-final)
(mk #'augment-final))))
(define-syntax (define-local-member-name stx)
(syntax-case stx ()
[(_ id ...)
(let ([ids (syntax->list (syntax (id ...)))])
(for-each (lambda (id)
(unless (identifier? id)
(raise-syntax-error
#f
"expected an identifier"
stx
id)))
ids)
(let ([dup (check-duplicate-identifier ids)])
(when dup
(raise-syntax-error
#f
"duplicate identifier"
stx
dup)))
(if (eq? (syntax-local-context) 'top-level)
;; Does nothing in particular at the top level:
(syntax/loc stx (define-syntaxes (id ...) (values 'id ...)))
;; Map names to private indicators, which are made private
;; simply by introduction:
(with-syntax ([(gen-id ...) (generate-temporaries ids)])
(with-syntax ([stx-defs
;; Need to attach srcloc to this definition:
(syntax/loc stx
(define-syntaxes (id ...)
(values (make-private-name (quote-syntax id) (quote-syntax gen-id))
...)))])
(class-syntax-protect
(syntax/loc stx
(begin
(define-values (gen-id ...)
(values (generate-local-member-name 'id) ...))
stx-defs)))))))]))
(define-syntax (define-member-name stx)
(syntax-case stx ()
[(_ id expr)
(let ([name #'id])
(unless (identifier? name)
(raise-syntax-error
#f
"expected an identifier for definition"
stx
name))
(with-syntax ([stx-def
;; Need to attach srcloc to this definition:
(syntax/loc stx
(define-syntax id
(make-private-name (quote-syntax id)
((syntax-local-certifier) (quote-syntax member-name)))))])
(class-syntax-protect
#'(begin
(define member-name (check-member-key 'id expr))
stx-def))))]))
(define (generate-local-member-name id)
(string->uninterned-symbol
(symbol->string id)))
(define-values (struct:member-key make-member-key member-name-key? member-key-ref member-key-set!)
(make-struct-type 'member-name-key
#f
1 0 #f
(list
(cons prop:custom-write
(lambda (v p write?)
(fprintf p "#<member-key:~a>" (member-key-id v)))))))
(define member-key-id (make-struct-field-accessor member-key-ref 0))
(define (check-member-key id v)
(unless (member-name-key? v)
(obj-error 'define-local-member-name
"value is not a member key"
"value" v
"local name" (as-write id)))
(member-key-id v))
(define-syntax (member-name-key stx)
(syntax-case stx ()
[(_ id)
(identifier? #'id)
(with-syntax ([id (localize #'id)])
(class-syntax-protect
(syntax/loc stx (make-member-key `id))))]
[(_ x)
(raise-syntax-error
#f
"not an identifier"
stx
#'x)]))
(define (generate-member-key)
(make-member-key (generate-local-member-name (gensym 'member))))
(define (member-name-key=? a b)
(if (and (member-name-key? a)
(member-name-key? b))
(eq? (member-key-id a) (member-key-id b))
(eq? a b)))
(define (member-name-key-hash-code a)
(unless (member-name-key? a)
(raise-argument-error
'member-name-key-hash-code
"member-name-key?"
a))
(eq-hash-code (member-key-id a)))
;;--------------------------------------------------------------------
;; class implementation
;;--------------------------------------------------------------------
(define-struct class (name
pos supers ; pos is subclass depth, supers is vector
self-interface ; self interface
insp-mk ; dummy struct maker to control inspection access
obj-inspector ; the inspector used for instances of this class
method-width ; total number of methods
method-ht ; maps public names to vector positions
method-ids ; reverse-ordered list of public method names
abstract-ids ; list of abstract method names
method-ictcs ; list of indices of methods to fix for interface ctcs
[ictc-classes ; #f or weak hash of cached classes keyed by blame
#:mutable]
methods ; vector of methods (for external dynamic dispatch)
; vector might also contain lists; see comment below from Stevie
super-methods ; vector of methods (for subclass super calls)
int-methods ; vector of vector of methods (for internal dynamic dispatch)
beta-methods ; vector of vector of methods
meth-flags ; vector: #f => primitive-implemented
; 'final => final
; 'augmentable => can augment
inner-projs ; vector of projections for the last inner slot
dynamic-idxs ; vector of indexs for access into int-methods
dynamic-projs ; vector of vector of projections for internal dynamic dispatch
field-width ; total number of fields
field-pub-width ; total number of public fields
field-ht ; maps public field names to field-infos (see make-field-info above)
field-ids ; list of public field names
all-field-ids ; list of field names in reverse order, used for `undefined` error reporting
[struct:object ; structure type for instances
#:mutable]
[object? ; predicate
#:mutable]
[make-object ; : (-> object), constructor that creates an uninitialized object
#:mutable]
[field-ref ; accessor
#:mutable]
[field-set! ; mutator
#:mutable]
init-args ; list of symbols in order; #f => only by position
init-mode ; 'normal, 'stop (don't accept by-pos for super), or 'list
[init ; initializer
#:mutable] ; : object
; (object class (box boolean) leftover-args new-by-pos-args new-named-args
; -> void) // always continue-make-super?
; class
; (box boolean)
; leftover-args
; named-args
; -> void
[orig-cls ; uncontracted version of this class (or same class)
#:mutable]
[serializer ; proc => serializer, #f => not serializable
#:mutable]
[fixup ; for deserialization
#:mutable]
check-undef? ; objects need an unsafe-undefined guarding chaperone?
no-super-init?); #t => no super-init needed
#:inspector insp
#:property prop:equal+hash
(list (λ (cls-a cls-b recur) (eq? (class-orig-cls cls-a) (class-orig-cls cls-b)))
(λ (cls recur) (eq-hash-code (class-orig-cls cls)))
(λ (cls recur) (eq-hash-code (class-orig-cls cls)))))
#|
From Stevie, explaining the shape of the elements of the vector in the 'methods' field:
For each level of interface, we build up the following structure:
(list <contract> <name of interface that contains this contract> <pos blame or #f> <neg blame or #f>)
The second part of the list is used for certain types of failure reporting, I think,
whereas the other parts are what we need to build the correct contract forms (once we
have the method implementation to contract). In the interface contract info returned
from a list of contracts, the info for the leaves contains #f negative blame (which
will be filled in with the class that implements the interface) and the info for the
"roots" (more on that later) contains #f positive blame (which is filled in with the
info for the client of the class).
When we have a particular class, we can fill in the neg. blame for the leaves in the hierarchy, and
then we also apply as much of these structures have complete data to the method implementation
(that is, non-#f pos and neg blames so we can appropriately construct the correct `contract' forms).
What's left is a list of non-complete data for the root(s) of the hierarchy (by roots, I mean
the first interfaces where this method is mentioned in the interface hierarchy). We store that
list along with the method implementation, so that once we have the neg. blame (the blame region
that instantiates the class in question), we can complete this data and apply those
last few projections.
|#
;; compose-class: produces one result if `deserialize-id' is #f, two
;; results if `deserialize-id' is not #f
(define (compose-class name ; symbol
super ; class, possibly with contract impersonator properties
interfaces ; list of interfaces
inspector ; inspector or #f
deserialize-id ; identifier or #f
any-localized? ; #t => need to double-check distinct external names
num-fields ; total fields (public & private)
public-field-names ; list of symbols (shorter than num-fields)
inherit-field-names ; list of symbols (not included in num-fields)
private-field-names ; list of symbols (the rest of num-fields)
rename-super-names ; list of symbols
rename-inner-names
pubment-names
public-final-names
public-normal-names
overment-names
override-final-names
override-normal-names
augment-names
augment-final-names
augride-normal-names
inherit-names
abstract-names
init-args ; list of symbols in order, or #f
init-mode ; 'normal, 'stop, or 'list
make-methods ; takes field and method accessors
check-undef?
make-struct:prim) ; see "primitive classes", below
(define (make-method proc meth-name)
(procedure-rename
(procedure->method proc)
(string->symbol
(format "~a method~a~a"
meth-name
(if name " in " "")
(or name "")))))
;; -- Check superclass --
(unless (class? super)
(obj-error 'class* "superclass expression result is not a class"
"result" super
#:class-name name))
(when any-localized?
(check-still-unique name
init-args
"initialization argument names")
;; We intentionally leave inherited names out of the lists below,
;; on the theory that it's ok to decide to inherit from yourself:
(check-still-unique name public-field-names "field names")
(check-still-unique name
(append pubment-names public-final-names public-normal-names
overment-names override-final-names override-normal-names
augment-names augment-final-names augride-normal-names
abstract-names)
"method names"))
;; -- Run class-seal/unseal checkers --
(when (has-seals? super)
(define seals (get-seals super))
(define all-inits init-args)
(define all-fields (append public-field-names inherit-field-names))
(define all-methods (append rename-super-names
rename-inner-names
pubment-names
public-final-names
public-normal-names
overment-names
override-final-names
override-normal-names
augment-names
augment-final-names
augride-normal-names
inherit-names
abstract-names))
(define all-init-checkers
(map (λ (sl) (seal-init-checker sl)) seals))
(define all-field-checkers
(map (λ (sl) (seal-field-checker sl)) seals))
(define all-method-checkers
(map (λ (sl) (seal-method-checker sl)) seals))
(for ([f all-init-checkers]) (f all-inits))
(for ([f all-field-checkers]) (f all-fields))
(for ([f all-method-checkers]) (f all-methods)))
;; -- Create new class's name --
(let* ([name (or name
(let ([s (class-name super)])
(and s
(not (eq? super object%))
(if (symbol? s) ;; how can 's' not be a symbol at this point?
(string->symbol (format "derived-from-~a" s))
s))))]
;; Combine method lists
[public-names (append pubment-names public-final-names public-normal-names abstract-names)]
[override-names (append overment-names override-final-names override-normal-names)]
[augride-names (append augment-names augment-final-names augride-normal-names)]
[final-names (append public-final-names override-final-names augment-final-names)]
[augonly-names (append pubment-names overment-names augment-names)]
;; Misc utilities
[no-new-methods? (null? public-names)]
[no-method-changes? (and (null? public-names)
(null? override-names)
(null? augride-names)
(null? final-names))]
[no-new-fields? (null? public-field-names)]
[xappend (lambda (a b) (if (null? b) a (append a b)))])
;; -- Check interfaces ---
(for-each
(lambda (intf)
(unless (interface? intf)
(obj-error 'class* "interface expression result is not an interface"
"result" intf
#:class-name name)))
interfaces)
;; -- Check inspectors ---
(when inspector
(unless (inspector? inspector)
(obj-error 'class* "class `inspect' result is not an inspector or #f"
"result" inspector
#:class-name name)))
;; -- Match method and field names to indices --
(let ([method-ht (if no-new-methods?
(class-method-ht super)
(hash-copy (class-method-ht super)))]
[field-ht (if no-new-fields?
(class-field-ht super)
(hash-copy (class-field-ht super)))]
[super-method-ht (class-method-ht super)]
[super-method-ids (class-method-ids super)]
[super-field-ids (class-field-ids super)]
[super-field-ht (class-field-ht super)]
[super-abstract-ids (class-abstract-ids super)])
;; Put new ids in table, with pos (replace field pos with accessor info later)
(unless no-new-methods?
(for ([id (in-list public-names)]
[p (in-naturals (class-method-width super))])
(when (hash-ref method-ht id #f)
(obj-error 'class* "superclass already contains method"
"superclass" super
"method name" (as-write id)
#:class-name name))
(hash-set! method-ht id p)))
;; Keep check here for early failure, will add to hashtable later in this function.
(unless no-new-fields?
(for ([id (in-list public-field-names)])
(when (hash-ref field-ht id #f)
(obj-error 'class* "superclass already contains field"
"superclass" super
"field name" (as-write id)
#:class-name name))))
;; Check that superclass has expected fields
(for-each (lambda (id)
(unless (hash-ref field-ht id #f)
(obj-error 'class* "superclass does not provide field"
"superclass" super
"field name" (as-write id)
(and name "class") name)))
inherit-field-names)
;; Check that superclass has expected methods, and get indices
(let ([get-indices
(lambda (method-ht what ids)
(map
(lambda (id)
(hash-ref
method-ht id
(lambda ()
(obj-error 'class*
(format "~a does not provide an expected method for ~a"
(if (eq? method-ht super-method-ht) "superclass" "class")
what)
(format "~a name" what) (as-write id)
#:class-name name))))
ids))]
[method-width (+ (class-method-width super) (length public-names))]
[field-width (+ (class-field-width super) num-fields)]
[field-pub-width (+ (class-field-pub-width super) (length public-field-names))])
(let ([inherit-indices (get-indices super-method-ht "inherit" inherit-names)]
[replace-augonly-indices (get-indices super-method-ht "overment" overment-names)]
[replace-final-indices (get-indices super-method-ht "override-final" override-final-names)]
[replace-normal-indices (get-indices super-method-ht "override" override-normal-names)]
[refine-augonly-indices (get-indices super-method-ht "augment" augment-names)]
[refine-final-indices (get-indices super-method-ht "augment-final" augment-final-names)]
[refine-normal-indices (get-indices super-method-ht "augride" augride-normal-names)]
[rename-super-indices (get-indices super-method-ht "rename-super" rename-super-names)]
[rename-inner-indices (get-indices method-ht "rename-inner" rename-inner-names)]
[new-augonly-indices (get-indices method-ht "pubment" pubment-names)]
[new-final-indices (get-indices method-ht "public-final" public-final-names)]
[new-normal-indices (get-indices method-ht "public" public-normal-names)]
[new-abstract-indices (get-indices method-ht "abstract" abstract-names)])
;; -- Check that all interfaces are satisfied --
(for-each
(lambda (intf)
(for-each
(lambda (var)
(unless (hash-ref method-ht var #f)
(obj-error 'class*
"missing interface-required method"
"method name" (as-write var)
(and name "class name") (as-write name)
(and (interface-name intf) "interface name") (as-write (interface-name intf)))))
(interface-public-ids intf)))
interfaces)
(let ([c (get-implement-requirement interfaces 'class* #:class-name name)])
(when (and c (not (subclass? super c)))
(obj-error 'class*
"interface-required implementation not satisfied"
(and name "class name") (as-write name)
(and (class-name c) "required class name") (as-write (class-name c)))))
;; -- For serialization, check that the superclass is compatible --
(when deserialize-id
(unless (class-serializer super)
(obj-error 'class*
"superclass is not serialiazable, not transparent, and does not implement externalizable<%>"
"superclass" super
#:class-name name)))
;; ---- Make the class and its interface ----
(let* ([class-make (if name
(make-naming-constructor struct:class name "class")
make-class)]
[interface-make (if name
(make-naming-constructor
struct:interface
(string->symbol (format "interface:~a" name))
#f)
make-interface)]
[method-names (append (reverse public-names) super-method-ids)]
[field-names (append public-field-names super-field-ids)]
;; Superclass abstracts that have not been concretized
[remaining-abstract-names
(append abstract-names
(remq* override-names super-abstract-ids))]
[super-interfaces (cons (class-self-interface super) interfaces)]
[i (interface-make name super-interfaces #f method-names (make-immutable-hash) #f null)]
[methods (if no-method-changes?
(class-methods super)
(make-vector method-width))]
[super-methods (if no-method-changes?
(class-super-methods super)
(make-vector method-width))]
[int-methods (if no-method-changes?
(class-int-methods super)
(make-vector method-width))]
[beta-methods (if no-method-changes?
(class-beta-methods super)
(make-vector method-width))]
[inner-projs (if no-method-changes?
(class-inner-projs super)
(make-vector method-width))]
[dynamic-idxs (if no-method-changes?
(class-dynamic-idxs super)
(make-vector method-width))]
[dynamic-projs (if no-method-changes?
(class-dynamic-projs super)
(make-vector method-width))]
[meth-flags (if no-method-changes?
(class-meth-flags super)
(make-vector method-width))]
[c (class-make name
(add1 (class-pos super))
(list->vector (append (vector->list (class-supers super)) (list #f)))
i
(let-values ([(struct: make- ? -ref -set) (make-struct-type 'insp #f 0 0 #f null inspector)])
make-)
inspector
method-width method-ht method-names remaining-abstract-names
(interfaces->contracted-methods (list i))
#f
methods super-methods int-methods beta-methods meth-flags
inner-projs dynamic-idxs dynamic-projs
field-width field-pub-width field-ht field-names
(append (reverse private-field-names)
(reverse public-field-names)
(class-all-field-ids super))
'struct:object 'object? 'make-object 'field-ref 'field-set!
init-args
init-mode
'init
#f #f #f ; serializer is set later
(or check-undef? (class-check-undef? super))
(and make-struct:prim #t))]
[obj-name (if name
(string->symbol (format "object:~a" name))
'object)]
;; Used only for prim classes
[preparer (lambda (name)
;; Map symbol to number:
(hash-ref method-ht name))]
[dispatcher (lambda (obj n)
;; Extract method:
(vector-ref (class-methods (object-ref obj)) n))])
(setup-all-implemented! i)
(vector-set! (class-supers c) (add1 (class-pos super)) c)
(set-class-orig-cls! c c)
;; --- Make the new external method contract records ---
;; (they are just copies of the super at this point, updated below)
(define wci-neg-extra-arg-vec
(if (impersonator-prop:has-wrapped-class-neg-party? super)
(let* ([the-info (impersonator-prop:get-wrapped-class-info super)]
[ov (wrapped-class-info-neg-extra-arg-vec the-info)])
(if no-method-changes?
ov
(let ([v (make-vector method-width #f)])
(vector-copy! v 0 ov)
v)))
#f))
(define wci-neg-acceptors-ht
(if (impersonator-prop:has-wrapped-class-neg-party? super)
(let* ([the-info (impersonator-prop:get-wrapped-class-info super)]
[oh (wrapped-class-info-neg-acceptors-ht the-info)])
(if no-method-changes?
oh
(hash-copy oh)))
#f))
;; --- Make the new object struct ---
(let*-values ([(prim-object-make prim-object? struct:prim-object)
(if make-struct:prim
(make-struct:prim c prop:object
preparer dispatcher
(get-properties interfaces))
(values #f #f #f))]
[(struct:object object-make object? object-field-ref object-field-set!)
(if make-struct:prim
;; Use prim struct:
(values struct:prim-object prim-object-make prim-object? #f #f)
;; Normal struct creation:
(make-struct-type obj-name
(add-properties (class-struct:object super) interfaces)
0 ;; No init fields
;; Fields for new slots:
num-fields unsafe-undefined
;; Map object property to class:
(append
(list (cons prop:object c))
(if (class-check-undef? c)
(list (cons prop:chaperone-unsafe-undefined
(class-all-field-ids c)))
null)
(if deserialize-id
(list
(cons prop:serializable
;; Serialization:
(make-serialize-info
(lambda (obj)
((class-serializer c) obj))
deserialize-id
(not (interface-extension? i externalizable<%>))
(or (current-load-relative-directory)
(current-directory)))))
null))
inspector))])
(set-class-struct:object! c struct:object)
(set-class-object?! c object?)
(set-class-make-object! c object-make)
(unless (zero? num-fields)
;; We need these only if there are fields, used for for public-field
;; access or for inspection:
(set-class-field-ref! c object-field-ref)
(set-class-field-set!! c object-field-set!))
;; --- Build field accessors and mutators ---
;; Use public field names to name the accessors and mutators
(let-values ([(inh-accessors inh-mutators)
(for/lists (accs muts) ([id (in-list inherit-field-names)])
(let ([fi (hash-ref field-ht id)])
(values (field-info-internal-ref fi) (field-info-internal-set! fi))))])
;; Add class/index pairs for public fields.
(unless no-new-fields?
(for ([id (in-list public-field-names)]
[i (in-naturals)])
(hash-set! field-ht id (make-field-info c i))))
;; -- Extract superclass methods and make rename-inners ---
(let ([rename-supers (map (lambda (index mname)
;; While the last part of the vector is indeed the right
;; method, if there have been super contracts placed since,
;; they won't be reflected there, only in the super-methods
;; vector of the superclass.
(let ([vec (vector-ref (class-beta-methods super) index)])
(when (and (positive? (vector-length vec))
(not (vector-ref vec (sub1 (vector-length vec)))))
(obj-error 'class*
(string-append
"superclass method for override, overment, inherit/super, "
"or rename-super is not overrideable")
"superclass" super
"method name" (as-write mname)
#:class-name name)))
(vector-ref (class-super-methods super) index))
rename-super-indices
rename-super-names)]
[rename-inners (let ([new-augonly (make-vector method-width #f)])
(define (get-depth index)
(+ (if (index . < . (class-method-width super))
(vector-length (vector-ref (class-beta-methods super)
index))
0)
(if (vector-ref new-augonly index) 0 -1)))
;; To compute `rename-inner' indices, we need to know which methods
;; are augonly in this new class.
(for-each (lambda (id)
(vector-set! new-augonly (hash-ref method-ht id) #t))
(append pubment-names overment-names))
(let ([check-aug
(lambda (maybe-here?)
(lambda (mname index)
(let ([aug-ok?
(or (if (index . < . (class-method-width super))
(eq? (vector-ref (class-meth-flags super) index) 'augmentable)
#f)
(and maybe-here?
(or (memq mname pubment-names)
(memq mname overment-names))))])
(unless aug-ok?
(obj-error 'class*
(string-append
"superclass method for augride, augment, inherit/inner, "
"or rename-inner method is not augmentable")
"superclass" super
"method name" (as-write mname)
#:class-name name)))))])
(for-each (check-aug #f)
augride-normal-names
(get-indices method-ht "augride" augride-normal-names))
(for-each (check-aug #f)
augment-final-names
refine-final-indices)
(for-each (check-aug #t)
rename-inner-names
rename-inner-indices))
;; Now that checking is done, add `augment':
(for-each (lambda (id)
(vector-set! new-augonly (hash-ref method-ht id) #t))
augment-names)
(map (lambda (mname index)
(let ([depth (get-depth index)])
(lambda (obj)
(vector-ref (vector-ref (class-beta-methods (object-ref obj))
index)
depth))))
rename-inner-names
rename-inner-indices))])
;; Have to update these before making the method-accessors, since this is a "static" piece
;; of information (instead of being dynamic => method call time).
(unless no-method-changes?
(vector-copy! dynamic-idxs 0 (class-dynamic-idxs super))
(for-each (lambda (index)
(vector-set! dynamic-idxs index 0))
(append new-augonly-indices new-final-indices
new-normal-indices new-abstract-indices)))
;; -- Create method accessors --
(let ([method-accessors
(map (lambda (index)
(let ([dyn-idx (vector-ref dynamic-idxs index)])
(lambda (obj)
(vector-ref (vector-ref (class-int-methods (object-ref obj))
index)
dyn-idx))))
(append new-normal-indices replace-normal-indices refine-normal-indices
replace-augonly-indices refine-augonly-indices
replace-final-indices refine-final-indices
new-abstract-indices inherit-indices))])
;; -- Get new methods and initializers --
(let-values ([(new-methods override-methods augride-methods init)
(apply make-methods object-field-ref object-field-set!
(append inh-accessors
inh-mutators
rename-supers
rename-inners
method-accessors))])
;; -- Fill in method tables --
;; First copy old methods
(unless no-method-changes?
(vector-copy! methods 0 (class-methods super))
(vector-copy! super-methods 0 (class-super-methods super))
(vector-copy! int-methods 0 (class-int-methods super))
(vector-copy! beta-methods 0 (class-beta-methods super))
(vector-copy! meth-flags 0 (class-meth-flags super))
(vector-copy! inner-projs 0 (class-inner-projs super))
(vector-copy! dynamic-projs 0 (class-dynamic-projs super)))
;; Add new methods:
(for-each (lambda (index method)
(vector-set! methods index method)
(vector-set! super-methods index method)
(vector-set! int-methods index (vector method))
(vector-set! beta-methods index (vector))
(vector-set! inner-projs index values)
(vector-set! dynamic-idxs index 0)
(vector-set! dynamic-projs index (vector values)))
(append new-augonly-indices new-final-indices
new-abstract-indices new-normal-indices)
new-methods)
;; Add only abstracts, making sure the super method just calls (void)
(let ([dummy (lambda args (void))])
(for-each (lambda (index)
(vector-set! super-methods index dummy))
new-abstract-indices))
;; Override old methods:
(for-each (lambda (index method id)
(when (eq? 'final (vector-ref meth-flags index))
(obj-error 'class*
"cannot override or augment final method"
"method name" (as-write id)
#:class-name name))
(let ([v (vector-ref beta-methods index)])
(if (zero? (vector-length v))
;; Normal mode - set vtable entry
(begin (vector-set! methods index method)
(vector-set! super-methods index method)
(let* ([dyn-idx (vector-ref dynamic-idxs index)]
[new-vec (make-vector (add1 dyn-idx))]
[proj-vec (vector-ref dynamic-projs index)])
(let loop ([n dyn-idx] [m method])
(if (< n 0)
(void)
(let* ([p (vector-ref proj-vec n)]
[new-m (make-method (p m) id)])
(vector-set! new-vec n new-m)
(loop (sub1 n) new-m)))
(vector-set! int-methods index new-vec))))
;; Under final mode - set extended vtable entry
(let ([v (list->vector (vector->list v))])
(vector-set! super-methods index method)
(vector-set! v (sub1 (vector-length v))
;; Apply current inner contract projection
(make-method ((vector-ref inner-projs index) method) id))
(vector-set! beta-methods index v))))
(unless (vector-ref meth-flags index)
(vector-set! meth-flags index (not make-struct:prim)))
;; clear out external contracts for methods that are overridden
(when wci-neg-extra-arg-vec
(vector-set! wci-neg-extra-arg-vec index #f)
(hash-remove! wci-neg-acceptors-ht method)))
(append replace-augonly-indices replace-final-indices replace-normal-indices
refine-augonly-indices refine-final-indices refine-normal-indices)
(append override-methods augride-methods)
(append override-names augride-names))
;; Update 'augmentable flags:
(unless no-method-changes?
(for-each (lambda (id)
(vector-set! meth-flags (hash-ref method-ht id) 'augmentable))
(append overment-names pubment-names))
(for-each (lambda (id)
(vector-set! meth-flags (hash-ref method-ht id) #t))
augride-normal-names))
;; Expand `rename-inner' vector, adding a #f to indicate that
;; no rename-inner function is available, so far
(for-each (lambda (id)
(let ([index (hash-ref method-ht id)])
(let ([v (list->vector (append (vector->list (vector-ref beta-methods index))
(list #f)))])
;; Since this starts a new part of the chain, reset the projection.
(vector-set! inner-projs index values)
(vector-set! beta-methods index v))))
augonly-names)
;; Mark final methods:
(for-each (lambda (id)
(let ([index (hash-ref method-ht id)])
(vector-set! meth-flags index 'final)))
final-names)
;; Handle interface contracted methods:
(for-each (lambda (id)
(let ([index (hash-ref method-ht id)]
[blame `(class ,name)])
;; Store blame information that will be instantiated later
(define ictc-infos (get-interface-contract-info
(class-self-interface c) id))
(define meth-entry (vector-ref methods index))
(define meth (if (pair? meth-entry)
(car meth-entry)
meth-entry))
(vector-set! methods index
(list meth
;; Replace #f positive parties w/ this class
(replace-ictc-blame ictc-infos #t blame)))))
(class-method-ictcs c))
;; --- Install serialize info into class --
(set-class-serializer!
c
(cond
[(interface-extension? i externalizable<%>)
(let ([index (car (get-indices method-ht "???" '(externalize)))])
(lambda (obj)
(vector ((vector-ref methods index) obj))))]
[(and (or deserialize-id
(not inspector))
(class-serializer super))
=> (lambda (ss)
(lambda (obj)
(vector (cons (ss obj)
(let loop ([i 0])
(if (= i num-fields)
null
(cons (object-field-ref obj i)
(loop (add1 i)))))))))]
[else #f]))
(set-class-fixup!
c
;; Used only for non-externalizable:
(lambda (o args)
(if (pair? args)
(begin
((class-fixup super) o (vector-ref (car args) 0))
(let loop ([i 0][args (cdr args)])
(unless (= i num-fields)
(object-field-set! o i (car args))
(loop (add1 i) (cdr args)))))
(begin
((class-fixup super) o args)
(let loop ([i 0])
(unless (= i num-fields)
(object-field-set! o i (object-field-ref args i))
(loop (add1 i))))))))
;; --- Install initializer into class ---
;; and create contract-wrapped subclass
(define c+ctc
(cond
[wci-neg-extra-arg-vec
(define neg-party (impersonator-prop:get-wrapped-class-neg-party super))
(define info (impersonator-prop:get-wrapped-class-info super))
(define blame (wrapped-class-info-blame info))
(define sub-init-proj-pairs
(let loop ([proj-pairs (wrapped-class-info-init-proj-pairs info)])
(cond
[(null? proj-pairs) '()]
[else
(define pr (car proj-pairs))
(if (member (list-ref pr 0) init-args)
(loop (cdr proj-pairs))
(cons pr (loop (cdr proj-pairs))))])))
(define super-init-proj-pairs (wrapped-class-info-init-proj-pairs info))
;; use an init that checks the super contracts on a super call
(set-class-init!
c
(λ (o continue-make-super c inited? leftovers named-args)
(define (contract-checking-continue-make-super o c inited?
leftovers
by-pos-args
new-named-args)
(check-arg-contracts blame neg-party c
super-init-proj-pairs
new-named-args)
(continue-make-super o c inited?
leftovers
by-pos-args
new-named-args))
(init o contract-checking-continue-make-super
c inited? leftovers named-args)))
;; add properties to the subclass that
;; check the residual external contracts
(impersonate-struct
c
set-class-orig-cls! (λ (a b) b)
impersonator-prop:wrapped-class-neg-party
neg-party
impersonator-prop:wrapped-class-info
(wrapped-class-info
blame
wci-neg-extra-arg-vec
wci-neg-acceptors-ht
(wrapped-class-info-pos-field-projs info)
(wrapped-class-info-neg-field-projs info)
sub-init-proj-pairs))]
[else
(set-class-init! c init)
c]))
;; -- result is the class, and maybe deserialize-info ---
(if deserialize-id
(values c+ctc
(make-deserialize-info
(if (interface-extension? i externalizable<%>)
(lambda (args)
(let ([o (make-object c)])
(send o internalize args)
o))
(lambda (args)
(let ([o (make-object-uninitialized c `(class ,name))])
((class-fixup c) o args)
o)))
(if (interface-extension? i externalizable<%>)
(lambda ()
(obj-error 'deserialize
"cannot deserialize instance with cycles"
#:class-name name))
(lambda ()
(let ([o (object-make)])
(values o
(lambda (o2)
((class-fixup c) o o2))))))))
(copy-seals super c+ctc)))))))))))))
;; (listof interface?) -> (listof symbol?)
;; traverse the interfaces and figure out contracted methods
(define (interfaces->contracted-methods loi)
(define immediate-methods
(map (λ (ifc) (hash-keys (interface-contracts ifc))) loi))
(define super-methods
(map (λ (ifc) (interfaces->contracted-methods (interface-supers ifc))) loi))
(remove-duplicates (apply append (append immediate-methods super-methods)) eq?))
#|
An example
(define (c1 x) #t)
(define (c2 x) #t)
(define (c3 x) #t)
(define (c4 x) #t)
(define (c5 x) #t)
(define (c6 x) #t)
(define (c7 x) #t)
(define (c8 x) #t)
(define i1
(interface () [x c1]))
(define i2
(interface (i1) [x c2]))
(define i3
(interface (i1) [x c3]))
(define i4
(interface (i2 i3) [x c4]))
(define i5
(interface (i3) [x c5]))
(define i6
(interface (i2) [x c6]))
(define i7
(interface (i4 i5) [x c7]))
(define i8
(interface (i6 i7) [x c8]))
(get-interface-contract-info i8 'x)
'((#<procedure:c8> i8 #f i8) (#<procedure:c6> i6 i8 i6)
(#<procedure:c2> i2 i6 i2) (#<procedure:c1> i1 i2 #f)
(#<procedure:c7> i7 i8 i7) (#<procedure:c4> i4 i7 i4)
(#<procedure:c3> i3 i4 i3)
(#<procedure:c5> i5 i7 i5))
|#
;; interface symbol -> (listof (list contract name (or blame #f) (or blame #f)))
;; traverse hierarchy to find ctc/blame info for a given method
(define (get-interface-contract-info ifc meth)
;; recur on hierarchy
(define super-infos
(apply append (map (λ (ifc) (get-interface-contract-info ifc meth))
(interface-supers ifc))))
;; deduplicate the infos we get
(define dedup-infos
(let loop ([infos super-infos])
(if (null? infos)
'()
(cons (car infos)
(loop (remove* (list (car infos))
(cdr infos)
(λ (i1 i2) (eq? (car i1) (car i2)))))))))
(define our-ctc (hash-ref (interface-contracts ifc) meth #f))
(define our-ctcs (hash-keys (interface-contracts ifc)))
(define our-name `(interface ,(interface-name ifc)))
(cond ;; if we don't have the contract, the parent's info is fine
[(not our-ctc) dedup-infos]
;; if the parent's don't contract it, then it's just our ctc
[(null? dedup-infos) (list (list our-ctc our-name #f #f))]
;; our ctc should have a negative party of ourself (for behav. subtyping)
[else (cons (list our-ctc our-name #f our-name)
;; replace occurrences of #f positive blame with this interface
(map (λ (info)
(if (not (caddr info))
(list (car info) (cadr info) our-name (cadddr info))
info))
dedup-infos))]))
;; infos bool blame -> infos
;; replace either positive or negative parties that are #f with blame
(define (replace-ictc-blame infos pos? blame)
(if pos?
(for/list ([info infos])
(list (car info) (cadr info) (or (caddr info) blame) (cadddr info)))
(for/list ([info infos])
(list (car info) (cadr info) (caddr info) (or (cadddr info) blame)))))
(define (check-still-unique name syms what)
(let ([ht (make-hasheq)])
(for-each (lambda (s)
(when (hash-ref ht s
(lambda ()
(hash-set! ht s #t)
#f))
(obj-error 'class* (format "external ~a mapped to overlapping keys"
what)
#:class-name name)))
syms)))
(define (get-properties intfs)
(if (ormap (lambda (i)
(pair? (interface-properties i)))
intfs)
(let ([ht (make-hash)])
;; Hash on gensym to avoid providing the same property multiple
;; times when it originated from a single interface.
(for-each (lambda (i)
(for-each (lambda (p)
(hash-set! ht (vector-ref p 0) p))
(interface-properties i)))
intfs)
(hash-map ht (lambda (k v) (cons (vector-ref v 1)
(vector-ref v 2)))))
;; No properties to add:
null))
(define (add-properties struct-type intfs)
(let ([props (get-properties intfs)])
(if (null? props)
struct-type
;; Create a new structure type to house the properties, so
;; that they can't see any fields directly via guards:
(let-values ([(struct: make- ? -ref -set!)
(make-struct-type 'props struct-type 0 0 #f props #f)])
struct:))))
(define-values (prop:object _object? object-ref)
(make-struct-type-property 'object 'can-impersonate))
(define (object? o)
(or (_object? o)
(wrapped-object? o)))
(define (object-ref/unwrap o)
(cond
[(_object? o) (object-ref o)]
[(wrapped-object? o) (object-ref/unwrap (wrapped-object-object o))]
[else
;; error case
(object-ref o)]))
;;--------------------------------------------------------------------
;; sealing/unsealing
;;--------------------------------------------------------------------
;; represents a seal on a class, only for internal use
;;
;; sym - the symbol used to identify the particular seal
;; inst-checker - a function to run when a sealed class is instantiated
;; init-checker - these three fields respectively are functions to run when
;; field-checker a sealed class is subclassed and should error when a sealed
;; method-checker member is added in the subclass
(struct seal (sym inst-checker init-checker field-checker method-checker)
#:transparent)
(define-values (prop:seals has-seals? get-seals)
(make-impersonator-property 'class-seals))
(define (class-seal cls seal-sym
inits fields methods
inst-proc
member-proc)
(unless (class? cls)
(raise-argument-error 'class-seal "class?" cls))
(unless (symbol? seal-sym)
(raise-argument-error 'class-seal "symbol?" seal-sym))
(define (check-unsealed-names val)
(unless (and (list? val)
(andmap symbol? val))
(raise-argument-error 'class-seal "(listof symbol?)" val)))
(check-unsealed-names inits)
(check-unsealed-names fields)
(check-unsealed-names methods)
(unless (procedure-arity-includes? inst-proc 1)
(raise-argument-error 'class-seal
"(procedure-arity-includes/c 1)" inst-proc))
(unless (procedure-arity-includes? member-proc 2)
(raise-argument-error 'class-seal
"(procedure-arity-includes/c 2)" member-proc))
(define new-seal
(seal seal-sym
inst-proc
(make-seal-checker member-proc cls inits)
(make-seal-checker member-proc cls fields)
(make-seal-checker member-proc cls methods)))
(define seals (cons new-seal
(or (and (has-seals? cls) (get-seals cls)) null)))
;; impersonate to avoid the cost of creating a class wrapper
(impersonate-struct cls
class-object? #f ; just here as a witness
set-class-object?! #f ; also need this witness
prop:seals seals))
;; make-seal-checker : procedure? class? (listof symbol?)
;; -> (listof symbol?) -> void?
;; constructs a checker function parameterized over the user-provided
;; checker procedure and the list of unsealed names
(define ((make-seal-checker proc cls unsealed) actual)
(define sealed-actuals (remove* unsealed actual))
(unless (null? sealed-actuals)
(proc cls sealed-actuals)))
(define (class-unseal cls sym wrong-key-proc)
(unless (class? cls)
(raise-argument-error 'class-seal "class?" cls))
(unless (symbol? sym)
(raise-argument-error 'class-seal "symbol?" seal-sym))
(define old-seals (and (has-seals? cls) (get-seals cls)))
(define has-seal-with-sym?
(and old-seals
(for/or ([old-seal (in-list old-seals)])
(eq? sym (seal-sym old-seal)))))
(unless has-seal-with-sym?
(wrong-key-proc cls))
(define new-seals
(remove sym (get-seals cls)
(λ (sym sl) (eq? sym (seal-sym sl)))))
(impersonate-struct cls
class-object? #f
set-class-object?! #f
prop:seals new-seals))
;; copy-seals : class? class? -> class?
;; Copy the seal properties from one class to another
(define (copy-seals cls1 cls2)
(if (has-seals? cls1)
(impersonate-struct cls2
class-object? #f
set-class-object?! #f
prop:seals (get-seals cls1))
cls2))
;;--------------------------------------------------------------------
;; interfaces
;;--------------------------------------------------------------------
;; >> Simplistic implementation for now <<
(define-for-syntax do-interface
(lambda (stx m-stx)
(syntax-case m-stx ()
[((interface-expr ...) ([prop prop-val] ...) var ...)
(let ([name (syntax-local-infer-name stx)])
(define-values (vars ctcs)
(for/fold ([vars '()] [ctcs '()])
([v (syntax->list #'(var ...))])
(syntax-case v ()
[id
(identifier? #'id)
(values (cons #'id vars) (cons #f ctcs))]
[(id ctc)
(identifier? #'id)
(values (cons #'id vars) (cons #'ctc ctcs))]
[_ (raise-syntax-error #f "not an identifier or identifier-contract pair"
stx v)])))
(let ([dup (check-duplicate-identifier vars)])
(when dup
(raise-syntax-error #f
"duplicate name"
stx
dup)))
(with-syntax ([name (datum->syntax #f name #f)]
[(var ...) (map localize vars)]
[((v c) ...) (filter (λ (p) (cadr p)) (map list vars ctcs))])
(class-syntax-protect
(syntax/loc stx
(compose-interface
'name
(list interface-expr ...)
`(var ...)
(make-immutable-hash (list (cons 'v c) ...))
(list prop ...)
(list prop-val ...))))))])))
(define-syntax (_interface stx)
(syntax-case stx ()
[(_ (interface-expr ...) var ...)
(do-interface stx #'((interface-expr ...) () var ...))]))
(define-syntax (interface* stx)
(syntax-case stx ()
[(_ (interface-expr ...) ([prop prop-val] ...) var ...)
(do-interface stx #'((interface-expr ...) ([prop prop-val] ...) var ...))]
[(_ (interface-expr ...) (prop+val ...) var ...)
(for-each (lambda (p+v)
(syntax-case p+v ()
[(p v) (void)]
[_ (raise-syntax-error #f
"expected `[<prop-expr> <val-expr>]'"
stx
p+v)]))
(syntax->list #'(prop+val ...)))]
[(_ (interface-expr ...) prop+vals . _)
(raise-syntax-error #f
"expected `([<prop-expr> <val-expr>] ...)'"
stx
#'prop+vals)]))
(define-struct interface
(name ; symbol
supers ; (listof interface)
[all-implemented ; hash-table: interface -> #t
#:mutable]
public-ids ; (listof symbol) (in any order?!?)
contracts ; (hashof symbol? contract?)
[class ; (union #f class) -- means that anything implementing
#:mutable] ; this interface must be derived from this class
properties) ; (listof (vector gensym prop val))
#:inspector insp)
(define (compose-interface name supers vars ctcs props vals)
(for-each
(lambda (intf)
(unless (interface? intf)
(obj-error 'interface
"superinterface expression result is not an interface"
"result" intf
#:intf-name name)))
supers)
(for-each
(lambda (p)
(unless (struct-type-property? p)
(obj-error 'interface
"property expression result is not a property"
"result" p
#:intf-name name)))
props)
(let ([ht (make-hasheq)])
(for-each
(lambda (var)
(hash-set! ht var #t))
vars)
;; Check that vars don't already exist in supers:
(for-each
(lambda (super)
(for-each
(lambda (var)
(when (and (hash-ref ht var #f)
(not (hash-ref ctcs var #f)))
(obj-error 'interface "variable already in superinterface"
"variable name" (as-write var)
(and (interface-name super) "already in") (as-write (interface-name super))
#:intf-name name)))
(interface-public-ids super)))
supers)
;; merge properties:
(let ([prop-ht (make-hash)])
;; Hash on gensym to avoid providing the same property multiple
;; times when it originated from a single interface.
(for-each (lambda (i)
(for-each (lambda (p)
(hash-set! prop-ht (vector-ref p 0) p))
(interface-properties i)))
supers)
(for-each (lambda (p v)
(let ([g (gensym)])
(hash-set! prop-ht g (vector g p v))))
props vals)
;; Check for [conflicting] implementation requirements
(let ([class (get-implement-requirement supers 'interface #:intf-name name)]
[interface-make (if name
(make-naming-constructor struct:interface
name
"interface")
make-interface)])
;; Add supervars to table:
(for-each
(lambda (super)
(for-each
(lambda (var) (hash-set! ht var #t))
(interface-public-ids super)))
supers)
;; Done
(let* ([new-ctcs (for/hash ([(k v) (in-hash ctcs)])
(values k (coerce-contract 'interface v)))]
[i (interface-make name supers #f (hash-map ht (lambda (k v) k))
new-ctcs class (hash-map prop-ht (lambda (k v) v)))])
(setup-all-implemented! i)
i)))))
;; setup-all-implemented! : interface -> void
;; Creates the hash table for all implemented interfaces
(define (setup-all-implemented! i)
(let ([ht (make-hasheq)])
(hash-set! ht i #t)
(for-each (lambda (si)
(hash-for-each
(interface-all-implemented si)
(lambda (k v)
(hash-set! ht k #t))))
(interface-supers i))
(set-interface-all-implemented! i ht)))
(define (get-implement-requirement interfaces where
#:class-name [class-name #f]
#:intf-name [intf-name #f])
(let loop ([class #f]
[supers interfaces])
(if (null? supers)
class
(let ([c (interface-class (car supers))])
(loop
(cond
[(not c) class]
[(not class) c]
[(subclass? c class) class]
[(subclass? class c) c]
[else
(obj-error
where
"conflicting class implementation requirements in superinterfaces"
#:class-name class-name
#:intf-name intf-name)])
(cdr supers))))))
;;--------------------------------------------------------------------
;; object%
;;--------------------------------------------------------------------
(define (make-naming-constructor type name prefix)
(define (writeer obj port mode)
(write-string "#<" port)
(when prefix
(write-string prefix port)
(write-string ":" port))
(write-string (symbol->string name) port)
(write-string ">" port))
(define props (list (cons prop:custom-write writeer)))
(define-values (struct: make- ? -accessor -mutator)
(make-struct-type name type 0 0 #f props insp))
make-)
(define not-all-visible (gensym 'not-all-visible))
(define (inspectable-struct->vector v)
(define vec (struct->vector v not-all-visible))
(and (for/and ([elem (in-vector vec)])
(not (eq? elem not-all-visible)))
vec))
; Even though equality on objects is morally just struct equality, we have to reimplement it here
; because of the way class contracts work. Every time a class contract is applied, it creates a new
; class, which in turn creates a new struct. This breaks equal? on objects, since two structs of
; different types are never equal? (without a custom prop:equal+hash), even if one is a subtype of the
; other. Therefore, we need to emulate what the behavior of equal? would have been if class contracts
; didn’t create new struct types. (This can go away if class/c is ever rewritten to use chaperones.)
(define (object-equal? obj-a obj-b recur)
(and (equal? (object-ref obj-a) (object-ref obj-b))
(let ([vec-a (inspectable-struct->vector obj-a)])
(and vec-a (let ([vec-b (inspectable-struct->vector obj-b)])
(and vec-b (for/and ([elem-a (in-vector vec-a 1)]
[elem-b (in-vector vec-b 1)])
(recur elem-a elem-b))))))))
(define (object-hash-code obj recur)
(let ([vec (inspectable-struct->vector obj)])
(if vec
(recur (vector (object-ref obj) vec))
(eq-hash-code obj))))
(define object<%> ((make-naming-constructor struct:interface 'interface:object% #f)
'object% null #f null (make-immutable-hash) #f null))
(setup-all-implemented! object<%>)
(define object% ((make-naming-constructor struct:class 'object% "class")
'object%
0 (vector #f)
object<%>
void ; never inspectable
#f ; this is for the inspector on the object
0 (make-hasheq) null null null
#f
(vector) (vector) (vector) (vector) (vector)
(vector) (vector) (vector)
0 0 (make-hasheq) null null
'struct:object object? 'make-object
'field-ref-not-needed 'field-set!-not-needed
null
'normal
(lambda (this super-init si_c si_inited? si_leftovers args)
(unless (null? args)
(unused-args-error this args))
(void))
#f
(lambda (obj) #(())) ; serialize
(lambda (obj args) (void)) ; deserialize-fixup
#f ; no chaperone to guard against unsafe-undefined
#t)) ; no super-init
(vector-set! (class-supers object%) 0 object%)
(set-class-orig-cls! object% object%)
(let*-values ([(struct:obj make-obj obj? -get -set!)
(make-struct-type 'object #f 0 0 #f
(list (cons prop:object object%)
(cons prop:equal+hash
(list object-equal?
object-hash-code
object-hash-code)))
#f)])
(set-class-struct:object! object% struct:obj)
(set-class-make-object! object% make-obj))
(set-class-object?! object% object?) ; don't use struct pred; it wouldn't work with prim classes
(set-interface-class! object<%> object%)
;;--------------------------------------------------------------------
;; instantiation
;;--------------------------------------------------------------------
(define-syntax (new stx)
(syntax-case stx ()
[(_ cls (id arg) ...)
(andmap identifier? (syntax->list (syntax (id ...))))
(class-syntax-protect
(quasisyntax/loc stx
(instantiate cls () (id arg) ...)))]
[(_ cls (id arg) ...)
(for-each (lambda (id)
(unless (identifier? id)
(raise-syntax-error 'new "expected identifier" stx id)))
(syntax->list (syntax (id ...))))]
[(_ cls pr ...)
(for-each
(lambda (pr)
(syntax-case pr ()
[(x y) (void)]
[else (raise-syntax-error 'new "expected name and value binding" stx pr)]))
(syntax->list (syntax (pr ...))))]))
(define ((make-object/proc blame) class . args)
(do-make-object blame class args null))
(define-syntax make-object
(make-set!-transformer
(lambda (stx)
(syntax-case stx ()
[id
(identifier? #'id)
(class-syntax-protect
(quasisyntax/loc stx
(make-object/proc (current-contract-region))))]
[(_ class arg ...)
(class-syntax-protect
(quasisyntax/loc stx
(do-make-object
(current-contract-region)
class (list arg ...) (list))))]
[(_) (raise-syntax-error 'make-object "expected class" stx)]))))
(define-syntax (instantiate stx)
(syntax-case stx ()
[(form class (arg ...) . x)
(with-syntax ([orig-stx stx])
(class-syntax-protect
(quasisyntax/loc stx
(-instantiate do-make-object orig-stx #t (class) (list arg ...) . x))))]))
;; Helper; used by instantiate and super-instantiate
(define-syntax -instantiate
(lambda (stx)
(syntax-case stx ()
[(_ do-make-object orig-stx first? (maker-arg ...) args (kw arg) ...)
(andmap identifier? (syntax->list (syntax (kw ...))))
(with-syntax ([(kw ...) (map localize (syntax->list (syntax (kw ...))))]
[(blame ...) (if (syntax-e #'first?) #'((current-contract-region)) null)])
(class-syntax-protect
(syntax/loc stx
(do-make-object blame ...
maker-arg ...
args
(list (cons `kw arg)
...)))))]
[(_ super-make-object orig-stx first? (make-arg ...) args kwarg ...)
;; some kwarg must be bad:
(for-each (lambda (kwarg)
(syntax-case kwarg ()
[(kw arg)
(identifier? (syntax kw))
'ok]
[(kw arg)
(raise-syntax-error
#f
"by-name argument does not start with an identifier"
(syntax orig-stx)
kwarg)]
[_else
(raise-syntax-error
#f
"ill-formed by-name argument"
(syntax orig-stx)
kwarg)]))
(syntax->list (syntax (kwarg ...))))])))
(define (alist->sexp alist)
(map (lambda (pair) (list (car pair) (cdr pair))) alist))
;; class blame -> class
;; takes a class and concretize interface ctc methods
(define (fetch-concrete-class cls blame)
(cond [(null? (class-method-ictcs cls)) cls]
[(and (class-ictc-classes cls)
(hash-ref (class-ictc-classes cls) blame #f))
=> values]
[else
;; if there are contracted methods to concretize, do so
(let* ([name (class-name cls)]
[ictc-meths (class-method-ictcs cls)]
[method-width (class-method-width cls)]
[method-ht (class-method-ht cls)]
[meths (if (null? ictc-meths)
(class-methods cls)
(make-vector method-width))]
[field-pub-width (class-field-pub-width cls)]
[field-ht (class-field-ht cls)]
[class-make (if name
(make-naming-constructor struct:class name "class")
make-class)]
[c (class-make name
(class-pos cls)
(list->vector (vector->list (class-supers cls)))
(class-self-interface cls)
void ;; No inspecting
(class-obj-inspector cls)
method-width
method-ht
(class-method-ids cls)
null
null
#f
meths
(class-super-methods cls)
(class-int-methods cls)
(class-beta-methods cls)
(class-meth-flags cls)
(class-inner-projs cls)
(class-dynamic-idxs cls)
(class-dynamic-projs cls)
(class-field-width cls)
field-pub-width
field-ht
(class-field-ids cls)
(class-all-field-ids cls)
'struct:object 'object? 'make-object
'field-ref 'field-set!
(class-init-args cls)
(class-init-mode cls)
(class-init cls)
(class-orig-cls cls)
#f #f ; serializer is never set
(class-check-undef? cls)
#f)]
[obj-name (if name
(string->symbol (format "wrapper-object:~a" name))
'object)])
(vector-set! (class-supers c) (class-pos c) c)
;; --- Make the new object struct ---
(let-values ([(struct:object object-make object? object-field-ref object-field-set!)
(make-struct-type obj-name
(class-struct:object cls)
0 ;; No init fields
0 ;; No new fields in this class replacement
unsafe-undefined
;; Map object property to class:
(list (cons prop:object c))
(class-obj-inspector cls))])
(set-class-struct:object! c struct:object)
(set-class-object?! c object?)
(set-class-make-object! c object-make)
(set-class-field-ref! c object-field-ref)
(set-class-field-set!! c object-field-set!))
;; Don't concretize if all concrete
(unless (null? ictc-meths)
;; First, fill up since we're empty
(vector-copy! meths 0 (class-methods cls))
;; Then apply the projections to get the concrete methods
(for ([m (in-list ictc-meths)])
(define index (hash-ref method-ht m))
(define entry (vector-ref meths index))
(define meth (car entry))
(define ictc-infos (replace-ictc-blame (cadr entry) #f blame))
(define wrapped-meth (concretize-ictc-method m meth ictc-infos))
(vector-set! meths index wrapped-meth)))
;; initialize if not yet initialized
(unless (class-ictc-classes cls)
(set-class-ictc-classes! cls (make-weak-hasheq)))
;; cache the concrete class
(hash-set! (class-ictc-classes cls) blame c)
(copy-seals cls c))]))
;; name method info -> method
;; appropriately wraps the method with interface contracts
(define (concretize-ictc-method m meth info)
(for/fold ([meth meth])
([info (in-list info)])
(define ctc (car info))
(define pos-blame (caddr info))
(define neg-blame (cadddr info))
(contract ctc meth pos-blame neg-blame m #f)))
(define (make-object-uninitialized class blame)
(do-make-object blame class 'uninit 'uninit))
(define (do-make-object blame class by-pos-args named-args)
(cond
[(impersonator-prop:has-wrapped-class-neg-party? class)
(define the-info (impersonator-prop:get-wrapped-class-info class))
(define neg-party (impersonator-prop:get-wrapped-class-neg-party class))
(define unwrapped-o
(do-make-object/real-class blame class by-pos-args named-args
(wrapped-class-info-blame the-info)
neg-party
(wrapped-class-info-init-proj-pairs the-info)))
(wrapped-object
unwrapped-o
(wrapped-class-info-neg-extra-arg-vec the-info)
(wrapped-class-info-pos-field-projs the-info)
(wrapped-class-info-neg-field-projs the-info)
neg-party)]
[(class? class)
(do-make-object/real-class blame class by-pos-args named-args #f #f '())]
[else
(raise-argument-error 'instantiate "class?" class)]))
(define (do-make-object/real-class blame class by-pos-args named-args
wrapped-blame wrapped-neg-party init-proj-pairs)
;; make sure the class isn't abstract
(unless (null? (class-abstract-ids class))
(obj-error 'instantiate
"cannot instantiate class with abstract methods"
"class" class
"abstract methods" (as-write-list (class-abstract-ids class))))
;; if the class is sealed, run all sealing error procedures
;; usually, only running the first one is necessary since these are
;; expected to be error-reporting procedures.
(when (has-seals? class)
(for ([seal (in-list (get-seals class))])
((seal-inst-checker seal) class)))
;; Generate correct class by concretizing methods w/interface ctcs
(define concrete-class (fetch-concrete-class class blame))
(define o ((class-make-object concrete-class)))
(unless (eq? by-pos-args 'uninit)
(continue-make-object o concrete-class by-pos-args named-args #t
wrapped-blame wrapped-neg-party init-proj-pairs))
o)
(define (get-field-alist obj)
(map (lambda (id) (cons id (get-field/proc id obj)))
(field-names obj)))
(define (continue-make-object o c by-pos-args named-args explict-named-args?
wrapped-blame wrapped-neg-party init-proj-pairs)
(let ([by-pos-only? (not (class-init-args c))])
;; When a superclass has #f for init-args (meaning "by-pos args with no names"),
;; some propagated named args may have #f keys; move them to by-position args.
(let-values ([(by-pos-args named-args)
(if by-pos-only?
(let ([l (filter (lambda (x) (not (car x))) named-args)])
(if (pair? l)
(values (append by-pos-args (map cdr l))
(filter car named-args))
(values by-pos-args named-args)))
(values by-pos-args named-args))])
;; Primitive class with by-pos arguments?
(when by-pos-only?
(unless (null? named-args)
(if explict-named-args?
(obj-error
'instantiate
"class has only by-position initializers, but given by-name arguments"
"arguments" (as-lines (make-named-arg-string named-args))
#:class-name (class-name c))
;; If args were implicit from subclass, should report as unused:
(unused-args-error o named-args))))
;; Merge by-pos into named args:
(let* ([named-args (if (not by-pos-only?)
;; Normal merge
(do-merge by-pos-args (class-init-args c) c named-args by-pos-args c)
;; Non-merge for by-position initializers
by-pos-args)]
[leftovers (if (not by-pos-only?)
(get-leftovers named-args (class-init-args c))
null)])
;; In 'list mode, make sure no by-name arguments are left over
(when (eq? 'list (class-init-mode c))
(unless (or (null? leftovers)
(not (ormap car leftovers)))
(unused-args-error o (filter car leftovers))))
(unless (and (eq? c object%)
(null? named-args))
(let ([named-args (check-arg-contracts wrapped-blame wrapped-neg-party
c init-proj-pairs named-args)])
(let ([inited? (box (class-no-super-init? c))])
;; ----- Execute the class body -----
((class-init c)
o
continue-make-super
c inited? leftovers ; merely passed through to continue-make-super
named-args)
(unless (unbox inited?)
(obj-error 'instantiate
"superclass initialization not invoked by initialization"
#:class-name (class-name c))))))))))
(define (continue-make-super o c inited? leftovers by-pos-args new-named-args)
(when (unbox inited?)
(obj-error 'instantiate
"superclass already initialized by class initialization"
#:class-name (class-name c)))
(set-box! inited? #t)
(let ([named-args (if (eq? 'list (class-init-mode c))
;; all old args must have been used up
new-named-args
;; Normal mode: merge leftover keyword-based args with new ones
(append
new-named-args
leftovers))])
(continue-make-object o
(vector-ref (class-supers c) (sub1 (class-pos c)))
by-pos-args
named-args
(pair? new-named-args)
#f #f '())))
(define (do-merge al nl ic named-args by-pos-args c)
(cond
[(null? al) named-args]
[(null? nl)
;; continue mapping with superclass init args, if allowed
(let ([super (and (eq? 'normal (class-init-mode ic))
(positive? (class-pos ic))
(vector-ref (class-supers ic) (sub1 (class-pos ic))))])
(cond
[super
(if (class-init-args super)
(do-merge al (class-init-args super) super named-args by-pos-args c)
;; Like 'list mode:
(append (map (lambda (x) (cons #f x)) al)
named-args))]
[(eq? 'list (class-init-mode ic))
;; All unconsumed named-args must have #f
;; "name"s, otherwise an error is raised in
;; the leftovers checking.
(if (null? al)
named-args
(append (map (lambda (x) (cons #f x)) al)
named-args))]
[else
(obj-error 'instantiate
"too many initialization arguments"
"arguments" (as-lines (make-pos-arg-string by-pos-args))
#:class-name (class-name c))]))]
[else (cons (cons (car nl) (car al))
(do-merge (cdr al) (cdr nl) ic named-args by-pos-args c))]))
(define (get-leftovers l names)
(cond
[(null? l) null]
[(memq (caar l) names)
(get-leftovers (cdr l) (remq (caar l) names))]
[else (cons (car l) (get-leftovers (cdr l) names))]))
(define (extract-arg class-name name arguments default)
(if (symbol? name)
;; Normal mode
(let ([a (assq name arguments)])
(cond
[a (cdr a)]
[default (default)]
[else (missing-argument-error class-name name)]))
;; By-position mode
(cond
[(< name (length arguments))
(cdr (list-ref arguments name))]
[default (default)]
[else (obj-error 'instantiate "too few initialization arguments")])))
(define (extract-rest-args skip arguments)
(if (< skip (length arguments))
(map cdr (list-tail arguments skip))
null))
(define (make-pos-arg-string args)
(let ([len (length args)])
(apply string-append
(map (lambda (a)
(format " ~e" a))
args))))
(define (make-named-arg-string args)
(apply
string-append
(let loop ([args args][count 0])
(cond
[(null? args) null]
[(= count 3) '("\n ...")]
[else (let ([rest (loop (cdr args) (add1 count))])
(cons (format "\n [~a ~e]"
(caar args)
(cdar args))
rest))]))))
(define (unused-args-error this args)
(let ([arg-string (make-named-arg-string args)])
(obj-error 'instantiate "unused initialization arguments"
"unused arguments" (as-lines arg-string)
#:class-name (class-name (object-ref/unwrap this))
#:which-class "instantiated ")))
(define (missing-argument-error class-name name)
(obj-error 'instantiate
"no argument for required init variable"
"init variable name" (as-write name)
#:class-name class-name
#:which-class "instantiated "))
;;--------------------------------------------------------------------
;; methods and fields
;;--------------------------------------------------------------------
(define-syntaxes (send send/apply send/keyword-apply)
(let ()
(define (do-method stx form obj name args rest-arg? kw-args)
(with-syntax ([(sym method receiver)
(generate-temporaries (syntax (1 2 3)))]
[(kw-arg-tmp) (generate-temporaries '(kw-vals-x))])
(define kw-args/var (and kw-args
(list (car kw-args) #'kw-arg-tmp)))
(define arg-list '())
(define let-bindings '())
(for ([x (in-list (if (list? args)
args
(syntax->list args)))])
(cond
[(keyword? (syntax-e x))
(set! arg-list (cons x arg-list))]
[else
(define var (car (generate-temporaries '(send-arg))))
(set! arg-list (cons var arg-list))
(set! let-bindings (cons #`[#,var #,x] let-bindings))]))
(set! arg-list (reverse arg-list))
(set! let-bindings (reverse let-bindings))
(class-syntax-protect
(syntax-property
(quasisyntax/loc stx
(let*-values ([(sym) (quasiquote (unsyntax (localize name)))]
[(receiver) (unsyntax obj)]
[(method) (find-method/who '(unsyntax form) receiver sym)])
(let (#,@(if kw-args
(list #`[kw-arg-tmp #,(cadr kw-args)])
(list))
#,@let-bindings)
(unsyntax
(make-method-call-to-possibly-wrapped-object
stx kw-args/var arg-list rest-arg?
#'sym #'method #'receiver
(quasisyntax/loc stx (find-method/who '(unsyntax form) receiver sym)))))))
'feature-profile:send-dispatch #t))))
(define (core-send apply? kws?)
(lambda (stx)
(syntax-case stx ()
[(form obj name . args)
(identifier? (syntax name))
(if (stx-list? (syntax args))
;; (send obj name arg ...) or (send/apply obj name arg ...)
(do-method stx #'form #'obj #'name
(if kws? (cddr (syntax->list #'args)) #'args)
apply?
(and kws?
(let ([l (syntax->list #'args)])
(list (car l) (cadr l)))))
(if apply?
;; (send/apply obj name arg ... . rest)
(raise-syntax-error
#f "bad syntax (illegal use of `.')" stx)
;; (send obj name arg ... . rest)
(do-method stx #'form #'obj #'name
(flatten-args #'args) #t #f)))]
[(form obj name . args)
(raise-syntax-error
#f "method name is not an identifier" stx #'name)]
[(form obj)
(raise-syntax-error
#f "expected a method name" stx)])))
(define (send/keyword-apply stx)
(syntax-case stx ()
[(form obj name)
(identifier? (syntax name))
(raise-syntax-error #f "missing expression for list of keywords" stx)]
[(form obj name a)
(identifier? (syntax name))
(raise-syntax-error #f "missing expression for list of keyword arguments" stx)]
[else ((core-send #t #t) stx)]))
(values
;; send
(core-send #f #f)
;; send/apply
(core-send #t #f)
;; send/keyword-apply
send/keyword-apply)))
(define dynamic-send
(make-keyword-procedure
(lambda (kws kw-vals obj method-name . args)
(unless (object? obj) (raise-argument-error 'dynamic-send "object?" obj))
(unless (symbol? method-name) (raise-argument-error 'dynamic-send "symbol?" method-name))
(define mtd (find-method/who 'dynamic-send obj method-name))
(cond
[(wrapped-object? obj)
(if mtd
(keyword-apply mtd kws kw-vals
(wrapped-object-neg-party obj)
(wrapped-object-object obj)
args)
(keyword-apply dynamic-send kws kw-vals
(wrapped-object-object obj)
method-name
args))]
[else
(keyword-apply mtd kws kw-vals obj args)]))))
;; imperative chained send
(define-syntax (send* stx)
(syntax-case stx ()
[(form obj clause ...)
(class-syntax-protect
(quasisyntax/loc stx
(let* ([o obj])
(unsyntax-splicing
(map
(lambda (clause-stx)
(syntax-case clause-stx ()
[(meth . args)
(quasisyntax/loc stx
(send o meth . args))]
[_ (raise-syntax-error
#f "bad method call" stx clause-stx)]))
(syntax->list (syntax (clause ...))))))))]))
;; functional chained send
(define-syntax (send+ stx)
(define-syntax-class send-clause
#:description "method clause"
(pattern [name:id . args]))
(syntax-parse stx
[(_ obj:expr clause-0:send-clause clause:send-clause ...)
(class-syntax-protect
(quasisyntax/loc stx
(let ([o (send obj clause-0.name . clause-0.args)])
(send+ o clause ...))))]
[(_ obj:expr) (class-syntax-protect
(syntax/loc stx obj))]))
;; find-method/who : symbol[top-level-form/proc-name]
;; any[object]
;; symbol[method-name]
;; -> method-proc
;; returns the method's procedure
(define (find-method/who who in-object name)
(cond
[(object-ref in-object #f) ; non-#f result implies `_object?`
=> (lambda (cls)
(define mth-idx (hash-ref (class-method-ht cls) name #f))
(if mth-idx
(vector-ref (class-methods cls) mth-idx)
(no-such-method who name cls)))]
[(wrapped-object? in-object)
(define cls
(let loop ([obj in-object])
(cond
[(wrapped-object? obj) (loop (wrapped-object-object obj))]
[else
(object-ref obj #f)])))
(define mth-idx (hash-ref (class-method-ht cls) name #f))
(unless mth-idx (no-such-method who name (object-ref in-object)))
(vector-ref (wrapped-object-neg-extra-arg-vec in-object) mth-idx)]
[else
(obj-error who "target is not an object"
"target" in-object
"method name" (as-write name))]))
(define (no-such-method who name cls)
(obj-error who
"no such method"
"method name" (as-write name)
#:class-name (class-name cls)))
(define-values (make-class-field-accessor make-class-field-mutator)
(let ()
(define (check-and-get-proc who class name get?)
(unless (class? class)
(raise-argument-error who "class?" class))
(unless (symbol? name)
(raise-argument-error who "symbol?" name))
(define field-info-external-X (if get? field-info-external-ref field-info-external-set!))
(define wrapped-class-info-X-field-projs
(if get?
wrapped-class-info-pos-field-projs
wrapped-class-info-neg-field-projs))
(define (get-accessor)
(field-info-external-X
(hash-ref (class-field-ht class) name
(lambda ()
(obj-error who "no such field"
"field-name" (as-write name)
#:class-name (class-name class))))))
(cond
[(impersonator-prop:has-wrapped-class-neg-party? class)
(define the-info (impersonator-prop:get-wrapped-class-info class))
(define projs (hash-ref (wrapped-class-info-X-field-projs the-info) name #f))
(define np (impersonator-prop:get-wrapped-class-neg-party class))
(cond
[projs
(if get?
(let loop ([projs projs])
(cond
[(pair? projs)
(define f-rest (loop (cdr projs)))
(define f-this (car projs))
(λ (val) ((f-this (f-rest val)) np))]
[else projs]))
(let loop ([projs projs])
(cond
[(pair? projs)
(define f-rest (loop (cdr projs)))
(define f-this (car projs))
(λ (o val) ((f-this (f-rest o val)) np))]
[else projs])))]
[else (get-accessor)])]
[else
(get-accessor)]))
(values (λ (class name)
(define ref (check-and-get-proc 'class-field-accessor class name #t))
(λ (o)
(cond
[(_object? o)
(ref o)]
[(wrapped-object? o)
(ref (wrapped-object-object o))]
[else
(raise-argument-error 'class-field-accessor "object?" o)])))
(λ (class name)
(define setter! (check-and-get-proc 'class-field-mutator class name #f))
(λ (o v)
(cond
[(_object? o)
(setter! o v)]
[(wrapped-object? o)
(setter! (unwrap-object o) v)]
[else
(raise-argument-error 'class-field-mutator "object?" o)]))))))
(define-struct generic (name applicable))
;; Internally, make-generic comes from the struct def.
;; Externally, make-generic is the following procedure.
;; The extra `let' gives it the right name.
(define make-generic/proc
(let ([make-generic
(lambda (class name)
(unless (or (class? class) (interface? class))
(raise-argument-error 'make-generic "(or/c class? interface?)" class))
(unless (symbol? name)
(raise-argument-error 'make-generic "symbol?" name))
(make-generic
name
(if (interface? class)
(let ([intf class])
(unless (method-in-interface? name intf)
(obj-error 'make-generic "no such method"
"method name" (as-write name)
#:intf-name (interface-name intf)))
(lambda (obj)
(unless (is-a? obj intf)
(obj-error
(string->symbol (format "generic:~a" name))
"target is not an instance of the generic's interface"
"target" obj
#:intf-name (interface-name intf)))
(find-method/who 'make-generic obj name)))
(let* ([pos (hash-ref (class-method-ht class) name
(lambda ()
(obj-error 'make-generic "no such method"
"method name" (as-write name)
#:class-name (class-name class))))]
[instance? (class-object? (class-orig-cls class))]
[fail (λ (obj)
(obj-error
(string->symbol (format "generic:~a" name))
"target is not an instance of the generic's class"
"target" obj
#:class-name (class-name class)))]
[dynamic-generic
(lambda (obj)
(cond
[(wrapped-object? obj)
(vector-ref (wrapped-object-neg-extra-arg-vec obj) pos)]
[(instance? obj)
(vector-ref (class-methods (object-ref obj)) pos)]
[else (fail obj)]))])
(if (eq? 'final (vector-ref (class-meth-flags class) pos))
(let ([method (vector-ref (class-methods class) pos)])
(lambda (obj)
(unless (instance? obj) (fail obj))
method))
dynamic-generic)))))])
make-generic))
(define-syntax (send-generic stx)
(syntax-case stx ()
[(_ object generic . args)
(let* ([args-stx (syntax args)]
[proper? (stx-list? args-stx)]
[flat-stx (if proper? args-stx (flatten-args args-stx))])
(with-syntax ([(gen obj)
(generate-temporaries (syntax (generic object)))])
(class-syntax-protect
(quasisyntax/loc stx
(let* ([obj object]
[gen generic])
;(check-generic gen)
(unsyntax
(make-method-call-to-possibly-wrapped-object
stx #f flat-stx (not proper?)
#'(generic-name gen)
#'((generic-applicable gen) obj)
#'obj
#'((generic-applicable gen) obj))))))))]))
(define (check-generic gen)
(unless (generic? gen)
(raise-argument-error 'send-generic "generic?" gen)))
(define-syntaxes (class-field-accessor class-field-mutator generic/form)
(let ([mk
(lambda (make targets)
(lambda (stx)
(syntax-case stx ()
[(_ class-expr name)
(let ([name (syntax name)])
(unless (identifier? name)
(raise-syntax-error
#f
"expected an indentifier"
stx
name))
(with-syntax ([name (localize name)]
[make make])
(class-syntax-protect
(syntax/loc stx (make class-expr `name)))))]
[(_ class-expr)
(raise-syntax-error
#f
(format "expected a field name after the ~a expression"
targets)
stx)])))])
(values
(mk (quote-syntax make-class-field-accessor) "class")
(mk (quote-syntax make-class-field-mutator) "class")
(mk (quote-syntax make-generic/proc) "class or interface"))))
(define-syntax (set-field! stx)
(syntax-case stx ()
[(_ name obj val)
(identifier? #'name)
(with-syntax ([localized (localize #'name)])
(class-syntax-protect
(syntax/loc stx (set-field!/proc `localized obj val))))]
[(_ name obj val)
(raise-syntax-error
'set-field! "expected a field name as first argument"
stx #'name)]))
(define (set-field!/proc id obj val)
(do-set-field! 'set-field! id obj val))
(define (do-set-field! who id obj val)
(cond
[(_object? obj)
(do-set-field!/raw-object who id obj val)]
[(wrapped-object? obj)
(define projs+set! (hash-ref (wrapped-object-neg-field-projs obj) id #f))
(cond
[projs+set!
(define np (wrapped-object-neg-party obj))
(let loop ([projs+set! projs+set!]
[val val])
(cond
[(pair? projs+set!)
(define the-proj (car projs+set!))
(loop (cdr projs+set!)
((the-proj val) np))]
[else
(projs+set! (wrapped-object-object obj) val)]))]
[else
(do-field-get/raw-object who id (wrapped-object-object obj))])]
[else
(raise-argument-error who
"object?"
obj)]))
(define (do-set-field!/raw-object who id obj val)
(define cls (object-ref obj))
(define field-ht (class-field-ht cls))
(define fi (hash-ref field-ht id #f))
(if fi
((field-info-external-set! fi) obj val)
(obj-error who
"given object does not have the requested field"
"field name" (as-write id)
"object" obj)))
(define (dynamic-set-field! id obj val)
(unless (symbol? id) (raise-argument-error 'dynamic-set-field! "symbol?" id))
(do-set-field! 'dynamic-set-field! id obj val))
(define-syntax (get-field stx)
(syntax-case stx ()
[(_ name obj)
(identifier? (syntax name))
(with-syntax ([localized (localize (syntax name))])
(class-syntax-protect
(syntax/loc stx (get-field/proc `localized obj))))]
[(_ name obj)
(raise-syntax-error
'get-field "expected a field name as first argument"
stx (syntax name))]))
(define (get-field/proc id obj)
(do-get-field 'get-field id obj))
(define (do-get-field who id obj)
(cond
[(_object? obj)
(do-field-get/raw-object who id obj)]
[(wrapped-object? obj)
(define projs+ref (hash-ref (wrapped-object-pos-field-projs obj) id #f))
(cond
[projs+ref
(define np (wrapped-object-neg-party obj))
(let loop ([projs+ref projs+ref])
(cond
[(pair? projs+ref)
(define the-proj (car projs+ref))
(define field-val-with-other-contracts (loop (cdr projs+ref)))
((the-proj field-val-with-other-contracts) np)]
[else
;; projs+ref is the struct field accessor
(projs+ref (wrapped-object-object obj))]))]
[else
(do-field-get/raw-object who id (wrapped-object-object obj))])]
[else
(raise-argument-error who
"object?"
obj)]))
(define (do-field-get/raw-object who id obj)
(define cls (object-ref obj))
(define field-ht (class-field-ht cls))
(define fi (hash-ref field-ht id #f))
(if fi
((field-info-external-ref fi) obj)
(obj-error who
"given object does not have the requested field"
"field name" (as-write id)
"object" obj)))
(define (dynamic-get-field id obj)
(unless (symbol? id) (raise-argument-error 'dynamic-get-field "symbol?" id))
(do-get-field 'dynamic-get-field id obj))
(define-syntax (field-bound? stx)
(syntax-case stx ()
[(_ name obj)
(identifier? (syntax name))
(with-syntax ([localized (localize (syntax name))])
(class-syntax-protect
(syntax (field-bound?/proc `localized obj))))]
[(_ name obj)
(raise-syntax-error
'field-bound? "expected a field name as first argument"
stx (syntax name))]))
(define (field-bound?/proc id obj)
(unless (object? obj)
(raise-argument-error 'field-bound?
"object?"
obj))
(let loop ([obj obj])
(let* ([cls (object-ref/unwrap obj)]
[field-ht (class-field-ht cls)])
(and (hash-ref field-ht id #f)
#t)))) ;; ensure that only #t and #f leak out, not bindings in ht
(define (field-names obj)
(unless (object? obj)
(raise-argument-error 'field-names
"object?"
obj))
(let loop ([obj obj])
(let* ([cls (object-ref/unwrap obj)]
[field-ht (class-field-ht cls)]
[flds (filter interned? (hash-map field-ht (lambda (x y) x)))])
flds)))
(define-syntax (with-method stx)
(syntax-case stx ()
[(_ ([id (obj-expr name)] ...) body0 body1 ...)
(let ([ids (syntax->list (syntax (id ...)))]
[names (syntax->list (syntax (name ...)))])
(for-each (lambda (id name)
(unless (identifier? id)
(raise-syntax-error #f
"not an identifier for binding"
stx
id))
(unless (identifier? name)
(raise-syntax-error #f
"not an identifier for method name"
stx
name)))
ids names)
(with-syntax ([(method ...) (generate-temporaries ids)]
[(method-obj ...) (generate-temporaries ids)]
[(name ...) (map localize names)])
(class-syntax-protect
(syntax/loc stx (let-values ([(method method-obj)
(let ([obj obj-expr])
(values (find-method/who 'with-method obj `name)
obj))]
...)
(letrec-syntaxes+values ([(id) (make-with-method-map
(quote-syntax set!)
(quote-syntax id)
(quote-syntax method)
(quote-syntax method-obj))]
...)
()
body0 body1 ...))))))]
;; Error cases:
[(_ (clause ...) . body)
(begin
(for-each (lambda (clause)
(syntax-case clause ()
[(id (obj-expr name))
(and (identifier? (syntax id))
(identifier? (syntax name)))
'ok]
[_else
(raise-syntax-error
#f
"binding clause is not of the form (identifier (object-expr method-identifier))"
stx
clause)]))
(syntax->list (syntax (clause ...))))
;; If we get here, the body must be bad
(if (stx-null? (syntax body))
(raise-syntax-error
#f
"empty body"
stx)
(raise-syntax-error
#f
"bad syntax (illegal use of `.')"
stx)))]
[(_ x . rest)
(raise-syntax-error
#f
"not a binding sequence"
stx
(syntax x))]))
;;--------------------------------------------------------------------
;; class, interface, and object properties
;;--------------------------------------------------------------------
(define (is-a? v c)
(cond
[(class? c)
(and (object? v) ((class-object? (class-orig-cls c)) (unwrap-object v)))]
[(interface? c) (and (object? v) (implementation? (object-ref/unwrap v) c))]
[else (raise-argument-error 'is-a? "(or/c class? interface?)" 1 v c)]))
(define (subclass? v c)
(unless (class? c)
(raise-argument-error 'subclass? "class?" 1 v c))
(and (class? v)
(let* ([c (class-orig-cls c)]
[v (class-orig-cls v)]
[p (class-pos c)])
(and (<= p (class-pos v))
(eq? c (vector-ref (class-supers v) p))))))
(define (object-interface o)
(unless (object? o)
(raise-argument-error 'object-interface "object?" o))
(class-self-interface (object-ref/unwrap o)))
(define (object-method-arity-includes? o name cnt)
(unless (object? o)
(raise-argument-error 'object-method-arity-includes? "object?" o))
(unless (symbol? name)
(raise-argument-error 'object-method-arity-includes? "symbol?" name))
(unless (and (integer? cnt)
(exact? cnt)
(not (negative? cnt)))
(raise-argument-error 'object-method-arity-includes? "exact-nonnegative-integer?" cnt))
(define c (object-ref/unwrap o))
(define pos (hash-ref (class-method-ht c) name #f))
(cond
[pos (procedure-arity-includes? (vector-ref (class-methods c) pos)
(add1 cnt))]
[else #f]))
(define (implementation? v i)
(unless (interface? i)
(raise-argument-error 'implementation? "interface?" 1 v i))
(and (class? v)
(interface-extension? (class-self-interface v) i)))
(define (interface-extension? v i)
(unless (interface? i)
(raise-argument-error 'interface-extension? "interface?" 1 v i))
(and (interface? i)
(hash-ref (interface-all-implemented v) i #f)))
(define (method-in-interface? s i)
(unless (symbol? s)
(raise-argument-error 'method-in-interface? "symbol?" 0 s i))
(unless (interface? i)
(raise-argument-error 'method-in-interface? "interface?" 1 s i))
(and (memq s (interface-public-ids i)) #t))
(define (class->interface c)
(unless (class? c)
(raise-argument-error 'class->interface "class?" c))
(class-self-interface c))
(define (interned? sym)
(eq? sym (string->symbol (symbol->string sym))))
(define (interface->method-names i)
(unless (interface? i)
(raise-argument-error 'interface->method-names "interface?" i))
(filter interned? (interface-public-ids i)))
(define (object-info o)
(unless (object? o)
(raise-argument-error 'object-info "object?" o))
(let ([o* (if (has-original-object? o) (original-object o) o)])
(let loop ([c (object-ref/unwrap o*)]
[skipped? #f])
(if (struct? ((class-insp-mk c)))
;; current objec can inspect this object
(values c skipped?)
(if (zero? (class-pos c))
(values #f #t)
(loop (vector-ref (class-supers c) (sub1 (class-pos c))) #t))))))
(define (to-sym s)
(if (string? s)
(string->symbol s)
s))
(define (class-info c)
(unless (class? c)
(raise-argument-error 'class-info "class?" c))
(if (struct? ((class-insp-mk c)))
(let ([super (vector-ref (class-supers c) (sub1 (class-pos c)))])
(let loop ([next super][skipped? #f])
(if (or (not next)
(struct? ((class-insp-mk next))))
(values (to-sym (class-name c))
(- (class-field-width c) (class-field-width super))
(filter interned? (class-field-ids c))
(class-field-ref c)
(class-field-set! c)
next
skipped?)
(if (zero? (class-pos next))
(loop #f #t)
(loop (vector-ref (class-supers next) (sub1 (class-pos next))) #t)))))
(raise-arguments-error 'class-info "current inspector cannot inspect class"
"class" c)))
(define object->vector
(lambda (in-o [opaque-v '...])
(unless (object? in-o)
(raise-argument-error 'object->vector "object?" in-o))
(let ([o in-o])
(list->vector
(cons
(string->symbol (format "object:~a" (class-name (object-ref/unwrap o))))
(reverse
(let-values ([(c skipped?) (object-info o)])
(let loop ([c c][skipped? skipped?])
(cond
[(not c) (if skipped? (list opaque-v) null)]
[else (let-values ([(name num-fields field-ids field-ref
field-set next next-skipped?)
(class-info c)])
(let ([rest (loop next next-skipped?)]
[here (let loop ([n num-fields])
(if (zero? n)
null
(cons (field-ref o (sub1 n))
(loop (sub1 n)))))])
(append (if skipped? (list opaque-v) null)
here
rest)))])))))))))
(define (object=? o1 o2)
(cond
[(not (object? o1))
(raise-argument-error 'object=? "object?" 0 o1 o2)]
[(not (object? o2))
(raise-argument-error 'object=? "object?" 1 o1 o2)]
[else
(or (eq? o1 o2) (-object=? o1 o2))]))
(define (object-or-false=? o1 o2)
(cond
[(and o1 (not (object? o1)))
(raise-argument-error 'object-or-false=? "(or/c object? #f)" 0 o1 o2)]
[(and o2 (not (object? o2)))
(raise-argument-error 'object-or-false=? "(or/c object? #f)" 1 o1 o2)]
[else
(or (eq? o1 o2)
(and o1 o2 (-object=? o1 o2)))]))
(define (-object=? o1 o2)
(eq? (object=-original-object o1)
(object=-original-object o2)))
(define (object=-original-object o)
(define orig-o (if (has-original-object? o) (original-object o) o))
(define orig-orig-o
(if (wrapped-object? orig-o)
(wrapped-object-object orig-o)
orig-o))
orig-orig-o)
(define (object=-hash-code o)
(unless (object? o)
(raise-argument-error 'object=-hash-code "object?" 0 o))
(eq-hash-code (object=-original-object o)))
;;--------------------------------------------------------------------
;; primitive classes
;;--------------------------------------------------------------------
(define (make-primitive-class
make-struct:prim ; see below
prim-init ; primitive initializer: takes obj and list of name-arg pairs
name ; symbol
super ; superclass
intfs ; interfaces
init-arg-names ; #f or list of syms and sym--value lists
override-names ; overridden method names
new-names ; new (public) method names
override-methods ; list of methods
new-methods) ; list of methods
; The `make-struct:prim' function takes prop:object, a class,
; a preparer, a dispatcher function, an unwrap property,
; an unwrapper, and a property assoc list, and produces:
; * a struct constructor (must have prop:object)
; * a struct predicate
; * a struct type for derived classes (mustn't have prop:object)
;
; The supplied preparer takes a symbol and returns a num.
;
; The supplied dispatcher takes an object and a num and returns a method.
;
; The supplied unwrap property is used for adding the unwrapper
; as a property value on new objects.
;
; The supplied unwrapper takes an object and returns the unwrapped
; version (or the original object).
;
; When a primitive class has a superclass, the struct:prim maker
; is responsible for ensuring that the returned struct items match
; the supertype predicate.
(compose-class name
(or super object%)
intfs
#f
#f
#f
0 null null null ; no fields
null ; no rename-supers
null ; no rename-inners
null null new-names
null null override-names
null null null ; no augrides
null ; no inherits
; #f => init args by position only
; sym => required arg
; sym--value list => optional arg
(and init-arg-names
(map (lambda (s)
(if (symbol? s) s (car s)))
init-arg-names))
'stop
(lambda ignored
(values
new-methods
override-methods
null ; no augride-methods
(lambda (this super-go/ignored si_c/ignored si_inited?/ignored si_leftovers/ignored init-args)
(apply prim-init this
(if init-arg-names
(extract-primitive-args this name init-arg-names init-args)
init-args)))))
#f
make-struct:prim))
(define (extract-primitive-args this class-name init-arg-names init-args)
(let loop ([names init-arg-names][args init-args])
(cond
[(null? names)
(unless (null? args)
(unused-args-error this args))
null]
[else (let* ([name (car names)]
[id (if (symbol? name)
name
(car name))])
(let ([arg (assq id args)])
(cond
[arg
(cons (cdr arg) (loop (cdr names) (remq arg args)))]
[(symbol? name)
(missing-argument-error class-name name)]
[else
(cons (cadr name) (loop (cdr names) args))])))])))
;;--------------------------------------------------------------------
;; wrapper for contracts
;;--------------------------------------------------------------------
(define-values (impersonator-prop:original-object has-original-object? original-object)
(make-impersonator-property 'impersonator-prop:original-object))
(define (check-arg-contracts wrapped-blame wrapped-neg-party val init-proj-pairs orig-named-args)
;; blame will be #f only when init-ctc-pairs is '()
(define arg-blame (and wrapped-blame (blame-swap wrapped-blame)))
(define (missing-one init-ctc-pair)
(raise-blame-error arg-blame #:missing-party wrapped-neg-party val
'(expected: "an init arg named ~a"
given:
"~a")
(car init-ctc-pair)
(case (length orig-named-args)
[(0) "no init args"]
[(1) "an init arg named ~a"
(car (car orig-named-args))]
[(2) "init args named~a"
(apply string-append
(map (λ (x) (format " ~a" (car x)))
orig-named-args))])))
;; this loop optimizes for the case where the init-ctc-pairs
;; and the named-args are in the same order, making extra
;; passes over the named-args when they aren't.
(let loop ([init-proj-pairs init-proj-pairs]
[named-args orig-named-args]
[named-skipped-args '()]
[progress? #f])
(cond
[(null? init-proj-pairs)
(append named-args named-skipped-args)]
[(and (null? named-args) (null? named-skipped-args))
'()]
[(null? named-args)
(if progress?
(loop init-proj-pairs named-skipped-args '() #f)
(loop (cdr init-proj-pairs) named-skipped-args '() #f))]
[else
(define proj-pair (car init-proj-pairs))
(define named-arg (car named-args))
(cond
[(equal? (list-ref proj-pair 0) (list-ref named-arg 0))
(define value-with-contracts-added
(for/fold ([val (cdr named-arg)]) ([proj (in-list (cdr proj-pair))])
((proj val) wrapped-neg-party)))
(define new-ele (cons (car named-arg) value-with-contracts-added))
(cons new-ele
(loop (cdr init-proj-pairs) (cdr named-args) named-skipped-args #t))]
[else
(loop init-proj-pairs
(cdr named-args)
(cons (car named-args) named-skipped-args)
progress?)])])))
;;--------------------------------------------------------------------
;; misc utils
;;--------------------------------------------------------------------
(define-struct (exn:fail:object exn:fail) () #:inspector insp)
(struct as-write (content))
(struct as-write-list (content))
(struct as-value-list (content))
(struct as-lines (content))
(define (obj-error where
msg
#:class-name [class-name #f]
#:intf-name [intf-name #f]
#:which-class [which-class ""]
. fields)
(define all-fields
(append fields
(if class-name
(list (string-append which-class "class name")
(as-write class-name))
null)
(if intf-name
(list "interface name"
(as-write intf-name))
null)))
(raise (make-exn:fail:object
(format "~a: ~a~a" where msg
(apply
string-append
(let loop ([fields all-fields])
(cond
[(null? fields) null]
[else
(define field (car fields))
(define val (cadr fields))
(list*
"\n "
field
(if (or (as-write-list? val)
(as-lines? val))
":"
": ")
(cond
[(or (as-write-list? val)
(as-value-list? val))
(apply string-append
(for/list ([v (in-list (if (as-write-list? val)
(as-write-list-content val)
(as-value-list-content val)))])
(format (if (as-write-list? val)
"\n ~s"
"\n ~e")
v)))]
[(as-write? val)
(format "~s" (as-write-content val))]
[(as-lines? val)
(as-lines-content val)]
[else
(format "~e" val)])
(loop (cddr fields)))]))))
(current-continuation-marks))))
(define (for-class name)
(if name (format " for class: ~a" name) ""))
(define (for-class/which which name)
(if name (format " for ~a class: ~a" which name) ""))
(define (for-intf name)
(if name (format " for interface: ~a" name) ""))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; mixin
;;
(define (check-mixin-super mixin-name super% from-ids)
(let ([mixin-name (or mixin-name 'mixin)])
(unless (class? super%)
(obj-error mixin-name
"argument is not a class"
"argument" super%))
(for-each (lambda (from-id)
(unless (implementation? super% from-id)
(obj-error mixin-name
"argument class does not implement interface"
"argument" super%
"interface name" (as-write from-id))))
from-ids)))
(define (check-mixin-from-interfaces all-from)
(for-each (lambda (from-id)
(unless (interface? from-id)
(obj-error 'mixin
"given value for from-interface is not an interface"
"given" from-id
"all given" (as-value-list all-from))))
all-from))
(define (check-mixin-to-interfaces all-to)
(for-each (lambda (to-id)
(unless (interface? to-id)
(obj-error 'mixin
"given values for from-interface is not an interface"
"given" to-id
"all given" (as-value-list all-to))))
all-to))
(define (check-interface-includes xs from-ids)
(for-each
(lambda (x)
(unless (ormap (lambda (i) (method-in-interface? x i)) from-ids)
(obj-error 'mixin
"method was referenced in definition, but is not in any of the from-interfaces"
"method name" (as-write x)
"from-interfaces" (as-write-list from-ids))))
xs))
(define-syntax (mixin stx)
(syntax-case stx ()
[(_ (from ...) (to ...) clauses ...)
(let ([extract-renamed-names
(λ (x)
(map (λ (x)
(localize
(syntax-case x ()
[(internal-name external-name) (syntax external-name)]
[else x])))
(syntax->list x)))])
(define (get-super-names stx)
(syntax-case stx (inherit rename
override overment override-final
define/override define/overment define/override-final
augment augride augment-final
define/augment define/augride define/augment-final)
[(inherit names ...) (extract-renamed-names (syntax (names ...)))]
[(rename [x names] ...) (syntax->list (syntax (names ...)))]
[(override names ...) (extract-renamed-names (syntax (names ...)))]
[(overment names ...) (extract-renamed-names (syntax (names ...)))]
[(override-final names ...) (extract-renamed-names (syntax (names ...)))]
[(augment names ...) (extract-renamed-names (syntax (names ...)))]
[(augride names ...) (extract-renamed-names (syntax (names ...)))]
[(augment-final names ...) (extract-renamed-names (syntax (names ...)))]
[(define/augment (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/augment name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[(define/augride (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/augride name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[(define/augment-final (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/augment-final name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[(define/override (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/override name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[(define/overment (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/overment name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[(define/override-final (name . names) . rest) (extract-renamed-names (syntax (name)))]
[(define/override-final name . rest) (identifier? (syntax name)) (extract-renamed-names (syntax (name)))]
[else null]))
(with-syntax ([(from-ids ...) (generate-temporaries (syntax (from ...)))]
[(to-ids ...) (generate-temporaries (syntax (to ...)))]
[(super-vars ...)
(apply
append
(map get-super-names
(syntax->list (syntax (clauses ...)))))]
[mixin-name (or (with-syntax ([tmp (syntax-local-name)])
(syntax (quote tmp)))
(syntax (quote mixin)))])
;; Build the class expression first, to give it a good src location:
(with-syntax ([class-expr
(with-syntax ([orig-stx stx])
(syntax/loc stx
(class/derived orig-stx [#f super% (to-ids ...) #f]
clauses ...)))])
;; Now build mixin proc, again to give it a good src location:
(with-syntax ([mixin-expr
(syntax/loc stx
(λ (super%)
(check-mixin-super mixin-name super% (list from-ids ...))
class-expr))])
;; Finally, build the complete mixin expression:
(class-syntax-protect
(syntax/loc stx
(let ([from-ids from] ...)
(let ([to-ids to] ...)
(check-mixin-from-interfaces (list from-ids ...))
(check-mixin-to-interfaces (list to-ids ...))
(check-interface-includes (list (quasiquote super-vars) ...)
(list from-ids ...))
mixin-expr))))))))]))
(define externalizable<%>
(_interface () externalize internalize))
(define writable<%>
(interface* ()
([prop:custom-write (lambda (obj port mode)
(if mode
(send obj custom-write port)
(send obj custom-display port)))])
custom-write custom-display))
(define printable<%>
(interface* ()
([prop:custom-write (lambda (obj port mode)
(case mode
[(#t) (send obj custom-write port)]
[(#f) (send obj custom-display port)]
[else (send obj custom-print port mode)]))])
custom-write custom-display custom-print))
(define equal<%>
(interface* ()
([prop:equal+hash (list
(lambda (obj obj2 base-equal?)
(send obj equal-to? obj2 base-equal?))
(lambda (obj base-hash-code)
(send obj equal-hash-code-of base-hash-code))
(lambda (obj base-hash2-code)
(send obj equal-secondary-hash-code-of base-hash2-code)))])
equal-to? equal-hash-code-of equal-secondary-hash-code-of))
;; Providing normal functionality:
(provide (protect-out get-field/proc)
;; for class-c-old.rkt:
(protect-out
make-naming-constructor prop:object _object? object-ref replace-ictc-blame
concretize-ictc-method field-info-extend-external field-info-extend-internal this-param
object-ref/unwrap impersonator-prop:original-object has-original-object? original-object)
;; end class-c-old.rkt requirements
field-info-internal-ref
field-info-internal-set!
(rename-out [_class class]) class* class/derived
define-serializable-class define-serializable-class*
class?
mixin
(rename-out [_interface interface]) interface* interface?
object% object? object=? object-or-false=? object=-hash-code
externalizable<%> printable<%> writable<%> equal<%>
new make-object instantiate
get-field set-field! field-bound? field-names
dynamic-get-field dynamic-set-field!
send send/apply send/keyword-apply send* send+ dynamic-send
class-field-accessor class-field-mutator with-method
private* public* pubment*
override* overment*
augride* augment*
public-final* override-final* augment-final*
define/private define/public define/pubment
define/override define/overment
define/augride define/augment
define/public-final define/override-final define/augment-final
define-local-member-name define-member-name
member-name-key generate-member-key member-name-key? member-name-key=? member-name-key-hash-code
(rename-out [generic/form generic]) (rename-out [make-generic/proc make-generic]) send-generic generic?
is-a? subclass? implementation? interface-extension?
object-interface object-info object->vector
object-method-arity-includes?
method-in-interface? interface->method-names class->interface class-info
class-seal class-unseal copy-seals
(struct-out exn:fail:object)
make-primitive-class
(for-syntax localize)
(except-out (struct-out class) class class?)
(rename-out [class? class-struct-predicate?])
(struct-out wrapped-object))
|