flowey_core/node.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Core types and traits used to create and work with flowey nodes.
mod github_context;
mod spec;
pub use github_context::GhVarState;
use self::steps::ado::AdoRuntimeVar;
use self::steps::ado::AdoStepServices;
use self::steps::github::GhStepBuilder;
use self::steps::rust::RustRuntimeServices;
use self::user_facing::ClaimedGhParam;
use self::user_facing::GhPermission;
use self::user_facing::GhPermissionValue;
use crate::node::github_context::GhContextVarReader;
use github_context::state::Root;
use serde::Deserialize;
use serde::Serialize;
use serde::de::DeserializeOwned;
use std::cell::RefCell;
use std::collections::BTreeMap;
use std::path::PathBuf;
use std::rc::Rc;
use user_facing::GhParam;
/// Node types which are considered "user facing", and re-exported in the
/// `flowey` crate.
pub mod user_facing {
pub use super::ClaimVar;
pub use super::ClaimedReadVar;
pub use super::ClaimedWriteVar;
pub use super::FlowArch;
pub use super::FlowBackend;
pub use super::FlowNode;
pub use super::FlowPlatform;
pub use super::FlowPlatformKind;
pub use super::GhUserSecretVar;
pub use super::ImportCtx;
pub use super::IntoRequest;
pub use super::NodeCtx;
pub use super::ReadVar;
pub use super::SideEffect;
pub use super::SimpleFlowNode;
pub use super::StepCtx;
pub use super::VarClaimed;
pub use super::VarEqBacking;
pub use super::VarNotClaimed;
pub use super::WriteVar;
pub use super::steps::ado::AdoResourcesRepositoryId;
pub use super::steps::ado::AdoRuntimeVar;
pub use super::steps::ado::AdoStepServices;
pub use super::steps::github::ClaimedGhParam;
pub use super::steps::github::GhParam;
pub use super::steps::github::GhPermission;
pub use super::steps::github::GhPermissionValue;
pub use super::steps::rust::RustRuntimeServices;
pub use crate::flowey_request;
pub use crate::new_flow_node;
pub use crate::new_simple_flow_node;
pub use crate::node::FlowPlatformLinuxDistro;
/// Helper method to streamline request validation in cases where a value is
/// expected to be identical across all incoming requests.
pub fn same_across_all_reqs<T: PartialEq>(
req_name: &str,
var: &mut Option<T>,
new: T,
) -> anyhow::Result<()> {
match (var.as_ref(), new) {
(None, v) => *var = Some(v),
(Some(old), new) => {
if *old != new {
anyhow::bail!("`{}` must be consistent across requests", req_name);
}
}
}
Ok(())
}
/// Helper method to streamline request validation in cases where a value is
/// expected to be identical across all incoming requests, using a custom
/// comparison function.
pub fn same_across_all_reqs_backing_var<V: VarEqBacking>(
req_name: &str,
var: &mut Option<V>,
new: V,
) -> anyhow::Result<()> {
match (var.as_ref(), new) {
(None, v) => *var = Some(v),
(Some(old), new) => {
if !old.eq(&new) {
anyhow::bail!("`{}` must be consistent across requests", req_name);
}
}
}
Ok(())
}
}
/// Check if `ReadVar` / `WriteVar` instances are backed by the same underlying
/// flowey Var.
///
/// # Why not use `Eq`? Why have a whole separate trait?
///
/// `ReadVar` and `WriteVar` are, in some sense, flowey's analog to
/// "pointers", insofar as these types primary purpose is to mediate access to
/// some contained value, as opposed to being "values" themselves.
///
/// Assuming you agree with this analogy, then we can apply the same logic to
/// `ReadVar` and `WriteVar` as Rust does to `Box<T>` wrt. what the `Eq`
/// implementation should mean.
///
/// Namely: `Eq` should check the equality of the _contained objects_, as
/// opposed to the pointers themselves.
///
/// Unfortunately, unlike `Box<T>`, it is _impossible_ to have an `Eq` impl for
/// `ReadVar` / `WriteVar` that checks contents for equality, due to the fact
/// that these types exist at flow resolution time, whereas the values they
/// contain only exist at flow runtime.
///
/// As such, we have a separate trait to perform different kinds of equality
/// checks on Vars.
pub trait VarEqBacking {
/// Check if `self` is backed by the same variable as `other`.
fn eq(&self, other: &Self) -> bool;
}
impl<T> VarEqBacking for WriteVar<T>
where
T: Serialize + DeserializeOwned,
{
fn eq(&self, other: &Self) -> bool {
self.backing_var == other.backing_var && self.is_secret == other.is_secret
}
}
impl<T> VarEqBacking for ReadVar<T>
where
T: Serialize + DeserializeOwned + PartialEq + Eq + Clone,
{
fn eq(&self, other: &Self) -> bool {
self.backing_var == other.backing_var && self.is_secret == other.is_secret
}
}
// TODO: this should be generic across all tuple sizes
impl<T, U> VarEqBacking for (T, U)
where
T: VarEqBacking,
U: VarEqBacking,
{
fn eq(&self, other: &Self) -> bool {
(self.0.eq(&other.0)) && (self.1.eq(&other.1))
}
}
/// Uninhabited type corresponding to a step which performs a side-effect,
/// without returning a specific value.
///
/// e.g: A step responsible for installing a package from `apt` might claim a
/// `WriteVar<SideEffect>`, with any step requiring the package to have been
/// installed prior being able to claim the corresponding `ReadVar<SideEffect>.`
#[derive(Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Debug, Clone, Copy)]
pub enum SideEffect {}
/// Uninhabited type used to denote that a particular [`WriteVar`] / [`ReadVar`]
/// is not currently claimed by any step, and cannot be directly accessed.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum VarNotClaimed {}
/// Uninhabited type used to denote that a particular [`WriteVar`] / [`ReadVar`]
/// is currently claimed by a step, and can be read/written to.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum VarClaimed {}
/// Write a value into a flowey Var at runtime, which can then be read via a
/// corresponding [`ReadVar`].
///
/// Vars in flowey must be serde de/serializable, in order to be de/serialized
/// between multiple steps/nodes.
///
/// In order to write a value into a `WriteVar`, it must first be _claimed_ by a
/// particular step (using the [`ClaimVar::claim`] API). Once claimed, the Var
/// can be written to using APIs such as [`RustRuntimeServices::write`], or
/// [`AdoStepServices::set_var`]
///
/// Note that it is only possible to write a value into a `WriteVar` _once_.
/// Once the value has been written, the `WriteVar` type is immediately
/// consumed, making it impossible to overwrite the stored value at some later
/// point in execution.
///
/// This "write-once" property is foundational to flowey's execution model, as
/// by recoding what step wrote to a Var, and what step(s) read from the Var, it
/// is possible to infer what order steps must be run in.
#[derive(Debug, Serialize, Deserialize)]
pub struct WriteVar<T: Serialize + DeserializeOwned, C = VarNotClaimed> {
backing_var: String,
is_secret: bool,
#[serde(skip)]
_kind: core::marker::PhantomData<(T, C)>,
}
/// A [`WriteVar`] which has been claimed by a particular step, allowing it
/// to be written to at runtime.
pub type ClaimedWriteVar<T> = WriteVar<T, VarClaimed>;
impl<T: Serialize + DeserializeOwned> WriteVar<T, VarNotClaimed> {
/// (Internal API) Switch the claim marker to "claimed".
fn into_claimed(self) -> WriteVar<T, VarClaimed> {
let Self {
backing_var,
is_secret,
_kind,
} = self;
WriteVar {
backing_var,
is_secret,
_kind: std::marker::PhantomData,
}
}
/// Create a new [`ReadVar`] from this [`WriteVar`] handle.
#[must_use]
pub fn new_reader(&self) -> ReadVar<T> {
ReadVar {
backing_var: ReadVarBacking::RuntimeVar(self.backing_var.clone()),
is_secret: self.is_secret,
_kind: std::marker::PhantomData,
}
}
/// Write a static value into the Var.
#[track_caller]
pub fn write_static(self, ctx: &mut NodeCtx<'_>, val: T)
where
T: 'static,
{
let val = ReadVar::from_static(val);
val.write_into(ctx, self, |v| v);
}
}
impl<T: Serialize + DeserializeOwned, C> WriteVar<T, C> {
/// Return whether the WriteVar is a secret.
pub fn is_secret(&self) -> bool {
self.is_secret
}
}
/// Claim one or more flowey Vars for a particular step.
///
/// By having this be a trait, it is possible to `claim` both single instances
/// of `ReadVar` / `WriteVar`, as well as whole _collections_ of Vars.
//
// FUTURE: flowey should include a derive macro for easily claiming read/write
// vars in user-defined structs / enums.
pub trait ClaimVar {
/// The claimed version of Self.
type Claimed;
/// Claim the Var for this step, allowing it to be accessed at runtime.
fn claim(self, ctx: &mut StepCtx<'_>) -> Self::Claimed;
}
impl<T: Serialize + DeserializeOwned> ClaimVar for ReadVar<T> {
type Claimed = ClaimedReadVar<T>;
fn claim(self, ctx: &mut StepCtx<'_>) -> ClaimedReadVar<T> {
if let ReadVarBacking::RuntimeVar(var) = &self.backing_var {
ctx.backend.borrow_mut().on_claimed_runtime_var(var, true);
}
self.into_claimed()
}
}
impl<T: Serialize + DeserializeOwned> ClaimVar for WriteVar<T> {
type Claimed = ClaimedWriteVar<T>;
fn claim(self, ctx: &mut StepCtx<'_>) -> ClaimedWriteVar<T> {
ctx.backend
.borrow_mut()
.on_claimed_runtime_var(&self.backing_var, false);
self.into_claimed()
}
}
impl<T: ClaimVar> ClaimVar for Vec<T> {
type Claimed = Vec<T::Claimed>;
fn claim(self, ctx: &mut StepCtx<'_>) -> Vec<T::Claimed> {
self.into_iter().map(|v| v.claim(ctx)).collect()
}
}
impl<T: ClaimVar> ClaimVar for Option<T> {
type Claimed = Option<T::Claimed>;
fn claim(self, ctx: &mut StepCtx<'_>) -> Option<T::Claimed> {
self.map(|x| x.claim(ctx))
}
}
impl<U: Ord, T: ClaimVar> ClaimVar for BTreeMap<U, T> {
type Claimed = BTreeMap<U, T::Claimed>;
fn claim(self, ctx: &mut StepCtx<'_>) -> BTreeMap<U, T::Claimed> {
self.into_iter().map(|(k, v)| (k, v.claim(ctx))).collect()
}
}
macro_rules! impl_tuple_claim {
($($T:tt)*) => {
impl<$($T,)*> ClaimVar for ($($T,)*)
where
$($T: ClaimVar,)*
{
type Claimed = ($($T::Claimed,)*);
#[expect(non_snake_case)]
fn claim(self, ctx: &mut StepCtx<'_>) -> Self::Claimed {
let ($($T,)*) = self;
($($T.claim(ctx),)*)
}
}
};
}
impl_tuple_claim!(A B C D E F G H I J);
impl_tuple_claim!(A B C D E F G H I);
impl_tuple_claim!(A B C D E F G H);
impl_tuple_claim!(A B C D E F G);
impl_tuple_claim!(A B C D E F);
impl_tuple_claim!(A B C D E);
impl_tuple_claim!(A B C D);
impl_tuple_claim!(A B C);
impl_tuple_claim!(A B);
impl_tuple_claim!(A);
/// Read a custom, user-defined secret by passing in the secret name.
///
/// Intended usage is to get a secret using the [`crate::pipeline::Pipeline::gh_use_secret`] API
/// and to use the returned value through the [`NodeCtx::get_gh_context_var`] API.
#[derive(Serialize, Deserialize, Clone)]
pub struct GhUserSecretVar(pub(crate) String);
/// Read a value from a flowey Var at runtime, returning the value written by
/// the Var's corresponding [`WriteVar`].
///
/// Vars in flowey must be serde de/serializable, in order to be de/serialized
/// between multiple steps/nodes.
///
/// In order to read the value contained within a `ReadVar`, it must first be
/// _claimed_ by a particular step (using the [`ClaimVar::claim`] API). Once
/// claimed, the Var can be read using APIs such as
/// [`RustRuntimeServices::read`], or [`AdoStepServices::get_var`]
///
/// Note that all `ReadVar`s in flowey are _immutable_. In other words:
/// reading the value of a `ReadVar` multiple times from multiple nodes will
/// _always_ return the same value.
///
/// This is a natural consequence `ReadVar` obtaining its value from the result
/// of a write into [`WriteVar`], whose API enforces that there can only ever be
/// a single Write to a `WriteVar`.
#[derive(Debug, Serialize, Deserialize)]
pub struct ReadVar<T: Serialize + DeserializeOwned, C = VarNotClaimed> {
#[serde(bound = "")] // work around serde/issues/1296
backing_var: ReadVarBacking<T>,
is_secret: bool,
#[serde(skip)]
_kind: std::marker::PhantomData<C>,
}
/// A [`ReadVar`] which has been claimed by a particular step, allowing it to
/// be read at runtime.
pub type ClaimedReadVar<T> = ReadVar<T, VarClaimed>;
// cloning is fine, since you can totally have multiple dependents
impl<T: Serialize + DeserializeOwned, C> Clone for ReadVar<T, C> {
fn clone(&self) -> Self {
ReadVar {
backing_var: self.backing_var.clone(),
is_secret: self.is_secret,
_kind: std::marker::PhantomData,
}
}
}
#[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
enum ReadVarBacking<T: Serialize + DeserializeOwned> {
RuntimeVar(String),
#[serde(bound = "")] // work around serde/issues/1296
Inline(T),
InlineSideEffect,
}
// avoid requiring types to include an explicit clone bound
impl<T: Serialize + DeserializeOwned> Clone for ReadVarBacking<T> {
fn clone(&self) -> Self {
match self {
Self::RuntimeVar(v) => Self::RuntimeVar(v.clone()),
Self::Inline(v) => {
Self::Inline(serde_json::from_value(serde_json::to_value(v).unwrap()).unwrap())
}
Self::InlineSideEffect => Self::InlineSideEffect,
}
}
}
impl<T: Serialize + DeserializeOwned> ReadVar<T> {
/// (Internal API) Switch the claim marker to "claimed".
fn into_claimed(self) -> ReadVar<T, VarClaimed> {
let Self {
backing_var,
is_secret,
_kind,
} = self;
ReadVar {
backing_var,
is_secret,
_kind: std::marker::PhantomData,
}
}
/// Discard any type information associated with the Var, and treat the Var
/// as through it was only a side effect.
///
/// e.g: if a Node returns a `ReadVar<PathBuf>`, but you know that the mere
/// act of having _run_ the node has ensured the file is placed in a "magic
/// location" for some other node, then it may be useful to treat the
/// `ReadVar<PathBuf>` as a simple `ReadVar<SideEffect>`, which can be
/// passed along as part of a larger bundle of `Vec<ReadVar<SideEffect>>`.
#[must_use]
pub fn into_side_effect(self) -> ReadVar<SideEffect> {
ReadVar {
backing_var: match self.backing_var {
ReadVarBacking::RuntimeVar(var) => ReadVarBacking::RuntimeVar(var),
ReadVarBacking::Inline(_) => ReadVarBacking::InlineSideEffect,
ReadVarBacking::InlineSideEffect => ReadVarBacking::InlineSideEffect,
},
is_secret: self.is_secret,
_kind: std::marker::PhantomData,
}
}
/// Maps a `ReadVar<T>` to a new `ReadVar<U>`, by applying a function to the
/// Var at runtime.
#[track_caller]
#[must_use]
pub fn map<F, U>(&self, ctx: &mut NodeCtx<'_>, f: F) -> ReadVar<U>
where
T: 'static,
U: Serialize + DeserializeOwned + 'static,
F: FnOnce(T) -> U + 'static,
{
let (read_from, write_into) = ctx.new_maybe_secret_var(self.is_secret, "");
self.write_into(ctx, write_into, f);
read_from
}
/// Maps a `ReadVar<T>` into an existing `WriteVar<U>` by applying a
/// function to the Var at runtime.
#[track_caller]
pub fn write_into<F, U>(&self, ctx: &mut NodeCtx<'_>, write_into: WriteVar<U>, f: F)
where
T: 'static,
U: Serialize + DeserializeOwned + 'static,
F: FnOnce(T) -> U + 'static,
{
let this = self.clone();
ctx.emit_minor_rust_step("🌼 write_into Var", move |ctx| {
let this = this.claim(ctx);
let write_into = write_into.claim(ctx);
move |rt| {
let this = rt.read(this);
rt.write(write_into, &f(this));
}
});
}
/// Zips self (`ReadVar<T>`) with another `ReadVar<U>`, returning a new
/// `ReadVar<(T, U)>`
#[track_caller]
#[must_use]
pub fn zip<U>(&self, ctx: &mut NodeCtx<'_>, other: ReadVar<U>) -> ReadVar<(T, U)>
where
T: 'static,
U: Serialize + DeserializeOwned + 'static,
{
let (read_from, write_into) =
ctx.new_maybe_secret_var(self.is_secret || other.is_secret, "");
let this = self.clone();
ctx.emit_minor_rust_step("🌼 Zip Vars", move |ctx| {
let this = this.claim(ctx);
let other = other.claim(ctx);
let write_into = write_into.claim(ctx);
move |rt| {
let this = rt.read(this);
let other = rt.read(other);
rt.write(write_into, &(this, other));
}
});
read_from
}
/// Create a new `ReadVar` from a static value.
///
/// **WARNING:** Static vars **CANNOT BE SECRETS**, as they are encoded as
/// plain-text in the output flow.
#[track_caller]
#[must_use]
pub fn from_static(val: T) -> ReadVar<T>
where
T: 'static,
{
ReadVar {
backing_var: ReadVarBacking::Inline(val),
is_secret: false,
_kind: std::marker::PhantomData,
}
}
/// If this [`ReadVar`] contains a static value, return it.
///
/// Nodes can opt-in to using this method as a way to generate optimized
/// steps in cases where the value of a variable is known ahead of time.
///
/// e.g: a node doing a git checkout could leverage this method to decide
/// whether its ADO backend should emit a conditional step for checking out
/// a repo, or if it can statically include / exclude the checkout request.
pub fn get_static(&self) -> Option<T> {
match self.clone().backing_var {
ReadVarBacking::Inline(v) => Some(v),
_ => None,
}
}
/// Transpose a `Vec<ReadVar<T>>` into a `ReadVar<Vec<T>>`
#[track_caller]
#[must_use]
pub fn transpose_vec(ctx: &mut NodeCtx<'_>, vec: Vec<ReadVar<T>>) -> ReadVar<Vec<T>>
where
T: 'static,
{
let (read_from, write_into) = ctx.new_maybe_secret_var(vec.iter().any(|v| v.is_secret), "");
ctx.emit_minor_rust_step("🌼 Transpose Vec<ReadVar<T>>", move |ctx| {
let vec = vec.claim(ctx);
let write_into = write_into.claim(ctx);
move |rt| {
let mut v = Vec::new();
for var in vec {
v.push(rt.read(var));
}
rt.write(write_into, &v);
}
});
read_from
}
/// Consume this `ReadVar` outside the context of a step, signalling that it
/// won't be used.
pub fn claim_unused(self, ctx: &mut NodeCtx<'_>) {
match self.backing_var {
ReadVarBacking::RuntimeVar(s) => ctx.backend.borrow_mut().on_unused_read_var(&s),
ReadVarBacking::Inline(_) => {}
ReadVarBacking::InlineSideEffect => {}
}
}
}
/// DANGER: obtain a handle to a [`ReadVar`] "out of thin air".
///
/// This should NEVER be used from within a flowey node. This is a sharp tool,
/// and should only be used by code implementing flow / pipeline resolution
/// logic.
#[must_use]
pub fn thin_air_read_runtime_var<T>(backing_var: String, is_secret: bool) -> ReadVar<T>
where
T: Serialize + DeserializeOwned,
{
ReadVar {
backing_var: ReadVarBacking::RuntimeVar(backing_var),
is_secret,
_kind: std::marker::PhantomData,
}
}
/// DANGER: obtain a handle to a [`WriteVar`] "out of thin air".
///
/// This should NEVER be used from within a flowey node. This is a sharp tool,
/// and should only be used by code implementing flow / pipeline resolution
/// logic.
#[must_use]
pub fn thin_air_write_runtime_var<T>(backing_var: String, is_secret: bool) -> WriteVar<T>
where
T: Serialize + DeserializeOwned,
{
WriteVar {
backing_var,
is_secret,
_kind: std::marker::PhantomData,
}
}
/// DANGER: obtain a [`ReadVar`] backing variable and secret status.
///
/// This should NEVER be used from within a flowey node. This relies on
/// flowey variable implementation details, and should only be used by code
/// implementing flow / pipeline resolution logic.
pub fn read_var_internals<T: Serialize + DeserializeOwned, C>(
var: &ReadVar<T, C>,
) -> (Option<String>, bool) {
match &var.backing_var {
ReadVarBacking::RuntimeVar(s) => (Some(s.clone()), var.is_secret),
ReadVarBacking::Inline(_) => (None, var.is_secret),
ReadVarBacking::InlineSideEffect => (None, var.is_secret),
}
}
pub trait ImportCtxBackend {
fn on_possible_dep(&mut self, node_handle: NodeHandle);
}
/// Context passed to [`FlowNode::imports`].
pub struct ImportCtx<'a> {
backend: &'a mut dyn ImportCtxBackend,
}
impl ImportCtx<'_> {
/// Declare that a Node can be referenced in [`FlowNode::emit`]
pub fn import<N: FlowNodeBase + 'static>(&mut self) {
self.backend.on_possible_dep(NodeHandle::from_type::<N>())
}
}
pub fn new_import_ctx(backend: &mut dyn ImportCtxBackend) -> ImportCtx<'_> {
ImportCtx { backend }
}
#[derive(Debug)]
pub enum CtxAnchor {
PostJob,
}
pub trait NodeCtxBackend {
/// Handle to the current node this `ctx` corresponds to
fn current_node(&self) -> NodeHandle;
/// Return a string which uniquely identifies this particular Var
/// registration.
///
/// Typically consists of `{current node handle}{ordinal}`
fn on_new_var(&mut self) -> String;
/// Invoked when a node claims a particular runtime variable
fn on_claimed_runtime_var(&mut self, var: &str, is_read: bool);
/// Invoked when a node marks a particular runtime variable as unused
fn on_unused_read_var(&mut self, var: &str);
/// Invoked when a node sets a request on a node.
///
/// - `node_typeid` will always correspond to a node that was previously
/// passed to `on_register`.
/// - `req` may be an error, in the case where the NodeCtx failed to
/// serialize the provided request.
// FIXME: this should be using type-erased serde
fn on_request(&mut self, node_handle: NodeHandle, req: anyhow::Result<Box<[u8]>>);
fn on_emit_rust_step(
&mut self,
label: &str,
can_merge: bool,
code: Box<dyn for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()>>,
);
fn on_emit_ado_step(
&mut self,
label: &str,
yaml_snippet: Box<dyn for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String>,
inline_script: Option<
Box<dyn for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()>>,
>,
condvar: Option<String>,
);
fn on_emit_gh_step(
&mut self,
label: &str,
uses: &str,
with: BTreeMap<String, ClaimedGhParam>,
condvar: Option<String>,
outputs: BTreeMap<String, Vec<GhVarState>>,
permissions: BTreeMap<GhPermission, GhPermissionValue>,
gh_to_rust: Vec<GhVarState>,
rust_to_gh: Vec<GhVarState>,
);
fn on_emit_side_effect_step(&mut self);
fn backend(&mut self) -> FlowBackend;
fn platform(&mut self) -> FlowPlatform;
fn arch(&mut self) -> FlowArch;
/// Return a node-specific persistent store path. The backend does not need
/// to ensure that the path exists - flowey will automatically emit a step
/// to construct the directory at runtime.
fn persistent_dir_path_var(&mut self) -> Option<String>;
}
pub fn new_node_ctx(backend: &mut dyn NodeCtxBackend) -> NodeCtx<'_> {
NodeCtx {
backend: Rc::new(RefCell::new(backend)),
}
}
/// What backend the flow is being running on.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum FlowBackend {
/// Running locally.
Local,
/// Running on ADO.
Ado,
/// Running on GitHub Actions
Github,
}
/// The kind platform the flow is being running on, Windows or Unix.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum FlowPlatformKind {
Windows,
Unix,
}
/// The kind platform the flow is being running on, Windows or Unix.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum FlowPlatformLinuxDistro {
/// Fedora (including WSL2)
Fedora,
/// Ubuntu (including WSL2)
Ubuntu,
/// An unknown distribution
Unknown,
}
/// What platform the flow is being running on.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[non_exhaustive]
pub enum FlowPlatform {
/// Windows
Windows,
/// Linux (including WSL2)
Linux(FlowPlatformLinuxDistro),
/// macOS
MacOs,
}
impl FlowPlatform {
pub fn kind(&self) -> FlowPlatformKind {
match self {
Self::Windows => FlowPlatformKind::Windows,
Self::Linux(_) | Self::MacOs => FlowPlatformKind::Unix,
}
}
fn as_str(&self) -> &'static str {
match self {
Self::Windows => "windows",
Self::Linux(_) => "linux",
Self::MacOs => "macos",
}
}
/// The suffix to use for executables on this platform.
pub fn exe_suffix(&self) -> &'static str {
if self == &Self::Windows { ".exe" } else { "" }
}
/// The full name for a binary on this platform (i.e. `name + self.exe_suffix()`).
pub fn binary(&self, name: &str) -> String {
format!("{}{}", name, self.exe_suffix())
}
}
impl std::fmt::Display for FlowPlatform {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.pad(self.as_str())
}
}
/// What architecture the flow is being running on.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[non_exhaustive]
pub enum FlowArch {
X86_64,
Aarch64,
}
impl FlowArch {
fn as_str(&self) -> &'static str {
match self {
Self::X86_64 => "x86_64",
Self::Aarch64 => "aarch64",
}
}
}
impl std::fmt::Display for FlowArch {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.pad(self.as_str())
}
}
/// Context object for an individual step.
pub struct StepCtx<'a> {
backend: Rc<RefCell<&'a mut dyn NodeCtxBackend>>,
}
impl StepCtx<'_> {
/// What backend the flow is being running on (e.g: locally, ADO, GitHub,
/// etc...)
pub fn backend(&self) -> FlowBackend {
self.backend.borrow_mut().backend()
}
/// What platform the flow is being running on (e.g: windows, linux, wsl2,
/// etc...).
pub fn platform(&self) -> FlowPlatform {
self.backend.borrow_mut().platform()
}
}
const NO_ADO_INLINE_SCRIPT: Option<
for<'a> fn(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()>,
> = None;
/// Context object for a `FlowNode`.
pub struct NodeCtx<'a> {
backend: Rc<RefCell<&'a mut dyn NodeCtxBackend>>,
}
impl<'ctx> NodeCtx<'ctx> {
/// Emit a Rust-based step.
///
/// As a convenience feature, this function returns a special _optional_
/// [`ReadVar<SideEffect>`], which will not result in a "unused variable"
/// error if no subsequent step ends up claiming it.
pub fn emit_rust_step<F, G>(&mut self, label: impl AsRef<str>, code: F) -> ReadVar<SideEffect>
where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()> + 'static,
{
self.emit_rust_step_inner(label.as_ref(), false, code)
}
/// Emit a Rust-based step that cannot fail.
///
/// This is equivalent to `emit_rust_step`, but it is for steps that cannot
/// fail and that do not need to be emitted as a separate step in a YAML
/// pipeline. This simplifies the pipeline logs.
///
/// As a convenience feature, this function returns a special _optional_
/// [`ReadVar<SideEffect>`], which will not result in a "unused variable"
/// error if no subsequent step ends up claiming it.
pub fn emit_minor_rust_step<F, G>(
&mut self,
label: impl AsRef<str>,
code: F,
) -> ReadVar<SideEffect>
where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) + 'static,
{
self.emit_rust_step_inner(label.as_ref(), true, |ctx| {
let f = code(ctx);
|rt| {
f(rt);
Ok(())
}
})
}
/// Emit a Rust-based step, creating a new `ReadVar<T>` from the step's
/// return value.
///
/// The var returned by this method is _not secret_. In order to create
/// secret variables, use the `ctx.new_var_secret()` method.
///
/// This is a convenience function that streamlines the following common
/// flowey pattern:
///
/// ```ignore
/// // creating a new Var explicitly
/// let (read_foo, write_foo) = ctx.new_var();
/// ctx.emit_rust_step("foo", |ctx| {
/// let write_foo = write_foo.claim(ctx);
/// |rt| {
/// rt.write(write_foo, &get_foo());
/// Ok(())
/// }
/// });
///
/// // creating a new Var automatically
/// let read_foo = ctx.emit_rust_stepv("foo", |ctx| |rt| Ok(get_foo()));
/// ```
#[must_use]
pub fn emit_rust_stepv<T, F, G>(&mut self, label: impl AsRef<str>, code: F) -> ReadVar<T>
where
T: Serialize + DeserializeOwned + 'static,
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<T> + 'static,
{
self.emit_rust_stepv_inner(label.as_ref(), false, code)
}
/// Emit a Rust-based step, creating a new `ReadVar<T>` from the step's
/// return value.
///
/// This is equivalent to `emit_rust_stepv`, but it is for steps that cannot
/// fail and that do not need to be emitted as a separate step in a YAML
/// pipeline. This simplifies the pipeline logs.
///
/// The var returned by this method is _not secret_. In order to create
/// secret variables, use the `ctx.new_var_secret()` method.
///
/// This is a convenience function that streamlines the following common
/// flowey pattern:
///
/// ```ignore
/// // creating a new Var explicitly
/// let (read_foo, write_foo) = ctx.new_var();
/// ctx.emit_minor_rust_step("foo", |ctx| {
/// let write_foo = write_foo.claim(ctx);
/// |rt| {
/// rt.write(write_foo, &get_foo());
/// }
/// });
///
/// // creating a new Var automatically
/// let read_foo = ctx.emit_minor_rust_stepv("foo", |ctx| |rt| get_foo());
/// ```
#[must_use]
pub fn emit_minor_rust_stepv<T, F, G>(&mut self, label: impl AsRef<str>, code: F) -> ReadVar<T>
where
T: Serialize + DeserializeOwned + 'static,
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> T + 'static,
{
self.emit_rust_stepv_inner(label.as_ref(), true, |ctx| {
let f = code(ctx);
|rt| Ok(f(rt))
})
}
fn emit_rust_step_inner<F, G>(
&mut self,
label: &str,
can_merge: bool,
code: F,
) -> ReadVar<SideEffect>
where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()> + 'static,
{
let (read, write) = self.new_maybe_secret_var(false, "auto_se");
let ctx = &mut StepCtx {
backend: self.backend.clone(),
};
write.claim(ctx);
let code = code(ctx);
self.backend
.borrow_mut()
.on_emit_rust_step(label.as_ref(), can_merge, Box::new(code));
read
}
#[must_use]
fn emit_rust_stepv_inner<T, F, G>(
&mut self,
label: impl AsRef<str>,
can_merge: bool,
code: F,
) -> ReadVar<T>
where
T: Serialize + DeserializeOwned + 'static,
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<T> + 'static,
{
let (read, write) = self.new_var();
let ctx = &mut StepCtx {
backend: self.backend.clone(),
};
let write = write.claim(ctx);
let code = code(ctx);
self.backend.borrow_mut().on_emit_rust_step(
label.as_ref(),
can_merge,
Box::new(|rt| {
let val = code(rt)?;
rt.write(write, &val);
Ok(())
}),
);
read
}
/// Load an ADO global runtime variable into a flowey [`ReadVar`].
#[track_caller]
#[must_use]
pub fn get_ado_variable(&mut self, ado_var: AdoRuntimeVar) -> ReadVar<String> {
let (var, write_var) = self.new_maybe_secret_var(ado_var.is_secret(), "");
self.emit_ado_step(format!("🌼 read {}", ado_var.as_raw_var_name()), |ctx| {
let write_var = write_var.claim(ctx);
|rt| {
rt.set_var(write_var, ado_var);
"".into()
}
});
var
}
/// Emit an ADO step.
pub fn emit_ado_step<F, G>(&mut self, display_name: impl AsRef<str>, yaml_snippet: F)
where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String + 'static,
{
self.emit_ado_step_inner(display_name, None, |ctx| {
(yaml_snippet(ctx), NO_ADO_INLINE_SCRIPT)
})
}
/// Emit an ADO step, conditionally executed based on the value of `cond` at
/// runtime.
pub fn emit_ado_step_with_condition<F, G>(
&mut self,
display_name: impl AsRef<str>,
cond: ReadVar<bool>,
yaml_snippet: F,
) where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String + 'static,
{
self.emit_ado_step_inner(display_name, Some(cond), |ctx| {
(yaml_snippet(ctx), NO_ADO_INLINE_SCRIPT)
})
}
/// Emit an ADO step, conditionally executed based on the value of`cond` at
/// runtime.
pub fn emit_ado_step_with_condition_optional<F, G>(
&mut self,
display_name: impl AsRef<str>,
cond: Option<ReadVar<bool>>,
yaml_snippet: F,
) where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> G,
G: for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String + 'static,
{
self.emit_ado_step_inner(display_name, cond, |ctx| {
(yaml_snippet(ctx), NO_ADO_INLINE_SCRIPT)
})
}
/// Emit an ADO step which invokes a rust callback using an inline script.
///
/// By using the `{{FLOWEY_INLINE_SCRIPT}}` template in the returned yaml
/// snippet, flowey will interpolate a command ~roughly akin to `flowey
/// exec-snippet <rust-snippet-id>` into the generated yaml.
///
/// e.g: if we wanted to _manually_ wrap the bash ADO snippet for whatever
/// reason:
///
/// ```text
/// - bash: |
/// echo "hello there!"
/// {{FLOWEY_INLINE_SCRIPT}}
/// echo echo "bye!"
/// ```
///
/// # Limitations
///
/// At the moment, due to flowey API limitations, it is only possible to
/// embed a single inline script into a YAML step.
///
/// In the future, rather than having separate methods for "emit step with X
/// inline scripts", flowey should support declaring "first-class" callbacks
/// via a (hypothetical) `ctx.new_callback_var(|ctx| |rt, input: Input| ->
/// Output { ... })` API, at which point.
///
/// If such an API were to exist, one could simply use the "vanilla" emit
/// yaml step functions with these first-class callbacks.
pub fn emit_ado_step_with_inline_script<F, G, H>(
&mut self,
display_name: impl AsRef<str>,
yaml_snippet: F,
) where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> (G, H),
G: for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String + 'static,
H: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()> + 'static,
{
self.emit_ado_step_inner(display_name, None, |ctx| {
let (f, g) = yaml_snippet(ctx);
(f, Some(g))
})
}
fn emit_ado_step_inner<F, G, H>(
&mut self,
display_name: impl AsRef<str>,
cond: Option<ReadVar<bool>>,
yaml_snippet: F,
) where
F: for<'a> FnOnce(&'a mut StepCtx<'_>) -> (G, Option<H>),
G: for<'a> FnOnce(&'a mut AdoStepServices<'_>) -> String + 'static,
H: for<'a> FnOnce(&'a mut RustRuntimeServices<'_>) -> anyhow::Result<()> + 'static,
{
let condvar = match cond.map(|c| c.backing_var) {
// it seems silly to allow this... but it's not hard so why not?
Some(ReadVarBacking::Inline(cond)) => {
if !cond {
return;
} else {
None
}
}
Some(ReadVarBacking::RuntimeVar(var)) => {
self.backend.borrow_mut().on_claimed_runtime_var(&var, true);
Some(var)
}
Some(ReadVarBacking::InlineSideEffect) => unreachable!(),
None => None,
};
let (yaml_snippet, inline_script) = yaml_snippet(&mut StepCtx {
backend: self.backend.clone(),
});
self.backend.borrow_mut().on_emit_ado_step(
display_name.as_ref(),
Box::new(yaml_snippet),
if let Some(inline_script) = inline_script {
Some(Box::new(inline_script))
} else {
None
},
condvar,
);
}
/// Load a GitHub context variable into a flowey [`ReadVar`].
#[track_caller]
#[must_use]
pub fn get_gh_context_var(&mut self) -> GhContextVarReader<'ctx, Root> {
GhContextVarReader {
ctx: NodeCtx {
backend: self.backend.clone(),
},
_state: std::marker::PhantomData,
}
}
/// Emit a GitHub Actions action step.
pub fn emit_gh_step(
&mut self,
display_name: impl AsRef<str>,
uses: impl AsRef<str>,
) -> GhStepBuilder {
GhStepBuilder::new(display_name, uses)
}
fn emit_gh_step_inner(
&mut self,
display_name: impl AsRef<str>,
cond: Option<ReadVar<bool>>,
uses: impl AsRef<str>,
with: Option<BTreeMap<String, GhParam>>,
outputs: BTreeMap<String, Vec<WriteVar<String>>>,
run_after: Vec<ReadVar<SideEffect>>,
permissions: BTreeMap<GhPermission, GhPermissionValue>,
) {
let condvar = match cond.map(|c| c.backing_var) {
// it seems silly to allow this... but it's not hard so why not?
Some(ReadVarBacking::Inline(cond)) => {
if !cond {
return;
} else {
None
}
}
Some(ReadVarBacking::RuntimeVar(var)) => {
self.backend.borrow_mut().on_claimed_runtime_var(&var, true);
Some(var)
}
Some(ReadVarBacking::InlineSideEffect) => unreachable!(),
None => None,
};
let with = with
.unwrap_or_default()
.into_iter()
.map(|(k, v)| {
(
k.clone(),
v.claim(&mut StepCtx {
backend: self.backend.clone(),
}),
)
})
.collect();
for var in run_after {
var.claim(&mut StepCtx {
backend: self.backend.clone(),
});
}
let outputvars = outputs
.into_iter()
.map(|(name, vars)| {
(
name,
vars.into_iter()
.map(|var| {
let var = var.claim(&mut StepCtx {
backend: self.backend.clone(),
});
GhVarState {
raw_name: None,
backing_var: var.backing_var,
is_secret: var.is_secret,
is_object: false,
}
})
.collect(),
)
})
.collect();
self.backend.borrow_mut().on_emit_gh_step(
display_name.as_ref(),
uses.as_ref(),
with,
condvar,
outputvars,
permissions,
Vec::new(),
Vec::new(),
);
}
/// Emit a "side-effect" step, which simply claims a set of side-effects in
/// order to resolve another set of side effects.
///
/// The same functionality could be achieved (less efficiently) by emitting
/// a Rust step (or ADO step, or github step, etc...) that claims both sets
/// of side-effects, and then does nothing. By using this method - flowey is
/// able to avoid emitting that additional noop step at runtime.
pub fn emit_side_effect_step(
&mut self,
use_side_effects: impl IntoIterator<Item = ReadVar<SideEffect>>,
resolve_side_effects: impl IntoIterator<Item = WriteVar<SideEffect>>,
) {
let mut backend = self.backend.borrow_mut();
for var in use_side_effects.into_iter() {
if let ReadVarBacking::RuntimeVar(var) = &var.backing_var {
backend.on_claimed_runtime_var(var, true);
}
}
for var in resolve_side_effects.into_iter() {
backend.on_claimed_runtime_var(&var.backing_var, false);
}
backend.on_emit_side_effect_step();
}
/// What backend the flow is being running on (e.g: locally, ADO, GitHub,
/// etc...)
pub fn backend(&self) -> FlowBackend {
self.backend.borrow_mut().backend()
}
/// What platform the flow is being running on (e.g: windows, linux, wsl2,
/// etc...).
pub fn platform(&self) -> FlowPlatform {
self.backend.borrow_mut().platform()
}
/// What architecture the flow is being running on (x86_64 or Aarch64)
pub fn arch(&self) -> FlowArch {
self.backend.borrow_mut().arch()
}
/// Set a request on a particular node.
pub fn req<R>(&mut self, req: R)
where
R: IntoRequest + 'static,
{
let mut backend = self.backend.borrow_mut();
backend.on_request(
NodeHandle::from_type::<R::Node>(),
serde_json::to_vec(&req.into_request())
.map(Into::into)
.map_err(Into::into),
);
}
/// Set a request on a particular node, simultaneously creating a new flowey
/// Var in the process.
#[track_caller]
#[must_use]
pub fn reqv<T, R>(&mut self, f: impl FnOnce(WriteVar<T>) -> R) -> ReadVar<T>
where
T: Serialize + DeserializeOwned,
R: IntoRequest + 'static,
{
let (read, write) = self.new_var();
self.req::<R>(f(write));
read
}
/// Set multiple requests on a particular node.
pub fn requests<N>(&mut self, reqs: impl IntoIterator<Item = N::Request>)
where
N: FlowNodeBase + 'static,
{
let mut backend = self.backend.borrow_mut();
for req in reqs.into_iter() {
backend.on_request(
NodeHandle::from_type::<N>(),
serde_json::to_vec(&req).map(Into::into).map_err(Into::into),
);
}
}
/// Allocate a new flowey Var, returning two handles: one for reading the
/// value, and another for writing the value.
///
/// This will return a non-secret Var, and its value may be displayed in
/// logs and other output.
#[track_caller]
#[must_use]
pub fn new_var<T>(&self) -> (ReadVar<T>, WriteVar<T>)
where
T: Serialize + DeserializeOwned,
{
self.new_maybe_secret_var(false, "")
}
/// Allocate a new secret flowey Var, returning two handles: one for reading
/// the value, and another for writing the value.
///
/// A secret Var must not be displayed in logs or other output.
#[track_caller]
#[must_use]
pub fn new_secret_var<T>(&self) -> (ReadVar<T>, WriteVar<T>)
where
T: Serialize + DeserializeOwned,
{
self.new_maybe_secret_var(true, "")
}
#[track_caller]
#[must_use]
fn new_maybe_secret_var<T>(
&self,
is_secret: bool,
prefix: &'static str,
) -> (ReadVar<T>, WriteVar<T>)
where
T: Serialize + DeserializeOwned,
{
// normalize call path to ensure determinism between windows and linux
let caller = std::panic::Location::caller()
.to_string()
.replace('\\', "/");
// until we have a proper way to "split" debug info related to vars, we
// kinda just lump it in with the var name itself.
//
// HACK: to work around cases where - depending on what the
// current-working-dir is when incoking flowey - the returned
// caller.file() path may leak the full path of the file (as opposed to
// the relative path), resulting in inconsistencies between build
// environments.
//
// For expediency, and to preserve some semblance of useful error
// messages, we decided to play some sketchy games with the resulting
// string to only preserve the _consistent_ bit of the path for a human
// to use as reference.
//
// This is not ideal in the slightest, but it works OK for now
let caller = caller
.split_once("flowey/")
.expect("due to a known limitation with flowey, all flowey code must have an ancestor dir called 'flowey/' somewhere in its full path")
.1;
let colon = if prefix.is_empty() { "" } else { ":" };
let ordinal = self.backend.borrow_mut().on_new_var();
let backing_var = format!("{prefix}{colon}{ordinal}:{caller}");
(
ReadVar {
backing_var: ReadVarBacking::RuntimeVar(backing_var.clone()),
is_secret,
_kind: std::marker::PhantomData,
},
WriteVar {
backing_var,
is_secret,
_kind: std::marker::PhantomData,
},
)
}
/// Allocate special [`SideEffect`] var which can be used to schedule a
/// "post-job" step associated with some existing step.
///
/// This "post-job" step will then only run after all other regular steps
/// have run (i.e: steps required to complete any top-level objectives
/// passed in via [`crate::pipeline::PipelineJob::dep_on`]). This makes it
/// useful for implementing various "cleanup" or "finalize" tasks.
///
/// e.g: the Cache node uses this to upload the contents of a cache
/// directory at the end of a Job.
#[track_caller]
#[must_use]
pub fn new_post_job_side_effect(&self) -> (ReadVar<SideEffect>, WriteVar<SideEffect>) {
self.new_maybe_secret_var(false, "post_job")
}
/// Return a flowey Var pointing to a **node-specific** directory which
/// will be persisted between runs, if such a directory is available.
///
/// WARNING: this method is _very likely_ to return None when running on CI
/// machines, as most CI agents are wiped between jobs!
///
/// As such, it is NOT recommended that node authors reach for this method
/// directly, and instead use abstractions such as the
/// `flowey_lib_common::cache` Node, which implements node-level persistence
/// in a way that works _regardless_ if a persistent_dir is available (e.g:
/// by falling back to uploading / downloading artifacts to a "cache store"
/// on platforms like ADO or Github Actions).
#[track_caller]
#[must_use]
pub fn persistent_dir(&mut self) -> Option<ReadVar<PathBuf>> {
let path: ReadVar<PathBuf> = ReadVar {
backing_var: ReadVarBacking::RuntimeVar(
self.backend.borrow_mut().persistent_dir_path_var()?,
),
is_secret: false,
_kind: std::marker::PhantomData,
};
let folder_name = self
.backend
.borrow_mut()
.current_node()
.modpath()
.replace("::", "__");
Some(
self.emit_rust_stepv("🌼 Create persistent store dir", |ctx| {
let path = path.claim(ctx);
|rt| {
let dir = rt.read(path).join(folder_name);
fs_err::create_dir_all(&dir)?;
Ok(dir)
}
}),
)
}
/// Check to see if a persistent dir is available, without yet creating it.
pub fn supports_persistent_dir(&mut self) -> bool {
self.backend
.borrow_mut()
.persistent_dir_path_var()
.is_some()
}
}
// FUTURE: explore using type-erased serde here, instead of relying on
// `serde_json` in `flowey_core`.
pub trait RuntimeVarDb {
fn get_var(&mut self, var_name: &str) -> Vec<u8> {
self.try_get_var(var_name)
.unwrap_or_else(|| panic!("db is missing var {}", var_name))
}
fn try_get_var(&mut self, var_name: &str) -> Option<Vec<u8>>;
fn set_var(&mut self, var_name: &str, is_secret: bool, value: Vec<u8>);
}
impl RuntimeVarDb for Box<dyn RuntimeVarDb> {
fn try_get_var(&mut self, var_name: &str) -> Option<Vec<u8>> {
(**self).try_get_var(var_name)
}
fn set_var(&mut self, var_name: &str, is_secret: bool, value: Vec<u8>) {
(**self).set_var(var_name, is_secret, value)
}
}
pub mod steps {
pub mod ado {
use crate::node::ClaimedReadVar;
use crate::node::ClaimedWriteVar;
use crate::node::ReadVarBacking;
use serde::Deserialize;
use serde::Serialize;
use std::borrow::Cow;
/// An ADO repository declared as a resource in the top-level pipeline.
///
/// Created via [`crate::pipeline::Pipeline::ado_add_resources_repository`].
///
/// Consumed via [`AdoStepServices::resolve_repository_id`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AdoResourcesRepositoryId {
pub(crate) repo_id: String,
}
impl AdoResourcesRepositoryId {
/// Create a `AdoResourcesRepositoryId` corresponding to `self`
/// (i.e: the repo which stores the current pipeline).
///
/// This is safe to do from any context, as the `self` resource will
/// _always_ be available.
pub fn new_self() -> Self {
Self {
repo_id: "self".into(),
}
}
/// (dangerous) get the raw ID associated with this resource.
///
/// It is highly recommended to avoid losing type-safety, and
/// sticking to [`AdoStepServices::resolve_repository_id`].in order
/// to resolve this type to a String.
pub fn dangerous_get_raw_id(&self) -> &str {
&self.repo_id
}
/// (dangerous) create a new ID out of thin air.
///
/// It is highly recommended to avoid losing type-safety, and
/// sticking to [`AdoStepServices::resolve_repository_id`].in order
/// to resolve this type to a String.
pub fn dangerous_new(repo_id: &str) -> Self {
Self {
repo_id: repo_id.into(),
}
}
}
/// Handle to an ADO variable.
///
/// Includes a (non-exhaustive) list of associated constants
/// corresponding to global ADO vars which are _always_ available.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct AdoRuntimeVar {
is_secret: bool,
ado_var: Cow<'static, str>,
}
#[allow(non_upper_case_globals)]
impl AdoRuntimeVar {
/// `build.SourceBranch`
///
/// NOTE: Includes the full branch ref (ex: `refs/heads/main`) so
/// unlike `build.SourceBranchName`, a branch like `user/foo/bar`
/// won't be stripped to just `bar`
pub const BUILD__SOURCE_BRANCH: AdoRuntimeVar =
AdoRuntimeVar::new("build.SourceBranch");
/// `build.BuildNumber`
pub const BUILD__BUILD_NUMBER: AdoRuntimeVar = AdoRuntimeVar::new("build.BuildNumber");
/// `System.AccessToken`
pub const SYSTEM__ACCESS_TOKEN: AdoRuntimeVar =
AdoRuntimeVar::new_secret("System.AccessToken");
/// `System.System.JobAttempt`
pub const SYSTEM__JOB_ATTEMPT: AdoRuntimeVar =
AdoRuntimeVar::new_secret("System.JobAttempt");
}
impl AdoRuntimeVar {
const fn new(s: &'static str) -> Self {
Self {
is_secret: false,
ado_var: Cow::Borrowed(s),
}
}
const fn new_secret(s: &'static str) -> Self {
Self {
is_secret: true,
ado_var: Cow::Borrowed(s),
}
}
/// Check if the ADO var is tagged as being a secret
pub fn is_secret(&self) -> bool {
self.is_secret
}
/// Get the raw underlying ADO variable name
pub fn as_raw_var_name(&self) -> String {
self.ado_var.as_ref().into()
}
/// Get a handle to an ADO runtime variable corresponding to a
/// global ADO variable with the given name.
///
/// This method should be used rarely and with great care!
///
/// ADO variables are global, and sidestep the type-safe data flow
/// between flowey nodes entirely!
pub fn dangerous_from_global(ado_var_name: impl AsRef<str>, is_secret: bool) -> Self {
Self {
is_secret,
ado_var: ado_var_name.as_ref().to_owned().into(),
}
}
}
pub fn new_ado_step_services(
fresh_ado_var: &mut dyn FnMut() -> String,
) -> AdoStepServices<'_> {
AdoStepServices {
fresh_ado_var,
ado_to_rust: Vec::new(),
rust_to_ado: Vec::new(),
}
}
pub struct CompletedAdoStepServices {
pub ado_to_rust: Vec<(String, String, bool)>,
pub rust_to_ado: Vec<(String, String, bool)>,
}
impl CompletedAdoStepServices {
pub fn from_ado_step_services(access: AdoStepServices<'_>) -> Self {
let AdoStepServices {
fresh_ado_var: _,
ado_to_rust,
rust_to_ado,
} = access;
Self {
ado_to_rust,
rust_to_ado,
}
}
}
pub struct AdoStepServices<'a> {
fresh_ado_var: &'a mut dyn FnMut() -> String,
ado_to_rust: Vec<(String, String, bool)>,
rust_to_ado: Vec<(String, String, bool)>,
}
impl AdoStepServices<'_> {
/// Return the raw string identifier for the given
/// [`AdoResourcesRepositoryId`].
pub fn resolve_repository_id(&self, repo_id: AdoResourcesRepositoryId) -> String {
repo_id.repo_id
}
/// Set the specified flowey Var using the value of the given ADO var.
// TODO: is there a good way to allow auto-casting the ADO var back
// to a WriteVar<T>, instead of just a String? It's complicated by
// the fact that the ADO var to flowey bridge is handled by the ADO
// backend, which itself needs to know type info...
pub fn set_var(&mut self, var: ClaimedWriteVar<String>, from_ado_var: AdoRuntimeVar) {
self.ado_to_rust
.push((from_ado_var.ado_var.into(), var.backing_var, var.is_secret))
}
/// Get the value of a flowey Var as a ADO runtime variable.
pub fn get_var(&mut self, var: ClaimedReadVar<String>) -> AdoRuntimeVar {
let backing_var = if let ReadVarBacking::RuntimeVar(var) = &var.backing_var {
var
} else {
todo!("support inline ado read vars")
};
let new_ado_var_name = (self.fresh_ado_var)();
self.rust_to_ado.push((
backing_var.clone(),
new_ado_var_name.clone(),
var.is_secret,
));
AdoRuntimeVar::dangerous_from_global(new_ado_var_name, var.is_secret)
}
}
}
pub mod github {
use crate::node::ClaimVar;
use crate::node::NodeCtx;
use crate::node::ReadVar;
use crate::node::ReadVarBacking;
use crate::node::SideEffect;
use crate::node::StepCtx;
use crate::node::VarClaimed;
use crate::node::VarNotClaimed;
use crate::node::WriteVar;
use std::collections::BTreeMap;
pub struct GhStepBuilder {
display_name: String,
cond: Option<ReadVar<bool>>,
uses: String,
with: Option<BTreeMap<String, GhParam>>,
outputs: BTreeMap<String, Vec<WriteVar<String>>>,
run_after: Vec<ReadVar<SideEffect>>,
permissions: BTreeMap<GhPermission, GhPermissionValue>,
}
impl GhStepBuilder {
/// Creates a new GitHub step builder, with the given display name and
/// action to use. For example, the following code generates the following yaml:
///
/// ```ignore
/// GhStepBuilder::new("Check out repository code", "actions/checkout@v4").finish()
/// ```
///
/// ```ignore
/// - name: Check out repository code
/// uses: actions/checkout@v4
/// ```
///
/// For more information on the yaml syntax for the `name` and `uses` parameters,
/// see <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsname>
pub fn new(display_name: impl AsRef<str>, uses: impl AsRef<str>) -> Self {
Self {
display_name: display_name.as_ref().into(),
cond: None,
uses: uses.as_ref().into(),
with: None,
outputs: BTreeMap::new(),
run_after: Vec::new(),
permissions: BTreeMap::new(),
}
}
/// Adds a condition [`ReadVar<bool>`] to the step,
/// such that the step only executes if the condition is true.
/// This is equivalent to using an `if` conditional in the yaml.
///
/// For more information on the yaml syntax for `if` conditionals, see
/// <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsname>
pub fn condition(mut self, cond: ReadVar<bool>) -> Self {
self.cond = Some(cond);
self
}
/// Adds a parameter to the step, specified as a key-value pair corresponding
/// to the param name and value. For example the following code generates the following yaml:
///
/// ```rust,ignore
/// let (client_id, write_client_id) = ctx.new_secret_var();
/// let (tenant_id, write_tenant_id) = ctx.new_secret_var();
/// let (subscription_id, write_subscription_id) = ctx.new_secret_var();
/// // ... insert rust step writing to each of those secrets ...
/// GhStepBuilder::new("Azure Login", "Azure/login@v2")
/// .with("client-id", client_id)
/// .with("tenant-id", tenant_id)
/// .with("subscription-id", subscription_id)
/// ```
///
/// ```text
/// - name: Azure Login
/// uses: Azure/login@v2
/// with:
/// client-id: ${{ env.floweyvar1 }} // Assuming the backend wrote client_id to floweyvar1
/// tenant-id: ${{ env.floweyvar2 }} // Assuming the backend wrote tenant-id to floweyvar2
/// subscription-id: ${{ env.floweyvar3 }} // Assuming the backend wrote subscription-id to floweyvar3
/// ```
///
/// For more information on the yaml syntax for the `with` parameters,
/// see <https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepswith>
pub fn with(mut self, k: impl AsRef<str>, v: impl Into<GhParam>) -> Self {
self.with.get_or_insert_with(BTreeMap::new);
if let Some(with) = &mut self.with {
with.insert(k.as_ref().to_string(), v.into());
}
self
}
/// Specifies an output to read from the step, specified as a key-value pair
/// corresponding to the output name and the flowey var to write the output to.
///
/// This is equivalent to writing into `v` the output of a step in the yaml using:
/// `${{ steps.<backend-assigned-step-id>.outputs.<k> }}`
///
/// For more information on step outputs, see
/// <https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#outputs-for-composite-actions>
pub fn output(mut self, k: impl AsRef<str>, v: WriteVar<String>) -> Self {
self.outputs
.entry(k.as_ref().to_string())
.or_default()
.push(v);
self
}
/// Specifies a side-effect that must be resolved before this step can run.
pub fn run_after(mut self, side_effect: ReadVar<SideEffect>) -> Self {
self.run_after.push(side_effect);
self
}
/// Declare that this step requires a certain GITHUB_TOKEN permission in order to run.
///
/// For more info about Github Actions permissions, see [`gh_grant_permissions`](crate::pipeline::PipelineJob::gh_grant_permissions) and
/// <https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/assigning-permissions-to-jobs>
pub fn requires_permission(
mut self,
perm: GhPermission,
value: GhPermissionValue,
) -> Self {
self.permissions.insert(perm, value);
self
}
/// Finish building the step, emitting it to the backend and returning a side-effect.
#[track_caller]
pub fn finish(self, ctx: &mut NodeCtx<'_>) -> ReadVar<SideEffect> {
let (side_effect, claim_side_effect) = ctx.new_maybe_secret_var(false, "auto_se");
ctx.backend
.borrow_mut()
.on_claimed_runtime_var(&claim_side_effect.backing_var, false);
ctx.emit_gh_step_inner(
self.display_name,
self.cond,
self.uses,
self.with,
self.outputs,
self.run_after,
self.permissions,
);
side_effect
}
}
#[derive(Clone, Debug)]
pub enum GhParam<C = VarNotClaimed> {
Static(String),
FloweyVar(ReadVar<String, C>),
}
impl From<String> for GhParam {
fn from(param: String) -> GhParam {
GhParam::Static(param)
}
}
impl From<&str> for GhParam {
fn from(param: &str) -> GhParam {
GhParam::Static(param.to_string())
}
}
impl From<ReadVar<String>> for GhParam {
fn from(param: ReadVar<String>) -> GhParam {
GhParam::FloweyVar(param)
}
}
pub type ClaimedGhParam = GhParam<VarClaimed>;
impl ClaimVar for GhParam {
type Claimed = ClaimedGhParam;
fn claim(self, ctx: &mut StepCtx<'_>) -> ClaimedGhParam {
match self {
GhParam::Static(s) => ClaimedGhParam::Static(s),
GhParam::FloweyVar(var) => match &var.backing_var {
ReadVarBacking::RuntimeVar(_) => ClaimedGhParam::FloweyVar(var.claim(ctx)),
ReadVarBacking::Inline(var) => ClaimedGhParam::Static(var.clone()),
ReadVarBacking::InlineSideEffect => {
panic!("inline side-effect vars are not supported")
}
},
}
}
}
/// The assigned permission value for a scope.
///
/// For more details on how these values affect a particular scope, refer to:
/// <https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs>
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum GhPermissionValue {
Read,
Write,
None,
}
/// Refers to the scope of a permission granted to the GITHUB_TOKEN
/// for a job.
///
/// For more details on each scope, refer to:
/// <https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs>
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum GhPermission {
Actions,
Attestations,
Checks,
Contents,
Deployments,
Discussions,
IdToken,
Issues,
Packages,
Pages,
PullRequests,
RepositoryProjects,
SecurityEvents,
Statuses,
}
}
pub mod rust {
use crate::node::ClaimedReadVar;
use crate::node::ClaimedWriteVar;
use crate::node::FlowArch;
use crate::node::FlowBackend;
use crate::node::FlowPlatform;
use crate::node::RuntimeVarDb;
use serde::Serialize;
use serde::de::DeserializeOwned;
pub fn new_rust_runtime_services(
runtime_var_db: &mut dyn RuntimeVarDb,
backend: FlowBackend,
platform: FlowPlatform,
arch: FlowArch,
) -> RustRuntimeServices<'_> {
RustRuntimeServices {
runtime_var_db,
backend,
platform,
arch,
}
}
pub struct RustRuntimeServices<'a> {
runtime_var_db: &'a mut dyn RuntimeVarDb,
backend: FlowBackend,
platform: FlowPlatform,
arch: FlowArch,
}
impl RustRuntimeServices<'_> {
/// What backend the flow is being running on (e.g: locally, ADO,
/// GitHub, etc...)
pub fn backend(&self) -> FlowBackend {
self.backend
}
/// What platform the flow is being running on (e.g: windows, linux,
/// etc...).
pub fn platform(&self) -> FlowPlatform {
self.platform
}
/// What arch the flow is being running on (X86_64 or Aarch64)
pub fn arch(&self) -> FlowArch {
self.arch
}
pub fn write<T>(&mut self, var: ClaimedWriteVar<T>, val: &T)
where
T: Serialize + DeserializeOwned,
{
self.runtime_var_db.set_var(
&var.backing_var,
var.is_secret,
serde_json::to_vec(val).expect("improve this error path"),
);
}
pub fn write_all<T>(
&mut self,
vars: impl IntoIterator<Item = ClaimedWriteVar<T>>,
val: &T,
) where
T: Serialize + DeserializeOwned,
{
for var in vars {
self.write(var, val)
}
}
pub fn read<T>(&mut self, var: ClaimedReadVar<T>) -> T
where
T: Serialize + DeserializeOwned,
{
match var.backing_var {
crate::node::ReadVarBacking::RuntimeVar(var) => {
let data = self.runtime_var_db.get_var(&var);
serde_json::from_slice(&data).expect("improve this error path")
}
crate::node::ReadVarBacking::Inline(val) => val,
crate::node::ReadVarBacking::InlineSideEffect => unreachable!(),
}
}
/// DANGEROUS: Set the value of _Global_ Environment Variable (GitHub Actions only).
///
/// It is up to the caller to ensure that the variable does not get
/// unintentionally overwritten or used.
///
/// This method should be used rarely and with great care!
pub fn dangerous_gh_set_global_env_var(
&mut self,
var: String,
gh_env_var: String,
) -> anyhow::Result<()> {
if !matches!(self.backend, FlowBackend::Github) {
return Err(anyhow::anyhow!(
"dangerous_set_gh_env_var can only be used on GitHub Actions"
));
}
let gh_env_file_path = std::env::var("GITHUB_ENV")?;
let mut gh_env_file = fs_err::OpenOptions::new()
.append(true)
.open(gh_env_file_path)?;
let gh_env_var_assignment = format!(
r#"{}<<EOF
{}
EOF
"#,
gh_env_var, var
);
std::io::Write::write_all(&mut gh_env_file, gh_env_var_assignment.as_bytes())?;
Ok(())
}
}
}
}
/// The base underlying implementation of all FlowNode variants.
///
/// Do not implement this directly! Use the `new_flow_node!` family of macros
/// instead!
pub trait FlowNodeBase {
type Request: Serialize + DeserializeOwned;
fn imports(&mut self, ctx: &mut ImportCtx<'_>);
fn emit(&mut self, requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()>;
/// A noop method that all human-written impls of `FlowNodeBase` are
/// required to implement.
///
/// By implementing this method, you're stating that you "know what you're
/// doing" by having this manual impl.
fn i_know_what_im_doing_with_this_manual_impl(&mut self);
}
pub mod erased {
use crate::node::FlowNodeBase;
use crate::node::NodeCtx;
use crate::node::user_facing::*;
pub struct ErasedNode<N: FlowNodeBase>(pub N);
impl<N: FlowNodeBase> ErasedNode<N> {
pub fn from_node(node: N) -> Self {
Self(node)
}
}
impl<N> FlowNodeBase for ErasedNode<N>
where
N: FlowNodeBase,
{
// FIXME: this should be using type-erased serde
type Request = Box<[u8]>;
fn imports(&mut self, ctx: &mut ImportCtx<'_>) {
self.0.imports(ctx)
}
fn emit(&mut self, requests: Vec<Box<[u8]>>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
let mut converted_requests = Vec::new();
for req in requests {
converted_requests.push(serde_json::from_slice(&req)?)
}
self.0.emit(converted_requests, ctx)
}
fn i_know_what_im_doing_with_this_manual_impl(&mut self) {}
}
}
/// Cheap handle to a registered [`FlowNode`]
#[derive(Clone, Copy, PartialEq, Eq, Hash)]
pub struct NodeHandle(std::any::TypeId);
impl Ord for NodeHandle {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.modpath().cmp(other.modpath())
}
}
impl PartialOrd for NodeHandle {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl std::fmt::Debug for NodeHandle {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
std::fmt::Debug::fmt(&self.try_modpath(), f)
}
}
impl NodeHandle {
pub fn from_type<N: FlowNodeBase + 'static>() -> NodeHandle {
NodeHandle(std::any::TypeId::of::<N>())
}
pub fn from_modpath(modpath: &str) -> NodeHandle {
node_luts::erased_node_by_modpath().get(modpath).unwrap().0
}
pub fn try_from_modpath(modpath: &str) -> Option<NodeHandle> {
node_luts::erased_node_by_modpath()
.get(modpath)
.map(|(s, _)| *s)
}
pub fn new_erased_node(&self) -> Box<dyn FlowNodeBase<Request = Box<[u8]>>> {
let ctor = node_luts::erased_node_by_typeid().get(self).unwrap();
ctor()
}
pub fn modpath(&self) -> &'static str {
node_luts::modpath_by_node_typeid().get(self).unwrap()
}
pub fn try_modpath(&self) -> Option<&'static str> {
node_luts::modpath_by_node_typeid().get(self).cloned()
}
/// Return a dummy NodeHandle, which will panic if `new_erased_node` is ever
/// called on it.
pub fn dummy() -> NodeHandle {
NodeHandle(std::any::TypeId::of::<()>())
}
}
pub fn list_all_registered_nodes() -> impl Iterator<Item = NodeHandle> {
node_luts::modpath_by_node_typeid().keys().cloned()
}
// Encapsulate these look up tables in their own module to limit the scope of
// the HashMap import.
//
// In general, using HashMap in flowey is a recipe for disaster, given that
// iterating through the hash-map will result in non-deterministic orderings,
// which can cause annoying ordering churn.
//
// That said, in this case, it's OK since the code using these LUTs won't ever
// iterate through the map.
//
// Why is the HashMap even necessary vs. a BTreeMap?
//
// Well... NodeHandle's `Ord` impl does a `modpath` comparison instead of a
// TypeId comparison, since TypeId will vary between compilations.
mod node_luts {
use super::FlowNodeBase;
use super::NodeHandle;
use std::collections::HashMap;
use std::sync::OnceLock;
pub(super) fn modpath_by_node_typeid() -> &'static HashMap<NodeHandle, &'static str> {
static TYPEID_TO_MODPATH: OnceLock<HashMap<NodeHandle, &'static str>> = OnceLock::new();
let lookup = TYPEID_TO_MODPATH.get_or_init(|| {
let mut lookup = HashMap::new();
for crate::node::private::FlowNodeMeta {
module_path,
ctor: _,
get_typeid,
} in crate::node::private::FLOW_NODES
{
let existing = lookup.insert(
NodeHandle(get_typeid()),
module_path
.strip_suffix("::_only_one_call_to_flowey_node_per_module")
.unwrap(),
);
// if this were to fire for an array where the key is a TypeId...
// something has gone _terribly_ wrong
assert!(existing.is_none())
}
lookup
});
lookup
}
pub(super) fn erased_node_by_typeid()
-> &'static HashMap<NodeHandle, fn() -> Box<dyn FlowNodeBase<Request = Box<[u8]>>>> {
static LOOKUP: OnceLock<
HashMap<NodeHandle, fn() -> Box<dyn FlowNodeBase<Request = Box<[u8]>>>>,
> = OnceLock::new();
let lookup = LOOKUP.get_or_init(|| {
let mut lookup = HashMap::new();
for crate::node::private::FlowNodeMeta {
module_path: _,
ctor,
get_typeid,
} in crate::node::private::FLOW_NODES
{
let existing = lookup.insert(NodeHandle(get_typeid()), *ctor);
// if this were to fire for an array where the key is a TypeId...
// something has gone _terribly_ wrong
assert!(existing.is_none())
}
lookup
});
lookup
}
pub(super) fn erased_node_by_modpath() -> &'static HashMap<
&'static str,
(
NodeHandle,
fn() -> Box<dyn FlowNodeBase<Request = Box<[u8]>>>,
),
> {
static MODPATH_LOOKUP: OnceLock<
HashMap<
&'static str,
(
NodeHandle,
fn() -> Box<dyn FlowNodeBase<Request = Box<[u8]>>>,
),
>,
> = OnceLock::new();
let lookup = MODPATH_LOOKUP.get_or_init(|| {
let mut lookup = HashMap::new();
for crate::node::private::FlowNodeMeta { module_path, ctor, get_typeid } in crate::node::private::FLOW_NODES {
let existing = lookup.insert(module_path.strip_suffix("::_only_one_call_to_flowey_node_per_module").unwrap(), (NodeHandle(get_typeid()), *ctor));
if existing.is_some() {
panic!("conflicting node registrations at {module_path}! please ensure there is a single node per module!")
}
}
lookup
});
lookup
}
}
#[doc(hidden)]
pub mod private {
pub use linkme;
pub struct FlowNodeMeta {
pub module_path: &'static str,
pub ctor: fn() -> Box<dyn super::FlowNodeBase<Request = Box<[u8]>>>,
// FUTURE: there is a RFC to make this const
pub get_typeid: fn() -> std::any::TypeId,
}
#[linkme::distributed_slice]
pub static FLOW_NODES: [FlowNodeMeta] = [..];
// UNSAFETY: linkme uses manual link sections, which are unsafe.
#[expect(unsafe_code)]
#[linkme::distributed_slice(FLOW_NODES)]
static DUMMY_FLOW_NODE: FlowNodeMeta = FlowNodeMeta {
module_path: "<dummy>::_only_one_call_to_flowey_node_per_module",
ctor: || unreachable!(),
get_typeid: std::any::TypeId::of::<()>,
};
}
#[doc(hidden)]
#[macro_export]
macro_rules! new_flow_node_base {
(struct Node) => {
/// (see module-level docs)
#[non_exhaustive]
pub struct Node;
mod _only_one_call_to_flowey_node_per_module {
const _: () = {
use $crate::node::private::linkme;
fn new_erased() -> Box<dyn $crate::node::FlowNodeBase<Request = Box<[u8]>>> {
Box::new($crate::node::erased::ErasedNode(super::Node))
}
#[linkme::distributed_slice($crate::node::private::FLOW_NODES)]
#[linkme(crate = linkme)]
static FLOW_NODE: $crate::node::private::FlowNodeMeta =
$crate::node::private::FlowNodeMeta {
module_path: module_path!(),
ctor: new_erased,
get_typeid: std::any::TypeId::of::<super::Node>,
};
};
}
};
}
/// TODO: clearly verbalize what a `FlowNode` encompasses
pub trait FlowNode {
/// TODO: clearly verbalize what a Request encompasses
type Request: Serialize + DeserializeOwned;
/// A list of nodes that this node is capable of taking a dependency on.
///
/// Attempting to take a dep on a node that wasn't imported via this method
/// will result in an error during flow resolution time.
///
/// * * *
///
/// To put it bluntly: This is boilerplate.
///
/// We (the flowey devs) are thinking about ways to avoid requiring this
/// method, but do not have a good solution at this time.
fn imports(ctx: &mut ImportCtx<'_>);
/// Given a set of incoming `requests`, emit various steps to run, set
/// various dependencies, etc...
fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()>;
}
#[macro_export]
macro_rules! new_flow_node {
(struct Node) => {
$crate::new_flow_node_base!(struct Node);
impl $crate::node::FlowNodeBase for Node
where
Node: FlowNode,
{
type Request = <Node as FlowNode>::Request;
fn imports(&mut self, dep: &mut ImportCtx<'_>) {
<Node as FlowNode>::imports(dep)
}
fn emit(
&mut self,
requests: Vec<Self::Request>,
ctx: &mut NodeCtx<'_>,
) -> anyhow::Result<()> {
<Node as FlowNode>::emit(requests, ctx)
}
fn i_know_what_im_doing_with_this_manual_impl(&mut self) {}
}
};
}
/// A helper trait to streamline implementing [`FlowNode`] instances that only
/// ever operate on a single request at a time.
///
/// In essence, [`SimpleFlowNode`] handles the boilerplate (and rightward-drift)
/// of manually writing:
///
/// ```ignore
/// impl FlowNode for Node {
/// fn imports(dep: &mut ImportCtx<'_>) { ... }
/// fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) {
/// for req in requests {
/// Node::process_request(req, ctx)
/// }
/// }
/// }
/// ```
///
/// Nodes which accept a `struct Request` often fall into this pattern, whereas
/// nodes which accept a `enum Request` typically require additional logic to
/// aggregate / resolve incoming requests.
pub trait SimpleFlowNode {
type Request: Serialize + DeserializeOwned;
/// A list of nodes that this node is capable of taking a dependency on.
///
/// Attempting to take a dep on a node that wasn't imported via this method
/// will result in an error during flow resolution time.
///
/// * * *
///
/// To put it bluntly: This is boilerplate.
///
/// We (the flowey devs) are thinking about ways to avoid requiring this
/// method, but do not have a good solution at this time.
fn imports(ctx: &mut ImportCtx<'_>);
/// Process a single incoming `Self::Request`
fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()>;
}
#[macro_export]
macro_rules! new_simple_flow_node {
(struct Node) => {
$crate::new_flow_node_base!(struct Node);
impl $crate::node::FlowNodeBase for Node
where
Node: SimpleFlowNode,
{
type Request = <Node as SimpleFlowNode>::Request;
fn imports(&mut self, dep: &mut ImportCtx<'_>) {
<Node as SimpleFlowNode>::imports(dep)
}
fn emit(&mut self, requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
for req in requests {
<Node as SimpleFlowNode>::process_request(req, ctx)?
}
Ok(())
}
fn i_know_what_im_doing_with_this_manual_impl(&mut self) {}
}
};
}
/// A "glue" trait which improves [`NodeCtx::req`] ergonomics, by tying a
/// particular `Request` type to its corresponding [`FlowNode`].
///
/// This trait should be autogenerated via [`flowey_request!`] - do not try to
/// implement it manually!
///
/// [`flowey_request!`]: crate::flowey_request
pub trait IntoRequest {
type Node: FlowNodeBase;
fn into_request(self) -> <Self::Node as FlowNodeBase>::Request;
/// By implementing this method manually, you're indicating that you know what you're
/// doing,
#[doc(hidden)]
#[expect(nonstandard_style)]
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self);
}
#[doc(hidden)]
#[macro_export]
macro_rules! __flowey_request_inner {
//
// @emit_struct: emit structs for each variant of the request enum
//
(@emit_struct [$req:ident]
$(#[$a:meta])*
$variant:ident($($tt:tt)*),
$($rest:tt)*
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub struct $variant($($tt)*);
impl IntoRequest for $variant {
type Node = Node;
fn into_request(self) -> $req {
$req::$variant(self)
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
$crate::__flowey_request_inner!(@emit_struct [$req] $($rest)*);
};
(@emit_struct [$req:ident]
$(#[$a:meta])*
$variant:ident { $($tt:tt)* },
$($rest:tt)*
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub struct $variant {
$($tt)*
}
impl IntoRequest for $variant {
type Node = Node;
fn into_request(self) -> $req {
$req::$variant(self)
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
$crate::__flowey_request_inner!(@emit_struct [$req] $($rest)*);
};
(@emit_struct [$req:ident]
$(#[$a:meta])*
$variant:ident,
$($rest:tt)*
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub struct $variant;
impl IntoRequest for $variant {
type Node = Node;
fn into_request(self) -> $req {
$req::$variant(self)
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
$crate::__flowey_request_inner!(@emit_struct [$req] $($rest)*);
};
(@emit_struct [$req:ident]
) => {};
//
// @emit_req_enum: build up root request enum
//
(@emit_req_enum [$req:ident($($root_a:meta,)*), $($prev:ident[$($prev_a:meta,)*])*]
$(#[$a:meta])*
$variant:ident($($tt:tt)*),
$($rest:tt)*
) => {
$crate::__flowey_request_inner!(@emit_req_enum [$req($($root_a,)*), $($prev[$($prev_a,)*])* $variant[$($a,)*]] $($rest)*);
};
(@emit_req_enum [$req:ident($($root_a:meta,)*), $($prev:ident[$($prev_a:meta,)*])*]
$(#[$a:meta])*
$variant:ident { $($tt:tt)* },
$($rest:tt)*
) => {
$crate::__flowey_request_inner!(@emit_req_enum [$req($($root_a,)*), $($prev[$($prev_a,)*])* $variant[$($a,)*]] $($rest)*);
};
(@emit_req_enum [$req:ident($($root_a:meta,)*), $($prev:ident[$($prev_a:meta,)*])*]
$(#[$a:meta])*
$variant:ident,
$($rest:tt)*
) => {
$crate::__flowey_request_inner!(@emit_req_enum [$req($($root_a,)*), $($prev[$($prev_a,)*])* $variant[$($a,)*]] $($rest)*);
};
(@emit_req_enum [$req:ident($($root_a:meta,)*), $($prev:ident[$($prev_a:meta,)*])*]
) => {
#[derive(Serialize, Deserialize)]
pub enum $req {$(
$(#[$prev_a])*
$prev(self::req::$prev),
)*}
impl IntoRequest for $req {
type Node = Node;
fn into_request(self) -> $req {
self
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
};
}
/// Declare a new `Request` type for the current `Node`.
///
/// ## `struct` and `enum` Requests
///
/// When wrapping a vanilla Rust `struct` and `enum` declaration, this macro
/// simply derives [`Serialize`], [`Deserialize`], and [`IntoRequest`] for the
/// type, and does nothing else.
///
/// ## `enum_struct` Requests
///
/// This macro also supports a special kind of `enum_struct` derive, which
/// allows declaring a Request enum where each variant is split off into its own
/// separate (named) `struct`.
///
/// e.g:
///
/// ```ignore
/// flowey_request! {
/// pub enum_struct Foo {
/// Bar,
/// Baz(pub usize),
/// Qux(pub String),
/// }
/// }
/// ```
///
/// will be expanded into:
///
/// ```ignore
/// #[derive(Serialize, Deserialize)]
/// pub enum Foo {
/// Bar(req::Bar),
/// Baz(req::Baz),
/// Qux(req::Qux),
/// }
///
/// pud mod req {
/// #[derive(Serialize, Deserialize)]
/// pub struct Bar;
///
/// #[derive(Serialize, Deserialize)]
/// pub struct Baz(pub usize);
///
/// #[derive(Serialize, Deserialize)]
/// pub struct Qux(pub String);
/// }
/// ```
#[macro_export]
macro_rules! flowey_request {
(
$(#[$root_a:meta])*
pub enum_struct $req:ident {
$($tt:tt)*
}
) => {
$crate::__flowey_request_inner!(@emit_req_enum [$req($($root_a,)*),] $($tt)*);
pub mod req {
use super::*;
$crate::__flowey_request_inner!(@emit_struct [$req] $($tt)*);
}
};
(
$(#[$a:meta])*
pub enum $req:ident {
$($tt:tt)*
}
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub enum $req {
$($tt)*
}
impl IntoRequest for $req {
type Node = Node;
fn into_request(self) -> $req {
self
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
};
(
$(#[$a:meta])*
pub struct $req:ident {
$($tt:tt)*
}
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub struct $req {
$($tt)*
}
impl IntoRequest for $req {
type Node = Node;
fn into_request(self) -> $req {
self
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
};
(
$(#[$a:meta])*
pub struct $req:ident($($tt:tt)*);
) => {
$(#[$a])*
#[derive(Serialize, Deserialize)]
pub struct $req($($tt)*);
impl IntoRequest for $req {
type Node = Node;
fn into_request(self) -> $req {
self
}
fn do_not_manually_impl_this_trait__use_the_flowey_request_macro_instead(&mut self) {}
}
};
}