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
|
#file: pmix.pyx
#
# Copyright (c) 2022 Nanook Consulting. All rights reserved
from libc.string cimport memset, strncpy, strcpy, strlen, strdup
from libc.stdlib cimport malloc, free
from libc.string cimport memcpy
from libc.stdio cimport printf
from ctypes import addressof, c_int
from cython.operator import address
import signal, time, sys
import threading, ctypes
import queue
import array
import os
#import time
from threading import Timer
# pull in all the constant definitions - we
# store them in a separate file for neatness
include "pmix_constants.pxi"
include "pmix.pxi"
active = myLock()
myhdlrs = []
myname = {}
eventQueue = queue.Queue(maxsize=1000)
stop_progress = False
def pyevhdlr(stop):
global eventQueue
global stop_progress
while True:
if stop_progress:
break
if not eventQueue.empty():
capsule = eventQueue.get()
try:
shifter = <pmix_pyshift_t*>PyCapsule_GetPointer(capsule, NULL)
except:
# don't beat on the cpu
time.sleep(0.001)
continue
op = shifter[0].op.decode('ascii')
if "event_handler" == op:
shifter[0].event_handler(shifter[0].status, shifter[0].results, shifter[0].nresults,
shifter[0].op_cbfunc, shifter[0].cbdata,
shifter[0].notification_cbdata)
if 0 < shifter[0].nresults:
pmix_free_info(shifter[0].results, shifter[0].nresults)
elif "fence" == op:
shifter = <pmix_pyshift_t*>PyCapsule_GetPointer(capsule, "fence")
shifter[0].modex(shifter[0].status, shifter[0].bo.bytes, shifter[0].bo.size,
shifter[0].cbdata, NULL, NULL)
elif "directmodex" == op:
shifter[0].modex(shifter[0].status, shifter[0].data, shifter[0].ndata,
shifter[0].cbdata, NULL, NULL)
if 0 < shifter[0].ndata:
PyMem_Free(&(shifter[0].data))
elif "lookup" == op:
shifter[0].lookup(shifter[0].status, shifter[0].pdata, shifter[0].ndata, shifter[0].cbdata)
if 0 < shifter[0].ndata:
pmix_free_pdata(shifter[0].pdata, shifter[0].ndata)
elif "spawn" == op:
shifter[0].spawn(shifter[0].status, shifter[0].nspace, shifter[0].cbdata)
elif "query" == op:
shifter[0].query(shifter[0].status, shifter[0].info, shifter[0].ndata, shifter[0].cbdata, NULL, NULL)
if 0 < shifter[0].ndata:
pmix_free_info(shifter[0].info, shifter[0].ndata)
elif "toolconnected" == op:
shifter[0].toolconnected(shifter[0].status, shifter[0].proc, shifter[0].cbdata)
elif "allocate" == op:
shifter[0].allocate(shifter[0].status, shifter[0].info, shifter[0].ndata,
shifter[0].cbdata, shifter[0].release_fn,
shifter[0].notification_cbdata)
if 0 < shifter[0].ndata:
pmix_free_info(shifter[0].info, shifter[0].ndata)
elif "getcredential" == op:
shifter[0].getcredential(shifter[0].status, shifter[0].cred, shifter[0].info,
shifter[0].ndata, shifter[0].cbdata)
if 0 < shifter[0].ndata:
pmix_free_info(shifter[0].info, shifter[0].ndata)
elif "validationcredential" == op:
shifter[0].validationcredential(shifter[0].status, shifter[0].info, shifter[0].ndata,
shifter[0].cbdata)
if 0 < shifter[0].ndata:
pmix_free_info(shifter[0].info, shifter[0].ndata)
elif "sessioncontrol" == op:
shifter[0].sessioncontrol(shifter[0].status, shifter[0].info, shifter[0].ndata,
shifter[0].cbdata, shifter[0].release_fn,
shifter[0].notification_cbdata)
if 0 < shifter[0].ndata:
pmix_free_info(shifter[0].info, shifter[0].ndata)
else:
print("UNSUPPORTED OP", op)
# don't beat on the cpu
time.sleep(0.001)
return
# create a progress thread for processing events - ensure the
# thread dies at termination of main so we can exit
# if we should terminate without finalizing
progressThread = threading.Thread(target = pyevhdlr, daemon = True, args =(lambda : stop_progress, ))
cdef void dmodx_cbfunc(pmix_status_t status,
char *data, size_t sz,
void *cbdata) noexcept:
global active
if PMIX_SUCCESS == status:
active.cache_data(data, sz)
active.set(status)
return
cdef void setupapp_cbfunc(pmix_status_t status,
pmix_info_t info[], size_t ninfo,
void *provided_cbdata,
pmix_op_cbfunc_t cbfunc, void *cbdata) noexcept with gil:
global active
if PMIX_SUCCESS == status:
ilist = []
rc = pmix_unload_info(info, ninfo, ilist)
active.cache_info(ilist)
status = rc
active.set(status)
if (NULL != cbfunc):
cbfunc(PMIX_SUCCESS, cbdata)
return
cdef void collectinventory_cbfunc(pmix_status_t status, pmix_info_t info[],
size_t ninfo, void *cbdata,
pmix_release_cbfunc_t release_fn,
void *release_cbdata) noexcept with gil:
global active
if PMIX_SUCCESS == status:
ilist = []
rc = pmix_unload_info(info, ninfo, ilist)
active.cache_info(ilist)
status = rc
active.set(status)
if (NULL != release_fn):
release_fn(release_cbdata)
return
cdef void pyiofhandler(size_t iofhdlr_id, pmix_iof_channel_t channel,
pmix_proc_t *source, pmix_byte_object_t *payload,
pmix_info_t info[], size_t ninfo) noexcept with gil:
cdef char* kystr
pychannel = int(channel)
pyiof_id = int(iofhdlr_id)
# convert the source to python
pysource = {}
kystr = strdup(source[0].nspace)
myns = kystr.decode('ascii')
free(kystr)
pysource = {'nspace': myns, 'rank': source[0].rank}
# convert the inbound info to python
pyinfo = []
pmix_unload_info(info, ninfo, pyinfo)
# convert payload to python byteobject
pybytes = {}
if NULL != payload:
pybytes['bytes'] = payload[0].bytes
pybytes['size'] = payload[0].size
# find the handler being called
found = False
rc = PMIX_ERR_NOT_FOUND
for h in myhdlrs:
try:
if iofhdlr_id == h['refid']:
found = True
# call user iof python handler
h['hdlr'](pyiof_id, pychannel, pysource, pybytes, pyinfo)
except:
pass
# if we didn't find the handler, cache this event in a timeshift
# and try it again
if not found:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("iofhdlr_cache")
mycaddy.idx = iofhdlr_id
mycaddy.channel = channel
memset(mycaddy.source.nspace, 0, PMIX_MAX_NSLEN+1)
memcpy(mycaddy.source.nspace, source[0].nspace, PMIX_MAX_NSLEN)
mycaddy.source.rank = source[0].rank
if payload != NULL:
mycaddy.payload.bytes = <char *>malloc(payload[0].size)
memset(mycaddy.payload.bytes, 0, payload[0].size)
memcpy(mycaddy.payload.bytes, payload[0].bytes, payload[0].size)
mycaddy.payload.size = payload[0].size
else:
mycaddy.payload.bytes = <char *>NULL
mycaddy.payload.size = 0
mycaddy.info = info
mycaddy.ndata = ninfo
cb = PyCapsule_New(mycaddy, "iofhdlr_cache", NULL)
threading.Timer(0.001, iofhdlr_cache, [cb, rc]).start()
return
cdef void pyeventhandler(size_t evhdlr_registration_id,
pmix_status_t status,
const pmix_proc_t *source,
pmix_info_t info[], size_t ninfo,
pmix_info_t *results, size_t nresults,
pmix_event_notification_cbfunc_fn_t cbfunc,
void *cbdata) noexcept with gil:
cdef pmix_info_t *myresults
cdef pmix_info_t **myresults_ptr
cdef size_t nmyresults
cdef char* kystr
cdef pmix_nspace_t srcnspace
global eventQueue
# convert the source to python
pysource = {}
memset(srcnspace, 0, PMIX_MAX_NSLEN+1)
memcpy(srcnspace, source[0].nspace, PMIX_MAX_NSLEN)
kystr = strdup(srcnspace)
myns = kystr.decode('ascii')
free(kystr)
srcrank = int(source[0].rank)
pysource = {'nspace': myns, 'rank': srcrank}
pyev_id = int(evhdlr_registration_id)
# convert the inbound info to python
pyinfo = []
if 0 < ninfo:
rc = pmix_unload_info(info, ninfo, pyinfo)
if PMIX_SUCCESS != rc:
print("Unable to unload info structs")
return
# convert the inbound results from prior handlers
# that serviced this event to python
pyresults = []
if 0 < nresults:
rc = pmix_unload_info(results, nresults, pyresults)
if PMIX_SUCCESS != rc:
print("Unable to unload prior results")
return
# find the handler being called
found = False
rc = PMIX_ERR_NOT_FOUND
for h in myhdlrs:
try:
if evhdlr_registration_id == h['refid']:
found = True
# execute their handler
rc, pymyresults = h['hdlr'](pyev_id, status, pysource, pyinfo, pyresults)
# allocate and load pmix info structs from python list of dictionaries
myresults_ptr = &myresults
prc = pmix_alloc_info(myresults_ptr, &nmyresults, pymyresults)
if PMIX_SUCCESS != prc:
print("Unable to load new results")
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("event_handler")
mycaddy.status = rc
mycaddy.results = myresults
mycaddy.nresults = nmyresults
mycaddy.op_cbfunc = NULL
mycaddy.cbdata = NULL
mycaddy.notification_cbdata = cbdata
mycaddy.event_handler = cbfunc
cb = PyCapsule_New(mycaddy, "event_handler", NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
except:
pass
# if we didn't find the handler, delay a little and try again
if not found:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("event_handler")
mycaddy.idx = evhdlr_registration_id
mycaddy.status = status
memset(mycaddy.source.nspace, 0, PMIX_MAX_NSLEN+1)
memcpy(mycaddy.source.nspace, source[0].nspace, PMIX_MAX_NSLEN)
mycaddy.source.rank = source[0].rank
mycaddy.info = info
mycaddy.ndata = ninfo
mycaddy.results = results
mycaddy.nresults = nresults
mycaddy.op_cbfunc = NULL
mycaddy.cbdata = NULL
mycaddy.notification_cbdata = cbdata
mycaddy.event_handler = cbfunc
cb = PyCapsule_New(mycaddy, "event_handler", NULL)
threading.Timer(0.001, event_cache_cb, [cb, rc]).start()
return
cdef class PMIxClient:
cdef pmix_proc_t myproc;
cdef pmix_fabric_t myfabric;
cdef int fabric_set;
cdef pmix_topology_t topo
def __cinit__(self):
memset(self.myproc.nspace, 0, sizeof(self.myproc.nspace))
self.myproc.rank = PMIX_RANK_UNDEF
memset(&self.myfabric, 0, sizeof(self.myfabric))
self.fabric_set = 0
self.topo.source = NULL
self.topo.topology = NULL
def __init__(self):
global myhdlrs, myname
memset(self.myproc.nspace, 0, sizeof(self.myproc.nspace))
self.myproc.rank = <uint32_t>PMIX_RANK_UNDEF
myhdlrs = []
myname = {}
def initialized(self):
return PMIx_Initialized()
def get_version(self):
return PMIx_Get_version()
# Initialize the PMIx client library, connecting
# us to the local PMIx server
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
#
def init(self, dicts:list):
cdef size_t klen
global myname
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
myname = {}
global progressThread
# start the event handler progress thread
progressThread.start()
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &klen, dicts)
rc = PMIx_Init(&self.myproc, info, klen)
if 0 < klen:
pmix_free_info(info, klen)
if PMIX_SUCCESS == rc:
# convert the returned name
myname = {'nspace': (<bytes>self.myproc.nspace).decode('UTF-8'), 'rank': self.myproc.rank}
return rc, myname
# Finalize the client library
def finalize(self, dicts:list):
cdef size_t klen
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
global stop_progress
global progressThread
# stop progress thread
stop_progress = True
progressThread.join()
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &klen, dicts)
rc = PMIx_Finalize(info, klen)
if 0 < klen:
pmix_free_info(info, klen)
return rc
def initialized(self):
return PMIx_Initialized()
# Request that the provided array of procs be aborted, returning the
# provided _status_ and printing the provided message.
#
# @status [INPUT]
# - PMIx status to be returned on exit
#
# @msg [INPUT]
# - string message to be printed
#
# @procs [INPUT]
# - list of proc nspace,rank dicts
def abort(self, status, msg, peers:list):
cdef pmix_proc_t *procs
cdef size_t sz
# convert list of procs to array of pmix_proc_t's
if peers is not None:
sz = len(peers)
if 0 < sz:
procs = <pmix_proc_t*> PyMem_Malloc(sz * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, sz)
return rc
else:
# if they didn't give us a set of procs,
# then we default to our entire job
sz = 1
procs = <pmix_proc_t*> PyMem_Malloc(sz * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
else:
# if they didn't give us a set of procs,
# then we default to our entire job
sz = 1
procs = <pmix_proc_t*> PyMem_Malloc(sz * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
if isinstance(msg, str):
pymsg = msg.encode('ascii')
else:
pymsg = msg
# pass into PMIx_Abort
rc = PMIx_Abort(status, pymsg, procs, sz)
if 0 < sz:
pmix_free_procs(procs, sz)
return rc
# Store some data locally for retrieval by other areas of the
# proc. This is data that has only internal scope - it will
# never be "pushed" externally
#
# @proc [INPUT]
# - namespace and rank of the client (dict)
#
# @key [INPUT]
# - the key to be stored
#
# @value [INPUT]
# - a dict to be stored with keys (value, val_type)
def store_internal(self, pyproc:dict, pykey:str, pyval:dict):
cdef pmix_key_t key
cdef pmix_proc_t proc
cdef pmix_value_t value
# convert pyproc to pmix_proc_t
if pyproc is None:
pmix_copy_nspace(proc.nspace, self.myproc.nspace)
proc.rank = self.myproc.rank
else:
pmix_copy_nspace(proc.nspace, pyproc['nspace'])
proc.rank = pyproc['rank']
# convert key,val to pmix_value_t and pmix_key_t
pmix_copy_key(key, pykey)
# convert the dict to a pmix_value_t
rc = pmix_load_value(&value, pyval)
# call API
rc = PMIx_Store_internal(&proc, key, &value)
if rc == PMIX_SUCCESS:
pmix_free_value(self, &value)
return rc
# put a value into the keystore
#
# @scope [INPUT]
# - the scope of the data
#
# @key [INPUT]
# - the key to be stored
#
# @value [INPUT]
# - a dict to be stored with keys (value, val_type)
def put(self, scope, ky, val):
cdef pmix_key_t key
cdef pmix_value_t value
# convert the keyval tuple to a pmix_info_t
pmix_copy_key(key, ky)
pmix_load_value(&value, val)
# pass it into the PMIx_Put function
rc = PMIx_Put(scope, key, &value)
pmix_destruct_value(&value)
return rc
def commit(self):
rc = PMIx_Commit()
return rc
def fence(self, peers:list, dicts:list):
cdef pmix_proc_t *procs
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo, nprocs
nprocs = 0
ninfo = 0
# convert list of procs to array of pmix_proc_t's
if peers is not None:
nprocs = len(peers)
if 0 < nprocs:
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, dicts)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
# pass it into the fence API
rc = PMIx_Fence(procs, nprocs, info, ninfo)
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# retrieve a value from the keystore
#
# @proc [INPUT]
# - namespace and rank of the client (dict)
#
# @key [INPUT]
# - the key to be retrieved
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
def get(self, proc:dict, ky, dicts:list):
cdef pmix_info_t *info;
cdef pmix_info_t **info_ptr;
cdef size_t ninfo;
cdef pmix_key_t key;
cdef pmix_value_t *val_ptr;
cdef pmix_proc_t p;
ninfo = 0
val_ptr = NULL
# convert proc to pmix_proc_t
if proc is None:
pmix_copy_nspace(p.nspace, self.myproc.nspace)
p.rank = self.myproc.rank
else:
pmix_copy_nspace(p.nspace, proc['nspace'])
p.rank = proc['rank']
# convert key,val to pmix_value_t and pmix_key_t
pmix_copy_key(key, ky)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, dicts)
val = None
# pass it into the get API
rc = PMIx_Get(&p, key, info, ninfo, &val_ptr)
if PMIX_SUCCESS == rc:
val = pmix_unload_value(val_ptr)
pmix_free_value(self, val_ptr)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc, val
# Publish the data in the info array for lookup
#
# @dicts [INPUT]
# - a list of dictionaries, where
# a key, flags, value, and val_type
# can be defined as keys
def publish(self, dicts:list):
cdef pmix_info_t *info;
cdef pmix_info_t **info_ptr;
cdef size_t ninfo;
ninfo = 0
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, dicts)
# pass it into the publish API
rc = PMIx_Publish(info, ninfo)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# unpublish the data in the data store
#
# @dicts [INPUT]
# - a list of dictionaries, where
# a key, flags, value, and val_type
# can be defined as keys
# @pykeys [INPUT]
# - list of python info key strings
def unpublish(self, pykeys:list, dicts:list):
cdef pmix_info_t *info;
cdef pmix_info_t **info_ptr;
cdef size_t ninfo;
cdef size_t nstrings;
cdef char **keys;
keys = NULL
ninfo = 0
nstrings = 0
# load pykeys into char **keys
if pykeys is not None:
nstrings = len(pykeys)
if 0 < nstrings:
keys = <char **> PyMem_Malloc(nstrings * sizeof(char*))
if not keys:
PMIX_ERR_NOMEM
rc = pmix_load_argv(keys, pykeys)
if PMIX_SUCCESS != rc:
n = 0
while keys[n] != NULL:
PyMem_Free(keys[n])
n += 1
return rc
else:
keys = NULL
# allocate and load pmix info structs from python list of dictionaries
if dicts is not None:
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, dicts)
else:
info = NULL
# pass it into the unpublish API
rc = PMIx_Unpublish(keys, info, ninfo)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# lookup info published by this or another process
# @pdata [INPUT]
# - a list of dictionaries, where key is
# recorded in the pdata dictionary and
# passed to PMIx_Lookup
# pdata = {‘proc’: {‘nspace’: mynspace, ‘rank’: myrank}, ‘key’: ky,
# ‘value’: v, ‘val_type’: t}
# @dicts [INPUT]
# - a list of dictionaries, where
# a key, flags, value, and val_type
# can be defined as keys
def lookup(self, data:list, dicts:list):
cdef pmix_pdata_t *pdata;
cdef pmix_info_t *info;
cdef pmix_info_t **info_ptr;
cdef size_t npdata;
cdef size_t ninfo;
npdata = 0
ninfo = 0
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, dicts)
# convert the list of dictionaries to array of
# pmix_pdata_t structs
if data is not None:
npdata = len(data)
if 0 < npdata:
pdata = <pmix_pdata_t*> PyMem_Malloc(npdata * sizeof(pmix_pdata_t))
if not pdata:
return PMIX_ERR_NOMEM
n = 0
for d in data:
pykey = d['key']
pmix_copy_key(pdata[n].key, pykey)
rc = 0
n += 1
if PMIX_SUCCESS != rc:
pmix_free_pdata(pdata, npdata)
return rc
else:
pdata = NULL
else:
pdata = NULL
# pass it into the lookup API
rc = PMIx_Lookup(pdata, npdata, info, ninfo)
if PMIX_SUCCESS == rc:
rc = pmix_unload_pdata(pdata, npdata, data)
# remove the first element, which is just the key
data.pop(0)
pmix_free_info(info, ninfo)
pmix_free_pdata(pdata, npdata)
return rc, data
# Spawn a new job
#
#
def spawn(self, jobInfo:list, pyapps:list):
cdef pmix_info_t *jinfo;
cdef pmix_info_t **jinfo_ptr;
cdef pmix_app_t *apps;
cdef size_t ninfo
cdef size_t napps;
cdef pmix_nspace_t nspace;
# protect against bad input
if pyapps is None or len(pyapps) == 0:
return PMIX_ERR_BAD_PARAM, None
# allocate and load pmix info structs from python list of dictionaries
if jobInfo is not None:
jinfo_ptr = &jinfo
rc = pmix_alloc_info(jinfo_ptr, &ninfo, jobInfo)
else:
jinfo = NULL
ninfo = 0
# convert the list of apps to an array of pmix_app_t
napps = len(pyapps)
apps = <pmix_app_t*> PyMem_Malloc(napps * sizeof(pmix_app_t))
if not apps:
pmix_free_info(jinfo, ninfo)
return PMIX_ERR_NOMEM, None
rc = pmix_load_apps(apps, pyapps)
if PMIX_SUCCESS != rc:
pmix_free_apps(apps, napps)
if 0 < ninfo:
pmix_free_info(jinfo, ninfo)
return rc, None
with nogil:
rc = PMIx_Spawn(jinfo, ninfo, apps, napps, nspace)
pmix_free_apps(apps, napps)
if 0 < ninfo:
pmix_free_info(jinfo, ninfo)
if PMIX_SUCCESS != rc:
pyns = None
else:
pyns = nspace.decode('ascii')
return rc, pyns
def connect(self, peers:list, pyinfo:list):
cdef pmix_proc_t *procs
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
cdef size_t nprocs
nprocs = 0
ninfo = 0
# convert list of procs to array of pmix_proc_t's
if peers is not None:
nprocs = len(peers)
if 0 < nprocs:
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Connect(procs, nprocs, info, ninfo)
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def disconnect(self, peers:list, pyinfo:list):
cdef pmix_proc_t *procs
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
cdef size_t nprocs
nprocs = 0
ninfo = 0
# convert list of procs to array of pmix_proc_t's
if peers is not None:
nprocs = len(peers)
if 0 < nprocs:
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Disconnect(procs, nprocs, info, ninfo)
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def resolve_peers(self, pynode:str, pyns:str):
cdef pmix_nspace_t nspace
cdef char *nodename
cdef pmix_proc_t *procs
cdef size_t nprocs
peers = []
nodename = NULL
memset(nspace, 0, sizeof(nspace))
procs = NULL
if pynode is not None:
pyn = pynode.encode('ascii')
nodename = strdup(pyn)
if pyns is not None:
pmix_copy_nspace(nspace, pyns)
rc = PMIx_Resolve_peers(nodename, nspace, &procs, &nprocs)
if PMIX_SUCCESS == rc and 0 < nprocs:
rc = pmix_unload_procs(procs, nprocs, peers)
pmix_free_procs(procs, nprocs)
return rc, peers
def resolve_nodes(self, pyns:str):
cdef pmix_nspace_t nspace
cdef char *nodelist
nodelist = NULL
memset(nspace, 0, sizeof(nspace))
if pyns is not None:
pmix_copy_nspace(nspace, pyns)
rc = PMIx_Resolve_nodes(nspace, &nodelist)
if PMIX_SUCCESS == rc:
pyn = nodelist
pynodes = pyn.decode('ascii')
PyMem_Free(nodelist)
return rc, pynodes
def query(self, pyq:list):
cdef pmix_query_t *queries
cdef size_t nqueries
cdef pmix_info_t *results
cdef pmix_info_t **results_ptr
cdef size_t nresults
cdef pmix_info_t **qual_ptr
nqueries = 0
nresults = 0
queries = NULL
qual_ptr = NULL
pyresults = []
if pyq is not None:
nqueries = len(pyq)
if 0 < nqueries:
queries = <pmix_query_t*> PyMem_Malloc(nqueries * sizeof(pmix_query_t))
if not queries:
return PMIX_ERR_NOMEM,pyresults
n = 0
for q in pyq:
queries[n].keys = NULL
queries[n].qualifiers = NULL
nstrings = len(q['keys'])
if 0 < nstrings:
queries[n].keys = <char **> PyMem_Malloc((nstrings+1) * sizeof(char*))
if not queries[n].keys:
pmix_free_queries(queries, nqueries)
return PMIX_ERR_NOMEM,pyresults
rc = pmix_load_argv(queries[n].keys, q['keys'])
if PMIX_SUCCESS != rc:
pmix_free_queries(queries, nqueries)
return rc,pyresults
# allocate and load pmix info structs from python list of dictionaries
queries[n].nqual = 0
qual_ptr = &(queries[n].qualifiers)
rc = pmix_alloc_info(qual_ptr, &(queries[n].nqual), q['qualifiers'])
n += 1
else:
nqueries = 0
else:
nqueries = 0
# pass it into the query_info API
rc = PMIx_Query_info(queries, nqueries, &results, &nresults)
if PMIX_SUCCESS == rc:
rc = pmix_unload_info(results, nresults, pyresults)
# free results info structs
pmix_free_info(results, nresults)
# free memory for query structs
pmix_free_queries(queries, nqueries)
return rc, pyresults
def log(self, pydata:list, pydirs:list):
cdef pmix_info_t *data
cdef pmix_info_t **data_ptr
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef size_t ndata
cdef size_t ndirs
# allocate and load pmix info structs from python list of dictionaries
data_ptr = &data
directives_ptr = &directives
rc = pmix_alloc_info(data_ptr, &ndata, pydata)
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# call the API
rc = PMIx_Log(data, ndata, directives, ndirs)
pmix_free_info(data, ndata)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
return rc
def allocation_request(self, directive, pyinfo:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_info_t *results
cdef size_t ninfo
cdef size_t nresults
results = NULL
nresults = 0
pyres = []
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# call the API
rc = PMIx_Allocation_request(directive, info, ninfo, &results, &nresults)
if 0 < ninfo:
pmix_free_info(info, ninfo)
if PMIX_SUCCESS == rc and 0 < nresults:
# convert the results
rc = pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def job_control(self, pytargets:list, pydirs:list):
cdef pmix_proc_t *targets
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef pmix_info_t *results
cdef size_t ntargets
cdef size_t ndirs
cdef size_t nresults
results = NULL
nresults = 0
pyres = []
# convert list of procs to array of pmix_proc_t's
if pytargets is not None:
ntargets = len(pytargets)
if 0 < ntargets:
targets = <pmix_proc_t*> PyMem_Malloc(ntargets * sizeof(pmix_proc_t))
if not targets:
return PMIX_ERR_NOMEM, pyres
rc = pmix_load_procs(targets, pytargets)
if PMIX_SUCCESS != rc:
pmix_free_procs(targets, ntargets)
return rc, pyres
else:
ntargets = 1
targets = <pmix_proc_t*> PyMem_Malloc(ntargets * sizeof(pmix_proc_t))
if not targets:
return PMIX_ERR_NOMEM, pyres
pmix_copy_nspace(targets[0].nspace, self.myproc.nspace)
targets[0].rank = PMIX_RANK_WILDCARD
else:
ntargets = 1
targets = <pmix_proc_t*> PyMem_Malloc(ntargets * sizeof(pmix_proc_t))
if not targets:
return PMIX_ERR_NOMEM, pyres
pmix_copy_nspace(targets[0].nspace, self.myproc.nspace)
targets[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
if PMIX_SUCCESS != rc:
if 0 < ntargets:
pmix_free_procs(targets, ntargets)
return rc
# call the API
rc = PMIx_Job_control(targets, ntargets, directives, ndirs, &results, &nresults)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
if 0 < ntargets:
pmix_free_procs(targets, ntargets)
if PMIX_SUCCESS == rc and 0 < nresults:
# convert the results
rc = pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def monitor(self, pymonitor_info:list, code:int, pydirs:list):
cdef pmix_info_t *monitor_info
cdef pmix_info_t **monitor_info_ptr
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef pmix_info_t *results
cdef size_t nmonitor
cdef size_t ndirs
cdef size_t nresults
results = NULL
nresults = 0
pyres = []
# convert list of info to array of pmix_info_t's
monitor_info_ptr = &monitor_info
rc = pmix_alloc_info(monitor_info_ptr, &nmonitor, pymonitor_info)
if PMIX_SUCCESS != rc:
if 0 < nmonitor:
pmix_free_info(monitor_info, nmonitor)
return rc
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
if PMIX_SUCCESS != rc:
if 0 < ndirs:
pmix_free_info(directives, ndirs)
return rc
# call the API
rc = PMIx_Process_monitor(monitor_info, code, directives, ndirs, &results, &nresults)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
if 0 < nmonitor:
pmix_free_info(monitor_info, nmonitor)
if PMIX_SUCCESS == rc and 0 < nresults:
# convert the results
rc = pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def get_credential(self, pyinfo:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_byte_object_t bo
cdef pmix_byte_object_t *boptr
cdef size_t ninfo
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
if PMIX_SUCCESS != rc:
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# call the API
boptr = &bo
rc = PMIx_Get_credential(info, ninfo, boptr)
if 0 < ninfo:
pmix_free_info(info, ninfo)
blist = []
cred = {}
if PMIX_SUCCESS == rc and 0 < bo.size:
# convert the results
pmix_unload_bytes(bo.bytes, bo.size, blist)
barray = bytearray(blist)
cred['bytes'] = barray
cred['size'] = bo.size
return rc, cred
def validate_credential(self, pycred:dict, pyinfo:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_byte_object_t *bo
cdef size_t ninfo
cdef pmix_info_t *results
cdef size_t nresults
results = NULL
nresults = 0
pyres = []
# convert pycred to pmix_byte_object_t
bo = <pmix_byte_object_t*>PyMem_Malloc(sizeof(pmix_byte_object_t))
if not bo:
return PMIX_ERR_NOMEM
cred = bytes(pycred['bytes'], 'ascii')
bo.size = sizeof(cred)
bo.bytes = <char*> PyMem_Malloc(bo.size)
if not bo.bytes:
return PMIX_ERR_NOMEM
pyptr = <const char*>cred
memcpy(bo.bytes, pyptr, bo.size)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
if PMIX_SUCCESS != rc:
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# call the API
rc = PMIx_Validate_credential(bo, info, ninfo, &results, &nresults)
if 0 < ninfo:
pmix_free_info(info, ninfo)
if PMIX_SUCCESS == rc and 0 < nresults:
# convert the results
rc = pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def group_construct(self, group:str, peers:list, pyinfo:list):
cdef pmix_proc_t *procs
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_info_t *results
cdef size_t ninfo
cdef size_t nprocs
cdef size_t nresults
nprocs = 0
ninfo = 0
# convert group name
pygrp = group.encode('ascii')
# convert list of procs to array of pmix_proc_t's
if peers is not None:
nprocs = len(peers)
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Group_construct(pygrp, procs, nprocs, info, ninfo, &results, &nresults)
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ninfo:
pmix_free_info(info, ninfo)
pyres = []
if 0 < nresults:
# convert results
pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def group_invite(self, group:str, peers:list, pyinfo:list):
cdef pmix_proc_t *procs
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_info_t *results
cdef size_t ninfo
cdef size_t nprocs
cdef size_t nresults
nprocs = 0
ninfo = 0
# convert group name
pygrp = group.encode('ascii')
# convert list of procs to array of pmix_proc_t's
if peers is not None:
nprocs = len(peers)
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, peers)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Group_invite(pygrp, procs, nprocs, info, ninfo, &results, &nresults)
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ninfo:
pmix_free_info(info, ninfo)
pyres = []
if 0 < nresults:
# convert results
pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def group_join(self, group:str, leader:dict, opt:int, pyinfo:list):
cdef pmix_proc_t proc
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef pmix_info_t *results
cdef size_t ninfo
cdef size_t nprocs
cdef size_t nresults
ninfo = 0
# convert group name
pygrp = group.encode('ascii')
# convert leader to proc
if leader is not None:
pmix_copy_nspace(proc.nspace, leader['nspace'])
proc.rank = leader['rank']
else:
pmix_copy_nspace(proc.nspace, self.myproc.nspace)
proc.rank = self.myproc.rank
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Group_join(pygrp, &proc, opt, info, ninfo, &results, &nresults)
if 0 < ninfo:
pmix_free_info(info, ninfo)
pyres = []
if 0 < nresults:
# convert results
pmix_unload_info(results, nresults, pyres)
pmix_free_info(results, nresults)
return rc, pyres
def group_leave(self, group:str, pyinfo:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
ninfo = 0
# convert group name
pygrp = group.encode('ascii')
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Group_leave(pygrp, info, ninfo)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def group_destruct(self, group:str, pyinfo:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
ninfo = 0
# convert group name
pygrp = group.encode('ascii')
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# Call the library
rc = PMIx_Group_destruct(pygrp, info, ninfo)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def register_event_handler(self, pycodes:list, pyinfo:list, hdlr):
cdef pmix_status_t *codes
cdef size_t ncodes
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
# convert the codes to an array of ints
if pycodes is not None:
ncodes = len(pycodes)
codes = <int*> PyMem_Malloc(ncodes * sizeof(int))
if not codes:
return PMIX_ERR_NOMEM
n = 0
for c in pycodes:
codes[n] = c
n += 1
else:
codes = NULL
ncodes = 0
# allocate and load pmix info structs from python list of dictionaries
if pyinfo is not None:
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
if PMIX_SUCCESS != rc:
print("Error converting info array:", self.error_string(rc))
return rc, -1
else:
info = NULL
ninfo = 0
# pass our hdlr switchyard to the API
with nogil:
rc = PMIx_Register_event_handler(codes, ncodes, info, ninfo, pyeventhandler, NULL, NULL)
# cleanup
if 0 < ninfo:
pmix_free_info(info, ninfo)
if 0 < ncodes:
PyMem_Free(codes)
# if rc < 0, then there was an error
if 0 > rc:
return rc, -1
# otherwise, this is our ref ID for this hdlr
myhdlrs.append({'refid': rc, 'hdlr': hdlr})
return PMIX_SUCCESS, rc
def deregister_event_handler(self, ref:int):
rc = PMIx_Deregister_event_handler(ref, NULL, NULL)
return rc
def notify_event(self, status:int, pysrc:dict, range, pyinfo:list):
cdef pmix_proc_t proc
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
# convert the proc
pmix_copy_nspace(proc.nspace, pysrc['nspace'])
proc.rank = pysrc['rank']
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# call the library
rc = PMIx_Notify_event(status, &proc, range, info, ninfo, NULL, NULL)
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def error_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Error_string(pystat)
pystr = string
val = pystr.decode('ascii')
return val
def proc_state_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Proc_state_string(pystat)
pystr = string
return pystr.decode('ascii')
def scope_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Scope_string(pystat)
pystr = string
return pystr.decode('ascii')
def persistence_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Persistence_string(pystat)
pystr = string
return pystr.decode('ascii')
def data_range_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Data_range_string(pystat)
pystr = string
return pystr.decode('ascii')
def info_directives_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Info_directives_string(pystat)
pystr = string
return pystr.decode('ascii')
def data_type_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Data_type_string(pystat)
pystr = string
return pystr.decode('ascii')
def alloc_directive_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Alloc_directive_string(pystat)
pystr = string
return pystr.decode('ascii')
def iof_channel_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_IOF_channel_string(pystat)
pystr = string
return pystr.decode('ascii')
def job_state_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Job_state_string(pystat)
pystr = string
return pystr.decode('ascii')
def get_attribute_string(self, rep:str):
cdef char *string
pyrep = rep.encode('ascii')
string = <char*>PMIx_Get_attribute_string(pyrep)
pystr = string
return pystr.decode('ascii')
def get_attribute_name(self, rep:str):
cdef char *string
pyrep = rep.encode('ascii')
string = <char*>PMIx_Get_attribute_name(pyrep)
pystr = string
return pystr.decode('ascii')
def link_state_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Link_state_string(pystat)
pystr = string
return pystr.decode('ascii')
def device_type_string(self, pystat:int):
cdef char *string
string = <char*>PMIx_Device_type_string(pystat)
pystr = string
return pystr.decode('ascii')
def fabric_register(self, dicts:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
fabricinfo = []
if 1 == self.fabric_set:
return (PMIX_ERR_RESOURCE_BUSY, None)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if sz > 0:
rc = PMIx_Fabric_register(&self.myfabric, info, sz)
pmix_free_info(info, sz)
else:
rc = PMIx_Fabric_register(&self.myfabric, NULL, 0)
if PMIX_SUCCESS == rc:
self.fabric_set = 1
# convert the fabric info array for return
if 0 < self.myfabric.ninfo:
pmix_unload_info(self.myfabric.info, self.myfabric.ninfo, fabricinfo)
return (rc, fabricinfo)
def fabric_update(self):
fabricinfo = []
if 0 == self.fabric_set:
return (PMIX_ERR_INIT, None)
rc = PMIx_Fabric_update(&self.myfabric)
# convert the fabric info array for return
if 0 < self.myfabric.ninfo:
pmix_unload_info(self.myfabric.info, self.myfabric.ninfo, fabricinfo)
return (rc, fabricinfo)
def fabric_deregister(self):
if 0 == self.fabric_set:
return PMIX_ERR_INIT
rc = PMIx_Fabric_deregister(&self.myfabric)
self.fabric_set = 0
return rc;
def load_topology(self):
rc = PMIx_Load_topology(&self.topo)
return rc
def get_relative_locality(self, loc1:str, loc2:str):
cdef char *string
cdef pmix_locality_t locality
pyl1 = loc1.encode('ascii')
pyl2 = loc2.encode('ascii')
pyloc = []
rc = PMIx_Get_relative_locality(pyl1, pyl2, &locality)
if PMIX_SUCCESS == rc:
pmix_convert_locality(locality, pyloc)
return (rc, pyloc)
def parse_cpuset_string(self, csetstr:str):
return (PMIX_ERR_NOT_SUPPORTED, None)
def get_cpuset(self, ref:int):
cdef pmix_cpuset_t cpuset
cdef char* csetstr
pycpus = {}
rc = PMIx_Get_cpuset(&cpuset, ref)
if PMIX_SUCCESS == rc:
rc = PMIx_server_generate_cpuset_string(&cpuset, &csetstr)
if PMIX_SUCCESS == rc:
pycpus['source'] = strdup(cpuset.source)
txt = csetstr.decode('ascii')
pycpus['cpus'] = txt.split(",")
return (rc, pycpus)
def compute_distances(self, pycpus:dict, dicts:list):
cdef pmix_cpuset_t cpuset
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
cdef pmix_device_distance_t *distances
cdef size_t ndist
results = []
# check that we loaded our topology
if NULL == self.topo.topology:
rc = self.load_topology()
if PMIX_SUCCESS != rc:
return (rc, results)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if PMIX_SUCCESS != rc:
return (rc, results)
# convert the cpuset
csetstr = pycpus['cpus'].encode('ascii')
rc = PMIx_Parse_cpuset_string(csetstr, &cpuset);
if PMIX_SUCCESS != rc:
return (rc, results)
# compute distances
rc = PMIx_Compute_distances(&self.topo, &cpuset, info, sz, &distances, &ndist)
if PMIX_SUCCESS != rc:
return (rc, results)
# convert to Python
n = 0
while n < ndist:
pydist = {}
pydist['uuid'] = strdup(distances[n].uuid)
pydist['osname'] = strdup(distances[n].osname)
pydist['mindist'] = distances[n].mindist
pydist['maxdist'] = distances[n].maxdist
results.append(pydist)
n += 1
# free the memory
PyMem_Free(distances)
# return result
return (rc, results)
def progress(self):
PMIx_Progress()
return
pmixservermodule = {}
def setmodulefn(k, f):
global pmixservermodule
permitted = ['clientconnected', 'clientfinalized', 'abort',
'fencenb', 'directmodex', 'publish', 'lookup', 'unpublish',
'spawn', 'connect', 'disconnect', 'registerevents',
'deregisterevents', 'listener', 'notify_event', 'query',
'toolconnected', 'log', 'allocate', 'jobcontrol',
'monitor', 'getcredential', 'validatecredential',
'iofpull', 'pushstdin', 'group', 'fabric', 'sessioncontrol']
if k not in permitted:
return PMIX_ERR_BAD_PARAM
if not k in pmixservermodule:
pmixservermodule[k] = f
cdef class PMIxServer(PMIxClient):
cdef pmix_server_module_t myserver
def __cinit__(self):
self.fabric_set = 0
memset(self.myproc.nspace, 0, sizeof(self.myproc.nspace))
self.myproc.rank = PMIX_RANK_UNDEF
# Initialize the PMIx server library
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
#
# @map [INPUT]
# - a dictionary of key-function pairs that map
# server module callback functions to provided
# implementations
def init(self, dicts:list, map:dict):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
global progressThread
# start the event handler progress thread
progressThread.start()
# setup server module
self.server_module_init()
if map is None or 0 == len(map):
print("SERVER REQUIRES AT LEAST ONE MODULE FUNCTION TO OPERATE")
return PMIX_ERR_INIT
kvkeys = list(map.keys())
for key in kvkeys:
try:
setmodulefn(key, map[key])
except KeyError:
print("SERVER MODULE FUNCTION ", key, " IS NOT RECOGNIZED")
return PMIX_ERR_INIT
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if sz > 0:
rc = PMIx_server_init(&self.myserver, info, sz)
else:
rc = PMIx_server_init(&self.myserver, NULL, 0)
return rc
def server_module_init(self):
# v1.x interfaces
self.myserver.client_connected2 = <pmix_server_client_connected2_fn_t>clientconnected
self.myserver.client_finalized = <pmix_server_client_finalized_fn_t>clientfinalized
self.myserver.abort = <pmix_server_abort_fn_t>clientaborted
self.myserver.fence_nb = <pmix_server_fencenb_fn_t>fencenb
self.myserver.direct_modex = <pmix_server_dmodex_req_fn_t>directmodex
self.myserver.publish = <pmix_server_publish_fn_t>publish
self.myserver.lookup = <pmix_server_lookup_fn_t>lookup
self.myserver.unpublish = <pmix_server_unpublish_fn_t>unpublish
self.myserver.spawn = <pmix_server_spawn_fn_t>spawn
self.myserver.connect = <pmix_server_connect_fn_t>connect
self.myserver.disconnect = <pmix_server_disconnect_fn_t>disconnect
self.myserver.register_events = <pmix_server_register_events_fn_t>registerevents
self.myserver.deregister_events = <pmix_server_deregister_events_fn_t>deregisterevents
# skip the listener entry as Python servers will never
# provide their own socket listener thread
#
# v2.x interfaces
self.myserver.notify_event = <pmix_server_notify_event_fn_t>notifyevent
self.myserver.query = <pmix_server_query_fn_t>query
self.myserver.tool_connected = <pmix_server_tool_connection_fn_t>toolconnected
self.myserver.log = <pmix_server_log_fn_t>log
self.myserver.allocate = <pmix_server_alloc_fn_t>allocate
self.myserver.job_control = <pmix_server_job_control_fn_t>jobcontrol
self.myserver.monitor = <pmix_server_monitor_fn_t>monitor
# v3.x interfaces
self.myserver.get_credential = <pmix_server_get_cred_fn_t>getcredential
self.myserver.validate_credential = <pmix_server_validate_cred_fn_t>validatecredential
self.myserver.iof_pull = <pmix_server_iof_fn_t>iofpull
self.myserver.push_stdin = <pmix_server_stdin_fn_t>pushstdin
# v4.x interfaces
self.myserver.group = <pmix_server_grp_fn_t>group
self.myserver.fabric = <pmix_server_fabric_fn_t>fabric
# v5.x interfaces
self.myserver.session_control = <pmix_server_session_control_fn_t>sessioncontrol
# Allow a tool to set server module callback functions
# when it needs to also act as a server
def set_server_module(self, map:dict):
# setup server module
if map is None or 0 == len(map):
print("SERVER REQUIRES AT LEAST ONE MODULE FUNCTION TO OPERATE")
return PMIX_ERR_INIT
kvkeys = list(map.keys())
for key in kvkeys:
try:
setmodulefn(key, map[key])
except KeyError:
print("SERVER MODULE FUNCTION ", key, " IS NOT RECOGNIZED")
return PMIX_ERR_INIT
return PMIX_SUCCESS
def finalize(self):
global stop_progress
global progressThread
# stop progress thread
stop_progress = True
progressThread.join()
# finalize
return PMIx_server_finalize()
def generate_regex(self, hosts:list):
cdef char *regex;
mycomma = ","
myhosts = mycomma.join(hosts)
pyhosts = myhosts.encode('ascii')
rc = PMIx_generate_regex(pyhosts, ®ex)
# load regex appropriately into python bytearray
ba = pmix_convert_regex(regex)
return (rc, ba)
def generate_ppn(self, procs:list):
cdef char *ppn;
mysemi = ";"
myprocs = mysemi.join(procs)
pyprocs = myprocs.encode('ascii')
rc = PMIx_generate_ppn(pyprocs, &ppn)
if "pmix" == ppn[:4].decode("ascii"):
if b'\x00' in ppn:
ppn.replace(b'\x00', '')
ba = bytearray(ppn)
elif "blob" == ppn[:4].decode("ascii"):
sz_str = len(ppn)
sz_prefix = 5
# extract length of bytearray
ppn.split(b'\x00')
len_bytearray = ppn[1]
length = len(len_bytearray) + sz_prefix + sz_str
ba = bytearray(length)
index = 0
pyppn = <bytes> ppn[:length]
while index < length:
ba[index] = pyppn[index]
index += 1
else:
# last case with no ':' in string
ba = bytearray(ppn)
return (rc, ba)
def generate_cpuset_string(self, cpuset:dict):
return (PMIX_ERR_NOT_SUPPORTED, None)
def generate_locality_string(self, cpuset:dict):
return (PMIX_ERR_NOT_SUPPORTED, None)
# Register a namespace
#
# @ns [INPUT]
# - Namespace of job (string)
#
# @nlocalprocs [INPUT]
# - number of local procs for this job (int)
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
#
def register_nspace(self, ns:str, nlocalprocs:int, dicts:list):
cdef pmix_nspace_t nspace
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
global active
# convert the args into the necessary C-arguments
pmix_copy_nspace(nspace, ns)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if sz > 0:
rc = PMIx_server_register_nspace(nspace, nlocalprocs, info, sz, NULL, NULL)
else:
rc = PMIx_server_register_nspace(nspace, nlocalprocs, NULL, 0, NULL, NULL)
return rc
# Deregister a namespace
#
# @ns [INPUT]
# - Namespace of job (string)
#
def deregister_nspace(self, ns:str):
cdef pmix_nspace_t nspace
global active
# convert the args into the necessary C-arguments
pmix_copy_nspace(nspace, ns)
PMIx_server_deregister_nspace(nspace, NULL, NULL)
return
# Register resources
def register_resources(directives:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, directives)
if PMIX_SUCCESS != rc:
return rc
rc = PMIx_server_register_resources(info, sz, NULL, NULL)
return rc
# Deregister resources
def deregister_resources(directives:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, directives)
if PMIX_SUCCESS != rc:
return rc
rc = PMIx_server_deregister_resources(info, sz, NULL, NULL)
return rc
# Register a client process
#
# @proc [INPUT]
# - namespace and rank of the client (dict)
#
# @uid [INPUT]
# - User ID (uid) of the client (int)
#
# @gid [INPUT]
# - Group ID (gid) of the client (int)
#
def register_client(self, proc:dict, uid:int, gid:int):
global active
cdef pmix_proc_t p;
pmix_copy_nspace(p.nspace, proc['nspace'])
p.rank = proc['rank']
rc = PMIx_server_register_client(&p, uid, gid, NULL, NULL, NULL)
return rc
# Deregister a client process
#
# @proc [INPUT]
# - namespace and rank of the client (dict)
#
def deregister_client(self, proc:dict):
global active
cdef pmix_proc_t p;
pmix_copy_nspace(p.nspace, proc['nspace'])
p.rank = proc['rank']
rc = PMIx_server_deregister_client(&p, NULL, NULL)
return rc
# Setup the environment of a child process that is to be forked
# by the host
#
# @proc [INPUT]
# - namespace,rank of client process (tuple)
#
# @envin [INPUT/OUTPUT]
# - environ of client proc that will be updated
# with PMIx envars (dict)
#
def setup_fork(self, proc:dict, envin:dict):
cdef pmix_proc_t p;
cdef char **penv = NULL;
cdef unicode pstring
pmix_copy_nspace(p.nspace, proc['nspace'])
p.rank = proc['rank']
# convert the incoming dictionary to an array
# of strings
rc = PMIx_server_setup_fork(&p, &penv)
if PMIX_SUCCESS == rc:
# update the incoming dictionary
n = 0
while NULL != penv[n]:
ln = strlen(penv[n])
pstring = penv[n].decode('ascii')
kv = pstring.split('=')
envin[kv[0]] = kv[1]
free(penv[n])
n += 1
free(penv)
return rc
def dmodex_request(self, proc, dataout:dict):
global active
cdef pmix_proc_t p;
pmix_copy_nspace(p.nspace, proc['nspace'])
p.rank = proc['rank']
active.clear()
pybo = (None, 0)
rc = PMIx_server_dmodex_request(&p, dmodx_cbfunc, NULL);
if PMIX_SUCCESS == rc:
active.wait()
# transfer the data to the dictionary
(data, sz) = active.fetch_data()
pybo = (data, sz)
return rc, pybo
def setup_application(self, ns:str, dicts:list):
global active
cdef pmix_nspace_t nspace;
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
dataout = []
pmix_copy_nspace(nspace, ns)
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
active.clear()
rc = PMIx_server_setup_application(nspace, info, sz, setupapp_cbfunc, NULL);
if PMIX_SUCCESS == rc:
active.wait()
# transfer the data to the dictionary
active.fetch_info(dataout)
return (rc, dataout)
def register_attributes(function:str, attrs:list):
cdef size_t nattrs
cdef char *func
cdef char **attarray
nattrs = 0
func = strdup(function)
if attrs is not None:
nattrs = len(attrs)
if 0 < nattrs:
# allocate and load list of strings into regattrs struct
attarray = <char **> PyMem_Malloc((nattrs+1) * sizeof(char*))
if not attarray:
return PMIX_ERR_NOMEM
rc = pmix_load_argv(attarray, attrs)
if PMIX_SUCCESS != rc:
PyMem_Free(attarray)
return rc
else:
return PMIX_SUCCESS
else:
return PMIX_SUCCESS
# call Server API
rc = PMIx_Register_attributes(func, attarray)
if 0 < nattrs:
PyMem_Free(attarray)
if func != NULL:
PyMem_Free(func)
return PMIX_SUCCESS
def collect_inventory(pydirs:list):
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef size_t ndirs
ndirs = 0
dataout = []
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# call the API
active.clear()
rc = PMIx_server_collect_inventory(directives, ndirs,
collectinventory_cbfunc, NULL)
if PMIX_SUCCESS == rc:
active.wait()
# transfer the data to the dictionary
active.fetch_info(dataout)
return (rc, dataout)
def deliver_inventory(pyinfo:list, pydirs:list):
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ndirs
cdef size_t ninfo
ndirs = 0
ninfo = 0
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# call the API
rc = PMIx_server_deliver_inventory(info, ninfo, directives, ndirs,
NULL, NULL)
return rc
def setup_local_support(self, ns:str, ilist:list):
global active
cdef pmix_nspace_t nspace;
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
pmix_copy_nspace(nspace, ns)
# convert the info list
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, ilist)
if PMIX_SUCCESS != rc:
return rc
if sz > 0:
rc = PMIx_server_setup_local_support(nspace, info, sz, NULL, NULL);
else:
rc = PMIx_server_setup_local_support(nspace, NULL, 0, NULL, NULL);
if PMIX_SUCCESS == rc:
active.wait()
return rc
def iof_deliver(pysrc:dict, pychannel:int, pydata:dict, pydirs:list):
cdef pmix_proc_t *source
cdef pmix_iof_channel_t channel
cdef pmix_byte_object_t *bo
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef size_t ndirs
source = NULL
ndirs = 0
channel = pychannel
# convert pysrc to pmix_proc_t
pmix_copy_nspace(source[0].nspace, pysrc['nspace'])
source[0].rank = pysrc['rank']
# convert pydata to pmix_byte_object_t
bo = <pmix_byte_object_t*>PyMem_Malloc(sizeof(pmix_byte_object_t))
if not bo:
return PMIX_ERR_NOMEM
data = bytes(pydata['bytes'], 'ascii')
bo.size = sizeof(data)
bo.bytes = <char*> PyMem_Malloc(bo.size)
if not bo.bytes:
return PMIX_ERR_NOMEM
pyptr = <const char*>data
memcpy(bo.bytes, pyptr, bo.size)
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# call API
rc = PMIx_server_IOF_deliver(source, channel, bo, directives, ndirs,
NULL, NULL)
return rc
def define_process_set(members:list, name:str):
cdef pmix_proc_t *procs
cdef size_t nprocs
nprocs = 0
# convert set name
pyset = name.encode('ascii')
# convert list of procs to array of pmix_proc_t's
if members is None:
return PMIX_ERR_BAD_PARAM
nprocs = len(members)
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(procs, members)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc
# define the set
rc = PMIx_server_define_process_set(procs, nprocs, pyset)
pmix_free_procs(procs, nprocs)
return rc
def delete_process_set(name:str):
# convert set name
pyset = name.encode('ascii')
# delete the set
rc = PMIx_server_delete_process_set(pyset)
return rc
def session_control(sessionID:int, ilist:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, ilist)
if PMIX_SUCCESS != rc:
return rc
# call the API
if 0 < sz:
rc = PMIx_Session_control(sessionID, info, sz, NULL, NULL)
pmix_free_info(info, sz)
else:
rc = PMIx_Session_control(sessionID, NULL, 0, NULL, NULL)
return rc
cdef int clientconnected(pmix_proc_t *proc, void *server_object,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'clientconnected' in keys:
if not proc:
return PMIX_ERR_BAD_PARAM
myproc = []
pmix_unload_procs(proc, 1, myproc)
rc = pmixservermodule['clientconnected'](myproc[0])
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int clientfinalized(pmix_proc_t *proc, void *server_object,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'clientfinalized' in keys:
if not proc:
return PMIX_ERR_BAD_PARAM
myproc = []
pmix_unload_procs(proc, 1, myproc)
rc = pmixservermodule['clientfinalized'](myproc[0])
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int clientaborted(const pmix_proc_t *proc, void *server_object,
int status, const char msg[],
pmix_proc_t procs[], size_t nprocs,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'abort' in keys:
args = {}
myproc = []
myprocs = []
# convert the caller's name
pmix_unload_procs(proc, 1, myproc)
args['caller'] = myproc[0]
# record the status
args['status'] = status
# record the msg, if given
if NULL != msg:
args['msg'] = str(msg)
# convert any provided array of procs to be aborted
if NULL != procs:
pmix_unload_procs(procs, nprocs, myprocs)
args['targets'] = myprocs
# upcall it
rc = pmixservermodule['abort'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int fencenb(const pmix_proc_t procs[], size_t nprocs,
const pmix_info_t info[], size_t ninfo,
char *data, size_t ndata,
pmix_modex_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'fencenb' in keys:
args = {}
myprocs = []
blist = []
ilist = []
barray = None
if NULL == procs:
myprocs.append({'nspace': myname.nspace, 'rank': PMIX_RANK_WILDCARD})
else:
pmix_unload_procs(procs, nprocs, myprocs)
args['procs'] = myprocs
if NULL != info:
rc = pmix_unload_info(info, ninfo, ilist)
if PMIX_SUCCESS != rc:
return rc
args['directives'] = ilist
if NULL != data:
pmix_unload_bytes(data, ndata, blist)
barray = bytearray(blist)
args['data'] = barray
rc, ret_data = pmixservermodule['fencenb'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
data = strdup(ret_data)
ndata = len(ret_data)
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("fence")
mycaddy.status = PMIX_SUCCESS
mycaddy.bo.bytes = data
mycaddy.bo.size = ndata
mycaddy.modex = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int directmodex(const pmix_proc_t *proc,
const pmix_info_t info[], size_t ninfo,
pmix_modex_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'directmodex' in keys:
args = {}
myprocs = []
ilist = []
pmix_unload_procs(proc, 1, myprocs)
args['proc'] = myprocs[0]
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc, ret_data = pmixservermodule['directmodex'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
cdef const char* data
cdef size_t ndata
data = strdup(ret_data)
ndata = len(ret_data)
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("directmodex")
mycaddy.status = PMIX_SUCCESS
mycaddy.data = data
mycaddy.ndata = ndata
mycaddy.modex = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int publish(const pmix_proc_t *proc,
const pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'publish' in keys:
args = {}
myprocs = []
ilist = []
pmix_unload_procs(proc, 1, myprocs)
args['proc'] = myprocs[0]
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['publish'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int lookup(const pmix_proc_t *proc, char **keys,
const pmix_info_t info[], size_t ninfo,
pmix_lookup_cbfunc_t cbfunc, void *cbdata) with gil:
srvkeys = pmixservermodule.keys()
if 'lookup' in srvkeys:
args = {}
pdata = []
myprocs = []
ilist = []
pykeys = []
pmix_unload_procs(proc, 1, myprocs)
args['proc'] = myprocs[0]
n = 0
while NULL != keys[n]:
pykeys.append(keys[n])
n += 1
args['keys'] = pykeys
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc, pdata = pmixservermodule['lookup'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# convert the list of dictionaries to array of
# pmix_pdata_t structs
cdef pmix_pdata_t *pd;
cdef size_t ndata;
if pdata is not None:
ndata = len(pdata)
if 0 < ndata:
pd = <pmix_pdata_t*> PyMem_Malloc(ndata * sizeof(pmix_pdata_t))
if not pdata:
return PMIX_ERR_NOMEM
prc = pmix_load_pdata(myprocs[0], pd, pdata)
if PMIX_SUCCESS != prc:
pmix_free_pdata(pd, ndata)
return prc
else:
pd = NULL
else:
pd = NULL
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("lookup")
mycaddy.status = PMIX_SUCCESS
mycaddy.pdata = pd
mycaddy.ndata = ndata
mycaddy.lookup = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int unpublish(const pmix_proc_t *proc, char **keys,
const pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
srvkeys = pmixservermodule.keys()
if 'unpublish' in srvkeys:
args = {}
myprocs = []
ilist = []
pykeys = []
pmix_unload_procs(proc, 1, myprocs)
args['proc'] = myprocs[0]
if NULL != keys:
pmix_unload_argv(keys, pykeys)
args['keys'] = pykeys
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['unpublish'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int spawn(const pmix_proc_t *proc,
const pmix_info_t job_info[], size_t ninfo,
const pmix_app_t apps[], size_t napps,
pmix_spawn_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'spawn' in keys:
args = {}
myprocs = []
ilist = []
pyapps = []
pmix_unload_procs(proc, 1, myprocs)
args['proc'] = myprocs[0]
if NULL != job_info:
pmix_unload_info(job_info, ninfo, ilist)
args['jobinfo'] = ilist
pmix_unload_apps(apps, napps, pyapps)
args['apps'] = pyapps
rc, nspace = pmixservermodule['spawn'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("spawn")
mycaddy.status = PMIX_SUCCESS
pmix_copy_nspace(mycaddy.nspace, nspace)
mycaddy.spawn = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int connect(const pmix_proc_t procs[], size_t nprocs,
const pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'connect' in keys:
args = {}
myprocs = []
ilist = []
if NULL != procs:
pmix_unload_procs(procs, nprocs, myprocs)
args['procs'] = myprocs
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['connect'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int disconnect(const pmix_proc_t procs[], size_t nprocs,
const pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'disconnect' in keys:
args = {}
myprocs = []
ilist = []
if NULL != procs:
pmix_unload_procs(procs, nprocs, myprocs)
args['procs'] = myprocs
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['disconnect'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int registerevents(pmix_status_t *codes, size_t ncodes,
const pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'registerevents' in keys:
args = {}
mycodes = []
ilist = []
if NULL != codes:
n = 0
while n < ncodes:
mycodes.append(codes[n])
n += 1
args['codes'] = mycodes
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['registerevents'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int deregisterevents(pmix_status_t *codes, size_t ncodes,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'deregisterevents' in keys:
args = {}
mycodes = []
if NULL != codes:
n = 0
while n < ncodes:
mycodes.append(codes[n])
n += 1
args['codes'] = mycodes
rc = pmixservermodule['deregisterevents'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int notifyevent(pmix_status_t code,
const pmix_proc_t *source,
pmix_data_range_t drange,
pmix_info_t info[], size_t ninfo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'notifyevent' in keys:
args = {}
ilist = []
myproc = []
args['code'] = code
pmix_unload_procs(source, 1, myproc)
args['source'] = myproc[0]
args['range'] = drange
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc = pmixservermodule['notifyevent'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int query(pmix_proc_t *source,
pmix_query_t *queries, size_t nqueries,
pmix_info_cbfunc_t cbfunc,
void *cbdata) with gil:
pyqueries = []
keys = pmixservermodule.keys()
if 'query' in keys:
args = {}
myproc = []
if NULL == queries or NULL == source:
return PMIX_ERR_BAD_PARAM
pmix_unload_queries(queries, nqueries, pyqueries)
args['queries'] = pyqueries
pmix_unload_procs(source, 1, myproc)
args['source'] = myproc[0]
rc,results = pmixservermodule['query'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
results = []
# convert the results list of dictionaries to array of
# pmix_info_t structs
cdef pmix_info_t *info;
cdef size_t ninfo
if results is not None and 0 < len(results):
ninfo = len(results)
if 0 < nqueries:
info = <pmix_info_t*> PyMem_Malloc(ninfo * sizeof(pmix_info_t))
if not info:
return PMIX_ERR_NOMEM
prc = pmix_load_info(info, results)
if PMIX_SUCCESS != prc:
pmix_free_info(info, ninfo)
return prc
else:
info = NULL
else:
info = NULL
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("query")
mycaddy.status = PMIX_SUCCESS
mycaddy.info = info
mycaddy.ndata = nqueries
mycaddy.query = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef void toolconnected(pmix_info_t *info, size_t ninfo,
pmix_tool_connection_cbfunc_t cbfunc,
void *cbdata) with gil:
keys = pmixservermodule.keys()
ret_proc = {'nspace': "UNDEF", 'rank': PMIX_RANK_UNDEF}
if 'toolconnected' in keys:
args = {}
ilist = []
if NULL != info:
pmix_unload_info(info, ninfo, ilist)
args['directives'] = ilist
rc, ret_proc = pmixservermodule['toolconnected'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("toolconnected")
mycaddy.status = PMIX_SUCCESS
pmix_copy_nspace(mycaddy.source.nspace, ret_proc['nspace'])
mycaddy.source.rank = ret_proc['rank']
mycaddy.proc = &mycaddy.source
mycaddy.toolconnected = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return
cdef void log(const pmix_proc_t *client,
const pmix_info_t data[], size_t ndata,
const pmix_info_t directives[], size_t ndirs,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'log' in keys:
args = {}
ilist = []
myproc = []
mydirs = []
if NULL == client:
return
pmix_unload_procs(client, 1, myproc)
args['source'] = myproc[0]
if NULL != data:
pmix_unload_info(data, ndata, ilist)
args['data'] = ilist
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['log'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return
cdef int allocate(const pmix_proc_t *client,
pmix_alloc_directive_t action,
const pmix_info_t directives[], size_t ndirs,
pmix_info_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'allocate' in keys:
args = {}
myproc = []
mydirs = {}
keyvals = []
if NULL == client:
return PMIX_ERR_BAD_PARAM
pmix_unload_procs(client, 1, myproc)
args['source'] = myproc[0]
args['action'] = action
if NULL != directives:
pmix_unload_info(directives, ndirs, keyvals)
args['directives'] = keyvals
rc, refarginfo = pmixservermodule['allocate'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. So we start
# a new thread on a timer that should execute a
# callback after the function returns
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo = 0
info = NULL
info_ptr = &info
prc = pmix_alloc_info(info_ptr, &ninfo, refarginfo)
if PMIX_SUCCESS != prc:
print("Error transferring info to C:", prc)
return prc
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("allocate")
mycaddy.status = PMIX_SUCCESS
mycaddy.info = info
mycaddy.ndata = ninfo
mycaddy.allocate = cbfunc
mycaddy.cbdata = cbdata
mycaddy.release_fn = NULL
mycaddy.notification_cbdata = NULL
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int jobcontrol(const pmix_proc_t *requestor,
const pmix_proc_t targets[], size_t ntargets,
const pmix_info_t directives[], size_t ndirs,
pmix_info_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'jobcontrol' in keys:
args = {}
myproc = []
mytargets = []
mydirs = {}
if NULL != requestor:
pmix_unload_procs(requestor, 1, myproc)
args['source'] = myproc[0]
if NULL != targets:
pmix_unload_procs(targets, ntargets, mytargets)
args['targets'] = mytargets
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['jobcontrol'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int monitor(const pmix_proc_t *requestor,
const pmix_info_t *monitor, pmix_status_t error,
const pmix_info_t directives[], size_t ndirs,
pmix_info_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'monitor' in keys:
args = {}
mymon = {}
myproc = []
mydirs = {}
blist = []
if NULL == monitor:
return PMIX_ERR_BAD_PARAM
if NULL != requestor:
pmix_unload_procs(requestor, 1, myproc)
args['source'] = myproc[0]
pmix_unload_info(monitor, 1, mymon)
args['monitor'] = mymon
args['error'] = error
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['monitor'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int getcredential(const pmix_proc_t *proc,
const pmix_info_t directives[], size_t ndirs,
pmix_credential_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'getcredential' in keys:
args = {}
myproc = []
mydirs = {}
if NULL != proc:
pmix_unload_procs(proc, 1, myproc)
args['source'] = myproc[0]
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
status, pycred, pyinfo = pmixservermodule['getcredential'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. So we start
# a new thread on a timer that should execute a
# callback after the function returns
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo = 0
info = NULL
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
# convert pycred to pmix_byte_object_t
bo = <pmix_byte_object_t*>PyMem_Malloc(sizeof(pmix_byte_object_t))
if not bo:
return PMIX_ERR_NOMEM
cred = bytes(pycred['bytes'], 'ascii')
bo.size = sizeof(cred)
bo.bytes = <char*> PyMem_Malloc(bo.size)
if not bo.bytes:
return PMIX_ERR_NOMEM
pyptr = <const char*>cred
memcpy(bo.bytes, pyptr, bo.size)
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("getcredential")
mycaddy.status = PMIX_SUCCESS
mycaddy.info = info
mycaddy.ndata = ninfo
mycaddy.cred = bo
mycaddy.getcredential = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int validatecredential(const pmix_proc_t *proc,
const pmix_byte_object_t *cred,
const pmix_info_t directives[], size_t ndirs,
pmix_validation_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'validatecredential' in keys:
args = {}
keyvals = {}
myproc = []
mydirs = {}
blist = []
pycred = {}
if NULL != proc:
pmix_unload_procs(proc, 1, myproc)
args['source'] = myproc[0]
if NULL != cred:
pmix_unload_bytes(cred[0].bytes, cred[0].size, blist)
barray = bytearray(blist)
pycred['bytes'] = barray
pycred['size'] = cred[0].size
args['credential'] = pycred
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
status, pyinfo = pmixservermodule['validatecredential'](args)
rc = status
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. So we start
# a new thread on a timer that should execute a
# callback after the function returns
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo = 0
info = NULL
info_ptr = &info
prc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
if PMIX_SUCCESS != prc:
print("Error converting info to C:", prc)
return prc
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("validationcredential")
mycaddy.status = PMIX_SUCCESS
mycaddy.info = info
mycaddy.ndata = ninfo
mycaddy.validationcredential = cbfunc
mycaddy.cbdata = cbdata
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef int iofpull(const pmix_proc_t procs[], size_t nprocs,
const pmix_info_t directives[], size_t ndirs,
pmix_iof_channel_t channels,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'iofpull' in keys:
args = {}
keyvals = {}
myprocs = []
mydirs = {}
pychannels = int(channels)
args['channels'] = channels
if NULL != procs:
pmix_unload_procs(procs, nprocs, myprocs)
args['sources'] = myprocs
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['iofpull'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
cdef int pushstdin(const pmix_proc_t *source,
const pmix_proc_t targets[], size_t ntargets,
const pmix_info_t directives[], size_t ndirs,
const pmix_byte_object_t *bo,
pmix_op_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'pushstdin' in keys:
args = {}
keyvals = {}
myproc = []
mytargets = []
mydirs = {}
blist = []
pyload = {}
if NULL != source:
pmix_unload_procs(source, 1, myproc)
args['source'] = myproc[0]
if NULL != targets:
pmix_unload_procs(targets, ntargets, mytargets)
args['targets'] = mytargets
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
if NULL != bo:
pmix_unload_bytes(bo[0].bytes, bo[0].size, blist)
barray = bytearray(blist)
pyload['bytes'] = barray
pyload['size'] = bo[0].size
args['payload'] = pyload
rc = pmixservermodule['pushstdin'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# we return a PMIX_OPERATION_SUCCEEDED status
# that let's the underlying PMIx library know
# the situation so it can generate its own
# callback
if PMIX_SUCCESS == rc:
rc = PMIX_OPERATION_SUCCEEDED
return rc
# TODO: This function requires that the server execute the
# provided callback function to return the group info, and
# it is not allowed to do so until _after_ it returns from
# this upcall. We'll need to figure out a way to 'save' the
# cbfunc until the server calls us back, possibly by passing
# an appropriate caddy object in 'cbdata'
cdef int group(pmix_group_operation_t op, char grp[],
const pmix_proc_t procs[], size_t nprocs,
const pmix_info_t directives[], size_t ndirs,
pmix_info_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'group' in keys:
args = {}
keyvals = {}
myprocs = []
mydirs = {}
args['op'] = op
args['group'] = str(grp)
pmix_unload_procs(procs, nprocs, myprocs)
args['procs'] = myprocs
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['group'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
return rc
cdef int fabric(const pmix_proc_t *requestor,
pmix_fabric_operation_t op,
const pmix_info_t directives[],
size_t ndirs,
pmix_info_cbfunc_t cbfunc,
void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'fabric' in keys:
args = {}
keyvals = {}
myprocs = []
mydirs = {}
args['op'] = op
if NULL != directives:
pmix_unload_info(directives, ndirs, mydirs)
args['directives'] = mydirs
rc = pmixservermodule['fabric'](args)
else:
rc = PMIX_ERR_NOT_SUPPORTED
return rc
cdef int sessioncontrol(const pmix_proc_t *requestor,
uint32_t sessionID,
const pmix_info_t directives[], size_t ndirs,
pmix_info_cbfunc_t cbfunc, void *cbdata) with gil:
keys = pmixservermodule.keys()
if 'sessioncontrol' in keys:
args = {}
myproc = []
blist = []
ilist = []
barray = None
if NULL == requestor:
return PMIX_ERR_BAD_PARAM
pmix_unload_procs(requestor, 1, myproc)
args['requestor'] = myproc[0]
args['sessionID'] = sessionID
if NULL != directives:
rc = pmix_unload_info(directives, ndirs, ilist)
if PMIX_SUCCESS != rc:
return rc
args['directives'] = ilist
rc, refarginfo = pmixservermodule['sessioncontrol'](args)
else:
return PMIX_ERR_NOT_SUPPORTED
# we cannot execute a callback function here as
# that would cause PMIx to lockup. So we start
# a new thread on a timer that should execute a
# callback after the function returns
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo = 0
info = NULL
info_ptr = &info
prc = pmix_alloc_info(info_ptr, &ninfo, refarginfo)
if PMIX_SUCCESS != prc:
print("Error transferring info to C:", prc)
return prc
# we cannot execute a callback function here as
# that would cause PMIx to lockup. Likewise, the
# Python function we called can't do it as it
# would require them to call a C-function. So
# if they succeeded in processing this request,
# threadshift so we can generate the callback safely
global eventQueue
if PMIX_SUCCESS == rc or PMIX_OPERATION_SUCCEEDED == rc:
mycaddy = <pmix_pyshift_t*> PyMem_Malloc(sizeof(pmix_pyshift_t))
mycaddy.op = strdup("sessioncontrol")
mycaddy.status = PMIX_SUCCESS
mycaddy.info = info
mycaddy.ndata = ninfo
mycaddy.sessioncontrol = cbfunc
mycaddy.cbdata = cbdata
mycaddy.release_fn = NULL
mycaddy.notification_cbdata = NULL
cb = PyCapsule_New(mycaddy, NULL, NULL)
# push the results into the queue to return them
# to the PMIx library
eventQueue.put(cb)
return PMIX_SUCCESS
return rc
cdef class PMIxTool(PMIxServer):
def __cinit__(self):
memset(self.myproc.nspace, 0, sizeof(self.myproc.nspace))
self.myproc.rank = PMIX_RANK_UNDEF
# Initialize the PMIx tool library
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
def init(self, dicts:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
global myname
global progressThread
# start the event handler progress thread
progressThread.start()
# init myname
myname = {'nspace':'UNASSIGNED', 'rank':PMIX_RANK_UNDEF}
# init server module in case the tool uses it
self.server_module_init()
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if PMIX_SUCCESS != rc:
return rc, myname
if sz > 0:
rc = PMIx_tool_init(&self.myproc, info, sz)
pmix_free_info(info, sz)
else:
rc = PMIx_tool_init(&self.myproc, NULL, 0)
if PMIX_SUCCESS == rc:
# convert the returned name
myname = {'nspace': (<bytes>self.myproc.nspace).decode('UTF-8'), 'rank': self.myproc.rank}
rc = PMIx_tool_set_server_module(&self.myserver);
return rc, myname
# Finalize the tool library
def finalize(self):
global stop_progress
# stop progress thread
stop_progress = True
progressThread.join(timeout=1)
# finalize
rc = PMIx_tool_finalize()
return rc
# see if the tool is connected
def is_connected(self):
return PMIx_tool_is_connected()
# Disconnect from a server
def disconnect(server:dict):
cdef pmix_proc_t srvr
# convert the server name
pmix_copy_nspace(srvr.nspace, server['nspace'])
srvr.rank = server['rank']
# perform disconnect
rc = PMIx_tool_disconnect(&srvr);
return rc
# Connect to a server
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
def attach_to_server(self, dicts:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
cdef pmix_proc_t srvr
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if sz > 0:
rc = PMIx_tool_attach_to_server(&self.myproc, &srvr, info, sz)
pmix_free_info(info, sz)
else:
rc = PMIx_tool_attach_to_server(&self.myproc, &srvr, NULL, 0)
if PMIX_SUCCESS == rc:
# convert the returned name
myname = {'nspace': (<bytes>self.myproc.nspace).decode('UTF-8'), 'rank': self.myproc.rank}
mysrvr = {'nspace': (<bytes>srvr.nspace).decode('UTF-8'), 'rank': srvr.rank}
return rc, myname, mysrvr
def get_servers(self):
cdef pmix_proc_t *servers
cdef size_t nservers
pysrvrs = []
rc = PMIx_tool_get_servers(&servers, &nservers)
if PMIX_SUCCESS != rc:
return rc, pysrvrs
rc = pmix_unload_procs(servers, nservers, pysrvrs)
PyMem_Free(servers)
return rc, pysrvrs
def set_server(self, server:dict, pyinfo:list):
cdef pmix_proc_t srvr
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t ninfo
# convert the server name
pmix_copy_nspace(srvr.nspace, server['nspace'])
srvr.rank = server['rank']
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &ninfo, pyinfo)
if PMIX_SUCCESS != rc:
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
# perform op
rc = PMIx_tool_set_server(&srvr, info, ninfo);
if 0 < ninfo:
pmix_free_info(info, ninfo)
return rc
def iof_pull(self, pyprocs:list, iof_channel:int, pydirs:list, hdlr):
cdef pmix_proc_t *procs
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef pmix_iof_channel_t channel
cdef size_t ndirs
cdef size_t nprocs
nprocs = 0
ndirs = 0
channel = iof_channel
cdef pmix_status_t pmix_rc
# convert list of procs to array of pmix_proc_t's
if pyprocs is not None:
nprocs = len(pyprocs)
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM, -1
rc = pmix_load_procs(procs, pyprocs)
if PMIX_SUCCESS != rc:
pmix_free_procs(procs, nprocs)
return rc, -1
else:
nprocs = 1
procs = <pmix_proc_t*> PyMem_Malloc(nprocs * sizeof(pmix_proc_t))
if not procs:
return PMIX_ERR_NOMEM, -1
pmix_copy_nspace(procs[0].nspace, self.myproc.nspace)
procs[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# Call the library
with nogil:
pmix_rc = PMIx_IOF_pull(procs, nprocs, directives, ndirs, channel,
pyiofhandler,
NULL, NULL)
rc = pmix_rc
if 0 < nprocs:
pmix_free_procs(procs, nprocs)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
# if rc < 0, then there was an error
if 0 > rc:
return rc, -1
# otherwise, this is our ref ID for this hdlr
myhdlrs.append({'refid': rc, 'hdlr': hdlr})
refid = rc
rc = PMIX_SUCCESS
return rc, refid
def iof_deregister(self, regid:int, pydirs:list):
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef size_t ndirs
cdef size_t iofhdlr
ndirs = 0
iofhdlr = regid
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# call the library
rc = PMIx_IOF_deregister(iofhdlr, directives, ndirs, NULL, NULL)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
# remove our local hdlr
found = False
n = 0
for h in myhdlrs and not found:
try:
if iofhdlr == h['refid']:
found = True
del myhdlrs[n]
else :
n = n + 1
except:
pass
return rc
def iof_push(self, pytargets:list, data:dict, pydirs:list):
cdef pmix_info_t *directives
cdef pmix_info_t **directives_ptr
cdef pmix_byte_object_t *bo
cdef size_t ndirs
cdef pmix_proc_t *targets
ntargets = 0
ndirs = 0
# convert data to pmix_byte_object_t
if data:
bo = <pmix_byte_object_t*>malloc(sizeof(pmix_byte_object_t))
if not bo:
return PMIX_ERR_NOMEM
cred = bytes(data['bytes'], 'ascii')
bo.size = len(cred)
bo.bytes = <char*> malloc(bo.size)
if not bo.bytes:
return PMIX_ERR_NOMEM
pyptr = <const char*>cred
memcpy(bo.bytes, pyptr, bo.size)
else:
bo = NULL
# convert list of proc targets to array of pmix_proc_t's
if pytargets is not None:
ntargets = len(pytargets)
targets = <pmix_proc_t*>malloc(ntargets * sizeof(pmix_proc_t))
if not targets:
return PMIX_ERR_NOMEM
rc = pmix_load_procs(targets, pytargets)
if PMIX_SUCCESS != rc:
pmix_free_procs(targets, ntargets)
return rc
else:
ntargets = 1
targets = <pmix_proc_t*>malloc(ntargets * sizeof(pmix_proc_t))
if not targets:
return PMIX_ERR_NOMEM
pmix_copy_nspace(targets[0].nspace, self.myproc.nspace)
targets[0].rank = PMIX_RANK_WILDCARD
# allocate and load pmix info structs from python list of dictionaries
directives_ptr = &directives
rc = pmix_alloc_info(directives_ptr, &ndirs, pydirs)
# Call the library
rc = PMIx_IOF_push(targets, ntargets, bo, directives, ndirs, NULL, NULL)
if 0 < ntargets:
pmix_free_procs(targets, ntargets)
if 0 < ndirs:
pmix_free_info(directives, ndirs)
return rc
cdef class PMIxScheduler(PMIxTool):
def __cinit__(self):
memset(self.myproc.nspace, 0, sizeof(self.myproc.nspace))
self.myproc.rank = PMIX_RANK_UNDEF
# Initialize the PMIx tool library underneath the scheduler
#
# @dicts [INPUT]
# - a list of dictionaries, where each
# dictionary has a key, value, and val_type
# defined as such:
# [{key:y, value:val, val_type:ty}, … ]
def init(self, dicts:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
global myname
global progressThread
# start the event handler progress thread
progressThread.start()
# init myname
myname = {'nspace':'UNASSIGNED', 'rank':PMIX_RANK_UNDEF}
# init server module in case the scheduler uses it
self.server_module_init()
# allocate and load pmix info structs from python list of dictionaries
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, dicts)
if PMIX_SUCCESS != rc:
return rc, myname
if sz > 0:
rc = PMIx_tool_init(&self.myproc, info, sz)
pmix_free_info(info, sz)
else:
rc = PMIx_tool_init(&self.myproc, NULL, 0)
if PMIX_SUCCESS == rc:
# convert the returned name
myname = {'nspace': (<bytes>self.myproc.nspace).decode('UTF-8'), 'rank': self.myproc.rank}
rc = PMIx_tool_set_server_module(&self.myserver);
return rc, myname
# Finalize the tool library
def finalize(self):
global stop_progress
# stop progress thread
stop_progress = True
progressThread.join(timeout=1)
# finalize
rc = PMIx_tool_finalize()
return rc
# direct the RTE to instantiate a session
def assign_session(sessionID:int, allocID:str, ilist:list, applist:list):
cdef pmix_info_t *info
cdef pmix_info_t **info_ptr
cdef size_t sz
# convert the info list
info_ptr = &info
rc = pmix_alloc_info(info_ptr, &sz, ilist)
if PMIX_SUCCESS != rc:
return rc
if sz == 0:
info = NULL
# convert the app list
|