cml/lib.rs
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 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! A library of common utilities used by `cmc` and related tools.
//! To manually regenerate reference documentation from doc comments in
//! this file, see the instructions at:
//!
//! tools/lib/reference_doc/macro/derive-reference-doc-tests/src/test_data/README.md
pub mod error;
pub mod features;
pub mod one_or_many;
pub(crate) mod validate;
#[allow(unused)] // A test-only macro is defined outside of a test builds.
pub mod translate;
use crate::error::Error;
use cml_macro::{CheckedVec, OneOrMany, Reference};
use fidl_fuchsia_io as fio;
use indexmap::IndexMap;
use itertools::Itertools;
use json5format::{FormatOptions, PathOption};
use lazy_static::lazy_static;
use maplit::{hashmap, hashset};
use reference_doc::ReferenceDoc;
use serde::{de, ser, Deserialize, Serialize};
use serde_json::{Map, Value};
use std::collections::{BTreeMap, HashMap, HashSet};
use std::fmt::Write;
use std::hash::Hash;
use std::num::NonZeroU32;
use std::str::FromStr;
use std::{cmp, fmt, path};
use validate::offer_to_all_from_offer;
pub use cm_types::{
AllowedOffers, Availability, DeliveryType, DependencyType, Durability, Name, NamespacePath,
OnTerminate, ParseError, Path, RelativePath, StartupMode, StorageId, Url,
};
use error::Location;
pub use crate::one_or_many::OneOrMany;
pub use crate::translate::{compile, CompileOptions};
pub use crate::validate::{CapabilityRequirements, MustUseRequirement, OfferToAllCapability};
lazy_static! {
static ref DEFAULT_EVENT_STREAM_NAME: Name = "EventStream".parse().unwrap();
}
/// Parses a string `buffer` into a [Document]. `file` is used for error reporting.
pub fn parse_one_document(buffer: &String, file: &std::path::Path) -> Result<Document, Error> {
serde_json5::from_str(&buffer).map_err(|e| {
let serde_json5::Error::Message { location, msg } = e;
let location = location.map(|l| Location { line: l.line, column: l.column });
Error::parse(msg, location, Some(file))
})
}
/// Parses a string `buffer` into a vector of [Document]. `file` is used for error reporting.
/// Supports JSON encoded as an array of Document JSON objects.
pub fn parse_many_documents(
buffer: &String,
file: &std::path::Path,
) -> Result<Vec<Document>, Error> {
let res: Result<Vec<Document>, _> = serde_json5::from_str(&buffer);
match res {
Err(_) => {
let d = parse_one_document(buffer, file)?;
Ok(vec![d])
}
Ok(docs) => Ok(docs),
}
}
/// A name/identity of a capability exposed/offered to another component.
///
/// Exposed or offered capabilities have an identifier whose format
/// depends on the capability type. For directories and services this is
/// a path, while for storage this is a storage name. Paths and storage
/// names, however, are in different conceptual namespaces, and can't
/// collide with each other.
///
/// This enum allows such names to be specified disambiguating what
/// namespace they are in.
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub enum CapabilityId<'a> {
Service(&'a Name),
Protocol(&'a Name),
Directory(&'a Name),
// A service in a `use` declaration has a target path in the component's namespace.
UsedService(Path),
// A protocol in a `use` declaration has a target path in the component's namespace.
UsedProtocol(Path),
// A directory in a `use` declaration has a target path in the component's namespace.
UsedDirectory(Path),
// A storage in a `use` declaration has a target path in the component's namespace.
UsedStorage(Path),
// An event stream in a `use` declaration has a target path in the component's namespace.
UsedEventStream(Path),
// A configuration in a `use` declaration has a target name that matches a config.
UsedConfiguration(&'a Name),
UsedRunner(&'a Name),
Storage(&'a Name),
Runner(&'a Name),
Resolver(&'a Name),
EventStream(&'a Name),
Dictionary(&'a Name),
Configuration(&'a Name),
}
/// Generates a `Vec<Name>` -> `Vec<CapabilityId>` conversion function.
macro_rules! capability_ids_from_names {
($name:ident, $variant:expr) => {
fn $name(names: Vec<&'a Name>) -> Vec<Self> {
names.into_iter().map(|n| $variant(n)).collect()
}
};
}
/// Generates a `Vec<Path>` -> `Vec<CapabilityId>` conversion function.
macro_rules! capability_ids_from_paths {
($name:ident, $variant:expr) => {
fn $name(paths: Vec<Path>) -> Vec<Self> {
paths.into_iter().map(|p| $variant(p)).collect()
}
};
}
impl<'a> CapabilityId<'a> {
/// Human readable description of this capability type.
pub fn type_str(&self) -> &'static str {
match self {
CapabilityId::Service(_) => "service",
CapabilityId::Protocol(_) => "protocol",
CapabilityId::Directory(_) => "directory",
CapabilityId::UsedService(_) => "service",
CapabilityId::UsedProtocol(_) => "protocol",
CapabilityId::UsedDirectory(_) => "directory",
CapabilityId::UsedStorage(_) => "storage",
CapabilityId::UsedEventStream(_) => "event_stream",
CapabilityId::UsedRunner(_) => "runner",
CapabilityId::UsedConfiguration(_) => "config",
CapabilityId::Storage(_) => "storage",
CapabilityId::Runner(_) => "runner",
CapabilityId::Resolver(_) => "resolver",
CapabilityId::EventStream(_) => "event_stream",
CapabilityId::Dictionary(_) => "dictionary",
CapabilityId::Configuration(_) => "config",
}
}
/// Return the directory containing the capability, if this capability takes a target path.
pub fn get_dir_path(&self) -> Option<NamespacePath> {
match self {
CapabilityId::UsedService(p)
| CapabilityId::UsedProtocol(p)
| CapabilityId::UsedEventStream(p) => Some(p.parent()),
CapabilityId::UsedDirectory(p) | CapabilityId::UsedStorage(p) => Some(p.clone().into()),
_ => None,
}
}
/// Given a Use clause, return the set of target identifiers.
///
/// When only one capability identifier is specified, the target identifier name is derived
/// using the "path" clause. If a "path" clause is not specified, the target identifier is the
/// same name as the source.
///
/// When multiple capability identifiers are specified, the target names are the same as the
/// source names.
pub fn from_use(use_: &'a Use) -> Result<Vec<Self>, Error> {
// TODO: Validate that exactly one of these is set.
let alias = use_.path.as_ref();
if let Some(n) = use_.service() {
return Ok(Self::used_services_from(Self::get_one_or_many_svc_paths(
n,
alias,
use_.capability_type().unwrap(),
)?));
} else if let Some(n) = use_.protocol() {
return Ok(Self::used_protocols_from(Self::get_one_or_many_svc_paths(
n,
alias,
use_.capability_type().unwrap(),
)?));
} else if let Some(_) = use_.directory.as_ref() {
if use_.path.is_none() {
return Err(Error::validate("\"path\" should be present for `use directory`."));
}
return Ok(vec![CapabilityId::UsedDirectory(use_.path.as_ref().unwrap().clone())]);
} else if let Some(_) = use_.storage.as_ref() {
if use_.path.is_none() {
return Err(Error::validate("\"path\" should be present for `use storage`."));
}
return Ok(vec![CapabilityId::UsedStorage(use_.path.as_ref().unwrap().clone())]);
} else if let Some(_) = use_.event_stream() {
if let Some(path) = use_.path() {
return Ok(vec![CapabilityId::UsedEventStream(path.clone())]);
}
return Ok(vec![CapabilityId::UsedEventStream(Path::new(
"/svc/fuchsia.component.EventStream",
)?)]);
} else if let Some(n) = use_.runner() {
match n {
OneOrMany::One(name) => {
return Ok(vec![CapabilityId::UsedRunner(name)]);
}
OneOrMany::Many(_) => {
return Err(Error::validate("`use runner` should occur at most once."));
}
}
} else if let Some(_) = use_.config() {
return match &use_.key {
None => Err(Error::validate("\"key\" should be present for `use config`.")),
Some(name) => Ok(vec![CapabilityId::UsedConfiguration(name)]),
};
}
// Unsupported capability type.
let supported_keywords = use_
.supported()
.into_iter()
.map(|k| format!("\"{}\"", k))
.collect::<Vec<_>>()
.join(", ");
Err(Error::validate(format!(
"`{}` declaration is missing a capability keyword, one of: {}",
use_.decl_type(),
supported_keywords,
)))
}
pub fn from_capability(capability: &'a Capability) -> Result<Vec<Self>, Error> {
// TODO: Validate that exactly one of these is set.
if let Some(n) = capability.service() {
if n.is_many() && capability.path.is_some() {
return Err(Error::validate(
"\"path\" can only be specified when one `service` is supplied.",
));
}
return Ok(Self::services_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.protocol() {
if n.is_many() && capability.path.is_some() {
return Err(Error::validate(
"\"path\" can only be specified when one `protocol` is supplied.",
));
}
return Ok(Self::protocols_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.directory() {
return Ok(Self::directories_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.storage() {
if capability.storage_id.is_none() {
return Err(Error::validate(
"Storage declaration is missing \"storage_id\", but is required.",
));
}
return Ok(Self::storages_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.runner() {
return Ok(Self::runners_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.resolver() {
return Ok(Self::resolvers_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.event_stream() {
return Ok(Self::event_streams_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.dictionary() {
return Ok(Self::dictionaries_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
} else if let Some(n) = capability.config() {
return Ok(Self::configurations_from(Self::get_one_or_many_names(
n,
None,
capability.capability_type().unwrap(),
)?));
}
// Unsupported capability type.
let supported_keywords = capability
.supported()
.into_iter()
.map(|k| format!("\"{}\"", k))
.collect::<Vec<_>>()
.join(", ");
Err(Error::validate(format!(
"`{}` declaration is missing a capability keyword, one of: {}",
capability.decl_type(),
supported_keywords,
)))
}
/// Given an Offer or Expose clause, return the set of target identifiers.
///
/// When only one capability identifier is specified, the target identifier name is derived
/// using the "as" clause. If an "as" clause is not specified, the target identifier is the
/// same name as the source.
///
/// When multiple capability identifiers are specified, the target names are the same as the
/// source names.
pub fn from_offer_expose<T>(clause: &'a T) -> Result<Vec<Self>, Error>
where
T: CapabilityClause + AsClause + fmt::Debug,
{
// TODO: Validate that exactly one of these is set.
let alias = clause.r#as();
if let Some(n) = clause.service() {
return Ok(Self::services_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.protocol() {
return Ok(Self::protocols_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.directory() {
return Ok(Self::directories_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.storage() {
return Ok(Self::storages_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.runner() {
return Ok(Self::runners_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.resolver() {
return Ok(Self::resolvers_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(event_stream) = clause.event_stream() {
return Ok(Self::event_streams_from(Self::get_one_or_many_names(
event_stream,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.dictionary() {
return Ok(Self::dictionaries_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
} else if let Some(n) = clause.config() {
return Ok(Self::configurations_from(Self::get_one_or_many_names(
n,
alias,
clause.capability_type().unwrap(),
)?));
}
// Unsupported capability type.
let supported_keywords = clause
.supported()
.into_iter()
.map(|k| format!("\"{}\"", k))
.collect::<Vec<_>>()
.join(", ");
Err(Error::validate(format!(
"`{}` declaration is missing a capability keyword, one of: {}",
clause.decl_type(),
supported_keywords,
)))
}
/// Returns the target names as a `Vec` from a declaration with `names` and `alias` as a `Vec`.
fn get_one_or_many_names<'b>(
names: OneOrMany<&'b Name>,
alias: Option<&'b Name>,
capability_type: &str,
) -> Result<Vec<&'b Name>, Error> {
let names: Vec<&Name> = names.into_iter().collect();
if names.len() == 1 {
Ok(vec![alias_or_name(alias, &names[0])])
} else {
if alias.is_some() {
return Err(Error::validate(format!(
"\"as\" can only be specified when one `{}` is supplied.",
capability_type,
)));
}
Ok(names)
}
}
/// Returns the target paths as a `Vec` from a `use` declaration with `names` and `alias`.
fn get_one_or_many_svc_paths(
names: OneOrMany<&Name>,
alias: Option<&Path>,
capability_type: &str,
) -> Result<Vec<Path>, Error> {
let names: Vec<_> = names.into_iter().collect();
match (names.len(), alias) {
(_, None) => {
Ok(names.into_iter().map(|n| format!("/svc/{}", n).parse().unwrap()).collect())
}
(1, Some(alias)) => Ok(vec![alias.clone()]),
(_, Some(_)) => {
return Err(Error::validate(format!(
"\"path\" can only be specified when one `{}` is supplied.",
capability_type,
)));
}
}
}
capability_ids_from_names!(services_from, CapabilityId::Service);
capability_ids_from_names!(protocols_from, CapabilityId::Protocol);
capability_ids_from_names!(directories_from, CapabilityId::Directory);
capability_ids_from_names!(storages_from, CapabilityId::Storage);
capability_ids_from_names!(runners_from, CapabilityId::Runner);
capability_ids_from_names!(resolvers_from, CapabilityId::Resolver);
capability_ids_from_names!(event_streams_from, CapabilityId::EventStream);
capability_ids_from_names!(dictionaries_from, CapabilityId::Dictionary);
capability_ids_from_names!(configurations_from, CapabilityId::Configuration);
capability_ids_from_paths!(used_services_from, CapabilityId::UsedService);
capability_ids_from_paths!(used_protocols_from, CapabilityId::UsedProtocol);
}
impl fmt::Display for CapabilityId<'_> {
/// Return the string ID of this clause.
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
CapabilityId::Service(n)
| CapabilityId::Storage(n)
| CapabilityId::Runner(n)
| CapabilityId::UsedRunner(n)
| CapabilityId::Resolver(n)
| CapabilityId::EventStream(n)
| CapabilityId::Configuration(n)
| CapabilityId::UsedConfiguration(n)
| CapabilityId::Dictionary(n) => write!(f, "{}", n),
CapabilityId::UsedService(p)
| CapabilityId::UsedProtocol(p)
| CapabilityId::UsedDirectory(p)
| CapabilityId::UsedStorage(p)
| CapabilityId::UsedEventStream(p) => write!(f, "{}", p),
CapabilityId::Protocol(p) | CapabilityId::Directory(p) => write!(f, "{}", p),
}
}
}
/// A list of rights.
#[derive(CheckedVec, Debug, PartialEq, Clone)]
#[checked_vec(
expected = "a nonempty array of rights, with unique elements",
min_length = 1,
unique_items = true
)]
pub struct Rights(pub Vec<Right>);
/// Generates deserializer for `OneOrMany<Name>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "a name or nonempty array of names, with unique elements",
inner_type = "Name",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyNames;
/// Generates deserializer for `OneOrMany<Path>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "a path or nonempty array of paths, with unique elements",
inner_type = "Path",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyPaths;
/// Generates deserializer for `OneOrMany<ExposeFromRef>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "one or an array of \"framework\", \"self\", \"#<child-name>\", or a dictionary path",
inner_type = "ExposeFromRef",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyExposeFromRefs;
/// Generates deserializer for `OneOrMany<OfferToRef>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "one or an array of \"#<child-name>\", \"#<collection-name>\", or \"self/<dictionary>\", with unique elements",
inner_type = "OfferToRef",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyOfferToRefs;
/// Generates deserializer for `OneOrMany<OfferFromRef>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "one or an array of \"parent\", \"framework\", \"self\", \"#<child-name>\", \"#<collection-name>\", or a dictionary path",
inner_type = "OfferFromRef",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyOfferFromRefs;
/// Generates deserializer for `OneOrMany<UseFromRef>`.
#[derive(OneOrMany, Debug, Clone)]
#[one_or_many(
expected = "one or an array of \"#<collection-name>\", or \"#<child-name>\"",
inner_type = "EventScope",
min_length = 1,
unique_items = true
)]
pub struct OneOrManyEventScope;
/// The stop timeout configured in an environment.
#[derive(Debug, Clone, Copy, PartialEq, Serialize)]
pub struct StopTimeoutMs(pub u32);
impl<'de> de::Deserialize<'de> for StopTimeoutMs {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
impl<'de> de::Visitor<'de> for Visitor {
type Value = StopTimeoutMs;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("an unsigned 32-bit integer")
}
fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>
where
E: de::Error,
{
if v < 0 || v > i64::from(u32::max_value()) {
return Err(E::invalid_value(
de::Unexpected::Signed(v),
&"an unsigned 32-bit integer",
));
}
Ok(StopTimeoutMs(v as u32))
}
fn visit_u64<E>(self, value: u64) -> Result<Self::Value, E>
where
E: de::Error,
{
self.visit_i64(value as i64)
}
}
deserializer.deserialize_i64(Visitor)
}
}
/// A relative reference to another object. This is a generic type that can encode any supported
/// reference subtype. For named references, it holds a reference to the name instead of the name
/// itself.
///
/// Objects of this type are usually derived from conversions of context-specific reference
/// types that `#[derive(Reference)]`. This type makes it easy to write helper functions that operate on
/// generic references.
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub enum AnyRef<'a> {
/// A named reference. Parsed as `#name`.
Named(&'a Name),
/// A reference to the parent. Parsed as `parent`.
Parent,
/// A reference to the framework (component manager). Parsed as `framework`.
Framework,
/// A reference to the debug. Parsed as `debug`.
Debug,
/// A reference to this component. Parsed as `self`.
Self_,
/// An intentionally omitted reference.
Void,
/// A reference to a dictionary. Parsed as a dictionary path.
Dictionary(&'a DictionaryRef),
/// A reference to a dictionary defined by this component. Parsed as
/// `self/<dictionary>`.
OwnDictionary(&'a Name),
}
/// Format an `AnyRef` as a string.
impl fmt::Display for AnyRef<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Named(name) => write!(f, "#{}", name),
Self::Parent => write!(f, "parent"),
Self::Framework => write!(f, "framework"),
Self::Debug => write!(f, "debug"),
Self::Self_ => write!(f, "self"),
Self::Void => write!(f, "void"),
Self::Dictionary(d) => write!(f, "{}", d),
Self::OwnDictionary(name) => write!(f, "self/{}", name),
}
}
}
/// A reference in a `use from`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(
expected = "\"parent\", \"framework\", \"debug\", \"self\", \"#<capability-name>\", \"#<child-name>\", dictionary path, or none"
)]
pub enum UseFromRef {
/// A reference to the parent.
Parent,
/// A reference to the framework.
Framework,
/// A reference to debug.
Debug,
/// A reference to a child or a capability declared on self.
///
/// A reference to a capability must be one of the following:
/// - A dictionary capability.
/// - A protocol that references a storage capability declared in the same component,
/// which will cause the framework to host a fuchsia.sys2.StorageAdmin protocol for the
/// component.
///
/// This cannot be used to directly access capabilities that a component itself declares.
Named(Name),
/// A reference to this component.
Self_,
/// A reference to a dictionary.
Dictionary(DictionaryRef),
}
/// The scope of an event.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference, Ord, PartialOrd)]
#[reference(expected = "\"#<collection-name>\", \"#<child-name>\", or none")]
pub enum EventScope {
/// A reference to a child or a collection.
Named(Name),
}
/// A reference in an `expose from`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"framework\", \"self\", \"void\", or \"#<child-name>\"")]
pub enum ExposeFromRef {
/// A reference to a child or collection.
Named(Name),
/// A reference to the framework.
Framework,
/// A reference to this component.
Self_,
/// An intentionally omitted source.
Void,
/// A reference to a dictionary.
Dictionary(DictionaryRef),
}
/// A reference in an `expose to`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"parent\", \"framework\", or none")]
pub enum ExposeToRef {
/// A reference to the parent.
Parent,
/// A reference to the framework.
Framework,
}
/// A reference in an `offer from`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(
expected = "\"parent\", \"framework\", \"self\", \"void\", \"#<child-name>\", or a dictionary path"
)]
pub enum OfferFromRef {
/// A reference to a child or collection.
Named(Name),
/// A reference to the parent.
Parent,
/// A reference to the framework.
Framework,
/// A reference to this component.
Self_,
/// An intentionally omitted source.
Void,
/// A reference to a dictionary.
Dictionary(DictionaryRef),
}
impl OfferFromRef {
pub fn is_named(&self) -> bool {
match self {
OfferFromRef::Named(_) => true,
_ => false,
}
}
}
/// A reference in an `offer to`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"#<child-name>\", \"#<collection-name>\", or \"self/<dictionary>\"")]
pub enum OfferToRef {
/// A reference to a child or collection.
Named(Name),
/// Syntax sugar that results in the offer decl applying to all children and collections
All,
/// A reference to a dictionary defined by this component, the form "self/<dictionary>".
OwnDictionary(Name),
}
/// A reference in an `offer to`.
#[derive(Debug, Deserialize, PartialEq, Eq, Hash, Clone, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum SourceAvailability {
Required,
Unknown,
}
impl Default for SourceAvailability {
fn default() -> Self {
Self::Required
}
}
/// A reference in an environment.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"#<environment-name>\"")]
pub enum EnvironmentRef {
/// A reference to an environment defined in this component.
Named(Name),
}
/// A reference in a `storage from`.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"parent\", \"self\", or \"#<child-name>\"")]
pub enum CapabilityFromRef {
/// A reference to a child.
Named(Name),
/// A reference to the parent.
Parent,
/// A reference to this component.
Self_,
}
/// A reference to a (possibly nested) dictionary.
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub struct DictionaryRef {
/// Path to the dictionary relative to `root_dictionary`.
pub path: RelativePath,
pub root: RootDictionaryRef,
}
impl<'a> From<&'a DictionaryRef> for AnyRef<'a> {
fn from(r: &'a DictionaryRef) -> Self {
Self::Dictionary(r)
}
}
impl FromStr for DictionaryRef {
type Err = ParseError;
fn from_str(path: &str) -> Result<Self, ParseError> {
match path.find('/') {
Some(n) => {
let root = path[..n].parse().map_err(|_| ParseError::InvalidValue)?;
let path = RelativePath::new(&path[n + 1..])?;
Ok(Self { root, path })
}
None => Err(ParseError::InvalidValue),
}
}
}
impl fmt::Display for DictionaryRef {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}/{}", self.root, self.path)
}
}
impl ser::Serialize for DictionaryRef {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::ser::Serializer,
{
format!("{}", self).serialize(serializer)
}
}
const DICTIONARY_REF_EXPECT_STR: &str = "a path to a dictionary no more \
than 4095 characters in length";
impl<'de> de::Deserialize<'de> for DictionaryRef {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
impl<'de> de::Visitor<'de> for Visitor {
type Value = DictionaryRef;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(DICTIONARY_REF_EXPECT_STR)
}
fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
where
E: de::Error,
{
s.parse().map_err(|err| match err {
ParseError::InvalidValue => {
E::invalid_value(de::Unexpected::Str(s), &DICTIONARY_REF_EXPECT_STR)
}
ParseError::TooLong | ParseError::Empty => {
E::invalid_length(s.len(), &DICTIONARY_REF_EXPECT_STR)
}
e => {
panic!("unexpected parse error: {:?}", e);
}
})
}
}
deserializer.deserialize_string(Visitor)
}
}
/// A reference to a root dictionary.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"parent\", \"self\", \"#<child-name>\"")]
pub enum RootDictionaryRef {
/// A reference to a child.
Named(Name),
/// A reference to the parent.
Parent,
/// A reference to this component.
Self_,
}
/// A reference in an environment registration.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Reference)]
#[reference(expected = "\"parent\", \"self\", or \"#<child-name>\"")]
pub enum RegistrationRef {
/// A reference to a child.
Named(Name),
/// A reference to the parent.
Parent,
/// A reference to this component.
Self_,
}
/// A right or bundle of rights to apply to a directory.
#[derive(Deserialize, Clone, Debug, Eq, PartialEq, Hash, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum Right {
// Individual
Connect,
Enumerate,
Execute,
GetAttributes,
ModifyDirectory,
ReadBytes,
Traverse,
UpdateAttributes,
WriteBytes,
// Aliass
#[serde(rename = "r*")]
ReadAlias,
#[serde(rename = "w*")]
WriteAlias,
#[serde(rename = "x*")]
ExecuteAlias,
#[serde(rename = "rw*")]
ReadWriteAlias,
#[serde(rename = "rx*")]
ReadExecuteAlias,
}
impl fmt::Display for Right {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match self {
Self::Connect => "connect",
Self::Enumerate => "enumerate",
Self::Execute => "execute",
Self::GetAttributes => "get_attributes",
Self::ModifyDirectory => "modify_directory",
Self::ReadBytes => "read_bytes",
Self::Traverse => "traverse",
Self::UpdateAttributes => "update_attributes",
Self::WriteBytes => "write_bytes",
Self::ReadAlias => "r*",
Self::WriteAlias => "w*",
Self::ExecuteAlias => "x*",
Self::ReadWriteAlias => "rw*",
Self::ReadExecuteAlias => "rx*",
};
write!(f, "{}", s)
}
}
impl Right {
/// Expands this right or bundle or rights into a list of `fio::Operations`.
pub fn expand(&self) -> Vec<fio::Operations> {
match self {
Self::Connect => vec![fio::Operations::CONNECT],
Self::Enumerate => vec![fio::Operations::ENUMERATE],
Self::Execute => vec![fio::Operations::EXECUTE],
Self::GetAttributes => vec![fio::Operations::GET_ATTRIBUTES],
Self::ModifyDirectory => vec![fio::Operations::MODIFY_DIRECTORY],
Self::ReadBytes => vec![fio::Operations::READ_BYTES],
Self::Traverse => vec![fio::Operations::TRAVERSE],
Self::UpdateAttributes => vec![fio::Operations::UPDATE_ATTRIBUTES],
Self::WriteBytes => vec![fio::Operations::WRITE_BYTES],
Self::ReadAlias => vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::GET_ATTRIBUTES,
],
Self::WriteAlias => vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::WRITE_BYTES,
fio::Operations::MODIFY_DIRECTORY,
fio::Operations::UPDATE_ATTRIBUTES,
],
Self::ExecuteAlias => vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::EXECUTE,
],
Self::ReadWriteAlias => vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::WRITE_BYTES,
fio::Operations::MODIFY_DIRECTORY,
fio::Operations::GET_ATTRIBUTES,
fio::Operations::UPDATE_ATTRIBUTES,
],
Self::ReadExecuteAlias => vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::GET_ATTRIBUTES,
fio::Operations::EXECUTE,
],
}
}
}
/// # Component manifest (`.cml`) reference
///
/// A `.cml` file contains a single json5 object literal with the keys below.
///
/// Where string values are expected, a list of valid values is generally documented.
/// The following string value types are reused and must follow specific rules.
///
/// The `.cml` file is compiled into a FIDL wire format (`.cm`) file.
///
/// ## String types
///
/// ### Names {#names}
///
/// Both capabilities and a component's children are named. A name string may
/// consist of one or more of the following characters: `A-Z`, `a-z`, `0-9`,
/// `_`, `.`, `-`. It must not exceed 255 characters in length and may not start
/// with `.` or `-`.
///
/// ### Paths {#paths}
///
/// Paths are sequences of [names](#names) delimited by the `/` character. A path
/// must not exceed 4095 characters in length. Throughout the document,
///
/// - Relative paths cannot start with the `/` character.
/// - Namespace and outgoing directory paths must start with the `/` character.
///
/// ### References {#references}
///
/// A reference string takes the form of `#<name>`, where `<name>` refers to the name of a child:
///
/// - A [static child instance][doc-static-children] whose name is
/// `<name>`, or
/// - A [collection][doc-collections] whose name is `<name>`.
///
/// [doc-static-children]: /docs/concepts/components/v2/realms.md#static-children
/// [doc-collections]: /docs/concepts/components/v2/realms.md#collections
/// [doc-protocol]: /docs/concepts/components/v2/capabilities/protocol.md
/// [doc-dictionaries]: /reference/fidl/fuchsia.component.decl#Dictionary
/// [doc-directory]: /docs/concepts/components/v2/capabilities/directory.md
/// [doc-storage]: /docs/concepts/components/v2/capabilities/storage.md
/// [doc-resolvers]: /docs/concepts/components/v2/capabilities/resolver.md
/// [doc-runners]: /docs/concepts/components/v2/capabilities/runner.md
/// [doc-event]: /docs/concepts/components/v2/capabilities/event.md
/// [doc-service]: /docs/concepts/components/v2/capabilities/service.md
/// [doc-directory-rights]: /docs/concepts/components/v2/capabilities/directory.md#directory-capability-rights
///
/// ## Top-level keys {#document}
#[derive(ReferenceDoc, Deserialize, Debug, Default, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct Document {
/// The optional `include` property describes zero or more other component manifest
/// files to be merged into this component manifest. For example:
///
/// ```json5
/// include: [ "syslog/client.shard.cml" ]
/// ```
///
/// In the example given above, the component manifest is including contents from a
/// manifest shard provided by the `syslog` library, thus ensuring that the
/// component functions correctly at runtime if it attempts to write to `syslog`. By
/// convention such files are called "manifest shards" and end with `.shard.cml`.
///
/// Include paths prepended with `//` are relative to the source root of the Fuchsia
/// checkout. However, include paths not prepended with `//`, as in the example
/// above, are resolved from Fuchsia SDK libraries (`//sdk/lib`) that export
/// component manifest shards.
///
/// For reference, inside the Fuchsia checkout these two include paths are
/// equivalent:
///
/// * `syslog/client.shard.cml`
/// * `//sdk/lib/syslog/client.shard.cml`
///
/// You can review the outcome of merging any and all includes into a component
/// manifest file by invoking the following command:
///
/// Note: The `fx` command below is for developers working in a Fuchsia source
/// checkout environment.
///
/// ```sh
/// fx cmc include {{ "<var>" }}cml_file{{ "</var>" }} --includeroot $FUCHSIA_DIR --includepath $FUCHSIA_DIR/sdk/lib
/// ```
///
/// Includes can cope with duplicate [`use`], [`offer`], [`expose`], or [`capabilities`]
/// declarations referencing the same capability, as long as the properties are the same. For
/// example:
///
/// ```json5
/// // my_component.cml
/// include: [ "syslog.client.shard.cml" ]
/// use: [
/// {
/// protocol: [
/// "fuchsia.logger.LogSink",
/// "fuchsia.posix.socket.Provider",
/// ],
/// },
/// ],
///
/// // syslog.client.shard.cml
/// use: [
/// { protocol: "fuchsia.logger.LogSink" },
/// ],
/// ```
///
/// In this example, the contents of the merged file will be the same as my_component.cml --
/// `fuchsia.logger.LogSink` is deduped.
///
/// However, this would fail to compile:
///
/// ```json5
/// // my_component.cml
/// include: [ "syslog.client.shard.cml" ]
/// use: [
/// {
/// protocol: "fuchsia.logger.LogSink",
/// // properties for fuchsia.logger.LogSink don't match
/// from: "#archivist",
/// },
/// ],
///
/// // syslog.client.shard.cml
/// use: [
/// { protocol: "fuchsia.logger.LogSink" },
/// ],
/// ```
///
/// An exception to this constraint is the `availability` property. If two routing declarations
/// are identical, and one availability is stronger than the other, the availability will be
/// "promoted" to the stronger value (if `availability` is missing, it defaults to `required`).
/// For example:
///
/// ```json5
/// // my_component.cml
/// include: [ "syslog.client.shard.cml" ]
/// use: [
/// {
/// protocol: [
/// "fuchsia.logger.LogSink",
/// "fuchsia.posix.socket.Provider",
/// ],
/// availability: "optional",
/// },
/// ],
///
/// // syslog.client.shard.cml
/// use: [
/// {
/// protocol: "fuchsia.logger.LogSink"
/// availability: "required", // This is the default
/// },
/// ],
/// ```
///
/// Becomes:
///
/// ```json5
/// use: [
/// {
/// protocol: "fuchsia.posix.socket.Provider",
/// availability: "optional",
/// },
/// {
/// protocol: "fuchsia.logger.LogSink",
/// availability: "required",
/// },
/// ],
/// ```
///
/// Includes are transitive, meaning that shards can have their own includes.
///
/// Include paths can have diamond dependencies. For instance this is valid:
/// A includes B, A includes C, B includes D, C includes D.
/// In this case A will transitively include B, C, D.
///
/// Include paths cannot have cycles. For instance this is invalid:
/// A includes B, B includes A.
/// A cycle such as the above will result in a compile-time error.
///
/// [`use`]: #use
/// [`offer`]: #offer
/// [`expose`]: #expose
/// [`capabilities`]: #capabilities
#[serde(skip_serializing_if = "Option::is_none")]
pub include: Option<Vec<String>>,
/// Components that are executable include a `program` section. The `program`
/// section must set the `runner` property to select a [runner][doc-runners] to run
/// the component. The format of the rest of the `program` section is determined by
/// that particular runner.
///
/// # ELF runners {#elf-runners}
///
/// If the component uses the ELF runner, `program` must include the following
/// properties, at a minimum:
///
/// - `runner`: must be set to `"elf"`
/// - `binary`: Package-relative path to the executable binary
/// - `args` _(optional)_: List of arguments
///
/// Example:
///
/// ```json5
/// program: {
/// runner: "elf",
/// binary: "bin/hippo",
/// args: [ "Hello", "hippos!" ],
/// },
/// ```
///
/// For a complete list of properties, see: [ELF Runner](/docs/concepts/components/v2/elf_runner.md)
///
/// # Other runners {#other-runners}
///
/// If a component uses a custom runner, values inside the `program` stanza other
/// than `runner` are specific to the runner. The runner receives the arguments as a
/// dictionary of key and value pairs. Refer to the specific runner being used to
/// determine what keys it expects to receive, and how it interprets them.
///
/// [doc-runners]: /docs/concepts/components/v2/capabilities/runner.md
#[reference_doc(json_type = "object")]
#[serde(skip_serializing_if = "Option::is_none")]
pub program: Option<Program>,
/// The `children` section declares child component instances as described in
/// [Child component instances][doc-children].
///
/// [doc-children]: /docs/concepts/components/v2/realms.md#child-component-instances
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub children: Option<Vec<Child>>,
/// The `collections` section declares collections as described in
/// [Component collections][doc-collections].
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub collections: Option<Vec<Collection>>,
/// The `environments` section declares environments as described in
/// [Environments][doc-environments].
///
/// [doc-environments]: /docs/concepts/components/v2/environments.md
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub environments: Option<Vec<Environment>>,
/// The `capabilities` section defines capabilities that are provided by this component.
/// Capabilities that are [offered](#offer) or [exposed](#expose) from `self` must be declared
/// here.
///
/// # Capability fields
///
/// This supports the following capability keys. Exactly one of these must be set:
///
/// - `protocol`: (_optional `string or array of strings`_)
/// - `service`: (_optional `string or array of strings`_)
/// - `directory`: (_optional `string`_)
/// - `storage`: (_optional `string`_)
/// - `runner`: (_optional `string`_)
/// - `resolver`: (_optional `string`_)
/// - `event_stream`: (_optional `string or array of strings`_)
/// - `dictionary`: (_optional `string`_)
/// - `config`: (_optional `string`_)
///
/// # Additional fields
///
/// This supports the following additional fields:
/// [glossary.outgoing directory]: /docs/glossary/README.md#outgoing-directory
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub capabilities: Option<Vec<Capability>>,
/// For executable components, declares capabilities that this
/// component requires in its [namespace][glossary.namespace] at runtime.
/// Capabilities are routed from the `parent` unless otherwise specified,
/// and each capability must have a valid route through all components between
/// this component and the capability's source.
///
/// # Capability fields
///
/// This supports the following capability keys. Exactly one of these must be set:
///
/// - `service`: (_optional `string or array of strings`_)
/// - `directory`: (_optional `string`_)
/// - `protocol`: (_optional `string or array of strings`_)
/// - `dictionary`: (_optional `string`_)
/// - `storage`: (_optional `string`_)
/// - `event_stream`: (_optional `string or array of strings`_)
/// - `runner`: (_optional `string`_)
/// - `config`: (_optional `string`_)
///
/// # Additional fields
///
/// This supports the following additional fields:
/// [glossary.namespace]: /docs/glossary/README.md#namespace
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub r#use: Option<Vec<Use>>,
/// Declares the capabilities that are made available to the parent component or to the
/// framework. It is valid to `expose` from `self` or from a child component.
///
/// # Capability fields
///
/// This supports the following capability keys. Exactly one of these must be set:
///
/// - `service`: (_optional `string or array of strings`_)
/// - `protocol`: (_optional `string or array of strings`_)
/// - `directory`: (_optional `string`_)
/// - `runner`: (_optional `string`_)
/// - `resolver`: (_optional `string`_)
/// - `dictionary`: (_optional `string`_)
/// - `config`: (_optional `string`_)
///
/// # Additional fields
///
/// This supports the following additional fields:
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub expose: Option<Vec<Expose>>,
/// Declares the capabilities that are made available to a [child component][doc-children]
/// instance or a [child collection][doc-collections].
///
/// # Capability fields
///
/// This supports the following capability keys. Exactly one of these must be set:
///
/// - `protocol`: (_optional `string or array of strings`_)
/// - `service`: (_optional `string or array of strings`_)
/// - `directory`: (_optional `string`_)
/// - `storage`: (_optional `string`_)
/// - `runner`: (_optional `string`_)
/// - `resolver`: (_optional `string`_)
/// - `event_stream`: (_optional `string or array of strings`_)
/// - `dictionary`: (_optional `string`_)
/// - `config`: (_optional `string`_)
///
/// # Additional fields
///
/// This supports the following additional fields:
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub offer: Option<Vec<Offer>>,
/// Contains metadata that components may interpret for their own purposes. The component
/// framework enforces no schema for this section, but third parties may expect their facets to
/// adhere to a particular schema.
#[serde(skip_serializing_if = "Option::is_none")]
pub facets: Option<IndexMap<String, Value>>,
/// The configuration schema as defined by a component. Each key represents a single field
/// in the schema.
///
/// Configuration fields are JSON objects and must define a `type` which can be one of the
/// following strings:
/// `bool`, `uint8`, `int8`, `uint16`, `int16`, `uint32`, `int32`, `uint64`, `int64`,
/// `string`, `vector`
///
/// Example:
///
/// ```json5
/// config: {
/// debug_mode: {
/// type: "bool"
/// },
/// }
/// ```
///
/// Fields are resolved from a component's package by default. To be able to change the values
/// at runtime a `mutability` specifier is required.
///
/// Example:
///
/// ```json5
/// config: {
/// verbose: {
/// type: "bool",
/// mutability: [ "parent" ],
/// },
/// },
/// ```
///
/// Currently `"parent"` is the only mutability specifier supported.
///
/// Strings must define the `max_size` property as a non-zero integer.
///
/// Example:
///
/// ```json5
/// config: {
/// verbosity: {
/// type: "string",
/// max_size: 20,
/// }
/// }
/// ```
///
/// Vectors must set the `max_count` property as a non-zero integer. Vectors must also set the
/// `element` property as a JSON object which describes the element being contained in the
/// vector. Vectors can contain booleans, integers, and strings but cannot contain other
/// vectors.
///
/// Example:
///
/// ```json5
/// config: {
/// tags: {
/// type: "vector",
/// max_count: 20,
/// element: {
/// type: "string",
/// max_size: 50,
/// }
/// }
/// }
/// ```
#[reference_doc(json_type = "object")]
#[serde(skip_serializing_if = "Option::is_none")]
// NB: Unlike other maps the order of these fields matters for the ABI of generated config
// libraries. Rather than insertion order, we explicitly sort the fields here to dissuade
// developers from taking a dependency on the source ordering in their manifest. In the future
// this will hopefully make it easier to pursue layout size optimizations.
pub config: Option<BTreeMap<ConfigKey, ConfigValueType>>,
}
impl<T> Canonicalize for Vec<T>
where
T: Canonicalize + CapabilityClause + PathClause,
{
fn canonicalize(&mut self) {
// Collapse like-entries into one. Like entries are those that are equal in all fields
// but their capability names. Accomplish this by collecting all the names into a vector
// keyed by an instance of T with its names removed.
let mut to_merge: Vec<(T, Vec<Name>)> = vec![];
let mut to_keep: Vec<T> = vec![];
self.iter().for_each(|c| {
// Any entry with a `path` set cannot be merged with another.
if !c.are_many_names_allowed() || c.path().is_some() {
to_keep.push(c.clone());
return;
}
let mut names = c.names().into_iter().cloned().collect();
let mut copy = c.clone();
copy.set_names(vec![Name::from_str("a").unwrap()]); // The name here is arbitrary.
let r = to_merge.iter().position(|(t, _)| t == ©);
match r {
Some(i) => to_merge[i].1.append(&mut names),
None => to_merge.push((copy, names)),
};
});
let mut merged = to_merge
.into_iter()
.map(|(mut t, names)| {
t.set_names(names);
t
})
.collect::<Vec<_>>();
to_keep.append(&mut merged);
*self = to_keep;
self.iter_mut().for_each(|c| c.canonicalize());
self.sort_by(|a, b| {
// Sort by capability type, then by the name of the first entry for
// that type.
let a_type = a.capability_type().unwrap();
let b_type = b.capability_type().unwrap();
a_type.cmp(b_type).then_with(|| {
let a_names = a.names();
let b_names = b.names();
let a_first_name = a_names.first().unwrap();
let b_first_name = b_names.first().unwrap();
a_first_name.cmp(b_first_name)
})
});
}
}
/// Merges `us` into `other` according to the rules documented for [`include`].
/// [`include`]: #include
fn merge_from_capability_field<T: CapabilityClause>(
us: &mut Option<Vec<T>>,
other: &mut Option<Vec<T>>,
) -> Result<(), Error> {
// Empty entries are an error, and merging removes empty entries so we first need to check
// for them.
for entry in us.iter().flatten().chain(other.iter().flatten()) {
if entry.names().is_empty() {
return Err(Error::Validate {
err: format!("{}: Missing type name: {:#?}", entry.decl_type(), entry),
filename: None,
});
}
}
if let Some(all_ours) = us.as_mut() {
if let Some(all_theirs) = other.take() {
for mut theirs in all_theirs {
for ours in &mut *all_ours {
compute_diff(ours, &mut theirs);
}
all_ours.push(theirs);
}
}
// Post-filter step: remove empty entries.
all_ours.retain(|ours| !ours.names().is_empty())
} else if let Some(theirs) = other.take() {
us.replace(theirs);
}
Ok(())
}
/// Merges `us` into `other` according to the rules documented for [`include`].
/// [`include`]: #include
fn merge_from_other_field<T: std::cmp::PartialEq>(
us: &mut Option<Vec<T>>,
other: &mut Option<Vec<T>>,
) {
if let Some(ref mut ours) = us {
if let Some(theirs) = other.take() {
// Add their elements, ignoring dupes with ours
for t in theirs {
if !ours.contains(&t) {
ours.push(t);
}
}
}
} else if let Some(theirs) = other.take() {
us.replace(theirs);
}
}
/// Subtracts the capabilities in `ours` from `theirs` if the declarations match in their type and
/// other fields, resulting in the removal of duplicates between `ours` and `theirs`. Stores the
/// result in `theirs`.
///
/// Inexact matches on `availability` are allowed if there is a partial order between them. The
/// stronger availability is chosen.
fn compute_diff<T: CapabilityClause>(ours: &mut T, theirs: &mut T) {
// Return early if one is empty.
if ours.names().is_empty() || theirs.names().is_empty() {
return;
}
// Return early if the types don't match.
if ours.capability_type().unwrap() != theirs.capability_type().unwrap() {
return;
}
// Check if the non-capability fields match before proceeding.
let mut ours_partial = ours.clone();
let mut theirs_partial = theirs.clone();
for e in [&mut ours_partial, &mut theirs_partial] {
e.set_names(Vec::new());
// Availability is allowed to differ (see merge algorithm below)
e.set_availability(None);
}
if ours_partial != theirs_partial {
// The fields other than `availability` do not match, nothing to remove.
return;
}
// Compare the availabilities.
let Some(avail_cmp) = ours
.availability()
.unwrap_or_default()
.partial_cmp(&theirs.availability().unwrap_or_default())
else {
// The availabilities are incompatible (no partial order).
return;
};
let mut our_names: Vec<_> = ours.names().into_iter().cloned().collect();
let mut their_names: Vec<_> = theirs.names().into_iter().cloned().collect();
let mut our_entries_to_remove = HashSet::new();
let mut their_entries_to_remove = HashSet::new();
for e in &their_names {
if !our_names.contains(e) {
// Not a duplicate, so keep.
continue;
}
match avail_cmp {
cmp::Ordering::Less => {
// Their availability is stronger, meaning theirs should take
// priority. Keep `e` in theirs, and remove it from ours.
our_entries_to_remove.insert(e.clone());
}
cmp::Ordering::Greater => {
// Our availability is stronger, meaning ours should take
// priority. Remove `e` from theirs.
their_entries_to_remove.insert(e.clone());
}
cmp::Ordering::Equal => {
// The availabilities are equal, so `e` is a duplicate.
their_entries_to_remove.insert(e.clone());
}
}
}
our_names.retain(|e| !our_entries_to_remove.contains(e));
their_names.retain(|e| !their_entries_to_remove.contains(e));
ours.set_names(our_names);
theirs.set_names(their_names);
}
impl Document {
pub fn merge_from(
&mut self,
other: &mut Document,
include_path: &path::Path,
) -> Result<(), Error> {
// Flatten the mergable fields that may contain a
// list of capabilities in one clause.
merge_from_capability_field(&mut self.r#use, &mut other.r#use)?;
merge_from_capability_field(&mut self.expose, &mut other.expose)?;
merge_from_capability_field(&mut self.offer, &mut other.offer)?;
merge_from_capability_field(&mut self.capabilities, &mut other.capabilities)?;
merge_from_other_field(&mut self.include, &mut other.include);
merge_from_other_field(&mut self.children, &mut other.children);
merge_from_other_field(&mut self.collections, &mut other.collections);
self.merge_environment(other, include_path)?;
self.merge_program(other, include_path)?;
self.merge_facets(other, include_path)?;
self.merge_config(other, include_path)?;
Ok(())
}
pub fn canonicalize(&mut self) {
// Don't sort `include` - the order there matters.
if let Some(children) = &mut self.children {
children.sort_by(|a, b| a.name.cmp(&b.name));
}
if let Some(collections) = &mut self.collections {
collections.sort_by(|a, b| a.name.cmp(&b.name));
}
if let Some(environments) = &mut self.environments {
environments.sort_by(|a, b| a.name.cmp(&b.name));
}
if let Some(capabilities) = &mut self.capabilities {
capabilities.canonicalize();
}
if let Some(offers) = &mut self.offer {
offers.canonicalize();
}
if let Some(expose) = &mut self.expose {
expose.canonicalize();
}
if let Some(r#use) = &mut self.r#use {
r#use.canonicalize();
}
}
fn merge_program(
&mut self,
other: &mut Document,
include_path: &path::Path,
) -> Result<(), Error> {
if let None = other.program {
return Ok(());
}
if let None = self.program {
self.program = Some(Program::default());
}
let my_program = self.program.as_mut().unwrap();
let other_program = other.program.as_mut().unwrap();
if let Some(other_runner) = other_program.runner.take() {
my_program.runner = match &my_program.runner {
Some(runner) if *runner != other_runner => {
return Err(Error::validate(format!(
"manifest include had a conflicting `program.runner`: {}",
include_path.display()
)))
}
_ => Some(other_runner),
}
}
Self::merge_maps_with_options(
&mut my_program.info,
&other_program.info,
"program",
include_path,
Some(vec!["environ", "features"]),
)
}
fn merge_environment(
&mut self,
other: &mut Document,
_include_path: &path::Path,
) -> Result<(), Error> {
if let None = other.environments {
return Ok(());
}
if let None = self.environments {
self.environments = Some(vec![]);
}
let my_environments = self.environments.as_mut().unwrap();
let other_environments = other.environments.as_mut().unwrap();
my_environments.sort_by(|x, y| x.name.cmp(&y.name));
other_environments.sort_by(|x, y| x.name.cmp(&y.name));
let all_environments =
my_environments.into_iter().merge_by(other_environments, |x, y| x.name <= y.name);
let groups = all_environments.group_by(|e| e.name.clone());
let mut merged_environments = vec![];
for (name, group) in groups.into_iter() {
let mut merged_environment = Environment {
name: name.clone(),
extends: None,
runners: None,
resolvers: None,
debug: None,
stop_timeout_ms: None,
};
for e in group {
merged_environment.merge_from(e)?;
}
merged_environments.push(merged_environment);
}
self.environments = Some(merged_environments);
Ok(())
}
fn merge_maps<'s, Source, Dest>(
self_map: &mut Dest,
include_map: Source,
outer_key: &str,
include_path: &path::Path,
) -> Result<(), Error>
where
Source: IntoIterator<Item = (&'s String, &'s Value)>,
Dest: ValueMap,
{
Self::merge_maps_with_options(self_map, include_map, outer_key, include_path, None)
}
/// If `allow_array_concatenation_keys` is None, all arrays present in both
/// `self_map` and `include_map` will be concatenated in the result. If it
/// is set to Some(vec), only those keys specified will allow concatenation,
/// with any others returning an error.
fn merge_maps_with_options<'s, Source, Dest>(
self_map: &mut Dest,
include_map: Source,
outer_key: &str,
include_path: &path::Path,
allow_array_concatenation_keys: Option<Vec<&str>>,
) -> Result<(), Error>
where
Source: IntoIterator<Item = (&'s String, &'s Value)>,
Dest: ValueMap,
{
for (key, value) in include_map {
match self_map.get_mut(key) {
None => {
// Key not present in self map, insert it from include map.
self_map.insert(key.clone(), value.clone());
}
// Self and include maps share the same key
Some(Value::Object(self_nested_map)) => match value {
// The include value is an object and can be recursively merged
Value::Object(include_nested_map) => {
let combined_key = format!("{}.{}", outer_key, key);
// Recursively merge maps
Self::merge_maps(
self_nested_map,
include_nested_map,
&combined_key,
include_path,
)?;
}
_ => {
// Cannot merge object and non-object
return Err(Error::validate(format!(
"manifest include had a conflicting `{}.{}`: {}",
outer_key,
key,
include_path.display()
)));
}
},
Some(Value::Array(self_nested_vec)) => match value {
// The include value is an array and can be merged, unless
// `allow_array_concatenation_keys` is used and the key is not included.
Value::Array(include_nested_vec) => {
if let Some(allowed_keys) = &allow_array_concatenation_keys {
if !allowed_keys.contains(&key.as_str()) {
// This key wasn't present in `allow_array_concatenation_keys` and so
// merging is disallowed.
return Err(Error::validate(format!(
"manifest include had a conflicting `{}.{}`: {}",
outer_key,
key,
include_path.display()
)));
}
}
let mut new_values = include_nested_vec.clone();
self_nested_vec.append(&mut new_values);
}
_ => {
// Cannot merge array and non-array
return Err(Error::validate(format!(
"manifest include had a conflicting `{}.{}`: {}",
outer_key,
key,
include_path.display()
)));
}
},
_ => {
// Cannot merge object and non-object
return Err(Error::validate(format!(
"manifest include had a conflicting `{}.{}`: {}",
outer_key,
key,
include_path.display()
)));
}
}
}
Ok(())
}
fn merge_facets(
&mut self,
other: &mut Document,
include_path: &path::Path,
) -> Result<(), Error> {
if let None = other.facets {
return Ok(());
}
if let None = self.facets {
self.facets = Some(Default::default());
}
let my_facets = self.facets.as_mut().unwrap();
let other_facets = other.facets.as_ref().unwrap();
Self::merge_maps(my_facets, other_facets, "facets", include_path)
}
fn merge_config(
&mut self,
other: &mut Document,
include_path: &path::Path,
) -> Result<(), Error> {
if let Some(other_config) = other.config.as_mut() {
if let Some(self_config) = self.config.as_mut() {
for (key, field) in other_config {
match self_config.entry(key.clone()) {
std::collections::btree_map::Entry::Vacant(v) => {
v.insert(field.clone());
}
std::collections::btree_map::Entry::Occupied(o) => {
if o.get() != field {
let msg = format!(
"Found conflicting entry for config key `{key}` in `{}`.",
include_path.display()
);
return Err(Error::validate(&msg));
}
}
}
}
} else {
self.config.replace(std::mem::take(other_config));
}
}
Ok(())
}
pub fn includes(&self) -> Vec<String> {
self.include.clone().unwrap_or_default()
}
pub fn all_children_names(&self) -> Vec<&Name> {
if let Some(children) = self.children.as_ref() {
children.iter().map(|c| &c.name).collect()
} else {
vec![]
}
}
pub fn all_collection_names(&self) -> Vec<&Name> {
if let Some(collections) = self.collections.as_ref() {
collections.iter().map(|c| &c.name).collect()
} else {
vec![]
}
}
pub fn all_storage_names(&self) -> Vec<&Name> {
if let Some(capabilities) = self.capabilities.as_ref() {
capabilities.iter().filter_map(|c| c.storage.as_ref()).collect()
} else {
vec![]
}
}
pub fn all_storage_with_sources<'a>(&'a self) -> HashMap<&'a Name, &'a CapabilityFromRef> {
if let Some(capabilities) = self.capabilities.as_ref() {
capabilities
.iter()
.filter_map(|c| match (c.storage.as_ref(), c.from.as_ref()) {
(Some(s), Some(f)) => Some((s, f)),
_ => None,
})
.collect()
} else {
HashMap::new()
}
}
pub fn all_service_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| {
c.iter().filter_map(|c| c.service.as_ref()).map(|p| p.iter()).flatten().collect()
})
.unwrap_or_else(|| vec![])
}
pub fn all_protocol_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| {
c.iter().filter_map(|c| c.protocol.as_ref()).map(|p| p.iter()).flatten().collect()
})
.unwrap_or_else(|| vec![])
}
pub fn all_directory_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| c.iter().filter_map(|c| c.directory.as_ref()).collect())
.unwrap_or_else(|| vec![])
}
pub fn all_runner_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| c.iter().filter_map(|c| c.runner.as_ref()).collect())
.unwrap_or_else(|| vec![])
}
pub fn all_resolver_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| c.iter().filter_map(|c| c.resolver.as_ref()).collect())
.unwrap_or_else(|| vec![])
}
pub fn all_dictionary_names(&self) -> Vec<&Name> {
if let Some(capabilities) = self.capabilities.as_ref() {
capabilities.iter().filter_map(|c| c.dictionary.as_ref()).collect()
} else {
vec![]
}
}
pub fn all_dictionaries<'a>(&'a self) -> HashMap<&'a Name, &'a Capability> {
if let Some(capabilities) = self.capabilities.as_ref() {
capabilities
.iter()
.filter_map(|c| match c.dictionary.as_ref() {
Some(s) => Some((s, c)),
_ => None,
})
.collect()
} else {
HashMap::new()
}
}
pub fn all_config_names(&self) -> Vec<&Name> {
self.capabilities
.as_ref()
.map(|c| c.iter().filter_map(|c| c.config.as_ref()).collect())
.unwrap_or_else(|| vec![])
}
pub fn all_environment_names(&self) -> Vec<&Name> {
self.environments
.as_ref()
.map(|c| c.iter().map(|s| &s.name).collect())
.unwrap_or_else(|| vec![])
}
pub fn all_capability_names(&self) -> HashSet<&Name> {
self.capabilities
.as_ref()
.map(|c| {
c.iter().fold(HashSet::new(), |mut acc, capability| {
acc.extend(capability.names());
acc
})
})
.unwrap_or_default()
}
}
/// Trait that allows us to merge `serde_json::Map`s into `indexmap::IndexMap`s and vice versa.
trait ValueMap {
fn get_mut(&mut self, key: &str) -> Option<&mut Value>;
fn insert(&mut self, key: String, val: Value);
}
impl ValueMap for Map<String, Value> {
fn get_mut(&mut self, key: &str) -> Option<&mut Value> {
self.get_mut(key)
}
fn insert(&mut self, key: String, val: Value) {
self.insert(key, val);
}
}
impl ValueMap for IndexMap<String, Value> {
fn get_mut(&mut self, key: &str) -> Option<&mut Value> {
self.get_mut(key)
}
fn insert(&mut self, key: String, val: Value) {
self.insert(key, val);
}
}
#[derive(Deserialize, Debug, PartialEq, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum EnvironmentExtends {
Realm,
None,
}
/// Example:
///
/// ```json5
/// environments: [
/// {
/// name: "test-env",
/// extends: "realm",
/// runners: [
/// {
/// runner: "gtest-runner",
/// from: "#gtest",
/// },
/// ],
/// resolvers: [
/// {
/// resolver: "full-resolver",
/// from: "parent",
/// scheme: "fuchsia-pkg",
/// },
/// ],
/// },
/// ],
/// ```
#[derive(Deserialize, Debug, PartialEq, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
pub struct Environment {
/// The name of the environment, which is a string of one or more of the
/// following characters: `a-z`, `0-9`, `_`, `.`, `-`. The name identifies this
/// environment when used in a [reference](#references).
pub name: Name,
/// How the environment should extend this realm's environment.
/// - `realm`: Inherit all properties from this component's environment.
/// - `none`: Start with an empty environment, do not inherit anything.
#[serde(skip_serializing_if = "Option::is_none")]
pub extends: Option<EnvironmentExtends>,
/// The runners registered in the environment. An array of objects
/// with the following properties:
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub runners: Option<Vec<RunnerRegistration>>,
/// The resolvers registered in the environment. An array of
/// objects with the following properties:
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub resolvers: Option<Vec<ResolverRegistration>>,
/// Debug protocols available to any component in this environment acquired
/// through `use from debug`.
#[reference_doc(recurse)]
#[serde(skip_serializing_if = "Option::is_none")]
pub debug: Option<Vec<DebugRegistration>>,
/// The number of milliseconds to wait, after notifying a component in this environment that it
/// should terminate, before forcibly killing it. This field is required if the environment
/// extends from `none`.
#[serde(rename = "__stop_timeout_ms")]
#[reference_doc(json_type = "number", rename = "__stop_timeout_ms")]
#[serde(skip_serializing_if = "Option::is_none")]
pub stop_timeout_ms: Option<StopTimeoutMs>,
}
impl Environment {
pub fn merge_from(&mut self, other: &mut Self) -> Result<(), Error> {
if self.extends.is_none() {
self.extends = other.extends.take();
} else if other.extends.is_some() && other.extends != self.extends {
return Err(Error::validate(
"cannot merge `environments` that declare conflicting `extends`",
));
}
if self.stop_timeout_ms.is_none() {
self.stop_timeout_ms = other.stop_timeout_ms;
} else if other.stop_timeout_ms.is_some() && other.stop_timeout_ms != self.stop_timeout_ms {
return Err(Error::validate(
"cannot merge `environments` that declare conflicting `stop_timeout_ms`",
));
}
// Perform naive vector concatenation and rely on later validation to ensure
// no conflicting entries.
match &mut self.runners {
Some(r) => {
if let Some(o) = &mut other.runners {
r.append(o);
}
}
None => self.runners = other.runners.take(),
}
match &mut self.resolvers {
Some(r) => {
if let Some(o) = &mut other.resolvers {
r.append(o);
}
}
None => self.resolvers = other.resolvers.take(),
}
match &mut self.debug {
Some(r) => {
if let Some(o) = &mut other.debug {
r.append(o);
}
}
None => self.debug = other.debug.take(),
}
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum ConfigType {
Bool,
Uint8,
Uint16,
Uint32,
Uint64,
Int8,
Int16,
Int32,
Int64,
String,
Vector,
}
impl From<&cm_rust::ConfigValueType> for ConfigType {
fn from(value: &cm_rust::ConfigValueType) -> Self {
match value {
cm_rust::ConfigValueType::Bool => ConfigType::Bool,
cm_rust::ConfigValueType::Uint8 => ConfigType::Uint8,
cm_rust::ConfigValueType::Int8 => ConfigType::Int8,
cm_rust::ConfigValueType::Uint16 => ConfigType::Uint16,
cm_rust::ConfigValueType::Int16 => ConfigType::Int16,
cm_rust::ConfigValueType::Uint32 => ConfigType::Uint32,
cm_rust::ConfigValueType::Int32 => ConfigType::Int32,
cm_rust::ConfigValueType::Uint64 => ConfigType::Uint64,
cm_rust::ConfigValueType::Int64 => ConfigType::Int64,
cm_rust::ConfigValueType::String { .. } => ConfigType::String,
cm_rust::ConfigValueType::Vector { .. } => ConfigType::Vector,
}
}
}
#[derive(Clone, Hash, Debug, PartialEq, PartialOrd, Eq, Ord, Serialize)]
pub struct ConfigKey(String);
impl ConfigKey {
pub fn as_str(&self) -> &str {
self.0.as_str()
}
}
impl std::fmt::Display for ConfigKey {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl FromStr for ConfigKey {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, ParseError> {
let length = s.len();
if length == 0 {
return Err(ParseError::Empty);
}
if length > 64 {
return Err(ParseError::TooLong);
}
// identifiers must start with a letter
let first_is_letter = s.chars().next().expect("non-empty string").is_ascii_lowercase();
// can contain letters, numbers, and underscores
let contains_invalid_chars =
s.chars().any(|c| !(c.is_ascii_lowercase() || c.is_ascii_digit() || c == '_'));
// cannot end with an underscore
let last_is_underscore = s.chars().next_back().expect("non-empty string") == '_';
if !first_is_letter || contains_invalid_chars || last_is_underscore {
return Err(ParseError::InvalidValue);
}
Ok(Self(s.to_string()))
}
}
impl<'de> de::Deserialize<'de> for ConfigKey {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
impl<'de> de::Visitor<'de> for Visitor {
type Value = ConfigKey;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(
"a non-empty string no more than 64 characters in length, which must \
start with a letter, can contain letters, numbers, and underscores, \
but cannot end with an underscore",
)
}
fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
where
E: de::Error,
{
s.parse().map_err(|err| match err {
ParseError::InvalidValue => E::invalid_value(
de::Unexpected::Str(s),
&"a name which must start with a letter, can contain letters, \
numbers, and underscores, but cannot end with an underscore",
),
ParseError::TooLong | ParseError::Empty => E::invalid_length(
s.len(),
&"a non-empty name no more than 64 characters in length",
),
e => {
panic!("unexpected parse error: {:?}", e);
}
})
}
}
deserializer.deserialize_string(Visitor)
}
}
#[derive(Clone, Deserialize, Debug, PartialEq, Serialize)]
#[serde(deny_unknown_fields, rename_all = "lowercase")]
pub enum ConfigRuntimeSource {
Parent,
}
#[derive(Clone, Deserialize, Debug, PartialEq, Serialize)]
#[serde(tag = "type", deny_unknown_fields, rename_all = "lowercase")]
pub enum ConfigValueType {
Bool {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Uint8 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Uint16 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Uint32 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Uint64 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Int8 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Int16 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Int32 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Int64 {
mutability: Option<Vec<ConfigRuntimeSource>>,
},
String {
max_size: NonZeroU32,
mutability: Option<Vec<ConfigRuntimeSource>>,
},
Vector {
max_count: NonZeroU32,
element: ConfigNestedValueType,
mutability: Option<Vec<ConfigRuntimeSource>>,
},
}
impl ConfigValueType {
/// Update the hasher by digesting the ConfigValueType enum value
pub fn update_digest(&self, hasher: &mut impl sha2::Digest) {
let val = match self {
ConfigValueType::Bool { .. } => 0u8,
ConfigValueType::Uint8 { .. } => 1u8,
ConfigValueType::Uint16 { .. } => 2u8,
ConfigValueType::Uint32 { .. } => 3u8,
ConfigValueType::Uint64 { .. } => 4u8,
ConfigValueType::Int8 { .. } => 5u8,
ConfigValueType::Int16 { .. } => 6u8,
ConfigValueType::Int32 { .. } => 7u8,
ConfigValueType::Int64 { .. } => 8u8,
ConfigValueType::String { max_size, .. } => {
hasher.update(max_size.get().to_le_bytes());
9u8
}
ConfigValueType::Vector { max_count, element, .. } => {
hasher.update(max_count.get().to_le_bytes());
element.update_digest(hasher);
10u8
}
};
hasher.update([val])
}
}
impl From<ConfigValueType> for cm_rust::ConfigValueType {
fn from(value: ConfigValueType) -> Self {
match value {
ConfigValueType::Bool { .. } => cm_rust::ConfigValueType::Bool,
ConfigValueType::Uint8 { .. } => cm_rust::ConfigValueType::Uint8,
ConfigValueType::Uint16 { .. } => cm_rust::ConfigValueType::Uint16,
ConfigValueType::Uint32 { .. } => cm_rust::ConfigValueType::Uint32,
ConfigValueType::Uint64 { .. } => cm_rust::ConfigValueType::Uint64,
ConfigValueType::Int8 { .. } => cm_rust::ConfigValueType::Int8,
ConfigValueType::Int16 { .. } => cm_rust::ConfigValueType::Int16,
ConfigValueType::Int32 { .. } => cm_rust::ConfigValueType::Int32,
ConfigValueType::Int64 { .. } => cm_rust::ConfigValueType::Int64,
ConfigValueType::String { max_size, .. } => {
cm_rust::ConfigValueType::String { max_size: max_size.into() }
}
ConfigValueType::Vector { max_count, element, .. } => {
cm_rust::ConfigValueType::Vector {
max_count: max_count.into(),
nested_type: element.into(),
}
}
}
}
}
#[derive(Clone, Deserialize, Debug, PartialEq, Serialize)]
#[serde(tag = "type", deny_unknown_fields, rename_all = "lowercase")]
pub enum ConfigNestedValueType {
Bool {},
Uint8 {},
Uint16 {},
Uint32 {},
Uint64 {},
Int8 {},
Int16 {},
Int32 {},
Int64 {},
String { max_size: NonZeroU32 },
}
impl ConfigNestedValueType {
/// Update the hasher by digesting the ConfigVectorElementType enum value
pub fn update_digest(&self, hasher: &mut impl sha2::Digest) {
let val = match self {
ConfigNestedValueType::Bool {} => 0u8,
ConfigNestedValueType::Uint8 {} => 1u8,
ConfigNestedValueType::Uint16 {} => 2u8,
ConfigNestedValueType::Uint32 {} => 3u8,
ConfigNestedValueType::Uint64 {} => 4u8,
ConfigNestedValueType::Int8 {} => 5u8,
ConfigNestedValueType::Int16 {} => 6u8,
ConfigNestedValueType::Int32 {} => 7u8,
ConfigNestedValueType::Int64 {} => 8u8,
ConfigNestedValueType::String { max_size } => {
hasher.update(max_size.get().to_le_bytes());
9u8
}
};
hasher.update([val])
}
}
impl From<ConfigNestedValueType> for cm_rust::ConfigNestedValueType {
fn from(value: ConfigNestedValueType) -> Self {
match value {
ConfigNestedValueType::Bool {} => cm_rust::ConfigNestedValueType::Bool,
ConfigNestedValueType::Uint8 {} => cm_rust::ConfigNestedValueType::Uint8,
ConfigNestedValueType::Uint16 {} => cm_rust::ConfigNestedValueType::Uint16,
ConfigNestedValueType::Uint32 {} => cm_rust::ConfigNestedValueType::Uint32,
ConfigNestedValueType::Uint64 {} => cm_rust::ConfigNestedValueType::Uint64,
ConfigNestedValueType::Int8 {} => cm_rust::ConfigNestedValueType::Int8,
ConfigNestedValueType::Int16 {} => cm_rust::ConfigNestedValueType::Int16,
ConfigNestedValueType::Int32 {} => cm_rust::ConfigNestedValueType::Int32,
ConfigNestedValueType::Int64 {} => cm_rust::ConfigNestedValueType::Int64,
ConfigNestedValueType::String { max_size } => {
cm_rust::ConfigNestedValueType::String { max_size: max_size.into() }
}
}
}
}
impl TryFrom<&cm_rust::ConfigNestedValueType> for ConfigNestedValueType {
type Error = ();
fn try_from(nested: &cm_rust::ConfigNestedValueType) -> Result<Self, ()> {
Ok(match nested {
cm_rust::ConfigNestedValueType::Bool => ConfigNestedValueType::Bool {},
cm_rust::ConfigNestedValueType::Uint8 => ConfigNestedValueType::Uint8 {},
cm_rust::ConfigNestedValueType::Int8 => ConfigNestedValueType::Int8 {},
cm_rust::ConfigNestedValueType::Uint16 => ConfigNestedValueType::Uint16 {},
cm_rust::ConfigNestedValueType::Int16 => ConfigNestedValueType::Int16 {},
cm_rust::ConfigNestedValueType::Uint32 => ConfigNestedValueType::Uint32 {},
cm_rust::ConfigNestedValueType::Int32 => ConfigNestedValueType::Int32 {},
cm_rust::ConfigNestedValueType::Uint64 => ConfigNestedValueType::Uint64 {},
cm_rust::ConfigNestedValueType::Int64 => ConfigNestedValueType::Int64 {},
cm_rust::ConfigNestedValueType::String { max_size } => {
ConfigNestedValueType::String { max_size: NonZeroU32::new(*max_size).ok_or(())? }
}
})
}
}
#[derive(Deserialize, Debug, PartialEq, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list")]
pub struct RunnerRegistration {
/// The [name](#name) of a runner capability, whose source is specified in `from`.
pub runner: Name,
/// The source of the runner capability, one of:
/// - `parent`: The component's parent.
/// - `self`: This component.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
pub from: RegistrationRef,
/// An explicit name for the runner as it will be known in
/// this environment. If omitted, defaults to `runner`.
#[serde(skip_serializing_if = "Option::is_none")]
pub r#as: Option<Name>,
}
#[derive(Deserialize, Debug, PartialEq, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list")]
pub struct ResolverRegistration {
/// The [name](#name) of a resolver capability,
/// whose source is specified in `from`.
pub resolver: Name,
/// The source of the resolver capability, one of:
/// - `parent`: The component's parent.
/// - `self`: This component.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
pub from: RegistrationRef,
/// The URL scheme for which the resolver should handle
/// resolution.
pub scheme: cm_types::UrlScheme,
}
#[derive(Deserialize, Debug, PartialEq, Clone, ReferenceDoc, Serialize, Default)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list")]
pub struct Capability {
/// The [name](#name) for this service capability. Specifying `path` is valid
/// only when this value is a string.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub service: Option<OneOrMany<Name>>,
/// The [name](#name) for this protocol capability. Specifying `path` is valid
/// only when this value is a string.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub protocol: Option<OneOrMany<Name>>,
/// The [name](#name) for this directory capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub directory: Option<Name>,
/// The [name](#name) for this storage capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub storage: Option<Name>,
/// The [name](#name) for this runner capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub runner: Option<Name>,
/// The [name](#name) for this resolver capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub resolver: Option<Name>,
/// The [name](#name) for this event_stream capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub event_stream: Option<OneOrMany<Name>>,
/// The [name](#name) for this dictionary capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub dictionary: Option<Name>,
/// The [name](#name) for this configuration capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub config: Option<Name>,
/// The path within the [outgoing directory][glossary.outgoing directory] of the component's
/// program to source the capability.
///
/// For `protocol` and `service`, defaults to `/svc/${protocol}`, otherwise required.
///
/// For `protocol`, the target of the path MUST be a channel, which tends to speak
/// the protocol matching the name of this capability.
///
/// For `service`, `directory`, the target of the path MUST be a directory.
///
/// For `runner`, the target of the path MUST be a channel and MUST speak
/// the protocol `fuchsia.component.runner.ComponentRunner`.
///
/// For `resolver`, the target of the path MUST be a channel and MUST speak
/// the protocol `fuchsia.component.resolution.Resolver`.
///
/// For `dictionary`, this is optional. If provided, it is a path to a
/// `fuchsia.component.sandbox/DictionaryRouter` served by the program which should return a
/// `fuchsia.component.sandbox/DictionaryRef`, by which the program may dynamically provide
/// a dictionary from itself. If this is set for `dictionary`, `offer` to this dictionary
/// is not allowed.
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<Path>,
/// (`directory` only) The maximum [directory rights][doc-directory-rights] that may be set
/// when using this directory.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(json_type = "array of string")]
pub rights: Option<Rights>,
/// (`storage` only) The source component of an existing directory capability backing this
/// storage capability, one of:
/// - `parent`: The component's parent.
/// - `self`: This component.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
#[serde(skip_serializing_if = "Option::is_none")]
pub from: Option<CapabilityFromRef>,
/// (`storage` only) The [name](#name) of the directory capability backing the storage. The
/// capability must be available from the component referenced in `from`.
#[serde(skip_serializing_if = "Option::is_none")]
pub backing_dir: Option<Name>,
/// (`storage` only) A subdirectory within `backing_dir` where per-component isolated storage
/// directories are created
#[serde(skip_serializing_if = "Option::is_none")]
pub subdir: Option<RelativePath>,
/// (`storage` only) The identifier used to isolated storage for a component, one of:
/// - `static_instance_id`: The instance ID in the component ID index is used
/// as the key for a component's storage. Components which are not listed in
/// the component ID index will not be able to use this storage capability.
/// - `static_instance_id_or_moniker`: If the component is listed in the
/// component ID index, the instance ID is used as the key for a component's
/// storage. Otherwise, the component's moniker from the storage
/// capability is used.
#[serde(skip_serializing_if = "Option::is_none")]
pub storage_id: Option<StorageId>,
/// (`configuration` only) The type of configuration, one of:
/// - `bool`: Boolean type.
/// - `uint8`: Unsigned 8 bit type.
/// - `uint16`: Unsigned 16 bit type.
/// - `uint32`: Unsigned 32 bit type.
/// - `uint64`: Unsigned 64 bit type.
/// - `int8`: Signed 8 bit type.
/// - `int16`: Signed 16 bit type.
/// - `int32`: Signed 32 bit type.
/// - `int64`: Signed 64 bit type.
/// - `string`: ASCII string type.
/// - `vector`: Vector type. See `element` for the type of the element within the vector.
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "type")]
pub config_type: Option<ConfigType>,
/// (`configuration` only) Only supported if this configuration `type` is 'string'.
/// This is the max size of the string.
#[serde(rename = "max_size", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "max_size")]
pub config_max_size: Option<NonZeroU32>,
/// (`configuration` only) Only supported if this configuration `type` is 'vector'.
/// This is the max number of elements in the vector.
#[serde(rename = "max_count", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "max_count")]
pub config_max_count: Option<NonZeroU32>,
/// (`configuration` only) Only supported if this configuration `type` is 'vector'.
/// This is the type of the elements in the configuration vector.
///
/// Example (simple type):
///
/// ```json5
/// { type: "uint8" }
/// ```
///
/// Example (string type):
///
/// ```json5
/// {
/// type: "string",
/// max_size: 100,
/// }
/// ```
#[serde(rename = "element", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "element", json_type = "object")]
pub config_element_type: Option<ConfigNestedValueType>,
/// (`configuration` only) The value of the configuration.
#[serde(skip_serializing_if = "Option::is_none")]
pub value: Option<serde_json::Value>,
/// (`protocol` only) Specifies when the framework will open the protocol
/// from this component's outgoing directory when someone requests the
/// capability. Allowed values are:
///
/// - `eager`: (default) the framework will open the capability as soon as
/// some consumer component requests it.
/// - `on_readable`: the framework will open the capability when the server
/// endpoint pipelined in a connection request becomes readable.
///
#[serde(skip_serializing_if = "Option::is_none")]
pub delivery: Option<DeliveryType>,
}
#[derive(Deserialize, Debug, Clone, PartialEq, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list")]
pub struct DebugRegistration {
/// The name(s) of the protocol(s) to make available.
pub protocol: Option<OneOrMany<Name>>,
/// The source of the capability(s), one of:
/// - `parent`: The component's parent.
/// - `self`: This component.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
pub from: OfferFromRef,
/// If specified, the name that the capability in `protocol` should be made
/// available as to clients. Disallowed if `protocol` is an array.
#[serde(skip_serializing_if = "Option::is_none")]
pub r#as: Option<Name>,
}
#[derive(Debug, PartialEq, Default, Serialize)]
pub struct Program {
#[serde(skip_serializing_if = "Option::is_none")]
pub runner: Option<Name>,
#[serde(flatten)]
pub info: IndexMap<String, Value>,
}
impl<'de> de::Deserialize<'de> for Program {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct Visitor;
const EXPECTED_PROGRAM: &'static str =
"a JSON object that includes a `runner` string property";
const EXPECTED_RUNNER: &'static str =
"a non-empty `runner` string property no more than 255 characters in length \
that consists of [A-Za-z0-9_.-] and starts with [A-Za-z0-9_]";
impl<'de> de::Visitor<'de> for Visitor {
type Value = Program;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(EXPECTED_PROGRAM)
}
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
where
A: de::MapAccess<'de>,
{
let mut info = IndexMap::new();
let mut runner = None;
while let Some(e) = map.next_entry::<String, Value>()? {
let (k, v) = e;
if &k == "runner" {
if let Value::String(s) = v {
runner = Some(s);
} else {
return Err(de::Error::invalid_value(
de::Unexpected::Map,
&EXPECTED_RUNNER,
));
}
} else {
info.insert(k, v);
}
}
let runner = runner
.map(|r| {
Name::new(r.clone()).map_err(|e| match e {
ParseError::InvalidValue => de::Error::invalid_value(
serde::de::Unexpected::Str(&r),
&EXPECTED_RUNNER,
),
ParseError::TooLong | ParseError::Empty => {
de::Error::invalid_length(r.len(), &EXPECTED_RUNNER)
}
_ => {
panic!("unexpected parse error: {:?}", e);
}
})
})
.transpose()?;
Ok(Program { runner, info })
}
}
deserializer.deserialize_map(Visitor)
}
}
/// Example:
///
/// ```json5
/// use: [
/// {
/// protocol: [
/// "fuchsia.ui.scenic.Scenic",
/// "fuchsia.accessibility.Manager",
/// ]
/// },
/// {
/// directory: "themes",
/// path: "/data/themes",
/// rights: [ "r*" ],
/// },
/// {
/// storage: "persistent",
/// path: "/data",
/// },
/// {
/// event_stream: [
/// "started",
/// "stopped",
/// ],
/// from: "framework",
/// },
/// {
/// runner: "own_test_runner".
/// from: "#test_runner",
/// },
/// ],
/// ```
#[derive(Deserialize, Debug, Default, PartialEq, Clone, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
pub struct Use {
/// When using a service capability, the [name](#name) of a [service capability][doc-service].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub service: Option<OneOrMany<Name>>,
/// When using a protocol capability, the [name](#name) of a [protocol capability][doc-protocol].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub protocol: Option<OneOrMany<Name>>,
/// When using a directory capability, the [name](#name) of a [directory capability][doc-directory].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub directory: Option<Name>,
/// When using a storage capability, the [name](#name) of a [storage capability][doc-storage].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub storage: Option<Name>,
/// When using an event stream capability, the [name](#name) of an [event stream capability][doc-event].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub event_stream: Option<OneOrMany<Name>>,
/// When using a runner capability, the [name](#name) of a [runner capability][doc-runners].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub runner: Option<Name>,
/// When using a configuration capability, the [name](#name) of a [configuration capability][doc-configuration].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub config: Option<Name>,
/// The source of the capability. Defaults to `parent`. One of:
/// - `parent`: The component's parent.
/// - `debug`: One of [`debug_capabilities`][fidl-environment-decl] in the
/// environment assigned to this component.
/// - `framework`: The Component Framework runtime.
/// - `self`: This component.
/// - `#<capability-name>`: The name of another capability from which the
/// requested capability is derived.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
///
/// [fidl-environment-decl]: /reference/fidl/fuchsia.component.decl#Environment
#[serde(skip_serializing_if = "Option::is_none")]
pub from: Option<UseFromRef>,
/// The path at which to install the capability in the component's namespace. For protocols,
/// defaults to `/svc/${protocol}`. Required for `directory` and `storage`. This property is
/// disallowed for declarations with arrays of capability names and for runner capabilities.
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<Path>,
/// (`directory` only) the maximum [directory rights][doc-directory-rights] to apply to
/// the directory in the component's namespace.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(json_type = "array of string")]
pub rights: Option<Rights>,
/// (`directory` only) A subdirectory within the directory capability to provide in the
/// component's namespace.
#[serde(skip_serializing_if = "Option::is_none")]
pub subdir: Option<RelativePath>,
/// (`event_stream` only) When defined the event stream will contain events about only the
/// components defined in the scope.
#[serde(skip_serializing_if = "Option::is_none")]
pub scope: Option<OneOrMany<EventScope>>,
/// (`event_stream` only) Capability requested event streams require specifying a filter
/// referring to the protocol to which the events in the event stream apply. The content of the
/// filter will be an object mapping from "name" to the "protocol name".
#[serde(skip_serializing_if = "Option::is_none")]
pub filter: Option<Map<String, Value>>,
/// The type of dependency between the source and
/// this component, one of:
/// - `strong`: a strong dependency, which is used to determine shutdown
/// ordering. Component manager is guaranteed to stop the target before the
/// source. This is the default.
/// - `weak`: a weak dependency, which is ignored during shutdown. When component manager
/// stops the parent realm, the source may stop before the clients. Clients of weak
/// dependencies must be able to handle these dependencies becoming unavailable.
/// This property is disallowed for runner capabilities, which are always a `strong` dependency.
#[serde(skip_serializing_if = "Option::is_none")]
pub dependency: Option<DependencyType>,
/// The expectations around this capability's availability. One
/// of:
/// - `required` (default): a required dependency, the component is unable to perform its
/// work without this capability.
/// - `optional`: an optional dependency, the component will be able to function without this
/// capability (although if the capability is unavailable some functionality may be
/// disabled).
/// - `transitional`: the source may omit the route completely without even having to route
/// from `void`. Used for soft transitions that introduce new capabilities.
/// This property is disallowed for runner capabilities, which are always `required`.
///
/// For more information, see the
/// [availability](/docs/concepts/components/v2/capabilities/availability.md) documentation.
#[serde(skip_serializing_if = "Option::is_none")]
pub availability: Option<Availability>,
/// (`config` only) The configuration key in the component's `config` block that this capability
/// will set.
#[serde(skip_serializing_if = "Option::is_none")]
pub key: Option<Name>,
/// (`config` only) The type of configuration, one of:
/// - `bool`: Boolean type.
/// - `uint8`: Unsigned 8 bit type.
/// - `uint16`: Unsigned 16 bit type.
/// - `uint32`: Unsigned 32 bit type.
/// - `uint64`: Unsigned 64 bit type.
/// - `int8`: Signed 8 bit type.
/// - `int16`: Signed 16 bit type.
/// - `int32`: Signed 32 bit type.
/// - `int64`: Signed 64 bit type.
/// - `string`: ASCII string type.
/// - `vector`: Vector type. See `element` for the type of the element within the vector
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "type")]
pub config_type: Option<ConfigType>,
/// (`configuration` only) Only supported if this configuration `type` is 'string'.
/// This is the max size of the string.
#[serde(rename = "max_size", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "max_size")]
pub config_max_size: Option<NonZeroU32>,
/// (`configuration` only) Only supported if this configuration `type` is 'vector'.
/// This is the max number of elements in the vector.
#[serde(rename = "max_count", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "max_count")]
pub config_max_count: Option<NonZeroU32>,
/// (`configuration` only) Only supported if this configuration `type` is 'vector'.
/// This is the type of the elements in the configuration vector.
///
/// Example (simple type):
///
/// ```json5
/// { type: "uint8" }
/// ```
///
/// Example (string type):
///
/// ```json5
/// {
/// type: "string",
/// max_size: 100,
/// }
/// ```
#[serde(rename = "element", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "element", json_type = "object")]
pub config_element_type: Option<ConfigNestedValueType>,
/// (`configuration` only) The default value of this configuration.
/// Default values are used if the capability is optional and routed from `void`.
/// This is only supported if `availability` is not `required``.
#[serde(rename = "default", skip_serializing_if = "Option::is_none")]
#[reference_doc(rename = "default")]
pub config_default: Option<serde_json::Value>,
}
/// Example:
///
/// ```json5
/// expose: [
/// {
/// directory: "themes",
/// from: "self",
/// },
/// {
/// protocol: "pkg.Cache",
/// from: "#pkg_cache",
/// as: "fuchsia.pkg.PackageCache",
/// },
/// {
/// protocol: [
/// "fuchsia.ui.app.ViewProvider",
/// "fuchsia.fonts.Provider",
/// ],
/// from: "self",
/// },
/// {
/// runner: "web-chromium",
/// from: "#web_runner",
/// as: "web",
/// },
/// {
/// resolver: "full-resolver",
/// from: "#full-resolver",
/// },
/// ],
/// ```
#[derive(Deserialize, Debug, PartialEq, Clone, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
pub struct Expose {
/// When routing a service, the [name](#name) of a [service capability][doc-service].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub service: Option<OneOrMany<Name>>,
/// When routing a protocol, the [name](#name) of a [protocol capability][doc-protocol].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub protocol: Option<OneOrMany<Name>>,
/// When routing a directory, the [name](#name) of a [directory capability][doc-directory].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub directory: Option<OneOrMany<Name>>,
/// When routing a runner, the [name](#name) of a [runner capability][doc-runners].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub runner: Option<OneOrMany<Name>>,
/// When routing a resolver, the [name](#name) of a [resolver capability][doc-resolvers].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub resolver: Option<OneOrMany<Name>>,
/// When routing a dictionary, the [name](#name) of a [dictionary capability][doc-dictionaries].
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub dictionary: Option<OneOrMany<Name>>,
/// When routing a config, the [name](#name) of a configuration capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(skip = true)]
pub config: Option<OneOrMany<Name>>,
/// `from`: The source of the capability, one of:
/// - `self`: This component. Requires a corresponding
/// [`capability`](#capabilities) declaration.
/// - `framework`: The Component Framework runtime.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance.
pub from: OneOrMany<ExposeFromRef>,
/// The [name](#name) for the capability as it will be known by the target. If omitted,
/// defaults to the original name. `as` cannot be used when an array of multiple capability
/// names is provided.
#[serde(skip_serializing_if = "Option::is_none")]
pub r#as: Option<Name>,
/// The capability target. Either `parent` or `framework`. Defaults to `parent`.
#[serde(skip_serializing_if = "Option::is_none")]
pub to: Option<ExposeToRef>,
/// (`directory` only) the maximum [directory rights][doc-directory-rights] to apply to
/// the exposed directory capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(json_type = "array of string")]
pub rights: Option<Rights>,
/// (`directory` only) the relative path of a subdirectory within the source directory
/// capability to route.
#[serde(skip_serializing_if = "Option::is_none")]
pub subdir: Option<RelativePath>,
/// (`event_stream` only) the name(s) of the event streams being exposed.
#[serde(skip_serializing_if = "Option::is_none")]
pub event_stream: Option<OneOrMany<Name>>,
/// (`event_stream` only) the scope(s) of the event streams being exposed. This is used to
/// downscope the range of components to which an event stream refers and make it refer only to
/// the components defined in the scope.
#[serde(skip_serializing_if = "Option::is_none")]
pub scope: Option<OneOrMany<EventScope>>,
/// `availability` _(optional)_: The expectations around this capability's availability. Affects
/// build-time and runtime route validation. One of:
/// - `required` (default): a required dependency, the source must exist and provide it. Use
/// this when the target of this expose requires this capability to function properly.
/// - `optional`: an optional dependency. Use this when the target of the expose can function
/// with or without this capability. The target must not have a `required` dependency on the
/// capability. The ultimate source of this expose must be `void` or an actual component.
/// - `same_as_target`: the availability expectations of this capability will match the
/// target's. If the target requires the capability, then this field is set to `required`.
/// If the target has an optional dependency on the capability, then the field is set to
/// `optional`.
/// - `transitional`: like `optional`, but will tolerate a missing source. Use this
/// only to avoid validation errors during transitional periods of multi-step code changes.
///
/// For more information, see the
/// [availability](/docs/concepts/components/v2/capabilities/availability.md) documentation.
#[serde(skip_serializing_if = "Option::is_none")]
pub availability: Option<Availability>,
/// Whether or not the source of this offer must exist. One of:
/// - `required` (default): the source (`from`) must be defined in this manifest.
/// - `unknown`: the source of this offer will be rewritten to `void` if its source (`from`)
/// is not defined in this manifest after includes are processed.
#[serde(skip_serializing_if = "Option::is_none")]
pub source_availability: Option<SourceAvailability>,
}
impl Expose {
pub fn new_from(from: OneOrMany<ExposeFromRef>) -> Self {
Self {
from,
service: None,
protocol: None,
directory: None,
config: None,
runner: None,
resolver: None,
dictionary: None,
r#as: None,
to: None,
rights: None,
subdir: None,
event_stream: None,
scope: None,
availability: None,
source_availability: None,
}
}
}
/// Example:
///
/// ```json5
/// offer: [
/// {
/// protocol: "fuchsia.logger.LogSink",
/// from: "#logger",
/// to: [ "#fshost", "#pkg_cache" ],
/// dependency: "weak",
/// },
/// {
/// protocol: [
/// "fuchsia.ui.app.ViewProvider",
/// "fuchsia.fonts.Provider",
/// ],
/// from: "#session",
/// to: [ "#ui_shell" ],
/// dependency: "strong",
/// },
/// {
/// directory: "blobfs",
/// from: "self",
/// to: [ "#pkg_cache" ],
/// },
/// {
/// directory: "fshost-config",
/// from: "parent",
/// to: [ "#fshost" ],
/// as: "config",
/// },
/// {
/// storage: "cache",
/// from: "parent",
/// to: [ "#logger" ],
/// },
/// {
/// runner: "web",
/// from: "parent",
/// to: [ "#user-shell" ],
/// },
/// {
/// resolver: "full-resolver",
/// from: "parent",
/// to: [ "#user-shell" ],
/// },
/// {
/// event_stream: "stopped",
/// from: "framework",
/// to: [ "#logger" ],
/// },
/// ],
/// ```
#[derive(Deserialize, Debug, PartialEq, Clone, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
pub struct Offer {
/// When routing a service, the [name](#name) of a [service capability][doc-service].
#[serde(skip_serializing_if = "Option::is_none")]
pub service: Option<OneOrMany<Name>>,
/// When routing a protocol, the [name](#name) of a [protocol capability][doc-protocol].
#[serde(skip_serializing_if = "Option::is_none")]
pub protocol: Option<OneOrMany<Name>>,
/// When routing a directory, the [name](#name) of a [directory capability][doc-directory].
#[serde(skip_serializing_if = "Option::is_none")]
pub directory: Option<OneOrMany<Name>>,
/// When routing a runner, the [name](#name) of a [runner capability][doc-runners].
#[serde(skip_serializing_if = "Option::is_none")]
pub runner: Option<OneOrMany<Name>>,
/// When routing a resolver, the [name](#name) of a [resolver capability][doc-resolvers].
#[serde(skip_serializing_if = "Option::is_none")]
pub resolver: Option<OneOrMany<Name>>,
/// When routing a storage capability, the [name](#name) of a [storage capability][doc-storage].
#[serde(skip_serializing_if = "Option::is_none")]
pub storage: Option<OneOrMany<Name>>,
/// When routing a dictionary, the [name](#name) of a [dictionary capability][doc-dictionaries].
#[serde(skip_serializing_if = "Option::is_none")]
pub dictionary: Option<OneOrMany<Name>>,
/// When routing a config, the [name](#name) of a configuration capability.
#[serde(skip_serializing_if = "Option::is_none")]
pub config: Option<OneOrMany<Name>>,
/// `from`: The source of the capability, one of:
/// - `parent`: The component's parent. This source can be used for all
/// capability types.
/// - `self`: This component. Requires a corresponding
/// [`capability`](#capabilities) declaration.
/// - `framework`: The Component Framework runtime.
/// - `#<child-name>`: A [reference](#references) to a child component
/// instance. This source can only be used when offering protocol,
/// directory, or runner capabilities.
/// - `void`: The source is intentionally omitted. Only valid when `availability` is
/// `optional` or `transitional`.
pub from: OneOrMany<OfferFromRef>,
/// Capability target(s). One of:
/// - `#<target-name>` or \[`#name1`, ...\]: A [reference](#references) to a child or collection,
/// or an array of references.
/// - `all`: Short-hand for an `offer` clause containing all child [references](#references).
pub to: OneOrMany<OfferToRef>,
/// An explicit [name](#name) for the capability as it will be known by the target. If omitted,
/// defaults to the original name. `as` cannot be used when an array of multiple names is
/// provided.
#[serde(skip_serializing_if = "Option::is_none")]
pub r#as: Option<Name>,
/// The type of dependency between the source and
/// targets, one of:
/// - `strong`: a strong dependency, which is used to determine shutdown
/// ordering. Component manager is guaranteed to stop the target before the
/// source. This is the default.
/// - `weak`: a weak dependency, which is ignored during
/// shutdown. When component manager stops the parent realm, the source may
/// stop before the clients. Clients of weak dependencies must be able to
/// handle these dependencies becoming unavailable.
#[serde(skip_serializing_if = "Option::is_none")]
pub dependency: Option<DependencyType>,
/// (`directory` only) the maximum [directory rights][doc-directory-rights] to apply to
/// the offered directory capability.
#[serde(skip_serializing_if = "Option::is_none")]
#[reference_doc(json_type = "array of string")]
pub rights: Option<Rights>,
/// (`directory` only) the relative path of a subdirectory within the source directory
/// capability to route.
#[serde(skip_serializing_if = "Option::is_none")]
pub subdir: Option<RelativePath>,
/// (`event_stream` only) the name(s) of the event streams being offered.
#[serde(skip_serializing_if = "Option::is_none")]
pub event_stream: Option<OneOrMany<Name>>,
/// (`event_stream` only) When defined the event stream will contain events about only the
/// components defined in the scope.
#[serde(skip_serializing_if = "Option::is_none")]
pub scope: Option<OneOrMany<EventScope>>,
/// `availability` _(optional)_: The expectations around this capability's availability. Affects
/// build-time and runtime route validation. One of:
/// - `required` (default): a required dependency, the source must exist and provide it. Use
/// this when the target of this offer requires this capability to function properly.
/// - `optional`: an optional dependency. Use this when the target of the offer can function
/// with or without this capability. The target must not have a `required` dependency on the
/// capability. The ultimate source of this offer must be `void` or an actual component.
/// - `same_as_target`: the availability expectations of this capability will match the
/// target's. If the target requires the capability, then this field is set to `required`.
/// If the target has an optional dependency on the capability, then the field is set to
/// `optional`.
/// - `transitional`: like `optional`, but will tolerate a missing source. Use this
/// only to avoid validation errors during transitional periods of multi-step code changes.
///
/// For more information, see the
/// [availability](/docs/concepts/components/v2/capabilities/availability.md) documentation.
#[serde(skip_serializing_if = "Option::is_none")]
pub availability: Option<Availability>,
/// Whether or not the source of this offer must exist. One of:
/// - `required` (default): the source (`from`) must be defined in this manifest.
/// - `unknown`: the source of this offer will be rewritten to `void` if its source (`from`)
/// is not defined in this manifest after includes are processed.
#[serde(skip_serializing_if = "Option::is_none")]
pub source_availability: Option<SourceAvailability>,
}
/// Example:
///
/// ```json5
/// children: [
/// {
/// name: "logger",
/// url: "fuchsia-pkg://fuchsia.com/logger#logger.cm",
/// },
/// {
/// name: "pkg_cache",
/// url: "fuchsia-pkg://fuchsia.com/pkg_cache#meta/pkg_cache.cm",
/// startup: "eager",
/// },
/// {
/// name: "child",
/// url: "#meta/child.cm",
/// }
/// ],
/// ```
///
/// [component-url]: /docs/reference/components/url.md
/// [doc-eager]: /docs/development/components/connect.md#eager
/// [doc-reboot-on-terminate]: /docs/development/components/connect.md#reboot-on-terminate
#[derive(ReferenceDoc, Deserialize, Debug, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
pub struct Child {
/// The name of the child component instance, which is a string of one
/// or more of the following characters: `a-z`, `0-9`, `_`, `.`, `-`. The name
/// identifies this component when used in a [reference](#references).
pub name: Name,
/// The [component URL][component-url] for the child component instance.
pub url: Url,
/// The component instance's startup mode. One of:
/// - `lazy` _(default)_: Start the component instance only if another
/// component instance binds to it.
/// - [`eager`][doc-eager]: Start the component instance as soon as its parent
/// starts.
#[serde(default)]
#[serde(skip_serializing_if = "StartupMode::is_lazy")]
pub startup: StartupMode,
/// Determines the fault recovery policy to apply if this component terminates.
/// - `none` _(default)_: Do nothing.
/// - `reboot`: Gracefully reboot the system if the component terminates for
/// any reason. This is a special feature for use only by a narrow set of
/// components; see [Termination policies][doc-reboot-on-terminate] for more
/// information.
#[serde(skip_serializing_if = "Option::is_none")]
pub on_terminate: Option<OnTerminate>,
/// If present, the name of the environment to be assigned to the child component instance, one
/// of [`environments`](#environments). If omitted, the child will inherit the same environment
/// assigned to this component.
#[serde(skip_serializing_if = "Option::is_none")]
pub environment: Option<EnvironmentRef>,
}
#[derive(Deserialize, Debug, PartialEq, ReferenceDoc, Serialize)]
#[serde(deny_unknown_fields)]
#[reference_doc(fields_as = "list", top_level_doc_after_fields)]
/// Example:
///
/// ```json5
/// collections: [
/// {
/// name: "tests",
/// durability: "transient",
/// },
/// ],
/// ```
pub struct Collection {
/// The name of the component collection, which is a string of one or
/// more of the following characters: `a-z`, `0-9`, `_`, `.`, `-`. The name
/// identifies this collection when used in a [reference](#references).
pub name: Name,
/// The duration of child component instances in the collection.
/// - `transient`: The instance exists until its parent is stopped or it is
/// explicitly destroyed.
/// - `single_run`: The instance is started when it is created, and destroyed
/// when it is stopped.
pub durability: Durability,
/// If present, the environment that will be
/// assigned to instances in this collection, one of
/// [`environments`](#environments). If omitted, instances in this collection
/// will inherit the same environment assigned to this component.
pub environment: Option<EnvironmentRef>,
/// Constraints on the dynamic offers that target the components in this collection.
/// Dynamic offers are specified when calling `fuchsia.component.Realm/CreateChild`.
/// - `static_only`: Only those specified in this `.cml` file. No dynamic offers.
/// This is the default.
/// - `static_and_dynamic`: Both static offers and those specified at runtime
/// with `CreateChild` are allowed.
pub allowed_offers: Option<AllowedOffers>,
/// Allow child names up to 1024 characters long instead of the usual 255 character limit.
/// Default is false.
pub allow_long_names: Option<bool>,
/// If set to `true`, the data in isolated storage used by dynamic child instances and
/// their descendants will persist after the instances are destroyed. A new child instance
/// created with the same name will share the same storage path as the previous instance.
pub persistent_storage: Option<bool>,
}
pub trait FromClause {
fn from_(&self) -> OneOrMany<AnyRef<'_>>;
}
pub trait CapabilityClause: Clone + PartialEq + std::fmt::Debug {
fn service(&self) -> Option<OneOrMany<&Name>>;
fn protocol(&self) -> Option<OneOrMany<&Name>>;
fn directory(&self) -> Option<OneOrMany<&Name>>;
fn storage(&self) -> Option<OneOrMany<&Name>>;
fn runner(&self) -> Option<OneOrMany<&Name>>;
fn resolver(&self) -> Option<OneOrMany<&Name>>;
fn event_stream(&self) -> Option<OneOrMany<&Name>>;
fn dictionary(&self) -> Option<OneOrMany<&Name>>;
fn config(&self) -> Option<OneOrMany<&Name>>;
fn set_service(&mut self, o: Option<OneOrMany<Name>>);
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>);
fn set_directory(&mut self, o: Option<OneOrMany<Name>>);
fn set_storage(&mut self, o: Option<OneOrMany<Name>>);
fn set_runner(&mut self, o: Option<OneOrMany<Name>>);
fn set_resolver(&mut self, o: Option<OneOrMany<Name>>);
fn set_event_stream(&mut self, o: Option<OneOrMany<Name>>);
fn set_dictionary(&mut self, o: Option<OneOrMany<Name>>);
fn set_config(&mut self, o: Option<OneOrMany<Name>>);
fn availability(&self) -> Option<Availability>;
fn set_availability(&mut self, a: Option<Availability>);
/// Returns the name of the capability for display purposes.
/// If `service()` returns `Some`, the capability name must be "service", etc.
///
/// Returns an error if the capability name is not set, or if there is more than one.
fn capability_type(&self) -> Result<&'static str, Error> {
let mut types = Vec::new();
if self.service().is_some() {
types.push("service");
}
if self.protocol().is_some() {
types.push("protocol");
}
if self.directory().is_some() {
types.push("directory");
}
if self.storage().is_some() {
types.push("storage");
}
if self.event_stream().is_some() {
types.push("event_stream");
}
if self.runner().is_some() {
types.push("runner");
}
if self.config().is_some() {
types.push("config");
}
if self.resolver().is_some() {
types.push("resolver");
}
if self.dictionary().is_some() {
types.push("dictionary");
}
match types.len() {
0 => {
let supported_keywords = self
.supported()
.into_iter()
.map(|k| format!("\"{}\"", k))
.collect::<Vec<_>>()
.join(", ");
Err(Error::validate(format!(
"`{}` declaration is missing a capability keyword, one of: {}",
self.decl_type(),
supported_keywords,
)))
}
1 => Ok(types[0]),
_ => Err(Error::validate(format!(
"{} declaration has multiple capability types defined: {:?}",
self.decl_type(),
types
))),
}
}
/// Returns true if this capability type allows the ::Many variant of OneOrMany.
fn are_many_names_allowed(&self) -> bool;
fn decl_type(&self) -> &'static str;
fn supported(&self) -> &[&'static str];
/// Returns the names of the capabilities in this clause.
/// If `protocol()` returns `Some(OneOrMany::Many(vec!["a", "b"]))`, this returns!["a", "b"].
fn names(&self) -> Vec<&Name> {
let res = vec![
self.service(),
self.protocol(),
self.directory(),
self.storage(),
self.runner(),
self.config(),
self.resolver(),
self.event_stream(),
self.dictionary(),
];
res.into_iter()
.map(|o| o.map(|o| o.into_iter().collect::<Vec<&Name>>()).unwrap_or(vec![]))
.flatten()
.collect()
}
fn set_names(&mut self, names: Vec<Name>) {
let names = match names.len() {
0 => None,
1 => Some(OneOrMany::One(names.first().unwrap().clone())),
_ => Some(OneOrMany::Many(names)),
};
let cap_type = self.capability_type().unwrap();
if cap_type == "protocol" {
self.set_protocol(names);
} else if cap_type == "service" {
self.set_service(names);
} else if cap_type == "directory" {
self.set_directory(names);
} else if cap_type == "storage" {
self.set_storage(names);
} else if cap_type == "runner" {
self.set_runner(names);
} else if cap_type == "resolver" {
self.set_resolver(names);
} else if cap_type == "event_stream" {
self.set_event_stream(names);
} else if cap_type == "dictionary" {
self.set_dictionary(names);
} else if cap_type == "config" {
self.set_config(names);
} else {
panic!("Unknown capability type {}", cap_type);
}
}
}
trait Canonicalize {
fn canonicalize(&mut self);
}
pub trait AsClause {
fn r#as(&self) -> Option<&Name>;
}
pub trait PathClause {
fn path(&self) -> Option<&Path>;
}
pub trait FilterClause {
fn filter(&self) -> Option<&Map<String, Value>>;
}
pub trait RightsClause {
fn rights(&self) -> Option<&Rights>;
}
fn always_one<T>(o: Option<OneOrMany<T>>) -> Option<T> {
o.map(|o| match o {
OneOrMany::One(o) => o,
OneOrMany::Many(_) => panic!("many is impossible"),
})
}
impl Canonicalize for Capability {
fn canonicalize(&mut self) {
// Sort the names of the capabilities. Only capabilities with OneOrMany values are included here.
if let Some(service) = &mut self.service {
service.canonicalize()
} else if let Some(protocol) = &mut self.protocol {
protocol.canonicalize()
} else if let Some(event_stream) = &mut self.event_stream {
event_stream.canonicalize()
}
}
}
fn option_one_or_many_as_ref<T>(o: &Option<OneOrMany<T>>) -> Option<OneOrMany<&T>> {
o.as_ref().map(|o| o.as_ref())
}
impl CapabilityClause for Capability {
fn service(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.service)
}
fn protocol(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.protocol)
}
fn directory(&self) -> Option<OneOrMany<&Name>> {
self.directory.as_ref().map(|n| OneOrMany::One(n))
}
fn storage(&self) -> Option<OneOrMany<&Name>> {
self.storage.as_ref().map(|n| OneOrMany::One(n))
}
fn runner(&self) -> Option<OneOrMany<&Name>> {
self.runner.as_ref().map(|n| OneOrMany::One(n))
}
fn resolver(&self) -> Option<OneOrMany<&Name>> {
self.resolver.as_ref().map(|n| OneOrMany::One(n))
}
fn event_stream(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.event_stream)
}
fn dictionary(&self) -> Option<OneOrMany<&Name>> {
self.dictionary.as_ref().map(|n| OneOrMany::One(n))
}
fn config(&self) -> Option<OneOrMany<&Name>> {
self.config.as_ref().map(|n| OneOrMany::One(n))
}
fn set_service(&mut self, o: Option<OneOrMany<Name>>) {
self.service = o;
}
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>) {
self.protocol = o;
}
fn set_directory(&mut self, o: Option<OneOrMany<Name>>) {
self.directory = always_one(o);
}
fn set_storage(&mut self, o: Option<OneOrMany<Name>>) {
self.storage = always_one(o);
}
fn set_runner(&mut self, o: Option<OneOrMany<Name>>) {
self.runner = always_one(o);
}
fn set_resolver(&mut self, o: Option<OneOrMany<Name>>) {
self.resolver = always_one(o);
}
fn set_event_stream(&mut self, o: Option<OneOrMany<Name>>) {
self.event_stream = o;
}
fn set_dictionary(&mut self, o: Option<OneOrMany<Name>>) {
self.dictionary = always_one(o);
}
fn set_config(&mut self, o: Option<OneOrMany<Name>>) {
self.config = always_one(o);
}
fn availability(&self) -> Option<Availability> {
None
}
fn set_availability(&mut self, _a: Option<Availability>) {}
fn decl_type(&self) -> &'static str {
"capability"
}
fn supported(&self) -> &[&'static str] {
&[
"service",
"protocol",
"directory",
"storage",
"runner",
"resolver",
"event_stream",
"dictionary",
"config",
]
}
fn are_many_names_allowed(&self) -> bool {
["service", "protocol", "event_stream"].contains(&self.capability_type().unwrap())
}
}
impl AsClause for Capability {
fn r#as(&self) -> Option<&Name> {
None
}
}
impl PathClause for Capability {
fn path(&self) -> Option<&Path> {
self.path.as_ref()
}
}
impl FilterClause for Capability {
fn filter(&self) -> Option<&Map<String, Value>> {
None
}
}
impl RightsClause for Capability {
fn rights(&self) -> Option<&Rights> {
self.rights.as_ref()
}
}
impl CapabilityClause for DebugRegistration {
fn service(&self) -> Option<OneOrMany<&Name>> {
None
}
fn protocol(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.protocol)
}
fn directory(&self) -> Option<OneOrMany<&Name>> {
None
}
fn storage(&self) -> Option<OneOrMany<&Name>> {
None
}
fn runner(&self) -> Option<OneOrMany<&Name>> {
None
}
fn resolver(&self) -> Option<OneOrMany<&Name>> {
None
}
fn event_stream(&self) -> Option<OneOrMany<&Name>> {
None
}
fn dictionary(&self) -> Option<OneOrMany<&Name>> {
None
}
fn config(&self) -> Option<OneOrMany<&Name>> {
None
}
fn set_service(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>) {
self.protocol = o;
}
fn set_directory(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_storage(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_runner(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_resolver(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_event_stream(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_dictionary(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_config(&mut self, _o: Option<OneOrMany<Name>>) {}
fn availability(&self) -> Option<Availability> {
None
}
fn set_availability(&mut self, _a: Option<Availability>) {}
fn decl_type(&self) -> &'static str {
"debug"
}
fn supported(&self) -> &[&'static str] {
&["service", "protocol"]
}
fn are_many_names_allowed(&self) -> bool {
["protocol"].contains(&self.capability_type().unwrap())
}
}
impl AsClause for DebugRegistration {
fn r#as(&self) -> Option<&Name> {
self.r#as.as_ref()
}
}
impl PathClause for DebugRegistration {
fn path(&self) -> Option<&Path> {
None
}
}
impl FromClause for DebugRegistration {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
OneOrMany::One(AnyRef::from(&self.from))
}
}
impl Canonicalize for Use {
fn canonicalize(&mut self) {
// Sort the names of the capabilities. Only capabilities with OneOrMany values are included here.
if let Some(service) = &mut self.service {
service.canonicalize();
} else if let Some(protocol) = &mut self.protocol {
protocol.canonicalize();
} else if let Some(event_stream) = &mut self.event_stream {
event_stream.canonicalize();
if let Some(scope) = &mut self.scope {
scope.canonicalize();
}
}
}
}
impl CapabilityClause for Use {
fn service(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.service)
}
fn protocol(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.protocol)
}
fn directory(&self) -> Option<OneOrMany<&Name>> {
self.directory.as_ref().map(|n| OneOrMany::One(n))
}
fn storage(&self) -> Option<OneOrMany<&Name>> {
self.storage.as_ref().map(|n| OneOrMany::One(n))
}
fn runner(&self) -> Option<OneOrMany<&Name>> {
self.runner.as_ref().map(|n| OneOrMany::One(n))
}
fn resolver(&self) -> Option<OneOrMany<&Name>> {
None
}
fn event_stream(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.event_stream)
}
fn dictionary(&self) -> Option<OneOrMany<&Name>> {
None
}
fn config(&self) -> Option<OneOrMany<&Name>> {
self.config.as_ref().map(|n| OneOrMany::One(n))
}
fn set_service(&mut self, o: Option<OneOrMany<Name>>) {
self.service = o;
}
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>) {
self.protocol = o;
}
fn set_directory(&mut self, o: Option<OneOrMany<Name>>) {
self.directory = always_one(o);
}
fn set_storage(&mut self, o: Option<OneOrMany<Name>>) {
self.storage = always_one(o);
}
fn set_runner(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_resolver(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_event_stream(&mut self, o: Option<OneOrMany<Name>>) {
self.event_stream = o;
}
fn set_dictionary(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_config(&mut self, o: Option<OneOrMany<Name>>) {
self.config = always_one(o);
}
fn availability(&self) -> Option<Availability> {
self.availability
}
fn set_availability(&mut self, a: Option<Availability>) {
self.availability = a;
}
fn decl_type(&self) -> &'static str {
"use"
}
fn supported(&self) -> &[&'static str] {
&["service", "protocol", "directory", "storage", "event_stream", "runner", "config"]
}
fn are_many_names_allowed(&self) -> bool {
["service", "protocol", "event_stream"].contains(&self.capability_type().unwrap())
}
}
impl FilterClause for Use {
fn filter(&self) -> Option<&Map<String, Value>> {
self.filter.as_ref()
}
}
impl PathClause for Use {
fn path(&self) -> Option<&Path> {
self.path.as_ref()
}
}
impl FromClause for Use {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
let one = match &self.from {
Some(from) => AnyRef::from(from),
// Default for `use`.
None => AnyRef::Parent,
};
OneOrMany::One(one)
}
}
impl FromClause for Expose {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
one_or_many_from_impl(&self.from)
}
}
impl RightsClause for Use {
fn rights(&self) -> Option<&Rights> {
self.rights.as_ref()
}
}
impl Canonicalize for Expose {
fn canonicalize(&mut self) {
// Sort the names of the capabilities. Only capabilities with OneOrMany values are included here.
if let Some(service) = &mut self.service {
service.canonicalize();
} else if let Some(protocol) = &mut self.protocol {
protocol.canonicalize();
} else if let Some(directory) = &mut self.directory {
directory.canonicalize();
} else if let Some(runner) = &mut self.runner {
runner.canonicalize();
} else if let Some(resolver) = &mut self.resolver {
resolver.canonicalize();
} else if let Some(event_stream) = &mut self.event_stream {
event_stream.canonicalize();
if let Some(scope) = &mut self.scope {
scope.canonicalize();
}
}
// TODO(https://fxbug.dev/300500098): canonicalize dictionaries
}
}
impl CapabilityClause for Expose {
fn service(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.service)
}
fn protocol(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.protocol)
}
fn directory(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.directory)
}
fn storage(&self) -> Option<OneOrMany<&Name>> {
None
}
fn runner(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.runner)
}
fn resolver(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.resolver)
}
fn event_stream(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.event_stream)
}
fn dictionary(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.dictionary)
}
fn config(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.config)
}
fn set_service(&mut self, o: Option<OneOrMany<Name>>) {
self.service = o;
}
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>) {
self.protocol = o;
}
fn set_directory(&mut self, o: Option<OneOrMany<Name>>) {
self.directory = o;
}
fn set_storage(&mut self, _o: Option<OneOrMany<Name>>) {}
fn set_runner(&mut self, o: Option<OneOrMany<Name>>) {
self.runner = o;
}
fn set_resolver(&mut self, o: Option<OneOrMany<Name>>) {
self.resolver = o;
}
fn set_event_stream(&mut self, o: Option<OneOrMany<Name>>) {
self.event_stream = o;
}
fn set_dictionary(&mut self, o: Option<OneOrMany<Name>>) {
self.dictionary = o;
}
fn set_config(&mut self, o: Option<OneOrMany<Name>>) {
self.config = o;
}
fn availability(&self) -> Option<Availability> {
None
}
fn set_availability(&mut self, _a: Option<Availability>) {}
fn decl_type(&self) -> &'static str {
"expose"
}
fn supported(&self) -> &[&'static str] {
&[
"service",
"protocol",
"directory",
"runner",
"resolver",
"event_stream",
"dictionary",
"config",
]
}
fn are_many_names_allowed(&self) -> bool {
[
"service",
"protocol",
"directory",
"runner",
"resolver",
"event_stream",
"dictionary",
"config",
]
.contains(&self.capability_type().unwrap())
}
}
impl AsClause for Expose {
fn r#as(&self) -> Option<&Name> {
self.r#as.as_ref()
}
}
impl PathClause for Expose {
fn path(&self) -> Option<&Path> {
None
}
}
impl FilterClause for Expose {
fn filter(&self) -> Option<&Map<String, Value>> {
None
}
}
impl RightsClause for Expose {
fn rights(&self) -> Option<&Rights> {
self.rights.as_ref()
}
}
impl FromClause for Offer {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
one_or_many_from_impl(&self.from)
}
}
impl Canonicalize for Offer {
fn canonicalize(&mut self) {
// Sort the names of the capabilities. Only capabilities with OneOrMany values are included here.
if let Some(service) = &mut self.service {
service.canonicalize();
} else if let Some(protocol) = &mut self.protocol {
protocol.canonicalize();
} else if let Some(directory) = &mut self.directory {
directory.canonicalize();
} else if let Some(runner) = &mut self.runner {
runner.canonicalize();
} else if let Some(resolver) = &mut self.resolver {
resolver.canonicalize();
} else if let Some(storage) = &mut self.storage {
storage.canonicalize();
} else if let Some(event_stream) = &mut self.event_stream {
event_stream.canonicalize();
if let Some(scope) = &mut self.scope {
scope.canonicalize();
}
}
}
}
impl CapabilityClause for Offer {
fn service(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.service)
}
fn protocol(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.protocol)
}
fn directory(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.directory)
}
fn storage(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.storage)
}
fn runner(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.runner)
}
fn resolver(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.resolver)
}
fn event_stream(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.event_stream)
}
fn dictionary(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.dictionary)
}
fn config(&self) -> Option<OneOrMany<&Name>> {
option_one_or_many_as_ref(&self.config)
}
fn set_service(&mut self, o: Option<OneOrMany<Name>>) {
self.service = o;
}
fn set_protocol(&mut self, o: Option<OneOrMany<Name>>) {
self.protocol = o;
}
fn set_directory(&mut self, o: Option<OneOrMany<Name>>) {
self.directory = o;
}
fn set_storage(&mut self, o: Option<OneOrMany<Name>>) {
self.storage = o;
}
fn set_runner(&mut self, o: Option<OneOrMany<Name>>) {
self.runner = o;
}
fn set_resolver(&mut self, o: Option<OneOrMany<Name>>) {
self.resolver = o;
}
fn set_event_stream(&mut self, o: Option<OneOrMany<Name>>) {
self.event_stream = o;
}
fn set_dictionary(&mut self, o: Option<OneOrMany<Name>>) {
self.dictionary = o;
}
fn set_config(&mut self, o: Option<OneOrMany<Name>>) {
self.config = o
}
fn availability(&self) -> Option<Availability> {
self.availability
}
fn set_availability(&mut self, a: Option<Availability>) {
self.availability = a;
}
fn decl_type(&self) -> &'static str {
"offer"
}
fn supported(&self) -> &[&'static str] {
&[
"service",
"protocol",
"directory",
"storage",
"runner",
"resolver",
"event_stream",
"config",
]
}
fn are_many_names_allowed(&self) -> bool {
[
"service",
"protocol",
"directory",
"storage",
"runner",
"resolver",
"event_stream",
"config",
]
.contains(&self.capability_type().unwrap())
}
}
impl AsClause for Offer {
fn r#as(&self) -> Option<&Name> {
self.r#as.as_ref()
}
}
impl PathClause for Offer {
fn path(&self) -> Option<&Path> {
None
}
}
impl RightsClause for Offer {
fn rights(&self) -> Option<&Rights> {
self.rights.as_ref()
}
}
impl FromClause for RunnerRegistration {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
OneOrMany::One(AnyRef::from(&self.from))
}
}
impl FromClause for ResolverRegistration {
fn from_(&self) -> OneOrMany<AnyRef<'_>> {
OneOrMany::One(AnyRef::from(&self.from))
}
}
fn one_or_many_from_impl<'a, T>(from: &'a OneOrMany<T>) -> OneOrMany<AnyRef<'a>>
where
AnyRef<'a>: From<&'a T>,
T: 'a,
{
let r = match from {
OneOrMany::One(r) => OneOrMany::One(r.into()),
OneOrMany::Many(v) => OneOrMany::Many(v.into_iter().map(|r| r.into()).collect()),
};
r.into()
}
pub fn alias_or_name<'a>(alias: Option<&'a Name>, name: &'a Name) -> &'a Name {
alias.unwrap_or(name)
}
pub fn alias_or_path<'a>(alias: Option<&'a Path>, path: &'a Path) -> &'a Path {
alias.unwrap_or(path)
}
pub fn format_cml(buffer: &str, file: Option<&std::path::Path>) -> Result<Vec<u8>, Error> {
let general_order = PathOption::PropertyNameOrder(vec![
"name",
"url",
"startup",
"environment",
"config",
"dictionary",
"durability",
"service",
"protocol",
"directory",
"storage",
"runner",
"resolver",
"event",
"event_stream",
"from",
"as",
"to",
"rights",
"path",
"subdir",
"filter",
"dependency",
"extends",
"runners",
"resolvers",
"debug",
]);
let options = FormatOptions {
collapse_containers_of_one: true,
sort_array_items: true, // but use options_by_path to turn this off for program args
options_by_path: hashmap! {
"/*" => hashset! {
PathOption::PropertyNameOrder(vec![
"include",
"program",
"children",
"collections",
"capabilities",
"use",
"offer",
"expose",
"environments",
"facets",
])
},
"/*/program" => hashset! {
PathOption::CollapseContainersOfOne(false),
PathOption::PropertyNameOrder(vec![
"runner",
"binary",
"args",
]),
},
"/*/program/*" => hashset! {
PathOption::SortArrayItems(false),
},
"/*/*/*" => hashset! {
general_order.clone()
},
"/*/*/*/*/*" => hashset! {
general_order
},
},
..Default::default()
};
json5format::format(buffer, file.map(|f| f.to_string_lossy().to_string()), Some(options))
.map_err(|e| Error::json5(e, file))
}
pub fn offer_to_all_and_component_diff_sources_message<'a>(
capability: impl Iterator<Item = OfferToAllCapability<'a>>,
component: &str,
) -> String {
let mut output = String::new();
let mut capability = capability.peekable();
write!(&mut output, "{} ", capability.peek().unwrap().offer_type()).unwrap();
for (i, capability) in capability.enumerate() {
if i > 0 {
write!(&mut output, ", ").unwrap();
}
write!(&mut output, "{}", capability.offer_type()).unwrap();
}
write!(&mut output, r#"is offered to both "all" and "{}" with different sources"#, component)
.unwrap();
output
}
pub fn offer_to_all_and_component_diff_capabilities_message<'a>(
capability: impl Iterator<Item = OfferToAllCapability<'a>>,
component: &str,
) -> String {
let mut output = String::new();
let mut capability_peek = capability.peekable();
// Clone is needed so the iterator can be moved forward.
// This doesn't actually allocate memory or copy a string, as only the reference
// held by the OfferToAllCapability<'a> is copied.
let first_offer_to_all = capability_peek.peek().unwrap().clone();
write!(&mut output, "{} ", first_offer_to_all.offer_type()).unwrap();
for (i, capability) in capability_peek.enumerate() {
if i > 0 {
write!(&mut output, ", ").unwrap();
}
write!(&mut output, "{}", capability.offer_type()).unwrap();
}
write!(&mut output, r#"is aliased to "{}" with the same name as an offer to "all", but from different source {}"#, component, first_offer_to_all.offer_type_plural()).unwrap();
output
}
/// Returns `Ok(true)` if desugaring the `offer_to_all` using `name` duplicates
/// `specific_offer`. Returns `Ok(false)` if not a duplicate.
///
/// Returns Err if there is a validation error.
pub fn offer_to_all_would_duplicate(
offer_to_all: &Offer,
specific_offer: &Offer,
target: &cm_types::Name,
) -> Result<bool, Error> {
// Only protocols and dictionaries may be offered to all
assert!(offer_to_all.protocol.is_some() || offer_to_all.dictionary.is_some());
// If none of the pairs of the cross products of the two offer's protocols
// match, then the offer is certainly not a duplicate
if CapabilityId::from_offer_expose(specific_offer).iter().flatten().all(
|specific_offer_cap_id| {
CapabilityId::from_offer_expose(offer_to_all)
.iter()
.flatten()
.all(|offer_to_all_cap_id| offer_to_all_cap_id != specific_offer_cap_id)
},
) {
return Ok(false);
}
let to_field_matches = specific_offer
.to
.iter()
.any(|specific_offer_to| matches!(specific_offer_to, OfferToRef::Named(c) if c == target));
if !to_field_matches {
return Ok(false);
}
if offer_to_all.from != specific_offer.from {
return Err(Error::validate(offer_to_all_and_component_diff_sources_message(
offer_to_all_from_offer(offer_to_all),
target.as_str(),
)));
}
// Since the capability ID's match, the underlying protocol must also match
if offer_to_all_from_offer(offer_to_all).all(|to_all_protocol| {
offer_to_all_from_offer(specific_offer)
.all(|to_specific_protocol| to_all_protocol != to_specific_protocol)
}) {
return Err(Error::validate(offer_to_all_and_component_diff_capabilities_message(
offer_to_all_from_offer(offer_to_all),
target.as_str(),
)));
}
Ok(true)
}
impl Offer {
/// Creates a new empty offer. This offer just has the `from` and `to` fields set, so to make
/// it useful it needs at least the capability name set in the necesssary attribute.
pub fn empty(from: OneOrMany<OfferFromRef>, to: OneOrMany<OfferToRef>) -> Offer {
Self {
protocol: None,
from,
to,
r#as: None,
service: None,
directory: None,
config: None,
runner: None,
resolver: None,
storage: None,
dictionary: None,
dependency: None,
rights: None,
subdir: None,
event_stream: None,
scope: None,
availability: None,
source_availability: None,
}
}
}
#[cfg(test)]
pub fn create_offer(
protocol_name: &str,
from: OneOrMany<OfferFromRef>,
to: OneOrMany<OfferToRef>,
) -> Offer {
Offer {
protocol: Some(OneOrMany::One(Name::from_str(protocol_name).unwrap())),
..Offer::empty(from, to)
}
}
#[cfg(test)]
mod tests {
use super::*;
use assert_matches::assert_matches;
use difference::Changeset;
use serde_json::{json, to_string_pretty, to_value};
use std::path::Path;
use test_case::test_case;
macro_rules! assert_json_eq {
($a:expr, $e:expr) => {{
if $a != $e {
let expected = to_string_pretty(&$e).unwrap();
let actual = to_string_pretty(&$a).unwrap();
assert_eq!(
$a,
$e,
"JSON actual != expected. Diffs:\n\n{}",
Changeset::new(&actual, &expected, "\n")
);
}
}};
}
// Exercise reference parsing tests on `OfferFromRef` because it contains every reference
// subtype.
#[test]
fn test_parse_named_reference() {
assert_matches!("#some-child".parse::<OfferFromRef>(), Ok(OfferFromRef::Named(name)) if name == "some-child");
assert_matches!("#A".parse::<OfferFromRef>(), Ok(OfferFromRef::Named(name)) if name == "A");
assert_matches!("#7".parse::<OfferFromRef>(), Ok(OfferFromRef::Named(name)) if name == "7");
assert_matches!("#_".parse::<OfferFromRef>(), Ok(OfferFromRef::Named(name)) if name == "_");
assert_matches!("#-".parse::<OfferFromRef>(), Err(_));
assert_matches!("#.".parse::<OfferFromRef>(), Err(_));
assert_matches!("#".parse::<OfferFromRef>(), Err(_));
assert_matches!("some-child".parse::<OfferFromRef>(), Err(_));
}
#[test]
fn test_parse_reference_test() {
assert_matches!("parent".parse::<OfferFromRef>(), Ok(OfferFromRef::Parent));
assert_matches!("framework".parse::<OfferFromRef>(), Ok(OfferFromRef::Framework));
assert_matches!("self".parse::<OfferFromRef>(), Ok(OfferFromRef::Self_));
assert_matches!("#child".parse::<OfferFromRef>(), Ok(OfferFromRef::Named(name)) if name == "child");
assert_matches!("invalid".parse::<OfferFromRef>(), Err(_));
assert_matches!("#invalid-child^".parse::<OfferFromRef>(), Err(_));
}
fn json_value_from_str(json: &str, filename: &Path) -> Result<Value, Error> {
serde_json::from_str(json).map_err(|e| {
Error::parse(
format!("Couldn't read input as JSON: {}", e),
Some(Location { line: e.line(), column: e.column() }),
Some(filename),
)
})
}
fn parse_as_ref(input: &str) -> Result<OfferFromRef, Error> {
serde_json::from_value::<OfferFromRef>(json_value_from_str(input, &Path::new("test.cml"))?)
.map_err(|e| Error::parse(format!("{}", e), None, None))
}
#[test]
fn test_deserialize_ref() -> Result<(), Error> {
assert_matches!(parse_as_ref("\"self\""), Ok(OfferFromRef::Self_));
assert_matches!(parse_as_ref("\"parent\""), Ok(OfferFromRef::Parent));
assert_matches!(parse_as_ref("\"#child\""), Ok(OfferFromRef::Named(name)) if name == "child");
assert_matches!(parse_as_ref(r#""invalid""#), Err(_));
Ok(())
}
macro_rules! test_parse_rights {
(
$(
($input:expr, $expected:expr),
)+
) => {
#[test]
fn parse_rights() {
$(
parse_rights_test($input, $expected);
)+
}
}
}
fn parse_rights_test(input: &str, expected: Right) {
let r: Right = serde_json5::from_str(&format!("\"{}\"", input)).expect("invalid json");
assert_eq!(r, expected);
}
test_parse_rights! {
("connect", Right::Connect),
("enumerate", Right::Enumerate),
("execute", Right::Execute),
("get_attributes", Right::GetAttributes),
("modify_directory", Right::ModifyDirectory),
("read_bytes", Right::ReadBytes),
("traverse", Right::Traverse),
("update_attributes", Right::UpdateAttributes),
("write_bytes", Right::WriteBytes),
("r*", Right::ReadAlias),
("w*", Right::WriteAlias),
("x*", Right::ExecuteAlias),
("rw*", Right::ReadWriteAlias),
("rx*", Right::ReadExecuteAlias),
}
macro_rules! test_expand_rights {
(
$(
($input:expr, $expected:expr),
)+
) => {
#[test]
fn expand_rights() {
$(
expand_rights_test($input, $expected);
)+
}
}
}
fn expand_rights_test(input: Right, expected: Vec<fio::Operations>) {
assert_eq!(input.expand(), expected);
}
test_expand_rights! {
(Right::Connect, vec![fio::Operations::CONNECT]),
(Right::Enumerate, vec![fio::Operations::ENUMERATE]),
(Right::Execute, vec![fio::Operations::EXECUTE]),
(Right::GetAttributes, vec![fio::Operations::GET_ATTRIBUTES]),
(Right::ModifyDirectory, vec![fio::Operations::MODIFY_DIRECTORY]),
(Right::ReadBytes, vec![fio::Operations::READ_BYTES]),
(Right::Traverse, vec![fio::Operations::TRAVERSE]),
(Right::UpdateAttributes, vec![fio::Operations::UPDATE_ATTRIBUTES]),
(Right::WriteBytes, vec![fio::Operations::WRITE_BYTES]),
(Right::ReadAlias, vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::GET_ATTRIBUTES,
]),
(Right::WriteAlias, vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::WRITE_BYTES,
fio::Operations::MODIFY_DIRECTORY,
fio::Operations::UPDATE_ATTRIBUTES,
]),
(Right::ExecuteAlias, vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::EXECUTE,
]),
(Right::ReadWriteAlias, vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::WRITE_BYTES,
fio::Operations::MODIFY_DIRECTORY,
fio::Operations::GET_ATTRIBUTES,
fio::Operations::UPDATE_ATTRIBUTES,
]),
(Right::ReadExecuteAlias, vec![
fio::Operations::CONNECT,
fio::Operations::ENUMERATE,
fio::Operations::TRAVERSE,
fio::Operations::READ_BYTES,
fio::Operations::GET_ATTRIBUTES,
fio::Operations::EXECUTE,
]),
}
#[test]
fn test_deny_unknown_fields() {
assert_matches!(serde_json5::from_str::<Document>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Environment>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<RunnerRegistration>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<ResolverRegistration>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Use>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Expose>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Offer>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Capability>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Child>("{ unknown: \"\" }"), Err(_));
assert_matches!(serde_json5::from_str::<Collection>("{ unknown: \"\" }"), Err(_));
}
// TODO: Use Default::default() instead
fn empty_offer() -> Offer {
Offer {
service: None,
protocol: None,
directory: None,
storage: None,
runner: None,
resolver: None,
dictionary: None,
config: None,
from: OneOrMany::One(OfferFromRef::Self_),
to: OneOrMany::Many(vec![]),
r#as: None,
rights: None,
subdir: None,
dependency: None,
event_stream: None,
scope: None,
availability: None,
source_availability: None,
}
}
fn empty_use() -> Use {
Use {
service: None,
protocol: None,
scope: None,
directory: None,
storage: None,
config: None,
key: None,
from: None,
path: None,
rights: None,
subdir: None,
event_stream: None,
runner: None,
filter: None,
dependency: None,
availability: None,
config_element_type: None,
config_max_count: None,
config_max_size: None,
config_type: None,
config_default: None,
}
}
#[test]
fn test_capability_id() -> Result<(), Error> {
// service
let a: Name = "a".parse().unwrap();
let b: Name = "b".parse().unwrap();
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
service: Some(OneOrMany::One(a.clone())),
..empty_offer()
},)?,
vec![CapabilityId::Service(&a)]
);
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
service: Some(OneOrMany::Many(vec![a.clone(), b.clone()],)),
..empty_offer()
},)?,
vec![CapabilityId::Service(&a), CapabilityId::Service(&b)]
);
assert_eq!(
CapabilityId::from_use(&Use {
service: Some(OneOrMany::One(a.clone())),
..empty_use()
},)?,
vec![CapabilityId::UsedService("/svc/a".parse().unwrap())]
);
assert_eq!(
CapabilityId::from_use(&Use {
service: Some(OneOrMany::Many(vec![a.clone(), b.clone(),],)),
..empty_use()
},)?,
vec![
CapabilityId::UsedService("/svc/a".parse().unwrap()),
CapabilityId::UsedService("/svc/b".parse().unwrap())
]
);
assert_eq!(
CapabilityId::from_use(&Use {
event_stream: Some(OneOrMany::One(Name::new("test".to_string()).unwrap())),
path: Some(cm_types::Path::new("/svc/myevent".to_string()).unwrap()),
..empty_use()
},)?,
vec![CapabilityId::UsedEventStream("/svc/myevent".parse().unwrap()),]
);
assert_eq!(
CapabilityId::from_use(&Use {
event_stream: Some(OneOrMany::One(Name::new("test".to_string()).unwrap())),
..empty_use()
},)?,
vec![CapabilityId::UsedEventStream(
"/svc/fuchsia.component.EventStream".parse().unwrap()
),]
);
assert_eq!(
CapabilityId::from_use(&Use {
service: Some(OneOrMany::One(a.clone())),
path: Some("/b".parse().unwrap()),
..empty_use()
},)?,
vec![CapabilityId::UsedService("/b".parse().unwrap())]
);
// protocol
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
protocol: Some(OneOrMany::One(a.clone())),
..empty_offer()
},)?,
vec![CapabilityId::Protocol(&a)]
);
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
protocol: Some(OneOrMany::Many(vec![a.clone(), b.clone()],)),
..empty_offer()
},)?,
vec![CapabilityId::Protocol(&a), CapabilityId::Protocol(&b)]
);
assert_eq!(
CapabilityId::from_use(&Use {
protocol: Some(OneOrMany::One(a.clone())),
..empty_use()
},)?,
vec![CapabilityId::UsedProtocol("/svc/a".parse().unwrap())]
);
assert_eq!(
CapabilityId::from_use(&Use {
protocol: Some(OneOrMany::Many(vec![a.clone(), b.clone(),],)),
..empty_use()
},)?,
vec![
CapabilityId::UsedProtocol("/svc/a".parse().unwrap()),
CapabilityId::UsedProtocol("/svc/b".parse().unwrap())
]
);
assert_eq!(
CapabilityId::from_use(&Use {
protocol: Some(OneOrMany::One(a.clone())),
path: Some("/b".parse().unwrap()),
..empty_use()
},)?,
vec![CapabilityId::UsedProtocol("/b".parse().unwrap())]
);
// directory
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
directory: Some(OneOrMany::One(a.clone())),
..empty_offer()
},)?,
vec![CapabilityId::Directory(&a)]
);
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
directory: Some(OneOrMany::Many(vec![a.clone(), b.clone()])),
..empty_offer()
},)?,
vec![CapabilityId::Directory(&a), CapabilityId::Directory(&b),]
);
assert_eq!(
CapabilityId::from_use(&Use {
directory: Some(a.clone()),
path: Some("/b".parse().unwrap()),
..empty_use()
},)?,
vec![CapabilityId::UsedDirectory("/b".parse().unwrap())]
);
// storage
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
storage: Some(OneOrMany::One(a.clone())),
..empty_offer()
},)?,
vec![CapabilityId::Storage(&a)]
);
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
storage: Some(OneOrMany::Many(vec![a.clone(), b.clone()])),
..empty_offer()
},)?,
vec![CapabilityId::Storage(&a), CapabilityId::Storage(&b),]
);
assert_eq!(
CapabilityId::from_use(&Use {
storage: Some(a.clone()),
path: Some("/b".parse().unwrap()),
..empty_use()
},)?,
vec![CapabilityId::UsedStorage("/b".parse().unwrap())]
);
// runner
assert_eq!(
CapabilityId::from_use(&Use { runner: Some("elf".parse().unwrap()), ..empty_use() },)?,
vec![CapabilityId::UsedRunner(&"elf".parse().unwrap())]
);
// "as" aliasing.
assert_eq!(
CapabilityId::from_offer_expose(&Offer {
service: Some(OneOrMany::One(a.clone())),
r#as: Some(b.clone()),
..empty_offer()
},)?,
vec![CapabilityId::Service(&b)]
);
// Error case.
assert_matches!(CapabilityId::from_offer_expose(&empty_offer()), Err(_));
Ok(())
}
fn document(contents: serde_json::Value) -> Document {
serde_json5::from_str::<Document>(&contents.to_string()).unwrap()
}
#[test]
fn test_includes() {
assert_eq!(document(json!({})).includes(), Vec::<String>::new());
assert_eq!(document(json!({ "include": []})).includes(), Vec::<String>::new());
assert_eq!(
document(json!({ "include": [ "foo.cml", "bar.cml" ]})).includes(),
vec!["foo.cml", "bar.cml"]
);
}
#[test]
fn test_merge_same_section() {
let mut some = document(json!({ "use": [{ "protocol": "foo" }] }));
let mut other = document(json!({ "use": [{ "protocol": "bar" }] }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let uses = some.r#use.as_ref().unwrap();
assert_eq!(uses.len(), 2);
assert_eq!(
uses[0].protocol.as_ref().unwrap(),
&OneOrMany::One("foo".parse::<Name>().unwrap())
);
assert_eq!(
uses[1].protocol.as_ref().unwrap(),
&OneOrMany::One("bar".parse::<Name>().unwrap())
);
}
#[test]
fn test_merge_upgraded_availability() {
let mut some =
document(json!({ "use": [{ "protocol": "foo", "availability": "optional" }] }));
let mut other1 = document(json!({ "use": [{ "protocol": "foo" }] }));
let mut other2 =
document(json!({ "use": [{ "protocol": "foo", "availability": "transitional" }] }));
let mut other3 =
document(json!({ "use": [{ "protocol": "foo", "availability": "same_as_target" }] }));
some.merge_from(&mut other1, &Path::new("some/path")).unwrap();
some.merge_from(&mut other2, &Path::new("some/path")).unwrap();
some.merge_from(&mut other3, &Path::new("some/path")).unwrap();
let uses = some.r#use.as_ref().unwrap();
assert_eq!(uses.len(), 2);
assert_eq!(
uses[0].protocol.as_ref().unwrap(),
&OneOrMany::One("foo".parse::<Name>().unwrap())
);
assert!(uses[0].availability.is_none());
assert_eq!(
uses[1].protocol.as_ref().unwrap(),
&OneOrMany::One("foo".parse::<Name>().unwrap())
);
assert_eq!(uses[1].availability.as_ref().unwrap(), &Availability::SameAsTarget,);
}
#[test]
fn test_merge_different_sections() {
let mut some = document(json!({ "use": [{ "protocol": "foo" }] }));
let mut other = document(json!({ "expose": [{ "protocol": "bar", "from": "self" }] }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let uses = some.r#use.as_ref().unwrap();
let exposes = some.expose.as_ref().unwrap();
assert_eq!(uses.len(), 1);
assert_eq!(exposes.len(), 1);
assert_eq!(
uses[0].protocol.as_ref().unwrap(),
&OneOrMany::One("foo".parse::<Name>().unwrap())
);
assert_eq!(
exposes[0].protocol.as_ref().unwrap(),
&OneOrMany::One("bar".parse::<Name>().unwrap())
);
}
#[test]
fn test_merge_environments() {
let mut some = document(json!({ "environments": [
{
"name": "one",
"extends": "realm",
},
{
"name": "two",
"extends": "none",
"runners": [
{
"runner": "r1",
"from": "#c1",
},
{
"runner": "r2",
"from": "#c2",
},
],
"resolvers": [
{
"resolver": "res1",
"from": "#c1",
"scheme": "foo",
},
],
"debug": [
{
"protocol": "baz",
"from": "#c2"
}
]
},
]}));
let mut other = document(json!({ "environments": [
{
"name": "two",
"__stop_timeout_ms": 100,
"runners": [
{
"runner": "r3",
"from": "#c3",
},
],
"resolvers": [
{
"resolver": "res2",
"from": "#c1",
"scheme": "bar",
},
],
"debug": [
{
"protocol": "faz",
"from": "#c2"
}
]
},
{
"name": "three",
"__stop_timeout_ms": 1000,
},
]}));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
assert_eq!(
to_value(some).unwrap(),
json!({"environments": [
{
"name": "one",
"extends": "realm",
},
{
"name": "three",
"__stop_timeout_ms": 1000,
},
{
"name": "two",
"extends": "none",
"__stop_timeout_ms": 100,
"runners": [
{
"runner": "r1",
"from": "#c1",
},
{
"runner": "r2",
"from": "#c2",
},
{
"runner": "r3",
"from": "#c3",
},
],
"resolvers": [
{
"resolver": "res1",
"from": "#c1",
"scheme": "foo",
},
{
"resolver": "res2",
"from": "#c1",
"scheme": "bar",
},
],
"debug": [
{
"protocol": "baz",
"from": "#c2"
},
{
"protocol": "faz",
"from": "#c2"
}
]
},
]})
);
}
#[test]
fn test_merge_environments_errors() {
{
let mut some = document(json!({"environments": [{"name": "one", "extends": "realm"}]}));
let mut other = document(json!({"environments": [{"name": "one", "extends": "none"}]}));
assert!(some.merge_from(&mut other, &Path::new("some/path")).is_err());
}
{
let mut some =
document(json!({"environments": [{"name": "one", "__stop_timeout_ms": 10}]}));
let mut other =
document(json!({"environments": [{"name": "one", "__stop_timeout_ms": 20}]}));
assert!(some.merge_from(&mut other, &Path::new("some/path")).is_err());
}
// It's ok if the values match.
{
let mut some = document(json!({"environments": [{"name": "one", "extends": "realm"}]}));
let mut other =
document(json!({"environments": [{"name": "one", "extends": "realm"}]}));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
assert_eq!(
to_value(some).unwrap(),
json!({"environments": [{"name": "one", "extends": "realm"}]})
);
}
{
let mut some =
document(json!({"environments": [{"name": "one", "__stop_timeout_ms": 10}]}));
let mut other =
document(json!({"environments": [{"name": "one", "__stop_timeout_ms": 10}]}));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
assert_eq!(
to_value(some).unwrap(),
json!({"environments": [{"name": "one", "__stop_timeout_ms": 10}]})
);
}
}
#[test]
fn test_merge_from_other_config() {
let mut some = document(json!({}));
let mut other = document(json!({ "config": { "bar": { "type": "bool" } } }));
some.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
let expected = document(json!({ "config": { "bar": { "type": "bool" } } }));
assert_eq!(some.config, expected.config);
}
#[test]
fn test_merge_from_some_config() {
let mut some = document(json!({ "config": { "bar": { "type": "bool" } } }));
let mut other = document(json!({}));
some.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
let expected = document(json!({ "config": { "bar": { "type": "bool" } } }));
assert_eq!(some.config, expected.config);
}
#[test]
fn test_merge_from_config() {
let mut some = document(json!({ "config": { "foo": { "type": "bool" } } }));
let mut other = document(json!({ "config": { "bar": { "type": "bool" } } }));
some.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(
some,
document(json!({
"config": {
"foo": { "type": "bool" },
"bar": { "type": "bool" },
}
})),
);
}
#[test]
fn test_merge_from_config_dedupe_identical_fields() {
let mut some = document(json!({ "config": { "foo": { "type": "bool" } } }));
let mut other = document(json!({ "config": { "foo": { "type": "bool" } } }));
some.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(some, document(json!({ "config": { "foo": { "type": "bool" } } })));
}
#[test]
fn test_merge_from_config_conflicting_keys() {
let mut some = document(json!({ "config": { "foo": { "type": "bool" } } }));
let mut other = document(json!({ "config": { "foo": { "type": "uint8" } } }));
assert_matches::assert_matches!(
some.merge_from(&mut other, &path::Path::new("some/path")),
Err(Error::Validate { err, .. })
if err == "Found conflicting entry for config key `foo` in `some/path`."
);
}
#[test]
fn test_canonicalize() {
let mut some = document(json!({
"children": [
// Will be sorted by name
{ "name": "b_child", "url": "http://foo/b" },
{ "name": "a_child", "url": "http://foo/a" },
],
"environments": [
// Will be sorted by name
{ "name": "b_env" },
{ "name": "a_env" },
],
"collections": [
// Will be sorted by name
{ "name": "b_coll", "durability": "transient" },
{ "name": "a_coll", "durability": "transient" },
],
// Will have entries sorted by capability type, then
// by capability name (using the first entry in Many cases).
"capabilities": [
// Will be merged with "bar"
{ "protocol": ["foo"] },
{ "protocol": "bar" },
// Will not be merged, but will be sorted before "bar"
{ "protocol": "arg", "path": "/arg" },
// Will have list of names sorted
{ "service": ["b", "a"] },
// Will have list of names sorted
{ "event_stream": ["b", "a"] },
{ "runner": "myrunner" },
// The following two will *not* be merged, because they have a `path`.
{ "runner": "mypathrunner1", "path": "/foo" },
{ "runner": "mypathrunner2", "path": "/foo" },
],
// Same rules as for "capabilities".
"offer": [
// Will be sorted after "bar"
{ "protocol": "baz", "from": "#a_child", "to": "#c_child" },
// The following two entries will be merged
{ "protocol": ["foo"], "from": "#a_child", "to": "#b_child" },
{ "protocol": "bar", "from": "#a_child", "to": "#b_child" },
// Will have list of names sorted
{ "service": ["b", "a"], "from": "#a_child", "to": "#b_child" },
// Will have list of names sorted
{
"event_stream": ["b", "a"],
"from": "#a_child",
"to": "#b_child",
"scope": ["#b", "#c", "#a"] // Also gets sorted
},
{ "runner": [ "myrunner", "a" ], "from": "#a_child", "to": "#b_child" },
{ "runner": [ "b" ], "from": "#a_child", "to": "#b_child" },
{ "directory": [ "b" ], "from": "#a_child", "to": "#b_child" },
],
"expose": [
{ "protocol": ["foo"], "from": "#a_child" },
{ "protocol": "bar", "from": "#a_child" }, // Will appear before protocol: foo
// Will have list of names sorted
{ "service": ["b", "a"], "from": "#a_child" },
// Will have list of names sorted
{
"event_stream": ["b", "a"],
"from": "#a_child",
"scope": ["#b", "#c", "#a"] // Also gets sorted
},
{ "runner": [ "myrunner", "a" ], "from": "#a_child" },
{ "runner": [ "b" ], "from": "#a_child" },
{ "directory": [ "b" ], "from": "#a_child" },
],
"use": [
// Will be sorted after "baz"
{ "protocol": ["zazzle"], "path": "/zazbaz" },
// These will be merged
{ "protocol": ["foo"] },
{ "protocol": "bar" },
// Will have list of names sorted
{ "service": ["b", "a"] },
// Will have list of names sorted
{ "event_stream": ["b", "a"], "scope": ["#b", "#a"] },
],
}));
some.canonicalize();
assert_json_eq!(
some,
document(json!({
"children": [
{ "name": "a_child", "url": "http://foo/a" },
{ "name": "b_child", "url": "http://foo/b" },
],
"collections": [
{ "name": "a_coll", "durability": "transient" },
{ "name": "b_coll", "durability": "transient" },
],
"environments": [
{ "name": "a_env" },
{ "name": "b_env" },
],
"capabilities": [
{ "event_stream": ["a", "b"] },
{ "protocol": "arg", "path": "/arg" },
{ "protocol": ["bar", "foo"] },
{ "runner": "mypathrunner1", "path": "/foo" },
{ "runner": "mypathrunner2", "path": "/foo" },
{ "runner": "myrunner" },
{ "service": ["a", "b"] },
],
"use": [
{ "event_stream": ["a", "b"], "scope": ["#a", "#b"] },
{ "protocol": ["bar", "foo"] },
{ "protocol": "zazzle", "path": "/zazbaz" },
{ "service": ["a", "b"] },
],
"offer": [
{ "directory": "b", "from": "#a_child", "to": "#b_child" },
{
"event_stream": ["a", "b"],
"from": "#a_child",
"to": "#b_child",
"scope": ["#a", "#b", "#c"],
},
{ "protocol": ["bar", "foo"], "from": "#a_child", "to": "#b_child" },
{ "protocol": "baz", "from": "#a_child", "to": "#c_child" },
{ "runner": [ "a", "b", "myrunner" ], "from": "#a_child", "to": "#b_child" },
{ "service": ["a", "b"], "from": "#a_child", "to": "#b_child" },
],
"expose": [
{ "directory": "b", "from": "#a_child" },
{
"event_stream": ["a", "b"],
"from": "#a_child",
"scope": ["#a", "#b", "#c"],
},
{ "protocol": ["bar", "foo"], "from": "#a_child" },
{ "runner": [ "a", "b", "myrunner" ], "from": "#a_child" },
{ "service": ["a", "b"], "from": "#a_child" },
],
}))
)
}
#[test]
fn deny_unknown_config_type_fields() {
let input = json!({ "config": { "foo": { "type": "bool", "unknown": "should error" } } });
serde_json5::from_str::<Document>(&input.to_string())
.expect_err("must reject unknown config field attributes");
}
#[test]
fn deny_unknown_config_nested_type_fields() {
let input = json!({
"config": {
"foo": {
"type": "vector",
"max_count": 10,
"element": {
"type": "bool",
"unknown": "should error"
},
}
}
});
serde_json5::from_str::<Document>(&input.to_string())
.expect_err("must reject unknown config field attributes");
}
#[test]
fn test_merge_from_program() {
let mut some = document(json!({ "program": { "binary": "bin/hello_world" } }));
let mut other = document(json!({ "program": { "runner": "elf" } }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let expected =
document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
assert_eq!(some.program, expected.program);
}
#[test]
fn test_merge_from_program_without_runner() {
let mut some =
document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
// https://fxbug.dev/42160240: merging with a document that doesn't have a runner doesn't override the
// runner that we already have assigned.
let mut other = document(json!({ "program": {} }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let expected =
document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
assert_eq!(some.program, expected.program);
}
#[test]
fn test_merge_from_program_overlapping_environ() {
// It's ok to merge `program.environ` by concatenating the arrays together.
let mut some = document(json!({ "program": { "environ": ["1"] } }));
let mut other = document(json!({ "program": { "environ": ["2"] } }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let expected = document(json!({ "program": { "environ": ["1", "2"] } }));
assert_eq!(some.program, expected.program);
}
#[test]
fn test_merge_from_program_overlapping_runner() {
// It's ok to merge `program.runner = "elf"` with `program.runner = "elf"`.
let mut some =
document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
let mut other = document(json!({ "program": { "runner": "elf" } }));
some.merge_from(&mut other, &Path::new("some/path")).unwrap();
let expected =
document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
assert_eq!(some.program, expected.program);
}
#[test]
fn test_offer_would_duplicate() {
let offer = create_offer(
"fuchsia.logger.LegacyLog",
OneOrMany::One(OfferFromRef::Parent {}),
OneOrMany::One(OfferToRef::Named(Name::from_str("something").unwrap())),
);
let offer_to_all = create_offer(
"fuchsia.logger.LogSink",
OneOrMany::One(OfferFromRef::Parent {}),
OneOrMany::One(OfferToRef::All),
);
// different protocols
assert!(!offer_to_all_would_duplicate(
&offer_to_all,
&offer,
&Name::from_str("something").unwrap()
)
.unwrap());
let offer = create_offer(
"fuchsia.logger.LogSink",
OneOrMany::One(OfferFromRef::Parent {}),
OneOrMany::One(OfferToRef::Named(Name::from_str("not-something").unwrap())),
);
// different targets
assert!(!offer_to_all_would_duplicate(
&offer_to_all,
&offer,
&Name::from_str("something").unwrap()
)
.unwrap());
let mut offer = create_offer(
"fuchsia.logger.LogSink",
OneOrMany::One(OfferFromRef::Parent {}),
OneOrMany::One(OfferToRef::Named(Name::from_str("something").unwrap())),
);
offer.r#as = Some(Name::from_str("FakeLog").unwrap());
// target has alias
assert!(!offer_to_all_would_duplicate(
&offer_to_all,
&offer,
&Name::from_str("something").unwrap()
)
.unwrap());
let offer = create_offer(
"fuchsia.logger.LogSink",
OneOrMany::One(OfferFromRef::Parent {}),
OneOrMany::One(OfferToRef::Named(Name::from_str("something").unwrap())),
);
assert!(offer_to_all_would_duplicate(
&offer_to_all,
&offer,
&Name::from_str("something").unwrap()
)
.unwrap());
let offer = create_offer(
"fuchsia.logger.LogSink",
OneOrMany::One(OfferFromRef::Named(Name::from_str("other").unwrap())),
OneOrMany::One(OfferToRef::Named(Name::from_str("something").unwrap())),
);
assert!(offer_to_all_would_duplicate(
&offer_to_all,
&offer,
&Name::from_str("something").unwrap()
)
.is_err());
}
#[test_case(
document(json!({ "program": { "runner": "elf" } })),
document(json!({ "program": { "runner": "fle" } })),
"runner"
; "when_runner_conflicts"
)]
#[test_case(
document(json!({ "program": { "binary": "bin/hello_world" } })),
document(json!({ "program": { "binary": "bin/hola_mundo" } })),
"binary"
; "when_binary_conflicts"
)]
#[test_case(
document(json!({ "program": { "args": ["a".to_owned()] } })),
document(json!({ "program": { "args": ["b".to_owned()] } })),
"args"
; "when_args_conflicts"
)]
fn test_merge_from_program_error(mut some: Document, mut other: Document, field: &str) {
assert_matches::assert_matches!(
some.merge_from(&mut other, &path::Path::new("some/path")),
Err(Error::Validate { err, .. })
if err == format!("manifest include had a conflicting `program.{}`: some/path", field)
);
}
#[test_case(
document(json!({ "facets": { "my.key": "my.value" } })),
document(json!({ "facets": { "other.key": "other.value" } })),
document(json!({ "facets": { "my.key": "my.value", "other.key": "other.value" } }))
; "two separate keys"
)]
#[test_case(
document(json!({ "facets": { "my.key": "my.value" } })),
document(json!({ "facets": {} })),
document(json!({ "facets": { "my.key": "my.value" } }))
; "empty other facet"
)]
#[test_case(
document(json!({ "facets": {} })),
document(json!({ "facets": { "other.key": "other.value" } })),
document(json!({ "facets": { "other.key": "other.value" } }))
; "empty my facet"
)]
#[test_case(
document(json!({ "facets": { "key": { "type": "some_type" } } })),
document(json!({ "facets": { "key": { "runner": "some_runner"} } })),
document(json!({ "facets": { "key": { "type": "some_type", "runner": "some_runner" } } }))
; "nested facet key"
)]
#[test_case(
document(json!({ "facets": { "key": { "type": "some_type", "nested_key": { "type": "new type" }}}})),
document(json!({ "facets": { "key": { "nested_key": { "runner": "some_runner" }} } })),
document(json!({ "facets": { "key": { "type": "some_type", "nested_key": { "runner": "some_runner", "type": "new type" }}}}))
; "double nested facet key"
)]
#[test_case(
document(json!({ "facets": { "key": { "array_key": ["value_1", "value_2"] } } })),
document(json!({ "facets": { "key": { "array_key": ["value_3", "value_4"] } } })),
document(json!({ "facets": { "key": { "array_key": ["value_1", "value_2", "value_3", "value_4"] } } }))
; "merge array values"
)]
fn test_merge_from_facets(mut my: Document, mut other: Document, expected: Document) {
my.merge_from(&mut other, &Path::new("some/path")).unwrap();
assert_eq!(my.facets, expected.facets);
}
#[test_case(
document(json!({ "facets": { "key": "my.value" }})),
document(json!({ "facets": { "key": "other.value" }})),
"facets.key"
; "conflict first level keys"
)]
#[test_case(
document(json!({ "facets": { "key": {"type": "cts" }}})),
document(json!({ "facets": { "key": {"type": "system" }}})),
"facets.key.type"
; "conflict second level keys"
)]
#[test_case(
document(json!({ "facets": { "key": {"type": {"key": "value" }}}})),
document(json!({ "facets": { "key": {"type": "system" }}})),
"facets.key.type"
; "incompatible self nested type"
)]
#[test_case(
document(json!({ "facets": { "key": {"type": "system" }}})),
document(json!({ "facets": { "key": {"type": {"key": "value" }}}})),
"facets.key.type"
; "incompatible other nested type"
)]
#[test_case(
document(json!({ "facets": { "key": {"type": {"key": "my.value" }}}})),
document(json!({ "facets": { "key": {"type": {"key": "some.value" }}}})),
"facets.key.type.key"
; "conflict third level keys"
)]
#[test_case(
document(json!({ "facets": { "key": {"type": [ "value_1" ]}}})),
document(json!({ "facets": { "key": {"type": "value_2" }}})),
"facets.key.type"
; "incompatible keys"
)]
fn test_merge_from_facet_error(mut my: Document, mut other: Document, field: &str) {
assert_matches::assert_matches!(
my.merge_from(&mut other, &path::Path::new("some/path")),
Err(Error::Validate { err, .. })
if err == format!("manifest include had a conflicting `{}`: some/path", field)
);
}
#[test_case("protocol")]
#[test_case("service")]
#[test_case("event_stream")]
fn test_merge_from_duplicate_use_array(typename: &str) {
let mut my = document(json!({ "use": [{ typename: "a" }]}));
let mut other = document(json!({ "use": [
{ typename: ["a", "b"], "availability": "optional"}
]}));
let result = document(json!({ "use": [
{ typename: "a" },
{ typename: "b", "availability": "optional" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case("directory")]
#[test_case("storage")]
fn test_merge_from_duplicate_use_noarray(typename: &str) {
let mut my = document(json!({ "use": [{ typename: "a", "path": "/a"}]}));
let mut other = document(json!({ "use": [
{ typename: "a", "path": "/a", "availability": "optional" },
{ typename: "b", "path": "/b", "availability": "optional" },
]}));
let result = document(json!({ "use": [
{ typename: "a", "path": "/a" },
{ typename: "b", "path": "/b", "availability": "optional" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case("protocol")]
#[test_case("service")]
#[test_case("event_stream")]
fn test_merge_from_duplicate_capabilities_array(typename: &str) {
let mut my = document(json!({ "capabilities": [{ typename: "a" }]}));
let mut other = document(json!({ "capabilities": [ { typename: ["a", "b"] } ]}));
let result = document(json!({ "capabilities": [ { typename: "a" }, { typename: "b" } ]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case("directory")]
#[test_case("storage")]
#[test_case("runner")]
#[test_case("resolver")]
fn test_merge_from_duplicate_capabilities_noarray(typename: &str) {
let mut my = document(json!({ "capabilities": [{ typename: "a", "path": "/a"}]}));
let mut other = document(json!({ "capabilities": [
{ typename: "a", "path": "/a" },
{ typename: "b", "path": "/b" },
]}));
let result = document(json!({ "capabilities": [
{ typename: "a", "path": "/a" },
{ typename: "b", "path": "/b" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test]
fn test_merge_with_empty_names() {
// This document is an error because there is no capability name.
let mut my = document(json!({ "capabilities": [{ "path": "/a"}]}));
let mut other = document(json!({ "capabilities": [
{ "directory": "a", "path": "/a" },
{ "directory": "b", "path": "/b" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap_err();
}
#[test_case("protocol")]
#[test_case("service")]
#[test_case("event_stream")]
#[test_case("directory")]
#[test_case("storage")]
#[test_case("runner")]
#[test_case("resolver")]
fn test_merge_from_duplicate_offers(typename: &str) {
let mut my = document(json!({ "offer": [{ typename: "a", "from": "self", "to": "#c" }]}));
let mut other = document(json!({ "offer": [
{ typename: ["a", "b"], "from": "self", "to": "#c", "availability": "optional" }
]}));
let result = document(json!({ "offer": [
{ typename: "a", "from": "self", "to": "#c" },
{ typename: "b", "from": "self", "to": "#c", "availability": "optional" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case("protocol")]
#[test_case("service")]
#[test_case("event_stream")]
#[test_case("directory")]
#[test_case("runner")]
#[test_case("resolver")]
fn test_merge_from_duplicate_exposes(typename: &str) {
let mut my = document(json!({ "expose": [{ typename: "a", "from": "self" }]}));
let mut other = document(json!({ "expose": [
{ typename: ["a", "b"], "from": "self" }
]}));
let result = document(json!({ "expose": [
{ typename: "a", "from": "self" },
{ typename: "b", "from": "self" },
]}));
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case(
document(json!({ "use": [
{ "protocol": "a", "availability": "required" },
{ "protocol": "b", "availability": "optional" },
{ "protocol": "c", "availability": "transitional" },
{ "protocol": "d", "availability": "same_as_target" },
]})),
document(json!({ "use": [
{ "protocol": ["a"], "availability": "required" },
{ "protocol": ["b"], "availability": "optional" },
{ "protocol": ["c"], "availability": "transitional" },
{ "protocol": ["d"], "availability": "same_as_target" },
]})),
document(json!({ "use": [
{ "protocol": "a", "availability": "required" },
{ "protocol": "b", "availability": "optional" },
{ "protocol": "c", "availability": "transitional" },
{ "protocol": "d", "availability": "same_as_target" },
]}))
; "merge both same"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": "a", "availability": "optional" },
{ "protocol": "b", "availability": "transitional" },
{ "protocol": "c", "availability": "transitional" },
]})),
document(json!({ "use": [
{ "protocol": ["a", "x"], "availability": "required" },
{ "protocol": ["b", "y"], "availability": "optional" },
{ "protocol": ["c", "z"], "availability": "required" },
]})),
document(json!({ "use": [
{ "protocol": ["a", "x"], "availability": "required" },
{ "protocol": ["b", "y"], "availability": "optional" },
{ "protocol": ["c", "z"], "availability": "required" },
]}))
; "merge with upgrade"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": "a", "availability": "required" },
{ "protocol": "b", "availability": "optional" },
{ "protocol": "c", "availability": "required" },
]})),
document(json!({ "use": [
{ "protocol": ["a", "x"], "availability": "optional" },
{ "protocol": ["b", "y"], "availability": "transitional" },
{ "protocol": ["c", "z"], "availability": "transitional" },
]})),
document(json!({ "use": [
{ "protocol": "a", "availability": "required" },
{ "protocol": "b", "availability": "optional" },
{ "protocol": "c", "availability": "required" },
{ "protocol": "x", "availability": "optional" },
{ "protocol": "y", "availability": "transitional" },
{ "protocol": "z", "availability": "transitional" },
]}))
; "merge with downgrade"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": "a", "availability": "optional" },
{ "protocol": "b", "availability": "transitional" },
{ "protocol": "c", "availability": "transitional" },
]})),
document(json!({ "use": [
{ "protocol": ["a", "x"], "availability": "same_as_target" },
{ "protocol": ["b", "y"], "availability": "same_as_target" },
{ "protocol": ["c", "z"], "availability": "same_as_target" },
]})),
document(json!({ "use": [
{ "protocol": "a", "availability": "optional" },
{ "protocol": "b", "availability": "transitional" },
{ "protocol": "c", "availability": "transitional" },
{ "protocol": ["a", "x"], "availability": "same_as_target" },
{ "protocol": ["b", "y"], "availability": "same_as_target" },
{ "protocol": ["c", "z"], "availability": "same_as_target" },
]}))
; "merge with no replacement"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": ["a", "b", "c"], "availability": "optional" },
{ "protocol": "d", "availability": "same_as_target" },
{ "protocol": ["e", "f"] },
]})),
document(json!({ "use": [
{ "protocol": ["c", "e", "g"] },
{ "protocol": ["d", "h"] },
{ "protocol": ["f", "i"], "availability": "transitional" },
]})),
document(json!({ "use": [
{ "protocol": ["a", "b"], "availability": "optional" },
{ "protocol": "d", "availability": "same_as_target" },
{ "protocol": ["e", "f"] },
{ "protocol": ["c", "g"] },
{ "protocol": ["d", "h"] },
{ "protocol": "i", "availability": "transitional" },
]}))
; "merge multiple"
)]
fn test_merge_from_duplicate_capability_availability(
mut my: Document,
mut other: Document,
result: Document,
) {
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case(
document(json!({ "use": [{ "protocol": ["a", "b"] }]})),
document(json!({ "use": [{ "protocol": ["c", "d"] }]})),
document(json!({ "use": [
{ "protocol": ["a", "b"] }, { "protocol": ["c", "d"] }
]}))
; "merge capabilities with disjoint sets"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": ["a"] },
{ "protocol": "b" },
]})),
document(json!({ "use": [{ "protocol": ["a", "b"] }]})),
document(json!({ "use": [
{ "protocol": ["a"] }, { "protocol": "b" },
]}))
; "merge capabilities with equal set"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": ["a", "b"] },
{ "protocol": "c" },
]})),
document(json!({ "use": [{ "protocol": ["a", "b"] }]})),
document(json!({ "use": [
{ "protocol": ["a", "b"] }, { "protocol": "c" },
]}))
; "merge capabilities with subset"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": ["a", "b"] },
]})),
document(json!({ "use": [{ "protocol": ["a", "b", "c"] }]})),
document(json!({ "use": [
{ "protocol": ["a", "b"] },
{ "protocol": "c" },
]}))
; "merge capabilities with superset"
)]
#[test_case(
document(json!({ "use": [
{ "protocol": ["a", "b"] },
]})),
document(json!({ "use": [{ "protocol": ["b", "c", "d"] }]})),
document(json!({ "use": [
{ "protocol": ["a", "b"] }, { "protocol": ["c", "d"] }
]}))
; "merge capabilities with intersection"
)]
#[test_case(
document(json!({ "use": [{ "protocol": ["a", "b"] }]})),
document(json!({ "use": [
{ "protocol": ["c", "b", "d"] },
{ "protocol": ["e", "d"] },
]})),
document(json!({ "use": [
{"protocol": ["a", "b"] },
{"protocol": ["c", "d"] },
{"protocol": "e" }]}))
; "merge capabilities from multiple arrays"
)]
#[test_case(
document(json!({ "use": [{ "protocol": "foo.bar.Baz", "from": "self"}]})),
document(json!({ "use": [{ "service": "foo.bar.Baz", "from": "self"}]})),
document(json!({ "use": [
{"protocol": "foo.bar.Baz", "from": "self"},
{"service": "foo.bar.Baz", "from": "self"}]}))
; "merge capabilities, types don't match"
)]
#[test_case(
document(json!({ "use": [{ "protocol": "foo.bar.Baz", "from": "self"}]})),
document(json!({ "use": [{ "protocol": "foo.bar.Baz" }]})),
document(json!({ "use": [
{"protocol": "foo.bar.Baz", "from": "self"},
{"protocol": "foo.bar.Baz"}]}))
; "merge capabilities, fields don't match"
)]
fn test_merge_from_duplicate_capability(
mut my: Document,
mut other: Document,
result: Document,
) {
my.merge_from(&mut other, &path::Path::new("some/path")).unwrap();
assert_eq!(my, result);
}
#[test_case(&Right::Connect; "connect right")]
#[test_case(&Right::Enumerate; "enumerate right")]
#[test_case(&Right::Execute; "execute right")]
#[test_case(&Right::GetAttributes; "getattr right")]
#[test_case(&Right::ModifyDirectory; "modifydir right")]
#[test_case(&Right::ReadBytes; "readbytes right")]
#[test_case(&Right::Traverse; "traverse right")]
#[test_case(&Right::UpdateAttributes; "updateattrs right")]
#[test_case(&Right::WriteBytes; "writebytes right")]
#[test_case(&Right::ReadAlias; "r right")]
#[test_case(&Right::WriteAlias; "w right")]
#[test_case(&Right::ExecuteAlias; "x right")]
#[test_case(&Right::ReadWriteAlias; "rw right")]
#[test_case(&Right::ReadExecuteAlias; "rx right")]
#[test_case(&OfferFromRef::Self_; "offer from self")]
#[test_case(&OfferFromRef::Parent; "offer from parent")]
#[test_case(&OfferFromRef::Named(Name::new("child".to_string()).unwrap()); "offer from named")]
#[test_case(
&document(json!({}));
"empty document"
)]
#[test_case(
&document(json!({ "use": [{ "protocol": "foo.bar.Baz", "from": "self"}]}));
"use one from self"
)]
#[test_case(
&document(json!({ "use": [{ "protocol": ["foo.bar.Baz", "some.other.Protocol"], "from": "self"}]}));
"use multiple from self"
)]
#[test_case(
&document(json!({
"offer": [{ "protocol": "foo.bar.Baz", "from": "self", "to": "#elements"}],
"collections" :[{"name": "elements", "durability": "transient" }]
}));
"offer from self to collection"
)]
#[test_case(
&document(json!({
"offer": [
{ "service": "foo.bar.Baz", "from": "self", "to": "#elements" },
{ "service": "some.other.Service", "from": "self", "to": "#elements"},
],
"collections":[ {"name": "elements", "durability": "transient"} ]}));
"service offers"
)]
#[test_case(
&document(json!({ "expose": [{ "protocol": ["foo.bar.Baz", "some.other.Protocol"], "from": "self"}]}));
"expose protocols from self"
)]
#[test_case(
&document(json!({ "expose": [{ "service": ["foo.bar.Baz", "some.other.Service"], "from": "self"}]}));
"expose service from self"
)]
#[test_case(
&document(json!({ "capabilities": [{ "protocol": "foo.bar.Baz", "from": "self"}]}));
"capabilities from self"
)]
#[test_case(
&document(json!({ "facets": { "my.key": "my.value" } }));
"facets"
)]
#[test_case(
&document(json!({ "program": { "binary": "bin/hello_world", "runner": "elf" } }));
"elf runner program"
)]
fn serialize_roundtrips<T>(val: &T)
where
T: serde::de::DeserializeOwned + Serialize + PartialEq + std::fmt::Debug,
{
let raw = serde_json::to_string(val).expect("serializing `val` should work");
let parsed: T =
serde_json::from_str(&raw).expect("must be able to parse back serialized value");
assert_eq!(val, &parsed, "parsed value must equal original value");
}
}