1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Portions of this software are Copyright (c) 2011 Univa Corporation
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <pthread.h>
#include <pwd.h>
#include "uti/sge_rmon.h"
#include "uti/sge_profiling.h"
#include "uti/sge_prog.h"
#include "uti/sge_time.h"
#include "uti/sge_log.h"
#include "uti/sge_signal.h"
#include "uti/sge_uidgid.h"
#include "uti/sge_unistd.h"
#include "uti/sge_string.h"
#include "uti/sge_bootstrap.h"
#include "uti/sge_hostname.h"
#include "uti/sge_mtutil.h"
#include "japi/drmaa.h"
#include "japi/japi.h"
#include "japi/msg_japi.h"
#include "japi/japiP.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_conf.h"
#include "sgeobj/sge_cqueue.h"
#include "sgeobj/sge_event.h"
#include "sgeobj/sge_feature.h"
#include "sgeobj/sge_id.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_ja_task.h"
#include "sgeobj/sge_object.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_qinstance_state.h"
#include "sgeobj/sge_range.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_str.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_usage.h"
#include "cull/cull_list.h"
#include "comm/commlib.h"
#include "evc/sge_event_client.h"
#include "gdi/sge_gdi_ctx.h"
#include "gdi/sge_gdi.h"
#include "gdi/sge_gdiP.h"
#include "gdi/sge_security.h"
#include "gdi/sge_gdi2.h"
#include "sge.h"
#include "sge_event_master.h"
#include "msg_common.h"
sge_gdi_ctx_class_t *ctx = NULL;
/****** JAPI/--Job_API ********************************************************
* NAME
* Job_JAPI -- Grid Engine's API for job submission and control.
*
* FUNCTION
*
* NOTES
*
* SEE ALSO
* JAPI/-JAPI_Session_state
* JAPI/-JAPI_Implementation
* JAPI/-JAPI_Interface
*******************************************************************************/
static pthread_once_t japi_once_control = PTHREAD_ONCE_INIT;
/****** JAPI/-JAPI_Session_state *******************************************
* NAME
* JAPI_Session_state -- All global variables together constitute the state of a JAPI session
*
* SYNOPSIS
* static pthread_t japi_event_client_thread;
* static int japi_ec_return_value;
* static int japi_session = JAPI_SESSION_INACTIVE;
* static int japi_ec_state = JAPI_EC_DOWN;
* static u_long32 japi_ec_id = 0;
* static lList *Master_japi_job_list = NULL;
* static int japi_threads_in_session = 0;
* static char *japi_session_key = NULL;
* static bool japi_delegated_file_staging_is_enabled = false;
*
* FUNCTION
* japi_event_client_thread - the event client thread. Used by japi_init() and
* japi_exit() to control start and shutdown of this implementation
* thread.
* japi_ec_return_value - return value of the event client thread
* japi_session - reflects state of a JAPI session
* state is set to JAPI_SESSION_ACTIVE when japi_init() succeeded
* and set to JAPI_SESSION_INACTIVE by japi_exit()
* Code using japi_session must be made reentrant with
* the mutex japi_session_mutex.
* japi_ec_state - is used for synchronizing with startup of the event
* client thread in japi_init() and for synchronizing
* with event client thread in japi_exit(). Also it is used
* to ensure blocking functions that depend upon event client
* functionality finish when the event client thread finishes
* as a result of a japi_exit() called by another thread.
* Code using japi_ec_state must be made reentrant with
* japi_ec_state_mutex. To communicate state transitions
* the condition variable japi_ec_state_starting_cv is used.
* japi_ec_id - contains event client id written by event client thread
* read by thread doing japi_exit() to unregister event client
* from qmaster.
* Master_japi_job_list - The Master_japi_job_list contains information
* about all jobs' state of this session. It is used to
* allow japi_wait() and japi_synchronize() for waiting for
* jobs to finish. New jobs are added into this data structure
* by japi_run_job() and japi_run_bulk_jobs(), job finish
* information is stored by the event client thread. Jobs are
* removed by japi_wait() and japi_synchronize() each time when
* a job is reaped. Code depending upon Master_japi_job_list
* must be made reentrant using mutex Master_japi_job_list_mutex.
* To implement synchronous wait for job finish information
* being added condition variable Master_japi_job_list_finished_cv
* is used. See japi_threads_in_session on strategy to ensure
* Master_japi_job_list integrity in case of multiple application
* threads.
* japi_threads_in_session - A counter indicating the number of threads depending
* upon Master_japi_job_list: Each thread entering such a JAPI call
* must increase this counter and decrease it again when leaving.
* Code using japi_threads_in_session must be made reentrant using
* the mutex japi_threads_in_session_mutex. When decreasing the
* counter to 0 the condition variable japi_threads_in_session_cv
* is used to notify japi_exit() that Master_japi_job_list can be
* released.
* japi_session_key - is a string key used during event client registration
* to select only those job events that are related to the JAPI
* session. Code using japi_session_key must be made reentrant
* with mutex japi_session_mutex. It is assumed the session key
* is not changed during an active session.
* japi_delegated_file_staging_is_enabled - An int indicating if delegated file
* staging is enabled in the cluster configuration.
* should always be accessed via
* japi_is_delegated_file_staging_enabled() which protects the
* variable with a mutex.
*
*
* NOTES
*
* SEE ALSO
*******************************************************************************/
static pthread_t japi_event_client_thread;
/* ---- japi_ec_return_value ------------------------------ */
struct japi_ec_alp_data_t {
lList* japi_ec_alp;
pthread_mutex_t mutex;
};
static struct japi_ec_alp_data_t japi_ec_alp_struct = {NULL, PTHREAD_MUTEX_INITIALIZER };
#define JAPI_LOCK_EC_ALP(japi_ec_alp_data_t) sge_mutex_lock("EC_ALP", SGE_FUNC, __LINE__, &(japi_ec_alp_data_t.mutex))
#define JAPI_UNLOCK_EC_ALP(japi_ec_alp_data_t) sge_mutex_unlock("EC_ALP", SGE_FUNC, __LINE__, &(japi_ec_alp_data_t.mutex))
/* ---- japi_session --------------------------------- */
enum {
JAPI_SESSION_ACTIVE,
JAPI_SESSION_INITIALIZING,
JAPI_SESSION_SHUTTING_DOWN,
JAPI_SESSION_INACTIVE
};
static int japi_session = JAPI_SESSION_INACTIVE;
/* guards access to japi_session global variable */
static pthread_mutex_t japi_session_mutex = PTHREAD_MUTEX_INITIALIZER;
#define JAPI_LOCK_SESSION() sge_mutex_lock("SESSION", SGE_FUNC, __LINE__, &japi_session_mutex)
#define JAPI_UNLOCK_SESSION() sge_mutex_unlock("SESSION", SGE_FUNC, __LINE__, &japi_session_mutex)
/* ---- japi_ec_state ------------------------------------- */
enum {
JAPI_EC_DOWN,
JAPI_EC_UP,
JAPI_EC_RESTARTING,
JAPI_EC_STARTING,
JAPI_EC_FINISHING,
JAPI_EC_FAILED
};
static int japi_ec_state = JAPI_EC_DOWN;
/* guards access to japi_ec_state global variable */
static pthread_mutex_t japi_ec_state_mutex = PTHREAD_MUTEX_INITIALIZER;
#define JAPI_LOCK_EC_STATE() sge_mutex_lock("japi_ec_state_mutex", SGE_FUNC, __LINE__, &japi_ec_state_mutex)
#define JAPI_UNLOCK_EC_STATE() sge_mutex_unlock("japi_ec_state_mutex", SGE_FUNC, __LINE__, &japi_ec_state_mutex)
/* needed in japi_init() to allow waiting for event
client thread being up and running */
static pthread_cond_t japi_ec_state_starting_cv = PTHREAD_COND_INITIALIZER;
/* ---- japi_ec_id ------------------------------------------ */
static u_long32 japi_ec_id = 0;
/* ---- Master_japi_job_list -------------------------------- */
static lList *Master_japi_job_list = NULL;
/* guards access to Master_japi_job_list global variable */
static pthread_mutex_t Master_japi_job_list_mutex = PTHREAD_MUTEX_INITIALIZER;
#define JAPI_LOCK_JOB_LIST() sge_mutex_lock("Master_japi_job_list_mutex", SGE_FUNC, __LINE__, &Master_japi_job_list_mutex)
#define JAPI_UNLOCK_JOB_LIST() sge_mutex_unlock("Master_japi_job_list_mutex", SGE_FUNC, __LINE__, &Master_japi_job_list_mutex)
/* this condition is raised each time when a job/task is finished */
static pthread_cond_t Master_japi_job_list_finished_cv = PTHREAD_COND_INITIALIZER;
/* ---- japi_threads_in_session ------------------------------ */
int japi_threads_in_session = 0;
/* guards access to threads_in_session global variable */
static pthread_mutex_t japi_threads_in_session_mutex = PTHREAD_MUTEX_INITIALIZER;
#define JAPI_LOCK_REFCOUNTER() sge_mutex_lock("japi_threads_in_session_mutex", SGE_FUNC, __LINE__, &japi_threads_in_session_mutex)
#define JAPI_UNLOCK_REFCOUNTER() sge_mutex_unlock("japi_threads_in_session_mutex", SGE_FUNC, __LINE__, &japi_threads_in_session_mutex)
/* this condition is raised when a threads_in_session becomes 0 */
static pthread_cond_t japi_threads_in_session_cv = PTHREAD_COND_INITIALIZER;
/* ---- globals ------------------------------------- */
char *japi_session_key = NULL;
static const char *JAPI_SINGLE_SESSION_KEY = "JAPI_SSK";
static volatile int prog_number = JAPI;
static pthread_t init_thread = 0;
static error_handler_t error_handler = NULL;
static int japi_delegated_file_staging_is_enabled = -1;
/* This variable is only used by japi_init() and hence does not need to be
* protected by a mutex. */
static bool virgin_session = true;
#define MAX_JOBS_TO_DELETE 500
/****** JAPI/-JAPI_Implementation *******************************************
* NAME
* JAPI_Implementation -- Functions used to implement JAPI
*
* SEE ALSO
* JAPI/japi_open_session()
* JAPI/japi_close_session()
* JAPI/japi_implementation_thread()
* JAPI/japi_parse_jobid()
* JAPI/japi_send_job()
* JAPI/japi_add_job()
* JAPI/japi_synchronize_retry()
* JAPI/japi_synchronize_all_retry()
* JAPI/japi_synchronize_jobids_retry()
* JAPI/japi_wait_retry()
* JAPI/japi_synchronize_retry()
*******************************************************************************/
static int japi_open_session(const char *username, const char *unqualified_hostname, const char *key_in, dstring *key_out, dstring *diag);
#ifdef ENABLE_PERSISTENT_JAPI_SESSIONS
static int japi_close_session(const char*username, const dstring *key, dstring *diag);
#endif
static void *japi_implementation_thread(void *);
static int japi_parse_jobid(const char *jobid_str, u_long32 *jobid, u_long32 *taskid,
bool *is_array, dstring *diag);
static int japi_send_job(lListElem **job, bool use_euid_egid, u_long32 *jobid, dstring *diag);
static int japi_add_job(u_long32 jobid, u_long32 start, u_long32 end, u_long32 incr,
bool is_array, dstring *diag);
static int japi_synchronize_jobids_retry(const char *jobids[], bool dispose);
static int japi_wait_retry(lList *japi_job_list, int wait4any, u_long32 jobid,
u_long32 taskid, bool is_array_task, int event_mask,
u_long32 *wjobidp, u_long32 *wtaskidp,
bool *wis_task_arrayp, int *wait_status,
int *wevent, lList **rusagep);
static int japi_gdi_control_error2japi_error(lListElem *aep, dstring *diag, int drmaa_control_action);
static int japi_sync_job_tasks(lListElem *japi_job, lListElem *sge_job);
static int japi_clean_up_jobs (int flag, dstring *diag);
static int japi_read_dynamic_attributes(dstring *diag);
static int do_gdi_delete (lList **id_list, int action, bool delete_all,
dstring *diag);
static int japi_stop_event_client(const char *default_cell);
static void japi_use_library_signals(void)
{
/* simply ignore SIGPIPE */
signal (SIGPIPE, SIG_IGN);
}
static void japi_once_init(void)
{
/* enable rmon monitoring */
rmon_mopen(0, NULL, "japilib");
feature_mt_init();
}
static void japi_inc_threads(const char *func)
{
DENTER(TOP_LAYER, "japi_inc_threads");
JAPI_LOCK_REFCOUNTER();
japi_threads_in_session++;
DPRINTF(("%s(): japi_threads_in_session++ %d\n", func, japi_threads_in_session));
JAPI_UNLOCK_REFCOUNTER();
DRETURN_VOID;
}
static void japi_dec_threads(const char *func)
{
DENTER(TOP_LAYER, "japi_dec_threads");
JAPI_LOCK_REFCOUNTER();
if (--japi_threads_in_session == 0)
pthread_cond_signal(&japi_threads_in_session_cv);
DPRINTF(("%s(): japi_threads_in_session-- %d\n", func, japi_threads_in_session));
JAPI_UNLOCK_REFCOUNTER();
DRETURN_VOID;
}
/****** JAPI/japi_init_mt() ****************************************************
* NAME
* japi_init_mt() -- Per thread library initialization
*
* SYNOPSIS
* int japi_init_mt(dstring *diag)
*
* FUNCTION
* Do all per thread initialization required for libraries JAPI builds
* upon.
*
* OUTPUT
* dstring *diag - returns diagnosis information - on error
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTES: japi_init_mt() is MT safe
*******************************************************************************/
int japi_init_mt(dstring *diag)
{
lList *alp = NULL;
int gdi_errno;
DENTER(TOP_LAYER, "japi_init_mt");
log_state_set_log_gui(1);
/* current major assumptions are
- code is not compiled with -DCRYPTO
- code is not compiled with -DKERBEROS
- neither AFS nor DCE/KERBEROS security may be used */
/* as long as signal handling is not restored japi_init_mt() is
good place to install library signal handling */
japi_use_library_signals();
/*
** TODO: return error reason in diag
*/
gdi_errno = sge_gdi2_setup(&ctx, prog_number, MAIN_THREAD, &alp);
if ((gdi_errno != AE_OK) && (gdi_errno != AE_ALREADY_SETUP)) {
answer_to_dstring(lFirst(alp), diag);
lFreeList(&alp);
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_init() ****************************************************
* NAME
* japi_init() -- Initialize JAPI library
*
* SYNOPSIS
* int japi_init(const char *contact, const char *session_key_in,
* dstring *session_key_out, dstring *diag)
*
* FUNCTION
* Initialize JAPI library and create a new JAPI session. This
* routine must be called before any other JAPI calls, except for
* japi_version(). Initializes internal data structures. Also registers
* with qmaster using the event client mechanism if the enable_wait parameter
* is set to true. If enable_wait is set to false, japi_enable_job_wait()
* must be called before calling japi_wait() or japi_synchronize().
* If enable_wait is set to true, a second thread is spawned as an event client,
* which imposes threading and synchronization overhead. If japi_wait() and
* japi_synchronize() are not needed, JAPI can be made much lighter weight
* by setting enable_wait to false.
*
* INPUTS
* const char *contact - 'Contact' is an implementation dependent
* string which may be used to specify which DRM
* system to use. If 'contact' is NULL, the
* default DRM system will be used.
* const char *session_key_in - if non NULL japi_init() tries to restart
* a former session using this session key.
* int my_prog_num - the index into prognames to use when
* registering with the qmaster. See
* sge_gdi_setup().
* bool enable_wait - Whether to start up in multi-threaded mode to
* allow japi_wait() and japi_synchronize() to
* function.
* When true, a new session is created (if
* needed), and the event client thread is
* started. When false, no session string
* is set, and the event client is not started.
* When false, japi_synchronize() and japi_wait()
* will return DRMAA_ERRNO_NO_ACTIVE_SESSION.
* If enable_wait is set to false, job waiting
* can be explicitly enabled later by calling
* the japi_enable_job_wait() function.
* error_handler_t handler - A callback to be used for error messages from
* the event client thread. When enable_wait is
* false, handler should be set to NULL. The
* callback should not free the error message
* after processing it.
*
* OUTPUT
* dstring *session_key_out - Returns session key of new session - on success.
* dstring *diag - Returns diagnosis information - on failure
*
* RESULT
* int - DRMAA error codes
*
* MUTEXES
* japi_session_mutex
*
* NOTES
* MT-NOTE: japi_init() is MT safe
*******************************************************************************/
/* fixme: use contact (in form root/cell) to temporarily set the root
and cell around initialization */
int japi_init(const char *contact _UNUSED, const char *session_key_in,
dstring *session_key_out, int my_prog_num, bool enable_wait,
error_handler_t handler, dstring *diag)
{
int ret;
cl_com_handle_t* handle = NULL;
DENTER(TOP_LAYER, "japi_init");
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_INACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_ALREADY_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_ALREADY_ACTIVE_SESSION);
}
japi_session = JAPI_SESSION_INITIALIZING;
/* Bugfix: Issuezilla 1076
* We set this here so that the enable_job_wait() can be certain about
* whether init called it or not. */
init_thread = pthread_self();
JAPI_UNLOCK_SESSION();
pthread_once(&japi_once_control, japi_once_init);
if (my_prog_num > 0) {
prog_number = my_prog_num;
}
/* per thread initialization */
if (japi_init_mt(diag) != DRMAA_ERRNO_SUCCESS) {
japi_session = JAPI_SESSION_INACTIVE;
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* Bugfix: Issuezilla 1025
* The problem is that the commlib handle was being created in japi_mt_init()
* even when there was no actual need of a communications channel. The
* reason the handle is created at all is that if it is not, calling
* japi_init() followed by japi_exit() followed by japi_init() again would
* result in functions like japi_run_job() getting a dead handle. Once the
* handle is closed, it has to be explicitly reopened. (Because this is
* really only an init issue, it's safe to move this code in japi_init().)
* The answer is to not create the handle the first time japi_init() is
* called. Since the handle hasn't been closed yet, it doesn't need to be
* explicitly created. If japi_init() gets called more than once, it's fair
* to assume that later calls will be doing something more than just
* initializing to prep for outputing usage information. At least, that's
* how it looks right now. */
/* Besides, it looks like creating the handle wasn't the real problem. The
* real problem was the call to read_dynamic_attributes() from japi_init().
* This bug fix is still a good idea, though. */
/* No need to worry about locking for this global since it is only used in
* japi_init(), and only one thread may be in japi_init() at a time. */
if (!virgin_session) {
int commlib_error = CL_RETVAL_OK;
handle = ctx->get_com_handle(ctx);
if (handle == NULL) {
commlib_error = ctx->connect(ctx);
handle = ctx->get_com_handle(ctx);
}
if (handle == NULL) {
sge_dstring_sprintf (diag, MSG_JAPI_NO_HANDLE_S,
cl_get_error_text(commlib_error));
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
}
else {
virgin_session = false;
}
if (enable_wait) {
const char *username = ctx->get_username(ctx);
const char *unqualified_hostname = ctx->get_unqualified_hostname(ctx);
/* spawn implementation thread japi_implementation_thread() */
ret = japi_enable_job_wait(username, unqualified_hostname, session_key_in, session_key_out, handler,
diag);
}
else {
/* This doesn't need to be protected by a lock because by definition we
* only get here if there are no other threads. */
japi_session_key = (char *)JAPI_SINGLE_SESSION_KEY;
ret = DRMAA_ERRNO_SUCCESS;
}
JAPI_LOCK_SESSION();
if (ret == DRMAA_ERRNO_SUCCESS) {
japi_session = JAPI_SESSION_ACTIVE;
}
else {
japi_session = JAPI_SESSION_INACTIVE;
}
JAPI_UNLOCK_SESSION();
DRETURN(ret);
}
/****** JAPI/japi_enable_job_wait() ********************************************
* NAME
* japi_enable_job_wait() -- Do setup required for doing job waits
*
* SYNOPSIS
* int japi_enable_job_wait(const char *session_key_in,
* string *session_key_out, dstring *diag)
*
* FUNCTION
* Does all of the required setup to be able to use the japi_wait() and
* japi_synchronize() calls. This includes starting up the event client
* thread and establishing a session.
* If japi_init() was called with enable_wait set to false, this method must
* be called before japi_wait() or japi_synchronize() can be used.
* This is useful if, for example, when one doesn't know for sure whether
* japi_wait() will be needed at the time japi_init() is called. The
* overhead associated with starting and stopping the event client thread and
* creating and destroying a session can thereby be avoided.
*
* INPUT
* const char *session_key_in - if non NULL japi_enable_job_wait() tries to restart
* a former session using this session key.
* error_handler_t handler - A callback to be used for error messages from
* the event client thread. When NULL, no error
* messages will be generated by the event
* client thread. The callback should not free
* the error message after processing it.
*
* OUTPUT
* dstring *session_key_out - Returns session key of new session - on success.
* dstring *diag - Returns diagnosis information - on failure
*
* RESULT
* int - DRMAA error codes
*
* MUTEXES
* japi_session_mutex -> japi_ec_state_mutex
*
* NOTES
* MT-NOTE: japi_enable_job_wait() is MT safe
*******************************************************************************/
int japi_enable_job_wait(const char *username, const char *unqualified_hostname, const char *session_key_in, dstring *session_key_out,
error_handler_t handler, dstring *diag)
{
int i = 0;
int ret = DRMAA_ERRNO_SUCCESS;
pthread_attr_t attr;
DENTER(TOP_LAYER, "japi_enable_job_wait");
JAPI_LOCK_SESSION();
/* JAPI_SESSION_INITIALIZING if we're called from japi_init() or
* JAPI_SESSION_ACTIVE if we're called from the client code directly. */
if ((japi_session != JAPI_SESSION_INITIALIZING) &&
(japi_session != JAPI_SESSION_ACTIVE)) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
/* Bugfix: Issuezilla 1076
* japi_init() sets init_thread to the calling thread's thread id.
* That means that if the id doesn't match, japi_init() isn't the thread
* that called this function. */
/* When init_thread is set in japi_init(), it's guarded by the session
* mutex, so we know there's no race condition here. */
else if ((japi_session == JAPI_SESSION_INITIALIZING) &&
(init_thread != pthread_self())) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_ALREADY_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_ALREADY_ACTIVE_SESSION);
}
JAPI_LOCK_EC_STATE();
if (japi_ec_state != JAPI_EC_DOWN) {
JAPI_UNLOCK_EC_STATE();
JAPI_UNLOCK_SESSION();
sge_dstring_copy_string(diag, MSG_JAPI_EVENT_CLIENT_ALREADY_STARTED);
/* If the state is not JAPI_EC_DOWN, return
* DRMAA_ERRNO_ALREADY_ACTIVE_SESSION because we don't have a better
* error code to return. We really need to give JAPI it's own error
* codes instead of leaning on DRMAA. */
/* This also applies to finishing because the event client must already
* be running to be stopping. Ideally we would return a more specific
* error code, but for the moment, this is the best I can do. */
DRETURN(DRMAA_ERRNO_ALREADY_ACTIVE_SESSION);
}
/* Note that we're in the process of starting up so that other calls to this
* function fail. */
if (!session_key_in)
japi_ec_state = JAPI_EC_STARTING;
else
japi_ec_state = JAPI_EC_RESTARTING;
/* It's safe to unlock both locks here because we have the ec
* state set so that no other functions can disturb us. */
JAPI_UNLOCK_EC_STATE();
JAPI_UNLOCK_SESSION();
/* (re)open JAPI session associated with JAPI session key */
ret = japi_open_session(username, unqualified_hostname, session_key_in, session_key_out, diag);
if (ret != DRMAA_ERRNO_SUCCESS) {
JAPI_LOCK_EC_STATE();
japi_ec_state = JAPI_EC_DOWN;
JAPI_UNLOCK_EC_STATE();
/* diag was set by japi_open_session() */
DRETURN(ret);
}
JAPI_LOCK_SESSION();
if (japi_session_key == JAPI_SINGLE_SESSION_KEY) {
/* japi_init() was called with enable_wait set to false */
japi_session_key = strdup(sge_dstring_get_string(session_key_out));
}
else {
/* japi_init() was called with enable_wait set to true */
japi_session_key = sge_strdup(japi_session_key, sge_dstring_get_string(session_key_out));
}
JAPI_UNLOCK_SESSION();
sge_dstring_free(session_key_out);
/* Set handler for dealing with error messages from event client thread. */
error_handler = handler;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
/* I'm locking the EC_STATE here so that there is no race condition with the
* event client thread. */
JAPI_LOCK_EC_STATE();
DPRINTF(("Waiting for event client to start up\n"));
i = pthread_create(&japi_event_client_thread, &attr,
japi_implementation_thread, NULL);
if (i != 0) {
japi_ec_state = JAPI_EC_DOWN;
JAPI_UNLOCK_EC_STATE();
if (diag != NULL) {
sge_dstring_sprintf(diag, MSG_JAPI_EC_THREAD_NOT_STARTED_S,
strerror(errno));
}
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* wait until event client thread is operable or gives up */
/* We wait for !JAPI_EC_STARTING here instead of JAPI_EC_UP because the
* event client thread may not succeed in starting up. */
while (japi_ec_state == JAPI_EC_STARTING || japi_ec_state == JAPI_EC_RESTARTING ) {
pthread_cond_wait(&japi_ec_state_starting_cv, &japi_ec_state_mutex);
}
if (japi_ec_state == JAPI_EC_UP) {
JAPI_UNLOCK_EC_STATE();
DPRINTF(("Event client has been started\n"));
ret = DRMAA_ERRNO_SUCCESS;
}
else if (japi_ec_state == JAPI_EC_FAILED) {
lListElem *aep = NULL;
japi_ec_state = JAPI_EC_DOWN;
JAPI_UNLOCK_EC_STATE();
ret = DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE;
if (pthread_join(japi_event_client_thread, NULL)) {
DPRINTF(("japi_init(): pthread_join returned\n"));
}
/* We know that japi_session_key is a copy of a string at this point. */
sge_free(&japi_session_key);
/* return error context from event client thread if there is such */
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
aep = lFirst(japi_ec_alp_struct.japi_ec_alp);
if (aep != NULL) {
answer_to_dstring(aep, diag);
}
else {
japi_standard_error(DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE, diag);
}
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
}
else {
JAPI_UNLOCK_EC_STATE();
/* else japi_ec_state == JAPI_EC_DOWN which means the thread was shut
* down by japi_exit() before it could register as an event client. In
* this case, we just quietly exit as though everything worked, which
* technically it did. We just triggered a shortcut that prevents the
* event client thread from starting up completely just to be shut
* down. */
ret = DRMAA_ERRNO_SUCCESS;
}
pthread_attr_destroy(&attr);
DRETURN(ret);
}
/****** JAPI/japi_open_session() ***********************************************
* NAME
* japi_open_session() -- create or reopen JAPI session
*
* SYNOPSIS
* static int japi_open_session(const char *key_in, dstring *key_out,
* dstring *diag)
*
* FUNCTION
* A JAPI session is created or reopened, depending on the value of key_in.
* The session key of the opened session is returned.
*
* INPUTS
* const char *key_in - If 'key' is non NULL it is used to reopen
* the JAPI session. Otherwise a new session is always created.
*
* OUTPUT
* dstring *key_out - Returns session key of the session that was opened
* on success.
* dstring *diag - Diagnosis information - on failure.
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_open_session() is MT safe
*******************************************************************************/
static int japi_open_session(const char *username _UNUSED,
const char* unqualified_hostname,
const char *key_in, dstring *key_out,
dstring *diag _UNUSED)
{
#ifdef ENABLE_PERSISTENT_JAPI_SESSIONS
struct passwd pw_struct, *pwd;
char buffer[2048];
char tmp_session_path_buffer[SGE_PATH_MAX];
dstring tmp_session_path;
#endif
DENTER(TOP_LAYER, "japi_open_session");
if (key_in == NULL) {
char tmp_session_key_buffer[SGE_PATH_MAX];
dstring tmp_session_key;
unsigned int id = 0;
/* seed random function */
id = sge_get_gmt();
sge_dstring_init(&tmp_session_key, tmp_session_key_buffer, sizeof(tmp_session_key_buffer));
/* a unique session key must be found if we got no session key */
id = rand_r((unsigned int *)&id);
/* a session key is built from <unqualified hostname>.<pid>.<number> */
sge_dstring_sprintf(&tmp_session_key, "%s."pid_t_fmt".%.6d",
unqualified_hostname, getpid(),
id);
DPRINTF(("created new session using generated \"%s\" as JAPI session key\n",
sge_dstring_get_string(&tmp_session_key)));
sge_dstring_copy_dstring(key_out, &tmp_session_key);
} else {
sge_dstring_copy_string(key_out, key_in);
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_exit() ****************************************************
* NAME
* japi_exit() -- Optionally close JAPI session and shutdown JAPI library.
*
* SYNOPSIS
* int japi_exit(bool close_session, dstring *diag)
*
* FUNCTION
* Disengage from JAPI library and allow the JAPI library to perform
* any necessary internal clean up. Depending on 'close_session' this
* routine also ends a JAPI Session. japi_exit() has no impact on jobs
* (e.g., queued and running jobs remain queued and running).
*
* INPUTS
* bool close_session - If true the JAPI session is always closed
* otherwise it remains and can be reopened later on.
*
* OUTPUTS
* dstring *diag - diagnostic information - on error
*
* RESULT
* int - DRMAA error codes
*
* MUTEXES
* japi_session_mutex -> japi_threads_in_session_mutex
*
* NOTES
* MT-NOTE: japi_exit() is MT safe
*******************************************************************************/
int japi_exit(int flag, dstring *diag)
{
int cl_errno;
cl_com_handle_t* handle = NULL;
const char *default_cell = NULL;
DENTER(TOP_LAYER, "japi_exit");
DPRINTF(("entering japi_exit() at "sge_u32"\n", sge_get_gmt()));
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
japi_session = JAPI_SESSION_SHUTTING_DOWN;
JAPI_UNLOCK_SESSION();
/* be sure that the context exists, therefore after test for active session */
default_cell = ctx->get_default_cell(ctx);
/* do not destroy session state until last japi call
depending on it is finished */
JAPI_LOCK_REFCOUNTER();
if (japi_threads_in_session > 0) {
/* signal all application threads waiting for a job to finish */
pthread_cond_broadcast(&Master_japi_job_list_finished_cv);
while (japi_threads_in_session > 0) {
pthread_cond_wait(&japi_threads_in_session_cv, &japi_threads_in_session_mutex);
}
}
JAPI_UNLOCK_REFCOUNTER();
/* per thread initialization */
if (japi_init_mt(diag) != DRMAA_ERRNO_SUCCESS) {
japi_session = JAPI_SESSION_INACTIVE;
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* Here's how this stop process works:
* o Kill any pending jobs
* o Wait for the event client thread to die
* o Close the comm lib connection
* o Free the job list
* o Close the session
*/
/* First we clean up the pending job(s). */
japi_clean_up_jobs (flag, diag);
/*
* notify event client about shutdown
*
* Currently this is done by using the sge_gsi_kill_eventclient() call. As
* a backup, we also set japi_ec_state accordingly.
*/
JAPI_LOCK_EC_STATE();
DPRINTF(("Notify event client about shutdown\n"));
if ((japi_ec_state == JAPI_EC_UP) || (japi_ec_state == JAPI_EC_STARTING) || (japi_ec_state == JAPI_EC_RESTARTING)) {
int my_state = japi_ec_state;
/* If the event client thread is running, it will check the state at the
* beginning of every cycle. If the state is set to JAPI_EC_FINISHING
* it will exit. */
/* If the event client thread is still starting up, we can shortcut its
* start-up by setting the state to JAPI_EC_FINISHING without having to
* first let it come up and then bring it down. */
japi_ec_state = JAPI_EC_FINISHING;
JAPI_UNLOCK_EC_STATE();
if (my_state == JAPI_EC_UP) {
japi_stop_event_client(default_cell);
}
DPRINTF (("Waiting for event client to terminate.\n"));
pthread_join (japi_event_client_thread, NULL);
japi_ec_state = JAPI_EC_DOWN;
}
else {
JAPI_UNLOCK_EC_STATE();
}
/* If it's down, we're fine. It can't be finishing because only one
* thread can be in japi_exit() at a time. */
/* Make certain nothing is still hanging around. */
pthread_cond_broadcast (&japi_ec_state_starting_cv);
/*
* Try to disconnect from commd
* this will fail if the thread never made any commd communication
*
* When DRMAA calls were made by multiple threads other
* sge_commd commprocs remain registered. To unregister also
* these commprocs a list of open commprocs per process is
* required to implement kind of a all_thread_leave_commproc().
* This function would then be called here instead.
*/
/* There's two ways for us to get here. The first is that we successfully
* unregistered the event client and signaled the event client thread. In
* case, it's possible that the connection is in an unstable state. However,
* we don't actually care because all we're doing is closing it, and if the
* thread was holding any locks, they were released when it died. The second
* way is for the unregister to have failed. In this case, we had to
* ask the GDI to ask the event client to shutdown. If we've gotten here,
* the event client thread is stopped and no further communications are
* needed. */
/*
* disconnect from commd
*/
DPRINTF (("Before commlib shutdown\n"));
handle = ctx->get_com_handle(ctx);
cl_errno = cl_commlib_shutdown_handle(handle, false);
DPRINTF (("After commlib shutdown\n"));
if (cl_errno != CL_RETVAL_OK) {
sge_dstring_sprintf(diag, MSG_JAPI_CANNOT_CLOSE_COMMLIB_S, cl_get_error_text(cl_errno));
}
/* We have to wait to free the job list until any waiting or syncing threads
* have exited. Otherwise, they may think their jobs exited badly. */
JAPI_LOCK_JOB_LIST();
lFreeList(&Master_japi_job_list);
JAPI_UNLOCK_JOB_LIST();
/* Session is not inactive until the session has been closed (or not). If
* I set the session to inactive earlier, another japi_init() could try to
* open the same session before we could close it. The result would be that
* the session would be successfully opened by japi_init() and then quietly
* closed by japi_exit() causing all kinds of headaches.
* The same goes for the communications socket. */
JAPI_LOCK_SESSION();
if (japi_session_key != JAPI_SINGLE_SESSION_KEY) {
sge_free(&japi_session_key);
}
else {
japi_session_key = NULL;
}
japi_session = JAPI_SESSION_INACTIVE;
JAPI_UNLOCK_SESSION();
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_allocate_string_vector() *************************************
* NAME
* japi_allocate_string_vector() -- Allocate a string vector
*
* SYNOPSIS
* static drmaa_attr_values_t* japi_allocate_string_vector(int type)
*
* FUNCTION
* Allocate a string vector iterator. Two different variations are
* supported:
*
* JAPI_ITERATOR_BULK_JOBS
* Provides bulk job id strings in a memory efficient fashion.
*
* JAPI_ITERATOR_STRINGS
* Implements a simple string list.
*
* INPUTS
* int type - JAPI_ITERATOR_BULK_JOBS or JAPI_ITERATOR_STRINGS
*
* RESULT
* static drmaa_attr_values_t* - the iterator
*
* NOTES
* MT-NOTE: japi_allocate_string_vector() is MT safe
* should be moved to drmaa.c
*******************************************************************************/
drmaa_attr_values_t *japi_allocate_string_vector(int type)
{
drmaa_attr_values_t *iter;
if (!(iter = (drmaa_attr_values_t *)malloc(sizeof(drmaa_attr_values_t)))) {
return NULL;
}
iter->iterator_type = type;
switch (type) {
case JAPI_ITERATOR_BULK_JOBS:
iter->it.ji.jobid = 0;
iter->it.ji.start = 0;
iter->it.ji.end = 0;
iter->it.ji.incr = 0;
iter->it.ji.next_pos = 0;
break;
case JAPI_ITERATOR_STRINGS:
iter->it.si.strings = NULL;
iter->it.si.next_pos = NULL;
break;
default:
sge_free(&iter);
}
return iter;
}
/****** JAPI/japi_string_vector_get_next() *************************************
* NAME
* japi_string_vector_get_next() -- Return next entry of a string vector
*
* SYNOPSIS
* int japi_string_vector_get_next(drmaa_attr_values_t* iter, dstring
* *val)
*
* FUNCTION
* DRMAA_ERRNO_NO_MORE_ELEMENTS is returned for an empty string
* vector. The next entry of a string vector is returned.
*
* INPUTS
* drmaa_attr_values_t* iter - The string vector
*
* OUTPUTS
* dstring *val - Returns next string value - on success.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_string_vector_get_next() is MT safe
*******************************************************************************/
int japi_string_vector_get_next(drmaa_attr_values_t* iter, dstring *val)
{
DENTER(TOP_LAYER, "japi_string_vector_get_next");
if (!iter) {
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
switch (iter->iterator_type) {
case JAPI_ITERATOR_BULK_JOBS:
if (iter->it.ji.next_pos > iter->it.ji.end) {
DRETURN(DRMAA_ERRNO_NO_MORE_ELEMENTS);
}
if (val != NULL) {
sge_dstring_sprintf(val, "%ld.%d", (long)iter->it.ji.jobid,
iter->it.ji.next_pos);
}
iter->it.ji.next_pos += iter->it.ji.incr;
DRETURN(DRMAA_ERRNO_SUCCESS);
case JAPI_ITERATOR_STRINGS:
if (!iter->it.si.next_pos) {
DRETURN(DRMAA_ERRNO_NO_MORE_ELEMENTS);
}
if (val != NULL) {
sge_dstring_copy_string(val, lGetString(iter->it.si.next_pos, ST_name));
}
iter->it.si.next_pos = lNext(iter->it.si.next_pos);
DRETURN(DRMAA_ERRNO_SUCCESS);
default:
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
}
/****** JAPI/japi_string_vector_get_num() *************************************
* NAME
* japi_string_vector_get_num() -- Return number of entries of a string
* vector
*
* SYNOPSIS
* int japi_string_vector_get_num(drmaa_attr_values_t* iter)
*
* FUNCTION
* Returns the total number of elements in the string vector.
*
* INPUTS
* drmaa_attr_values_t* iter - The string vector
*
* RESULT
* int - number of entries, -1 on failure
*
* NOTES
* MT-NOTE: japi_string_vector_get_num() is MT safe
*******************************************************************************/
int japi_string_vector_get_num(drmaa_attr_values_t* values, int *size)
{
DENTER(TOP_LAYER, "japi_string_vector_get_num");
if ((values == NULL) || (size == NULL)) {
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
switch (values->iterator_type) {
case JAPI_ITERATOR_BULK_JOBS:
/* 1-7:3 = [1,4,7] => (7 - 1) / 3 + 1 = 3 */
*size = (values->it.ji.end - values->it.ji.start) / values->it.ji.incr + 1;
DRETURN(DRMAA_ERRNO_SUCCESS);
case JAPI_ITERATOR_STRINGS:
*size = lGetNumberOfElem(values->it.si.strings);
DRETURN(DRMAA_ERRNO_SUCCESS);
default:
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
}
/****** JAPI/japi_delete_string_vector() ***************************************
* NAME
* japi_delete_string_vector() -- Release all resources of a string vector
*
* SYNOPSIS
* void japi_delete_string_vector(drmaa_attr_values_t* iter)
*
* FUNCTION
* Release all resources of a string vector.
*
* INPUTS
* drmaa_attr_values_t* iter - to be released
*
* NOTES
* MT-NOTE: japi_delete_string_vector() is MT safe
* should be moved to drmaa.c
*******************************************************************************/
void japi_delete_string_vector(drmaa_attr_values_t* iter )
{
if (!iter)
return;
switch (iter->iterator_type) {
case JAPI_ITERATOR_BULK_JOBS:
break;
case JAPI_ITERATOR_STRINGS:
lFreeList(&(iter->it.si.strings));
break;
default:
break;
}
sge_free(&iter);
return;
}
/****** JAPI/japi_send_job() ***************************************************
* NAME
* japi_send_job() -- Send job to qmaster using GDI
*
* SYNOPSIS
* static int japi_send_job(lListElem *job, u_long32 *jobid, dstring *diag)
*
* FUNCTION
* The job passed is sent to qmaster using GDI. The jobid is returned.
*
* INPUTS
* lListElem *job - the job (JB_Type)
* u_long32 *jobid - destination for resulting jobid
* dstring *diag - diagnosis information
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_send_job() is MT safe
*******************************************************************************/
static int japi_send_job(lListElem **sge_job_template, bool use_euid_egid, u_long32 *jobid, dstring *diag)
{
lList *job_lp, *alp;
lListElem *aep, *job;
int result = DRMAA_ERRNO_SUCCESS;
DENTER(TOP_LAYER, "japi_send_job");
job_lp = lCreateList(NULL, JB_Type);
job = lCopyElem(*sge_job_template);
lAppendElem(job_lp, job);
/*
* Set owner and group so that information will be available in
* client JSV scripts
*/
job_set_owner_and_group(job, ctx->get_uid(ctx), ctx->get_gid(ctx),
ctx->get_username(ctx), ctx->get_groupname(ctx));
/* use GDI to submit job for this session */
alp = ctx->gdi(ctx, SGE_JB_LIST, SGE_GDI_ADD|SGE_GDI_RETURN_NEW_VERSION, &job_lp, NULL, NULL, use_euid_egid);
/* reinitialize 'job' with pointer to new version from qmaster */
lFreeElem(sge_job_template);
if ((*sge_job_template = lFirst(job_lp))) {
*jobid = lGetUlong(*sge_job_template, JB_job_number);
}
lDechainElem(job_lp, *sge_job_template);
lFreeList(&job_lp);
if (!(aep = lFirst(alp))) {
lFreeList(&alp);
sge_dstring_copy_string(diag, MSG_JAPI_BAD_GDI_ANSWER_LIST);
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/*
* We simply put all answer messages into the diag buffer.
* Each single answer message is at first added without newline
* characters. Then a newline is added to delimit two messages.
*/
for_each(aep, alp) {
u_long32 quality;
quality = lGetUlong(aep, AN_quality);
if (quality == ANSWER_QUALITY_ERROR) {
u_long32 answer_status = lGetUlong(aep, AN_status);
if ((answer_status == STATUS_NOQMASTER) ||
(answer_status == STATUS_NOCOMMD)) {
result = DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE;
} else if (answer_status == STATUS_NOTOK_DOAGAIN) {
result = DRMAA_ERRNO_TRY_LATER;
} else {
result = DRMAA_ERRNO_DENIED_BY_DRM;
}
}
answer_to_dstring(aep, diag);
if (lNext(aep)) {
sge_dstring_append(diag, "\n");
}
}
lFreeList(&alp);
DRETURN(result);
}
/****** JAPI/japi_add_job() ****************************************************
* NAME
* japi_add_job() -- Add job/bulk job to library session data
*
* SYNOPSIS
* static int japi_add_job(u_long32 jobid, u_long32 start, u_long32 end,
* u_long32 incr, bool is_array, const char *func)
*
* FUNCTION
* Add the job/bulk job to the library session data.
*
* INPUTS
* u_long32 jobid - the jobid
* u_long32 start - start index
* u_long32 end - end index
* u_long32 incr - increment
* bool is_array - true for array/bulk jobs false otherwise
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTES: japi_add_job() is not MT safe due to
* Master_japi_job_list
*******************************************************************************/
static int japi_add_job(u_long32 jobid, u_long32 start, u_long32 end, u_long32 incr,
bool is_array, dstring *diag)
{
lListElem *japi_job;
DENTER(TOP_LAYER, "japi_add_job");
japi_job = lGetElemUlong(Master_japi_job_list, JJ_jobid, jobid);
if (japi_job != NULL) {
/* job may not yet exist */
sge_dstring_sprintf(diag, MSG_JAPI_JOB_ALREADY_EXISTS_S, jobid);
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* add job to library session data
- all tasks in JJ_not_yet_finished_ids
- no task in JJ_finished_jobs */
japi_job = lAddElemUlong(&Master_japi_job_list, JJ_jobid, jobid, JJ_Type);
object_set_range_id(japi_job, JJ_not_yet_finished_ids, start, end, incr);
/* mark it as array job */
if (is_array) {
u_long32 job_type;
job_type = lGetUlong(japi_job, JJ_type);
JOB_TYPE_SET_ARRAY(job_type);
lSetUlong(japi_job, JJ_type, job_type);
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_run_job() ****************************************************
* NAME
* japi_run_job() -- Submit a job using a SGE job template.
*
* SYNOPSIS
* int japi_run_job(dstring *job_id, lListElem *sge_job_template,
* bool use_euid_egid, dstring *diag)
*
* FUNCTION
* The job described in the SGE job template is submitted. The id
* of the job is returned. If use_euid_egid is true, the job is run
* with the current effective uid and gid rather than the real ones.
*
* OUTPUTS
* lListElem **sge_job_template - SGE job template. Might be modified by JSV
* dstring *job_id - SGE jobid as string - on success.
* dstring *diag - diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* MUTEXES
* japi_session_mutex -> japi_threads_in_session_mutex
* Master_japi_job_list_mutex
* japi_threads_in_session_mutex
*
* NOTES
* MT-NOTE: japi_run_job() is MT safe
* Would be better to return job_id as u_long32.
*******************************************************************************/
int japi_run_job(dstring *job_id, lListElem **sge_job_template, bool use_euid_egid, dstring *diag)
{
u_long32 jobid = 0;
int drmaa_errno;
const char *s;
DENTER(TOP_LAYER, "japi_run_job");
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
/* ensure job list still is consistent when we add the job id of the submitted job later on */
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag) != DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_init_mt() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* tag job with JAPI session key */
lSetString(*sge_job_template, JB_session, japi_session_key);
JAPI_LOCK_JOB_LIST();
/* send job to qmaster using GDI */
drmaa_errno = japi_send_job(sge_job_template, use_euid_egid, &jobid, diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
/* diag written by japi_send_job() */
DRETURN(drmaa_errno);
}
/* add job array to library session data */
drmaa_errno = japi_add_job(jobid, 1, 1, 1, false, diag);
JAPI_UNLOCK_JOB_LIST();
/* this is just a dirty hook for testing purposes
need this to enforce certain error conditions */
if ((s=getenv("SGE_DELAY_AFTER_SUBMIT"))) {
int seconds = atoi(s);
DPRINTF(("sleeping %d seconds\n", seconds));
sleep(seconds);
DPRINTF(("slept %d seconds\n", seconds));
}
japi_dec_threads(SGE_FUNC);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
/* diag written by japi_add_job() */
DRETURN(drmaa_errno);
}
/* return jobid as string */
if (job_id)
sge_dstring_sprintf(job_id, "%ld", (long) jobid);
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_run_bulk_jobs() ****************************************************
* NAME
* japi_run_bulk_jobs() -- Submit a bulk of jobs
*
* SYNOPSIS
* int japi_run_bulk_jobs(drmaa_attr_values_t **jobidsp,
* lListElem *sge_job_template, int start, int end, int incr, dstring *diag)
*
* FUNCTION
* Submit the SGE job template as array job.
*
* INPUTS
* lListElem *sge_job_template - SGE job template
* int start - array job start index
* int end - array job end index
* int incr - array job increment
*
* OUTPUTS
* drmaa_attr_values_t **jobidsp - a string array of jobids - on success
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_run_bulk_jobs() is MT safe
* Would be better to return job_id instead of drmaa_attr_values_t.
*******************************************************************************/
int japi_run_bulk_jobs(drmaa_attr_values_t **jobidsp, lListElem **sge_job_template,
int start, int end, int incr, bool use_euid_egid, dstring *diag)
{
drmaa_attr_values_t *jobids;
u_long32 jobid = 0;
int drmaa_errno;
DENTER(TOP_LAYER, "japi_run_bulk_jobs");
/* check arguments */
if (start > end || !incr) {
japi_standard_error(DRMAA_ERRNO_INVALID_ARGUMENT, diag);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_drmaa_job2sge_job() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* tag job with JAPI session key */
if (japi_session_key != NULL) {
lSetString(*sge_job_template, JB_session, japi_session_key);
}
JAPI_LOCK_JOB_LIST();
/* send job to qmaster using GDI */
drmaa_errno = japi_send_job(sge_job_template, use_euid_egid, &jobid, diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
/* diag written by japi_send_job() */
DRETURN(drmaa_errno);
}
/* add job array to library session data */
drmaa_errno = japi_add_job(jobid, start, end, incr, true, diag);
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
/* diag written by japi_add_job() */
DRETURN(drmaa_errno);
}
if (!(jobids = japi_allocate_string_vector(JAPI_ITERATOR_BULK_JOBS))) {
japi_standard_error(DRMAA_ERRNO_NO_MEMORY, diag);
DRETURN(DRMAA_ERRNO_NO_MEMORY);
}
/* initialize jobid iterator to be returned */
jobids->it.ji.jobid = jobid;
jobids->it.ji.start = start;
jobids->it.ji.end = end;
jobids->it.ji.incr = incr;
jobids->it.ji.next_pos = start;
/* return jobids */
*jobidsp = jobids;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_user_hold_add_jobid() *****************************************
* NAME
* japi_user_hold_add_jobid() -- Helper function for composing GDI request
*
* SYNOPSIS
* static int japi_user_hold_add_jobid(u_long32 gdi_action, lList **request_list,
* u_long32 jobid, u_long32 taskid, bool array, dstring *diag)
*
* FUNCTION
* Adds a reduced job structure to the request list that causes the job/task
* be hold/released when it is used with sge_gdi(SGE_JB_LIST, SGE_GDI_MOD).
*
* INPUTS
* u_long32 gdi_action - the GDI action to be performed
* lList **request_list - the request list we operate on
* u_long32 jobid - the jobid
* u_long32 taskid - the taskid
* bool array - true in case of an array job
*
* OUTPUTS
* dstring *diag - diagnosis information in case of an error
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_user_hold_add_jobid() is MT safe
*******************************************************************************/
static int japi_user_hold_add_jobid(u_long32 gdi_action, lList **request_list,
u_long32 jobid, u_long32 taskid, bool array,
dstring *diag)
{
const lDescr job_descr[] = {
{JB_job_number, lUlongT | CULL_IS_REDUCED, NULL},
{JB_verify_suitable_queues, lUlongT | CULL_IS_REDUCED, NULL},
{JB_ja_tasks, lListT | CULL_IS_REDUCED, NULL},
{JB_ja_structure, lListT | CULL_IS_REDUCED, NULL},
{NoName, lEndT | CULL_IS_REDUCED, NULL}
};
const lDescr task_descr[] = {
{JAT_task_number, lUlongT | CULL_IS_REDUCED, NULL},
{JAT_hold, lUlongT | CULL_IS_REDUCED, NULL},
{NoName, lEndT | CULL_IS_REDUCED, NULL}
};
lListElem *jep = NULL;
lListElem *tep = NULL;
DENTER(TOP_LAYER, "japi_user_hold_add_jobid");
if (!array) {
taskid = 0;
}
/* ensure JB_Type structure exists */
jep = lGetElemUlong(*request_list, JB_job_number, jobid);
if (jep == NULL) {
jep = lAddElemUlong(request_list, JB_job_number, jobid, job_descr);
}
/* ensure JAT_Type structure exists */
if (lGetSubUlong(jep, JAT_task_number, taskid, JB_ja_tasks) != NULL) {
/* taskid is referenced twice */
if (diag != NULL) {
sge_dstring_sprintf(diag, MSG_JAPI_TASK_REF_TWICE_UU,
taskid, jobid);
}
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
tep = lAddSubUlong(jep, JAT_task_number, taskid, JB_ja_tasks, task_descr);
/* set action */
lSetUlong(tep, JAT_hold, gdi_action);
if (taskid != 0) {
lList *tlp = NULL;
lXchgList(jep, JB_ja_structure, &tlp);
range_list_insert_id(&tlp, NULL, taskid);
lXchgList(jep, JB_ja_structure, &tlp);
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_control() ****************************************************
* NAME
* japi_control() -- Apply control operation on JAPI jobs.
*
* SYNOPSIS
* int japi_control(const char *jobid, int action, dstring *diag)
*
* FUNCTION
* Apply control operation to the job specified. If 'jobid' is
* DRMAA_JOB_IDS_SESSION_ALL, then this routine acts on all jobs
* *submitted* during this DRMAA session.
* This routine returns once the action has been acknowledged, but
* does not necessarily wait until the action has been completed.
*
* INPUTS
* const char *jobid - The job id or DRMAA_JOB_IDS_SESSION_ALL.
* int action - The action to be performed. One of
* DRMAA_CONTROL_SUSPEND: stop the job (qmod -s )
* DRMAA_CONTROL_RESUME: (re)start the job (qmod -us)
* DRMAA_CONTROL_HOLD: put the job on-hold (qhold)
* DRMAA_CONTROL_RELEASE: release the hold on the job (qrls)
* DRMAA_CONTROL_TERMINATE: kill the job (qdel)
*
* OUTPUTS
* drmaa_attr_values_t **jobidsp - a string array of jobids - on success
*
* RESULT
* int - DRMAA error codes
*
*
* NOTES
* MT-NOTE: japi_control() is MT safe
* Would be good to have japi_control() operate on a vector of jobids.
* Would be good to interface also operations qmod -r and qmod -c.
*******************************************************************************/
int japi_control(const char *jobid_str, int drmaa_action, dstring *diag)
{
int drmaa_errno;
u_long32 jobid, taskid;
bool array;
lList *alp = NULL;
lListElem *aep;
DENTER(TOP_LAYER, "japi_control");
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_drmaa_job2sge_job() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* use GDI to implement control operations */
switch (drmaa_action) {
case DRMAA_CONTROL_SUSPEND:
case DRMAA_CONTROL_RESUME:
{
lList *ref_list = NULL;
if (!strcmp(jobid_str, DRMAA_JOB_IDS_SESSION_ALL)) {
lListElem *japi_job;
JAPI_LOCK_JOB_LIST();
for_each (japi_job, Master_japi_job_list) {
jobid = lGetUlong(japi_job, JJ_jobid);
if (!JOB_TYPE_IS_ARRAY(lGetUlong(japi_job, JJ_type))) {
char buffer[1024];
dstring job_task_specifier;
sge_dstring_init(&job_task_specifier, buffer, sizeof(buffer));
sge_dstring_sprintf(&job_task_specifier, sge_u32, jobid);
lAddElemStr(&ref_list, ST_name,
sge_dstring_get_string (&job_task_specifier),
ST_Type);
} else {
lListElem *range;
for_each (range, lGetList(japi_job, JJ_not_yet_finished_ids)) {
char buffer[1024];
dstring job_task_specifier;
u_long32 start, end, step;
sge_dstring_init(&job_task_specifier, buffer, sizeof(buffer));
sge_dstring_sprintf(&job_task_specifier, sge_u32".", jobid);
range_get_all_ids(range, &start, &end, &step);
range_to_dstring(start, end, step, &job_task_specifier, false, false, false);
lAddElemStr(&ref_list, ST_name,
sge_dstring_get_string(&job_task_specifier),
ST_Type);
}
}
}
JAPI_UNLOCK_JOB_LIST();
} else {
/* just ensure jobid can be parsed */
if (japi_parse_jobid(jobid_str, &jobid, &taskid, &array, diag)) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
lFreeList(&ref_list);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
lAddElemStr(&ref_list, ST_name, jobid_str, ST_Type);
}
if (ref_list) {
lList *id_list = NULL;
if (drmaa_action == DRMAA_CONTROL_SUSPEND) {
id_list_build_from_str_list(&id_list, &alp, ref_list,
QI_DO_SUSPEND, 0);
} else {
id_list_build_from_str_list(&id_list, &alp, ref_list,
QI_DO_UNSUSPEND, 0);
}
alp = ctx->gdi(ctx, SGE_CQ_LIST, SGE_GDI_TRIGGER,
&id_list, NULL, NULL, false);
lFreeList(&id_list);
lFreeList(&ref_list);
for_each (aep, alp) {
if (lGetUlong(aep, AN_status) != STATUS_OK) {
int ret = DRMAA_ERRNO_SUCCESS;
japi_dec_threads(SGE_FUNC);
ret = japi_gdi_control_error2japi_error(aep, diag, drmaa_action);
lFreeList(&alp);
DRETURN(ret);
}
}
lFreeList(&alp);
}
}
break;
case DRMAA_CONTROL_HOLD:
case DRMAA_CONTROL_RELEASE:
{
lListElem *aep = NULL;
lList *alp = NULL;
lList *request_list = NULL;
u_long32 gdi_action;
/* set action */
if (drmaa_action == DRMAA_CONTROL_HOLD) {
gdi_action = MINUS_H_TGT_USER|MINUS_H_CMD_ADD;
}
else {
gdi_action = MINUS_H_TGT_USER|MINUS_H_CMD_SUB;
}
if (strcmp(jobid_str, DRMAA_JOB_IDS_SESSION_ALL) == 0) {
lListElem *japi_job = NULL;
JAPI_LOCK_JOB_LIST();
for_each (japi_job, Master_japi_job_list) {
jobid = lGetUlong(japi_job, JJ_jobid);
if (!JOB_TYPE_IS_ARRAY(lGetUlong(japi_job, JJ_type))) {
drmaa_errno = japi_user_hold_add_jobid(gdi_action,
&request_list,
jobid, 0, false, diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
/* diag written by japi_user_hold_add_jobid() */
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
lFreeList(&request_list);
DRETURN(drmaa_errno);
}
} else {
lListElem *range = NULL;
for_each (range, lGetList(japi_job, JJ_not_yet_finished_ids)) {
u_long32 min, max, step;
range_get_all_ids(range, &min, &max, &step);
for (taskid = min; taskid <= max; taskid += step) {
drmaa_errno = japi_user_hold_add_jobid(gdi_action,
&request_list,
jobid,
taskid,
true,
diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
/* diag written by japi_user_hold_add_jobid() */
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
lFreeList(&request_list);
DRETURN(drmaa_errno);
}
}
}
}
}
JAPI_UNLOCK_JOB_LIST();
} else {
if (japi_parse_jobid(jobid_str, &jobid, &taskid, &array, diag)) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
lFreeList(&request_list);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
drmaa_errno = japi_user_hold_add_jobid(gdi_action, &request_list,
jobid, taskid, array, diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_user_hold_add_jobid() */
lFreeList(&request_list);
DRETURN(drmaa_errno);
}
}
if (request_list) {
alp = ctx->gdi(ctx, SGE_JB_LIST, SGE_GDI_MOD, &request_list, NULL, NULL, false);
lFreeList(&request_list);
for_each (aep, alp) {
if (lGetUlong(aep, AN_status) != STATUS_OK) {
int ret = DRMAA_ERRNO_SUCCESS;
japi_dec_threads(SGE_FUNC);
ret = japi_gdi_control_error2japi_error(aep, diag, drmaa_action);
lFreeList(&alp);
DRETURN(ret);
}
}
lFreeList(&alp);
}
}
break;
case DRMAA_CONTROL_TERMINATE:
{
lList *id_list = NULL;
lListElem *id_entry;
if (strcmp(jobid_str, DRMAA_JOB_IDS_SESSION_ALL) == 0) {
bool done = false;
int count = 0;
char buffer[1024];
dstring job_task_specifier;
lListElem *japi_job = NULL;
sge_dstring_init(&job_task_specifier, buffer, sizeof(buffer));
JAPI_LOCK_JOB_LIST();
japi_job = lFirst (Master_japi_job_list);
while (!done) {
count = 0;
while (japi_job != NULL) {
jobid = lGetUlong(japi_job, JJ_jobid);
/* This overwrites the previous contents of the dstring. */
sge_dstring_sprintf(&job_task_specifier, sge_u32, jobid);
id_entry = lAddElemStr(&id_list, ID_str, sge_dstring_get_string(&job_task_specifier), ID_Type);
if (JOB_TYPE_IS_ARRAY(lGetUlong(japi_job, JJ_type))) {
lSetList(id_entry, ID_ja_structure, lCopyList(NULL, lGetList(japi_job, JJ_not_yet_finished_ids)));
}
/* japi_job starts out as the first element in the master job
* list. Every time through this loop, we move to the next
* element. We do this before the check for maximum num of
* jobs to delete so that the next time we come to this loop,
* japi_job will already point to the right job. This saves
* us some initializer logic before the loop. */
japi_job = lNext (japi_job);
/* Stop when we reach the deletion limit. */
if (++count >= MAX_JOBS_TO_DELETE) {
break;
}
} /* while */
/* If we exhausted the list before reaching the job limit, we're
* done. */
if (count < MAX_JOBS_TO_DELETE) {
DPRINTF (("Deleting %d jobs\n", count));
done = true;
}
else {
DPRINTF (("Deleting %d jobs\n", MAX_JOBS_TO_DELETE));
}
if (id_list) {
int ret = DRMAA_ERRNO_SUCCESS;
lList *idlp = NULL;
lListElem *idp = NULL;
/* Look for jobs from any user. */
for_each (idp, id_list) {
idlp = lGetList (idp, ID_user_list);
if (idlp == NULL) {
idlp = lCreateList ("User List", ST_Type);
lSetList (idp, ID_user_list, idlp);
}
lAddElemStr (&idlp, ST_name, "*", ST_Type);
}
/* This function frees id_list */
ret = do_gdi_delete (&id_list, drmaa_action, true, diag);
if (ret != DRMAA_ERRNO_SUCCESS) {
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
lFreeList(&id_list);
DRETURN(ret);
}
} /* if */
} /* while */
JAPI_UNLOCK_JOB_LIST();
} /* if */
else {
char buffer[1024];
dstring job_task_specifier;
sge_dstring_init(&job_task_specifier, buffer, sizeof(buffer));
if (japi_parse_jobid(jobid_str, &jobid, &taskid, &array, diag)) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
lFreeList(&id_list);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
sge_dstring_sprintf(&job_task_specifier, sge_u32, jobid);
id_entry = lAddElemStr(&id_list, ID_str, sge_dstring_get_string(&job_task_specifier), ID_Type);
if (array) {
lList *tlp = NULL;
lXchgList(id_entry, ID_ja_structure, &tlp);
range_list_insert_id(&tlp, NULL, taskid);
lXchgList(id_entry, ID_ja_structure, &tlp);
}
} /* else */
if (id_list) {
int ret = DRMAA_ERRNO_SUCCESS;
lList *idlp = NULL;
lListElem *idp = NULL;
/* Look for jobs from any user. */
for_each (idp, id_list) {
idlp = lGetList (idp, ID_user_list);
if (idlp == NULL) {
idlp = lCreateList ("User List", ST_Type);
lSetList (idp, ID_user_list, idlp);
}
lAddElemStr (&idlp, ST_name, "*", ST_Type);
}
/* This function frees id_list */
ret = do_gdi_delete (&id_list, drmaa_action, false, diag);
if (ret != DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
lFreeList(&id_list);
DRETURN(ret);
}
} /* if */
}
break;
default:
japi_dec_threads(SGE_FUNC);
japi_standard_error(DRMAA_ERRNO_INVALID_ARGUMENT, diag);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
japi_dec_threads(SGE_FUNC);
DRETURN(DRMAA_ERRNO_SUCCESS);
}
enum {
JAPI_WAIT_ALLFINISHED, /* there is nothing more to wait for */
JAPI_WAIT_UNFINISHED, /* there are still unfinished tasks */
JAPI_WAIT_FINISHED, /* got a finished task */
JAPI_WAIT_INVALID, /* the specified task does not exist */
JAPI_WAIT_TIMEOUT /* we ran into a timeout before condition was met */
};
static int japi_gdi_control_error2japi_error(lListElem *aep, dstring *diag, int drmaa_control_action)
{
int ret, gdi_error;
DENTER(TOP_LAYER, "japi_gdi_control_error2japi_error");
answer_to_dstring(aep, diag);
switch ((gdi_error=lGetUlong(aep, AN_status))) {
case STATUS_EEXIST:
ret = DRMAA_ERRNO_INVALID_JOB;
break;
case STATUS_EDENIED2HOST:
case STATUS_ENOMGR:
case STATUS_ENOOPR:
case STATUS_ENOTOWNER:
ret = DRMAA_ERRNO_AUTH_FAILURE;
break;
case STATUS_NOQMASTER:
case STATUS_NOCOMMD:
ret = DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE;
break;
case STATUS_ESEMANTIC:
switch (drmaa_control_action) {
case DRMAA_CONTROL_SUSPEND:
ret = DRMAA_ERRNO_SUSPEND_INCONSISTENT_STATE;
break;
case DRMAA_CONTROL_RESUME:
ret = DRMAA_ERRNO_RESUME_INCONSISTENT_STATE;
break;
case DRMAA_CONTROL_HOLD:
ret = DRMAA_ERRNO_HOLD_INCONSISTENT_STATE;
break;
case DRMAA_CONTROL_RELEASE:
ret = DRMAA_ERRNO_RELEASE_INCONSISTENT_STATE;
break;
case DRMAA_CONTROL_TERMINATE:
/* job termination never fails due to the wrong job state */
ret = DRMAA_ERRNO_INVALID_JOB;
break;
default:
ret = DRMAA_ERRNO_INTERNAL_ERROR;
break;
}
break;
default:
ret = DRMAA_ERRNO_INTERNAL_ERROR;
break;
}
DPRINTF(("mapping GDI error code %d to DRMAA error code %d\n",
gdi_error, ret));
DRETURN(ret);
}
/****** JAPI/japi_synchronize() ****************************************************
* NAME
* japi_synchronize() -- Synchronize with jobs to finish w/ and w/o reaping
* job finish information.
*
* SYNOPSIS
* int japi_synchronize(const char *job_ids[], signed long timeout,
* bool dispose, dstring *diag)
*
* FUNCTION
* Wait until all jobs specified by 'job_ids' have finished
* execution. When DRMAA_JOB_IDS_SESSION_ALL is used as jobid
* one can synchronize with all jobs that were submitted during this
* JAPI session. A timeout can be specified to prevent blocking
* indefinitely. If the call exits before timeout all the jobs have
* been waited on or there was an interrupt. If the invocation exits
* on timeout, the return code is DRMAA_ERRNO_EXIT_TIMEOUT. The dispose
* parameter specifies whether job finish information shall be reaped.
* This method requires the event client to have been started, either by
* passing enable_wait as true to japi_init() or by calling
* japi_enable_job_wait().
*
* INPUTS
* const char *job_ids[] - A vector of job id strings.
* signed long timeout - timeout in seconds or
* DRMAA_TIMEOUT_WAIT_FOREVER for infinite waiting
* DRMAA_TIMEOUT_NO_WAIT for immediate returning
* bool dispose - Whether job finish information shall be reaped.
*
* OUTPUTS
* dstring *diag - Diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* MUTEXES
* japi_session_mutex -> japi_threads_in_session_mutex
*
* NOTES
* MT-NOTE: japi_synchronize() is MT safe
* The caller must check system time before and after this call
* in order to check how much time has passed. This should be improved.
*******************************************************************************/
int japi_synchronize(const char *job_ids[], signed long timeout, bool dispose, dstring *diag)
{
bool sync_all = false;
int drmaa_errno, i;
int wait_result;
struct timespec ts;
const char **sync_job_ids = NULL;
lList *sync_list = NULL;
DENTER(TOP_LAYER, "japi_synchronize");
if (timeout < DRMAA_TIMEOUT_WAIT_FOREVER) {
sge_dstring_sprintf (diag, "%s", MSG_JAPI_NEGATIVE_TIMEOUT);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
JAPI_LOCK_EC_STATE();
if (japi_ec_state != JAPI_EC_UP) {
JAPI_UNLOCK_EC_STATE();
JAPI_UNLOCK_SESSION();
sge_dstring_copy_string(diag, MSG_JAPI_NO_EVENT_CLIENT);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
JAPI_UNLOCK_EC_STATE();
/* ensure job list still is consistent when we wait jobs later on */
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_drmaa_job2sge_job() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* wait(?) until specified jobs have finished according to library session data */
/* synchronize with *all* jobs submitted during this session ? */
for (i=0; job_ids[i] != NULL; i++) {
if (!strcmp(job_ids[i], DRMAA_JOB_IDS_SESSION_ALL)) {
sync_all = true;
break;
}
else {
if ((drmaa_errno=japi_parse_jobid(job_ids[i], NULL, NULL, NULL,
diag))!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
DRETURN(drmaa_errno);
}
}
}
if (timeout != DRMAA_TIMEOUT_WAIT_FOREVER) {
sge_relative_timespec(timeout, &ts);
}
JAPI_LOCK_JOB_LIST();
/* If we're synchronizing against all jobs, make a new job id list from the
* running jobs in the master job list. */
if (sync_all == true) {
lListElem *ep = NULL;
u_long32 id = 0;
int count = 0;
sync_list = lCreateList ("Synchronize Job List", ST_Type);
for_each (ep, Master_japi_job_list) {
lList *not_yet_finished = NULL;
lListElem *range;
u_long32 task_id = 0;
u_long32 min = 0;
u_long32 max = 0;
u_long32 step = 0;
not_yet_finished = lGetList(ep, JJ_not_yet_finished_ids);
/* If we're supposed to dispose of the job info, we need to include
* all jobs currently in the session. If we're not disposing, though,
* we can save time by not including completed jobs. */
if (!dispose) {
/* If there are task ids not yet finished, this job is running or
* waiting to be run, and we want to wait for it. Otherwise, we
* don't. */
if (lGetNumberOfElem (not_yet_finished) == 0) {
continue;
}
}
id = lGetUlong (ep, JJ_jobid);
/* handle all unfinished tasks */
for_each (range, not_yet_finished) {
range_get_all_ids(range, &min, &max, &step);
for (task_id = min; task_id <= max; task_id += step) {
/* The largest number representable by 64 unsigned bits is 19
* characters long. */
char char_id[40];
snprintf (char_id, 40, sge_u32 "." sge_u32, id, task_id);
DPRINTF (("Synchronize All: adding %s to id list\n", char_id));
lAddElemStr (&sync_list, ST_name, char_id, ST_Type);
}
}
}
/* We have to add one to the size of the array for the NULL terminator. */
sync_job_ids = (const char**)malloc (sizeof (char *) *
(lGetNumberOfElem (sync_list) + 1));
for_each (ep, sync_list) {
sync_job_ids[count] = lGetString (ep, ST_name);
count++;
}
sync_job_ids[count] = NULL;
}
/* Otherwise just use the id list we were passed. */
else {
sync_job_ids = job_ids;
}
while ((wait_result = japi_synchronize_jobids_retry(sync_job_ids, dispose) == JAPI_WAIT_UNFINISHED)) {
/* must return DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE when event client
thread was shutdown during japi_wait() use japi_session */
/* has japi_exit() been called meanwhile ? */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
japi_standard_error(DRMAA_ERRNO_EXIT_TIMEOUT, diag);
/* If we created a new job list, we have to free it. */
if (sync_all) {
/* The sync_job_ids is an array of pointers to the ST_name elements
* of the sync_list. That means that if we free the sync_list, we
* don't have to free the individual elements of the
* sync_job_ids. */
lFreeList(&sync_list);
sge_free(&sync_job_ids);
}
DRETURN(DRMAA_ERRNO_EXIT_TIMEOUT);
}
JAPI_UNLOCK_SESSION();
if (timeout != DRMAA_TIMEOUT_WAIT_FOREVER) {
if (pthread_cond_timedwait(&Master_japi_job_list_finished_cv,
&Master_japi_job_list_mutex, &ts)==ETIMEDOUT) {
DPRINTF(("got a timeout while waiting for job(s) to finish\n"));
wait_result = JAPI_WAIT_TIMEOUT;
break;
}
} else {
pthread_cond_wait(&Master_japi_job_list_finished_cv, &Master_japi_job_list_mutex);
}
}
JAPI_UNLOCK_JOB_LIST();
if (wait_result == JAPI_WAIT_TIMEOUT)
drmaa_errno = DRMAA_ERRNO_EXIT_TIMEOUT;
else
drmaa_errno = DRMAA_ERRNO_SUCCESS;
japi_dec_threads(SGE_FUNC);
/* If we created a new job list, we have to free it. */
if (sync_all) {
/* The sync_job_ids is an array of pointers to the ST_name elements of the
* sync_list. That means that if we free the sync_list, we don't have to
* free the individual elements of the sync_job_ids. */
lFreeList(&sync_list);
sge_free(&sync_job_ids);
}
DRETURN(drmaa_errno);
}
/****** JAPI/japi_synchronize_jobids_retry() ***********************************
* NAME
* japi_synchronize_jobids_retry() -- Look whether particular jobs finished
*
* SYNOPSIS
* static int japi_synchronize_jobids_retry(const char *job_ids[],
* int dispose)
*
* FUNCTION
* The Master_japi_job_list is searched to investigate whether particular
* jobs specified in job_ids finished. If dispose is true job finish
* information is also removed during this operation.
*
* INPUTS
* const char *job_ids[] - the jobids
* bool dispose - should job finish information be removed
*
* RESULT
* static int - JAPI_WAIT_ALLFINISHED = there is nothing more to wait for
* JAPI_WAIT_UNFINISHED = there are still unfinished tasks
*
* NOTES
* japi_synchronize_jobids_retry() does no error checking with the job_ids
* passed. Assumption is this was ensured before japi_synchronize_jobids_retry()
* is called.
* MT-NOTE: due to access to Master_japi_job_list japi_synchronize_jobids_retry()
* MT-NOTE: is not MT safe; only one instance may be called at a time!
*******************************************************************************/
static int japi_synchronize_jobids_retry(const char *job_ids[], bool dispose)
{
int i;
lListElem *japi_job;
lList *not_yet_finished;
DENTER(TOP_LAYER, "japi_synchronize_jobids_retry");
/*
* We simply iterate over all jobids and do the wait operation
* for each of them.
*/
for (i=0; job_ids[i] != NULL; i++) {
u_long32 jobid, taskid;
bool is_array;
/* assumption is all job_ids can be parsed w/o error by japi_parse_jobid()
this must be ensured before japi_synchronize_jobids_retry() is called */
japi_parse_jobid(job_ids[i], &jobid, &taskid, &is_array, NULL);
japi_job = lGetElemUlong(Master_japi_job_list, JJ_jobid, jobid);
if (japi_job == NULL) {
DPRINTF(("synchronized with "sge_u32"."sge_u32"\n", jobid, taskid));
continue;
}
not_yet_finished = lGetList(japi_job, JJ_not_yet_finished_ids);
if (not_yet_finished && range_list_is_id_within(not_yet_finished, taskid)) {
DPRINTF(("job "sge_u32"."sge_u32" is a still unfinished task\n", jobid, taskid));
DRETURN(JAPI_WAIT_UNFINISHED);
}
DPRINTF(("synchronized with "sge_u32"."sge_u32"\n", jobid, taskid));
if (dispose) {
/* remove corresponding entry in JJ_finished_tasks */
lDelSubUlong(japi_job, JJAT_task_id, taskid, JJ_finished_tasks);
DPRINTF(("dispose job finish information for job "sge_u32" task "sge_u32"\n", jobid, taskid));
if (!lGetList(japi_job, JJ_finished_tasks) && !not_yet_finished) {
/* remove JAPI job if no longer needed */
lRemoveElem(Master_japi_job_list, &japi_job);
}
}
}
DRETURN(JAPI_WAIT_ALLFINISHED);
}
/****** JAPI/japi_wait() ****************************************************
* NAME
* japi_wait() -- Wait for job(s) to finish and reap job finish info
*
* SYNOPSIS
* int japi_wait(const char *job_id, dstring *waited_job, int *stat,
* signed long timeout, drmaa_attr_values_t **rusage, dstring *diag)
*
* FUNCTION
* This routine waits for a job with job_id to fail or finish execution. Passing a special string
* DRMAA_JOB_IDS_SESSION_ANY instead job_id waits for any job. If such a job was
* successfully waited its job_id is returned as a second parameter. This routine is
* modeled on wait3 POSIX routine. To prevent
* blocking indefinitely in this call the caller could use timeout specifying
* after how many seconds to time out in this call.
* If the call exits before timeout the job has been waited on
* successfully or there was an interrupt.
* If the invocation exits on timeout, the return code is DRMAA_ERRNO_EXIT_TIMEOUT.
* The caller should check system time before and after this call
* in order to check how much time has passed.
* The routine reaps jobs on a successful call, so any subsequent calls
* to japi_wait() should fail returning an error DRMAA_ERRNO_INVALID_JOB meaning
* that the job has been already reaped. This error is the same as if the job was
* unknown. Failing due to an elapsed timeout has an effect that it is possible to
* issue japi_wait() multiple times for the same job_id.
* This method requires the event client to have been started, either by
* passing enable_wait as true to japi_init() or by calling
* japi_enable_job_wait().
*
* INPUTS
* const char *job_id - job id string representation of job to wait for
* or DRMAA_JOB_IDS_SESSION_ANY to wait for any job
* signed long timeout - timeout in seconds or
* DRMAA_TIMEOUT_WAIT_FOREVER for infinite waiting
* DRMAA_TIMEOUT_NO_WAIT for immediate returning
* dstring *waited_job - returns job id string presentation of waited job
* int *wait_status - returns job finish information about exit status/
* signal/whatever
* int event_mask - Indicates what events to listen for. Can be:
* JAPI_JOB_START
* JAPI_JOB_FINISH
* or a combination by oring them together.
* int *event - returns the actual event that occurred. When
* the event_mask includes JAPI_JOB_START, this
* parameter must be checked to be sure that
* a JAPI_JOB_START event was received. It is
* possible, such as in the case of a rejected
* immediate job, that japi_wait() will return
* DRMAA_ERRNO_SUCCESS for a JAPI_JOB_FINISH
* event even though the event_mask was set to
* JAPI_JOB_START.
* drmaa_attr_values_t **rusage - returns resource usage information about job run
* when waiting for JAPI_JOB_FINISH.
* dstring *diag - diagnosis information in case japi_wait() fails
*
* RESULT
* DRMAA_ERRNO_SUCCESS
* Job finished.
*
* DRMAA_ERRNO_EXIT_TIMEOUT
* No job end within specified time.
*
* DRMAA_ERRNO_INVALID_JOB
* The job id specified was invalid or DRMAA_JOB_IDS_SESSION_ANY has been specified
* and all jobs of this session have already finished.
*
* DRMAA_ERRNO_NO_ACTIVE_SESSION
* No active session.
*
* DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE
* DRMAA_ERRNO_AUTH_FAILURE
* DRMAA_ERRNO_NO_RUSAGE
*
* MUTEXES
* japi_session_mutex -> japi_threads_in_session_mutex
* Master_japi_job_list_mutex -> japi_ec_state_mutex
*
* NOTES
* MT-NOTE: japi_wait() is MT safe
* Would be good to also return information about job failures in
* JJAT_failed_text.
* Would be good to enhance japi_wait() in a way allowing not only to
* wait for job finish events but also other events that have an meaning
* for the end user, e.g. job scheduled, job started, job rescheduled.
*******************************************************************************/
int japi_wait(const char *job_id, dstring *waited_job, int *stat,
signed long timeout, int event_mask, int *event,
drmaa_attr_values_t **rusage, dstring *diag)
{
u_long32 jobid = 0;
u_long32 taskid = 0;
int wait4any = 0;
bool is_array_task = false;
int drmaa_errno, wait_result;
bool waited_is_task_array = false;
u_long32 waited_jobid = 0, waited_taskid = 0;
bool got_usage_info = false;
bool evc_killed = false;
DENTER(TOP_LAYER, "japi_wait");
if (timeout < DRMAA_TIMEOUT_WAIT_FOREVER) {
sge_dstring_sprintf (diag, "%s", MSG_JAPI_NEGATIVE_TIMEOUT);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
JAPI_LOCK_EC_STATE();
if (japi_ec_state != JAPI_EC_UP) {
JAPI_UNLOCK_EC_STATE();
JAPI_UNLOCK_SESSION();
sge_dstring_copy_string(diag, MSG_JAPI_NO_EVENT_CLIENT);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
JAPI_UNLOCK_EC_STATE();
/* ensure job list still is consistent when we wait jobs later on */
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_init_mt() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
/* check wait conditions */
if (!strcmp(job_id, DRMAA_JOB_IDS_SESSION_ANY)) {
wait4any = 1;
}
else {
wait4any = 0;
if ((drmaa_errno = japi_parse_jobid(job_id, &jobid, &taskid, &is_array_task, diag))
!= DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
DRETURN(drmaa_errno);
}
}
{
struct timespec ts;
lList *rusagep = NULL;
if (timeout != DRMAA_TIMEOUT_WAIT_FOREVER) {
sge_relative_timespec(timeout, &ts);
}
JAPI_LOCK_JOB_LIST();
while ((wait_result = japi_wait_retry(Master_japi_job_list, wait4any, jobid,
taskid, is_array_task, event_mask, &waited_jobid,
&waited_taskid, &waited_is_task_array,
stat, event, &rusagep)) == JAPI_WAIT_UNFINISHED) {
lListElem *aep = NULL;
/* has japi_exit() been called meanwhile ? */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
JAPI_UNLOCK_JOB_LIST();
japi_dec_threads(SGE_FUNC);
japi_standard_error(DRMAA_ERRNO_EXIT_TIMEOUT, diag);
DRETURN(DRMAA_ERRNO_EXIT_TIMEOUT); /* could also return something else here */
}
JAPI_UNLOCK_SESSION();
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
aep = lFirst(japi_ec_alp_struct.japi_ec_alp);
/* return error context from event client thread if there is such */
if (aep != NULL) {
sge_dstring_clear(diag);
answer_to_dstring(aep, diag);
evc_killed = true;
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
break;
}
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
if (timeout != DRMAA_TIMEOUT_WAIT_FOREVER) {
if (pthread_cond_timedwait(&Master_japi_job_list_finished_cv,
&Master_japi_job_list_mutex, &ts)==ETIMEDOUT) {
DPRINTF(("got a timeout while waiting for job(s) to finish\n"));
wait_result = JAPI_WAIT_TIMEOUT;
break;
}
} else {
pthread_cond_wait(&Master_japi_job_list_finished_cv, &Master_japi_job_list_mutex);
}
} /* while */
JAPI_UNLOCK_JOB_LIST();
/* Build a drmaa_attr_values_t from the rusage list */
if ((event_mask & JAPI_JOB_FINISH) && (rusage != NULL)) {
lList *slp = NULL;
lListElem *uep = NULL;
lListElem *sep = NULL;
char buffer[256];
if (rusagep != NULL) {
slp = lCreateList ("Usage List", ST_Type);
got_usage_info = true;
*rusage = japi_allocate_string_vector (JAPI_ITERATOR_STRINGS);
for_each (uep, rusagep) {
sep = lCreateElem (ST_Type);
lAppendElem (slp, sep);
/* fixme: worry about locale */
snprintf (buffer, sizeof(buffer), "%s=%.4f",
lGetString (uep, UA_name), lGetDouble (uep, UA_value));
lSetString (sep, ST_name, buffer);
}
(*rusage)->iterator_type = JAPI_ITERATOR_STRINGS;
(*rusage)->it.si.strings = slp;
(*rusage)->it.si.next_pos = lFirst (slp);
}
}
japi_dec_threads(SGE_FUNC);
lFreeList(&rusagep);
}
if (wait_result == JAPI_WAIT_INVALID) {
japi_standard_error(DRMAA_ERRNO_INVALID_JOB, diag);
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
if (wait_result == JAPI_WAIT_TIMEOUT) {
japi_standard_error(DRMAA_ERRNO_EXIT_TIMEOUT, diag);
DRETURN(DRMAA_ERRNO_EXIT_TIMEOUT);
}
/* copy jobid of finished job into buffer provided by caller */
if (wait_result==JAPI_WAIT_FINISHED && waited_job) {
if (waited_is_task_array) {
sge_dstring_sprintf(waited_job, sge_u32"."sge_u32, waited_jobid,
waited_taskid);
} else {
sge_dstring_sprintf(waited_job, sge_u32, waited_jobid);
}
}
if (wait_result != JAPI_WAIT_FINISHED) {
if (evc_killed) {
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
japi_standard_error(DRMAA_ERRNO_INVALID_JOB, diag);
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
if ((event_mask & JAPI_JOB_FINISH) && (rusage != NULL) && !got_usage_info) {
japi_standard_error (DRMAA_ERRNO_NO_RUSAGE, diag);
DRETURN(DRMAA_ERRNO_NO_RUSAGE);
}
else {
DRETURN(DRMAA_ERRNO_SUCCESS);
}
}
/****** JAPI/japi_wait_retry() *************************************************
* NAME
* japi_wait_retry() -- seek for job_id in JJ_finished_jobs of all jobs
*
* SYNOPSIS
* static int japi_wait_retry(lList *japi_job_list, int wait4any, int jobid,
* int taskid, bool is_array_task, u_long32 *wjobidp, u_long32 *wtaskidp,
* bool *wis_task_arrayp, int *wait_status)
*
* FUNCTION
* Search the passed japi_job_list for finished jobs matching the wait4any/
* jobid/taskid condition.
*
* INPUTS
* lList *japi_job_list - The JJ_Type japi joblist that is searched.
* int wait4any - 0 any finished job/task is fine
* u_long32 jobid - specifies which job is searched
* u_long32 taskid - specifies which task is searched
* int event_mask - the events to wait for
* u_long32 *wjobidp - destination for jobid of waited job
* u_long32 *wtaskidp - destination for taskid of waited job
* u_long32 *wis_task_arrayp - destination for taskid of waited job
* int *wait_status - destination for status that is finally returned
* by japi_wait()
* int *wevent - destination for actual event received
* lList **rusagep - destination for rusage info of waited job
*
* RESULT
* static int - JAPI_WAIT_ALLFINISHED = there is nothing more to wait for
* JAPI_WAIT_UNFINISHED = no job/task finished, but there are still unfinished tasks
* JAPI_WAIT_FINISHED = got a finished task
*
* NOTES
* MT-NOTE: japi_wait_retry() is MT safe
*******************************************************************************/
static int japi_wait_retry(lList *japi_job_list, int wait4any, u_long32 jobid,
u_long32 taskid, bool is_array_task, int event_mask,
u_long32 *wjobidp, u_long32 *wtaskidp,
bool *wis_task_arrayp, int *wait_status, int *wevent,
lList **rusagep)
{
lListElem *job = NULL;
lListElem *task = NULL;
int actual_event = 0;
int return_value = JAPI_WAIT_UNFINISHED;
DENTER(TOP_LAYER, "japi_wait_retry");
/* seek for job_id in JJ_finished_jobs of all jobs */
if (event_mask & JAPI_JOB_FINISH) {
if (wait4any) {
int not_yet_reaped = 0;
for_each (job, japi_job_list) {
task = lFirst(lGetList(job, JJ_finished_tasks));
if (task != NULL) {
break;
}
/* This comes after the break because if we have a non-NULL task,
* we don't bother looking at not_yet_reaped. */
if (lGetList(job, JJ_not_yet_finished_ids) != NULL) {
not_yet_reaped = 1;
}
}
if ((task == NULL) || (job == NULL)) {
if (not_yet_reaped) {
return_value = JAPI_WAIT_UNFINISHED;
} else {
return_value = JAPI_WAIT_ALLFINISHED;
}
}
else {
return_value = JAPI_WAIT_FINISHED;
}
} /* if wait4any */
else {
job = lGetElemUlong(japi_job_list, JJ_jobid, jobid);
if (job == NULL) {
return_value = JAPI_WAIT_ALLFINISHED;
}
else {
/* for non-array jobs no task id may have been specified */
if (!JOB_TYPE_IS_ARRAY(lGetUlong(job, JJ_type)) && taskid != 1) {
return_value = JAPI_WAIT_INVALID;
}
else {
task = lGetSubUlong(job, JJAT_task_id, taskid, JJ_finished_tasks);
if (!task) {
if (range_list_is_id_within(lGetList(job, JJ_not_yet_finished_ids), taskid)) {
return_value = JAPI_WAIT_UNFINISHED;
} else {
return_value = JAPI_WAIT_ALLFINISHED;
}
}
else {
return_value = JAPI_WAIT_FINISHED;
}
}
}
}
}
if (return_value != JAPI_WAIT_UNFINISHED) {
*wevent = JAPI_JOB_FINISH;
actual_event = JAPI_JOB_FINISH;
}
else if (event_mask & JAPI_JOB_START) {
if (wait4any) {
bool still_running = false;
bool failed = false;
for_each (job, japi_job_list) {
/* If there's a task in the started list, that counts. */
if (lFirst (lGetList (job, JJ_started_task_ids)) != NULL) {
break;
}
/* A task in the finished list when the started list is empty counts
* as a failure. */
else if (lFirst (lGetList (job, JJ_finished_tasks)) != NULL) {
failed = true;
break;
}
/* A task in the not yet finished list means we wait. */
if (lGetList(job, JJ_not_yet_finished_ids) != NULL) {
still_running = true;
}
}
if (failed) {
return_value = JAPI_WAIT_FINISHED;
*wevent = JAPI_JOB_FINISH;
actual_event = JAPI_JOB_START;
}
else if ((job == NULL) && still_running) {
return_value = JAPI_WAIT_UNFINISHED;
}
else if (job == NULL) {
return_value = JAPI_WAIT_ALLFINISHED;
*wevent = JAPI_JOB_START;
actual_event = JAPI_JOB_START;
}
else {
return_value = JAPI_WAIT_FINISHED;
*wevent = JAPI_JOB_START;
actual_event = JAPI_JOB_START;
}
}
else {
job = lGetElemUlong(japi_job_list, JJ_jobid, jobid);
if (!job) {
return_value = JAPI_WAIT_ALLFINISHED;
*wevent = JAPI_JOB_START;
actual_event = JAPI_JOB_START;
}
else {
/* for non-array jobs no task id may have been specified */
if (!JOB_TYPE_IS_ARRAY(lGetUlong(job, JJ_type)) && taskid != 1) {
return_value = JAPI_WAIT_INVALID;
}
else {
if (range_list_is_id_within(lGetList(job, JJ_started_task_ids), taskid)) {
return_value = JAPI_WAIT_FINISHED;
*wevent = JAPI_JOB_START;
actual_event = JAPI_JOB_START;
}
else if (!range_list_is_id_within (lGetList (job, JJ_not_yet_finished_ids), taskid)) {
task = lGetSubUlong(job, JJAT_task_id, taskid, JJ_finished_tasks);
if (task == NULL) {
return_value = JAPI_WAIT_ALLFINISHED;
*wevent = JAPI_JOB_START;
actual_event = JAPI_JOB_START;
}
else {
/* This is a special case. If the task makes it into the
* finished list without making it into the started list,
* the job was rejected before being started. In this case
* there's no need to wait any longer, so we return
* JAPI_WAIT_FINISHED, but we set the wevent to
* JAPI_JOB_FINISH to show that it wasn't the job start
* event that caused the wait to end. */
return_value = JAPI_WAIT_FINISHED;
*wevent = JAPI_JOB_FINISH;
actual_event = JAPI_JOB_START;
}
}
else {
return_value = JAPI_WAIT_UNFINISHED;
}
}
}
}
}
if (return_value != JAPI_WAIT_FINISHED) {
DRETURN(return_value);
}
/* return all kinds of job finish information */
*wjobidp = lGetUlong(job, JJ_jobid);
if (JOB_TYPE_IS_ARRAY(lGetUlong(job, JJ_type))) {
*wis_task_arrayp = true;
/* For the job start event, the task is NULL at this point */
if (actual_event == JAPI_JOB_START) {
*wtaskidp = 1;
}
else {
*wtaskidp = lGetUlong(task, JJAT_task_id);
}
} else {
*wis_task_arrayp = false;
}
if (actual_event == JAPI_JOB_FINISH) {
if (wait_status) {
*wait_status = lGetUlong(task, JJAT_stat);
}
if (rusagep != NULL) {
lList *usage = lGetList (task, JJAT_rusage);
if (usage != NULL) {
lList *usage_copy = lCopyList ("Usage List", usage);
if (*rusagep == NULL) {
*rusagep = usage_copy;
}
else {
lAddList(*rusagep, &usage_copy);
}
}
}
}
if (*wevent == JAPI_JOB_FINISH) {
/* remove reaped jobs from library session data */
lRemoveElem(lGetList(job, JJ_finished_tasks), &task);
if (range_list_is_empty(lGetList(job, JJ_not_yet_finished_ids))
&& lGetNumberOfElem(lGetList(job, JJ_finished_tasks))==0) {
lRemoveElem(Master_japi_job_list, &job);
}
}
DRETURN(JAPI_WAIT_FINISHED);
}
/* These bit masks below are used to assemble combined DRMAA state
* masks
*
* DRMAA_PS_QUEUED_ACTIVE DRMAA_PS_SUBSTATE_PENDING
*
* DRMAA_PS_SYSTEM_ON_HOLD DRMAA_PS_SUBSTATE_PENDING |
* DRMAA_PS_SUBSTATE_SYSTEM_SUSP
*
* DRMAA_PS_USER_ON_HOLD DRMAA_PS_SUBSTATE_PENDING |
* DRMAA_PS_SUBSTATE_USER_SUSP
*
* DRMAA_PS_USER_SYSTEM_ON_HOLD DRMAA_PS_SUBSTATE_PENDING |
* DRMAA_PS_SUBSTATE_SYSTEM_SUSP |
* DRMAA_PS_SUBSTATE_USER_SUSP
*
* DRMAA_PS_RUNNING DRMAA_PS_SUBSTATE_RUNNING
*
* DRMAA_PS_SYSTEM_SUSPENDED DRMAA_PS_SUBSTATE_RUNNING |
* DRMAA_PS_SUBSTATE_SYSTEM_SUSP
*
* DRMAA_PS_USER_SUSPENDED DRMAA_PS_SUBSTATE_RUNNING |
* DRMAA_PS_SUBSTATE_USER_SUSP
*
* DRMAA_PS_USER_SYSTEM_SUSPENDED DRMAA_PS_SUBSTATE_RUNNING |
* DRMAA_PS_SUBSTATE_SYSTEM_SUSP |
* DRMAA_PS_SUBSTATE_USER_SUSP
*/
enum {
DRMAA_PS_SUBSTATE_PENDING = 0x10,
DRMAA_PS_SUBSTATE_RUNNING = 0x20,
DRMAA_PS_SUBSTATE_SYSTEM_SUSP = 0x01,
DRMAA_PS_SUBSTATE_USER_SUSP = 0x02
};
/****** JAPI/japi_sge_state_to_drmaa_state() ****************************************
* NAME
* japi_sge_state_to_drmaa_state() -- Map Grid Engine state into DRMAA state
*
* SYNOPSIS
* static int japi_sge_state_to_drmaa_state(lListElem *job,
* bool is_array_task, u_long32 jobid, u_long32 taskid, int *remote_ps,
* dstring *diag)
*
* FUNCTION
* All Grid Engine state information is used and combined into a DRMAA
* job state.
*
* INPUTS
* lListElem *job - the job (JB_Type)
* bool is_array_task - if false jobid is considered the job id of a
* seq. job, if true jobid and taskid must fit
* to an existing array task.
* u_long32 jobid - the jobid of a seq. job or an array job
* u_long32 taskid - the array task id in case of array jobs, 1 otherwise
* int *remote_ps - destination of DRMAA job state
* dstring *diag - diagnosis information
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_sge_state_to_drmaa_state() is MT safe
*******************************************************************************/
static int
japi_sge_state_to_drmaa_state(lListElem *job, bool is_array_task, u_long32 jobid,
u_long32 taskid, int *remote_ps, dstring *diag)
{
bool task_finished = false;
lListElem *ja_task = NULL;
DENTER(TOP_LAYER, "japi_sge_state_to_drmaa_state");
if (job == NULL) {
task_finished = true;
}
else {
ja_task = job_search_task(job, NULL, taskid);
if ((ja_task != NULL) && (lGetUlong(ja_task, JAT_status) == JFINISHED)) {
task_finished = true;
} else {
if (ja_task == NULL) {
if (!range_list_is_id_within(lGetList(job, JB_ja_n_h_ids), taskid) &&
!range_list_is_id_within(lGetList(job, JB_ja_u_h_ids), taskid) &&
!range_list_is_id_within(lGetList(job, JB_ja_s_h_ids), taskid) &&
!range_list_is_id_within(lGetList(job, JB_ja_o_h_ids), taskid) &&
!range_list_is_id_within(lGetList(job, JB_ja_a_h_ids), taskid))
task_finished = true;
}
}
}
/*
* The reason for this job no longer being available at qmaster might
* be it is done or failed. The JAPI job list contains such information
* if the job was not yet waited. For a job that is not found there either
* we return DRMAA_ERRNO_INVALID_JOB.
*/
if (task_finished) {
lListElem *japi_job = NULL;
lListElem *japi_task = NULL;
DPRINTF (("Job " sge_u32 "." sge_u32 " is finished.\n", jobid, taskid));
JAPI_LOCK_JOB_LIST();
japi_job = lGetElemUlong(Master_japi_job_list, JJ_jobid, jobid);
if (japi_job != NULL) {
u_long32 wait_status;
/*
* When the job/task has already been deleted at qmaster side but
* the event reporting this is not yet arrived at JAPI library
* the task is still contained in the not_yet_finished list.
*
* We can assume that the job will be finished or failed, but
* we can't know which one. Or we could presume the job was running,
* but what if it was pending and then deleted using qdel?
*/
if (range_list_is_id_within(lGetList(japi_job, JJ_not_yet_finished_ids), taskid)) {
JAPI_UNLOCK_JOB_LIST();
DPRINTF (("Job " sge_u32 "." sge_u32 " is actually in unknown state.\n", jobid, taskid));
*remote_ps = DRMAA_PS_UNDETERMINED;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
japi_task = lGetSubUlong(japi_job, JJAT_task_id, taskid, JJ_finished_tasks);
if (japi_task != NULL) {
wait_status = lGetUlong(japi_task, JJAT_stat);
DPRINTF(("wait_status("sge_u32"/"sge_u32") = "sge_u32"\n", jobid, taskid, wait_status));
if (SGE_GET_NEVERRAN(wait_status)) {
*remote_ps = DRMAA_PS_FAILED;
} else {
*remote_ps = DRMAA_PS_DONE;
}
JAPI_UNLOCK_JOB_LIST();
DRETURN(DRMAA_ERRNO_SUCCESS);
}
}
if ((japi_job == NULL) || (japi_task == NULL)) {
JAPI_UNLOCK_JOB_LIST();
japi_standard_error(DRMAA_ERRNO_INVALID_JOB, diag);
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
/*
* JJAT_stat must indicate whether the job finished or failed
* at this point we simply assume it finished successfully
* when it is found in the finished tasks list
*/
JAPI_UNLOCK_JOB_LIST();
*remote_ps = DRMAA_PS_DONE;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
if (!is_array_task) {
/* reject "jobid" without taskid for array jobs */
if (JOB_TYPE_IS_ARRAY(lGetUlong(job, JB_type))) {
japi_standard_error(DRMAA_ERRNO_INVALID_JOB, diag);
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
} else {
/* reject "jobid.taskid" for non-array jobs and ensure taskid exists in job array */
if (!JOB_TYPE_IS_ARRAY(lGetUlong(job, JB_type)) || !job_is_ja_task_defined(job, taskid)) {
japi_standard_error(DRMAA_ERRNO_INVALID_JOB, diag);
DRETURN(DRMAA_ERRNO_INVALID_JOB);
}
}
if (ja_task != NULL) {
/* the state of enrolled tasks can directly be determined */
u_long32 ja_task_status = lGetUlong(ja_task, JAT_status);
u_long32 ja_task_state = lGetUlong(ja_task, JAT_state);
u_long32 ja_task_hold = lGetUlong(ja_task, JAT_hold);
DPRINTF (("Job " sge_u32 "." sge_u32 " status=%x state=%x hold=%x\n", jobid,
taskid, (unsigned int) ja_task_status,
(unsigned int) ja_task_state, (unsigned int) ja_task_hold));
/* ERROR */
if (ja_task_state & JERROR) {
*remote_ps = DRMAA_PS_FAILED;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/* PENDING & HOLD */
if ((ja_task_status == JIDLE) || ((ja_task_state & JHELD) != 0)) {
*remote_ps = DRMAA_PS_SUBSTATE_PENDING;
/*
* Only one hold state (-h u) is considered USER HOLD.
* Others are also user's hold but only this hold state
* can be released using japi_control().
*/
if ((ja_task_hold & MINUS_H_TGT_USER))
*remote_ps |= DRMAA_PS_SUBSTATE_USER_SUSP;
/*
* These hold states are considered SYSTEM HOLD. Some of
* them (WAITING_DUE_TO_TIME, WAITING_DUE_TO_PREDECESSOR )
* actually are the user's hold but DRMAA user interface does
* not know these hold * conditions.
*/
if ((ja_task_hold & (MINUS_H_TGT_OPERATOR|MINUS_H_TGT_SYSTEM|MINUS_H_TGT_JA_AD)) ||
(lGetUlong(job, JB_execution_time) > sge_get_gmt()) ||
lGetList(job, JB_jid_predecessor_list))
*remote_ps |= DRMAA_PS_SUBSTATE_SYSTEM_SUSP;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/* RUNNING */
*remote_ps = DRMAA_PS_SUBSTATE_RUNNING;
/*
* Only the qmod -s <jobid> suspension is a USER SUSPEND
* other suspension can be controlled only by the admins.
*/
if ((ja_task_state & JSUSPENDED)) {
*remote_ps |= DRMAA_PS_SUBSTATE_USER_SUSP;
}
/*
* A SYSTEM SUSPEND can be
* - suspended due to suspend threshold
* - suspended because queue is qmod -s <queue> suspended
* - suspended because queue is suspended on subordinate
* - suspended because queue is suspended by calendar
*/
if ((ja_task_state & JSUSPENDED_ON_THRESHOLD) ||
(ja_task_state & JSUSPENDED_ON_SUBORDINATE) ||
(ja_task_state & JSUSPENDED_ON_SLOTWISE_SUBORDINATE)) {
*remote_ps |= DRMAA_PS_SUBSTATE_SYSTEM_SUSP;
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/* not yet enrolled tasks are always PENDING */
*remote_ps = DRMAA_PS_SUBSTATE_PENDING;
if (range_list_is_id_within(lGetList(job, JB_ja_u_h_ids), taskid)) {
*remote_ps |= DRMAA_PS_SUBSTATE_USER_SUSP;
}
if (range_list_is_id_within(lGetList(job, JB_ja_s_h_ids), taskid) ||
range_list_is_id_within(lGetList(job, JB_ja_o_h_ids), taskid) ||
range_list_is_id_within(lGetList(job, JB_ja_a_h_ids), taskid) ||
(lGetUlong(job, JB_execution_time) > sge_get_gmt()) ||
lGetList(job, JB_jid_predecessor_list)) {
*remote_ps |= DRMAA_PS_SUBSTATE_SYSTEM_SUSP;
}
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_get_job() *****************************************
* NAME
* japi_get_job() -- get job and the queue via GDI for job status
*
* SYNOPSIS
* static int japi_get_job(u_long32 jobid,
* lList **retrieved_job_list, dstring *diag)
*
* FUNCTION
* We use GDI GET to get jobs status. Additionally also the queue list
* must be retrieved because the (queue) system suspend state is kept in
* the queue where the job runs.
*
* INPUTS
* u_long32 jobid - the jobs id
* lList **retrieved_job_list - resulting job list
* dstring *diag - diagnosis info
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTES: japi_get_job() is MT safe
*******************************************************************************/
static int japi_get_job(u_long32 jobid, lList **retrieved_job_list, dstring *diag)
{
lList *mal = NULL;
lList *alp = NULL;
lListElem *aep = NULL;
int jb_id = 0;
state_gdi_multi state = STATE_GDI_MULTI_INIT;
lCondition *job_selection = NULL;
lEnumeration *job_fields = NULL;
u_long32 quality = 0;
DENTER(TOP_LAYER, "japi_get_job");
/* prepare GDI GET JOB selection */
job_selection = lWhere("%T(%I==%u)", JB_Type, JB_job_number, jobid);
job_fields = lWhat("%T(%I%I%I%I%I%I%I%I%I%I%I)", JB_Type,
JB_job_number,
JB_type,
JB_ja_structure,
JB_ja_n_h_ids,
JB_ja_u_h_ids,
JB_ja_s_h_ids,
JB_ja_o_h_ids,
JB_ja_a_h_ids,
JB_ja_tasks,
JB_jid_predecessor_list,
JB_execution_time);
if (!job_selection || !job_fields) {
japi_standard_error(DRMAA_ERRNO_NO_MEMORY, diag);
DRETURN(DRMAA_ERRNO_NO_MEMORY);
}
jb_id = ctx->gdi_multi(ctx, &alp, SGE_GDI_SEND, SGE_JB_LIST, SGE_GDI_GET, NULL,
job_selection, job_fields, false, &state, true);
ctx->gdi_wait(ctx, &alp, &mal, &state);
lFreeWhere(&job_selection);
lFreeWhat(&job_fields);
sge_gdi_extract_answer(&alp, SGE_GDI_GET, SGE_JB_LIST, jb_id, mal, retrieved_job_list);
lFreeList(&mal);
aep = lFirst(alp);
if (aep == NULL) {
sge_dstring_copy_string(diag, MSG_JAPI_BAD_GDI_ANSWER_LIST);
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
quality = lGetUlong(aep, AN_quality);
if (quality == ANSWER_QUALITY_ERROR) {
answer_to_dstring(aep, diag);
lFreeList(&alp);
DRETURN(DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE);
}
lFreeList(&alp);
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_parse_jobid() ************************************************
* NAME
* japi_parse_jobid() -- Parse jobid string
*
* SYNOPSIS
* static int japi_parse_jobid(const char *job_id_str, u_long32 *jp,
* u_long32 *tp, bool *ap, dstring *diag)
*
* FUNCTION
* The string is parsed. Jobid and task id are returned, also
* it is returned whether the id appears to be an array taskid.
*
* INPUTS
* const char *job_id_str - the jobid string
* u_long32 *jp - destination for jobid
* u_long32 *tp - destination for taskid
* bool *ap - was it an array task
* dstring *diag - diagnosis
*
* RESULT
* static int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_parse_jobid() is MT safe
*******************************************************************************/
static int japi_parse_jobid(const char *job_id_str, u_long32 *jp, u_long32 *tp,
bool *ap, dstring *diag)
{
u_long32 jobid, taskid;
bool is_array_task;
DENTER(TOP_LAYER, "japi_parse_jobid");
/* parse jobid/taskid */
if (strchr(job_id_str, '.')) {
if (sscanf(job_id_str, sge_u32"."sge_u32, &jobid, &taskid) != 2) {
sge_dstring_sprintf(diag, MSG_JAPI_BAD_BULK_JOB_ID_S, job_id_str);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* DPRINTF(("parsing jobid.taskid: %ld.%ld\n", jobid, taskid)); */
is_array_task = true;
} else {
if (sscanf(job_id_str, sge_u32, &jobid) != 1) {
sge_dstring_sprintf(diag, MSG_JAPI_BAD_JOB_ID_S, job_id_str);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* DPRINTF(("parsing jobid: %ld\n", jobid)); */
taskid = 1;
is_array_task = false;
}
if (jp)
*jp = jobid;
if (tp)
*tp = taskid;
if (ap)
*ap = is_array_task;
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_job_ps() ****************************************************
* NAME
* japi_job_ps() -- Get job status
*
* SYNOPSIS
* int japi_job_ps(const char *job_id_str, int *remote_ps, dstring *diag)
*
* FUNCTION
* Get the program status of the job identified by 'job_id'.
* The possible values returned in 'remote_ps' and their meanings are:
* DRMAA_PS_UNDETERMINED = 00H : process status cannot be determined,
* DRMAA_PS_QUEUED_ACTIVE = 10H : job is queued and active,
* DRMAA_PS_SYSTEM_ON_HOLD = 11H : job is queued and in system hold,
* DRMAA_PS_USER_ON_HOLD = 12H : job is queued and in user hold,
* DRMAA_PS_USER_SYSTEM_ON_HOLD = 13H : job is queued and in user and system hold,
* DRMAA_PS_RUNNING = 20H : job is running,
* DRMAA_PS_SYSTEM_SUSPENDED = 21H : job is system suspended,
* DRMAA_PS_USER_SUSPENDED = 22H : job is user suspended,
* DRMAA_PS_USER_SYSTEM_SUSPENDED = 23H : job is user and system suspended,
* DRMAA_PS_DONE = 30H : job finished normally, and
* DRMAA_PS_FAILED = 40H : job finished, but failed.
*
* INPUTS
* const char *job_id_str - A job id
*
* OUTPUTS
* int *remote_ps - Returns the job state - on success
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_job_ps() is MT safe
* Would be good to enhance drmaa_job_ps() to operate on an array of
* jobids.
* Would be good to have DRMAA_JOB_IDS_SESSION_ALL supported with
* drama_job_ps().
*
* This function should be changed in a way that local JAPI-internal
* information is evaluated at first and no GDI request is done if
* this isn't necessary:
*
* (1) A GDI request isn't actually required for argument checking
* to prevent "jobid" being passed for array jobs or "jobid.taskid"
* be passed for non-array jobs. This is true at least for jobs
* that were submitted during the session which can be assumed the
* majority. Argument checking can be done based on JJ_type.
*
* (2) A GDI request isn't actually required if job finish event
* already arrived at JAPI.
*
* in these cases GDI request could be saved. This would help
* improving qmaster availability.
*******************************************************************************/
int japi_job_ps(const char *job_id_str, int *remote_ps, dstring *diag)
{
u_long32 jobid, taskid;
lList *retrieved_job_list = NULL;
lList *retrieved_cqueue_list = NULL;
int drmaa_errno;
bool is_array_task;
DENTER(TOP_LAYER, "japi_job_ps");
/* check arguments */
if (!job_id_str || !remote_ps) {
japi_standard_error(DRMAA_ERRNO_INVALID_ARGUMENT, diag);
DRETURN(DRMAA_ERRNO_INVALID_ARGUMENT);
}
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
JAPI_UNLOCK_SESSION();
japi_standard_error(DRMAA_ERRNO_NO_ACTIVE_SESSION, diag);
DRETURN(DRMAA_ERRNO_NO_ACTIVE_SESSION);
}
/* ensure job list still is consistent when we must access it later on
to retrieve state information */
japi_inc_threads(SGE_FUNC);
JAPI_UNLOCK_SESSION();
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_drmaa_job2sge_job() */
DRETURN(DRMAA_ERRNO_INTERNAL_ERROR);
}
DPRINTF(("japi_job_ps1("SFQ")\n", job_id_str));
if ((drmaa_errno=japi_parse_jobid(job_id_str, &jobid, &taskid,
&is_array_task, diag)) !=DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_parse_jobid() */
DRETURN(drmaa_errno);
}
DPRINTF(("japi_job_ps2("SFQ")\n", job_id_str));
drmaa_errno = japi_get_job(jobid, &retrieved_job_list, diag);
if (drmaa_errno != DRMAA_ERRNO_SUCCESS) {
japi_dec_threads(SGE_FUNC);
/* diag written by japi_get_job() */
DRETURN(drmaa_errno);
}
DPRINTF(("japi_job_ps3("SFQ")\n", job_id_str));
drmaa_errno = japi_sge_state_to_drmaa_state(lFirst(retrieved_job_list),
is_array_task, jobid, taskid,
remote_ps, diag);
/* inactive code sample for retrieving master node information of a running job */
#if 0
if (node) {
const lListElem *ja_task, *master_node;
switch (*remote_ps) {
case DRMAA_PS_RUNNING:
case DRMAA_PS_SYSTEM_SUSPENDED:
case DRMAA_PS_USER_SUSPENDED:
case DRMAA_PS_USER_SYSTEM_SUSPENDED:
if ((ja_task = job_search_task(lFirst(retrieved_job_list), NULL, taskid)) &&
(master_node = lFirst(lGetList(ja_task, JAT_granted_destin_identifier_list))))
sge_dstring_copy_string(node, lGetHost(master_node, JG_qhostname));
else
sge_dstring_copy_string(node, "<unknown>");
break;
default:
break;
}
}
#endif
japi_dec_threads(SGE_FUNC);
lFreeList(&retrieved_job_list);
lFreeList(&retrieved_cqueue_list);
DRETURN(drmaa_errno);
}
/****** JAPI/japi_wifaborted() *************************************************
* NAME
* japi_wifaborted() -- Did the job ever run?
*
* SYNOPSIS
* int japi_wifaborted(int *aborted, int stat, dstring *diag)
*
* FUNCTION
* Evaluates into 'aborted' a non-zero value if 'stat' was returned for
* a JAPI job that ended before entering the running state.
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* int *aborted - Returns 1 if the job was aborted, 0 otherwise - on success.
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wifaborted() is MT safe
*
* SEE ALSO
* JAPI/japi_wait()
*******************************************************************************/
int japi_wifaborted(int *aborted, int stat, dstring *diag _UNUSED)
{
*aborted = SGE_GET_NEVERRAN(stat)?1:0;
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_wifexited() **************************************************
* NAME
* japi_wifexited() -- Has job exited?
*
* SYNOPSIS
* int japi_wifexited(int *exited, int stat, dstring *diag)
*
* FUNCTION
* Allows to investigate whether a job has exited regularly.
* If 'exited' returns 1 the exit status can be retrieved using
* japi_wexitstatus().
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* int *exited - Returns 1 if the job exited, 0 otherwise - on success.
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wifexited() is MT safe
*
* SEE ALSO
* JAPI/japi_wexitstatus()
*******************************************************************************/
int japi_wifexited(int *exited, int stat, dstring *diag _UNUSED)
{
*exited = SGE_GET_WEXITED(stat)?1:0;
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_wexitstatus() ************************************************
* NAME
* japi_wexitstatus() -- Get jobs exit status.
*
* SYNOPSIS
* int japi_wexitstatus(int *exit_status, int stat, dstring *diag)
*
* FUNCTION
* Retrieves the exit status of a job assumed it exited regularly
* according japi_wifexited().
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* int *exit_status - Returns the jobs exit status - on success.
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wexitstatus() is MT safe
*
* SEE ALSO
* JAPI/japi_wifexited()
*******************************************************************************/
int japi_wexitstatus(int *exit_status, int stat, dstring *diag _UNUSED)
{
*exit_status = SGE_GET_WEXITSTATUS(stat);
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_wifsignaled() **************************************************
* NAME
* japi_wifsignaled() -- Did the job die through a signal.
*
* SYNOPSIS
* int japi_wifsignaled(int *signaled, int stat, dstring *diag)
*
* FUNCTION
* Allows to investigate whether a job died through a signal.
* If 'signaled' returns 1 the signal can be retrieved using
* japi_wtermsig().
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* int *signaled - Returns 1 if the job died through a signal,
* 0 otherwise - on success.
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wifsignaled() is MT safe
*
* SEE ALSO
* JAPI/japi_wtermsig()
*******************************************************************************/
int japi_wifsignaled(int *signaled, int stat, dstring *diag _UNUSED)
{
*signaled = SGE_GET_WSIGNALED(stat)?1:0;
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_wtermsig() ***************************************************
* NAME
* japi_wtermsig() -- Retrieve the signal a job died through.
*
* SYNOPSIS
* int japi_wtermsig(dstring *sig, int stat, dstring *diag)
*
* FUNCTION
* Retrieves the signal of a job assumed it died through a signal
* according japi_wifsignaled().
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* dstring *sig - Returns signal the job died trough in string form
* (e.g. "SIGKILL")
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wtermsig() is MT safe
* Would be better to directly SGE signal value, instead of a string.
*
* SEE ALSO
* JAPI/japi_wifsignaled()
*******************************************************************************/
int japi_wtermsig(dstring *sig, int stat, dstring *diag _UNUSED)
{
u_long32 sge_sig = SGE_GET_WSIGNAL(stat);
sge_dstring_sprintf(sig, "SIG%s", sge_sig2str(sge_sig));
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_wifcoredump() ************************************************
* NAME
* japi_wifcoredump() -- Did job core dump?
*
* SYNOPSIS
* int japi_wifcoredump(int *core_dumped, int stat, dstring *diag)
*
* FUNCTION
* If drmaa_wifsignaled() indicates a job died through a signal this function
* evaluates into 'core_dumped' a non-zero value if a core image of the terminated
* job was created.
*
* INPUTS
* int stat - 'stat' value returned by japi_wait()
*
* OUTPUTS
* int *core_dumped - Returns 1 if a core image was created, 0 otherwise -
* on success.
* dstring *diag - Returns diagnosis information - on error.
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_wifcoredump() is MT safe
*******************************************************************************/
int japi_wifcoredump(int *core_dumped, int stat, dstring *diag _UNUSED)
{
*core_dumped = SGE_GET_WCOREDUMP(stat)?1:0;
return DRMAA_ERRNO_SUCCESS;
}
/****** JAPI/japi_standard_error() *********************************************
* NAME
* japi_standard_error() -- Provide standard diagnosis message.
*
* SYNOPSIS
* static void japi_standard_error(int drmaa_errno, dstring *diag)
*
* FUNCTION
*
*
* INPUTS
* int drmaa_errno - DRMAA error code
*
* OUTPUT
* dstring *diag - diagnosis message
*
* NOTES
* MT-NOTE: japi_standard_error() is MT safe
*******************************************************************************/
void japi_standard_error(int drmaa_errno, dstring *diag)
{
if (diag != NULL) {
sge_dstring_copy_string(diag, japi_strerror(drmaa_errno));
}
}
/****** JAPI/japi_strerror() ****************************************************
* NAME
* japi_strerror() -- JAPI strerror()
*
* SYNOPSIS
* void japi_strerror(int drmaa_errno, char *error_string, int error_len)
*
* FUNCTION
* Returns readable text version of errno (constant string)
*
* INPUTS
* int drmaa_errno - DRMAA error code
*
* RESULT
* A string describing the DRMAA error case for valid DRMAA error code
* and NULL otherwise.
*
* NOTES
* MT-NOTE: japi_strerror() is MT safe
*******************************************************************************/
const char *japi_strerror(int drmaa_errno)
{
const struct error_text_s {
int drmaa_errno;
char *str;
} error_text[] = {
/* -------------- these are relevant to all sections ---------------- */
{ DRMAA_ERRNO_SUCCESS, "Routine returned normally with success." },
{ DRMAA_ERRNO_INTERNAL_ERROR, "Unexpected or internal DRMAA error like memory allocation, system call failure, etc." },
{ DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE, "Could not contact DRM system" },
{ DRMAA_ERRNO_AUTH_FAILURE, "The specified request is not processed successfully due to authorization failure." },
{ DRMAA_ERRNO_INVALID_ARGUMENT, "The input value for an argument is invalid." },
{ DRMAA_ERRNO_NO_ACTIVE_SESSION, "No active session" },
{ DRMAA_ERRNO_NO_MEMORY, "failed allocating memory" },
/* -------------- init and exit specific --------------- */
{ DRMAA_ERRNO_INVALID_CONTACT_STRING, "Initialization failed due to invalid contact string." },
{ DRMAA_ERRNO_DEFAULT_CONTACT_STRING_ERROR, "DRMAA could not use the default contact string to connect to DRM system." },
{ DRMAA_ERRNO_NO_DEFAULT_CONTACT_STRING_SELECTED, "No default contact string was provided or selected." },
{ DRMAA_ERRNO_DRMS_INIT_FAILED, "Initialization failed due to failure to init DRM system." },
{ DRMAA_ERRNO_ALREADY_ACTIVE_SESSION, "Initialization failed due to existing DRMAA session." },
{ DRMAA_ERRNO_DRMS_EXIT_ERROR, "DRM system disengagement failed." },
/* ---------------- job attributes specific -------------- */
{ DRMAA_ERRNO_INVALID_ATTRIBUTE_FORMAT, "The format for the job attribute value is invalid." },
{ DRMAA_ERRNO_INVALID_ATTRIBUTE_VALUE, "The value for the job attribute is invalid." },
{ DRMAA_ERRNO_CONFLICTING_ATTRIBUTE_VALUES, "The value of this attribute is conflicting with a previously set attributes." },
/* --------------------- job submission specific -------------- */
{ DRMAA_ERRNO_TRY_LATER, "Could not pass job now to DRM system. A retry may succeed however (saturation)." },
{ DRMAA_ERRNO_DENIED_BY_DRM, "The DRM system rejected the job. The job will never be accepted due to DRM configuration or job template settings." },
/* ------------------------------- job control specific ---------------- */
{ DRMAA_ERRNO_INVALID_JOB, "The job specified by the 'jobid' does not exist." },
{ DRMAA_ERRNO_RESUME_INCONSISTENT_STATE, "The job has not been suspended. The RESUME request will not be processed." },
{ DRMAA_ERRNO_SUSPEND_INCONSISTENT_STATE, "The job has not been running, and it cannot be suspended." },
{ DRMAA_ERRNO_HOLD_INCONSISTENT_STATE, "The job cannot be moved to a HOLD state." },
{ DRMAA_ERRNO_RELEASE_INCONSISTENT_STATE, "The job is not in a HOLD state." },
{ DRMAA_ERRNO_EXIT_TIMEOUT, "time-out condition" },
{ DRMAA_ERRNO_NO_RUSAGE, "no usage information was returned for the completed job" },
{ DRMAA_ERRNO_NO_MORE_ELEMENTS, "no more elements are contained in the opaque string vector" },
{ DRMAA_NO_ERRNO, NULL }
};
int i;
for (i=0; error_text[i].drmaa_errno != DRMAA_NO_ERRNO; i++) {
if (drmaa_errno == error_text[i].drmaa_errno) {
return error_text[i].str;
}
}
return NULL;
}
/****** japi/japi_get_contact() ************************************************
* NAME
* japi_get_contact() -- Return current contact information
*
* SYNOPSIS
* void japi_get_contact(dstring *contact)
*
* FUNCTION
* Current contact information for DRM system
*
* INPUTS
* dstring *contact - Returns a string similar to 'contact' of japi_init().
*
* RESULT
* int - DRMAA error code
*
* NOTES
* MT-NOTES: japi_get_contact() is MT safe
*
* SEE ALSO
* JAPI/japi_init()
*******************************************************************************/
int japi_get_contact(dstring *contact, dstring *diag)
{
int japi_errno = DRMAA_ERRNO_SUCCESS;
DENTER(TOP_LAYER, "japi_get_contact");
if ((contact != NULL) && (diag != NULL)) {
JAPI_LOCK_SESSION();
if ((japi_session_key != NULL) &&
(japi_session_key != JAPI_SINGLE_SESSION_KEY)) {
sge_dstring_sprintf(contact, "session=%s", japi_session_key);
}
JAPI_UNLOCK_SESSION();
}
/* This will change the previous behavior for this method, so we have to make it
* specific to the new library version. */
else if (contact == NULL) {
japi_errno = DRMAA_ERRNO_INVALID_ARGUMENT;
japi_standard_error(japi_errno, diag);
}
DRETURN(japi_errno);
}
#if unused
/****** japi/japi_version() ****************************************************
* NAME
* japi_version() -- Return DRMAA version the JAPI library is compliant to.
*
* SYNOPSIS
* void japi_version(unsigned int *major, unsigned int *minor)
*
* FUNCTION
* Return DRMAA version the JAPI library is compliant to.
*
* OUTPUTs
* unsigned int *major - ???
* unsigned int *minor - ???
*
* RESULT
* void - none
*
* NOTES
* MT-NOTE: japi_version() is MT safe
*******************************************************************************/
void japi_version(unsigned int *major, unsigned int *minor)
{
major = 1;
minor = 0;
}
#endif
/****** JAPI/japi_get_drm_system() *********************************************
* NAME
* japi_get_drm_system() -- ???
*
* SYNOPSIS
* int japi_get_drm_system(dstring *drm, dstring *diag)
*
* FUNCTION
* Returns SGE system implementation information. The output contain the DRM
* name and release information.
*
* OUTPUTS
* dstring *drm - Returns DRM name - on success
* dstring *diag - Returns diagnostic information - on error.
* int me - Me.wo progname
*
* RESULT
* int - DRMAA error codes
*
* NOTES
* MT-NOTE: japi_get_drm_system() is MT safe
*******************************************************************************/
int japi_get_drm_system(dstring *drm, dstring *diag, int me)
{
dstring buffer = DSTRING_INIT;
pthread_once(&japi_once_control, japi_once_init);
/* Set application prog number */
prog_number = me;
/* per thread initialization */
if (japi_init_mt(diag)!=DRMAA_ERRNO_SUCCESS) {
return DRMAA_ERRNO_INTERNAL_ERROR;
}
sge_dstring_copy_string(drm, feature_get_product_name(FS_SHORT_VERSION, &buffer));
sge_dstring_free(&buffer);
return DRMAA_ERRNO_SUCCESS;
}
/****** japi/japi_subscribe_job_list() *****************************************
* NAME
* japi_subscribe_job_list() -- Do event subscription for job list
*
* SYNOPSIS
* static void japi_subscribe_job_list(const char *japi_session_key,
* sge_evc_class_t *evc)
*
* FUNCTION
* Event subscription for job list can be very costly. It requires
* qmaster to copy the entire job list temporarily at the time when
* an event is registered. For that reason subscribing the job list
* was factorized out, so that it can be done only when required.
* Subscribing the job list event is required only in cases
*
* (a) when the client event client connection breaks down e.g.
* due to qmaster be shut-down and restarted
*
* (b) when a JAPI session is restarted e.g when DRMAA is used
*
* INPUTS
* const char *japi_session_key - JAPI session key
* sge_evc_class_t *evc - event client object
*
* NOTES
* MT-NOTE: japi_subscribe_job_list() is MT safe
*******************************************************************************/
static void japi_subscribe_job_list(const char *japi_session_key, sge_evc_class_t *evc)
{
const int job_nm[] = {
JB_job_number,
JB_project,
JB_type,
JB_ja_tasks,
JB_ja_structure,
JB_ja_n_h_ids,
JB_ja_u_h_ids,
JB_ja_s_h_ids,
JB_ja_o_h_ids,
JB_ja_z_ids,
JB_ja_template,
NoName
};
lCondition *where = NULL;
lEnumeration *what = NULL;
lListElem *where_el = NULL;
lListElem *what_el = NULL;
evc->ec_subscribe(evc, sgeE_JOB_LIST);
where = lWhere("%T(%I==%s)", JB_Type, JB_session, japi_session_key);
what = lIntVector2What(JB_Type, job_nm);
where_el = lWhereToElem(where);
what_el = lWhatToElem(what);
evc->ec_mod_subscription_where(evc, sgeE_JOB_LIST, what_el, where_el);
lFreeWhere(&where);
lFreeWhat(&what);
if (where_el) {
lFreeElem(&where_el);
}
if (what_el) {
lFreeElem(&what_el);
}
return;
}
/****** JAPI/japi_implementation_thread() **************************************
* Under construction
* NAME
* japi_implementation_thread() -- Control flow implementation thread
*
* SYNOPSIS
*
* FUNCTION
*
* INPUTS
* RESULT
*
* NOTES
* MT-NOTE: japi_implementation_thread() is MT safe
*******************************************************************************/
static void *japi_implementation_thread(void * a_user_data_pointer _UNUSED)
{
lList *alp = NULL, *event_list = NULL;
lListElem *event;
char buffer[1024];
dstring buffer_wrapper;
bool stop_ec = false;
int parameter, ed_time = 30, flush_delay_rate = 6;
const char *s;
bool restarting;
bool job_list_subscribed = false;
bool up_and_running = false;
bool qmaster_bound = false; /* Whether we ever successfully connected to the
qmaster. */
bool disconnected = false; /* Whether we are currently connected to the
qmaster. */
sge_gdi_ctx_class_t *evc_ctx = NULL;
static sge_evc_class_t *evc = NULL;
DENTER(TOP_LAYER, "japi_implementation_thread");
/* Check EC state before we bother starting. This also prevents the event
* client thread from having a race condition with japi_enable_job_wait(). */
JAPI_LOCK_EC_STATE();
if (japi_ec_state != JAPI_EC_STARTING && japi_ec_state != JAPI_EC_RESTARTING ) {
JAPI_UNLOCK_EC_STATE();
lFreeList(&alp);
goto SetupFailed;
}
restarting = (japi_ec_state == JAPI_EC_RESTARTING)?true:false;
JAPI_UNLOCK_EC_STATE();
sge_dstring_init(&buffer_wrapper, buffer, sizeof(buffer));
if (sge_gdi2_setup(&evc_ctx, prog_number, MAIN_THREAD, &alp) != AE_OK) {
lListElem *aep = lFirst(alp);
DPRINTF(("error: sge_gdi2_setup() failed for event client thread\n"));
if (aep) {
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
answer_list_add(&(japi_ec_alp_struct.japi_ec_alp), lGetString(aep, AN_text),
lGetUlong(aep, AN_status), (answer_quality_t)lGetUlong(aep, AN_quality));
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
}
lFreeList(&alp);
goto SetupFailed;
}
log_state_set_log_gui(0);
/* JAPI parameters passed through environment */
if ((s=getenv("SGE_JAPI_EDTIME"))) {
parameter = atoi(s);
if (parameter > 0) {
ed_time = parameter;
}
}
if ((s=getenv("SGE_JAPI_FLUSH_DELAY_RATE"))) {
parameter = atoi(s);
if (parameter > 0 && parameter < ed_time)
flush_delay_rate = parameter;
}
/* register at qmaster as event client */
DPRINTF(("registering as event client ...\n"));
evc = sge_evc_class_create(evc_ctx, EV_ID_ANY, &alp, NULL);
if (evc == NULL) {
lListElem *aep = lFirst(alp);
if (aep) {
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
answer_list_add(&(japi_ec_alp_struct.japi_ec_alp), lGetString(aep, AN_text),
lGetUlong(aep, AN_status), (answer_quality_t)lGetUlong(aep, AN_quality));
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
}
lFreeList(&alp);
goto SetupFailed;
}
evc->ec_set_edtime(evc, ed_time);
evc->ec_set_busy_handling(evc, EV_BUSY_UNTIL_ACK);
evc->ec_set_flush_delay(evc, flush_delay_rate);
evc->ec_set_session(evc, japi_session_key);
/* subscription of the entire job list at start-up
required only for session reconnect (DRMAA) */
if (restarting) {
japi_subscribe_job_list(japi_session_key, evc);
evc->ec_mark4registration(evc);
job_list_subscribed = true;
}
evc->ec_subscribe(evc, sgeE_JOB_FINISH);
evc->ec_set_flush(evc, sgeE_JOB_FINISH, true, 0);
evc->ec_subscribe(evc, sgeE_JATASK_MOD);
evc->ec_set_flush(evc, sgeE_JATASK_MOD, true, 0);
evc->ec_subscribe(evc, sgeE_SHUTDOWN);
evc->ec_set_flush(evc, sgeE_SHUTDOWN, true, 0);
/* sgeE_QMASTER_GOES_DOWN ??? */
/* Check again before we commit to this. */
JAPI_LOCK_EC_STATE();
if (japi_ec_state != JAPI_EC_STARTING && japi_ec_state != JAPI_EC_RESTARTING ) {
JAPI_UNLOCK_EC_STATE();
lFreeList(&alp);
goto SetupFailed;
}
if (!evc->ec_register(evc, false, &alp, NULL)) {
lListElem *aep = lFirst(alp);
DPRINTF(("error: ec_register() failed\n"));
if (aep) {
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
answer_list_add(&(japi_ec_alp_struct.japi_ec_alp), lGetString(aep, AN_text),
lGetUlong(aep, AN_status), (answer_quality_t)lGetUlong(aep, AN_quality));
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
}
JAPI_UNLOCK_EC_STATE();
lFreeList(&alp);
goto SetupFailed;
}
japi_ec_id = evc->ec_get_id(evc);
JAPI_UNLOCK_EC_STATE();
DPRINTF(("my formal prog name is \"%s\"\n",(char*)evc_ctx->get_progname(evc_ctx)));
cl_com_set_synchron_receive_timeout(evc_ctx->get_com_handle(evc_ctx),ed_time*2);
while (!stop_ec) {
int ec_get_ret = 0;
/* read events and add relevant information into library session data */
if ((ec_get_ret = evc->ec_get(evc, &event_list, false)) == false) {
evc->ec_mark4registration(evc);
DPRINTF (("Sleeping 10 seconds before trying to register again.\n"));
sleep(10);
} else {
/* We need to check that we japi_exit() didn't wake us up to die. */
JAPI_LOCK_EC_STATE();
if (japi_ec_state == JAPI_EC_FINISHING) {
JAPI_UNLOCK_EC_STATE();
DPRINTF (("Received stop request while waiting for events.\n"));
lFreeList(&event_list);
break;
}
JAPI_UNLOCK_EC_STATE();
DTRACE;
/* Bug Fix: Issuezilla #826
* The first part of this bug fix is to keep the event client thread
* from dying when the qmaster goes down. In distinguish between
* failures that represent the qmaster going down and failures that
* represent other errors, such as the qmaster never having been up,
* we note here that we were able to communication with the qmaster
* at least once before we started having problems. */
qmaster_bound = true;
DTRACE;
/* If we think we're disconnected, print a message saying we've
* reconnected, and note that we're not disconnected. */
if (disconnected) {
if (error_handler != NULL) {
error_handler (MSG_JAPI_RECONNECTED);
}
if (!job_list_subscribed) {
japi_subscribe_job_list(japi_session_key, evc);
job_list_subscribed = true;
}
DPRINTF (("%s", MSG_JAPI_RECONNECTED));
disconnected = false;
}
DTRACE;
for_each (event, event_list) {
u_long32 type, intkey, intkey2;
type = lGetUlong(event, ET_type);
intkey = lGetUlong(event, ET_intkey);
intkey2 = lGetUlong(event, ET_intkey2);
DPRINTF(("\tEvent: %s intkey "sge_u32" intkey2 "sge_u32"\n", event_text(event, &buffer_wrapper), intkey, intkey2));
/* maintain library session data */
if (type == sgeE_JOB_LIST) {
lList *sge_job_list = lGetList(event, ET_new_version);
lListElem *sge_job, *japi_job;
u_long32 jobid, taskid;
int finished_tasks = 0;
DPRINTF (("Handling job list event\n"));
JAPI_LOCK_JOB_LIST();
/* - check every session job
- no longer existing jobs must be moved to JJ_finished_jobs
- TODO: actually we had to return DRMAA_ERRNO_NO_RUSAGE when japi_wait() is
called for such a job. Must enhance JJAT_Type to reflect the case when
no stat and rusage are known */
for_each(japi_job, Master_japi_job_list) {
jobid = lGetUlong(japi_job, JJ_jobid);
if (!(sge_job = lGetElemUlong(sge_job_list, JB_job_number, jobid))) {
while ((taskid = range_list_get_first_id(lGetList(japi_job, JJ_not_yet_finished_ids), NULL))) {
/* remove task from not yet finished job id list */
object_delete_range_id(japi_job, NULL, JJ_not_yet_finished_ids, taskid);
/* add entry to the finished tasks */
DPRINTF(("adding finished task "sge_u32" for job "sge_u32" existing not any longer\n", taskid, jobid));
lAddSubUlong(japi_job, JJAT_task_id, taskid, JJ_finished_tasks, JJAT_Type);
finished_tasks++;
} /* while */
} /* if (sge_job == NULL) */
else {
finished_tasks = japi_sync_job_tasks (japi_job, sge_job);
/* So that we know which jobs have been seen, we remove this
* job from the list. */
lRemoveElem(sge_job_list, &sge_job);
} /* else */
} /* for_each */
/* Now add any left over jobs to the master job list. */
for_each(sge_job, sge_job_list) {
lList *task_list = NULL;
japi_job = lAddElemUlong(&Master_japi_job_list, JJ_jobid,
lGetUlong(sge_job, JB_job_number),
JJ_Type);
lSetUlong(japi_job, JJ_type, lGetUlong(sge_job, JB_type));
lXchgList(sge_job, JB_ja_structure, &task_list);
lSetList(japi_job, JJ_not_yet_finished_ids, task_list);
finished_tasks = japi_sync_job_tasks (japi_job, sge_job);
}
/* signal all application threads waiting for a job to finish */
if (finished_tasks)
pthread_cond_broadcast(&Master_japi_job_list_finished_cv);
JAPI_UNLOCK_JOB_LIST();
} /* if type == sgeE_JOB_LIST */
else if (type == sgeE_JOB_FINISH) {
/* - move job/task to JJ_finished_jobs */
lListElem *japi_job, *japi_task;
u_long32 wait_status;
const char *err_str;
lListElem *jr = lFirst(lGetList(event, ET_new_version));
DPRINTF (("Handling job finish event\n"));
wait_status = lGetUlong(jr, JR_wait_status);
err_str = lGetString(jr, JR_err_str);
if (SGE_GET_NEVERRAN(wait_status)) {
DPRINTF(("JOB_FINISH: "sge_u32"."sge_u32" job never ran: %s\n",
intkey, intkey2, err_str));
} else {
if (SGE_GET_WEXITED(wait_status)) {
DPRINTF(("JOB_FINISH: "sge_u32"."sge_u32" exited with exit status "sge_u32"\n",
intkey, intkey2, SGE_GET_WEXITSTATUS(wait_status)));
}
if (SGE_GET_WSIGNALED(wait_status)) {
DPRINTF(("JOB_FINISH: "sge_u32"."sge_u32" died through signal %s%s\n",
intkey, intkey2, sge_sig2str(SGE_GET_WSIGNAL(wait_status)),
SGE_GET_WCOREDUMP(wait_status)?"(core dumped)":""));
}
}
JAPI_LOCK_JOB_LIST();
japi_job = lGetElemUlong(Master_japi_job_list, JJ_jobid, intkey);
if (japi_job != NULL) {
if (range_list_is_id_within(lGetList(japi_job, JJ_not_yet_finished_ids), intkey2)) {
lList *usage = NULL;
/* remove task from not yet finished job id list */
object_delete_range_id(japi_job, NULL, JJ_not_yet_finished_ids, intkey2);
/* add an entry to the finished tasks */
DPRINTF(("adding finished task %ld for job %ld\n",
(long) intkey2, (long) intkey));
japi_task = lAddSubUlong(japi_job, JJAT_task_id, intkey2, JJ_finished_tasks, JJAT_Type);
lSetUlong(japi_task, JJAT_stat, wait_status);
lSetString(japi_task, JJAT_failed_text, err_str);
usage = lGetList (jr, JR_usage);
if (usage != NULL) {
lSetList(japi_task, JJAT_rusage, lCopyList ("job usage", usage));
}
/* signal all application threads waiting for a job event */
pthread_cond_broadcast(&Master_japi_job_list_finished_cv);
} /* if range_list_is_id_within() */
} /* if japi_job != NULL */
else {
DPRINTF (("ignoring event on unknown job "sge_u32"\n", intkey));
}
JAPI_UNLOCK_JOB_LIST();
} /* else if type == sgeE_JOB_FINISH */
else if (type == sgeE_JATASK_MOD) {
/* - add task to JJ_started_task_ids */
lListElem *japi_job;
lList *jat = lGetList(event, ET_new_version);
lListElem *ep = lFirst(jat);
u_long job_status = lGetUlong(ep, JAT_status);
bool task_running = (job_status==JRUNNING ||
job_status==JTRANSFERING) ? true : false;
if (task_running) {
DPRINTF (("Handling task start event\n"));
JAPI_LOCK_JOB_LIST();
japi_job = lGetElemUlong(Master_japi_job_list, JJ_jobid,
intkey);
if (japi_job != NULL) {
if (!range_list_is_id_within (
lGetList (japi_job, JJ_started_task_ids),
intkey2)) {
lList *range = NULL;
lXchgList(japi_job, JJ_started_task_ids, &range);
if (range == NULL) {
range = lCreateList ("started tasks", RN_Type);
}
/* add an entry to the started tasks */
DPRINTF(("adding started task %ld for job %ld\n",
(long) intkey2, (long) intkey));
range_list_insert_id (&range, &alp, intkey2);
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
range_list_sort_uniq_compress(range, &(japi_ec_alp_struct.japi_ec_alp), true);
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
lXchgList(japi_job, JJ_started_task_ids, &range);
/* signal all application threads waiting for a job event */
pthread_cond_broadcast (&Master_japi_job_list_finished_cv);
}
} /* if japi_job != NULL */
else {
DPRINTF(("ignoring event on unknown job "sge_u32"\n", intkey));
}
JAPI_UNLOCK_JOB_LIST();
} /* if task_running */
} /* else if type == sgeE_JATASK_MOD */
/* Bug Fix: Issuezilla #826
* Since we only want to stop when explicitly told to, we have to
* draw a distinction between SHUTDOWN and QMASTER_GOES_DOWN. On
* SHUTDOWN we exit the event client thread. On QMASTER_GOES_DOWN
* we may eventually want to issue a warning message. */
else if (type == sgeE_SHUTDOWN) {
JAPI_LOCK_JOB_LIST();
DPRINTF (("Received shutdown message\n"));
stop_ec = true;
qmaster_bound = false;
JAPI_LOCK_EC_ALP(japi_ec_alp_struct);
answer_list_add(&(japi_ec_alp_struct.japi_ec_alp), MSG_JAPI_KILLED_EVENT_CLIENT,
STATUS_ERROR1, ANSWER_QUALITY_CRITICAL);
JAPI_UNLOCK_EC_ALP(japi_ec_alp_struct);
pthread_cond_broadcast (&Master_japi_job_list_finished_cv);
JAPI_UNLOCK_JOB_LIST();
} else if (type == sgeE_ACK_TIMEOUT) {
/*
* Print a message that we are timed out at qmaster
* and we have to reconnect.
*/
DPRINTF(("got sgeE_ACK_TIMEOUT event\n"));
disconnected = true;
if (error_handler != NULL) {
error_handler(MSG_JAPI_QMASTER_TIMEDOUT);
}
} else if (type == sgeE_QMASTER_GOES_DOWN) {
/* Print a message that qmaster is down and note that we are
* disconnected. */
if (error_handler != NULL) {
error_handler(MSG_JAPI_QMASTER_DOWN);
}
DPRINTF(("%s", MSG_JAPI_QMASTER_DOWN));
disconnected = true;
}
} /* for_each */
lFreeList(&event_list);
if (!up_and_running) {
/* set japi_ec_state to JAPI_EC_UP and notify initialization thread */
DPRINTF(("signalling event client thread is up and running\n"));
JAPI_LOCK_EC_STATE();
japi_ec_state = JAPI_EC_UP;
DPRINTF (("EC STATE is now %d\n", japi_ec_state));
pthread_cond_signal(&japi_ec_state_starting_cv);
JAPI_UNLOCK_EC_STATE();
up_and_running = true;
}
} /* else */
if (!stop_ec) {
/* has japi_exit() been called meanwhile ? */
JAPI_LOCK_EC_STATE();
if (japi_ec_state == JAPI_EC_FINISHING) {
stop_ec = true;
}
JAPI_UNLOCK_EC_STATE();
}
/* Bug Fix: Issuezilla #826
* Here we have to make sure that we only give up if we've never actually
* connected to the qmaster. At some point we should probably implement
* some kind of timeout to keep clients from waiting indefinitely for a
* qmaster that may never come back. */
if ((ec_get_ret == 0) && !stop_ec && !qmaster_bound) {
/* Print a message that there's a communication problem */
if (error_handler != NULL) {
error_handler (MSG_JAPI_EC_GET_PROBLEM);
}
DPRINTF (("%s", MSG_JAPI_EC_GET_PROBLEM));
stop_ec = true;
}
else if ((ec_get_ret == 0) && !stop_ec && !disconnected) {
/* Print a message that the qmaster is unavailable and note that we're
disconnected. */
if (error_handler != NULL) {
error_handler (MSG_JAPI_DISCONNECTED);
}
DPRINTF (("%s", MSG_JAPI_DISCONNECTED));
disconnected = true;
}
} /* while */
/* Unregister event client */
DPRINTF(("unregistering from qmaster ...\n"));
if (evc->ec_deregister(evc)==FALSE) {
DPRINTF(("failed unregistering event client from qmaster.\n"));
} else {
DPRINTF(("... unregistered.\n"));
}
JAPI_LOCK_EC_STATE();
/* We have to check here whether the event client ever got the first job list
* event. If not, being here counts as a failure. */
/* The only non-error states here are JAPI_EC_UP="success" and
* JAPI_EC_FINISHING="aborted by main thread." */
if ((japi_ec_state == JAPI_EC_UP) || (japi_ec_state == JAPI_EC_FINISHING)) {
japi_ec_state = JAPI_EC_DOWN;
} else {
japi_ec_state = JAPI_EC_FAILED;
}
japi_ec_id = 0;
/* We signal here because it's possible that we started up ok but failed on
* the first ec_get to get the job list event. In that case, the main thread
* will still be waiting for the event client to signal start up. */
pthread_cond_signal(&japi_ec_state_starting_cv);
JAPI_UNLOCK_EC_STATE();
/* signal all application threads waiting for a job event */
pthread_cond_broadcast (&Master_japi_job_list_finished_cv);
DRETURN(NULL);
SetupFailed:
JAPI_LOCK_EC_STATE();
japi_ec_state = JAPI_EC_FAILED;
pthread_cond_signal(&japi_ec_state_starting_cv);
JAPI_UNLOCK_EC_STATE();
DRETURN(NULL);
}
/****** JAPI/japi_sync_job_tasks() *********************************************
* NAME
* japi_sync_job_tasks() -- adjusts JAPI job structure tasks to match the
* state of the SGE job structure tasks
*
* SYNOPSIS
* int japi_sync_job_tasks(lListElem *japi_job, lListElem *sge_job)
*
* FUNCTION
* Iterates through the JAPI job structure's JJ_not_yet_finished_task_ids
* list and moves finished jobs into the JJ_finished_tasks list.
*
* RESULT
* The number of finished tasks
*
* NOTES
* MT-NOTES: japi_sync_job_tasks() is MT safe.
*******************************************************************************/
static int japi_sync_job_tasks(lListElem *japi_job, lListElem *sge_job)
{
lList *range_list_copy = NULL;
lListElem *range = NULL;
lListElem *task = NULL;
u_long32 min = 0;
u_long32 max = 0;
u_long32 step = 0;
u_long32 taskid = 0;
int finished_tasks = 0;
DENTER (TOP_LAYER, "japi_sync_job_tasks");
/*
* We must iterate over all taskid's in the JJ_not_yet_finished_ids list.
* Depending on the tasks state as the reported by qmaster entries
* are removed from the JJ_not_yet_finished_ids list in this loop.
* For this reason we operate on a copy to implement the loop.
*/
range_list_copy = lCopyList(NULL, lGetList(japi_job, JJ_not_yet_finished_ids));
/* keep all tasks in 'not yet finished list' if tasks are
still running or not yet running */
for_each (range, range_list_copy) {
range_get_all_ids(range, &min, &max, &step);
for (taskid = min; taskid <= max; taskid += step) {
task = job_search_task(sge_job, NULL, taskid);
if (task != NULL) {
DPRINTF(("task "sge_u32"."sge_u32" contained in enrolled task list\n",
lGetUlong(japi_job, JJ_jobid), taskid));
if ((lGetUlong(task, JAT_status) & JFINISHED) != 0) {
DPRINTF(("task "sge_u32"."sge_u32" is finished\n",
lGetUlong(japi_job, JJ_jobid), taskid));
}
/* This is a potentially problematic animal. DRMAA has a problem
* with jobs in error state as DRMAA has no error state. This case
* should never occur, but if it does, this should be the correct
* way to handle it. However, because the code in complex, I'm not
* 100% certain. */
else if ((lGetUlong(task, JAT_state) & JERROR) != 0) {
DPRINTF(("task "sge_u32"."sge_u32" has failed\n",
lGetUlong(japi_job, JJ_jobid), taskid));
}
else {
continue;
}
}
else if (range_list_is_id_within(lGetList(sge_job, JB_ja_n_h_ids), taskid) ||
range_list_is_id_within(lGetList(sge_job, JB_ja_u_h_ids), taskid) ||
range_list_is_id_within(lGetList(sge_job, JB_ja_s_h_ids), taskid) ||
range_list_is_id_within(lGetList(sge_job, JB_ja_o_h_ids), taskid)) {
DPRINTF(("task "sge_u32"."sge_u32" is still pending\n",
lGetUlong(japi_job, JJ_jobid), taskid));
continue;
}
else {
if (range_list_is_id_within(lGetList(sge_job, JB_ja_z_ids), taskid)) {
DPRINTF(("task "sge_u32"."sge_u32" contained in zombie list taskid list\n",
lGetUlong(japi_job, JJ_jobid), taskid));
}
DPRINTF(("task "sge_u32"."sge_u32" presumably has finished meanwhile\n",
lGetUlong(japi_job, JJ_jobid), taskid));
}
/* remove task from not yet finished job id list */
object_delete_range_id(japi_job, NULL, JJ_not_yet_finished_ids,
taskid);
/* add entry to the finished tasks */
DPRINTF(("adding finished task %ld for job %ld which still exists\n",
(long) taskid, (long) lGetUlong(japi_job, JJ_jobid)));
lAddSubUlong(japi_job, JJAT_task_id, taskid, JJ_finished_tasks,
JJAT_Type);
finished_tasks++;
} /* for */
} /* for_each */
lFreeList(&range_list_copy);
DRETURN(finished_tasks);
}
/****** JAPI/japi_clean_up_jobs() **********************************************
* NAME
* japi_clean_up_jobs() -- stops jobs still running in the session
*
* SYNOPSIS
* int japi_clean_up_jobs(int flag, dstring *diag)
*
* FUNCTION
* Deletes jobs running in the session when flag is set to JAPI_EXIT_KILL_ALL
* or JAPI_EXIT_KILL_PENDING.
*
* RESULT
* int - 0 = OK, 1 = Error
*
* NOTES
* MT-NOTES: japi_clean_up_jobs() is MT safe (assumptions)
*******************************************************************************/
static int japi_clean_up_jobs(int flag, dstring *diag)
{
lListElem *japi_job = NULL, *id_entry = NULL;
lList *id_list = NULL, *alp = NULL;
u_long32 jobid;
int ret = DRMAA_ERRNO_SUCCESS;
bool done = false;
int count = 0;
char buffer[1024];
dstring job_task_specifier;
DENTER (TOP_LAYER, "japi_clean_up_jobs");
sge_dstring_init(&job_task_specifier, buffer, sizeof(buffer));
/* If there are any pending jobs, and a flag is set, kill them. */
if ((flag == JAPI_EXIT_KILL_PENDING) || (flag == JAPI_EXIT_KILL_ALL)) {
if (flag == JAPI_EXIT_KILL_PENDING) {
DPRINTF (("Stopping all pending jobs in this session.\n"));
}
else if (flag == JAPI_EXIT_KILL_ALL) {
DPRINTF (("Stopping all jobs in this session.\n"));
}
JAPI_LOCK_JOB_LIST();
japi_job = lFirst (Master_japi_job_list);
while (!done) {
count = 0;
while (japi_job != NULL) {
jobid = lGetUlong(japi_job, JJ_jobid);
DPRINTF (("Stopping job %ld\n", (long) jobid));
sge_dstring_sprintf(&job_task_specifier, sge_u32, jobid);
id_entry = lAddElemStr(&id_list, ID_str,
sge_dstring_get_string(&job_task_specifier),
ID_Type);
if (JOB_TYPE_IS_ARRAY(lGetUlong(japi_job, JJ_type))) {
/* Kill every task in the not yet finished list. Some of the tasks
* may have finished since we killed the event client, but that's
* ok. If we can't stop a job, we just move on to the next one. */
if (flag == JAPI_EXIT_KILL_PENDING) {
lList *del_list = NULL;
range_list_calculate_difference_set (&del_list, &alp,
lGetList(japi_job, JJ_not_yet_finished_ids),
lGetList(japi_job, JJ_started_task_ids));
lSetList(id_entry, ID_ja_structure, del_list);
}
/* Kill every task that is in the not yet finished list but not in
* the started list. Same as above for tasks we can't kill. */
else if (flag == JAPI_EXIT_KILL_ALL) {
lSetList(id_entry, ID_ja_structure, lCopyList(NULL,
lGetList(japi_job, JJ_not_yet_finished_ids)));
}
}
/* japi_job starts out as the first element in the master job
* list. Every time through this loop, we move to the next
* element. We do this before the check for maximum num of
* jobs to delete so that the next time we come to this loop,
* japi_job will already point to the right job. This saves
* us some initializer logic before the loop. */
japi_job = lNext (japi_job);
if (++count >= MAX_JOBS_TO_DELETE) {
break; /* while */
}
} /* while */
if (count < MAX_JOBS_TO_DELETE) {
DPRINTF (("Deleting %d jobs\n", count));
done = true;
}
else {
DPRINTF (("Deleting %d jobs\n", MAX_JOBS_TO_DELETE));
}
if (id_list) {
/* This function frees id_list. */
ret = do_gdi_delete (&id_list, DRMAA_CONTROL_TERMINATE, true, diag);
if (ret != DRMAA_ERRNO_SUCCESS) {
break; /* while */
}
} /* if */
} /* while */
JAPI_UNLOCK_JOB_LIST();
} /* if */
DRETURN(ret);
}
/****** japi/japi_was_init_called() *******************************************
* NAME
* japi_was_init_called() -- Return current contact information
*
* SYNOPSIS
* int japi_was_init_called(dstring* diag)
*
* FUNCTION
* Check if japi_init was already called.
*
* OUTPUT
* dstring *diag - returns diagnosis information - on error
*
* RESULT
* int - DRMAA_ERRNO_SUCCESS if japi_init was already called,
* DRMAA_ERRNO_NO_ACTIVE_SESSION if japi_init was not called,
* DRMAA_ERRNO_INTERNAL_ERROR if an unexpected error occurs.
*
* NOTES
* MT-NOTES: japi_was_init_called() is MT safe
*******************************************************************************/
int japi_was_init_called(dstring* diag)
{
int ret = DRMAA_ERRNO_SUCCESS;
DENTER(TOP_LAYER, "japi_was_init_called");
/* per thread initialization */
/* diag written by japi_init_mt() */
ret = japi_init_mt(diag);
if (ret == DRMAA_ERRNO_SUCCESS) {
/* ensure japi_init() was called */
JAPI_LOCK_SESSION();
if (japi_session != JAPI_SESSION_ACTIVE) {
ret = DRMAA_ERRNO_NO_ACTIVE_SESSION;
}
JAPI_UNLOCK_SESSION();
}
if (ret != DRMAA_ERRNO_SUCCESS) {
japi_standard_error(ret, diag);
}
DRETURN(ret);
}
/****** japi/japi_is_delegated_file_staging_enabled() *************************
* NAME
* japi_is_delegated_file_staging_enabled() -- Is file staging enabled, i.e.
* is the "delegated_file_staging" configuration entry set to true?
*
* SYNOPSIS
* bool japi_is_delegated_file_staging_enabled()
*
* FUNCTION
* Returns if delegated file staging is enabled.
*
* RESULT
* bool - true if delegated file staging is enabled, else false.
*
* NOTES
* MT-NOTES: japi_is_delegated_file_staging_enabled() is MT safe
*******************************************************************************/
bool japi_is_delegated_file_staging_enabled(dstring *diag)
{
bool ret = false;
DENTER(TOP_LAYER, "japi_is_delegated_file_staging_enabled");
JAPI_LOCK_SESSION();
if (japi_delegated_file_staging_is_enabled == -1) {
/* This function call does a GDI call, meaning it could take a while,
* leaving the session mutex locked. However, this only happens once.
* The less noticeable way to make this call is to call it from
* japi_init(). The problem there, however, is documented as Issuezilla
* bug #1025. This is the next best solution and doesn't appear to cause
* any noticeable problems. */
japi_read_dynamic_attributes (diag);
}
ret = (japi_delegated_file_staging_is_enabled == 1) ? true : false;
JAPI_UNLOCK_SESSION();
DRETURN(ret);
}
/****** japi/japi_read_dynamic_attributes() ***********************************
* NAME
* japi_read_dynamic_attributes() -- Read the 'dynamic' attributes from
* the DRM configuration.
*
* SYNOPSIS
* static int japi_read_dynamic_attributes(dstring *diag)
*
* FUNCTION
* Reads from the DRM configuration, which 'dynamic' attributes are enabled.
*
* OUTPUT
* dstring *diag - returns diagnosis information - on error
*
* RESULT
* int - DRMAA_ERRNO_SUCCESS on success,
* DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE,
* DRMAA_ERRNO_INVALID_ARGUMENT
* on error.
*
* NOTES
* MT-NOTES: japi_read_dynamic_attributes() is not MT safe. It assumes that
* the calling thread holds the session mutex.
*******************************************************************************/
static int japi_read_dynamic_attributes(dstring *diag)
{
int ret=0;
int drmaa_errno=DRMAA_ERRNO_SUCCESS;
lList *pSubList;
lListElem *config = NULL;
lListElem *ep = NULL;
const char *pStr = NULL;
DENTER(TOP_LAYER, "japi_read_dynamic_attributes");
ret = gdi2_get_configuration(ctx, SGE_GLOBAL_NAME, &config, NULL);
if (ret<0) {
switch( ret ) {
case -2:
case -4:
case -6:
case -7:
case -8:
drmaa_errno = DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE;
break;
case -1:
case -3:
drmaa_errno = DRMAA_ERRNO_INVALID_ARGUMENT;
break;
case -5:
/* -5 there is no global configuration
* This means that "delegated_file_staging" is not set.
* This is not an error for us, not set means default value.
*/
drmaa_errno = DRMAA_ERRNO_SUCCESS;
break;
}
japi_standard_error(drmaa_errno, diag);
DRETURN(drmaa_errno);
}
pSubList = lGetList(config, CONF_entries);
if (pSubList != NULL) {
ep = lGetElemStr(pSubList, CF_name, "delegated_file_staging");
if (ep != NULL) {
pStr = lGetString(ep, CF_value);
if (strcasecmp( pStr, "true") ==0) {
japi_delegated_file_staging_is_enabled = 1;
}
else {
japi_delegated_file_staging_is_enabled = 0;
}
}
}
lFreeElem(&config);
DRETURN(drmaa_errno);
}
/****** japi/do_gdi_delete() ***************************************************
* NAME
* do_gdi_delete() -- Delete the job list
*
* SYNOPSIS
* static int do_gdi_delete (lList **id_list, int action, bool delete_all,
* dstring diag)
*
* FUNCTION
* Deletes all the jobs in the job id list, converts and GDI errors into
* DRMAA errors, and frees the job id list.
*
* INPUTS
* lList **id_list - List of job ids to delete. Gets freed.
* int action - The action that caused this delete
* bool delete_all - Whether this call is deleting all jobs in the session
*
* OUTPUT
* dstring *diag - returns diagnosis information - on error
*
* RESULT
* int - DRMAA_ERRNO_SUCCESS on success,
* DRMAA error code on error.
*
* NOTES
* MT-NOTES: do_gdi_delete() is MT safe
*******************************************************************************/
static int do_gdi_delete(lList **id_list, int action, bool delete_all,
dstring *diag)
{
lList *alp = NULL;
lListElem *aep = NULL;
DENTER (TOP_LAYER, "do_gdi_delete");
alp = ctx->gdi(ctx, SGE_JB_LIST, SGE_GDI_DEL, id_list, NULL, NULL, false);
lFreeList(id_list);
for_each (aep, alp) {
int status = lGetUlong(aep, AN_status);
/* If we're doing a bulk delete (i.e. deleting all jobs in the session), we
* have a problem in that the list we have of the jobs in out session could
* be out of sync with reality. That means we may try to delete a job that
* no longer exists. Since we're just trying to kill all the jobs, it's not
* an error if the job doesn't exist when we try to delete it. Therefore,
* if we see such as error, we ignore it. Otherwise, a busy system will
* return a DRMAA_ERRNO_INVALID_JOB error by every control(ALL, TERM). */
if ((status != STATUS_OK) && !(delete_all && (status == STATUS_EEXIST))) {
int ret = japi_gdi_control_error2japi_error(aep, diag, action);
lFreeList(&alp);
DRETURN(ret);
}
}
lFreeList(&alp);
DRETURN(DRMAA_ERRNO_SUCCESS);
}
/****** JAPI/japi_stop_event_client() ******************************************
* NAME
* japi_stop_event_client() -- stops the event client
*
* SYNOPSIS
* int japi_stop_event_client(void)
*
* FUNCTION
* Uses the Event Master interface to send a SHUTDOWN event to the event
* client.
*
* RESULT
* int - 0 = OK, 1 = Error
*
* NOTES
* MT-NOTES: japi_stop_event_client() is MT safe (assumptions)
*******************************************************************************/
static int japi_stop_event_client (const char *default_cell)
{
lList *alp = NULL;
lList *id_list = NULL;
char id_string[25];
DENTER(TOP_LAYER, "stop_event_client");
DPRINTF (("Requesting that GDI kill our event client.\n"));
snprintf(id_string, sizeof(id_string), sge_u32, japi_ec_id);
lAddElemStr(&id_list, ID_str, id_string, ID_Type);
alp = ctx->kill(ctx, id_list, default_cell, 0, EVENTCLIENT_KILL);
lFreeList(&id_list);
lFreeList(&alp);
DRETURN(0);
}
|