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
|
#!/bin/sh
# -*- tcl -*- \
exec tclsh "$0" ${1+"$@"}
# --------------------------------------------------------------
# Perform various checks and operations on the distribution.
# SAK = Swiss Army Knife.
set distribution [file dirname [info script]]
set auto_path [linsert $auto_path 0 [file join $distribution modules]]
set critcldefault {}
set critclnotes {}
set dist_excluded {}
proc package_name {text} {global package_name ; set package_name $text}
proc package_version {text} {global package_version ; set package_version $text}
proc dist_exclude {path} {global dist_excluded ; lappend dist_excluded $path}
proc critcl {name files} {
global critclmodules
set critclmodules($name) $files
return
}
proc critcl_main {name files} {
global critcldefault
set critcldefault $name
critcl $name $files
return
}
proc critcl_notes {text} {
global critclnotes
set critclnotes [string map {{\n } \n} $text]
return
}
source [file join $distribution support installation version.tcl] ; # Get version information.
set package_nv ${package_name}-${package_version}
catch {eval file delete -force [glob [file rootname [info script]].tmp.*]}
# --------------------------------------------------------------
# SAK internal debugging support.
# Configuration, change as needed
set debug 0
if {$debug} {
proc sakdebug {script} {uplevel 1 $script ; return}
} else {
proc sakdebug {args} {}
}
# --------------------------------------------------------------
# Internal helper to load packages straight out of the local directory
# tree. Not something from an installation, possibly incompatible.
proc getpackage {package tclmodule} {
global distribution
if {[catch {package present $package}]} {
set src [file join \
$distribution modules \
$tclmodule]
if {[file exists $src]} {
uplevel #0 [list source $src]
} else {
# Fallback
package require $package
}
}
}
# --------------------------------------------------------------
proc tclfiles {} {
global distribution
getpackage fileutil fileutil/fileutil.tcl
set fl [fileutil::findByPattern $distribution -glob *.tcl]
# Remove files under SCCS. They are repository, not sources to check.
set tmp {}
foreach f $fl {
if {[string match *SCCS* $f]} continue
lappend tmp $f
}
proc tclfiles {} [list return $tmp]
return $tmp
}
proc modtclfiles {modules} {
global mfiles guide
load_modinfo
set mfiles [list]
foreach m $modules {
eval $guide($m,pkg) $m __dummy__
}
return $mfiles
}
proc modules {} {
global distribution
set fl [list]
foreach f [glob -nocomplain [file join $distribution modules *]] {
if {![file isdirectory $f]} {continue}
if {[string match CVS [file tail $f]]} {continue}
if {![file exists [file join $f pkgIndex.tcl]]} {continue}
lappend fl [file tail $f]
}
set fl [lsort $fl]
proc modules {} [list return $fl]
return $fl
}
proc modules_mod {m} {
return [expr {[lsearch -exact [modules] $m] >= 0}]
}
proc dealias {modules} {
set _ {}
foreach m $modules {
if {[file exists $m]} {
set m [file tail $m]
}
lappend _ $m
}
return $_
}
proc load_modinfo {} {
global distribution modules guide
source [file join $distribution support installation modules.tcl] ; # Get list of installed modules.
source [file join $distribution support installation actions.tcl] ; # Get installer support code.
proc load_modinfo {} {}
return
}
proc imodules {} {global modules ; load_modinfo ; return $modules}
proc imodules_mod {m} {
global modules
load_modinfo
return [expr {[lsearch -exact $modules $m] > 0}]
}
# Result: dict (package name --> list of package versions).
proc loadpkglist {fname} {
set f [open $fname r]
foreach line [split [read $f] \n] {
set line [string trim $line]
if {[string match @* $line]} continue
if {$line == {}} continue
foreach {n v} $line break
lappend p($n) $v
set p($n) [lsort -uniq -dict $p($n)]
}
close $f
return [array get p]
}
# Result: dict (package name => list of (list of package versions, module)).
proc ipackages {args} {
# Determine indexed packages (ifneeded, pkgIndex.tcl)
global distribution
if {[llength $args] == 0} {set args [modules]}
array set p {}
foreach m $args {
set f [open [file join $distribution modules $m pkgIndex.tcl] r]
foreach line [split [read $f] \n] {
if { [regexp {#} $line]} {continue}
if {![regexp {ifneeded} $line]} {continue}
regsub {^.*ifneeded } $line {} line
regsub {([0-9]) \[.*$} $line {\1} line
foreach {n v} $line break
set v [string trimright $v \\]
if {![info exists p($n)]} {
set p($n) [list $v $m]
} else {
# We have multiple versions of the same package. We
# remember all versions.
foreach {vlist mx} $p($n) break
lappend vlist $v
set p($n) [list [lsort -uniq -dict $vlist] $mx]
}
}
close $f
}
return [array get p]
}
# Result: dict (package name --> list of package versions).
proc ppackages {args} {
# Determine provided packages (provide, *.tcl - pkgIndex.tcl)
# We cache results for a bit of speed, some stuff uses this
# multiple times for the same arguments.
puts /PP/$args//
global ppcache
if {[info exists ppcache($args)]} {
puts /PP/CACHED/res=(($ppcache($args)))
return $ppcache($args)
}
global p pf currentfile
array set p {}
if {[llength $args] == 0} {
set files [tclfiles]
} else {
set files [modtclfiles $args]
}
getpackage fileutil fileutil/fileutil.tcl
set capout [fileutil::tempfile] ; set capcout [open $capout w]
set caperr [fileutil::tempfile] ; set capcerr [open $caperr w]
array set notprovided {}
foreach f $files {
# We ignore package indices and all files not in a module.
if {[string equal pkgIndex.tcl [file tail $f]]} {continue}
if {![regexp modules $f]} {continue}
# We use two methods to extract the version information from a
# module and its packages. First we do a static scan for
# appropriate statements. If that did not work out we try to
# execute the script in a modified interpreter which lets us
# pick up dynamically generated version data (like stored in
# variables). If the second method fails as well we give up.
# Method I. Static scan.
# We do heuristic scanning of the code to locate suitable
# package provide statements.
set fh [open $f r]
set currentfile [eval file join [lrange [file split $f] end-1 end]]
set ok -1
foreach line [split [read $fh] \n] {
if {[regexp "\#\\s*@sak\\s+notprovided\\s+(\[^\\s\]+)" $line -> nppname]} {
sakdebug {puts stderr "PRAGMA notprovided = $nppname"}
set notprovided($nppname) .
}
regsub "\#.*$" $line {} line
if {![regexp {provide} $line]} {continue}
if {![regexp {package} $line]} {continue}
# Now a stronger check for the actual command
if {![regexp {package[ ][ ]*provide} $line]} {continue}
set xline $line
regsub {^.*provide } $line {} line
regsub {\].*$} $line {\1} line
sakdebug {puts stderr __$f\ _________$line}
#foreach {n v} $line break
if {[catch {
set n [lindex $line 0]
set v [lindex $line 1]
} err]} {
sakdebug {puts stderr "Line: $line of file $f threw $err"}
continue
}
# HACK ...
# Module 'page', package 'page::gen::peg::cpkg'.
# Has a provide statement inside a template codeblock.
# Name is placeholder @@. Ignore this specific name.
# Better would be to use general static Tcl parsing
# to find that the string is a variable value.
if {[string equal $n @@]} continue
if {[regexp {^[0-9]+(\.[0-9]+)*$} $v]} {
lappend p($n) $v
set p($n) [lsort -uniq -dict $p($n)]
set pf($n,$v) $currentfile
set ok 1
# We continue the scan. The file may provide several
# versions of the same package, or multiple packages.
continue
}
# 'package provide foo' are tests. Ignore.
if {$v == ""} continue
# We do not set the state to bad if we found ok provide
# statements before, only if nothing was found before.
if {$ok < 0} {
set ok 0
# No good version found on the current line. We scan
# further through the file and hope for more luck.
sakdebug {puts stderr @_$f\ _________$xline\t<$n>\t($v)}
}
}
close $fh
# Method II. Restricted Execution.
# We now try to run the code through a safe interpreter
# and hope for better luck regarding package information.
if {$ok == -1} {sakdebug {puts stderr $f\ IGNORE}}
if {$ok == 0} {
sakdebug {puts -nonewline stderr $f\ EVAL}
# Source the code into a sub-interpreter. The sub
# interpreter overloads 'package provide' so that the
# information about new packages goes directly to us. We
# also make sure that the sub interpreter doesn't kill us,
# and will not get stuck early by trying to load other
# files, or when creating procedures in namespaces which
# do not exist due to us disabling most of the package
# management.
set fh [open $f r]
set ip [interp create]
# Kill control structures. Namespace is required, but we
# skip everything related to loading of packages,
# i.e. 'command import'.
$ip eval {
rename ::if ::_if_
rename ::namespace ::_namespace_
proc ::if {args} {}
proc ::namespace {cmd args} {
#puts stderr "_nscmd_ $cmd"
::_if_ {[string equal $cmd import]} return
#puts stderr "_nsdo_ $cmd $args"
return [uplevel 1 [linsert $args 0 ::_namespace_ $cmd]]
}
}
# Kill more package stuff, and ensure that unknown
# commands are neither loaded nor abort execution. We also
# stop anything trying to kill the application at large.
interp alias $ip package {} xPackage
interp alias $ip source {} xNULL
interp alias $ip unknown {} xNULL
interp alias $ip proc {} xNULL
interp alias $ip exit {} xNULL
# From here on no redefinitions anymore, proc == xNULL !!
$ip eval {close stdout} ; interp share {} $capcout $ip
$ip eval {close stderr} ; interp share {} $capcerr $ip
if {[catch {$ip eval [read $fh]} msg]} {
sakdebug {puts stderr "ERROR in $currentfile:\n$::errorInfo\n"}
}
sakdebug {puts stderr ""}
close $fh
interp delete $ip
}
}
close $capcout ; file delete $capout
close $capcerr ; file delete $caperr
# Process the accumulated pragma information, remove all the
# packages which exist but not really, in terms of indexing.
foreach n [array names notprovided] {
catch { unset p($n) }
array unset pf $n,*
}
set pp [array get p]
unset p
set ppcache($args) $pp
puts /PP/res=(($pp))
return $pp
}
proc xNULL {args} {}
proc xPackage {cmd args} {
if {[string equal $cmd provide]} {
global p pf currentfile
foreach {n v} $args break
# No version specified, this is an inquiry, we ignore these.
if {$v == {}} {return}
sakdebug {puts stderr \tOK\ $n\ =\ $v}
lappend p($n) $v
set p($n) [lsort -uniq -dict $p($n)]
set pf($n,$v) $currentfile
}
return
}
proc sep {} {puts ~~~~~~~~~~~~~~~~~~~~~~~~}
proc gd-cleanup {} {
global package_nv
puts {Cleaning up...}
set fl [glob -nocomplain ${package_nv}*]
foreach f $fl {
puts " Deleting $f ..."
catch {file delete -force $f}
}
return
}
proc gd-gen-archives {} {
global package_name package_nv
puts {Generating archives...}
set tar [auto_execok tar]
if {$tar != {}} {
puts " Gzipped tarball (${package_nv}.tar.gz)..."
catch {
exec $tar cf - ${package_nv} | gzip --best > ${package_nv}.tar.gz
}
set bzip [auto_execok bzip2]
if {$bzip != {}} {
puts " Bzipped tarball (${package_nv}.tar.bz2)..."
exec tar cf - ${package_nv} | bzip2 > ${package_nv}.tar.bz2
}
set xz [auto_execok xz]
if {$xz != {}} {
puts " Xzipped tarball (${package_nv}.tar.xz)..."
exec tar cf - ${package_nv} | xz > ${package_nv}.tar.xz
}
}
set zip [auto_execok zip]
if {$zip != {}} {
puts " Zip archive (${package_nv}.zip)..."
catch {
exec $zip -r ${package_nv}.zip ${package_nv}
}
}
set sdx [auto_execok sdx]
if {$sdx != {}} {
file copy -force [file join ${package_nv} support installation main.tcl] \
[file join ${package_nv} main.tcl]
file rename ${package_nv} ${package_name}.vfs
puts " Starkit (${package_nv}.kit)..."
exec sdx wrap ${package_name}
file rename ${package_name} ${package_nv}.kit
if {![file exists tclkit]} {
puts " No tclkit present in current working directory, no starpack."
} else {
puts " Starpack (${package_nv}.exe)..."
exec sdx wrap ${package_name} -runtime tclkit
file rename ${package_name} ${package_nv}.exe
}
file rename ${package_name}.vfs ${package_nv}
}
puts { Keeping directory for other archive types}
## Keep the directory for 'sdx' - kit/pack
return
}
proc xcopyfile {src dest} {
# dest can be dir or file
global mfiles
lappend mfiles $src
return
}
proc xcopy {src dest recurse {pattern *}} {
if {[string equal $pattern *] || !$recurse} {
foreach file [glob [file join $src $pattern]] {
set base [file tail $file]
set sub [file join $dest $base]
if {0 == [string compare CVS $base]} {continue}
if {[file isdirectory $file]} then {
if {$recurse} {
xcopy $file $sub $recurse $pattern
}
} else {
xcopyfile $file $sub
}
}
} else {
foreach file [glob [file join $src *]] {
set base [file tail $file]
set sub [file join $dest $base]
if {[string equal CVS $base]} {continue}
if {[file isdirectory $file]} then {
if {$recurse} {
xcopy $file $sub $recurse $pattern
}
} else {
if {![string match $pattern $base]} {continue}
xcopyfile $file $sub
}
}
}
}
proc xxcopy {src dest recurse {pattern *}} {
global package_name
file mkdir $dest
foreach file [glob -nocomplain [file join $src $pattern]] {
set base [file tail $file]
set sub [file join $dest $base]
# Exclude CVS, SCCS, ... automatically, and possibly the temp
# hierarchy itself too.
if {0 == [string compare CVS $base]} {continue}
if {0 == [string compare SCCS $base]} {continue}
if {0 == [string compare BitKeeper $base]} {continue}
if {[string match ${package_name}-* $base]} {continue}
if {[string match *~ $base]} {continue}
if {[file isdirectory $file]} then {
if {$recurse} {
file mkdir $sub
xxcopy $file $sub $recurse $pattern
}
} else {
puts -nonewline stdout . ; flush stdout
file copy -force $file $sub
}
}
}
proc gd-assemble {} {
global package_nv distribution dist_excluded
puts "Assembling distribution in directory '${package_nv}'"
xxcopy $distribution ${package_nv} 1
foreach f $dist_excluded {
file delete -force [file join $package_nv $f]
}
puts ""
return
}
proc normalize-version {v} {
# Strip everything after the first non-version character, and any
# trailing dots left behind by that, to avoid the insertion of bad
# version numbers into the generated .tap file.
regsub {[^0-9.].*$} $v {} v
return [string trimright $v .]
}
proc gd-gen-tap {} {
getpackage textutil textutil/textutil.tcl
getpackage fileutil fileutil/fileutil.tcl
global package_name package_version distribution tcl_platform
set pname [textutil::cap $package_name]
set modules [imodules]
array set pd [getpdesc]
set lines [list]
# Header
lappend lines {format {TclDevKit Project File}}
lappend lines {fmtver 2.0}
lappend lines {fmttool {TclDevKit TclApp PackageDefinition} 2.5}
lappend lines {}
lappend lines "## Saved at : [clock format [clock seconds]]"
lappend lines "## By : $tcl_platform(user)"
lappend lines {##}
lappend lines "## Generated by \"[file tail [info script]] tap\""
lappend lines "## of $package_name $package_version"
lappend lines {}
lappend lines {########}
lappend lines {#####}
lappend lines {###}
lappend lines {##}
lappend lines {#}
# Bundle definition
lappend lines {}
lappend lines {# ###############}
lappend lines {# Complete bundle}
lappend lines {}
lappend lines [list Package [list $package_name [normalize-version $package_version]]]
lappend lines "Base @TAP_DIR@"
lappend lines "Platform *"
lappend lines "Desc \{$pname: Bundle of all packages\}"
lappend lines "Path pkgIndex.tcl"
lappend lines "Path [join $modules "\nPath "]"
set strip [llength [file split $distribution]]
incr strip 2
foreach m $modules {
# File set of module ...
lappend lines {}
lappend lines "# #########[::textutil::strRepeat {#} [string length $m]]" ; # {}
lappend lines "# Module \"$m\""
set n 0
foreach {p vlist} [ppackages $m] {
foreach v $vlist {
lappend lines "# \[[format %1d [incr n]]\] | \"$p\" ($v)"
}
}
if {$n > 1} {
# Multiple packages (*). We create one hidden package to
# contain all the files and then have all the true
# packages in the module refer to it.
#
# (*) This can also be one package for which we have
# several versions. Or a combination thereof.
array set _ {}
foreach {p vlist} [ppackages $m] {
catch {set _([lindex $pd($p) 0]) .}
}
set desc [string trim [join [array names _] ", "] " \n\t\r,"]
if {$desc == ""} {set desc "$pname module"}
unset _
lappend lines "# -------+"
lappend lines {}
lappend lines [list Package [list __$m 0.0]]
lappend lines "Platform *"
lappend lines "Desc \{$desc\}"
lappend lines Hidden
lappend lines "Base @TAP_DIR@/$m"
foreach f [lsort -dict [modtclfiles $m]] {
lappend lines "Path [fileutil::stripN $f $strip]"
}
# Packages in the module ...
foreach {p vlist} [ppackages $m] {
# NO DANGER. As we are listing only the packages P for
# the module any other version of P in a different
# module is _not_ listed here.
set desc ""
catch {set desc [string trim [lindex $pd($p) 1]]}
if {$desc == ""} {set desc "$pname package"}
foreach v $vlist {
lappend lines {}
lappend lines [list Package [list $p [normalize-version $v]]]
lappend lines "See [list __$m]"
lappend lines "Platform *"
lappend lines "Desc \{$desc\}"
}
}
} else {
# A single package in the module. And only one version of
# it as well. Otherwise we are in the multi-pkg branch.
foreach {p vlist} {{} {}} break
foreach {p vlist} [ppackages $m] break
set desc ""
catch {set desc [string trim [lindex $pd($p) 1]]}
if {$desc == ""} {set desc "$pname package"}
set v [lindex $vlist 0]
lappend lines "# -------+"
lappend lines {}
lappend lines [list Package [list $p [normalize-version $v]]]
lappend lines "Platform *"
lappend lines "Desc \{$desc\}"
lappend lines "Base @TAP_DIR@/$m"
foreach f [lsort -dict [modtclfiles $m]] {
lappend lines "Path [fileutil::stripN $f $strip]"
}
}
lappend lines {}
lappend lines {#}
lappend lines "# #########[::textutil::strRepeat {#} [string length $m]]"
}
lappend lines {}
lappend lines {#}
lappend lines {##}
lappend lines {###}
lappend lines {#####}
lappend lines {########}
# Write definition
set f [open [file join $distribution ${package_name}.tap] w]
puts $f [join $lines \n]
close $f
return
}
proc getpdesc {} {
global argv ; if {![checkmod]} return
package require sak::doc
sak::doc::Gen desc l $argv
array set _ {}
foreach file [glob -nocomplain doc/desc/*.l] {
set f [open $file r]
foreach l [split [read $f] \n] {
foreach {p sd d} $l break
set _($p) [list $sd $d]
}
close $f
}
file delete -force doc/desc
return [array get _]
}
proc gd-gen-rpmspec {} {
global package_version package_name distribution
set in [file join $distribution support releases package_rpm.txt]
set out [file join $distribution ${package_name}.spec]
write_out $out [string map \
[list \
@PACKAGE_VERSION@ $package_version \
@PACKAGE_NAME@ $package_name] \
[get_input $in]]
return
}
proc gd-gen-yml {} {
# YAML is the format used for the FreePAN archive network.
# http://freepan.org/
global package_version package_name distribution
set in [file join $distribution support releases package_yml.txt]
set out [file join $distribution ${package_name}.yml]
write_out $out [string map \
[list \
@PACKAGE_VERSION@ $package_version \
@PACKAGE_NAME@ $package_name] \
[get_input $in]]
return
}
proc docfiles {} {
global distribution
getpackage fileutil fileutil/fileutil.tcl
set res [list]
foreach f [fileutil::findByPattern $distribution -glob *.man] {
# Remove files under SCCS. They are repository, not sources to check.
if {[string match *SCCS* $f]} continue
lappend res [file rootname [file tail $f]].n
}
proc docfiles {} [list return $res]
return $res
}
proc gd-tip55 {} {
global package_version package_name distribution contributors
contributors
set in [file join $distribution support releases package_tip55.txt]
set out [file join $distribution DESCRIPTION.txt]
set md [string map \
[list \
@PACKAGE_VERSION@ $package_version \
@PACKAGE_NAME@ $package_name] \
[get_input $in]]
foreach person [lsort [array names contributors]] {
set mail $contributors($person)
regsub {@} $mail " at " mail
regsub -all {\.} $mail " dot " mail
append md "Contributor: $person <$mail>\n"
}
write_out $out $md
return
}
# Fill the global array of contributors to the bundle by processing
# the ChangeLog entries.
#
proc contributors {} {
global distribution contributors
if {![info exists contributors] || [array size contributors] == 0} {
get_contributors [file join $distribution ChangeLog]
foreach f [glob -nocomplain [file join $distribution modules *]] {
if {![file isdirectory $f]} {continue}
if {[string match CVS [file tail $f]]} {continue}
if {![file exists [file join $f ChangeLog]]} {continue}
get_contributors [file join $f ChangeLog]
}
}
}
proc get_contributors {changelog} {
global contributors
set f [open $changelog r]
while {![eof $f]} {
gets $f line
if {[regexp {^[\d-]+\s+(.*?)<(.*?)>} $line r name mail]} {
set name [string trim $name]
if {![info exists names($name)]} {
set contributors($name) $mail
}
}
}
close $f
}
proc validate_imodules_cmp {imvar dmvar} {
upvar $imvar im $dmvar dm
foreach m [lsort [array names im]] {
if {![info exists dm($m)]} {
puts " Installed, does not exist: $m"
}
}
foreach m [lsort [array names dm]] {
if {![info exists im($m)]} {
puts " Missing in installer: $m"
}
}
return
}
proc validate_imodules {} {
foreach m [imodules] {set im($m) .}
foreach m [modules] {set dm($m) .}
validate_imodules_cmp im dm
return
}
proc validate_imodules_mod {m} {
array set im {}
array set dm {}
if {[imodules_mod $m]} {set im($m) .}
if {[modules_mod $m]} {set dm($m) .}
validate_imodules_cmp im dm
return
}
proc validate_versions_cmp {ipvar ppvar} {
global pf
getpackage struct::set struct/sets.tcl
upvar $ipvar ip $ppvar pp
set maxl 0
foreach name [array names ip] {if {[string length $name] > $maxl} {set maxl [string length $name]}}
foreach name [array names pp] {if {[string length $name] > $maxl} {set maxl [string length $name]}}
foreach p [lsort [array names ip]] {
if {![info exists pp($p)]} {
puts " Indexed, no provider: $p"
}
}
foreach p [lsort [array names pp]] {
if {![info exists ip($p)]} {
foreach k [array names pf $p,*] {
puts " Provided, not indexed: [format "%-*s | %s" $maxl $p $pf($k)]"
}
}
}
foreach p [lsort [array names ip]] {
if {![info exists pp($p)]} continue
if {[struct::set equal $pp($p) $ip($p)]} continue
# Compute intersection and set differences.
foreach {__ pmi imp} [struct::set intersect3 $pp($p) $ip($p)] break
puts " Index/provided versions differ: [format "%-*s | %8s | %8s" $maxl $p $imp $pmi]"
}
}
proc validate_versions {} {
foreach {p vm} [ipackages] {set ip($p) [lindex $vm 0]}
foreach {p vlist} [ppackages] {set pp($p) $vlist}
validate_versions_cmp ip pp
return
}
proc validate_versions_mod {m} {
foreach {p vm} [ipackages $m] {set ip($p) [lindex $vm 0]}
foreach {p vlist} [ppackages $m] {set pp($p) $vlist}
validate_versions_cmp ip pp
return
}
proc validate_testsuite_mod {m} {
global distribution
if {[llength [glob -nocomplain [file join $distribution modules $m *.test]]] == 0} {
puts " Without testsuite : $m"
}
return
}
proc bench_mod {mlist paths interp flags norm format verbose output coll rep} {
global distribution env tcl_platform
getpackage logger logger/logger.tcl
getpackage bench bench/bench.tcl
::logger::setlevel $verbose
set pattern tclsh*
if {$interp != {}} {
set pattern [file tail $interp]
set paths [list [file dirname $interp]]
} elseif {![llength $paths]} {
# Using the environment PATH is not a good default for
# SAK. Use the interpreter running SAK as the default.
if 0 {
set paths [split $env(PATH) \
[expr {($tcl_platform(platform) == "windows") ? ";" : ":"}]]
}
set interp [info nameofexecutable]
set pattern [file tail $interp]
set paths [list [file dirname $interp]]
}
set interps [bench::versions \
[bench::locate $pattern $paths]]
if {![llength $interps]} {
puts "No interpreters found"
return
}
if {[llength $flags]} {
set cmd [linsert $flags 0 bench::run]
} else {
set cmd [list bench::run]
}
array set DATA {}
foreach m $mlist {
set files [glob -nocomplain [file join $distribution modules $m *.bench]]
if {![llength $files]} {
bench::log::warn "No benchmark files found for module \"$m\""
continue
}
for {set i 0} {$i <= $rep} {incr i} {
if {$i} { puts "Repeat $i" }
set run $cmd
lappend run $interps $files
array set tmp [eval $run]
# Merge new set of data into the previous run, if any.
foreach key [array names tmp] {
set val $tmp($key)
if {![info exists DATA($key)]} {
set DATA($key) $val
continue
} elseif {[string is double -strict $val]} {
# Call user-request collation type
set DATA($key) [collate_$coll $DATA($key) $val $i]
}
}
unset tmp
}
}
_bench_write $output [array get DATA] $norm $format
return
}
proc collate_min {cur new runs} {
# Minimum
return [expr {$cur > $new ? $new : $cur}]
}
proc collate_avg {cur new runs} {
# Average
return [expr {($cur * $runs + $new)/($runs+1)}]
}
proc collate_max {cur new runs} {
# Maximum
return [expr {$cur < $new ? $new : $cur}]
}
if 0 {proc bench_all {flags norm format verbose output} {
bench_mod [modules] $flags $norm $format $verbose $output ? ?
return
}}
proc _bench_write {output data norm format} {
if {$norm != {}} {
getpackage logger logger/logger.tcl
getpackage bench bench/bench.tcl
set data [bench::norm $data $norm]
}
set data [bench::out::$format $data]
if {$output == {}} {
puts $data
} else {
set output [open $output w]
puts $output "# -*- tcl -*- bench/$format"
puts $output $data
close $output
}
}
proc validate_testsuites {} {
foreach m [modules] {
validate_testsuite_mod $m
}
return
}
proc validate_pkgIndex_mod {m} {
global distribution
if {[llength [glob -nocomplain [file join $distribution modules $m pkgIndex.tcl]]] == 0} {
puts " Without package index : $m"
}
return
}
proc validate_pkgIndex {} {
global distribution
foreach m [modules] {
validate_pkgIndex_mod $m
}
return
}
proc validate_doc_existence_mod {m} {
global distribution
if {[llength [glob -nocomplain [file join $distribution modules $m {*.[13n]}]]] == 0} {
if {[llength [glob -nocomplain [file join $distribution modules $m {*.man}]]] == 0} {
puts " Without * any ** manpages : $m"
}
} elseif {[llength [glob -nocomplain [file join $distribution modules $m {*.man}]]] == 0} {
puts " Without doctools manpages : $m"
} else {
foreach f [glob -nocomplain [file join $distribution modules $m {*.[13n]}]] {
if {![file exists [file rootname $f].man]} {
puts " no .man equivalent : $f"
}
}
}
return
}
proc validate_doc_existence {} {
global distribution
foreach m [modules] {
validate_doc_existence_mod $m
}
return
}
proc validate_doc_markup_mod {m} {
package require sak::doc
sak::doc::Gen null null [list $m]
return
}
proc validate_doc_markup {} {
package require sak::doc
sak::doc::Gen null null [modules]
return
}
proc run-frink {args} {
global distribution
set tmp [file rootname [info script]].tmp.[pid]
if {[llength $args] == 0} {
set files [tclfiles]
} else {
set files [lsort -dict [modtclfiles $args]]
}
foreach f $files {
puts "FRINK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
puts "$f..."
puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
catch {exec frink 2> $tmp -HJ $f}
set data [get_input $tmp]
if {[string length $data] > 0} {
puts $data
}
}
catch {file delete -force $tmp}
return
}
proc run-procheck {args} {
global distribution
if {[llength $args] == 0} {
set files [tclfiles]
} else {
set files [lsort -dict [modtclfiles $args]]
}
foreach f $files {
puts "PROCHECK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
puts "$f ..."
puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
catch {exec procheck >@ stdout $f}
}
return
}
proc run-tclchecker {args} {
global distribution
if {[llength $args] == 0} {
set files [tclfiles]
} else {
set files [lsort -dict [modtclfiles $args]]
}
foreach f $files {
puts "TCLCHECKER ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
puts "$f ..."
puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
catch {exec tclchecker >@ stdout $f}
}
return
}
proc run-nagelfar {args} {
global distribution
if {[llength $args] == 0} {
set files [tclfiles]
} else {
set files [lsort -dict [modtclfiles $args]]
}
foreach f $files {
puts "NAGELFAR ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
puts "$f ..."
puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
catch {exec nagelfar >@ stdout $f}
}
return
}
proc get_input {f} {return [read [set if [open $f r]]][close $if]}
proc write_out {f text} {
catch {file delete -force $f}
puts -nonewline [set of [open $f w]] $text
close $of
}
proc location_PACKAGES {} {
global distribution
return [file join $distribution support releases PACKAGES]
}
proc gd-gen-packages {} {
global package_version distribution
set P [location_PACKAGES]
file copy -force $P $P.LAST
set f [open $P w]
puts $f "@@ RELEASE $package_version"
puts $f ""
array set packages {}
foreach {p vm} [ipackages] {
set packages($p) [lindex $vm 0]
}
nparray packages $f
close $f
}
# --------------------------------------------------------------
# Handle modules using docstrip
proc docstripUser {m} {
global distribution
set mdir [file join $distribution modules $m]
if {[llength [glob -nocomplain -dir $mdir *.stitch]]} {return 1}
return 0
}
proc docstripRegen {m} {
global distribution
puts "$m ..."
getpackage docstrip docstrip/docstrip.tcl
set mdir [file join $distribution modules $m]
foreach sf [glob -nocomplain -dir $mdir *.stitch] {
puts "* [file tail $sf] ..."
set here [pwd]
set fail [catch {
cd [file dirname $sf]
docstripRunStitch [file tail $sf]
} msg]
cd $here
if {$fail} {
puts " [join [split $::errorInfo \n] "\n "]"
}
}
return
}
proc docstripRunStitch {sf} {
# Run the stitch file in a restricted sandbox ...
set box [restrictedIp {
input ::dsrs::Input
options ::dsrs::Options
stitch ::dsrs::Stitch
reset ::dsrs::Reset
}]
::dsrs::Init
set fail [catch {interp eval $box [get_input $sf]} msg]
if {$fail} {
puts " [join [split $::errorInfo \n] "\n "]"
} else {
::dsrs::Final
}
interp delete $box
return
}
proc emptyIp {} {
set box [interp create]
foreach c [interp eval $box {info commands}] {
if {[string equal $c "rename"]} continue
interp eval $box [list rename $c {}]
}
# Rename command goes last.
interp eval $box [list rename rename {}]
return $box
}
proc restrictedIp {dict} {
set box [emptyIp]
foreach {cmd localcmd} $dict {
interp alias $box $cmd {} $localcmd
}
return $box
}
# --------------------------------------------------------------
# docstrip low level operations for stitching.
namespace eval ::dsrs {
# Standard preamble to preambles
variable preamble {}
append preamble \n
append preamble "This is the file `@output@'," \n
append preamble "generated with the SAK utility" \n
append preamble "(sak docstrip/regen)." \n
append preamble \n
append preamble "The original source files were:" \n
append preamble \n
append preamble "@input@ (with options: `@guards@')" \n
append preamble \n
# Standard postamble to postambles
variable postamble {}
append postamble \n
append postamble \n
append postamble "End of file `@output@'."
# Default values for the options which are relevant to the
# application itself and thus have to be defined always.
# They are processed as global options, as part of argv.
variable defaults {-metaprefix {%} -preamble {} -postamble {}}
variable options ; array set options {}
variable outputs ; array set outputs {}
variable inputs ; array set inputs {}
variable input {}
}
proc ::dsrs::Init {} {
variable outputs ; unset outputs ; array set outputs {}
variable inputs ; unset inputs ; array set inputs {}
variable input {}
Reset ; # options
return
}
proc ::dsrs::Reset {} {
variable defaults
variable options ; unset options ; array set options {}
eval [linsert $defaults 0 Options]
return
}
proc ::dsrs::Input {sourcefile} {
# Relative to current directory = directory containing the active
# stitch file.
variable input $sourcefile
}
proc ::dsrs::Options {args} {
variable options
variable preamble
variable postamble
while {[llength $args]} {
set opt [lindex $args 0]
switch -exact -- $opt {
-nopreamble -
-nopostamble {
set o -[string range $opt 3 end]
set options($o) ""
set args [lrange $args 1 end]
}
-preamble {
set val $preamble[lindex $args 1]
set options($opt) $val
set args [lrange $args 2 end]
}
-postamble {
set val [lindex $args 1]$postamble
set options($opt) $val
set args [lrange $args 2 end]
}
-metaprefix -
-onerror -
-trimlines {
set val [lindex $args 1]
set options($opt) $val
set args [lrange $args 2 end]
}
default {
return -code error "Unknown option: \"$opt\""
}
}
}
return
}
proc ::dsrs::Stitch {outputfile guards} {
variable options
variable inputs
variable input
variable outputs
variable preamble
variable postamble
if {[string equal $input {}]} {
return -code error "No input file defined"
}
if {![info exist inputs($input)]} {
set inputs($input) [get_input $input]
}
set intext $inputs($input)
set otext ""
set c $options(-metaprefix)
set cc $c$c
set pmap [list @output@ $outputfile \
@input@ $input \
@guards@ $guards]
if {[info exists options(-preamble)]} {
set pre $options(-preamble)
if {![string equal $pre ""]} {
append otext [Subst $pre $pmap $cc] \n
}
}
array set o [array get options]
catch {unset o(-preamble)}
catch {unset o(-postamble)}
set opt [array get o]
append otext [eval [linsert $opt 0 docstrip::extract $intext $guards]]
if {[info exists options(-postamble)]} {
set post $options(-postamble)
if {![string equal $post ""]} {
append otext [Subst $post $pmap $cc]
}
}
# Accumulate outputs in memory
append outputs($outputfile) $otext
return
}
proc ::dsrs::Subst {text pmap cc} {
return [string trim "$cc [join [split [string map $pmap $text] \n] "\n$cc "]"]
}
proc ::dsrs::Final {} {
variable outputs
foreach o [array names outputs] {
puts " = Writing $o ..."
if {[string equal \
docstrip/docstrip.tcl \
[file join [file tail [pwd]] $o]]} {
# We are writing over code required by ourselves.
# For easy recovery in case of problems we save
# the original
puts " *Saving original of code important to docstrip/regen itself*"
write_out $o.bak [get_input $o]
}
write_out $o $outputs($o)
}
}
# --------------------------------------------------------------
# Configuration
proc __name {} {global package_name ; puts -nonewline $package_name}
proc __version {} {global package_version ; puts -nonewline $package_version}
proc __minor {} {global package_version ; puts -nonewline [lindex [split $package_version .] 1]}
proc __major {} {global package_version ; puts -nonewline [lindex [split $package_version .] 0]}
# --------------------------------------------------------------
# Development
proc __imodules {} {puts [imodules]}
proc __modules {} {puts [modules]}
proc __lmodules {} {puts [join [modules] \n]}
proc nparray {a {chan stdout}} {
upvar $a packages
set maxl 0
foreach name [lsort [array names packages]] {
if {[string length $name] > $maxl} {
set maxl [string length $name]
}
}
foreach name [lsort [array names packages]] {
foreach v $packages($name) {
puts $chan [format "%-*s %s" $maxl $name $v]
}
}
return
}
proc __packages {} {
array set packages {}
foreach {p vm} [ipackages] {
set packages($p) [lindex $vm 0]
}
nparray packages
return
}
proc __provided {} {
array set packages [ppackages]
nparray packages
return
}
proc checkmod {} {
global argv
package require sak::util
return [sak::util::checkModules argv]
}
# -------------------------------------------------------------------------
# Critcl stuff
# -------------------------------------------------------------------------
# Build critcl modules. If no args then build the default critcl module.
proc __critcl {} {
global argv critcl critclmodules critcldefault critclnotes tcl_platform
if {$tcl_platform(platform) == "windows"} {
set critcl [critcl-app-windows]
} else {
set critcl [critcl-app-unix]
}
set flags ""
while {[string match -* [set option [lindex $argv 0]]]} {
# -debug and -clean only work with critcl >= v04
switch -exact -- $option {
-keep { append flags " -keep" }
-I -
-L -
-libdir -
-includedir -
-debug -
-pkg -
-target {
append flags " $option [lindex $argv 1]"
set argv [lreplace $argv 0 0]
}
-clean { append flags " -clean" }
-- { set argv [lreplace $argv 0 0]; break }
default { break }
}
set argv [lreplace $argv 0 0]
}
if {$critcl != {}} {
if {[llength $argv] == 0} {
puts stderr "[string repeat - 72]"
puts stderr "Building critcl components."
if {$critclnotes != {}} {
puts stderr $critclnotes
}
puts stderr "[string repeat - 72]"
critcl_module $critcldefault $flags
} else {
foreach m [dealias $argv] {
if {[info exists critclmodules($m)]} {
critcl_module $m $flags
} else {
puts "warning: $m is not a critcl module"
}
}
}
} else {
puts "error: cannot find a critcl to run."
return 1
}
return
}
proc critcl-app-unix {} {
# My, isn't it simpler under unix.
# Look for a critcl sibling to the executing shell
set shdir [file dirname [info nameofexecutable]]
set shapp [file join $shdir critcl]
if {[file exists $shapp]} { return $shapp }
# Look for critcl in the path
set critcl [auto_execok critcl]
}
proc critcl-app-windows {} {
# Windows is a bit more complicated. We have to choose an
# interpreter, and a starkit for it, and call both.
#
# We prefer tclkitsh, but try to make do with a tclsh. That
# one will have to have all the necessary packages to support
# starkits. ActiveTcl for example.
set interpreter {}
foreach i {critcl.exe tclkitsh tclsh} {
set interpreter [auto_execok $i]
if {$interpreter != {}} break
}
if {$interpreter == {}} {
return -code error \
"failed to find either tclkitsh.exe or tclsh.exe in path"
}
# The critcl starkit can come out of the environment, or we
# try to locate it using several possible names. We try to
# find it if and only if we did not find a critcl starpack
# before.
if {[file tail $interpreter] == "critcl.exe"} {
set critcl $interpreter
} else {
set kit {}
if {[info exists ::env(CRITCL)]} {
set kit $::env(CRITCL)
} else {
foreach k {critcl.kit critcl} {
set kit [auto_execok $k]
if {$kit != {}} break
}
}
if {$kit == {}} {
return -code error "failed to find critcl.kit or critcl in \
path.\n\
You may wish to set the CRITCL environment variable to the\
location of your critcl(.kit) file."
}
set critcl [concat $interpreter $kit]
}
return $critcl
}
# Prints a list of all the modules supporting critcl enhancement.
proc __critcl-modules {} {
global critclmodules critcldefault
foreach m [lsort -dict [array names critclmodules]] {
if {$m == $critcldefault} {
puts "$m **"
} else {
puts $m
}
}
return
}
proc critcl_module {pkg {extra ""}} {
global critcl distribution critclmodules critcldefault
if {$pkg == $critcldefault} {
set files {}
foreach f $critclmodules($critcldefault) {
lappend files [file join $distribution modules $f]
}
foreach m [array names critclmodules] {
if {$m == $critcldefault} continue
foreach f $critclmodules($m) {
lappend files [file join $distribution modules $f]
}
}
} else {
foreach f $critclmodules($pkg) {
lappend files [file join $distribution modules $f]
}
}
set target [file join $distribution modules]
if {"-libdir" ni $extra} { lappend extra -libdir [list $target] }
if {"-pkg" ni $extra} { lappend extra -pkg [list $pkg] }
catch {
puts "[info nameofexecutable] $critcl -cache [pwd]/.critcl -force $extra $files"
eval exec [info nameofexecutable] $critcl -cache [pwd]/.critcl -force $extra $files
} r
puts $r
return
}
# -------------------------------------------------------------------------
proc __bench/edit {} {
global argv argv0
set format text
set output {}
while {[string match -* [set option [lindex $argv 0]]]} {
set val [lindex $argv 1]
switch -exact -- $option {
-format {
switch -exact -- $val {
raw - csv - text {}
default {
return -error "Bad format \"$val\", expected text, csv, or raw"
}
}
set format $val
}
-o {set output $val}
-- {
set argv [lrange $argv 1 end]
break
}
default { break }
}
set argv [lrange $argv 2 end]
}
switch -exact -- $format {
raw {}
csv {
getpackage csv csv/csv.tcl
getpackage bench::out::csv bench/bench_wcsv.tcl
}
text {
getpackage report report/report.tcl
getpackage struct::matrix struct/matrix.tcl
getpackage bench::out::text bench/bench_wtext.tcl
}
}
getpackage bench::in bench/bench_read.tcl
getpackage bench bench/bench.tcl
if {[llength $argv] != 3} {
puts "Usage: $argv0 benchdata column newvalue"
}
foreach {in col new} $argv break
_bench_write $output \
[bench::edit \
[bench::in::read $in] \
$col $new] \
{} $format
return
}
proc __bench/del {} {
global argv argv0
set format text
set output {}
while {[string match -* [set option [lindex $argv 0]]]} {
set val [lindex $argv 1]
switch -exact -- $option {
-format {
switch -exact -- $val {
raw - csv - text {}
default {
return -error "Bad format \"$val\", expected text, csv, or raw"
}
}
set format $val
}
-o {set output $val}
-- {
set argv [lrange $argv 1 end]
break
}
default { break }
}
set argv [lrange $argv 2 end]
}
switch -exact -- $format {
raw {}
csv {
getpackage csv csv/csv.tcl
getpackage bench::out::csv bench/bench_wcsv.tcl
}
text {
getpackage report report/report.tcl
getpackage struct::matrix struct/matrix.tcl
getpackage bench::out::text bench/bench_wtext.tcl
}
}
getpackage bench::in bench/bench_read.tcl
getpackage bench bench/bench.tcl
if {[llength $argv] < 2} {
puts "Usage: $argv0 benchdata column..."
}
set in [lindex $argv 0]
set data [bench::in::read $in]
foreach c [lrange $argv 1 end] {
set data [bench::del $data $c]
}
_bench_write $output $data {} $format
return
}
proc __bench/show {} {
global argv
set format text
set output {}
set norm {}
while {[string match -* [set option [lindex $argv 0]]]} {
set val [lindex $argv 1]
switch -exact -- $option {
-format {
switch -exact -- $val {
raw - csv - text {}
default {
return -error "Bad format \"$val\", expected text, csv, or raw"
}
}
set format $val
}
-o {set output $val}
-norm {set norm $val}
-- {
set argv [lrange $argv 1 end]
break
}
default { break }
}
set argv [lrange $argv 2 end]
}
switch -exact -- $format {
raw {}
csv {
getpackage csv csv/csv.tcl
getpackage bench::out::csv bench/bench_wcsv.tcl
}
text {
getpackage report report/report.tcl
getpackage struct::matrix struct/matrix.tcl
getpackage bench::out::text bench/bench_wtext.tcl
}
}
getpackage bench::in bench/bench_read.tcl
array set DATA {}
foreach path $argv {
array set DATA [bench::in::read $path]
}
_bench_write $output [array get DATA] $norm $format
return
}
proc __bench {} {
global argv
# I. Process command line arguments for the
# benchmark commands - Validation, possible
# translation ...
set flags {}
set norm {}
set format text
set verbose warn
set output {}
set paths {}
set interp {}
set repeat 0
set collate min
while {[string match -* [set option [lindex $argv 0]]]} {
set val [lindex $argv 1]
switch -exact -- $option {
-throwerrors {lappend flags -errors $val}
-match -
-rmatch -
-iters -
-threads {lappend flags $option $val}
-o {set output $val}
-norm {set norm $val}
-path {lappend paths $val}
-interp {set interp $val}
-format {
switch -exact -- $val {
raw - csv - text {}
default {
return -error "Bad format \"$val\", expected text, csv, or raw"
}
}
set format $val
}
-collate {
switch -exact -- $val {
min - max - avg {}
default {
return -error "Bad collation \"$val\", expected avg, max, or min"
}
}
set collate $val
}
-repeat {
# TODO: test for integer >= 0
set repeat $val
}
-verbose {
set verbose info
set argv [lrange $argv 1 end]
continue
}
-debug {
set verbose debug
set argv [lrange $argv 1 end]
continue
}
-- {
set argv [lrange $argv 1 end]
break
}
default { break }
}
set argv [lrange $argv 2 end]
}
switch -exact -- $format {
raw {}
csv {
getpackage csv csv/csv.tcl
getpackage bench::out::csv bench/bench_wcsv.tcl
}
text {
getpackage report report/report.tcl
getpackage struct::matrix struct/matrix.tcl
getpackage bench::out::text bench/bench_wtext.tcl
}
}
# Choose between benchmarking everything, or
# only selected modules.
if {[llength $argv] == 0} {
_bench_all $paths $interp $flags $norm $format $verbose $output $collate $repeat
} else {
if {![checkmod]} {return}
_bench_module [dealias $argv] $paths $interp $flags $norm $format $verbose $output $collate $repeat
}
return
}
proc _bench_module {mlist paths interp flags norm format verbose output coll rep} {
global package_name package_version
puts "Benchmarking $package_name $package_version development"
puts "======================================================"
bench_mod $mlist $paths $interp $flags $norm $format $verbose $output $coll $rep
puts "------------------------------------------------------"
puts ""
return
}
proc _bench_all {paths flags interp norm format verbose output coll rep} {
_bench_module [modules] $paths $interp $flags $norm $format $verbose $output $coll $rep
return
}
# -------------------------------------------------------------------------
proc __oldvalidate_v {} {
global argv
if {[llength $argv] == 0} {
_validate_all_v
} else {
if {![checkmod]} {return}
foreach m [dealias $argv] {
_validate_module_v $m
}
}
return
}
proc _validate_all_v {} {
global package_name package_version
set i 0
puts "Validating $package_name $package_version development"
puts "==================================================="
puts "[incr i]: Consistency of package versions ..."
puts "------------------------------------------------------"
validate_versions
puts "------------------------------------------------------"
puts ""
return
}
proc _validate_module_v {m} {
global package_name package_version
set i 0
puts "Validating $package_name $package_version development -- $m"
puts "==================================================="
puts "[incr i]: Consistency of package versions ..."
puts "------------------------------------------------------"
validate_versions_mod $m
puts "------------------------------------------------------"
puts ""
return
}
proc __oldvalidate {} {
global argv
if {[llength $argv] == 0} {
_validate_all
} else {
if {![checkmod]} {return}
foreach m $argv {
_validate_module $m
}
}
return
}
proc _validate_all {} {
global package_name package_version
set i 0
puts "Validating $package_name $package_version development"
puts "==================================================="
puts "[incr i]: Existence of testsuites ..."
puts "------------------------------------------------------"
validate_testsuites
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Existence of package indices ..."
puts "------------------------------------------------------"
validate_pkgIndex
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Consistency of package versions ..."
puts "------------------------------------------------------"
validate_versions
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Installed vs. developed modules ..."
puts "------------------------------------------------------"
validate_imodules
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Existence of documentation ..."
puts "------------------------------------------------------"
validate_doc_existence
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Validate documentation markup (doctools) ..."
puts "------------------------------------------------------"
validate_doc_markup
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Static syntax check ..."
puts "------------------------------------------------------"
set frink [auto_execok frink]
set procheck [auto_execok procheck]
set tclchecker [auto_execok tclchecker]
set nagelfar [auto_execok nagelfar]
if {$frink == {}} {puts " Tool 'frink' not found, no check"}
if {($procheck == {}) || ($tclchecker == {})} {
puts " Tools 'procheck'/'tclchecker' not found, no check"
}
if {$nagelfar == {}} {puts " Tool 'nagelfar' not found, no check"}
if {($frink == {}) || ($procheck == {}) || ($tclchecker == {})
|| ($nagelfar == {})} {
puts "------------------------------------------------------"
}
if {($frink == {}) && ($procheck == {}) && ($tclchecker == {})
&& ($nagelfar == {})} {
return
}
if {$frink != {}} {
run-frink
puts "------------------------------------------------------"
}
if {$tclchecker != {}} {
run-tclchecker
puts "------------------------------------------------------"
} elseif {$procheck != {}} {
run-procheck
puts "------------------------------------------------------"
}
if {$nagelfar !={}} {
run-nagelfar
puts "------------------------------------------------------"
}
puts ""
return
}
proc _validate_module {m} {
global package_name package_version
set i 0
puts "Validating $package_name $package_version development -- $m"
puts "==================================================="
puts "[incr i]: Existence of testsuites ..."
puts "------------------------------------------------------"
validate_testsuite_mod $m
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Existence of package indices ..."
puts "------------------------------------------------------"
validate_pkgIndex_mod $m
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Consistency of package versions ..."
puts "------------------------------------------------------"
validate_versions_mod $m
puts "------------------------------------------------------"
puts ""
#puts "[incr i]: Installed vs. developed modules ..."
puts "------------------------------------------------------"
validate_imodules_mod $m
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Existence of documentation ..."
puts "------------------------------------------------------"
validate_doc_existence_mod $m
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Validate documentation markup (doctools) ..."
puts "------------------------------------------------------"
validate_doc_markup_mod $m
puts "------------------------------------------------------"
puts ""
puts "[incr i]: Static syntax check ..."
puts "------------------------------------------------------"
set frink [auto_execok frink]
set procheck [auto_execok procheck]
set nagelfar [auto_execok nagelfar]
set tclchecker [auto_execok tclchecker]
if {$frink == {}} {puts " Tool 'frink' not found, no check"}
if {($procheck == {}) || ($tclchecker == {})} {
puts " Tools 'procheck'/'tclchecker' not found, no check"
}
if {$nagelfar == {}} {puts " Tool 'nagelfar' not found, no check"}
if {($frink == {}) || ($procheck == {}) || ($tclchecker == {}) ||
($nagelfar == {})} {
puts "------------------------------------------------------"
}
if {($frink == {}) && ($procheck == {}) && ($nagelfar == {})
&& ($tclchecker == {})} {
return
}
if {$frink != {}} {
run-frink $m
puts "------------------------------------------------------"
}
if {$tclchecker != {}} {
run-tclchecker $m
puts "------------------------------------------------------"
} elseif {$procheck != {}} {
run-procheck $m
puts "------------------------------------------------------"
}
if {$nagelfar !={}} {
run-nagelfar $m
puts "------------------------------------------------------"
}
puts ""
return
}
# --------------------------------------------------------------
# Release engineering
proc __gendist {} {
gd-cleanup
gd-tip55
gd-gen-rpmspec
gd-gen-tap
gd-gen-yml
gd-assemble
gd-gen-archives
puts ...Done
return
}
proc __gentip55 {} {
gd-tip55
puts "Created DESCRIPTION.txt"
return
}
proc __yml {} {
global package_name
gd-gen-yml
puts "Created YAML spec file \"${package_name}.yml\""
return
}
proc __contributors {} {
global contributors
contributors
foreach person [lsort [array names contributors]] {
puts "$person <$contributors($person)>"
}
return
}
proc __tap {} {
global package_name
gd-gen-tap
puts "Created Tcl Dev Kit \"${package_name}.tap\""
}
proc __rpmspec {} {
global package_name
gd-gen-rpmspec
puts "Created RPM spec file \"${package_name}.spec\""
}
proc __release {} {
# Regenerate PACKAGES, and extend
gd-gen-packages
return
global argv argv0 distribution package_name package_version
getpackage textutil textutil/textutil.tcl
if {[llength $argv] != 2} {
puts stderr "$argv0: wrong#args: release name sf-user-id"
exit 1
}
foreach {name sfuser} $argv break
set email "<${sfuser}@users.sourceforge.net>"
set pname [textutil::cap $package_name]
set notice "[clock format [clock seconds] -format "%Y-%m-%d"] $name $email
*
* Released and tagged $pname $package_version ========================
*
"
set logs [list [file join $distribution ChangeLog]]
foreach m [modules] {
set m [file join $distribution modules $m ChangeLog]
if {![file exists $m]} continue
lappend logs $m
}
foreach f $logs {
puts "\tAdding release notice to $f"
set fh [open $f r] ; set data [read $fh] ; close $fh
set fh [open $f w] ; puts -nonewline $fh $notice$data ; close $fh
}
gd-gen-packages
return
}
# --------------------------------------------------------------
# Documentation
proc __desc {} {
global argv ; if {![checkmod]} return
array set pd [getpdesc]
getpackage struct::matrix struct/matrix.tcl
getpackage textutil textutil/textutil.tcl
struct::matrix m
m add columns 3
puts {Descriptions...}
if {[llength $argv] == 0} {set argv [modules]}
foreach m [lsort [dealias $argv]] {
array set _ {}
set pkg {}
foreach {p vlist} [ppackages $m] {
catch {set _([lindex $pd($p) 0]) .}
lappend pkg $p
}
set desc [string trim [join [array names _] ", "] " \n\t\r,"]
set desc [textutil::adjust $desc -length 20]
unset _
m add row [list $m $desc]
m add row {}
foreach p [lsort -dictionary $pkg] {
set desc ""
catch {set desc [lindex $pd($p) 1]}
if {$desc != ""} {
set desc [string trim $desc]
set desc [textutil::adjust $desc -length 50]
m add row [list {} $p $desc]
} else {
m add row [list {**} $p ]
}
}
m add row {}
}
m format 2chan
puts ""
return
}
proc __desc/2 {} {
global argv ; if {![checkmod]} return
array set pd [getpdesc]
getpackage struct::matrix struct/matrix.tcl
getpackage textutil textutil/textutil.tcl
puts {Descriptions...}
if {[llength $argv] == 0} {set argv [modules]}
foreach m [lsort [dealias $argv]] {
struct::matrix m
m add columns 3
m add row {}
set pkg {}
foreach {p vlist} [ppackages $m] {lappend pkg $p}
foreach p [lsort -dictionary $pkg] {
set desc ""
set sdes ""
catch {set desc [lindex $pd($p) 1]}
catch {set sdes [lindex $pd($p) 0]}
if {$desc != ""} {
set desc [string trim $desc]
#set desc [textutil::adjust $desc -length 50]
}
if {$desc != ""} {
set desc [string trim $desc]
#set desc [textutil::adjust $desc -length 50]
}
m add row [list $p " $sdes" " $desc"]
}
m format 2chan
puts ""
m destroy
}
return
}
# --------------------------------------------------------------
proc __docstrip/users {} {
# Print the list of modules using docstrip for their code.
set argv [modules]
foreach m [lsort $argv] {
if {[docstripUser $m]} {
puts $m
}
}
return
}
proc __docstrip/regen {} {
# Regenerate modules based on docstrip.
global argv ; if {![checkmod]} return
if {[llength $argv] == 0} {set argv [modules]}
foreach m [lsort [dealias $argv]] {
if {[docstripUser $m]} {
docstripRegen $m
}
}
return
}
# --------------------------------------------------------------
## Make sak specific packages visible.
lappend auto_path [file join $distribution support devel sak]
# --------------------------------------------------------------
## Dispatcher to the sak commands.
set cmd [lindex $argv 0]
set argv [lrange $argv 1 end]
incr argc -1
# Prefer a command implementation found in the support tree.
# Then see if the command is implemented here, in this file.
# At last fail and report possible commands.
set base [file dirname [info script]]
set sbase [file join $base support devel sak]
set cbase [file join $sbase $cmd]
set cmdf [file join $cbase cmd.tcl]
if {[file exists $cmdf] && [file readable $cmdf]} {
source $cmdf
exit 0
}
if {[llength [info procs __$cmd]] == 0} {
puts stderr "$argv0 : Illegal command \"$cmd\""
set fl {}
foreach p [info procs __*] {
lappend fl [string range $p 2 end]
}
foreach p [glob -nocomplain -directory $sbase */cmd.tcl] {
lappend fl [lindex [file split $p] end-1]
}
regsub -all . $argv0 { } blank
puts stderr "$blank : Should have been [linsert [join [lsort -uniq $fl] ", "] end-1 or]"
exit 1
}
__$cmd
exit 0
|