1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
|
/****************************************************************************
**
*W system.c GAP source Frank Celler
*W & Martin Schoenert
*W & Dave Bayer (MAC)
*W & Harald Boegeholz (OS/2)
*W & Paul Doyle (VMS)
*W & Burkhard Hoefling (MAC)
*W & Steve Linton (MS/DOS)
**
*H @(#)$Id: system.c,v 4.118.2.13 2006/11/02 10:31:02 jjm Exp $
**
*Y Copyright (C) 1996, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany
*Y (C) 1998 School Math and Comp. Sci., University of St. Andrews, Scotland
*Y Copyright (C) 2002 The GAP Group
**
** The files "system.c" and "sysfiles.c" contains all operating system
** dependent functions. This file contains all system dependent functions
** except file and stream operations, which are implemented in "sysfiles.c".
** The following labels determine which operating system is actually used.
**
** Under UNIX autoconf is used to check various features of the operating
** system and the compiler. Should you have problem compiling GAP check the
** file "bin/CPU-VENDOR-OS/config.h" after you have done a
**
** ./configure ; make config
**
** in the root directory. And then do a
**
** make compile
**
** to compile and link GAP.
*/
#define INCLUDE_DECLARATION_PART
#include "system.h" /* system dependent part */
#undef INCLUDE_DECLARATION_PART
const char * Revision_system_c =
"@(#)$Id: system.c,v 4.118.2.13 2006/11/02 10:31:02 jjm Exp $";
#include "sysfiles.h" /* file input/output */
#include <fcntl.h>
#ifndef SYS_STDIO_H /* standard input/output functions */
# include <stdio.h>
# define SYS_STDIO_H
#endif
#if !SYS_MAC_MWC
#include <dirent.h>
#endif
#ifndef SYS_UNISTD_H /* definition of 'R_OK' */
# include <unistd.h>
# define SYS_UNISTD_H
#endif
#ifndef SYS_STDLIB_H /* ANSI standard functions */
# if SYS_ANSI
# include <stdlib.h>
# endif
# define SYS_STDLIB_H
#endif
#ifndef SYS_HAS_STDIO_PROTO /* ANSI/TRAD decl. from H&S 15 */
extern FILE * fopen ( const char *, const char * );
extern int fclose ( FILE * );
extern void setbuf ( FILE *, char * );
extern char * fgets ( char *, int, FILE * );
extern int fputs ( const char *, FILE * );
#endif
#ifdef __MWERKS__
# if !SYS_MAC_MWC /* BH:__MWERKS__ is also true for SYS_MAC_MWC */
# define SYS_IS_MAC_MPW 1
# define SYS_HAS_CALLOC_PROTO 1
# endif
#endif
#if SYS_MAC_MWC
# include "macdefs.h"
# include "macpaths.h"
# include "macte.h"
# include "macedit.h"
# include "maccon.h"
# include "macpaths.h"
# include "macintr.h"
#endif
#if SYS_DARWIN
#define task_self mach_task_self
#endif
/****************************************************************************
**
*V SyKernelVersion . . . . . . . . . . . . . . . . name of the architecture
*/
const Char * SyKernelVersion = "4.4.9";
/****************************************************************************
*V SyWindowsPath . . . . . . . . . . . . . . . . . default path for Windows
*/
const Char * SyWindowsPath = "C:/gap4r4/";
/****************************************************************************
**
*F * * * * * * * * * * * command line settable options * * * * * * * * * * *
*/
/****************************************************************************
**
*V SyStackAlign . . . . . . . . . . . . . . . . . . alignment of the stack
**
** 'SyStackAlign' is the alignment of items on the stack. It must be a
** divisor of 'sizof(Bag)'. The addresses of all identifiers on the stack
** must be divisable by 'SyStackAlign'. So if it is 1, identifiers may be
** anywhere on the stack, and if it is 'sizeof(Bag)', identifiers may only
** be at addresses divisible by 'sizeof(Bag)'. This value is initialized
** from a macro passed from the makefile, because it is machine dependent.
**
** This value is passed to 'InitBags'.
*/
UInt SyStackAlign = SYS_STACK_ALIGN;
/****************************************************************************
**
*V SyArchitecture . . . . . . . . . . . . . . . . name of the architecture
*/
const Char * SyArchitecture = SYS_ARCH;
/****************************************************************************
**
*V SyBanner . . . . . . . . . . . . . . . . . . . . . . . . suppress banner
**
** 'SyBanner' determines whether GAP should print the banner.
**
** Per default it is true, i.e., GAP prints the nice banner. It can be
** changed by the '-b' option to have GAP suppress the banner.
**
** Put in this package because the command line processing takes place here.
*/
UInt SyBanner = 1;
/****************************************************************************
**
*V SyCTRD . . . . . . . . . . . . . . . . . . . true if '<ctr>-D' is <eof>
*/
#if SYS_MAC_MWC
UInt SyCTRD = 0; /* doesn't make too much sense on a Mac */
#else
UInt SyCTRD = 1;
#endif
/****************************************************************************
**
*V SyCacheSize . . . . . . . . . . . . . . . . . . . . . . size of the cache
**
** 'SyCacheSize' is the size of the data cache.
**
** This is per default 0, which means that there is no usuable data cache.
** It is usually changed with the '-c' option in the script that starts GAP.
**
** This value is passed to 'InitBags'.
**
** Put in this package because the command line processing takes place here.
*/
UInt SyCacheSize = 0;
/****************************************************************************
**
*V SyCheckForCompletion . . . . . . . . . . . . check for completion files
*/
Int SyCheckForCompletion = 1;
/****************************************************************************
**
*V SyCheckCompletionCrcComp . . . check crc while reading completion files
*/
Int SyCheckCompletionCrcComp = 0;
/****************************************************************************
**
*V SyCheckCompletionCrcRead . . . . . . . check crc while completing files
*/
Int SyCheckCompletionCrcRead = 1;
/****************************************************************************
**
*V SyCompileInput . . . . . . . . . . . . . . . . . . from this input file
*/
Char SyCompileInput [256];
/****************************************************************************
**
*V SyCompileMagic1 . . . . . . . . . . . . . . . . . . and this magic string
*/
Char * SyCompileMagic1;
/****************************************************************************
**
*V SyCompileName . . . . . . . . . . . . . . . . . . . . . . with this name
*/
Char SyCompileName [256];
/****************************************************************************
**
*V SyCompileOutput . . . . . . . . . . . . . . . . . . into this output file
*/
Char SyCompileOutput [256];
/****************************************************************************
**
*V SyCompileOutput . . . . . . . . . . . . . . . . . . into this output file
*/
Char SyCompileOptions [256] = {'\0'};
/****************************************************************************
**
*V SyCompilePlease . . . . . . . . . . . . . . . tell GAP to compile a file
*/
Int SyCompilePlease = 0;
/****************************************************************************
**
*V SyDebugLoading . . . . . . . . . output messages about loading of files
*/
Int SyDebugLoading = 0;
/****************************************************************************
**
*V SyGapRootPaths . . . . . . . . . . . . . . . . . . . array of root paths
**
** 'SyGapRootPaths' conatins the names of the directories where the GAP
** files are located.
**
** It is modified by the command line option -l.
**
** It is copied into the GAP variable called 'GAP_ROOT_PATHS' and used by
** 'SyFindGapRootFile'.
**
** Each entry must end with the pathname seperator, eg. if 'init.g' is the
** name of a library file 'strcat( SyGapRootPaths[i], "lib/init.g" );' must
** be a valid filename.
**
** Put in this package because the command line processing takes place here.
**
#define MAX_GAP_DIRS 128
*/
Char SyGapRootPaths [MAX_GAP_DIRS] [512];
/****************************************************************************
**
*V SyInitfiles[] . . . . . . . . . . . list of filenames to be read in init
**
** 'SyInitfiles' is a list of file to read upon startup of GAP.
**
** It contains the 'init.g' file and a user specific init file if it exists.
** It also contains all names all the files specified on the command line.
**
** This is used in 'InitGap' which tries to read those files upon startup.
**
** Put in this package because the command line processing takes place here.
**
** For UNIX this list contains 'LIBNAME/init.g' and '$HOME/.gaprc'.
*/
Char SyInitfiles [32] [512];
/****************************************************************************
**
*V SyGapRCFilename . . . . . . . . . . . . . . . filename of the gaprc file
*/
Char SyGapRCFilename [512];
/****************************************************************************
**
*V SyHasUserHome . . . . . . . . . . true if user has HOME in environment
*V SyUserHome . . . . . . . . . . . . . path of users home (it is exists)
*/
Int SyHasUserHome = 0;
Char SyUserHome [256];
/****************************************************************************
**
*V SyLineEdit . . . . . . . . . . . . . . . . . . . . support line editing
**
** 0: no line editing
** 1: line editing if terminal
** 2: always line editing (EMACS)
*/
UInt SyLineEdit = 1;
/****************************************************************************
**
*V SyAutoloadPackages . . . . . . . . . . . . . automatically load packages
**
** 0: no
** 1: yes
*/
UInt SyAutoloadPackages = 1;
/****************************************************************************
**
*V SyBreakSuppress . . . . . . . . never enter a break loop
**
** 0: no
** 1: yes
*/
UInt SyBreakSuppress = 0;
/****************************************************************************
**
*V SyMsgsFlagBags . . . . . . . . . . . . . . . . . enable gasman messages
**
** 'SyMsgsFlagBags' determines whether garabage collections are reported or
** not.
**
** Per default it is false, i.e. Gasman is silent about garbage collections.
** It can be changed by using the '-g' option on the GAP command line.
**
** This is used in the function 'SyMsgsBags' below.
**
** Put in this package because the command line processing takes place here.
*/
UInt SyMsgsFlagBags = 0;
/****************************************************************************
**
*V SyNrCols . . . . . . . . . . . . . . . . . . length of the output lines
**
** 'SyNrCols' is the length of the lines on the standard output device.
**
** Per default this is 80 characters which is the usual width of terminals.
** It can be changed by the '-x' options for larger terminals or printers.
**
** 'Pr' uses this to decide where to insert a <newline> on the output lines.
** 'SyRead' uses it to decide when to start scrolling the echoed input line.
**
** See also getwindowsize() below.
**
** Put in this package because the command line processing takes place here.
*/
UInt SyNrCols = 0;
UInt SyNrColsLocked = 0;
/****************************************************************************
**
*V SyNrRows . . . . . . . . . . . . . . . . . number of lines on the screen
**
** 'SyNrRows' is the number of lines on the standard output device.
**
** Per default this is 24, which is the usual size of terminal screens.
** It can be changed with the '-y' option for larger terminals or printers.
**
** 'SyHelp' uses this to decide where to stop with '-- <space> for more --'.
**
** See also getwindowsize() below.
*/
UInt SyNrRows = 0;
UInt SyNrRowsLocked = 0;
/****************************************************************************
**
*V SyQuiet . . . . . . . . . . . . . . . . . . . . . . . . . suppress prompt
**
** 'SyQuiet' determines whether GAP should print the prompt and the banner.
**
** Per default its false, i.e. GAP prints the prompt and the nice banner.
** It can be changed by the '-q' option to have GAP operate in silent mode.
**
** It is used by the functions in 'gap.c' to suppress printing the prompts.
**
** Put in this package because the command line processing takes place here.
*/
UInt SyQuiet = 0;
/****************************************************************************
**
*V SyRestoring . . . . . . . . . . . . . . . . . . . . restoring a workspace
**
** `SyRestoring' determines whether GAP is restoring a workspace or not. If
** it is zero no restoring should take place otherwise it holds the filename
** of a workspace to restore.
**
*/
Char * SyRestoring;
/****************************************************************************
**
*V SyInitializing set to 1 during library init
**
** `SyInitializing' is set to 1 during the library intialization phase of
** startup. It supresses some ebhaviours that may not be possible so early
** such as homogeneity tests in the plist code.
*/
UInt SyInitializing = 0;
/****************************************************************************
**
*V SyStorMax . . . . . . . . . . . . . . . . . . . maximal size of workspace
**
** 'SyStorMax' is the maximal size of the workspace allocated by Gasman.
** in kilobytes
**
** This is per default 256 MByte, which is often a reasonable value. It is
** usually changed with the '-o' option in the script that starts GAP.
**
** This is used in the function 'SyAllocBags'below.
**
** Put in this package because the command line processing takes place here.
*/
Int SyStorMax = 256 * 1024L;
Int SyStorOverrun = 0;
/****************************************************************************
**
*V SyStorKill . . . . . . . . . . . . . . . . . . maximal size of workspace
**
** 'SyStorKill' is really the maximal size of the workspace allocated by
** Gasman. GAP exists before trying to allocate more than this amount
** of memory.
**
** This is per default disabled (i.e. = 0).
** Can be changed with the '-K' option in the script that starts GAP.
**
** This is used in the function 'SyAllocBags'below.
**
** Put in this package because the command line processing takes place here.
*/
Int SyStorKill = 0L;
/****************************************************************************
**
*V SyStorMin . . . . . . . . . . . . . . default size for initial workspace
**
** 'SyStorMin' is the size of the initial workspace allocated by Gasman.
**
** This is per default 24 Megabyte, which is often a reasonable value.
** It is usually changed with the '-m' option in the script that starts GAP.
**
** This value is used in the function 'SyAllocBags' below.
**
** Put in this package because the command line processing takes place here.
*/
Int SyStorMin = SY_STOR_MIN;
/****************************************************************************
**
*V SySystemInitFile . . . . . . . . . . . name of the system "init.g" file
*/
Char SySystemInitFile [256];
/****************************************************************************
**
*V SyUseModule . . . . . check for dynamic/static modules in 'READ_GAP_ROOT'
*/
int SyUseModule = 1;
/****************************************************************************
**
*V SyWindow . . . . . . . . . . . . . . . . running under a window handler
**
** 'SyWindow' is 1 if GAP is running under a window handler front end such
** as 'xgap', and 0 otherwise.
**
** If running under a window handler front end, GAP adds various commands
** starting with '@' to the output to let 'xgap' know what is going on.
*/
UInt SyWindow = 0;
/****************************************************************************
**
*V syStackSpace . . . . . . . . . . . . . . . . . . . amount of stack space
**
** 'syStackSpace' is the amount of stackspace that GAP gets.
**
** Under TOS and on the Mac special actions must be taken to ensure that
** enough space is available.
*/
#if SYS_TOS_GCC2
# define __NO_INLINE__
int _stksize = 64 * 1024; /* GNU C, amount of stack space */
static UInt syStackSpace = 64 * 1024;
#endif
#if SYS_MAC_MPW || SYS_MAC_MWC
static UInt syStackSpace = 2L * 1024L * 1024L;
#endif
#if SYS_MAC_MWC
char * SyMinStack = (char*) -1L;
#endif
/****************************************************************************
**
*V SyFalseEqFail . . . . .. .compatibility option, identifies false and fail
**
** In GAP 3 there was no fail, and false was often used. This flag causes
** false and fail to be the same value
*/
UInt SyFalseEqFail = 0;
/****************************************************************************
**
*F * * * * * * * * * * * * * time related functions * * * * * * * * * * * * *
*/
/****************************************************************************
**
*V SyStartTime . . . . . . . . . . . . . . . . . . time when GAP was started
*/
UInt SyStartTime;
/****************************************************************************
**
*V SyStopTime . . . . . . . . . . . . . . . . . . time when reading started
*/
UInt SyStopTime;
/****************************************************************************
**
*F SyTime() . . . . . . . . . . . . . . . return time spent in milliseconds
**
** 'SyTime' returns the number of milliseconds spent by GAP so far.
**
** Should be as accurate as possible, because it is used for profiling.
*/
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . using `getrusage'
**
** Use use 'getrusage' if possible, because it gives us a much better
** resolution.
*/
#if ! SYS_IS_CYGWIN32
#if HAVE_GETRUSAGE
#ifndef SYS_RESOURCE_H
# include <sys/time.h> /* definition of 'struct timeval' */
# include <sys/resource.h> /* definition of 'struct rusage' */
# define SYS_RESOURCE_H
#endif
#ifndef SYS_HAS_TIME_PROTO /* UNIX decl. from 'man' */
extern int getrusage ( int, struct rusage * );
#endif
UInt SyTime ( void )
{
struct rusage buf;
if ( getrusage( RUSAGE_SELF, &buf ) ) {
fputs("gap: panic 'SyTime' cannot get time!\n",stderr);
SyExit( 1 );
}
return buf.ru_utime.tv_sec*1000 + buf.ru_utime.tv_usec/1000 -SyStartTime;
}
UInt SyTimeSys ( void )
{
struct rusage buf;
if ( getrusage( RUSAGE_SELF, &buf ) ) {
fputs("gap: panic 'SyTimeSys' cannot get time!\n",stderr);
SyExit( 1 );
}
return buf.ru_stime.tv_sec*1000 + buf.ru_stime.tv_usec/1000;
}
UInt SyTimeChildren ( void )
{
struct rusage buf;
if ( getrusage( RUSAGE_CHILDREN, &buf ) ) {
fputs("gap: panic 'SyTimeChildren' cannot get time!\n",stderr);
SyExit( 1 );
}
return buf.ru_utime.tv_sec*1000 + buf.ru_utime.tv_usec/1000;
}
UInt SyTimeChildrenSys ( void )
{
struct rusage buf;
if ( getrusage( RUSAGE_CHILDREN, &buf ) ) {
fputs("gap: panic 'SyTimeChildrenSys' cannot get time!\n",stderr);
SyExit( 1 );
}
return buf.ru_stime.tv_sec*1000 + buf.ru_stime.tv_usec/1000;
}
#endif
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . BSD/Mach/DJGPP
**
** For Berkeley UNIX the clock ticks in 1/60. On some (all?) BSD systems we
** can use 'getrusage', which gives us a much better resolution.
*/
#if ! HAVE_GETRUSAGE
#if SYS_BSD || SYS_MACH || SYS_MSDOS_DJGPP || HAVE_TIMES
#ifndef SYS_TIMES_H /* time functions */
# include <sys/types.h>
# include <sys/times.h>
# define SYS_TIMES_H
#endif
#ifndef SYS_HAS_TIME_PROTO /* UNIX decl. from 'man' */
extern int times ( struct tms * );
#endif
UInt SyTime ( void )
{
struct tms tbuf;
if ( times( &tbuf ) == -1 ) {
fputs("gap: panic 'SyTime' cannot get time!\n",stderr);
SyExit( 1 );
}
return 100 * tbuf.tms_utime / (60/10) - SyStartTime;
}
#endif
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . . . . . USG/OS2
**
** For UNIX System V and OS/2 the clock ticks in 1/HZ, this is usually 1/60
** or 1/100.
*/
#if SYS_USG || SYS_OS2_EMX
#ifndef SYS_TIMES_H /* time functions */
# include <sys/param.h> /* definition of 'HZ' */
# include <sys/types.h>
# include <sys/times.h>
# define SYS_TIMES_H
#endif
#ifndef SYS_HAS_TIME_PROTO /* UNIX decl. from 'man' */
extern int times ( struct tms * );
#endif
UInt SyTime ( void )
{
struct tms tbuf;
if ( times( &tbuf ) == -1 ) {
fputs("gap: panic 'SyTime' cannot get time!\n",stderr);
SyExit( 1 );
}
return 100 * tbuf.tms_utime / (HZ / 10) - SyStartTime;
}
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . CYGWIN
**
** though the configuration claims that `getrusage' works, it does not. We
** must use `times' and the factor is different than under BSD &c.
*/
#if SYS_IS_CYGWIN32
#ifndef SYS_TIMES_H /* time functions */
# include <sys/types.h>
# include <sys/times.h>
# define SYS_TIMES_H
#endif
#ifndef SYS_HAS_TIME_PROTO /* UNIX decl. from 'man' */
extern int times ( struct tms * );
#endif
UInt SyTime ( void )
{
struct tms tbuf;
if ( times( &tbuf ) == -1 ) {
fputs("gap: panic 'SyTime' cannot get time!\n",stderr);
SyExit( 1 );
}
return tbuf.tms_utime - SyStartTime;
}
UInt SyTimeSys ( void )
{
return 0;
}
UInt SyTimeChildren ( void )
{
return 0;
}
UInt SyTimeChildrenSys ( void )
{
return 0;
}
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . . . . . TOS/VMS
**
** For TOS and VMS we use the function 'clock' and allow to stop the clock.
*/
#if SYS_TOS_GCC2 || SYS_VMS
#ifndef SYS_TIME_H /* time functions */
# include <time.h>
# define SYS_TIME_H
#endif
#ifndef SYS_HAS_TIME_PROTO /* ANSI/TRAD decl. from H&S 18.2 */
# if SYS_ANSI
extern clock_t clock ( void );
# define SYS_CLOCKS CLOCKS_PER_SEC
# else
extern long clock ( void );
# if SYS_TOS_GCC2
# define SYS_CLOCKS 200
# else
# define SYS_CLOCKS 100
# endif
# endif
#endif
UInt SyTime ( void )
{
return 100 * (UInt)clock() / (SYS_CLOCKS/10) - SyStartTime;
}
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . MAC
**
** For MAC with MPW we use the 'TickCount' function and allow to stop the
** clock.
*/
#if SYS_MAC_MPW
#ifndef SYS_TYPES_H /* various types */
# include <Types.h>
# define SYS_TYPES_H
#endif
#ifndef SYS_EVENTS_H /* system events, high level: */
# include <Events.h> /* 'TickCount' */
# define SYS_EVENTS_H
#endif
UInt SyTime ( void )
{
return 100 * (UInt)TickCount() / (60/10) - SyStartTime;
}
#endif
/****************************************************************************
**
*f SyTime() . . . . . . . . . . . . . . . . . . . . . . . . . . . . MAC MWC
**
** For MAC with Metrowerks C we use the 'Microseconds' function and allow
** to stop the clock.
*/
#if SYS_MAC_MWC
# include <Timer.h> /* Microseconds */
UInt SyTime ( void )
{
UnsignedWide w;
unsigned long div, res;
Microseconds (&w);
div = ((w.hi % 1000) << 16) | (w.lo >> 16);
res = (div / 1000) << 16;
div = ((div % 1000) << 16) | (w.lo & ((1L<<16) - 1 ));
res |= div/1000;
return res - SyStartTime;
}
#endif
/****************************************************************************
**
*F * * * * * * * * * * * * * * * string functions * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyStrlen( <str> ) . . . . . . . . . . . . . . . . . . length of a string
**
** 'SyStrlen' returns the length of the string <str>, i.e., the number of
** characters in <str> that precede the terminating null character.
*/
#ifndef SYS_STRING_H /* string functions */
# include <string.h>
# define SYS_STRING_H
#endif
#ifndef SYS_HAS_STRING_PROTO /* ANSI/TRAD decl. from H&S 13 */
# if SYS_ANSI
extern char * strncat ( char *, const char *, size_t );
extern int strcmp ( const char *, const char * );
extern int strncmp ( const char*, const char*, size_t );
extern size_t strlen ( const char * );
# else
extern char * strncat ( char *, const char *, int );
extern int strcmp ( const char *, const char * );
extern int strncmp ( const char *, const char *, int );
extern int strlen ( const char * );
# endif
#endif
UInt SyStrlen (
const Char * str )
{
return strlen( str );
}
/****************************************************************************
**
*F SyStrcmp( <str1>, <str2> ) . . . . . . . . . . . . . compare two strings
**
** 'SyStrcmp' returns an integer greater than, equal to, or less than zero
** according to whether <str1> is greater than, equal to, or less than
** <str2> lexicographically.
*/
Int SyStrcmp (
const Char * str1,
const Char * str2 )
{
return strcmp( str1, str2 );
}
/****************************************************************************
**
*F SyStrncmp( <str1>, <str2>, <len> ) . . . . . . . . . compare two strings
**
** 'SyStrncmp' returns an integer greater than, equal to, or less than zero
** according to whether <str1> is greater than, equal to, or less than
** <str2> lexicographically. 'SyStrncmp' compares at most <len> characters.
*/
Int SyStrncmp (
const Char * str1,
const Char * str2,
UInt len )
{
return strncmp( str1, str2, len );
}
/****************************************************************************
**
*F SyStrncat( <dst>, <src>, <len> ) . . . . . append one string to another
**
** 'SyStrncat' appends characters from the <src> to <dst> until either a
** null character is encoutered or <len> characters have been copied.
** <dst> becomes the concatenation of <dst> and <src>. The resulting string
** is always null terminated. 'SyStrncat' returns a pointer to <dst>.
*/
#ifdef SYS_HAS_BROKEN_STRNCAT
Char * SyStrncat (
Char * dst,
const Char * src,
UInt len )
{
Char * d;
const Char * s; /*BH: CodeWarrior needs const */
for ( d = dst; *d != '\0'; d++ )
;
for ( s = src; *s != '\0' && 0 < len; len-- )
*d++ = *s++;
*d = 0;
return dst;
}
#else
Char * SyStrncat (
Char * dst,
const Char * src,
UInt len )
{
return strncat( dst, src, len );
}
#endif
/****************************************************************************
**
*F * * * * * * * * * * * * * * gasman interface * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyMsgsBags( <full>, <phase>, <nr> ) . . . . . . . display Gasman messages
**
** 'SyMsgsBags' is the function that is used by Gasman to display messages
** during garbage collections.
*/
#if SYS_MAC_MWC
UInt syLastFreeWorkspace = 0;
/* amout of free workspace during last collection */
#endif
Int SyGasmanNumbers[2][7] = {{0,0,0,0,0,0,0},{0,0,0,0,0,0,0}};
void SyMsgsBags (
UInt full,
UInt phase,
Int nr )
{
Char cmd [3]; /* command string buffer */
Char str [32]; /* string buffer */
Char ch; /* leading character */
UInt i; /* loop variable */
Int copynr; /* copy of <nr> */
UInt shifted; /* non-zero if nr > 10^6 and so
has to be shifted down */
/* remember the numbers */
if (phase > 0)
{
SyGasmanNumbers[full][phase] = nr;
/* in a full GC clear the partial numbers */
if (full)
SyGasmanNumbers[0][phase] = 0;
}
/* convert <nr> into a string with leading blanks */
copynr = nr;
ch = '0'; str[7] = '\0';
shifted = (nr >= ((phase % 2) ? 10000000 : 1000000)) ? 1 : 0;
if (shifted)
{
nr /= 1024;
}
if ((phase % 2) == 1 && shifted && nr > 1000000)
{
shifted++;
nr /= 1024;
}
for ( i = ((phase % 2) == 1 && shifted) ? 6 : 7 ;
i != 0; i-- ) {
if ( 0 < nr ) { str[i-1] = '0' + ( nr) % 10; ch = ' '; }
else if ( nr < 0 ) { str[i-1] = '0' + (-nr) % 10; ch = '-'; }
else { str[i-1] = ch; ch = ' '; }
nr = nr / 10;
}
nr = copynr;
if ((phase % 2) == 1 && shifted == 1)
str[6] = 'K';
if ((phase % 2) == 1 && shifted == 2)
str[6] = 'M';
#if SYS_MAC_MWC
if (phase == 5)
syLastFreeWorkspace = nr; /* save for status message in about box */
#endif
/* ordinary full garbage collection messages */
if ( 1 <= SyMsgsFlagBags && full ) {
if ( phase == 0 ) { SyFputs( "#G FULL ", 3 ); }
if ( phase == 1 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 2 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb live " : "kb live ", 3 ); }
if ( phase == 3 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 4 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb dead " : "kb dead ", 3 ); }
if ( phase == 5 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 6 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb free\n" : "kb free\n", 3 ); }
}
/* ordinary partial garbage collection messages */
if ( 2 <= SyMsgsFlagBags && ! full ) {
if ( phase == 0 ) { SyFputs( "#G PART ", 3 ); }
if ( phase == 1 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 2 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb+live ":"kb+live ", 3 ); }
if ( phase == 3 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 4 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb+dead ":"kb+dead ", 3 ); }
if ( phase == 5 ) { SyFputs( str, 3 ); SyFputs( "/", 3 ); }
if ( phase == 6 ) { SyFputs( str, 3 ); SyFputs( shifted ? "mb free\n":"kb free\n", 3 ); }
}
#if !SYS_MAC_MWC
/* package (window) mode full garbage collection messages */
if ( phase != 0 ) {
shifted = 3 <= phase && nr >= (1 << 21);
if (shifted)
nr *= 1024;
cmd[0] = '@';
cmd[1] = ( full ? '0' : ' ' ) + phase;
cmd[2] = '\0';
i = 0;
for ( ; 0 < nr; nr /=10 )
str[i++] = '0' + (nr % 10);
str[i++] = '+';
str[i++] = '\0';
if (shifted)
str[i++] = 'k';
syWinPut( 1, cmd, str );
}
#endif
}
/****************************************************************************
**
*F SyAllocBags( <size>, <need> ) . . . allocate memory block of <size> kilobytes
**
** 'SyAllocBags' is called from Gasman to get new storage from the operating
** system. <size> is the needed amount in kilobytes (it is always a multiple of
** 512 KByte), and <need> tells 'SyAllocBags' whether Gasman really needs
** the storage or only wants it to have a reasonable amount of free storage.
**
** Currently Gasman expects this function to return immediately adjacent
** areas on subsequent calls. So 'sbrk' will work on most systems, but
** 'malloc' will not.
**
** If <need> is 0, 'SyAllocBags' must return 0 if it cannot or does not want
** to extend the workspace, and a pointer to the allocated area to indicate
** success. If <need> is 1 and 'SyAllocBags' cannot extend the workspace,
** 'SyAllocBags' must abort, because GAP assumes that 'NewBag' will never
** fail.
**
** <size> may also be negative in which case 'SyAllocBags' should return the
** storage to the operating system. In this case <need> will always be 0.
** 'SyAllocBags' can either accept this reduction and return 1 and return
** the storage to the operating system or refuse the reduction and return 0.
**
** If the operating system does not support dynamic memory managment, simply
** give 'SyAllocBags' a static buffer, from where it returns the blocks.
*/
/****************************************************************************
**
*f SyAllocBags( <size>, <need> ) . . . . . . . BSD/USG/OS2 EMX/MSDOS/TOS/VMS
**
** For UNIX, OS/2, MS-DOS, TOS, and VMS, 'SyAllocBags' calls 'sbrk', which
** will work on most systems.
**
** Note that it may happen that another function has called 'sbrk'
** between two calls to 'SyAllocBags', so that the next allocation will
** not be immediately adjacent to the last one. In this case 'SyAllocBags'
** returns the area to the operating system, and either returns 0 if <need>
** was 0 or aborts GAP if <need> was 1. 'SyAllocBags' will refuse to extend
** the workspace beyond 'SyStorMax' or to reduce it below 'SyStorMin'.
*/
#if SYS_BSD||SYS_USG||SYS_OS2_EMX||SYS_MSDOS_DJGPP||SYS_TOS_GCC2||SYS_VMS||HAVE_SBRK
#ifndef SYS_HAS_MISC_PROTO /* UNIX decl. from 'man' */
extern char * sbrk ( int );
#endif
UInt * * * syWorkspace = 0;
UInt syWorksize;
UInt * * * SyAllocBags (
Int size,
UInt need )
{
UInt * * * ret;
UInt adjust = 0;
/* force alignment on first call */
if ( syWorkspace == (UInt***)0 ) {
#ifdef SYS_IS_64_BIT
syWorkspace = (UInt***)sbrk( 8 - (UInt)sbrk(0) % 8 );
#else
syWorkspace = (UInt***)sbrk( 4 - (UInt)sbrk(0) % 4 );
#endif
syWorkspace = (UInt***)sbrk( 0 );
}
/* get the storage, but only if we stay within the bounds */
/* if ( (0 < size && syWorksize + size <= SyStorMax) */
/* first check if we would get above SyStorKill, if yes exit! */
if ( SyStorKill != 0 && 0 < size && SyStorKill < syWorksize + size ) {
fputs("gap: will not extend workspace above -K limit, bye!\n",stderr);
SyExit( 2 );
}
if (0 < size )
{
#ifndef SYS_IS_64_BIT
while (size > 1024*1024)
{
ret = (UInt ***)sbrk(1024*1024*1024);
if (ret != (UInt ***)-1 && ret != (UInt***)((char*)syWorkspace + syWorksize*1024))
{
sbrk(-1024*1024*1024);
ret = (UInt ***)-1;
}
if (ret == (UInt ***)-1)
break;
size -= 1024*1024;
syWorksize += 1024*1024;
adjust++;
}
#endif
ret = (UInt ***)sbrk(size*1024);
if (ret != (UInt ***)-1 && ret != (UInt***)((char*)syWorkspace + syWorksize*1024))
{
sbrk(-size*1024);
ret = (UInt ***)-1;
}
}
else if (size < 0 && SyStorMin <= syWorksize + size) {
#ifndef SYS_IS_64_BIT
while (size < -1024*1024)
{
ret = (UInt ***)sbrk(-1024*1024*1024);
if (ret == (UInt ***)-1)
break;
size += 1024*1024;
syWorksize -= 1024*1024;
}
#endif
ret = (UInt ***)sbrk(size*1024);
}
else {
ret = (UInt***)-1;
}
/* update the size info */
if ( ret != (UInt***)-1 ) {
syWorksize += size;
/* set the overrun flag if we became larger than SyStorMax */
if ( SyStorMax != 0 && syWorksize > SyStorMax) {
SyStorOverrun = -1;
SyStorMax=syWorksize*2; /* new maximum */
InterruptExecStat(); /* interrupt at the next possible point */
}
}
/* test if the allocation failed */
if ( ret == (UInt***)-1 && need ) {
fputs("gap: cannot extend the workspace any more\n",stderr);
SyExit( 1 );
}
/* otherwise return the result (which could be 0 to indicate failure) */
if ( ret == (UInt***)-1 )
return 0;
else
return (UInt***)(((Char *)ret) - 1024*1024*1024*adjust);
}
#endif
/****************************************************************************
**
*f SyAllocBags( <size>, <need> ) . . . . . . . . . . . . . . . . . . . MACH
**
** Under MACH virtual memory managment functions are used instead of 'sbrk'.
*/
#if SYS_MACH || HAVE_VM_ALLOCATE
#include <mach/mach.h>
vm_address_t syBase = 0;
Int sySize = 0;
UInt * * * SyAllocBags (
Int size,
UInt need )
{
UInt * * * ret = (UInt***)-1;
vm_address_t adr;
if ( SyStorKill != 0 && 0 < size && SyStorKill < sySize + size ) {
if (need) {
fputs("gap: will not extend workspace above -K limit, bye!\n",stderr);
SyExit( 2 );
}
}
/* check that <size> is divisible by <vm_page_size> */
else if ( size*1024 % vm_page_size != 0 ) {
fputs( "gap: memory block size is not a multiple of vm_page_size",
stderr );
SyExit(1);
}
/* check that we don't try to shrink uninialized memory */
else if ( size <= 0 && syBase == 0 ) {
fputs( "gap: trying to shrink uninialized vm memory\n", stderr );
SyExit(1);
}
/* allocate memory anywhere on first call */
else if ( 0 < size && syBase == 0 ) {
if ( vm_allocate(task_self(),&syBase,size*1024,TRUE) == KERN_SUCCESS ) {
sySize = size;
ret = (UInt***) syBase;
}
}
/* don't shrink memory but mark it as deactivated */
else if ( size < 0 && sySize + size > SyStorMin) {
adr = (vm_address_t)( (char*) syBase + (sySize+size)*1024 );
if ( vm_deallocate(task_self(),adr,-size*1024) == KERN_SUCCESS ) {
ret = (UInt***)( (char*) syBase + sySize*1024 );
sySize += size;
}
}
/* get more memory from system */
else {
adr = (vm_address_t)( (char*) syBase + sySize*1024 );
if ( vm_allocate(task_self(),&adr,size*1024,FALSE) == KERN_SUCCESS ) {
ret = (UInt***) ( (char*) syBase + sySize*1024 );
sySize += size;
}
}
/* test if the allocation failed */
if ( ret == (UInt***)-1 && need ) {
fputs("gap: cannot extend the workspace any more\n",stderr);
SyExit(1);
}
/* otherwise return the result (which could be 0 to indicate failure) */
if ( ret == (UInt***)-1 )
return (UInt***) 0;
else {
if ( sySize > SyStorMax) {
SyStorOverrun = -1;
SyStorMax=sySize*2; /* new maximum */
InterruptExecStat(); /* interrupt at the next possible point */
}
return ret;
}
}
#endif
/****************************************************************************
**
*f SyAllocBags( <size>, <need> ) . . . . . . . . . . . . . . . . . . MAC MPW
**
** For the MAC under MPW we currently use 'calloc'. This does not allow to
** extend the arena, but this is a problem of the memory manager anyhow.
*/
#if SYS_MAC_MPW
#ifndef SYS_HAS_CALLOC_PROTO
extern char * calloc ( int, int );
#endif
char * syWorkspace;
char * SyGetmem ( size )
long size;
{
size = size*1024;
/* get the memory */
/*N 1993/05/29 martin try to make it possible to extend the arena */
if ( syWorkspace == 0 ) {
syWorkspace = calloc( (int)size/4, 4 );
syWorkspace = (char*)(((long)syWorkspace + 3) & ~3);
return syWorkspace;
}
else {
return (char*)-1;
}
}
#endif
/****************************************************************************
**
*f SyAllocBags( <size>, <need> ) . . . . . . . . . . . . . . . . . . MAC MWC
**
** For Mac under CodeWarrior, we use 'NewPtr to allocate as much memory
** as possible at startup, then hand it on to GAP as required.
*/
#if SYS_MAC_MWC
UInt * * * syWorkspace;
long syWorksize = 0; /* currently allocated amount in KB*/
long SyStorLimit; /* maximum allocable amount in KB*/
long SyStorReserve = 512L; /* reserve memory if all other storage is gone */
UInt * * * SyAllocBags (
Int size,
UInt need )
{
UInt*** ret;
long *p;
unsigned long count;
if ( (0 < size && (syWorksize + size <= SyStorMax ||
(need && syWorksize + size <= SyStorLimit)))
|| (size < 0 && SyStorMin <= syWorksize + size) ) {
ret = (UInt***)((char*)syWorkspace + (syWorksize << 10L) );
syWorksize += size;
syLastFreeWorkspace += size;
/* set the overrun flag if we became larger than SyStorMax */
if ( syWorksize > SyStorMax && size > 0) {
SyStorMax=syWorksize*2; /* new maximum */
if (SyStorMax > SyStorLimit - SyStorReserve) {
SyStorMax = SyStorLimit - SyStorReserve;
SyStorOverrun = -2;
} else
SyStorOverrun = -1;
InterruptExecStat(); /* interrupt at the next possible point */
}
/* clear memory, 256 bytes at a time */
p = (long *) ret;
if (size > 0) {
count = size * (1024UL / sizeof(*p) / 64);
while (count--) {
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
*p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;
}
}
return ret;
}
else
if ( need ) {
syEchos("gap: cannot extend the workspace any more\n",3);
SyExit( 1 );
}
return (UInt***) 0;
}
#endif
/****************************************************************************
**
*F SyAbortBags( <msg> ) . . . . . . . . . abort GAP in case of an emergency
**
** 'SyAbortBags' is the function called by Gasman in case of an emergency.
*/
void SyAbortBags (
Char * msg )
{
SyFputs( msg, 3 );
SyExit( 2 );
}
/****************************************************************************
**
*F SySleep( <secs> ) . . . . . . . . . . . . . .sleep GAP for <secs> seconds
**
** NB Various OS events (like signals) might wake us up
**
*/
#if SYS_MAC_MWC
void SySleep ( UInt secs )
{
Boolean oldGapIsIdle;
long t;
oldGapIsIdle = gGAPIsIdle;
gGAPIsIdle = false;
t = TickCount();
while (TickCount() - t < 60*secs)
ProcessEvent();
gGAPIsIdle = oldGapIsIdle;
}
#else
void SySleep ( UInt secs )
{
sleep( (unsigned int) secs );
}
#endif
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyExit( <ret> ) . . . . . . . . . . . . . exit GAP with return code <ret>
**
** 'SyExit' is the offical way to exit GAP, bus errors are the inoffical.
** The function 'SyExit' must perform all the neccessary cleanup operations.
** If ret is 0 'SyExit' should signal to a calling proccess that all is ok.
** If ret is 1 'SyExit' should signal a failure to the calling proccess.
*/
#ifndef SYS_HAS_MISC_PROTO /* ANSI/TRAD decl. from H&S 19.3 */
extern void exit ( int );
#endif
#if !SYS_MAC_MWC
void SyExit (
UInt ret )
{
#if SYS_MAC_MPW
# ifndef SYS_HAS_TOOL
fputs("gap: please use <option>-'Q' to close the window.\n",stdout);
# endif
#endif
#if SYS_IS_CYGWIN32
if (ret!=0) {
Int c;
fputs("gap: Press <Enter> to end program\n",stderr);
do {
c=SyGetch(1); /* wait for the user to type <return> */
} while (c!='\n' && c!=' ');
}
#endif
exit( (int)ret );
}
#endif
#if SYS_MAC_MWC
extern short syTmpVref; /* volume ref num for temp directory */
extern long syTmpDirId; /* dir id for temp directory */
void SyExit ( ret )
UInt ret;
{
Int c;
OSErr err;
if (ret) { /* make sure the user can see the last error message(s) */
OpenLogWindow ();
SyFputs ("\nA fatal error has occurred. \n", 3);
SyFputs ("GAP will quit now. Press the <return> key.\n", 3);
FlushLog (); /* discard pending input */
do {
SyIsInterrupted = false;
c = SyGetch (2); /* wait for the user to type <return> */
} while (c != '\n' && c != 3);
}
if (!gUserWantsToQuitGAP)
DoQuit (false);
/* delete temp files */
if ((err = DeleteFolderAndContents (syTmpVref, syTmpDirId)) != noErr)
doDiagnosticMessage (23, err);
ExitToShell ();
}
#endif
/****************************************************************************
**
*F SySetGapRootPath( <string> ) . . . . . . . . . set the root directories
**
** 'SySetGapRootPath' takes a string and modifies a list of root directories
** in 'SyGapRootPaths'.
**
** A leading semicolon in <string> means that the list of directories in
** <string> is appended to the existing list of root paths. A trailing
** semicolon means they are prepended. If there is no leading or trailing
** semicolon, then the root paths are overwritten.
*/
/****************************************************************************
**
*f SySetGapRootPath( <string> ) . . . . . . . . . . . . . . . BSG/Mach/USG
*/
#if SYS_BSD || SYS_MACH || SYS_USG || SYS_OS2_EMX || HAVE_SLASH_SEPARATOR \
|| SYS_MAC_MWC
void SySetGapRootPath( Char * string )
{
Char * p;
Char * q;
Int i;
Int n;
/* set string to a default value if unset */
if ( string == 0 ) {
string = "./";
}
/*
** check if we append, prepend or overwrite.
*/
if( string[0] == ';' ) {
/* Count the number of root directories already present. */
n = 0; while( SyGapRootPaths[n][0] != '\0' ) n++;
/* Skip leading semicolon. */
string++;
}
else if( string[ SyStrlen(string) - 1 ] == ';' ) {
/* Count the number of directories in 'string'. */
n = 0; p = string; while( *p ) if( *p++ == ';' ) n++;
/* Find last root path. */
for( i = 0; i < MAX_GAP_DIRS; i++ )
if( SyGapRootPaths[i][0] == '\0' ) break;
i--;
/* Move existing root paths to the back */
if( i + n >= MAX_GAP_DIRS ) return;
while( i >= 0 ) {
SyGapRootPaths[i+n][0] = '\0';
SyStrncat( SyGapRootPaths[i+n], SyGapRootPaths[i], 254 );
i--;
}
n = 0;
}
else {
/* Make sure to wipe out all possibly existing root paths */
for( i = 0; i < MAX_GAP_DIRS; i++ ) SyGapRootPaths[i][0] = '\0';
n = 0;
}
/* unpack the argument */
p = string;
while ( *p ) {
if( n >= MAX_GAP_DIRS ) return;
q = SyGapRootPaths[n];
while ( *p && *p != ';' ) {
*q = *p++;
#if SYS_IS_CYGWIN32
/* fix up for DOS */
if (*q == '\\')
*q = '/';
#endif
q++;
}
if ( q == SyGapRootPaths[n] ) {
SyGapRootPaths[n][0] = '\0';
SyStrncat( SyGapRootPaths[n], "./", 2 );
}
else if ( q[-1] != '/' ) {
*q++ = '/';
*q = '\0';
}
else {
*q = '\0';
}
if ( *p ) {
p++; n++;
}
}
return;
}
#endif
/****************************************************************************
**
*F sySetGapRCFile() . . . . . . . . . . . . . set gaprc file name variable
*/
void sySetGapRCFile ( void )
{
SyGapRCFilename[0] ='\0';
#if HAVE_DOTGAPRC
if ( getenv("HOME") != 0 ) {
SyStrncat(SyGapRCFilename,getenv("HOME"),sizeof(SyGapRCFilename)-1);
SyStrncat( SyGapRCFilename, "/.gaprc",
(UInt)(sizeof(SyGapRCFilename)-1-SyStrlen(SyGapRCFilename)));
}
#endif
#if HAVE_GAPRC
if ( getenv("HOME") != 0 ) {
SyStrncat(SyGapRCFilename,getenv("HOME"),sizeof(SyGapRCFilename)-1);
SyStrncat( SyGapRCFilename, "/gap.rc",
(UInt)(sizeof(SyGapRCFilename)-1-SyStrlen(SyGapRCFilename)));
}
#endif
#if SYS_VMS
if ( getenv("GAP_INI") != 0 ) {
SyStrncat(SyGapRCFilename,getenv("GAP_INI"),sizeof(SyGapRCFilename)-1);
}
#endif
#if SYS_MAC_MPW || SYS_MAC_MWC
if ( 1 ) {
SyStrncat( SyGapRCFilename, "gap.rc",
(UInt)(sizeof(SyGapRCFilename)-1-SyStrlen(SyGapRCFilename)));
}
#endif
/* cygwin needs special treatment as the configure process recognizes as Unix */
#if SYS_IS_CYGWIN32
if ( 1 ) {
*SyGapRCFilename=(char)0;
SyStrncat(SyGapRCFilename,"gap.rc",sizeof(SyGapRCFilename)-1);
}
#endif
}
/****************************************************************************
**
*F InitSystem( <argc>, <argv> ) . . . . . . . . . initialize system package
**
** 'InitSystem' is called very early during the initialization from 'main'.
** It is passed the command line array <argc>, <argv> to look for options.
**
** For UNIX it initializes the default files 'stdin', 'stdout' and 'stderr',
** installs the handler 'syAnsIntr' to answer the user interrupts '<ctr>-C',
** scans the command line for options, tries to find 'LIBNAME/init.g' and
** '$HOME/.gaprc' and copies the remaining arguments into 'SyInitfiles'.
*/
#ifndef SYS_HAS_MISC_PROTO /* ANSI/TRAD decl. from H&S 20, 13 */
extern char * getenv ( const char * );
extern int atoi ( const char * );
#endif
#ifndef SYS_HAS_MISC_PROTO /* UNIX decl. from 'man' */
extern int isatty ( int );
extern char * ttyname ( int );
#endif
#ifndef SYS_HAS_MALLOC_PROTO
# if SYS_ANSI /* ANSI decl. from H&S 16.1, 16.2 */
extern void * malloc ( size_t );
extern void free ( void * );
# else /* TRAD decl. from H&S 16.1, 16.2 */
extern char * malloc ( unsigned );
extern void free ( char * );
# endif
#endif
#if SYS_TOS_GCC2
# ifndef SYS_BASEPAGE_H /* definition of basepage */
# include <basepage.h>
# define SYS_BASEPAGE_H
# endif
#endif
#if SYS_MAC_MPW || SYS_MAC_MWC
# ifndef SYS_HAS_TOOL
# ifndef SYS_MEMORY_H /* Memory stuff: */
# include <Memory.h> /* 'GetApplLimit', 'SetApplLimit', */
# define SYS_MEMORY_H /* 'MaxApplZone', 'StackSpace', */
# endif /* 'MaxMem' */
# endif
#endif
#if SYS_MAC_MPW || SYS_MAC_MWC
# ifndef SYS_HAS_TOOL
Char * syArgv [128];
Char syArgl [1024];
# endif
#endif
#if SYS_MAC_MWC
# include <gestalt.h>
# include <folders.h>
#endif
static UInt ParseMemory( Char * s)
{
UInt size;
size = atoi(s);
if ( s[SyStrlen(s)-1] == 'k'
|| s[SyStrlen(s)-1] == 'K' )
size = size * 1024;
if ( s[SyStrlen(s)-1] == 'm'
|| s[SyStrlen(s)-1] == 'M' )
size = size * 1024 * 1024;
if ( s[SyStrlen(s)-1] == 'g'
|| s[SyStrlen(s)-1] == 'G' )
size = size * 1024* 1024 * 1024;
return size;
}
#define MAX_OPTS 200
struct optval {
Char *value;
Int next;
};
struct optrec {
Char key;
Int vals;
};
static struct optrec opts[MAX_OPTS];
static struct optval optvals[MAX_OPTS];
static UInt nopts = 0;
static UInt noptvals = 0;
static Char optvalsbuff[MAX_OPTS*256];
static UInt lenoptvalsbuff = 0;
static void recordOption( Char key, UInt nargs, Char **argv )
{
UInt i,j,len;
Int link,lastlink;
for (i = 0; i < nopts && opts[i].key != key; i++)
;
if (i == nopts)
{
opts[i].key = key;
opts[i].vals = -1;
nopts++;
}
link = opts[i].vals;
lastlink = -1;
while (link != -1)
{
lastlink = link;
link = optvals[link].next;
}
if (lastlink == -1)
opts[i].vals = noptvals;
else
optvals[lastlink].next = noptvals;
optvals[noptvals].next = -1;
if (nargs == 0)
optvals[noptvals].value = NULL;
else
{
optvals[noptvals].value = optvalsbuff + lenoptvalsbuff;
optvalsbuff[lenoptvalsbuff] = '\0';
for (j = 0; j < nargs; j++)
{
len = SyStrlen(argv[j]);
SyStrncat(optvalsbuff + lenoptvalsbuff, argv[j], len);
optvalsbuff[lenoptvalsbuff + len] = ' ';
lenoptvalsbuff += len + 1;
optvalsbuff[lenoptvalsbuff-1] = '\0';
}
}
noptvals++;
return;
}
Int getOptionCount( Char key)
{
UInt i;
Int link;
UInt count;
for (i = 0; i < nopts && opts[i].key != key; i++)
;
if (i == nopts)
return 0;
link = opts[i].vals;
count = 0;
while (link != -1)
{
count++;
link = optvals[link].next;
}
return count;
}
Char *getOptionArg( Char key, UInt which )
{
UInt i;
Int link;
UInt count;
for (i = 0; i < nopts && opts[i].key != key; i++)
;
if (i == nopts)
return NULL;
link = opts[i].vals;
count = 0;
while (link != -1 && count < which)
{
count++;
link = optvals[link].next;
}
if (count < which)
return NULL;
return optvals[link].value;
}
struct optInfo {
Char key;
Int (*handler)(Char **, void *);
void *otherArg;
UInt minargs;
};
static Int toggle( Char ** argv, void *Variable )
{
UInt * variable = (UInt *) Variable;
*variable = !*variable;
return 0;
}
static Int storeString( Char **argv, void *Where )
{
Char **where = (Char **)Where;
*where = argv[0];
return 1;
}
static Int storeMemory( Char **argv, void *Where )
{
UInt *where = (UInt *)Where;
*where = ParseMemory(argv[0]);
return 1;
}
static Int storeMemory2( Char **argv, void *Where )
{
UInt *where = (UInt *)Where;
*where = ParseMemory(argv[0])/1024;
return 1;
}
static Int processCompilerArgs( Char **argv, void * dummy)
{
SyCompilePlease = 1;
SyStrncat( SyCompileOutput, argv[0], sizeof(SyCompileOutput)-2 );
SyStrncat( SyCompileInput, argv[1], sizeof(SyCompileInput)-2 );
SyStrncat( SyCompileName, argv[2], sizeof(SyCompileName)-2 );
SyCompileMagic1 = argv[3];
return 4;
}
static Int unsetString( Char **argv, void *Where)
{
*(Char **)Where = (Char *)0;
return 0;
}
static Int forceLineEditing( Char **argv,void *Level)
{
UInt level = (UInt)Level;
SyLineEdit = level;
return 0;
}
static Int rotateGasManVerbosity( Char **argv, void *dummy)
{
SyMsgsFlagBags = (SyMsgsFlagBags + 1) % 3;
return 0;
}
static Int returnVal ( Char **argv, void * Value)
{
UInt value = (UInt) Value;
return value;
}
static Int setScreenWidth( Char **argv, void * dummy)
{
SyNrCols = atoi(argv[0]);
if (SyNrCols > 256)
SyNrCols = 256;
SyNrColsLocked = 1;
#if SYS_MAC_MWC
SetLogWindowSize (-1, SyNrCols);
#endif
return 1;
}
static Int setScreenDepth( Char **argv, void * dummy)
{
SyNrRows = atoi(argv[0]);
SyNrRowsLocked = 1;
#if SYS_MAC_MWC
SetLogWindowSize (SyNrRows,-1);
#endif
return 1;
}
#if SYS_MSDOS_DJGPP || SYS_TOS_GCC2 || SYS_MAC_MPW || SYS_MAC_MWC
static Int storeInteger ( Char **argv, void *Where)
{
Int *where = (Int *)Where;
*where = atoi(argv[0]);
return 1;
}
#endif
static Int setGapRootPath( Char **argv, void *Dummy)
{
SySetGapRootPath( argv[0] );
return 1;
}
static Int preAllocAmount;
static UInt gaprc = 1; /* read the .gaprc file */
struct optInfo options[] = {
{ 'A', toggle, &SyAutoloadPackages, 0},
{ 'B', storeString, &SyArchitecture, 1},
{ 'C', processCompilerArgs, 0, 4},
{ 'D', toggle, &SyDebugLoading, 0},
{ 'K', storeMemory2, &SyStorKill, 1},
{ 'L', storeString, &SyRestoring, 1},
{ 'M', toggle, &SyUseModule, 0},
{ 'N', toggle, &SyCheckForCompletion, 0},
{ 'O', toggle, &SyFalseEqFail, 0},
#if SYS_MAC_MWC
{ 'P', storeMemory, &gPrintBufferSize, 1},
#endif
{ 'R', unsetString, &SyRestoring, 0},
{ 'T', toggle, &SyBreakSuppress, 0},
{ 'U', storeString, SyCompileOptions, 1},
#if SYS_MAC_MWC
{ 'W', storeMemory, &gMaxLogSize, 1},
#endif
{ 'X', toggle, &SyCheckCompletionCrcComp, 0 },
{ 'Y', toggle, &SyCheckCompletionCrcRead, 0 },
{ 'a', storeMemory, &preAllocAmount, 1 },
{ 'b', toggle, &SyBanner, 0},
{ 'c', storeMemory, &SyCacheSize, 1 },
{ 'e', toggle, &SyCTRD, 0 },
{ 'f', forceLineEditing, (void *)2, 0 },
{ 'g', rotateGasManVerbosity, 0, 0 },
{ 'h', returnVal, (void *) -2, 0},
{ 'i', storeString, SySystemInitFile, 1},
{ 'l', setGapRootPath, 0, 1},
{ 'm', storeMemory2, &SyStorMin, 1 },
{ 'n', forceLineEditing, 0, 0},
{ 'o', storeMemory2, &SyStorMax, 1 },
{ 'p', toggle, &SyWindow, 0 },
{ 'q', toggle, &SyQuiet, 0 },
{ 'r', toggle, &gaprc, 0 },
{ 'x', setScreenWidth, 0, 1 },
{ 'y', setScreenDepth, 0, 1 },
#if SYS_MSDOS_DJGPP || SYS_TOS_GCC2 || SYS_MAC_MPW || SYS_MAC_MWC
{ 'z', storeInteger, &syIsIntrFreq, 0},
#endif
{ '\0',0,0}};
void InitSystem (
Int argc,
Char * argv [] )
{
/* Char * ptr; */ /* pointer to the pre'malloc'ated */
/* Char * ptr1; */ /* more pre'malloc'ated */
Char * *ptrlist;
UInt i; /* loop variable */
Int res; /* return from option processing function */
#if SYS_MAC_MWC
KeyMap theKeys;
long k;
short s;
Size mem;
Int fid;
Char syOptionsPath [1024] = "gap.options";
char match;
OSErr err;
FSSpec tmpFSSpec;
char first, last; /* dummy for checking stack ptr */
char * ptr;
#endif
#if SYS_MAC_MPW
preAllocAmount = 0;
# ifndef SYS_HAS_TOOL
/* Increase the amount of stack space available to GAP. */
/* Following "Inside Macintosh - Memory" 1992, pages 1-42. */
/* For use with MPW 'SIOW.o' *after* changing instruction word */
/* at 3F94 from 'A063' (call to '_MaxApplZone') to '4E71' (NOP). */
/* 'fix_SIOW.c' is the source for an MPW tool, which does this safely. */
/* Otherwise bungee-jumping the stack will lead to fatal head injuries.*/
/* Dave Bayer, 1994/07/14 */
SetApplLimit( GetApplLimit() - (syStackSpace - StackSpace() + 1024) );
MaxApplZone();
if ( StackSpace() < syStackSpace ) {
FPUTS_TO_STDERR("gap: cannot get enough stack space.\n");
SyExit( 1 );
}
# endif
#endif
preAllocAmount = 100*1024;
#if SYS_MAC_MWC
# if !TARGET_API_MAC_CARBON && !powerc
SyMinStack = GetApplLimit() - (syStackSpace - StackSpace()) + 1024;
SetApplLimit( GetApplLimit() - (syStackSpace - StackSpace() + 1024) );
/* compute the least possible value for the stack pointer */
SyMinStack = (&last < &first ? &last : &first) - StackSpace () + 8192;
# else /* we need more reserve stack for the PPC, apparently */
SyMinStack = (&last < &first ? &last : &first) - StackSpace () + 65536;
# endif
MaxApplZone();
/* look for a GAP options file in the GAP directory */
err = FSMakeFSSpec (0, 0, "\pGAP options", &gGapOptionsFSSpec);
/* if there is none for the local copy of GAP, try in the system preferences */
if (err != noErr) {
err = FindFolder (kOnSystemDisk, kPreferencesFolderType, kCreateFolder, &s, &k);
if (err == noErr)
err = FSMakeFSSpec (s, k, "\pGAP options", &gGapOptionsFSSpec);
else
err = dirNFErr; /* make sure it is not fnfErr */
}
/* get path to a GAP options file, create file if necessary */
if (err == noErr || err == fnfErr)
err = FSSpecToPath (&gGapOptionsFSSpec, (char*)&syOptionsPath, sizeof (syOptionsPath),
true, err == fnfErr);
if (err != noErr && err != fnfErr)
syOptionsPath[0] = '\0';
InitEditor (); /* initialize the editor */
if ( StackSpace() < syStackSpace ) {
SyFputs ("gap: cannot get enough stack space.\n",3);
SyExit( 1 );
}
syIsIntrTime = TickCount();
for (i = 0; i < 4; i++) {
syBuf[i].fp = -1; /* must not be used !!!, hope for a bus error*/
syBuf[i].fromDoc = (char*)&LOGDOCUMENT;
syBuf[i].binary = false;
syBuf[i].isTTY = 1;
syBuf[i].bufno = -1;
}
SyInFid = 0; /* no input redirection */
SyOutFid = 1; /* no output redirection */
SyCanExec = (Gestalt (gestaltAppleEventsAttr, &k) == noErr
&& (k & (1 << gestaltAppleEventsPresent)));
if (Gestalt (gestaltCFMAttr,&k) == noErr) /* knows about dynamic libraries */
SyCanLoadDynamicModules = (k & (1<<gestaltCFMPresent));
else
SyCanLoadDynamicModules = false;
if ((err = FindFolder (kOnSystemDisk, kTemporaryFolderType, kCreateFolder, &syTmpVref, &syTmpDirId))
== noErr)
if ((err = SyFSMakeNewFSSpec (syTmpVref, syTmpDirId, "\pGAP temp", &tmpFSSpec)) == noErr)
err = FSpDirCreate (&tmpFSSpec, 0, &syTmpDirId);
if (err) {
SyFputs ("#Warning: cannot create temporary folder.\n",3);
}
#endif
/* open the standard files */
#if SYS_BSD || SYS_MACH || SYS_USG || SYS_VMS || HAVE_TTYNAME
syBuf[0].fp = fileno(stdin);
syBuf[0].bufno = -1;
if ( isatty( fileno(stdin) ) ) {
if ( isatty( fileno(stdout) )
&& ! SyStrcmp( ttyname(fileno(stdin)), ttyname(fileno(stdout)) ) )
syBuf[0].echo = fileno(stdout);
else
syBuf[0].echo = open( ttyname(fileno(stdin)), O_WRONLY );
syBuf[0].isTTY = 1;
}
else {
syBuf[0].echo = fileno(stdout);
syBuf[0].isTTY = 0;
}
syBuf[1].echo = syBuf[1].fp = fileno(stdout);
syBuf[1].bufno = -1;
if ( isatty( fileno(stderr) ) ) {
if ( isatty( fileno(stdin) )
&& ! SyStrcmp( ttyname(fileno(stdin)), ttyname(fileno(stderr)) ) )
syBuf[2].fp = fileno(stdin);
else
syBuf[2].fp = open( ttyname(fileno(stderr)), O_RDONLY );
syBuf[2].echo = fileno(stderr);
syBuf[2].isTTY = 1;
}
else
syBuf[2].isTTY = 0;
syBuf[2].bufno = -1;
syBuf[3].fp = fileno(stderr);
syBuf[3].bufno = -1;
setbuf(stdin, (char *)0);
setbuf(stdout, (char *)0);
setbuf(stderr, (char *)0);
#endif
#if SYS_OS2_EMX
syBuf[0].fp = stdin; setbuf( stdin, syBuf[0].buf );
if ( isatty( fileno(stdin) ) ) {
if ( isatty( fileno(stdout) ) )
syBuf[0].echo = stdout;
else
syBuf[0].echo = fopen( "CON", "w" );
if ( syBuf[0].echo != (FILE*)0 && syBuf[0].echo != stdout )
setbuf( syBuf[0].echo, (char*)0 );
}
else {
syBuf[0].echo = stdout;
}
syBuf[1].echo = syBuf[1].fp = stdout; setbuf( stdout, (char*)0 );
if ( isatty( fileno(stderr) ) ) {
if ( isatty( fileno(stdin) ) )
syBuf[2].fp = stdin;
else
syBuf[2].fp = fopen( "CON", "r" );
if ( syBuf[2].fp != (FILE*)0 && syBuf[2].fp != stdin )
setbuf( syBuf[2].fp, syBuf[2].buf );
syBuf[2].echo = stderr;
}
syBuf[3].fp = stderr; setbuf( stderr, (char*)0 );
#endif
#if SYS_MSDOS_DJGPP || SYS_TOS_GCC2
syBuf[0].fp = stdin; setbuf( stdin, syBuf[0].buf );
syBuf[1].echo = syBuf[1].fp = stdout; setbuf( stdout, (char*)0 );
syBuf[3].fp = stderr; setbuf( stderr, (char*)0 );
if ( isatty( fileno(stderr) ) )
syBuf[2].fp = stderr;
#endif
#if SYS_MAC_MPW
syBuf[0].fp = stdin;
syBuf[1].fp = stdout;
syBuf[2].fp = stdin;
syBuf[3].fp = stderr;
#endif
for (i = 4; i < sizeof(syBuf)/sizeof(syBuf[0]); i++)
syBuf[i].fp = -1;
for (i = 0; i < sizeof(syBuffers)/sizeof(syBuffers[0]); i++)
syBuffers[i].inuse = 0;
#if !SYS_MAC_MWC /* install the signal handler for '<ctr>-C' */
SyInstallAnswerIntr();
#endif
#if SYS_MAC_MPW || SYS_MAC_MWC
# ifndef SYS_HAS_TOOL
/* the Macintosh doesn't support command line options, read from file */
#if SYS_MAC_MPW
if ( (fid = SyFopen( "gap.options", "r" )) != -1 )
#else
if ( (fid = SyFopen( syOptionsPath, "r" )) != -1 )
#endif
{
ptr = syArgl;
while ( SyFgets( ptr, (sizeof(syArgl)-1) - (ptr-syArgl), fid )
&& (ptr-syArgl) < (sizeof(syArgl)-1) ) {
while ( *ptr != '#' && *ptr != '\0' )
ptr++;
}
SyFclose( fid );
} else
*syArgl = '\0';
/* see whether the user wants to change preferences, i.e., whether
shift, cmd, ctrl, space, apple key pressed */
GetKeys (theKeys);
if (theKeys[1] & (1 | 4 | 8 | 512 | 32768L)) {
ModifyOptions (syArgl);
}
argc = 0;
argv = syArgv;
argv[argc++] = "gap";
ptr = syArgl;
while ( *ptr==' ' || *ptr=='\t' || *ptr=='\n' )
*ptr++ = '\0';
while ( *ptr != '\0' ) {
if (*ptr == '\"' || *ptr == '\'')
match = *ptr++;
else
match = ' ';
argv[argc++] = ptr;
while ( *ptr!=match && *ptr!='\t' && *ptr!='\n' && *ptr!='\0' ) {
if ( *ptr=='\\' )
for ( k = 0; ptr[k+1] != '\0'; k++ )
ptr[k] = ptr[k+1];
ptr++;
}
if (*ptr == match)
*ptr++ = '\0';
else if (match != ' ')
SyFputs ("Error in command line argument: no matching quote found\n",3);
while ( *ptr==' ' || *ptr=='\t' || *ptr=='\n' ) *ptr++ = '\0';
}
# endif
#endif
SySystemInitFile[0] = '\0';
SyStrncat( SySystemInitFile, "lib/init.g", 10 );
#if SYS_IS_CYGWIN32
SySetGapRootPath( SyWindowsPath );
#else
#ifdef SYS_DEFAULT_PATHS
SySetGapRootPath( SYS_DEFAULT_PATHS );
#else
SySetGapRootPath( "./" );
#endif
#endif
/* scan the command line for options */
while ( argc > 1 && argv[1][0] == '-' ) {
if ( SyStrlen(argv[1]) != 2 ) {
FPUTS_TO_STDERR("gap: sorry, options must not be grouped '");
FPUTS_TO_STDERR(argv[1]); FPUTS_TO_STDERR("'.\n");
goto usage;
}
for (i = 0; options[i].key != argv[1][1] && options[i].key; i++)
;
if (!options[i].key)
{
FPUTS_TO_STDERR("gap: '"); FPUTS_TO_STDERR(argv[1]);
FPUTS_TO_STDERR("' option is unknown.\n");
goto usage;
}
if (argc < 2 + options[i].minargs)
{
Char buf[2];
FPUTS_TO_STDERR("gap: option "); FPUTS_TO_STDERR(argv[1]);
FPUTS_TO_STDERR(" requires at least ");
buf[0] = options[i].minargs + '0';
buf[1] = '\0';
FPUTS_TO_STDERR(buf); FPUTS_TO_STDERR(" arguments\n");
goto usage;
}
res = (*options[i].handler)(argv+2, options[i].otherArg);
switch (res)
{
case -1: goto usage;
case -2: goto fullusage;
default: ; /* fall through and continue */
}
recordOption(argv[1][1], res, argv+2);
argv += 1 + res;
argc -= 1 + res;
}
/* now that the user has had a chance to give -x and -y,
we determine the size of the screen ourselves */
#if SYS_MAC_MWC
GetLogWindowSize ();
#else
getwindowsize();
#endif
/* fix max if it is lower than min */
if ( SyStorMax != 0 && SyStorMax < SyStorMin ) {
SyStorMax = SyStorMin;
}
/* only check once */
if ( SyCheckCompletionCrcComp ) {
SyCheckCompletionCrcRead = 0;
}
/* when running in package mode set ctrl-d and line editing */
if ( SyWindow ) {
SyLineEdit = 1;
SyCTRD = 1;
#if !SYS_MAC_MWC
syBuf[2].fp = fileno(stdin); syBuf[2].echo = fileno(stdout);
syBuf[3].fp = fileno(stdout);
#endif
syWinPut( 0, "@p", "1." );
}
#if SYS_MAC_MWC
/* find out how much memory we can now allocate in the zone */
if (gPrintBufferSize < 32L*1024L)
gEditorScratch = 32L*1024L;
else
gEditorScratch = gPrintBufferSize;
SyStorLimit = MaxMem( &mem );
SyStorLimit -= gEditorScratch + gMaxLogSize;
/* make SyStorLimit divisible by the minimum allocatable unit */
#if GAPVER == 4
SyStorLimit /= 1024L;
SyStorLimit -= SyStorLimit % 512L;
#elif GAPVER == 3
SyStorLimit -= SyStorLimit % 1024;
#endif
/* try to set SyStorMax so that the user gets a warning before memory is too low */
if (SyStorMax > SyStorLimit)
SyStorMax = SyStorLimit - SyStorReserve;
;
if ( SyStorMin <= 0 )
SyStorMin = SyStorMax;
syWorkspace = (UInt***) NewPtr (SyStorLimit*1024L); /* allocate all we can get */
#if 0 /* sorry, no real options dialog box yet... */
if ( SyStorMax >= SyStorMin && syWorkspace ) { /* otherwise GAP won't run at all */
/* see whether the user wants to change preferences */
GetKeys (theKeys);
if (theKeys[1] & 0x00008004) { /* is the command key down?*/
if (SyStorMin > SyStorMax)
SyStorMin = SyStorMax;
GetOptions (true); /* get options interactively */
gaprc = SyGaprc;
}
}
#endif
if ( SyStorMax < SyStorMin || !syWorkspace) {
SyFputs(
"gap: please use the 'Get Info' command in the Finder 'File' menu\n", 3 );
SyFputs(
" to increase the minimum amount of memory and the preferred amount of memory\n", 3);
SyFputs (
" as described in the documentation of GAP for MacOS.\n", 3 );
SyExit( 1 );
}
if (SyBanner && !SyCompilePlease) {
if (SyRestoring)
SyFputs ("Loading GAP workspace. Please be patient, this may take a while.\n\n", 1);
OpenAboutBox (5); /* show GAP's About ... box for 5 seconds*/
}
#else
/* premalloc stuff */
/* allocate in small chunks, and write something to them
* (the GNU clib uses mmap for large chunks and give it back to the
* system after free'ing; also it seems that memory is only really
* allocated (pagewise) when it is first used) */
ptrlist = (Char **)malloc((1+preAllocAmount/1000)*sizeof(Char*));
for (i = 1; i*1000 < preAllocAmount; i++) {
ptrlist[i-1] = (Char *)malloc( 1000 );
if (ptrlist[i-1] != NULL) ptrlist[i-1][900] = 13;
}
for (i = 1; (i+1)*1000 < preAllocAmount; i++)
if (ptrlist[i-1] != NULL) free(ptrlist[i-1]);
free(ptrlist);
/* ptr = (Char *)malloc( preAllocAmount );
ptr1 = (Char *)malloc(4);
if ( ptr != 0 ) free( ptr ); */
#endif
/* try to find 'LIBNAME/init.g' to read it upon initialization */
if ( SyCompilePlease || SyRestoring ) {
SySystemInitFile[0] = 0;
}
/* the compiler will *not* read in the .gaprc file */
if ( gaprc && ! ( SyCompilePlease || SyRestoring ) ) {
sySetGapRCFile();
}
#if HAVE_DOTGAPRC || HAVE_GAPRC
/* the users home directory */
if ( getenv("HOME") != 0 ) {
SyStrncat(SyUserHome, getenv("HOME"), sizeof(SyUserHome)-1);
SyHasUserHome = 1;
}
#endif
/* use the files from the command line */
for ( i = 0; i < sizeof(SyInitfiles)/sizeof(SyInitfiles[0]); i++ ) {
if ( SyInitfiles[i][0] == '\0' )
break;
}
while ( argc > 1 ) {
if ( i >= sizeof(SyInitfiles)/sizeof(SyInitfiles[0]) ) {
FPUTS_TO_STDERR("gap: sorry, cannot handle so many init files.\n");
goto usage;
}
SyInitfiles[i][0] = '\0';
SyStrncat( SyInitfiles[i], argv[1], sizeof(SyInitfiles[0])-1 );
++i;
++argv;
--argc;
}
#if SYS_TOS_GCC2
/* for TOS we compute the amount of allocatable memory */
if ( SyStorMin <= 0 ) {
SyStorMin = (UInt)_base->p_hitpa - (UInt)_base->p_lowtpa
- _base->p_tlen - _base->p_dlen - _base->p_blen
- _stksize - pre - 8192 + SyStorMin;
}
#endif
#if SYS_VMS
/* for VMS we need to create the virtual keyboards for raw reading */
smg$create_virtual_keyboard( &syVirKbd );
#endif
#if SYS_MAC_MPW
# ifndef SYS_HAS_TOOL
/* find out how much memory we can now allocate in the zone */
if ( SyStorMin <= 0 ) {
SyStorMin = MaxMem( &i ) - SyStorMin - 384*1024;
if ( SyStorMin < 1024*1024 ) {
FPUTS_TO_STDERR(
"gap: please use the 'Get Info' command in the Finder 'Desk' menu\n",
stderr );
FPUTS_TO_STDERR(
" to set the minimum amount of memory to at least 2560 KByte,\n",
stderr );
FPUTS_TO_STDERR(
" and the preferred amount of memory to 5632 KByte or more.\n",
stderr );
SyExit( 1 );
}
}
# endif
#endif
/* start the clock */
SyStartTime = SyTime();
/* now we start */
return;
/* print a usage message */
usage:
FPUTS_TO_STDERR("usage: gap [OPTIONS] [FILES]\n");
FPUTS_TO_STDERR(" run the Groups, Algorithms and Programming system, Version ");
FPUTS_TO_STDERR(SyKernelVersion);
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR(" use '-h' option to get help.\n");
FPUTS_TO_STDERR("\n");
SyExit( 1 );
fullusage:
FPUTS_TO_STDERR("usage: gap [OPTIONS] [FILES]\n");
FPUTS_TO_STDERR(" run the Groups, Algorithms and Programming system, Version ");
FPUTS_TO_STDERR(SyKernelVersion);
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR(" -h print this help and exit\n");
FPUTS_TO_STDERR(" -b disable/enable the banner\n");
FPUTS_TO_STDERR(" -q enable/disable quiet mode\n");
FPUTS_TO_STDERR(" -e disable/enable quitting on <ctr>-D\n");
FPUTS_TO_STDERR(" -f force line editing\n");
FPUTS_TO_STDERR(" -n prevent line editing\n");
FPUTS_TO_STDERR(" -x <num> set line width\n");
FPUTS_TO_STDERR(" -y <num> set number of lines\n");
#if SYS_OS2_EMX
/* This flag does not exist? */
FPUTS_TO_STDERR(" -E running under Emacs under OS/2\n");
#endif
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR(" -g show GASMAN messages (full garbage collections)\n");
FPUTS_TO_STDERR(" -g -g show GASMAN messages (all garbage collections)\n");
FPUTS_TO_STDERR(" -m <mem> set the initial workspace size\n");
FPUTS_TO_STDERR(" -o <mem> set hint for maximal workspace size (GAP may allocate more)\n");
FPUTS_TO_STDERR(" -K <mem> set maximal workspace size (GAP never allocates more)\n");
FPUTS_TO_STDERR(" -c <mem> set the cache size value\n");
FPUTS_TO_STDERR(" -a <mem> set amount to pre-malloc-ate\n");
FPUTS_TO_STDERR(" postfix 'k' = *1024, 'm' = *1024*1024, 'g' = *1024*1024*1024\n");
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR(" -l <paths> set the GAP root paths\n");
FPUTS_TO_STDERR(" -r disable/enable reading of the '.gaprc' file \n");
FPUTS_TO_STDERR(" -A disable/enable autoloading of GAP packages\n");
FPUTS_TO_STDERR(" -B <name> current architecture\n");
FPUTS_TO_STDERR(" -D enable/disable debugging the loading of library files\n");
FPUTS_TO_STDERR(" -M disable/enable loading of compiled modules\n");
FPUTS_TO_STDERR(" -N disable/enable check for completion files\n");
#if SYS_MAC_MWC
FPUTS_TO_STDERR(" -P <mem> set amount of memory reserved for printing\n");
#endif
FPUTS_TO_STDERR(" -T disable/enable break loop\n");
#if SYS_MAC_MWC
FPUTS_TO_STDERR(" -W <mem> set amount of memory available for GAP log window\n");
#endif
FPUTS_TO_STDERR(" -X enable/disable CRC for comp. files while reading\n");
FPUTS_TO_STDERR(" -Y enable/disable CRC for comp. files while completing\n");
FPUTS_TO_STDERR(" -i <file> change the name of the init file\n");
FPUTS_TO_STDERR("\n");
FPUTS_TO_STDERR(" -L <file> restore a saved workspace\n");
FPUTS_TO_STDERR(" -R prevent restoring of workspace (ignoring -L)\n");
FPUTS_TO_STDERR("\n");
#if SYS_BSD || SYS_MACH || SYS_USG
/* This flag is available on all systems, but only advertised for some? */
FPUTS_TO_STDERR(" -p enable/disable package output mode\n");
#endif
#if SYS_MSDOS_DJGPP || SYS_TOS_GCC2 || SYS_MAC_MPW || SYS_MAC_MWC
FPUTS_TO_STDERR(" -z <freq> set interrupt check frequency\n");
#endif
/* -C -U undocumented options to the compiler.
Also unadvertisted compatibility flag:
FPUTS_TO_STDERR(" -O enable/disable old behavior, fail := false\n");
*/
FPUTS_TO_STDERR(" Boolean options (b,q,e,r,A,D,M,N,T,X,Y) toggle the current value\n");
FPUTS_TO_STDERR(" each time they are called. Default actions are indicated first.\n");
FPUTS_TO_STDERR("\n");
SyExit( 1 );
}
/****************************************************************************
**
*E system.c . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|