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
|
##########################################################################
# MFCMD.TCL, modulefile command procedures
# Copyright (C) 2002-2004 Mark Lakata
# Copyright (C) 2004-2017 Kent Mein
# Copyright (C) 2016-2025 Xavier Delaruelle
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##########################################################################
# Dictionary-style string comparison
# Use dictionary sort of lsort proc to compare two strings in the "string
# compare" fashion (returning -1, 0 or 1). Tcl dictionary-style comparison
# enables to compare software versions (ex: "1.10" is greater than "1.8")
proc versioncmp {str1 str2} {
if {$str1 eq $str2} {
return 0
# put both strings in a list, then lsort it and get first element
} elseif {[lindex [lsort -dictionary [list $str1 $str2]] 0] eq $str1} {
return -1
} else {
return 1
}
}
proc module-info {what {more {}}} {
set mode [currentState mode]
switch -- $what {
mode {
if {$more ne {}} {
set command [currentState commandname]
return [expr {$mode eq $more || ($more eq {remove} && $mode eq \
{unload}) || ($more eq {switch} && $command eq {switch}) ||\
($more eq {nonpersist} && $mode eq {refresh})}]
} else {
return $mode
}
}
command {
set command [currentState commandname]
if {$more eq {}} {
return $command
} else {
return [expr {$command eq $more}]
}
}
name {
return [currentState modulename]
}
specified {
return [currentState specifiedname]
}
shell {
if {$more ne {}} {
return [expr {[getState shell] eq $more}]
} else {
return [getState shell]
}
}
flags {
# C-version specific option, not relevant for Tcl-version but return
# a zero integer value to avoid breaking modulefiles using it
return 0
}
shelltype {
if {$more ne {}} {
return [expr {[getState shelltype] eq $more}]
} else {
return [getState shelltype]
}
}
user {
# C-version specific option, not relevant for Tcl-version but return
# an empty value or false to avoid breaking modulefiles using it
if {$more ne {}} {
return 0
} else {
return {}
}
}
alias {
set ret [resolveModuleVersionOrAlias $more [isIcase]]
if {$ret ne $more} {
return $ret
} else {
return {}
}
}
trace {
return {}
}
tracepat {
return {}
}
type {
return Tcl
}
symbols {
lassign [getModuleNameVersion $more 1] mod modname modversion
set sym_list [getVersAliasList $mod]
# if querying special symbol "default" but nothing found registered
# on it, look at symbol registered on bare module name in case there
# are symbols registered on it but no default symbol set yet to link
# to them
if {![llength $sym_list] && $modversion eq {default}} {
set sym_list [getVersAliasList $modname]
}
return [join $sym_list :]
}
tags {
# refresh mod name version and variant to correctly get all matching
# tags (in case tags apply to specific module variant)
set modname [currentState modulename]
set modnamevr [getAndParseLoadedModuleWithVariant $modname]
collectModuleTags $modnamevr
if {$more ne {}} {
return [expr {$more in [getTagList $modnamevr [currentState\
modulefile]]}]
} else {
return [getTagList $modnamevr [currentState modulefile]]
}
}
version {
lassign [getModuleNameVersion $more 1] mod
return [resolveModuleVersionOrAlias $mod [isIcase]]
}
loaded {
lassign [getModuleNameVersion $more 1] mod
return [getLoadedMatchingName $mod returnall]
}
usergroups {
if {[getState is_win]} {
knerror "module-info usergroups not supported on Windows platform"
} else {
if {$more ne {}} {
return [expr {$more in [getState usergroups]}]
} else {
return [getState usergroups]
}
}
}
username {
if {[getState is_win]} {
knerror "module-info username not supported on Windows platform"
} else {
if {$more ne {}} {
return [expr {[getState username] eq $more}]
} else {
return [getState username]
}
}
}
default {
knerror "module-info $what not supported"
return {}
}
}
}
proc module-whatis {args} {
lappend ::g_whatis [join $args]
return {}
}
# Specifies a default or alias version for a module that points to an
# existing module version Note that aliases defaults are stored by the
# short module name (not the full path) so aliases and defaults from one
# directory will apply to modules of the same name found in other
# directories.
proc module-version {args} {
lassign [getModuleNameVersion [lindex $args 0] 1] mod modname modversion
# go for registration only if valid modulename
if {$mod ne {}} {
foreach version [lrange $args 1 end] {
set aliasversion $modname/$version
# do not alter a previously defined alias version
if {![info exists ::g_moduleVersion($aliasversion)]} {
setModuleResolution $aliasversion $mod $version
} else {
reportWarning "Symbolic version '$aliasversion' already defined"
}
}
}
return {}
}
proc module-alias {args} {
lassign [getModuleNameVersion [lindex $args 0]] alias
lassign [getModuleNameVersion [lindex $args 1] 1] mod
reportDebug "$alias = $mod"
if {[setModuleResolution $alias $mod]} {
set ::g_moduleAlias($alias) $mod
set ::g_sourceAlias($alias) [currentState modulefile]
}
return {}
}
proc module-virtual {args} {
lassign [getModuleNameVersion [lindex $args 0]] mod
set modfile [getAbsolutePath [lindex $args 1]]
reportDebug "$mod = $modfile"
set ::g_moduleVirtual($mod) $modfile
set ::g_sourceVirtual($mod) [currentState modulefile]
return {}
}
# Parse date time argument value and translate it into epoch time
proc __parseDateTimeArg {opt datetime} {
if {[regexp {^\d{4}-\d{2}-\d{2}(T\d{2}:\d{2})?$} $datetime match\
timespec]} {
# time specification is optional
if {$timespec eq {}} {
append datetime T00:00
}
# return corresponding epoch time
return [clock scan $datetime -format %Y-%m-%dT%H:%M]
} else {
knerror "Incorrect $opt value '$datetime' (valid date time format is\
'YYYY-MM-DD\[THH:MM\]')"
}
}
# parse application criteria arguments and determine if command applies
proc parseApplicationCriteriaArgs {aftbef nearsec args} {
set otherargs {}
# parse argument list
foreach arg $args {
if {[info exists nextargisval]} {
##nagelfar vartype nextargisval varName
set $nextargisval $arg
unset nextargisval
} elseif {[info exists nextargisdatetime]} {
##nagelfar ignore Suspicious variable name
set ${nextargisdatetime}raw $arg
# get epoch time from date time argument value
##nagelfar vartype nextargisdatetime varName
##nagelfar ignore Unknown variable
set $nextargisdatetime [parseDateTimeArg $prevarg $arg]
unset nextargisdatetime
} else {
switch -- $arg {
--after - --before {
# treat --after/--before as regular content if disabled
if {!$aftbef} {
lappend otherargs $arg
} else {
set nextargisdatetime [string trimleft $arg -]
}
}
--not-group - --not-user - --group - --user {
if {[getState is_win]} {
knerror "Option '$arg' not supported on Windows platform"
} else {
set nextargisval [string map {- {}} $arg]list
}
}
default {
lappend otherargs $arg
}
}
set prevarg $arg
}
}
if {[info exists nextargisval] || [info exists nextargisdatetime]} {
knerror "Missing value for '$prevarg' option"
}
set user [expr {[info exists userlist] && [getState username] in\
$userlist}]
set group [expr {[info exists grouplist] && [isIntBetweenList\
$grouplist [getState usergroups]]}]
# does it apply to current user?
set notuser [expr {[info exists notuserlist] && [getState username] in\
$notuserlist}]
set notgroup [expr {[info exists notgrouplist] && [isIntBetweenList\
$notgrouplist [getState usergroups]]}]
# does it apply currently?
set isbefore [expr {[info exists before] && [getState clock_seconds] <\
$before}]
set isafter [expr {[info exists after] && [getState clock_seconds] >=\
$after}]
set user_or_group_target_defined [expr {[info exists userlist] || [info\
exists grouplist]}]
set user_or_group_targeted [expr {$user || $group}]
set user_or_group_excluded [expr {$notuser || $notgroup}]
set time_frame_defined [expr {[info exists before] || [info exists after]}]
set in_time_frame [expr {!$time_frame_defined || $isbefore || $isafter}]
set in_near_time_frame [expr {[info exists after] && !$isafter &&\
[getState clock_seconds] >= ($after - $nearsec)}]
set apply [expr {$in_time_frame && ($user_or_group_targeted ||\
(!$user_or_group_target_defined && !$user_or_group_excluded))}]
# is end limit near ?
set isnearly [expr {!$apply && ($user_or_group_targeted ||\
(!$user_or_group_target_defined && !$user_or_group_excluded)) &&\
$in_near_time_frame}]
if {![info exists afterraw]} {
set afterraw {}
}
return [list $apply $isnearly $afterraw $otherargs]
}
proc setModspecTag {modspec tag {props {}}} {
reportDebug "Set tag '$tag' with properties '$props' on module\
specification '$modspec'"
if {[isModuleFullPath $modspec]} {
# use dedicated structure for full path module specifications
if {![info exists ::g_moduleTagFullPath($modspec)] || $tag ni\
$::g_moduleTagFullPath($modspec)} {
lappend ::g_moduleTagFullPath($modspec) $tag
} else {
set idx [lsearch -exact $::g_moduleTagFullPath($modspec) $tag]
}
# record props associated to tag
if {[info exists idx]} {
lset ::g_moduleTagFullPathSpec($modspec) $idx $props
} else {
lappend ::g_moduleTagFullPathSpec($modspec) $props
}
} else {
# record tag list for mod root to optimize search
set modroot [getModuleRootFromVersSpec $modspec]
if {![info exists ::g_moduleTagRoot($modroot)]} {
lappend ::g_moduleTagRoot($modroot) $tag
set idx 0
set new 1
} else {
set idx [lsearch -exact $::g_moduleTagRoot($modroot) $tag]
if {$idx == -1} {
set idx [llength $::g_moduleTagRoot($modroot)]
lappend ::g_moduleTagRoot($modroot) $tag
set new 1
}
}
# then record mod spec and props at idx defined for tag. new spec are
# appended and firstly matching spec is returned with its props on
# search
if {[info exists new]} {
lappend ::g_moduleTagRootSpec($modroot) [list $modspec $props]
} else {
set tagrootlist [lindex $::g_moduleTagRootSpec($modroot) $idx]
lappend tagrootlist $modspec $props
lset ::g_moduleTagRootSpec($modroot) $idx $tagrootlist
}
}
}
proc module-forbid {args} {
# parse application criteria arguments to determine if command apply
lassign [parseApplicationCriteriaArgs 1 [expr {[getConf\
nearly_forbidden_days] * 86400}] {*}$args] apply isnearly after\
otherargs
# parse remaining argument list, do it even if command does not apply to
# raise any command specification error
foreach arg $otherargs {
if {[info exists nextargisval]} {
##nagelfar vartype nextargisval varName
set $nextargisval $arg
unset nextargisval
} else {
switch -glob -- $arg {
--nearly-message {
set nextargisval nearlymessage
}
--message {
set nextargisval message
}
-* {
knerror "Invalid option '$arg'"
}
default {
lappend modarglist $arg
}
}
set prevarg $arg
}
}
if {[info exists nextargisval]} {
knerror "Missing value for '$prevarg' option"
}
if {![info exists modarglist]} {
knerror {No module specified in argument}
}
# skip record if application criteria are not met
if {$apply} {
set proplist {}
if {[info exists message]} {
##nagelfar ignore Found constant
lappend proplist message $message
}
# record each forbid spec after parsing them
foreach modarg [parseModuleSpecification 0 0 0 0 {*}$modarglist] {
setModspecTag $modarg forbidden $proplist
}
} elseif {$isnearly} {
##nagelfar ignore Found constant
lappend proplist after $after
if {[info exists nearlymessage]} {
##nagelfar ignore Found constant
lappend proplist message $nearlymessage
}
# record each nearly forbid spec after parsing them
foreach modarg [parseModuleSpecification 0 0 0 0 {*}$modarglist] {
setModspecTag $modarg nearly-forbidden $proplist
}
}
}
proc module-hide {args} {
set hidinglvl 1
set hiddenloaded 0
# parse application criteria arguments to determine if command apply
lassign [parseApplicationCriteriaArgs 1 0 {*}$args] apply isnearly after\
otherargs
# parse remaining argument list, do it even if command does not apply to
# raise any command specification error
foreach arg $otherargs {
switch -glob -- $arg {
--hard {
# hardened stealth
set hidinglvl 2
}
--soft {
# soften level of camouflage
set hidinglvl 0
}
--hidden-loaded {
# module should stay hidden once being loaded
set hiddenloaded 1
}
-* {
knerror "Invalid option '$arg'"
}
default {
lappend modarglist $arg
}
}
}
if {![info exists modarglist]} {
knerror {No module specified in argument}
}
# skip hide spec record if application criteria are not met
if {$apply} {
# record each hide spec after parsing them
foreach modarg [parseModuleSpecification 0 0 0 0 {*}$modarglist] {
setModspecHidingLevel $modarg $hidinglvl
if {$hiddenloaded} {
setModspecTag $modarg hidden-loaded
}
}
}
}
proc hide-modulefile {modfile} {
module-hide $modfile
}
proc module-tag {args} {
# parse application criteria arguments to determine if command apply
lassign [parseApplicationCriteriaArgs 0 0 {*}$args] apply isnearly after\
otherargs
# parse remaining argument list, do it even if command does not apply to
# raise any command specification error
foreach arg $otherargs {
switch -glob -- $arg {
-* {
knerror "Invalid option '$arg'"
}
default {
if {![info exists tag]} {
set tag $arg
} else {
lappend modarglist $arg
}
}
}
}
if {![info exists tag]} {
knerror {No tag specified in argument}
}
if {![info exists modarglist]} {
knerror {No module specified in argument}
}
if {$tag in [list loaded auto-loaded forbidden nearly-forbidden hidden\
hidden-loaded warning]} {
knerror "'$tag' is a reserved tag name and cannot be set"
}
# skip tag record if application criteria are not met
if {$apply} {
# record each hide spec after parsing them
foreach modarg [parseModuleSpecification 0 0 0 0 {*}$modarglist] {
setModspecTag $modarg $tag
}
}
}
# parse arguments sent to the unsetenv modulefile command
proc parseSetenvCommandArgs {mode dflbhv args} {
set bhv $dflbhv
foreach arg $args {
switch -- $arg {
--set-if-undef {
if {$mode eq {load}} {
set setifundef 1
}
}
default {
if {![info exists var]} {
set var $arg
} elseif {![info exists val]} {
set val $arg
} else {
# too much argument
set wrongargnum 1
}
}
}
}
if {[info exists wrongargnum] || ![info exists var] || ![info exists\
val]} {
knerror {wrong # args: should be "setenv ?--set-if-undef? var val"}
}
if {[info exists setifundef] && [isEnvVarDefined $var]} {
set bhv noop
}
reportDebug "bhv=$bhv, var=$var, val=$val"
return [list $bhv $var $val]
}
proc setenv {args} {
lassign [parseSetenvCommandArgs load set {*}$args] bhv var val
if {$bhv eq {set}} {
# clean any previously defined reference counter array
unset-env [getModshareVarName $var] 1
# clean any previously defined pushenv stack
unset-env [getPushenvVarName $var] 1
# Set the variable for later use during the modulefile evaluation
set-env $var $val
}
return {}
}
# undo setenv in unload mode
proc setenv-un {args} {
lassign [parseSetenvCommandArgs unload unset {*}$args] bhv var val
# clean any existing reference counter array
unset-env [getModshareVarName $var] 1
# clean any previously defined pushenv stack
unset-env [getPushenvVarName $var] 1
# Add variable to the list of variable to unset in shell output code but
# set it in interp context as done on load mode for later use during the
# modulefile evaluation
unset-env $var 0 $val
return {}
}
# optimized setenv for whatis mode: init env variable with an empty
# value if undefined. do not care about value, just avoid variable to be
# undefined for later use during the modulefile evaluation
proc setenv-wh {args} {
lassign [parseSetenvCommandArgs load set {*}$args] bhv var val
setEnvVarIfUndefined $var {}
return {}
}
# parse arguments sent to the getenv modulefile command
proc parseGetenvCommandArgs {cmd args} {
set returnval 0
set valifundef {}
switch -- [llength $args] {
1 {
set var [lindex $args 0]
}
2 {
switch -- [lindex $args 0] {
--return-value {
set returnval 1
set var [lindex $args 1]
}
default {
set var [lindex $args 0]
set valifundef [lindex $args 1]
}
}
}
3 {
if {[lindex $args 0] ne {--return-value}} {
set wrongargs 1
} else {
set returnval 1
set var [lindex $args 1]
set valifundef [lindex $args 2]
}
}
default {
set wrongargs 1
}
}
set argname [expr {$cmd eq {getenv} ? {variable} : {name}}]
if {[info exists wrongargs]} {
knerror "wrong # args: should be \"$cmd ?--return-value? $argname\
?valifundef?\""
}
reportDebug "$argname='$var', valifundef='$valifundef',\
returnval='$returnval'"
return [list $var $valifundef $returnval]
}
proc getenv {args} {
# parse args
lassign [parseGetenvCommandArgs getenv {*}$args] var valifundef returnval
if {[currentState mode] ne {display} || $returnval} {
return [get-env $var $valifundef]
} else {
return "\$$var"
}
}
# parse arguments sent to the unsetenv modulefile command
proc parseUnsetenvCommandArgs {mode dflbhv args} {
foreach arg $args {
switch -- $arg {
--unset-on-unload {
if {$mode eq {unload}} {
set bhv unset
}
}
--noop-on-unload {
if {$mode eq {unload}} {
set bhv noop
}
}
default {
if {![info exists var]} {
set var $arg
} elseif {![info exists val]} {
set val $arg
if {$mode eq {unload} && ![info exists bhv]} {
set bhv set
}
} else {
# too much argument
set wrongargnum 1
}
}
}
}
if {[info exists wrongargnum] || ![info exists var]} {
knerror {wrong # args: should be "unsetenv ?--noop-on-unload?\
?--unset-on-unload? var ?val?"}
}
if {![info exists bhv]} {
set bhv $dflbhv
}
# initialize val to always return same structure, val is only used if bhv
# equals 'set'
if {![info exists val]} {
set val {}
}
reportDebug "bhv=$bhv, var=$var, val=$val"
return [list $bhv $var $val]
}
proc unsetenv {args} {
lassign [parseUnsetenvCommandArgs load unset {*}$args] bhv var val
# clean any existing reference counter array
unset-env [getModshareVarName $var] 1
# clean any previously defined pushenv stack
unset-env [getPushenvVarName $var] 1
# Set the variable for later use during the modulefile evaluation
unset-env $var
return {}
}
# undo unsetenv in unload mode
proc unsetenv-un {args} {
lassign [parseUnsetenvCommandArgs unload noop {*}$args] bhv var val
switch -- $bhv {
set {
# apply value specified for set on unload
return [setenv $var $val]
}
unset {
return [unsetenv $var]
}
noop {
# otherwise just clear variable if it does not exist on unload mode
# for later use during the modulefile evaluation
if {![isEnvVarDefined $var]} {
reset-to-unset-env $var
}
}
}
return {}
}
# optimized unsetenv for whatis mode: init env variable with an empty
# value if undefined. do not care about value, just avoid variable to be
# undefined for later use during the modulefile evaluation
proc unsetenv-wh {args} {
lassign [parseUnsetenvCommandArgs load noop {*}$args] bhv var val
setEnvVarIfUndefined $var {}
return {}
}
proc chdir {dir} {
if {[file exists $dir] && [file isdirectory $dir]} {
set ::g_changeDir $dir
} else {
# report issue but does not treat it as an error to have the
# same behavior as C-version
reportWarning "Cannot chdir to '$dir' for '[currentState modulename]'"
}
return {}
}
# supersede exit command to handle it if called within a modulefile
# rather than exiting the whole process
proc exitModfileCmd {{code 0}} {
if {[currentState mode] in {load refresh}} {
setState inhibit_interp 1
}
# break to gently end interpretation of current modulefile
return -code break
}
# enables sub interp to return ModulesVersion value to the main interp
proc setModulesVersion {val} {
set ::ModulesVersion $val
}
# supersede puts command to catch content sent to stdout/stderr within
# modulefile in order to correctly send stderr content (if a pager has been
# enabled) or postpone content channel send after rendering on stdout the
# relative environment changes required by the modulefile
proc putsModfileCmd {itrp args} {
# determine if puts call targets the stdout or stderr channel
switch -- [llength $args] {
1 {
# create struct with newline status and message to output
set deferPuts [list 1 [lindex $args 0]]
}
2 {
switch -- [lindex $args 0] {
-nonewline {
set deferPuts [list 0 [lindex $args 1]]
}
stdout {
set deferPuts [list 1 [lindex $args 1]]
}
prestdout {
set deferPrePuts [list 1 [lindex $args 1]]
}
stderr {
set reportArgs [list [lindex $args 1]]
}
log {
set logPuts [lindex $args 1]
}
}
}
3 {
if {[lindex $args 0] eq {-nonewline}} {
switch -- [lindex $args 1] {
stdout {
set deferPuts [list 0 [lindex $args 2]]
}
prestdout {
set deferPrePuts [list 0 [lindex $args 2]]
}
stderr {
set reportArgs [list [lindex $args 2] 1]
}
log {
set logPuts [lindex $args 2]
}
}
} else {
set wrongNumArgs 1
}
}
default {
set wrongNumArgs 1
}
}
# raise error if bad argument number detected, do this here rather in _puts
# not to confuse people with an error reported by an internal name (_puts)
if {[info exists wrongNumArgs]} {
knerror {wrong # args: should be "puts ?-nonewline? ?channelId? string"}
# send content to log system
} elseif {[info exists logPuts]} {
log $logPuts
# defer puts if it targets stdout (see renderSettings)
} elseif {[info exists deferPuts]} {
# current module is qualified for refresh evaluation
lappendState -nodup refresh_qualified [currentState modulename]
lappend ::g_stdoutPuts {*}$deferPuts
} elseif {[info exists deferPrePuts]} {
lappendState -nodup refresh_qualified [currentState modulename]
lappend ::g_prestdoutPuts {*}$deferPrePuts
# if it targets stderr call report, which knows what channel to use
} elseif {[info exists reportArgs]} {
# report message only if not silent
if {[isVerbosityLevel concise]} {
report {*}$reportArgs
}
# pass to real puts command if not related to stdout and do that in modfile
# interpreter context to get access to eventual specific channel
} else {
# re-throw error as a known error for accurate stack trace print
if {[catch {$itrp eval _puts $args} errMsg]} {
knerror $errMsg MODULES_ERR_CUSTOM
}
}
}
proc prepend-path {args} {
# Set the variable for later use during the modulefile evaluation
add-path prepend-path load prepend {*}$args
return {}
}
proc prepend-path-un {args} {
# Set the variable for later use during the modulefile evaluation
unload-path prepend-path unload remove {*}$args
return {}
}
proc append-path {args} {
# Set the variable for later use during the modulefile evaluation
add-path append-path load append {*}$args
return {}
}
proc append-path-un {args} {
# Set the variable for later use during the modulefile evaluation
unload-path append-path unload remove {*}$args
return {}
}
proc remove-path {args} {
# Set the variable for later use during the modulefile evaluation
unload-path remove-path load remove {*}$args
return {}
}
# undo remove-path in unload mode
proc remove-path-un {args} {
lassign [unload-path remove-path unload noop {*}$args] bhv var
# clean any previously defined pushenv stack
unset-env [getPushenvVarName $var] 1
# clear variable if it does not exist on unload mode for later use
# during the modulefile evaluation
if {![isEnvVarDefined $var]} {
reset-to-unset-env $var
}
}
# optimized *-path for whatis mode: init env variable with an empty value if
# undefined. do not care about value, just avoid variable to be undefined for
# later use during the modulefile evaluation
proc edit-path-wh {cmd args} {
# get variable name
lassign [parsePathCommandArgs $cmd load noop {*}$args] separator allow_dup\
idx_val ign_refcount val_set_is_delim glob_match bhv var path_list
setEnvVarIfUndefined $var {}
return {}
}
proc set-alias {alias what} {
set ::g_Aliases($alias) $what
set ::g_stateAliases($alias) new
# current module is qualified for refresh evaluation
lappendState -nodup refresh_qualified [currentState modulename]
return {}
}
# undo set-alias in unload mode
proc set-alias-un {alias what} {
return [unset-alias $alias]
}
proc unset-alias {alias} {
set ::g_Aliases($alias) {}
set ::g_stateAliases($alias) del
return {}
}
proc set-function {function what} {
set ::g_Functions($function) $what
set ::g_stateFunctions($function) new
# current module is qualified for refresh evaluation
lappendState -nodup refresh_qualified [currentState modulename]
return {}
}
# undo set-function in unload mode
proc set-function-un {function what} {
return [unset-function $function]
}
proc unset-function {function} {
set ::g_Functions($function) {}
set ::g_stateFunctions($function) del
return {}
}
proc is-loaded {args} {
# parse module version specification
set args [parseModuleSpecification 0 0 0 0 {*}$args]
foreach mod $args {
if {[getLoadedMatchingName $mod returnfirst] ne {}} {
return 1
}
}
# is something loaded whatever it is?
return [expr {![llength $args] && [llength\
[getEnvLoadedModulePropertyParsedList name]]}]
}
proc is-loading {args} {
foreach mod $args {
if {[getLoadedMatchingName $mod returnfirst 1] ne {}} {
return 1
}
}
# is something else loading whatever it is?
return [expr {![llength $args] && [llength [getLoadingModuleList]] > 1}]
}
proc conflict {args} {
set currentModule [currentState modulename]
set curmodnamevr [currentState modulenamevr]
# get module short name if loaded by its full pathname
if {[set isfullpath [isModuleFullPath $currentModule]]} {
set currentSModule [findModuleNameFromModulefile $currentModule]
}
defineModEqProc [isIcase] [getConf extended_default]
set conflict_unload [expr {[getConf conflict_unload] && [getConf\
auto_handling]}]
# parse module version specification
set args [parseModuleSpecification 0 0 0 0 {*}$args]
registerCurrentModuleConflict {*}$args
foreach mod $args {
set is_conflict_loading 0
set unload_attempt 0
set loaded_conflict_mod_list [getLoadedMatchingName $mod returnall]
if {![llength $loaded_conflict_mod_list]} {
set eq_current_mod [expr {[modEq $mod $currentModule eqstart 1 2 1]\
|| ($isfullpath && [modEq $mod $currentSModule eqstart 1 2 1])}]
# currently evaluating module should not be mistaken for loading
# conflicting module
if {!$eq_current_mod} {
set loaded_conflict_mod_list [getLoadedMatchingName $mod\
returnall 1]
if {[llength $loaded_conflict_mod_list]} {
# no conflict unload attempt on loading module
set is_conflict_loading 1
}
}
} elseif {$conflict_unload} {
set still_loaded_conflict_mod_list {}
# unload attempt in reverse load order
foreach loaded_conflict_mod [lreverse $loaded_conflict_mod_list] {
if {[cmdModuleUnload conun match 1 s 0 $loaded_conflict_mod]} {
lappend still_loaded_conflict_mod_list $loaded_conflict_mod
}
}
set loaded_conflict_mod_list $still_loaded_conflict_mod_list
set unload_attempt 1
}
if {[llength $loaded_conflict_mod_list]} {
setConflictErrorAsReported {*}$loaded_conflict_mod_list
# error msg has already been sent if a conflict unload was attempted
set msg [expr {$unload_attempt ? {} : [getPresentConflictErrorMsg\
$curmodnamevr $loaded_conflict_mod_list $is_conflict_loading]}]
knerrorOrWarningIfForced $msg MODULES_ERR_GLOBAL
}
}
return {}
}
proc registerCurrentModuleConflict {args} {
# register conflict list unless record inhibited for current iterp context
if {[currentState inhibit_req_record] != [currentState evalid]} {
setLoadedConflict [currentState modulename] {*}$args
}
}
proc parsePrereqCommandArgs {cmd args} {
set tag_list {}
set modulepath_list {}
set optional 0
set opt_list {}
set prereq_list {}
# parse options defined
set i 0
foreach arg $args {
if {[info exists nextargistaglist]} {
set tag_list [split $arg :]
lappend opt_list $arg
unset nextargistaglist
} elseif {[info exists nextargismodulepathlist]} {
set modulepath_list {}
# record list of absolute paths
foreach modulepath [split $arg :] {
lappend modulepath_list [getAbsolutePath $modulepath]
}
lappend opt_list $arg
unset nextargismodulepathlist
} else {
switch -glob -- $arg {
--optional {
set optional 1
lappend opt_list $arg
}
--tag=* {
set tag_list [split [string range $arg 6 end] :]
lappend opt_list $arg
if {![llength $tag_list]} {
knerror "Missing value for '--tag' option"
}
}
--tag {
set nextargistaglist 1
lappend opt_list $arg
}
--modulepath {
set nextargismodulepathlist 1
lappend opt_list $arg
}
-* {
knerror "Invalid option '$arg'"
}
default {
set prereq_list [lrange $args $i end]
# end option parsing: remaining elts are list of prereqs
break
}
}
}
incr i
}
foreach tag $tag_list {
if {$tag in [list loaded auto-loaded forbidden nearly-forbidden\
hidden warning]} {
knerror "Tag '$tag' cannot be manually set"
}
}
if {![llength $prereq_list]} {
knerror "wrong # args: should be \"$cmd ?--optional? ?--tag? ?taglist?\
?--modulepath? ?modulepathlist? modulefile ?...?\""
} elseif {[set mispopt [lsearch -inline -glob $prereq_list --*]] ne {}} {
knerror "Misplaced option '$mispopt'"
}
return [list $tag_list $modulepath_list $optional $opt_list $prereq_list]
}
proc prereqAnyModfileCmd {tryload auto args} {
lassign [parsePrereqCommandArgs prereq {*}$args] tag_list modulepath_list\
optional opt_list args
set currentModule [currentState modulename]
set curmodnamevr [currentState modulenamevr]
# parse module version specification
set args [parseModuleSpecification 0 0 0 0 {*}$args]
# register prereq list (sets of optional prereq are registered as list)
# unless record inhibited for current iterp context
if {[currentState inhibit_req_record] != [currentState evalid]} {
# if requirement is optional, add current module to the recorded prereq
# list to make the requirement rule satisfied even if none loaded, as
# current module will be loaded
if {$optional} {
lappend record_list $currentModule
}
lappend record_list {*}$args
setLoadedPrereq $currentModule $record_list
if {[llength $modulepath_list]} {
setLoadedPrereqPath $currentModule $record_list $modulepath_list
}
}
if {$auto} {
# convert modulepath list to keep entries not matching any enabled
# modulepaths and transform entries into all matching enabled modulepath
set converted_list {}
foreach modulepath $modulepath_list {
set matching_list [getMatchingModulepathList $modulepath]
if {[llength $matching_list]} {
appendNoDupToList converted_list {*}$matching_list
} else {
appendNoDupToList converted_list $modulepath
}
}
set modulepath_list $converted_list
# try to load prereq as dependency resolving is enabled
lassign [loadRequirementModuleList $tryload $optional $tag_list\
$modulepath_list {*}$args] retlo prereqloaded
} else {
set loadedmod_list {}
foreach mod $args {
# get all loaded or loading mod in args list
if {[set loadedmod [getLoadedMatchingName $mod returnfirst 0 {}\
$modulepath_list]] ne {} || [set loadedmod [getLoadedMatchingName\
$mod returnfirst 1 {} $modulepath_list]] ne {}} {
lappend loadedmod_list $loadedmod
}
}
set prereqloaded [llength $loadedmod_list]
}
if {!$prereqloaded} {
if {!$optional} {
# error if requirement is not satisfied unless if optional
reportMissingPrereqError $curmodnamevr $modulepath_list {*}$args
}
} elseif {!$auto} {
# apply missing tag to all loaded module found (already done when
# dependency resolving is enabled)
cmdModuleTag 0 0 $tag_list {*}$loadedmod_list
}
return {}
}
proc x-resource {resource {value {}}} {
# sometimes x-resource value may be provided within resource name
# as the "x-resource {Ileaf.popup.saveUnder: True}" example provided
# in manpage. so here is an attempt to extract real resource name and
# value from resource argument
if {![string length $value] && ![file exists $resource]} {
# look first for a space character as delimiter, then for a colon
set sepapos [string first { } $resource]
if { $sepapos == -1 } {
set sepapos [string first : $resource]
}
if { $sepapos > -1 } {
set value [string range $resource $sepapos+1 end]
set resource [string range $resource 0 $sepapos-1]
reportDebug "corrected ($resource, $value)"
} else {
# if not a file and no value provided x-resource cannot be
# recorded as it will produce an error when passed to xrdb
reportWarning "x-resource $resource is not a valid string or file"
return {}
}
}
# check current environment can handle X11 resource edition elsewhere exit
if {[catch {runCommand xrdb -query} errMsg]} {
knerror "X11 resources cannot be edited, issue spotted\n[sgr er\
ERROR]: $errMsg" MODULES_ERR_GLOBAL
}
# if a resource does hold an empty value in g_newXResources or
# g_delXResources arrays, it means this is a resource file to parse
if {[currentState mode] eq {load}} {
set ::g_newXResources($resource) $value
} else {
set ::g_delXResources($resource) $value
}
return {}
}
proc uname {what} {
return [switch -- $what {
sysname {getState os}
machine {getState machine}
nodename - node {getState nodename}
release {getState osversion}
domain {getState domainname}
version {getState kernelversion}
default {knerror "uname $what not supported"}
}]
}
# run shell command
proc system {args} {
# run through the appropriate shell
if {[getState is_win]} {
set shell cmd.exe
set shellarg /c
} else {
set shell /bin/sh
set shellarg -c
}
if {[catch {exec >&@stderr $shell $shellarg [join $args]}]} {
# non-zero exit status, get it:
return [lindex $::errorCode 2]
} else {
# exit status was 0
return 0
}
}
# test at least one of the collections passed as argument exists
proc is-saved {args} {
foreach coll $args {
lassign [findCollections $coll exact] collfile colldesc
if {[string length $collfile]} {
return 1
}
}
# is something saved whatever it is?
return [expr {![llength $args] && [llength [findCollections]]}]
}
# test at least one of the directories passed as argument is set in MODULEPATH
proc is-used {args} {
set modpathlist [getModulePathList]
foreach path $args {
# transform given path in an absolute path to compare with dirs
# registered in the MODULEPATH env var which are returned absolute.
set abspath [getAbsolutePath $path]
if {$abspath in $modpathlist} {
return 1
}
}
# is something used whatever it is?
return [expr {![llength $args] && [llength $modpathlist]}]
}
# test at least one of the modulefiles passed as argument exists
proc is-avail {args} {
# parse module version specification
# a module name is mandatory
set args [parseModuleSpecification 0 0 0 0 {*}$args]
set ret 0
# disable error reporting to avoid modulefile errors
# to pollute result. Only if not already inhibited
set alreadyinhibit [getState inhibit_errreport]
if {!$alreadyinhibit} {
inhibitErrorReport
}
foreach mod $args {
lassign [getPathToModule $mod] modfile modname modnamevr
if {$modfile ne {}} {
set ret 1
break
}
}
# re-enable only is it was disabled from this procedure
if {!$alreadyinhibit} {
setState inhibit_errreport 0
}
return $ret
}
proc execShAndGetEnv {elt_ignored_list shell script args} {
set sep {%ModulesShToMod%}
set subsep {%ModulesSubShToMod%}
set shdesc [list $script {*}$args]
set sherr 0
set shellopts [list]
upvar ignvarlist ignvarlist
set ignvarlist [list OLDPWD PWD _ _AST_FEATURES PS1 _LMFILES_\
LOADEDMODULES]
# define shell command to run to source script and analyze the environment
# changes it performs
switch -- [file tail $shell] {
dash - sh {
# declare is not supported by dash but functions cannot be retrieved
# anyway, so keep using declare and throw errors out to avoid overall
# execution error. dash does not pass arguments to sourced script but
# it does not raise error if arguments are set
##nagelfar ignore +3 Found constant
set command "export -p; echo $sep; declare -f 2>/dev/null; echo\
$sep; alias; echo $sep; echo $sep; pwd; echo $sep; . [listTo\
shell $shdesc] 2>&1; echo $sep; export -p; echo $sep; declare -f\
2>/dev/null; echo $sep; alias; echo $sep; echo $sep; pwd"
set varre {export (\S+?)=["']?(.*?)["']?$}
set funcre {(\S+?) \(\)\s?\n?{\s?\n(.+?)\n}$}
set aliasre {(\S+?)='(.*?)'$}
set varvalmap [list {\"} \" \\\\ \\]
set alvalmap [list {'\''} ' {'"'"'} ']
}
bash {
##nagelfar ignore +2 Found constant
set command "export -p; echo $sep; declare -f; echo $sep; alias;\
echo $sep; complete; echo $sep; pwd; echo $sep; . [listTo shell\
$shdesc] 2>&1; echo $sep; export -p; echo $sep; declare -f; echo\
$sep; alias; echo $sep; complete; echo $sep; pwd"
set varre {declare -x (\S+?)="(.*?)"$}
set funcre {(\S+?) \(\)\s?\n{\s?\n(.+?)\n}$}
set aliasre {alias (\S+?)='(.*?)'$}
set compre {complete (.+?) (\S+?)$}
set comprevar [list match value name]
set varvalmap [list {\"} \" \\\\ \\]
set alvalmap [list {'\''} ']
lappend shellopts --noprofile --norc
}
bash-eval {
##nagelfar ignore +3 Found constant
set command "export -p; echo $sep; declare -f; echo $sep; alias;\
echo $sep; complete; echo $sep; pwd; echo $sep; eval \"\$([listTo\
shell $shdesc] 2>/dev/null)\"; echo $sep; export -p; echo $sep;\
declare -f; echo $sep; alias; echo $sep; complete; echo $sep; pwd"
set varre {declare -x (\S+?)="(.*?)"$}
set funcre {(\S+?) \(\)\s?\n{\s?\n(.+?)\n}$}
set aliasre {alias (\S+?)='(.*?)'$}
set compre {complete (.+?) (\S+?)$}
set comprevar [list match value name]
set varvalmap [list {\"} \" \\\\ \\]
set alvalmap [list {'\''} ']
lappend shellopts --noprofile --norc
}
ksh - ksh93 {
##nagelfar ignore +3 Found constant
set command "typeset -x; echo $sep; typeset +f | while read f; do\
typeset -f \${f%\\(\\)}; echo; done; echo $sep; alias; echo $sep;\
echo $sep; pwd; echo $sep; . [listTo shell $shdesc] 2>&1; echo\
$sep; typeset -x; echo $sep; typeset +f | while read f; do\
typeset -f \${f%\\(\\)}; echo; done; echo $sep; alias; echo $sep;\
echo $sep; pwd"
set varre {(\S+?)=\$?'?(.*?)'?$}
set funcre {(\S+?)\(\) {\n?(.+?)}[;\n]?$}
set aliasre {(\S+?)=\$?'?(.*?)'?$}
set varvalmap [list {\'} ']
set alvalmap [list {\"} \" {\\'} ' {\'} ' {\\\\} {\\}]
}
zsh {
##nagelfar ignore +2 Found constant
set command "typeset -x; echo $sep; declare -f; echo $sep; alias;\
echo $sep; echo $sep; pwd; echo $sep; . [listTo shell $shdesc]\
2>&1; echo $sep; typeset -x; echo $sep; declare -f; echo $sep;\
alias; echo $sep; echo $sep; pwd"
set varre {(\S+?)=\$?'?(.*?)'?$}
set funcre {(\S+?) \(\) {\n(.+?)\n}$}
set aliasre {(\S+?)=\$?'?(.*?)'?$}
set varvalmap [list {'\''} ']
set alvalmap [list {'\''} ']
}
csh {
##nagelfar ignore +2 Found constant
set command "setenv; echo $sep; echo $sep; alias; echo $sep; echo\
$sep; pwd; echo $sep; source [listTo shell $shdesc] >&\
/dev/stdout; echo $sep; setenv; echo $sep; echo $sep; alias; echo\
$sep; echo $sep; pwd"
set varre {(\S+?)=(.*?)$}
set aliasre {(\S+?)\t(.*?)$}
set varvalmap [list]
set alvalmap [list]
lappend shellopts -f
}
tcsh {
##nagelfar ignore +2 Found constant
set command "setenv; echo $sep; echo $sep; alias; echo $sep;\
complete; echo $sep; pwd; echo $sep; source [listTo shell\
$shdesc] >& /dev/stdout; echo $sep; setenv; echo $sep; echo $sep;\
alias; echo $sep; complete; echo $sep; pwd"
set varre {(\S+?)=(.*?)$}
set aliasre {(\S+?)\t\(?(.*?)\)?$}
set compre {(\S+?)\t(.*?)$}
set comprevar [list match name value]
set varvalmap [list]
set alvalmap [list]
lappend shellopts -f
}
fish {
# exclude from search builtins, fish-specific functions and private
# functions defined prior script evaluation: reduce this way the
# the number of functions to parse.
set getfunc "set funcout (string match -r -v \$funcfilter (functions\
-a -n) | while read f; functions \$f; echo '$subsep'; end)"
##nagelfar ignore +9 Found constant
set command "set -xgL; echo '$sep'; status test-feature\
regex-easyesc 2>/dev/null; and set escrepl '\\\\\\\\\$1'; or set\
escrepl '\\\\\\\\\\\\\\\$1'; set funcfilter \\^\\((string\
join '|' (string replace -r '(\\\[|\\.)' \$escrepl\
(builtin -n; functions -a -n | string split ', ' | string match\
-e -r '^_')))\\|fish\\.\\*\\)\\\$; $getfunc; $getfunc; string\
split \$funcout; echo '$sep'; string split \$funcout; echo\
'$sep'; complete; echo '$sep'; pwd; echo '$sep'; source [listTo\
shell $shdesc] 2>&1; or exit \$status; echo '$sep'; set -xgL;\
echo '$sep'; $getfunc; string split \$funcout; echo '$sep';\
string split \$funcout; echo '$sep'; complete; echo '$sep'; pwd"
set varre {^(\S+?\M) ?['"]?(.*?)['"]?$}
# exclude alias from function list
set funcre "^function (\\S+?)(?: \[^\\n\]*?--description\
(?!'?alias)\[^\\n\]+)?\\n(.+?)?\\s*\\nend\\n$subsep\$"
# fetch aliases from available functions
set aliasre "^function (\\S+?) \[^\\n\]*?--description\
'?alias\[^\\n\]+\\n\\s*(.+?)(?: \\\$argv)?\\s*\\nend\\n$subsep\$"
set compre {complete ((?:-\S+? )*?)(?:(?:-c|--command)\
)?([^-]\S+)(.*?)$}
set comprevar [list match valpart1 name valpart2]
# translate back fish-specific code
set varvalmap [list {' '} : {\'} ' {\"} \" \\\\ \\]
set alvalmap [list { $argv;} {}]
# fish builtins change LS_COLORS variable
lappend ignvarlist LS_COLORS
}
default {
knerror "Shell '$shell' not supported"
}
}
if {![file exists $script]} {
knerror "Script '$script' cannot be found"
}
set real_shell [expr {$shell eq {bash-eval} ? {bash} : $shell}]
set shellpath [getCommandPath $real_shell]
if {$shellpath eq {}} {
knerror "Shell '$shell' cannot be found"
}
set shellexec [list $shellpath {*}$shellopts -c $command]
reportDebug "running '$shellexec'"
if {[catch {set output [exec {*}$shellexec]} output]} {
set sherr 1
}
# link result variables to calling context
upvar cwdbefout cwdbefout cwdaftout cwdaftout
# extract each output sections
set idx 0
foreach varout {varbefout funcbefout aliasbefout compbefout cwdbefout\
scriptout varaftout funcaftout aliasaftout compaftout cwdaftout} {
##nagelfar vartype varout varName
if {[set sepidx [string first $sep $output $idx]] == -1} {
set $varout [string trimright [string range $output $idx end] \n]
if {$varout ne {cwdaftout} && !$sherr} {
knerror "Unexpected output when sourcing '$shdesc' in shell\
'$shell'"
}
} else {
set $varout [string trimright [string range $output $idx $sepidx-1]\
\n]
set idx [expr {$sepidx + [string length $sep] + 1}]
}
# remove expected Tcl error message
if {$sherr && $varout eq {scriptout} && [set erridx [string\
last {child process exited abnormally} [set $varout]]] != -1} {
set $varout [string range [set $varout] 0 $erridx-2]
}
}
if {$sepidx != -1 && !$sherr} {
knerror "Unexpected output when sourcing '$shdesc' in shell '$shell'"
}
reportDebug "script output is '$scriptout'"
if {$sherr} {
# throw error if script had an issue, send script output along if any
set errmsg "Script '$script' exited abnormally"
if {$scriptout ne {}} {
append errmsg "\n with following output\n$scriptout"
}
knerror $errmsg
}
# link result variables to calling context
upvar varbef varbef varaft varaft
upvar funcbef funcbef funcaft funcaft
upvar aliasbef aliasbef aliasaft aliasaft
upvar compbef compbef compaft compaft
# clear current directory change if ignored
if {{chdir} in $elt_ignored_list} {
set cwdaftout $cwdbefout
}
# extract environment variable information
if {{envvar} ni $elt_ignored_list} {
##nagelfar ignore Found constant
foreach {out arr} [list varbefout varbef varaftout varaft] {
##nagelfar vartype out varName
foreach {match name value} [regexp -all -inline -lineanchor $varre\
[set $out]] {
# convert shell-specific escaping
##nagelfar ignore Suspicious variable name
set ${arr}($name) [string map $varvalmap $value]
}
}
}
# extract function information if function supported by shell
if {{function} ni $elt_ignored_list && [info exists funcre]} {
##nagelfar ignore Found constant
foreach {out arr} [list funcbefout funcbef funcaftout funcaft] {
foreach {match name value} [regexp -all -inline -lineanchor $funcre\
[set $out]] {
# no specific escaping to convert for functions
##nagelfar ignore Suspicious variable name
set ${arr}($name) $value
}
}
}
# extract alias information
if {{alias} ni $elt_ignored_list} {
##nagelfar ignore Found constant
foreach {out arr} [list aliasbefout aliasbef aliasaftout aliasaft] {
foreach {match name value} [regexp -all -inline -lineanchor $aliasre\
[set $out]] {
##nagelfar ignore Suspicious variable name
set ${arr}($name) [string map $alvalmap $value]
}
}
}
# extract complete information if supported by shell
if {{complete} ni $elt_ignored_list && [info exists compre]} {
##nagelfar ignore Found constant
foreach {out arr} [list compbefout compbef compaftout compaft] {
##nagelfar ignore Non constant variable list to foreach statement
foreach $comprevar [regexp -all -inline -lineanchor $compre [set\
$out]] {
if {[info exists valpart1]} {
##nagelfar ignore Unknown variable
set value [concat $valpart1 $valpart2]
}
# no specific escaping to convert for completes
##nagelfar ignore Suspicious variable name
lappend ${arr}($name) $value
}
}
}
}
# execute script with args through shell and convert environment changes into
# corresponding modulefile commands
proc sh-to-mod {elt_ignored_list args} {
set modcontent [list]
set pathsep [getState path_separator]
set shell [lindex $args 0]
# evaluate script and retrieve environment before and after evaluation
# procedure will set result variables in current context
##nagelfar implicitvarcmd {execShAndGetEnv *} ignvarlist cwdbefout\
cwdaftout varbef varaft funcbef funcaft aliasbef aliasaft compbef\
compaft
execShAndGetEnv $elt_ignored_list {*}$args
# check environment variable change
lassign [getDiffBetweenArray varbef varaft] notaft diff notbef
foreach name $notaft {
# also ignore Modules variables intended for internal use
if {$name ni $ignvarlist && ![string equal -length 10 $name\
__MODULES_]} {
lappend modcontent [list unsetenv $name]
}
}
foreach name $diff {
if {$name ni $ignvarlist && ![string equal -length 10 $name\
__MODULES_]} {
# new value is totally different (also consider a bare ':' as a
# totally different value to avoid erroneous matches)
if {$varbef($name) eq $pathsep || [set idx [string first\
$varbef($name) $varaft($name)]] == -1} {
lappend modcontent [list setenv $name $varaft($name)]
} else {
# content should be prepended
if {$idx > 0} {
set modcmd [list prepend-path]
# check from the end to get the largest chunk to prepend
set idx [string last $varbef($name) $varaft($name)]
# get delimiter from char found between new and existing value
set delim [string index $varaft($name) $idx-1]
if {$delim ne $pathsep} {
lappend modcmd -d $delim
}
lappend modcmd $name
# split value and remove duplicate entries
set vallist [list]
appendNoDupToList vallist {*}[split [string range\
$varaft($name) 0 $idx-2] $delim]
# an empty element is added
if {![llength $vallist]} {
lappend vallist {}
}
lappend modcontent [list {*}$modcmd {*}$vallist]
}
# content should be appended
if {($idx + [string length $varbef($name)]) < [string length\
$varaft($name)]} {
set modcmd [list append-path]
set delim [string index $varaft($name) $idx+[string length\
$varbef($name)]]
if {$delim ne $pathsep} {
lappend modcmd -d $delim
}
lappend modcmd $name
set vallist [list]
appendNoDupToList vallist {*}[split [string range\
$varaft($name) [expr {$idx + [string length $varbef($name)]\
+ 1}] end] $delim]
if {![llength $vallist]} {
lappend vallist {}
}
lappend modcontent [list {*}$modcmd {*}$vallist]
}
}
}
}
foreach name $notbef {
if {$name ni $ignvarlist && ![string equal -length 10 $name\
__MODULES_]} {
if {[string first $pathsep $varaft($name)] == -1} {
lappend modcontent [list setenv $name $varaft($name)]
} else {
# define a path-like variable if path separator found in it
# split value and remove duplicate entries
set vallist [list]
appendNoDupToList vallist {*}[split $varaft($name) $pathsep]
lappend modcontent [list prepend-path $name {*}$vallist]
}
}
}
# check function change
lassign [getDiffBetweenArray funcbef funcaft] notaft diff notbef
foreach name $notaft {
lappend modcontent [list unset-function $name]
}
foreach name [list {*}$diff {*}$notbef] {
lappend modcontent [list set-function $name \n$funcaft($name)]
}
# check alias change
lassign [getDiffBetweenArray aliasbef aliasaft] notaft diff notbef
foreach name $notaft {
lappend modcontent [list unset-alias $name]
}
foreach name [list {*}$diff {*}$notbef] {
lappend modcontent [list set-alias $name $aliasaft($name)]
}
# check complete change
set real_shell [expr {$shell eq {bash-eval} ? {bash} : $shell}]
lassign [getDiffBetweenArray compbef compaft] notaft diff notbef
foreach name $notaft {
lappend modcontent [list uncomplete $name]
}
foreach name [list {*}$diff {*}$notbef] {
foreach body $compaft($name) {
lappend modcontent [list complete $real_shell $name $body]
}
}
# check current working directory change
if {$cwdbefout ne $cwdaftout} {
lappend modcontent [list chdir $cwdaftout]
}
# sort result to ensure consistent output whatever the evaluation shell
set modcontent [lsort -dictionary $modcontent]
reportDebug "resulting env changes '$modcontent'"
return $modcontent
}
proc parseSourceShArgs {args} {
set elt_ignored_list {}
set i 0
foreach arg $args {
incr i
if {[info exists nextargisval]} {
##nagelfar vartype nextargisval varName
set $nextargisval $arg
unset nextargisval
} else {
switch -glob -- $arg {
--ignore {
set nextargisval ignore_opt_raw
}
-* {
knerror "Invalid option '$arg'"
}
default {
set shell $arg
# end option parsing: remaining elts are allowed values
break
}
}
set prevarg $arg
}
}
if {[info exists nextargisval]} {
knerror "Missing value for '$prevarg' option"
}
if {![info exists shell] || $i == [llength $args]} {
knerror "wrong # args: should be \"source-sh ?--ignore? ?eltlist? shell\
script ?arg ...?\""
}
set script_args [lassign [lrange $args $i end] script]
if {[info exists ignore_opt_raw]} {
set elt_ignored_list [split $ignore_opt_raw :]
set allowed_elt_ignored_list {envvar function alias chdir complete}
foreach elt_ignored $elt_ignored_list {
if {$elt_ignored ni $allowed_elt_ignored_list} {
knerror "Invalid ignored element '$elt_ignored'"
}
}
}
return [list $elt_ignored_list $shell $script $script_args]
}
proc source-sh {args} {
lassign [parseSourceShArgs {*}$args] elt_ignored_list shell script\
script_args
# evaluate script and get the environment changes it performs translated
# into modulefile commands
set shtomodargs [list $shell $script {*}$script_args]
set modcontent [sh-to-mod $elt_ignored_list {*}$shtomodargs]
# register resulting modulefile commands
setLoadedSourceSh [currentState modulename] [list $shtomodargs\
{*}$modcontent]
# get name of current module Tcl interp
set itrp [getCurrentModfileInterpName]
# evaluate resulting modulefile commands through current Tcl interp
foreach modcmd $modcontent {
interp eval $itrp $modcmd
}
}
# undo source-sh in unload mode
proc source-sh-un {args} {
lassign [parseSourceShArgs {*}$args] elt_ignored_list shell script\
script_args
set shtomodargs [list $shell $script {*}$script_args]
# find commands resulting from source-sh evaluation recorded in env
set modcontent [getLoadedSourceShScriptContent [currentState modulename]\
$shtomodargs]
# get name of current module unload Tcl interp
set itrp [getCurrentModfileInterpName]
# evaluate each recorded command in unload Tcl interp to get them reversed
foreach modcmd $modcontent {
interp eval $itrp $modcmd
}
}
# report underlying modulefile cmds in display mode
proc source-sh-di {args} {
lassign [parseSourceShArgs {*}$args] elt_ignored_list shell script\
script_args
set shtomodargs [list $shell $script {*}$script_args]
# if module loaded, get as much content from environment as possible
if {[is-loaded [currentState modulename]]} {
# find commands resulting from source-sh evaluation recorded in env
set reccontent [getLoadedSourceShScriptContent [currentState\
modulename] $shtomodargs]
# need to evaluate script to get alias/function/complete definition
execShAndGetEnv $elt_ignored_list {*}$shtomodargs
set modcontent {}
foreach cmd $reccontent {
# build modulefile content to show with recorded elements in env and
# alias/function/complete definition obtained by reevaluating script
switch -- [lindex $cmd 0] {
complete {
set cpname [lindex $cmd 2]
if {[info exists compaft($cpname)]} {
set cpbodylist $compaft($cpname)
} else {
set cpbodylist [list {}]
}
foreach cpbody $cpbodylist {
lappend modcontent [list complete $shell $cpname $cpbody]
}
}
set-alias {
set alname [lindex $cmd 1]
if {[info exists aliasaft($alname)]} {
set albody $aliasaft($alname)
} else {
set albody {}
}
lappend modcontent [list set-alias $alname $albody]
}
set-function {
set fnname [lindex $cmd 1]
if {[info exists funcaft($fnname)]} {
set fnbody \n$funcaft($fnname)
} else {
set fnbody {}
}
lappend modcontent [list set-function $fnname $fnbody]
}
default {
lappend modcontent $cmd
}
}
}
# not loaded, so get full content from script evaluation
} else {
set modcontent [sh-to-mod $elt_ignored_list {*}$shtomodargs]
}
# get name of current module unload Tcl interp
set itrp [getCurrentModfileInterpName]
# evaluate each recorded command in display Tcl interp to get them printed
foreach modcmd $modcontent {
interp eval $itrp $modcmd
}
}
proc isVariantNameValid {name} {
return [expr {![string is digit -strict $name] && [regexp\
{^[A-Za-z0-9_][A-Za-z0-9_-]*$} $name]}]
}
# parse arguments set on a variant modulefile command
proc parseVariantCommandArgs {args} {
set dflvalue {}
set defdflvalue 0
set isboolean 0
set i 0
foreach arg $args {
incr i
if {[info exists nextargisval]} {
##nagelfar vartype nextargisval varName
set $nextargisval $arg
unset nextargisval
} else {
switch -glob -- $arg {
--default {
##nagelfar ignore Found constant
set nextargisval dflvalue
set defdflvalue 1
}
--boolean {
set isboolean 1
}
-* {
knerror "Invalid option '$arg'"
}
default {
set name $arg
# end option parsing: remaining elts are allowed values
break
}
}
set prevarg $arg
}
}
if {[info exists nextargisval]} {
knerror "Missing value for '$prevarg' option"
}
# check variant name and allowed values
if {![info exists name]} {
knerror {No variant name specified}
}
if {![isVariantNameValid $name]} {
knerror "Invalid variant name '$name'"
}
set values [lrange $args $i end]
if {$isboolean} {
if {[llength $values]} {
knerror "No value should be defined for boolean variant '$name'"
} else {
set values {1 0 yes no true false on off}
}
} else {
foreach val $values {
if {[string is boolean -strict $val] && ![string is integer\
-strict $val]} {
knerror "Boolean value defined on non-boolean variant '$name'"
}
}
}
if {$defdflvalue && $isboolean} {
# default value should be bool if variant is boolean
if {![string is boolean -strict $dflvalue]} {
knerror "Boolean value is expected as default value for variant\
'$name'"
# translate default value in boolean canonical form (0 or 1)
} else {
set dflvalue [string is true -strict $dflvalue]
}
}
return [list $name $values $defdflvalue $dflvalue $isboolean]
}
proc variant {itrp args} {
# parse args
lassign [parseVariantCommandArgs {*}$args] name values defdflvalue\
dflvalue isboolean
# version variant is forbidden until specific implementation
if {$name eq {version}} {
knerror "'version' is a restricted variant name" MODULES_ERR_GLOBAL
}
# get variant list defined on command line
set vrlist [getVariantListFromVersSpec [currentState modulenamevr]]
# search for variant specification (most right-positionned value wins)
for {set i [expr {[llength $vrlist]-1}]} {$i >= 0} {incr i -1} {
lassign [lindex $vrlist $i] vrname vrnot vrisbool vrvalue
if {$vrname eq $name} {
# translate value in boolean canonical form (0/1) if variant is bool
if {$isboolean && [string is boolean -strict $vrvalue]} {
set value [string is true -strict $vrvalue]
} else {
set value $vrvalue
}
set isdflval [expr {$defdflvalue && $dflvalue eq $value}]
break
}
}
# error if variant has not been specified unless a default is defined
if {![info exists isdflval]} {
if {$defdflvalue} {
set value $dflvalue
# 2 means default value automatically set
set isdflval 2
# no error if variant is undefined on display mode, return here not to
# set any variant-specific variable
} elseif {[currentState mode] eq {display}} {
return
} else {
set allowedmsg [expr {![llength $values] ? {} : "\nAllowed values\
are: $values"}]
knerror "No value specified for variant '$name'$allowedmsg"\
MODULES_ERR_GLOBAL
}
}
# check defined value
if {($isboolean && ![string is boolean -strict $value]) || (!$isboolean &&\
[llength $values] && $value ni $values)} {
# invalid value error is not a modulefile error
knerror "Invalid value '$value' for variant '$name'\nAllowed values\
are: $values" MODULES_ERR_GLOBAL
} else {
# instantiate variant in modulefile context
reportDebug "Set variant on $itrp: ModuleVariant($name) = '$value'"
$itrp eval set "{::ModuleVariant($name)}" "{$value}"
# after modfile interp ModuleVariant is unset by resetInterpState
# record variant for persistency (name value is-boolean is-default)
# unless module is currently unloading
if {[currentState mode] ne {unload}} {
setLoadedVariant [currentState modulename] [list $name $value\
$isboolean $isdflval]
}
}
}
# optimized variant command for whatis mode: init entry in ModuleVariant array
# to avoid variable being undefined when accessed during modulefile evaluation
proc variant-wh {itrp args} {
# parse args
lassign [parseVariantCommandArgs {*}$args] name values defdflvalue\
dflvalue isboolean
# instantiate variant in modulefile context to an empty value
reportDebug "Set variant on $itrp: ModuleVariant($name) = ''"
$itrp eval set "{::ModuleVariant($name)}" "{}"
}
proc getvariant {itrp args} {
# parse args
lassign [parseGetenvCommandArgs getvariant {*}$args] name valifundef\
returnval
if {[currentState mode] ne {display} || $returnval} {
if {[$itrp eval info exists "{::ModuleVariant($name)}"]} {
return [$itrp eval set "{::ModuleVariant($name)}"]
} else {
return $valifundef
}
} else {
return [sgr va "{$name}"]
}
}
proc require-fullname {} {
# test specified name is any alternative name of currently evaluating mod
# expect the default and parent dir name (which are considered unqualified)
if {![modEq [currentState specifiedname] [currentState modulename] eqspec\
1 4]} {
knerror {Module version must be specified to load module}\
MODULES_ERR_GLOBAL
}
}
proc prereqAllModfileCmd {tryload auto args} {
lassign [parsePrereqCommandArgs prereq-all {*}$args] tag_list\
modulepath_list optional opt_list args
# call prereq over each arg independently to emulate a prereq-all
foreach arg $args {
prereqAnyModfileCmd $tryload $auto {*}$opt_list $arg
}
}
proc always-load {args} {
lassign [parsePrereqCommandArgs always-load {*}$args] tag_list\
modulepath_list optional opt_list args
# append keep-loaded tag to the list, second tag list in opt_list will take
# over the initial list defined
lappend tag_list keep-loaded
lappend opt_list --tag [join $tag_list :]
# auto load is inhibited if currently in DepRe context
set auto [expr {[currentModuleEvalContext] eq {depre} ? {0} : {1}}]
# load all module specified
prereqAllModfileCmd 0 $auto {*}$opt_list {*}$args
}
proc family {name} {
# ensure name is valid to be part of the name of an environment variable
if {![string length $name] || ![regexp {^[A-Za-z0-9_]*$} $name]} {
knerror "Invalid family name '$name'"
}
# only one loaded module could provide a given family
conflict $name
# set name as an alias for currently loading module
setLoadedAltname [currentState modulename] [list al $name]
# set variable in environment to know what module name provides family
set upname [string toupper $name]
lassign [getModuleNameVersion] mod modname modversion
if {$modname eq {.}} {
set modname [currentState modulename]
}
setenv MODULES_FAMILY_$upname $modname
# also set Lmod-specific variable for compatibility
setenv LMOD_FAMILY_$upname $modname
}
proc family-un {name} {
# ensure name is valid to be part of the name of an environment variable
if {![string length $name] || ![regexp {^[A-Za-z0-9_]*$} $name]} {
knerror "Invalid family name '$name'"
}
# unset family-related environment variable
set upname [string toupper $name]
unsetenv MODULES_FAMILY_$upname
unsetenv LMOD_FAMILY_$upname
}
proc complete {shell name body} {
if {![string length $name]} {
knerror "Invalid command name '$name'"
}
# append definition retaining for which shell they are made
# also some shells may set multiple definitions for a single name
lappend ::g_Completes($name) $shell $body
set ::g_stateCompletes($name) new
# current module is qualified for refresh evaluation
lappendState -nodup refresh_qualified [currentState modulename]
}
# undo complete in unload mode
proc complete-un {shell name body} {
return [uncomplete $name]
}
proc uncomplete {name} {
if {![string length $name]} {
knerror "Invalid command name '$name'"
}
set ::g_Completes($name) {}
set ::g_stateCompletes($name) del
}
proc pushenv {var val} {
# save initial value in pushenv value stack
set pushvar [getPushenvVarName $var]
if {![isEnvVarDefined $pushvar] && [isEnvVarDefined $var]} {
prepend-path $pushvar &$::env($var)
}
# clean any previously defined reference counter array
unset-env [getModshareVarName $var] 1
# Set the variable for later use during the modulefile evaluation
set-env $var $val
# add this value to the stack associated to current module name in order to
# know what element to remove from stack when unloading
prepend-path $pushvar [currentState modulename]&$val
return {}
}
# undo pushenv in unload mode
proc pushenv-un {var val} {
# clean any existing reference counter array
unset-env [getModshareVarName $var] 1
# update value stack
set pushvar [getPushenvVarName $var]
if {[isEnvVarDefined $pushvar]} {
set pushlist [split $::env($pushvar) :]
# find value pushed by currently evaluated module and remove it
set popidx [lsearch -exact $pushlist [currentState modulename]&$val]
if {$popidx != -1} {
set pushlist [lreplace $pushlist $popidx $popidx]
remove-path --index $pushvar $popidx
}
if {[llength $pushlist]} {
# fetch value on top of the stack
set validx [expr {[string first & [lindex $pushlist 0]] + 1}]
set popval [string range [lindex $pushlist 0] $validx end]
# restore top value if different from current one
if {![envVarEquals $var $popval]} {
set-env $var $popval
}
# if last element remaining in stack is the initial value prior first
# pushenv, then clear the stack totally
if {$validx == 1} {
remove-path --index $pushvar 0
}
} else {
unset-env $var 0 $val
}
} else {
# Add variable to the list of variable to unset in shell output code but
# set it in interp context as done on load mode for later use during the
# modulefile evaluation
unset-env $var 0 $val
}
return {}
}
# optimized pushenv for whatis mode (same approach than setenv-wh)
proc pushenv-wh {var val} {
setEnvVarIfUndefined $var {}
return {}
}
proc modulepath-label {modpath label} {
set modpath [getAbsolutePath $modpath]
set ::g_modulepathLabel($modpath) $label
reportDebug "modpath=$modpath, label='$label'"
}
proc unique-name-conflict {} {
# skip if unique_name_loaded configuration is disabled
if {![getConf unique_name_loaded]} {
return
}
# get root name of all names (actual and alternatives) of currently
# evaluating module
set root_name_list [list]
set mod [currentState modulename]
foreach name [list $mod {*}[getAllModuleResolvedName $mod]] {
appendNoDupToList root_name_list [lindex [file split $name] 0]
}
# declare conflict over all these names
conflict {*}$root_name_list
}
proc sourceModfileCmd {itrp filename} {
if {![info exists ::source_cache($filename)]} {
set ::source_cache($filename) [readFile $filename]
}
interp eval $itrp info script $filename
interp eval $itrp $::source_cache($filename)
interp eval $itrp info script [currentState modulefile]
}
proc lsb-release {what} {
return [switch -- $what {
id {getState lsb_id}
release {getState lsb_release}
codename {getState lsb_codename}
default {knerror "lsb-release $what not supported"}
}]
}
proc registerCurrentModuleUse {args} {
if {[string length [currentState modulename]]} {
setLoadedUse [currentState modulename] {*}$args
}
}
proc module-help {args} {
lappend ::g_help_lines [join $args]
}
proc getModuleHelpLines {} {
if {[info exists ::g_help_lines]} {
return $::g_help_lines
}
}
# convert property value as module tag (property name is ignored)
proc add-property {name value} {
set tag_list [split $value :]
set mod [currentState modulename]
foreach tag $tag_list {
module-tag $tag $mod
}
}
proc module-warn {args} {
# parse application criteria arguments to determine if command apply
lassign [parseApplicationCriteriaArgs 1 0 {*}$args] apply isnearly after\
otherargs
# parse remaining argument list, do it even if command does not apply to
# raise any command specification error
foreach arg $otherargs {
if {[info exists nextargisval]} {
##nagelfar vartype nextargisval varName
set $nextargisval $arg
unset nextargisval
} else {
switch -glob -- $arg {
--message {
set nextargisval message
}
-* {
knerror "Invalid option '$arg'"
}
default {
lappend modarglist $arg
}
}
set prevarg $arg
}
}
if {[info exists nextargisval]} {
knerror "Missing value for '$prevarg' option"
}
if {![info exists message]} {
knerror {No message specified in argument}
}
if {![info exists modarglist]} {
knerror {No module specified in argument}
}
# skip tag record if application criteria are not met
if {$apply} {
##nagelfar ignore Found constant
set proplist [list message $message]
# record each hide spec after parsing them
foreach modarg [parseModuleSpecification 0 0 0 0 {*}$modarglist] {
setModspecTag $modarg warning $proplist
}
}
}
proc provide {args} {
if {![llength $args]} {
knerror {No module specified in argument}
}
set current_mod [currentState modulename]
foreach alias $args {
setLoadedAltname $current_mod [list al $alias]
}
}
# ;;; Local Variables: ***
# ;;; mode:tcl ***
# ;;; End: ***
# vim:set tabstop=3 shiftwidth=3 expandtab autoindent:
|