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
|
/* ncbienv.c
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* File Name: ncbienv.c
*
* Author: Ostell
*
* Version Creation Date: 7/7/91
*
* $Revision: 6.51 $
*
* File Description:
* portable environment functions, companions for ncbimain.c
*
* Modifications:
* --------------------------------------------------------------------------
* $Log: ncbienv.c,v $
* Revision 6.51 2011/01/20 17:08:07 lavr
* Do not simply truncate size_t into Int2, use max instead NOJIRA
*
* Revision 6.50 2011/01/19 19:09:34 lavr
* Heed a warning NOJIRA
*
* Revision 6.49 2010/06/30 15:54:38 ucko
* Handle 64-bit Darwin builds, which require disabling WIN_MAC because
* Carbon is 32-bit-only.
*
* Revision 6.48 2009/08/17 19:56:13 lavr
* Delete explicit cast from SetProgramName() argument
*
* Revision 6.47 2009/08/14 18:01:09 lavr
* Use {Get|Set}ProgramName()
*
* Revision 6.46 2007/05/04 13:43:59 kans
* GetOpSysString now checks for Windows VISTA
*
* Revision 6.45 2007/04/06 21:47:56 kans
* Nlm_GetOpSysString checks gestaltSystemVersion and returns actual Mac OS X version
*
* Revision 6.44 2007/04/03 00:39:41 kans
* GetOpSysString does run-time check for Rosetta
*
* Revision 6.43 2005/12/02 13:40:00 rsmith
* In ProgramPath on Mac use case-insensitive compare to check the file extension.
*
* Revision 6.42 2005/12/01 19:52:19 rsmith
* Change impl of Mac's Nlm_ProgramPath_ST to only use CoreFoundation calls.
*
* Revision 6.41 2005/11/28 21:04:25 rsmith
* Don't need to call GetProcess in Mac's ProgramPath
*
* Revision 6.40 2005/11/22 20:53:19 rsmith
* Nlm_ProgramPath on Mac always return path to the .app bundle.
*
* Revision 6.39 2005/11/16 16:36:11 kans
* support for PowerPC and Intel chips for Macintosh
*
* Revision 6.38 2004/10/27 20:00:44 kans
* Ncbienv_FileOpen suppresses missing file error post
*
* Revision 6.37 2004/08/06 20:56:27 kans
* G/SetAppParam on PC no longer uses PrivateProfileString functions - instead it checks USERPROFILE, SYSTEMROOT, and then NCBI environment variables
*
* Revision 6.36 2004/02/11 18:40:00 kans
* enhanced GetOpSysString to report specific version of MS Windows
*
* Revision 6.35 2003/09/19 15:49:20 coulouri
* NetBSD fixes
*
* Revision 6.34 2003/06/24 19:45:39 ucko
* GCC/Darwin: Restore Nlm_IsApplicationPackage and the skeleton of
* Nlm_SetupArguments_ST_Mac.
*
* Revision 6.33 2003/06/24 15:39:42 ucko
* Switch back to the generic Unix ProgramPath code when building Darwin
* binaries with GCC until we find a framework that defines the relevant
* symbols without breaking support for remote execution.
*
* Revision 6.32 2003/06/06 15:01:03 rsmith
* fixed ProgramPath for OS Darwin & Mac, Added IsApplicationPackage for Darwin. ProgramPath on Darwin now returns the seen application not the executable buried in the package.
*
* Revision 6.31 2003/01/29 20:57:36 kans
* added linux, sgi, and solaris intel to GetOpSysString
*
* Revision 6.30 2003/01/29 19:37:14 kans
* added GetOpSysString to return allocated string describing operating system running the program
*
* Revision 6.29 2003/01/27 14:54:24 kans
* for darwin, also check /Contents/Resources/ of Mac OS X package for initial prepackaged config file
*
* Revision 6.28 2003/01/17 20:59:02 kans
* for Mach-O, try home/Library/Preferences/xxx.cnf first
*
* Revision 6.27 2002/10/03 16:22:03 kans
* changed fgets to Nlm_FileGets
*
* Revision 6.26 2002/03/28 13:29:08 kans
* checks for OS_UNIX_DARWIN (EN)
*
* Revision 6.25 2001/08/02 14:44:10 vakatov
* [OSF1] NLM_XOPEN_SOURCE_500:: Kludge-fix for the weak-minded native
* preprocessor
*
* Revision 6.24 2001/08/01 16:15:38 vakatov
* Rollback to R6.22
*
* Revision 6.22 2001/05/25 17:58:27 vakatov
* [MAC] OpenConfigFile() -- replaced C++ style comments by the C-style ones
*
* Revision 6.21 2001/05/25 15:44:26 vakatov
* [AIX] Tweaked conditions for NLM_POSIX1B
*
* Revision 6.20 2001/01/19 20:14:44 kans
* added checks for OS_UNIX_DARWIN (contributed by William Van Etten)
*
* Revision 6.19 2000/10/30 18:11:41 beloslyu
* FreeBSD was added
*
* Revision 6.18 2000/08/30 16:43:23 vakatov
* Nlm_WorkGetAppParam() -- do not try to open the same config file
* again (and again, and again) if failed to open it just before.
*
* Revision 6.17 2000/08/28 21:35:48 vakatov
* Figure out #LOGNAME_MAX value a little earlier in the code
*
* Revision 6.16 2000/08/28 18:32:18 vakatov
* Nlm_GetHome() -- split for s_GetHomeByUID() + s_GetHomeByLOGIN().
* Try s_GetHomeByUID() *before* s_GetHomeByLOGIN() to fix a problem
* reported by "Ray.Hookway@compaq.com" for LSF's Remote Execution Server.
*
* Revision 6.15 2000/06/28 14:50:43 vakatov
* Nlm_GetHome() -- IRIX, NLM_POSIX1B, getpwnam_r(): dont rely on the
* returned value only; check for non-zero "pwd_ptr"
*
* Revision 6.14 2000/06/01 16:57:03 vakatov
* [IRIX] Nlm_GetHome() -- added an extra check for the "pwd_ptr"
* (as per request by "Lack Mr G M" from SGI, gml4410@ggr.co.uk)
*
* Revision 6.13 2000/03/15 20:59:53 kans
* Mac version of Nlm_OpenConfigFile was opening file for reading even under writeMode - fixed
*
* Revision 6.12 1999/12/30 16:36:37 kans
* additional cleanup (Churchill)
*
* Revision 6.11 1999/12/21 18:22:17 kans
* new blessed file finding function needed to convert filename back to C string for fopen
*
* Revision 6.10 1999/12/21 17:52:39 kans
* removed MPW/THINKC conditional code, starting upgrade to Carbon compatibility - Churchill
*
* Revision 6.9 1999/11/29 19:58:49 vakatov
* To parse command-line arguments:
* + ECmdLineQuote, Nlm_ParseCmdLineArguments(), Nlm_FreeCmdLineArguments()
*
* Revision 6.8 1999/03/24 22:12:49 vakatov
* Nlm_ReadConfigFile(): free "Nlm_bottomComment" to avoid mem.leak
*
* Revision 6.7 1999/02/12 16:01:39 vakatov
* Added a draft version of Nlm_GetEnvParamEx()
* Got rid of the old "PROTO" and "LIBCALL" prototype junk, etc.
*
* Revision 6.6 1998/12/10 17:04:06 vakatov
* Fixed to compile under LINUX(Red Hat 2.XX, gcc, with POSIX threads)
*
* Revision 6.5 1997/11/26 21:26:10 vakatov
* Fixed errors and warnings issued by C and C++ (GNU and Sun) compilers
*
* Revision 6.4 1997/10/29 02:43:31 vakatov
* Type castings to pass through the C++ compiler
*
* Revision 6.3 1997/10/27 21:58:11 vakatov
* Added Nlm_FreeArgs() to reset args earlier set by GetArgs[Silent]()
*
* Revision 6.2 1997/09/09 00:05:43 vakatov
* Nlm_x_HasConsole() -- "fileno" instead of "_fileno" to pass Borland compiler
*
* Revision 6.1 1997/08/27 16:16:38 vakatov
* [WIN32] Nlm_x_HasConsole() -- fixed for the case when the
* Vibrant-based(GUI) application is run from the console(command prompt)
*
* Revision 5.18 1997/07/22 19:11:18 vakatov
* Separated Main() from GetArg[svc]() functions; [WIN_MSWIN] converged
* console and GUI libraries; [for WIN32-DLL] encapsulated global variables
*
* Revision 5.17 1997/06/02 15:28:36 vakatov
* [WIN32] Read/write config(*.ini) files via WinSDK calls([WIN_MSWIN]-like)
*
* Revision 5.16 1997/05/08 19:37:08 vakatov
* [WIN_MSWIN] Nlm_SetupArguments_ST() -- interpret all text(including
* space symbols) embraced by a pair of ""(or '') quote marks as a
* single command argument; strip the embracing quote marks
*
* Revision 5.15 1997/03/05 20:32:55 vakatov
* Nlm_WorkGetAppParam: now free Nlm_lastParamFile before reset, avoid mem.leak
*
* Revision 5.14 1997/03/03 16:44:00 kans
* cleanup of memory leaks accidentally freed the cached file name,
* so now only the Nlm_envList is freed with Nlm_FreeEnvData
*
* Revision 5.13 1997/02/27 19:33:48 vakatov
* Nlm_ReadConfigFile(): free the obsolete config data --> fight memory leaks
*
* Revision 5.12 1997/01/28 21:19:12 kans
* <Desk.h>, <OSEvents.h> and <GestaltEqu.h> are obsolete in CodeWarrior
*
* Revision 5.11 1997/01/24 17:03:49 epstein
* make threaded version compatible with OSF/1
*
* Revision 5.10 1997/01/03 16:12:07 vakatov
* Fixed inaccurate string copying -- <mostly potential> 1-byte exceeding of
* the string size by StringNCat; missing terminating '\0' by StringNCpy.
*
* Revision 5.9 1996/12/30 15:13:12 vakatov
* [WIN_MSWIN] Command-line parsing implemented inside Nlm_SetupArguments()
*
* Revision 5.8 1996/12/16 22:38:53 vakatov
* Rolled back the changes made in "* Revision 5.4. 1996/11/27 20:38:14
* epstein"
*
* Revision 5.7 1996/12/04 21:44:47 vakatov
* [OS_UNIX][POSIX_THREADS_AVAIL] Added _POSIX1C case (see Rev.5.5)
*
* Revision 5.6 1996/12/03 21:48:33 vakatov
* Adopted for 32-bit MS-Windows DLLs
*
* Revision 5.5 1996/11/27 21:55:17 vakatov
* [OS_UNIX][POSIX_THREADS_AVAIL] Added (_POSIX_C_SOURCE - 0 >= 199506L)
* preprocessor condition to match POSIX.1c function interface.
*
* Revision 5.4 1996/11/27 20:38:14 epstein
* disable error logging when opening files in parameter fetching functions
*
* Revision 5.3 1996/11/25 19:04:26 vakatov
* Wrapped all basic functions to MT-safe wrappers(named by adding '_ST'
* suffix to the original function names).
*
* Revision 5.2 1996/08/19 18:46:06 vakatov
* [WIN32] Made modifications to let one create console applications
*
* Revision 4.9 1996/02/15 22:00:49 kans
* changed platform symbol back to OS_NT
*
* Revision 4.8 1996/01/31 20:29:57 epstein
* fix uninitialized ptr in Nlm_GetHome()
*
* Revision 4.7 1996/01/29 22:33:37 epstein
* Added GetHome() changes per Mr. G.M. Lack (gml4410@ggr.co.uk)
*
* Revision 4.6 1995/12/13 17:18:51 kans
* fixed caching bug (JE & JK)
*
* Revision 4.5 1995/10/28 15:03:20 ostell
* added casts to quiet DOS compile warnings
*
* Revision 4.4 1995/10/11 13:53:05 kans
* made some variables static
*
* Revision 4.3 1995/10/06 19:59:18 epstein
* more performance fixes
*
* Revision 4.2 1995/10/06 15:53:31 epstein
* add CacheAppParam() and FlushAppParam() for improved performance
*
* Revision 4.1 1995/10/03 15:59:21 epstein
* add NCBI_DONT_USE_LOCAL_CONFIG environment variable to avoid local config files
*
* 7/7/91 Kans Multiple configuration files, get and set functions
* 9-20-91 Schuler GetAppParam takes default value as an argument
* 01-14-94 Epstein Merged ncbienv.{unx,vms,dos,msw,mac} into a single file
* 06-14-94 Schuler Put SetAppPropery("ProgramName",..) in SetupArguments
* 06-14-94 Schuler Add LIBCALL to SetupArguments
* 08-23-94 Schuler Add SetupArguments case for OS_NT/WIN_DUMB
* 01-29-96 Epstein Added GetHome() changes per Mr. G.M. Lack
*
* ==========================================================================
*/
#ifdef OS_MAC
#ifdef PROC_MC680X0
#define OBSOLETE
#endif
#endif
#include "corepriv.h"
#ifdef OS_UNIX
#include <pwd.h>
#endif /* OS_UNIX */
#ifdef OS_MAC
#include <Gestalt.h>
#include <Folders.h>
#include <Processes.h>
#include <Script.h>
#endif /* OS_MAC */
typedef struct nlm_env_item {
struct nlm_env_item* next;
Nlm_Char* name;
Nlm_Char* comment;
Nlm_Char* value;
} Nlm_env_item, *Nlm_env_itemPtr;
typedef struct nlm_env_sect {
struct nlm_env_sect* next;
Nlm_Char* name;
Nlm_Char* comment;
Nlm_Boolean transientOnly; /* this field used only by Transient */
struct nlm_env_item* children;
} Nlm_env_sect, *Nlm_env_sectPtr;
typedef struct nlm_env_file {
struct nlm_env_file* next;
Nlm_Char* name;
Nlm_env_sectPtr envList;
} Nlm_env_file, *Nlm_env_filePtr;
static Nlm_env_filePtr Nlm_transientFileList = NULL;
static Nlm_Boolean caching = FALSE;
static Nlm_Boolean dirty = FALSE;
static Nlm_Boolean mustCreateFile = TRUE;
static Nlm_Boolean Nlm_Qualified(const Nlm_Char* path);
static Nlm_Boolean Nlm_TransientLookup(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* dflt, Nlm_Char* buf, size_t buflen);
static void Nlm_TransientLogSetApp(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value);
static void Nlm_FreeEnvData(Nlm_env_sectPtr esp);
static void Nlm_FreeTransientData(void);
static FILE* Nlm_OpenConfigFile(const Nlm_Char* file, Nlm_Boolean writeMode, Nlm_Boolean create);
static Nlm_Char* Nlm_TrimString(Nlm_Char* str);
static Nlm_Boolean Nlm_ReadConfigFile(FILE* fp);
static Nlm_env_sectPtr Nlm_FindConfigSection(const Nlm_Char* section);
static Nlm_env_itemPtr Nlm_FindConfigItem(const Nlm_Char* section, const Nlm_Char* type, Nlm_Boolean create);
static Nlm_Boolean Nlm_WriteConfigFile(FILE* fp);
static void Nlm_PutComment(const Nlm_Char* s, FILE* fp);
static void Nlm_FreeConfigFileData(void);
static void Nlm_FlushConfigFile(const Nlm_Char* file, Nlm_Boolean create);
static Nlm_env_sectPtr Nlm_envList = NULL;
static Nlm_Char* Nlm_lastParamFile = NULL;
static Nlm_Char* Nlm_bottomComment = NULL;
/* always FALSE, because this file is trying to emulating MS Windows's */
/* handling of comments in Param files; however, just change this value */
/* to TRUE to turn this approach around */
static Nlm_Boolean destroyDeadComments = FALSE;
/*****************************************************************************
*
* The "guts" of:
* Nlm_GetAppParam (file, section, type, dflt, buf, buflen)
* finds parameters from configuration files
* this version, searching for configuration file(s) in a
* platform-dependent basis as handled by Nlm_OpenConfigFile()
*
* if configuration file is found, tries to read the parameter from it.
*
*****************************************************************************/
static FILE* LIBCALL Ncbienv_FileOpen (const char *filename, const char *mode)
{
FILE *fp;
ErrSev sev;
sev = ErrSetMessageLevel (SEV_ERROR);
fp = FileOpen (filename, mode);
ErrSetMessageLevel (sev);
return fp;
}
static Nlm_Int2
Nlm_WorkGetAppParam(const Nlm_Char* file,
const Nlm_Char* section,
const Nlm_Char* type,
const Nlm_Char* dflt,
Nlm_Char* buf,
Nlm_Int2 buflen,
Nlm_Boolean searchTransient)
{
Nlm_env_itemPtr eip;
FILE *fp;
if (buf == NULL || buflen <= 0)
return 0;
*buf = '\0';
if (searchTransient &&
Nlm_TransientLookup(file, section, type, dflt, buf, buflen))
{
return (Nlm_Int2)Nlm_StringLen(buf);
}
if ( dflt )
Nlm_StringNCpy_0(buf, dflt, buflen);
if (file == NULL || *file == '\0' ||
section == NULL || *section == '\0')
return (Nlm_Int2)Nlm_StringLen( buf );
if (Nlm_lastParamFile == NULL ||
Nlm_StringICmp(Nlm_lastParamFile, file) != 0)
{
mustCreateFile = TRUE;
if ( caching )
Nlm_FlushAppParam();
Nlm_FreeConfigFileData();
fp = Nlm_OpenConfigFile(file, FALSE, FALSE);
MemFree( Nlm_lastParamFile );
Nlm_lastParamFile = Nlm_StringSave( file );
if (fp != NULL)
{
Nlm_ReadConfigFile( fp );
Nlm_FileClose( fp );
}
}
if (type != NULL && *type != '\0')
{
eip = Nlm_FindConfigItem(section, type, FALSE);
if (eip != NULL)
Nlm_StringNCpy_0(buf, eip->value, buflen);
}
else
{ /* return all the types in that section */
Nlm_env_sectPtr esp = Nlm_FindConfigSection( section );
Nlm_Int2 totlen = 0;
*buf = '\0';
if (esp == NULL)
return 0;
/* traverse the children, allowing the null chars to be inserted */
/* in between each type-name */
for (eip = esp->children;
eip != NULL && totlen != buflen; eip = eip->next)
{
Nlm_Int2 bytesToAppend = StrLen(eip->name) + 1;
bytesToAppend = MIN(bytesToAppend, buflen - totlen);
StrNCpy(&buf[totlen], eip->name, bytesToAppend - 1);
totlen += bytesToAppend;
buf[totlen - 1] = '\0';
}
}
return (Nlm_Int2)Nlm_StringLen(buf);
}
/*****************************************************************************
*
* Nlm_SetAppParam (file, section, type, value)
* finds paths for types of data and fills in path in buf
* this version
* 1) looks in the current directory for ".filerc", but will not
* create a new file in this directory.
* 2) then looks in the home directory for ".filerc".
* 3) then looks for an environment variable "NCBI" and takes its
* value as a complete path to a directory containing the
* configuration file ".filerc".
* if configuration file is found, tries to write the parameter to it.
*
*****************************************************************************/
static Nlm_Boolean Nlm_SetAppParam_ST(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value)
{
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
FILE *fp = NULL;
Nlm_Boolean rsult;
rsult = FALSE;
if (file != NULL && *file != '\0' && section != NULL && *section != '\0') {
Nlm_TransientLogSetApp (file, section, type, value);
if (Nlm_lastParamFile == NULL || Nlm_StringICmp(Nlm_lastParamFile, file) != 0) {
mustCreateFile = TRUE;
}
if (mustCreateFile)
fp = Nlm_OpenConfigFile (file, FALSE, TRUE);
if (TRUE) {
if (fp != NULL) {
Nlm_FlushAppParam();
Nlm_FreeConfigFileData();
Nlm_lastParamFile = Nlm_StringSave(file);
Nlm_ReadConfigFile (fp);
Nlm_FileClose (fp);
mustCreateFile = FALSE;
}
if (type != NULL && *type != '\0')
{
eip = Nlm_FindConfigItem (section, type, TRUE);
if (eip != NULL) {
if (eip->value != NULL) {
eip->value = (Nlm_Char*) Nlm_MemFree (eip->value);
}
eip->value = Nlm_StringSave (value);
rsult = TRUE;
}
}
else { /* wipe out that section */
esp = Nlm_FindConfigSection (section);
if (esp != NULL) { /* kill section by deleting name (leave comments)*/
esp->name = (Nlm_Char*) Nlm_MemFree(esp->name);
rsult = TRUE;
}
}
if (rsult) {
dirty = TRUE;
}
if (! caching) {
Nlm_FlushConfigFile(file, TRUE);
}
}
}
return rsult;
}
/*****************************************************************************
*
* Nlm_FlushAppParam()
* flush the current parameter file's parameters to disk
*
*****************************************************************************/
static void Nlm_FlushAppParam_ST(void)
{
if (Nlm_lastParamFile != NULL)
Nlm_FlushConfigFile(Nlm_lastParamFile, TRUE);
}
/*****************************************************************************
*
* Nlm_CacheAppParam()
* Indicates whether data should be flushed to disk after each call
* to SetAppParam()
*
*****************************************************************************/
static Nlm_Boolean Nlm_CacheAppParam_ST(Nlm_Boolean value)
{
Nlm_Boolean oldvalue = caching;
caching = value;
if (! value)
Nlm_FlushAppParam();
return oldvalue;
}
#ifdef OS_UNIX
/* This is a special kludge for OSF1 native compiler which apparently
* cannot handle (_XOPEN_SOURCE == 500) when _XOPEN_SOURCE is defined
* to nothing
*/
#if (_XOPEN_SOURCE == 500)
# define NLM_XOPEN_SOURCE_500 1
#else
# define NLM_XOPEN_SOURCE_500 0
#endif
#define NLM_POSIX1B \
(_POSIX1B || _POSIX1C || \
(_POSIX_C_SOURCE - 0 >= 199309L) || \
defined(_POSIX_PTHREAD_SEMANTICS) || \
(defined(OS_UNIX_AIX) && NLM_XOPEN_SOURCE_500 && !defined(_UNIX95)))
#ifndef LOGNAME_MAX
# if defined(MAXLOGNAME)
# define LOGNAME_MAX MAXLOGNAME
# elif defined(_POSIX_LOGIN_NAME_MAX)
# define LOGNAME_MAX _POSIX_LOGIN_NAME_MAX
# endif
#endif /* ndef LOGNAME_MAX */
/*****************************************************************************
*
* Nlm_GetHome (buf, buflen)
* returns the path of the home directory
*
*****************************************************************************/
/* This function is used by Nlm_GetHome(), see below
*/
static Nlm_Boolean s_GetHomeByUID(Nlm_Char* buf, size_t buf_size)
{
struct passwd* pwd_ptr = 0;
/* Get the info using user ID */
#if (defined(SOLARIS_THREADS_AVAIL) || defined(POSIX_THREADS_AVAIL)) && !defined(OS_UNIX_FREEBSD) && !defined(OS_UNIX_DARWIN) && !defined(OS_UNIX_NETBSD)
struct passwd pwd;
Nlm_Char pwd_buffer[LOGNAME_MAX + PATH_MAX + 1024 + 1];
# if NLM_POSIX1B
if (getpwuid_r(getuid(), &pwd, pwd_buffer, sizeof(pwd_buffer),
&pwd_ptr) != 0) {
pwd_ptr = 0;
}
# else
pwd_ptr = getpwuid_r(getuid(), &pwd, pwd_buffer, sizeof(pwd_buffer));
# endif
#else
pwd_ptr = getpwuid(getuid());
#endif
if (!pwd_ptr || pwd_ptr->pw_dir[0] == '\0')
return FALSE;
Nlm_StringNCpy_0(buf, pwd_ptr->pw_dir, buf_size);
return TRUE;
}
/* This function is used by Nlm_GetHome(), see below
*/
static Nlm_Boolean s_GetHomeByLOGIN(Nlm_Char* buf, Nlm_Int2 buf_size)
{
struct passwd* pwd_ptr = 0;
/* Get the user login name */
#if (defined(SOLARIS_THREADS_AVAIL) || defined(POSIX_THREADS_AVAIL)) && !defined(OS_UNIX_FREEBSD) && !defined(OS_UNIX_DARWIN) && !defined(OS_UNIX_NETBSD)
struct passwd pwd;
Nlm_Char login_name[LOGNAME_MAX + 1];
Nlm_Char pwd_buffer[LOGNAME_MAX + PATH_MAX + 1024 + 1];
Nlm_Boolean ok = getlogin_r(login_name, sizeof(login_name)) ?
# if NLM_POSIX1B
FALSE : TRUE;
# else
TRUE : FALSE;
# endif
#else
Nlm_Char* login_name = getlogin();
Nlm_Boolean ok = (login_name != NULL);
#endif
/* Get the info using user login-name */
if ( !ok )
return FALSE;
#if (defined(SOLARIS_THREADS_AVAIL) || defined(POSIX_THREADS_AVAIL)) && !defined(OS_UNIX_FREEBSD) && !defined(OS_UNIX_DARWIN) && !defined(OS_UNIX_NETBSD)
pwd_ptr = &pwd;
# if NLM_POSIX1B
if (getpwnam_r(login_name, &pwd, pwd_buffer, sizeof(pwd_buffer),
&pwd_ptr) != 0) {
pwd_ptr = 0;
}
# else
pwd_ptr = getpwnam_r(login_name, &pwd, pwd_buffer, sizeof(pwd_buffer));
# endif
#else
pwd_ptr = getpwnam(login_name);
#endif
if (!pwd_ptr || pwd_ptr->pw_dir[0] == '\0')
return FALSE;
Nlm_StringNCpy_0(buf, pwd_ptr->pw_dir, buf_size);
return TRUE;
}
static Nlm_Boolean Nlm_GetHome(Nlm_Char* buf, Nlm_Int2 buflen)
{
static Nlm_Boolean s_Saved = FALSE;
static Nlm_Char s_SaveHome[PATH_MAX + 1];
static TNlmMutex s_SaveHomeMutex;
/* Have we passed this way before? If not, then try get the info. */
if ( !s_Saved ) {
#if defined(SOLARIS_THREADS_AVAIL) || defined(POSIX_THREADS_AVAIL)
VERIFY_HARD( NlmMutexLockEx( &s_SaveHomeMutex ) == 0 );
if ( !s_Saved ) {
#endif
s_Saved = TRUE;
/* Try to retrieve the home dir -- first use user's ID,
* and if failed, then use user's login name.
*/
if (!s_GetHomeByUID(s_SaveHome, sizeof(s_SaveHome)) &&
!s_GetHomeByLOGIN(s_SaveHome, sizeof(s_SaveHome))) {
s_SaveHome[0] = '\0';
}
#if defined(SOLARIS_THREADS_AVAIL) || defined(POSIX_THREADS_AVAIL)
}
VERIFY_HARD( NlmMutexUnlock(s_SaveHomeMutex) == 0 );
#endif
}
Nlm_StringNCpy_0(buf, s_SaveHome, buflen);
return (Nlm_Boolean) (*buf != '\0');
}
/*****************************************************************************
*
* Nlm_OpenConfigFile (file, writeMode, create)
* returns a file pointer to the specified configuration file.
* 1) looks in the current directory for ".filerc", but will not
* create a new file in this directory.
* 2) then looks in the home directory for ".filerc".
* 3) then looks for an environment variable "NCBI" and takes its
* value as a complete path to a directory containing the
* configuration file "filerc" or ".filerc".
*
* Steps (1) and (2) above are omitted if the NCBI_DONT_USE_LOCAL_CONFIG
* environment variable is set. This can be used to allow specific
* production applications to avoid stray .ncbirc files which may have
* been erroneously generated.
*
*****************************************************************************/
static FILE* Nlm_OpenConfigFile(const Nlm_Char* file, Nlm_Boolean writeMode, Nlm_Boolean create)
{
Nlm_Char ch;
FILE *fp;
Nlm_Int2 i;
Nlm_Int2 len;
FILE *newfp;
Nlm_Char path [PATH_MAX+1];
char *pth;
Nlm_Char str [FILENAME_MAX+1];
Nlm_Boolean dontUseLocalConfig;
fp = NULL;
if (file != NULL) {
#ifdef OS_UNIX_DARWIN
/* For Mach-O executables, check username/Library/Preferences/xxx.cnf first */
Nlm_StringNCpy_0(str, file, sizeof(str) - 4);
if ( ! Nlm_Qualified (str) ) {
/* if the user has already supplied a name with .xxx use that name
* otherwise add the .cnf here */
Nlm_StringCat(str, ".cnf");
}
/* if the name isn't all lowercase, make it so now */
len = (Nlm_Int2) Nlm_StringLen (str);
for (i = 0; i < len; i++) {
ch = str [i];
str [i] = TO_LOWER (ch);
}
if (Nlm_GetHome (path, sizeof (path))) {
Nlm_FileBuildPath(path, "Library", NULL);
Nlm_FileBuildPath(path, "Preferences", NULL);
Nlm_FileBuildPath(path, NULL, str);
fp = Ncbienv_FileOpen (path, "r");
if (fp == NULL && create) {
fp = Ncbienv_FileOpen (path, "w");
Nlm_FileClose (fp);
fp = Ncbienv_FileOpen (path, "r");
}
if (writeMode && fp != NULL) {
Nlm_FileClose (fp);
fp = Ncbienv_FileOpen (path, "w");
}
if (fp != NULL) {
return fp;
}
}
/* also check within Contents/Resources of Mac OS X package */
ProgramPath (path, sizeof (path));
if (IsApplicationPackage(path)) {
FileBuildPath(path, "Contents", NULL);
FileBuildPath (path, "Resources", NULL);
Nlm_FileBuildPath (path, NULL, str);
fp = Ncbienv_FileOpen (path, "r");
if (fp != NULL) {
return fp;
}
}
#endif
dontUseLocalConfig = getenv("NCBI_DONT_USE_LOCAL_CONFIG") != NULL;
newfp = NULL;
Nlm_StringMove(str, ".");
Nlm_StringNCat(str, file, sizeof(str) - 4);
if ( ! Nlm_Qualified (str))
{ /* use the user's extension instead of the "rc" extension */
Nlm_StringCat(str, "rc");
}
len = (Nlm_Int2) Nlm_StringLen (str);
for (i = 0; i < len; i++) {
ch = str [i];
str [i] = TO_LOWER (ch);
}
Nlm_StringNCpy_0(path, str, sizeof(path));
if (! dontUseLocalConfig)
fp = Ncbienv_FileOpen (path, "r");
if (fp == NULL) {
if (Nlm_GetHome (path, sizeof (path))) {
Nlm_FileBuildPath(path, NULL, str);
} else {
Nlm_StringNCpy_0(path, str, sizeof(path));
}
if (! dontUseLocalConfig)
fp = Ncbienv_FileOpen (path, "r");
if (fp == NULL && create) {
newfp = Ncbienv_FileOpen (path, "w");
Nlm_FileClose (newfp);
newfp = Ncbienv_FileOpen (path, "r");
}
}
if (fp == NULL) {
path[0] = '\0';
pth = getenv ("NCBI");
if (pth == NULL)
pth = "/etc/ncbi";
if (pth != NULL) {
Nlm_FileBuildPath(path, pth, str + 1);
fp = Ncbienv_FileOpen (path, "r");
if (fp == NULL) {
path[0] = '\0';
Nlm_FileBuildPath(path, pth, str);
fp = Ncbienv_FileOpen (path, "r");
}
}
}
if (newfp != NULL) {
if (fp != NULL) {
Nlm_FileClose (newfp);
newfp = NULL;
} else {
fp = newfp;
}
}
if (writeMode && fp != NULL) {
Nlm_FileClose (fp);
fp = Ncbienv_FileOpen (path, "w");
}
}
return fp;
}
#endif /* OS_UNIX */
#ifdef OS_MSWIN
/*****************************************************************************
*
* Nlm_OpenConfigFile (file, writeMode, create)
* returns a file pointer to the specified configuration file.
* 1) looks in the current directory for "file.ini", but will not
* create a new file in this directory.
* 2) then looks in the home directory for ".filerc".
* 3) then looks for an environment variable "NCBI" and takes its
* value as a complete path to a directory containing the
* configuration file "filerc" or ".filerc".
*
* Steps (1) and (2) above are omitted if the NCBI_DONT_USE_LOCAL_CONFIG
* environment variable is set. This can be used to allow specific
* production applications to avoid stray .ncbirc files which may have
* been erroneously generated.
*
*****************************************************************************/
static FILE* Nlm_OpenConfigFile(const Nlm_Char* file, Nlm_Boolean writeMode, Nlm_Boolean create)
{
Nlm_Char ch;
FILE *fp;
Nlm_Int2 i;
Nlm_Int2 len;
FILE *newfp;
Nlm_Char path [PATH_MAX+1];
Nlm_Char str [FILENAME_MAX+1];
Nlm_CharPtr tmp;
fp = NULL;
newfp = NULL;
if (file != NULL) {
/* normalize file name */
Nlm_StringNCpy_0(str, file, sizeof(str) - 4);
if ( ! Nlm_Qualified (str) ) {
/* if the user has already supplied a name with .xxx use that name
* otherwise add the .ini here */
Nlm_StringCat(str, ".INI");
}
/* if the name isn't all uppercase, make it so now */
len = (Nlm_Int2) Nlm_StringLen (str);
for (i = 0; i < len; i++) {
ch = str [i];
str [i] = TO_UPPER (ch);
}
/* first try user directory */
tmp = getenv ("USERPROFILE");
if (tmp != NULL && *tmp != '\0') {
StringNCpy_0 (path, tmp, sizeof (path));
Nlm_FileBuildPath(path, NULL, str);
fp = Ncbienv_FileOpen (path, "r");
if (fp == NULL && create) {
newfp = Ncbienv_FileOpen (path, "w");
Nlm_FileClose (newfp);
newfp = Ncbienv_FileOpen (path, "r");
}
}
/* next try c:\winnt for backward compatibility - read only */
if (fp == NULL) {
tmp = getenv ("SYSTEMROOT");
if (tmp != NULL && *tmp != '\0') {
StringNCpy_0 (path, tmp, sizeof (path));
Nlm_FileBuildPath(path, NULL, str);
fp = Ncbienv_FileOpen (path, "r");
}
}
/* last try environment variable path - read only */
if (fp == NULL) {
tmp = getenv ("NCBI");
if (tmp != NULL && *tmp != '\0') {
StringNCpy_0 (path, tmp, sizeof (path));
Nlm_FileBuildPath(path, NULL, str);
fp = Ncbienv_FileOpen (path, "r");
}
}
if (newfp != NULL) {
if (fp != NULL) {
Nlm_FileClose (newfp);
newfp = NULL;
} else {
fp = newfp;
}
}
if (writeMode && fp != NULL) {
Nlm_FileClose (fp);
fp = Ncbienv_FileOpen (path, "w");
}
}
return fp;
}
#endif /* OS_MSWIN */
#if defined(OS_MAC) && !defined(OS_UNIX_DARWIN)
/*****************************************************************************
*
* Nlm_OpenConfigFile (file, writeMode, create)
*
* file char string with name of file to open or optionally create
* writeMode don't know what this does, but all calling functions seem
* to pass FALSE??
* create Boolean to create the file if it doesn't already exist
*
* Returns:
* A ncbi FILE pointer to the specified configuration file. NULL if all
* fails for some reason
*
* 1) Finds "System Folder:Preferences" for "file.cnf"
*
* Implementation Notes:
* Implicit assumptions:
* System softare is 6.0.5 or newer (Gestalt)
* System softare is 7.0 or newer (FindFolder)
*
* We find the active preferences folder and either open a pre-existing file
* or create a new one with type 'TEXT' and creator ' '. The absolute
* pathname is not derived or needed, since we can use HSetVol to perform the
* MacOS equivalent of a "cd" command.
*
* pchurchill 12/10/99
*
*****************************************************************************/
static FILE*
Nlm_OpenConfigFile(const Nlm_Char* file,
Nlm_Boolean writeMode,
Nlm_Boolean create )
{
Nlm_Char ch;
Nlm_Char str [FILENAME_MAX+1];
Nlm_Int2 len;
long gesResponse;
OSErr err;
long dirID, saveDirID;
short vRefNum, saveVRefNum;
FSSpec spec;
FILE *fp = NULL;
int i;
if( file == NULL || *file == '\0' ){
return NULL;
}
/* copy no more than (FILENAME_MAX - 4) to allow for the length of
* our postfix */
Nlm_StringNCpy_0(str, file, sizeof(str) - 4);
if ( ! Nlm_Qualified (str) ) {
/* if the user has already supplied a name with .xxx use that name
* otherwise add the .cnf here */
Nlm_StringCat(str, ".cnf");
}
/* if the name isn't all lowercase, make it so now */
len = (Nlm_Int2) Nlm_StringLen (str);
for (i = 0; i < len; i++) {
ch = str [i];
str [i] = TO_LOWER (ch);
}
/* convert to pascal string for Mac toolbox */
Nlm_CtoPstr( str);
/* Make sure we can use FindFolder() if not, then report error and
* return NULL */
if ( Gestalt (gestaltFindFolderAttr, &gesResponse) != noErr ||
(gesResponse & (1 << gestaltFindFolderPresent) == 0)) {
/* notify user of the error */
Nlm_Message(MSG_OK,
"We need Mac OS 7.0 or newer, continue at your own risk.");
return NULL;
}
/* store the current active directory */
HGetVol( (StringPtr) 0, &saveVRefNum, &saveDirID);
/* first look for file in "system", then "preferences". Only create it
* in prefs if both of those fail... */
err = FindFolder(kOnSystemDisk, kSystemFolderType,
kDontCreateFolder, &vRefNum, &dirID);
if (err == noErr) {
err = FSMakeFSSpec( vRefNum, dirID, (StringPtr)str, &spec);
}
if( err != noErr){
/* i.e. file not in "system"
* find the preferences folder in the active System folder */
err = FindFolder(kOnSystemDisk, kPreferencesFolderType,
kCreateFolder, &vRefNum, &dirID);
if (err == noErr) {
err = FSMakeFSSpec( vRefNum, dirID, (StringPtr)str, &spec);
}
}
/* convert to back to C string for fopen */
Nlm_PtoCstr( str);
if( err == noErr){ /* the file is already there */
HSetVol( (StringPtr) 0, vRefNum, dirID);
if (writeMode) {
fp = fopen (str, "w");
} else {
fp = fopen (str, "r");
}
HSetVol( (StringPtr) 0, saveVRefNum, saveDirID);
}
else if( err == fnfErr && create){
/* no file with that name was found, create one */
err = FSpCreate( &spec, ' ', 'TEXT', smSystemScript);
if( err == noErr){
/* set the default directory (same as doing "cd" in unix)
* and actually open the file */
HSetVol( (StringPtr) 0, vRefNum, dirID);
fp = fopen (str, "w");
HSetVol( (StringPtr) 0, saveVRefNum, saveDirID);
}
if( fp == NULL){
Nlm_Message( MSG_OK,
"Couldn't create the preferences file, "
"is the boot volume locked?");
}
}
return fp;
}
#endif /* defined(OS_MAC) && !defined(OS_UNIX_DARWIN) */
#ifdef OS_VMS
/*****************************************************************************
*
* Nlm_GetHome (buf, buflen)
* returns the path of the home directory
*
*****************************************************************************/
static Nlm_Boolean Nlm_GetHome(Nlm_Char* buf, Nlm_Int2 buflen)
{
Nlm_StringNCpy_0(buf, getenv("SYS$LOGIN"), buflen);
return TRUE;
}
/*****************************************************************************
*
* Nlm_OpenConfigFile (file, writeMode, create)
* returns a file pointer to the specified configuration file.
* 1) looks in the current directory for "file.cfg", but will not
* create a new file in this directory.
* 2) then looks in the home directory for "file.cfg".
* 3) then looks for an environment variable "NCBI" and takes its
* value as a complete path to a directory containing the
* configuration file "file.cfg".
*
*****************************************************************************/
static FILE* Nlm_OpenConfigFile(const Nlm_Char* file, Nlm_Boolean writeMode, Nlm_Boolean create)
{
Nlm_Char ch;
FILE *fp;
Nlm_Int2 i;
Nlm_Int2 len;
FILE *newfp;
Nlm_Char path [PATH_MAX+1];
char *pth;
Nlm_Char str [FILENAME_MAX+1];
fp = NULL;
if (file != NULL) {
newfp = NULL;
Nlm_StringNCpy_0(str, file, sizeof(str) - 4);
if ( ! Nlm_Qualified (str) ) {
Nlm_StringCat (str, ".cfg");
}
len = (Nlm_Int2) Nlm_StringLen (str);
for (i = 0; i < len; i++) {
ch = str [i];
str [i] = TO_LOWER (ch);
}
Nlm_StringNCpy_0(path, str, sizeof(path));
fp = Ncbienv_FileOpen (path, "r"); /* File exists? */
if (fp == NULL) {
if (Nlm_GetHome (path, sizeof (path))) {
Nlm_FileBuildPath(path, NULL, str);
} else {
Nlm_StringNCpy_0(path, str, sizeof(path));
}
fp = Ncbienv_FileOpen (path, "r"); /* File exists? */
if (fp == NULL && create) {
newfp = Ncbienv_FileOpen (path, "w");
Nlm_FileClose (newfp);
newfp = Ncbienv_FileOpen (path, "r");
}
}
if (fp == NULL) {
path[0] = '\0';
pth = getenv ("NCBI");
if (pth != NULL) {
Nlm_FileBuildPath(path, pth, str);
fp = Ncbienv_FileOpen (path, "r");
}
}
if (newfp != NULL) {
if (fp != NULL) {
Nlm_FileClose (newfp);
newfp = NULL;
} else {
fp = newfp;
}
}
/*
** On VMS if a file is opened for write a new version is created.
** This section of code check for "writeMode" and an existing file
** if both are true. Get the currently open file's name and delete
** it. Open a new one in write mode.
**
** Side effects: This will replace the highest existing file version,
** but not older version. There exists the possibility that a user's
** custom change may get lost. A possible workaround for this would
** be to have the calling program make a new copy (one higher version)
** of the existing file before doing extensive write to the params
** file OR keep a static flag in this routine which does delete the
** first time time.
*/
if (writeMode && fp != NULL) {
char temp[256];
fgetname(fp,temp);
Nlm_FileClose (fp);
delete(temp);
fp = Ncbienv_FileOpen (path, "w");
}
}
return fp;
}
#endif /* OS_VMS */
/*****************************************************************************
*
* Nlm_TrimString (str)
* strips trailing spaces, \r, \n
*
*****************************************************************************/
static Nlm_Char* Nlm_TrimString(Nlm_Char* str)
{
Nlm_Char ch;
Nlm_Char* spc;
Nlm_Char* tmp;
if (str != NULL) {
ch = *str;
while (ch == ' ' || ch == '\t') {
str++;
ch = *str;
}
tmp = str;
spc = NULL;
ch = *tmp;
while (ch != '\0' && ch != '\r' && ch != '\n') {
if (ch == ' ' || ch == '\t') {
if (spc == NULL) {
spc = tmp;
}
} else {
spc = NULL;
}
tmp++;
ch = *tmp;
}
*tmp = '\0';
if (spc != NULL) {
*spc = '\0';
}
}
return str;
}
/*****************************************************************************
*
* Nlm_ReadConfigFile (fp)
* reads parameters from configuration file to memory structure
*
*****************************************************************************/
static Nlm_Boolean Nlm_ReadConfigFile(FILE* fp)
{
Nlm_Char ch;
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
Nlm_env_itemPtr lastEip;
Nlm_env_sectPtr lastEsp;
Nlm_Char* mid;
Nlm_Char str [256];
Nlm_Char* tmp;
Nlm_Char* comment;
if (fp != NULL) {
if (Nlm_envList != NULL) {
Nlm_FreeEnvData (Nlm_envList);
Nlm_envList = NULL;
}
esp = NULL;
lastEsp = NULL;
eip = NULL;
lastEip = NULL;
comment = NULL;
while (Nlm_FileGets (str, sizeof (str), fp)) {
ch = *str;
if (ch != '\n' && ch != '\r') {
if (ch == ';') { /* comment */
if (comment == NULL) { /* first comment */
comment = Nlm_StringSave(str);
}
else { /* append to existing comment */
tmp = (Nlm_Char*) Nlm_MemNew(StrLen(comment) + StrLen(str) + 1);
StrCpy(tmp, comment);
StrCat(tmp, str);
comment = (Nlm_Char*) Nlm_MemFree(comment);
comment = tmp;
}
} else if (ch == '[') {
if (esp == NULL) {
esp = (Nlm_env_sectPtr) Nlm_MemNew (sizeof (Nlm_env_sect));
lastEsp = esp;
Nlm_envList = esp;
} else {
esp = (Nlm_env_sectPtr) Nlm_MemNew (sizeof (Nlm_env_sect));
lastEsp->next = esp;
lastEsp = esp;
}
esp->comment = comment;
comment = NULL;
tmp = str;
ch = *tmp;
while (ch != '\0' && ch != ']') {
tmp++;
ch = *tmp;
}
*tmp = '\0';
esp->name = Nlm_StringSave (str + 1);
eip = NULL;
lastEip = NULL;
} else if (esp != NULL) {
if (eip == NULL) {
eip = (Nlm_env_itemPtr) Nlm_MemNew (sizeof (Nlm_env_item));
lastEip = eip;
esp->children = eip;
} else {
eip = (Nlm_env_itemPtr) Nlm_MemNew (sizeof (Nlm_env_item));
lastEip->next = eip;
lastEip = eip;
}
eip->comment = comment;
comment = NULL;
tmp = str;
mid = str;
ch = *tmp;
while (ch != '\0' && ch != '\n' && ch != '\r') {
if (ch == '=' && mid == str) {
mid = tmp;
*mid++ = '\0';
}
tmp++;
ch = *tmp;
}
*tmp = '\0';
eip->name = Nlm_StringSave (Nlm_TrimString (str));
eip->value = Nlm_StringSave (Nlm_TrimString (mid));
}
}
}
/* any comments which appeared after the final key of the final section */
Nlm_bottomComment = (Nlm_Char*)Nlm_MemFree(Nlm_bottomComment);
Nlm_bottomComment = comment;
}
return TRUE;
}
static Nlm_env_sectPtr Nlm_FindConfigSection(const Nlm_Char* section)
{
Nlm_env_sectPtr esp;
if (section == NULL)
return NULL;
for (esp = Nlm_envList; esp != NULL; esp = esp->next)
{
if (esp->name != NULL && Nlm_StringICmp(section, esp->name) == 0)
return esp;
}
return NULL;
}
/*****************************************************************************
*
* Nlm_FindConfigItem (section, type, create)
* finds parameter in memory structure
*
*****************************************************************************/
static Nlm_env_itemPtr Nlm_FindConfigItem(const Nlm_Char* section, const Nlm_Char* type, Nlm_Boolean create)
{
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
Nlm_Boolean goOn;
Nlm_env_itemPtr lastEip;
Nlm_env_sectPtr lastEsp;
eip = NULL;
if (section != NULL && type != NULL) {
goOn = TRUE;
esp = Nlm_envList;
lastEsp = esp;
while (esp != NULL && goOn) {
if (esp->name != NULL && Nlm_StringICmp (section, esp->name) == 0) {
goOn = FALSE;
} else {
lastEsp = esp;
esp = esp->next;
}
}
if (goOn && create) {
if (Nlm_envList != NULL) {
esp = (Nlm_env_sectPtr) Nlm_MemNew (sizeof (Nlm_env_sect));
if (esp != NULL) {
esp->name = Nlm_StringSave (section);
lastEsp->next = esp;
}
} else {
esp = (Nlm_env_sectPtr) Nlm_MemNew (sizeof (Nlm_env_sect));
if (esp != NULL) {
esp->name = Nlm_StringSave (section);
}
Nlm_envList = esp;
}
}
if (esp != NULL) {
eip = esp->children;
if (eip != NULL) {
goOn = TRUE;
lastEip = eip;
while (eip != NULL && goOn) {
if (eip->name != NULL && Nlm_StringICmp (type, eip->name) == 0) {
goOn = FALSE;
} else {
lastEip = eip;
eip = eip->next;
}
}
if (goOn && create) {
eip = (Nlm_env_itemPtr) Nlm_MemNew (sizeof (Nlm_env_item));
if (eip != NULL) {
eip->name = Nlm_StringSave (type);
lastEip->next = eip;
}
}
} else if (create) {
eip = (Nlm_env_itemPtr) Nlm_MemNew (sizeof (Nlm_env_item));
if (eip != NULL) {
eip->name = Nlm_StringSave (type);
esp->children = eip;
}
}
}
}
return eip;
}
/*****************************************************************************
*
* Nlm_WriteConfigFile (fp)
* writes parameters to configuration file from memory structure
*
*****************************************************************************/
static Nlm_Boolean Nlm_WriteConfigFile(FILE* fp)
{
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
if (Nlm_envList != NULL && fp != NULL) {
esp = Nlm_envList;
while (esp != NULL) {
if (! destroyDeadComments || esp->name != NULL)
{
Nlm_PutComment (esp->comment, fp);
}
if (esp->name != NULL)
{
fputc ('[', fp);
fputs (esp->name, fp);
fputs ("]\n", fp);
}
eip = esp->children;
while (eip != NULL) {
if (! destroyDeadComments)
{
Nlm_PutComment (eip->comment, fp);
}
if (esp->name != NULL && eip->name != NULL && eip->value != NULL) {
if (destroyDeadComments)
{
Nlm_PutComment (eip->comment, fp);
}
fputs (eip->name, fp);
fputc ('=', fp);
fputs (eip->value, fp);
fputc ('\n', fp);
}
eip = eip->next;
}
if (esp->name != NULL)
{
fputc ('\n', fp);
}
esp = esp->next;
}
}
if (fp != NULL)
Nlm_PutComment(Nlm_bottomComment, fp);
return TRUE;
}
/*****************************************************************************
*
* Nlm_FreeConfigFileData ()
* frees parameter structure in memory
*
*****************************************************************************/
static void Nlm_FreeConfigFileData(void)
{
mustCreateFile = TRUE;
Nlm_bottomComment = (Nlm_Char*) Nlm_MemFree(Nlm_bottomComment);
if (Nlm_lastParamFile != NULL)
Nlm_lastParamFile = (Nlm_Char*) Nlm_MemFree(Nlm_lastParamFile);
if (Nlm_envList != NULL) {
Nlm_FreeEnvData (Nlm_envList);
Nlm_envList = NULL;
}
}
/*****************************************************************************
*
* Nlm_FlushConfigFile()
* flush the specified file's parameters to disk
*
*****************************************************************************/
static void Nlm_FlushConfigFile(const Nlm_Char* file, Nlm_Boolean create)
{
FILE* fp;
if (dirty && file != NULL)
{
fp = Nlm_OpenConfigFile (file, TRUE, create);
if (fp != NULL) {
Nlm_WriteConfigFile (fp);
Nlm_FileClose (fp);
}
}
dirty = FALSE;
}
/*****************************************************************************
*
* Nlm_FreeConfigStruct ()
* frees parameter structure in memory, and perform other cleanup
*
*****************************************************************************/
static void Nlm_FreeConfigStruct_ST(void)
{
Nlm_FlushAppParam();
Nlm_FreeConfigFileData ();
Nlm_FreeTransientData ();
}
/*****************************************************************************
*
* Nlm_PutComment()
* output a comment to the config file
*
*****************************************************************************/
static void Nlm_PutComment(const Nlm_Char* s, FILE* fp)
{
if (s != NULL)
fputs(s, fp);
}
/*****************************************************************************
* Nlm_Qualified ()
* Appears to check if we've got an n.3 notation sting (i.e. if there is
* a "." in the last 4 chars of the string passed)
*****************************************************************************/
static Nlm_Boolean Nlm_Qualified( const Nlm_Char* path )
{
Nlm_Int4 l,k;
const Nlm_Char* p;
l = Nlm_StrLen(path);
p = path+l;
k = 0;
while (k < l && k <= 4) {
if (*p-- == '.') return TRUE;
k++;
}
return FALSE;
}
/*****************************************************************************
*
* Nlm_FindPath (file, section, type, buf, buflen)
* finds paths for types of data from configuration files.
* if configuration file is found, tries to read the parameter from it,
* then appends a directory delimiter character, if necessary.
*
*****************************************************************************/
NLM_EXTERN Nlm_Boolean Nlm_FindPath(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, Nlm_Char* buf, Nlm_Int2 buflen) /* length of path buffer */
{
Nlm_Boolean rsult = FALSE;
if (file == NULL || section == 0 || type == NULL ||
buf == NULL || buflen <= 0)
return FALSE;
NlmMutexLockEx( &corelibMutex );
*buf = '\0';
if (*file != '\0' && *section != '\0' && *type != '\0' &&
Nlm_GetAppParam(file, section, type, "", buf, buflen - 1) &&
*buf != '\0')
{
Nlm_FileBuildPath(buf, NULL, NULL);
rsult = TRUE;
}
NlmMutexUnlock( corelibMutex );
return rsult;
}
static Nlm_Boolean Nlm_TransientSetAppParam_ST(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value)
{
Nlm_env_filePtr theFile;
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
Nlm_env_itemPtr nextEip;
if (file == NULL || *file == '\0' || section == NULL || *section == '\0')
return FALSE;
for (theFile = Nlm_transientFileList; theFile != NULL; theFile = theFile->next)
{
if (StringICmp(theFile->name, file) == 0)
{
for (esp = theFile->envList; esp != NULL; esp = esp->next)
{
if (esp->name != NULL && StringICmp(esp->name, section) == 0)
{
if (type == NULL || type[0] == '\0')
{
/* free all children */
for (eip = esp->children; eip != NULL; eip = nextEip)
{
nextEip = eip->next;
eip->next = (Nlm_env_itemPtr)(-1);
eip->name = (Nlm_Char*) Nlm_MemFree (eip->name);
eip->comment = (Nlm_Char*) Nlm_MemFree (eip->comment);
eip->value = (Nlm_Char*) Nlm_MemFree (eip->value);
Nlm_MemFree (eip);
}
esp->children = NULL;
esp->transientOnly = TRUE;
} else { /* append this type to the section */
eip = (Nlm_env_itemPtr) MemNew(sizeof(*eip));
eip->name = StringSave(type);
eip->value = StringSave(value);
eip->next = esp->children;
esp->children = eip;
}
return TRUE;
}
}
break;
}
}
/* create the file data structure if needed */
if (theFile == NULL)
{
theFile = (Nlm_env_filePtr) MemNew(sizeof(*theFile));
theFile->name = StringSave(file);
theFile->next = Nlm_transientFileList;
Nlm_transientFileList = theFile;
}
/* create the section and type */
esp = (Nlm_env_sectPtr) MemNew(sizeof(*esp));
esp->name = StringSave(section);
esp->next = theFile->envList;
theFile->envList = esp;
if (type == NULL || type[0] == '\0')
{
esp->transientOnly = TRUE;
} else { /* create the section */
esp->transientOnly = FALSE;
eip = (Nlm_env_itemPtr) MemNew(sizeof(*eip));
eip->name = StringSave(type);
eip->value = StringSave(value);
eip->next = NULL;
esp->children = eip;
}
return TRUE;
}
/* SetAppParam is writing a value to the real config file, so log this value,
if necessary, into the "transient" data structures */
static void Nlm_TransientLogSetApp(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value)
{
Nlm_env_filePtr theFile;
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
if (file == NULL || *file == '\0' || section == NULL || *section == '\0')
return;
if (type == NULL || type[0] == '\0')
{
for (theFile = Nlm_transientFileList; theFile != NULL; theFile = theFile->next)
{
if (StringICmp(theFile->name, file) == 0)
{
for (esp = theFile->envList; esp != NULL; esp = esp->next)
{
if (esp->name != NULL && StringICmp(esp->name, section) == 0)
{ /* delete the section by removing section name */
esp->name = (Nlm_Char*) MemFree(esp->name);
}
}
}
}
} else {
for (theFile = Nlm_transientFileList; theFile != NULL; theFile = theFile->next)
{
if (StringICmp(theFile->name, file) == 0)
{
for (esp = theFile->envList; esp != NULL; esp = esp->next)
{
if (esp->name != NULL && StringICmp(esp->name, section) == 0 &&
esp->transientOnly)
{ /* append this type to the section */
eip = (Nlm_env_itemPtr) MemNew(sizeof(*eip));
eip->name = StringSave(type);
eip->value = StringSave(value);
eip->next = esp->children;
esp->children = eip;
}
}
}
}
}
}
static Nlm_Boolean Nlm_TransientLookup(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* dflt, Nlm_Char* buf, size_t buflen)
{
Nlm_env_filePtr theFile;
Nlm_env_itemPtr eip;
Nlm_env_sectPtr esp;
Nlm_Int4 totlen;
Nlm_Int4 bytesToAppend;
if (file == NULL || *file == '\0' || section == NULL || *section == '\0')
return FALSE;
for (theFile = Nlm_transientFileList; theFile != NULL; theFile = theFile->next)
{
if (StringICmp(theFile->name, file) == 0)
{
for (esp = theFile->envList; esp != NULL; esp = esp->next)
{
if (esp->name != NULL && StringICmp(esp->name, section) == 0)
{
if (type == NULL || type[0] == '\0')
{ /* concatenate all types (keys) within section */
*buf = '\0';
totlen = 0;
for (eip = esp->children; eip != NULL; eip = eip->next)
{
bytesToAppend = StrLen(eip->name) + 1;
bytesToAppend = MIN(bytesToAppend, (Nlm_Int4)buflen - totlen);
StrNCpy(&buf[totlen], eip->name, bytesToAppend);
totlen += bytesToAppend;
}
if (totlen > 0 && buf[totlen] == '\0')
{
totlen--; /* account for final null character */
}
/* now append the GetAppParam() data */
if (! esp->transientOnly)
{ /* GetAppParam data can be trusted ... append it to buf */
Nlm_WorkGetAppParam(file, section, NULL, "", &buf[totlen],
(Nlm_Int2)(buflen - totlen), FALSE);
}
return TRUE;
} else {
for (eip = esp->children; eip != NULL; eip = eip->next)
{
if (StringICmp(eip->name, type) == 0)
{
Nlm_StringNCpy_0(buf, eip->value, buflen);
return TRUE;
}
}
if (esp->transientOnly)
{ /* GetAppParam data cannot be trusted ... use the default */
Nlm_StringNCpy_0(buf, dflt, buflen);
return TRUE;
}
}
}
}
}
}
/* not found ... GetAppParam() should search the real config file */
return FALSE;
}
static void Nlm_FreeEnvData(Nlm_env_sectPtr esp)
{
Nlm_env_itemPtr eip;
Nlm_env_itemPtr nextEip;
Nlm_env_sectPtr nextEsp;
while (esp != NULL) {
nextEsp = esp->next;
eip = esp->children;
while (eip != NULL) {
nextEip = eip->next;
eip->next = (Nlm_env_itemPtr)(-1);
eip->name = (Nlm_Char*) Nlm_MemFree (eip->name);
eip->comment = (Nlm_Char*) Nlm_MemFree (eip->comment);
eip->value = (Nlm_Char*) Nlm_MemFree (eip->value);
Nlm_MemFree (eip);
eip = nextEip;
}
esp->next = (Nlm_env_sectPtr)(-1);
esp->name = (Nlm_Char*) Nlm_MemFree (esp->name);
esp->comment = (Nlm_Char*) Nlm_MemFree (esp->comment);
Nlm_MemFree (esp);
esp = nextEsp;
}
}
static void Nlm_FreeTransientData(void)
{
Nlm_env_filePtr efp, nextEfp;
efp = Nlm_transientFileList;
while (efp != NULL) {
nextEfp = efp->next;
Nlm_FreeEnvData (efp->envList);
efp->envList = NULL;
efp->next = (Nlm_env_filePtr)(-1);
efp->name = (Nlm_Char*) Nlm_MemFree (efp->name);
Nlm_MemFree (efp);
efp = nextEfp;
}
Nlm_transientFileList = NULL;
}
extern size_t Nlm_GetEnvParamEx
(const Nlm_Char* conf_file, const Nlm_Char* conf_section,
const Nlm_Char* env_name, const Nlm_Char* conf_name,
Nlm_Char* buf, size_t bufsize, const Nlm_Char* dflt)
{
static const Nlm_Char s_DefConfigFile [] = "ncbi";
static const Nlm_Char s_DefConfigSection[] = "NCBI";
size_t len = 0;
ASSERT ( (env_name && *env_name) || (conf_name && *conf_name) );
ASSERT ( buf && bufsize );
buf[0] = '\0';
/* arg fallbacks */
if (conf_name && *conf_name) {
if ( !conf_file )
conf_file = s_DefConfigFile;
if ( !conf_section )
conf_section = s_DefConfigSection;
}
/* Search in the list of transient parameters */
if (conf_name && *conf_name &&
Nlm_TransientLookup(conf_file, conf_section, conf_name,
dflt, buf, bufsize)) {
return Nlm_StrLen(buf);
}
/* Fetch from the environment variable */
#if defined(OS_UNIX) || defined(OS_MSWIN)
if (env_name && *env_name) {
const Nlm_Char* str = getenv(env_name);
if (str && *str) {
len = Nlm_StrLen(str);
if (len >= bufsize)
len = 0;
else
Nlm_StrCpy(buf, str);
}
}
#endif
/* Search in the configuration file */
if (!len && conf_name && *conf_name) {
len = GetAppParam(conf_file, conf_section, conf_name, dflt, buf,
bufsize < INT2_MAX ? (Nlm_Int2) bufsize : INT2_MAX);
}
/* Store the value in the transient parameter list */
ASSERT(len == Nlm_StrLen(buf));
if ( len )
VERIFY(Nlm_TransientSetAppParam(conf_file, conf_section, conf_name, buf));
return len;
}
NLM_EXTERN size_t Nlm_GetEnvParam
(const Nlm_Char* conf_file, const Nlm_Char* conf_section,
const Nlm_Char* env_conf_name,
Nlm_Char* buf, size_t bufsize, const Nlm_Char* dflt)
{
return Nlm_GetEnvParamEx(conf_file, conf_section,
env_conf_name, env_conf_name,
buf, bufsize, dflt);
}
/*****************************************************************************
*
* Command-line arguments
* &
* Nlm_ProgramPath (buf, maxsize)
* returns full path to executing program
*
*****************************************************************************/
static Nlm_Boolean wasSetup = FALSE;
static int targc = 0;
static char **targv = NULL;
#if defined(WIN_MAC) || defined(OS_UNIX_DARWIN)
static FSSpec apFileSpec;
static Str255 apName;
static Handle apParam;
static short apRefNum;
static Nlm_Boolean Nlm_SetupArguments_ST_Mac(void)
{
#ifndef __GNUC__
/* At least in 10.1, this seems to introduce an unwanted dep. on Carbon. */
ProcessInfoRec pirec;
ProcessSerialNumber psn;
GetCurrentProcess (&psn);
pirec.processInfoLength = sizeof (ProcessInfoRec);
pirec.processName = apName;
pirec.processAppSpec = &apFileSpec;
GetProcessInformation (&psn, &pirec);
Nlm_PtoCstr ((Nlm_Char*) apFileSpec.name);
Nlm_PtoCstr ((Nlm_Char*) apName);
SetProgramName(apName);
#endif
return TRUE;
}
#if defined(OS_UNIX_DARWIN)
/* this requires the CoreFoundation framework, but nothing more. */
static void Nlm_ProgramPath_ST(Nlm_Char* appPath, size_t pathSize)
{
CFBundleRef thisBundle;
CFURLRef thisURL;
int pathsuffix_pos;
static const char* appsuffix = ".app";
thisBundle = CFBundleGetMainBundle();
if (thisBundle == NULL)
return;
thisURL = CFBundleCopyBundleURL(thisBundle);
if (thisURL == NULL) return;
if (!CFURLGetFileSystemRepresentation( thisURL, true, (UInt8 *) appPath, pathSize)) {
return;
}
/* Does this path end with the .app suffix? */
pathsuffix_pos = strlen(appPath) - strlen(appsuffix);
if (pathsuffix_pos > 0 &&
0 == Nlm_StrICmp(appPath + pathsuffix_pos, appsuffix) ) {
/* this is a bundled app. */
return;
}
/* this is not a bundled app. The above got me my directory. */
thisURL = CFBundleCopyExecutableURL(thisBundle);
if (thisURL == NULL)
return;
CFURLGetFileSystemRepresentation( thisURL, true, (UInt8 *) appPath, pathSize);
}
/*
is the application at filePath actually a application bundle/package?
i.e. a folder containing subfolders, resource files and the actual executable.
Pass the value returned by ProgramPath for best results.
*/
NLM_EXTERN Nlm_Boolean Nlm_IsApplicationPackage(char *filePath)
{
OSErr err;
char aPath[1024];
FSRef contentsFRef;
Boolean isDirectory;
StrCpy(aPath, filePath);
FileBuildPath(aPath, "Contents", NULL);
err = FSPathMakeRef ((unsigned char *) aPath, &contentsFRef, &isDirectory);
if (err == noErr && isDirectory) {
return TRUE;
}
/* else gets err == -120, no such directory. */
return FALSE;
}
#else
static void Nlm_ProgramPath_ST(Nlm_Char* buf, size_t maxsize)
{
CInfoPBRec block;
Nlm_Char path [256];
Nlm_Char temp [256];
short nErr;
if (buf != NULL && maxsize > 0) {
*buf = '\0';
if (wasSetup) {
memset (&block, 0, sizeof (CInfoPBRec));
Nlm_StringNCpy_0(path, (Nlm_Char*)apFileSpec.name, sizeof (path));
block.dirInfo.ioNamePtr = (StringPtr) path;
block.dirInfo.ioDrParID = apFileSpec.parID;
do {
Nlm_StringCpy (temp, path);
block.dirInfo.ioVRefNum = apFileSpec.vRefNum;
block.dirInfo.ioFDirIndex = -1;
block.dirInfo.ioDrDirID = block.dirInfo.ioDrParID;
nErr = PBGetCatInfo (&block, FALSE);
if (nErr != noErr) break;
Nlm_PtoCstr ((Nlm_Char*) path);
Nlm_StringCat (path, DIRDELIMSTR);
Nlm_StringCat (path, temp);
} while (block.dirInfo.ioDrDirID != fsRtDirID);
Nlm_StringNCpy_0(buf, path, maxsize);
}
}
}
#endif /* defined(OS_UNIX_DARWIN) */
#endif /* defined(WIN_MAC) || defined(OS_UNIX_DARWIN) */
#if defined(OS_MSWIN) || defined(OS_VMS)
static void Nlm_ProgramPath_ST(Nlm_Char* buf, size_t maxsize)
{
if (!buf || maxsize <= 0)
return;
*buf = '\0';
if (wasSetup && targv && targv[0])
Nlm_StringNCpy_0(buf, targv[0], maxsize);
}
#endif /* OS_MSWIN || OS_VMS */
#if defined(OS_UNIX) && !defined(OS_UNIX_DARWIN)
static void Nlm_ProgramPath_ST(Nlm_Char* buf, size_t maxsize)
{
Nlm_Char path [PATH_MAX];
Nlm_Char* pth;
Nlm_Char* ptr;
if (buf != NULL && maxsize > 0) {
*buf = '\0';
if (wasSetup) {
ptr = targv [0];
if (ptr [0] == DIRDELIMCHR) {
Nlm_StringNCpy_0(buf, targv[0], maxsize);
} else if (getcwd (path, sizeof (path)) != NULL) {
ptr = targv [0];
while (ptr [0] == '.' || ptr [0] == DIRDELIMCHR) {
if (ptr [0] == '.') {
if (ptr [1] == '.' && ptr [2] == DIRDELIMCHR) {
ptr += 3;
pth = StringRChr (path, DIRDELIMCHR);
if (pth != NULL) {
*pth = '\0';
}
} else if (ptr [1] == DIRDELIMCHR) {
ptr += 2;
} else {
ptr++;
}
} else if (ptr [0] == DIRDELIMCHR) {
ptr++;
} else {
ptr++;
}
}
FileBuildPath (path, NULL, ptr);
Nlm_StringNCpy_0(buf, path, maxsize);
} else {
Nlm_StringNCpy_0(buf, targv[0], maxsize);
}
}
}
}
#endif
/*****************************************************************************
* Multi-Thread protected external functions
*****************************************************************************/
NLM_EXTERN Nlm_Boolean Nlm_TransientSetAppParam(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value)
{
Nlm_Boolean rsult;
NlmMutexLockEx( &corelibMutex );
rsult = Nlm_TransientSetAppParam_ST(file, section, type, value);
NlmMutexUnlock( corelibMutex );
return rsult;
}
NLM_EXTERN void Nlm_FreeConfigStruct(void)
{
NlmMutexLockEx( &corelibMutex );
Nlm_FreeConfigStruct_ST();
NlmMutexUnlock( corelibMutex );
}
NLM_EXTERN Nlm_Boolean Nlm_ParseCmdLineArguments
(const char* prog_name, const char* cmd_line, int* argc_ptr, char*** argv_ptr,
ECmdLineQuote quote_handling)
{
char* str;
char* p;
int xx_argc;
char** xx_argv;
/* Check args */
if (!argc_ptr || !argv_ptr)
return FALSE;
/* Figure out program name */
if (!prog_name && !(prog_name = GetProgramName()))
prog_name = "";
/* Special case -- no cmd.-line parameters */
if ( cmd_line ) {
const char* sss;
for (sss = cmd_line; *sss && isspace(*sss); sss++) continue;
if ( !*sss )
cmd_line = 0;
}
if ( !cmd_line ) {
*argc_ptr = 1;
*argv_ptr = (char**) Nlm_MemNew(2 * sizeof(char*));
(*argv_ptr[0]) = Nlm_StringSave(prog_name);
return TRUE;
}
/* Allocate string to hold "argv[]" values and fill it with
* the program name and the command string */
{{
size_t size = strlen(prog_name) + strlen(cmd_line) + 2;
str = (char*) Nlm_MemNew(size);
StrCpy(str, prog_name);
StrCpy(str + strlen(prog_name) + 1, cmd_line);
}}
/* Count command-line arguments and separate them by '\0' */
xx_argc = 1;
for (p = str + strlen(prog_name) + 1; *p; ) {
if ( isspace(*p) ) {
*p++ = '\0';
continue;
}
if (quote_handling == eProcessQuotes && (*p == '\'' || *p == '"')) {
char quote = *p;
xx_argc++;
while (*(++p) && *p != quote) continue;
if ( *p )
*p++ = '\0';
continue;
}
xx_argc++;
while (*p && !isspace(*p))
p++;
}
/* Allocate and fill out "xx_argv" */
{{
int n = 1;
char *s = str + strlen(prog_name) + 1;
xx_argv = (char**) Nlm_MemNew((xx_argc + 1) * sizeof(char*));
xx_argv[0] = str;
while (n < xx_argc) {
while ( !*s )
s++;
if (quote_handling == eProcessQuotes && (*s == '\'' || *s == '"'))
s++; /* -- skip the leading quote */
xx_argv[n++] = s;
while ( *s )
s++;
}
xx_argv[n] = 0;
#ifdef _DEBUG
while (s < p && !*s)
s++;
ASSERT ( s == p );
#endif
}}
*argc_ptr = xx_argc;
*argv_ptr = xx_argv;
return TRUE;
}
NLM_EXTERN void Nlm_FreeCmdLineArguments(char** argv)
{
if ( !argv )
return;
ASSERT( argv[0] );
Nlm_MemFree( argv[0] );
Nlm_MemFree( argv );
}
NLM_EXTERN void Nlm_SetupArguments(int argc, char *argv[])
{
NlmMutexLockEx( &corelibMutex );
wasSetup = TRUE;
#if defined(WIN_MAC) || defined(OS_UNIX_DARWIN)
wasSetup = Nlm_SetupArguments_ST_Mac();
#elif defined(OS_UNIX)
{{
char *p;
if ((p = strrchr(argv[0],DIRDELIMCHR)) != NULL)
p++;
else
p = argv[0];
SetProgramName(p);
}}
#endif
targc = argc;
targv = argv;
NlmMutexUnlock( corelibMutex );
}
NLM_EXTERN Nlm_Char** Nlm_GetArgv(void)
{
return targv;
}
NLM_EXTERN Nlm_Int4 Nlm_GetArgc(void)
{
return targc;
}
NLM_EXTERN void Nlm_ProgramPath(Nlm_Char* buf, size_t maxsize)
{
NlmMutexLockEx( &corelibMutex );
Nlm_ProgramPath_ST(buf, maxsize);
NlmMutexUnlock( corelibMutex );
}
NLM_EXTERN void Nlm_FlushAppParam(void)
{
NlmMutexLockEx( &corelibMutex );
Nlm_FlushAppParam_ST();
NlmMutexUnlock( corelibMutex );
}
NLM_EXTERN Nlm_Boolean Nlm_CacheAppParam(Nlm_Boolean value)
{
Nlm_Boolean rsult;
NlmMutexLockEx( &corelibMutex );
rsult = Nlm_CacheAppParam_ST( value );
NlmMutexUnlock( corelibMutex );
return rsult;
}
NLM_EXTERN Nlm_Int2 Nlm_GetAppParam(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* dflt, Nlm_Char* buf, Nlm_Int2 buflen)
{
Nlm_Int2 rsult;
NlmMutexLockEx( &corelibMutex );
rsult = Nlm_WorkGetAppParam(file, section, type, dflt, buf, buflen, TRUE);
NlmMutexUnlock( corelibMutex );
return rsult;
}
NLM_EXTERN Nlm_Boolean Nlm_SetAppParam(const Nlm_Char* file, const Nlm_Char* section, const Nlm_Char* type, const Nlm_Char* value)
{
Nlm_Boolean rsult;
NlmMutexLockEx( &corelibMutex );
rsult = Nlm_SetAppParam_ST(file, section, type, value);
NlmMutexUnlock( corelibMutex );
return rsult;
}
/*****************************************************************************
*
* GetAppParamBoolean()
* SetAppParamBoolean()
* GetAppParamLong()
* SetAppParamLong()
*
*****************************************************************************/
NLM_EXTERN Nlm_Boolean GetAppParamBoolean
(const Nlm_Char* filebase, const Nlm_Char* sect, const Nlm_Char* key,
Nlm_Boolean dflt)
{
Nlm_Char buffer[32];
if ( GetAppParam(filebase, sect, key, "", buffer, sizeof(buffer)) ) {
if (strchr("1yYtT",buffer[0]))
return TRUE;
if (strchr("0nNfF",buffer[0]))
return FALSE;
}
return dflt;
}
NLM_EXTERN Nlm_Boolean SetAppParamBoolean
(const Nlm_Char* filebase, const Nlm_Char* sect, const Nlm_Char* key,
Nlm_Boolean value)
{
return SetAppParam(filebase, sect, key, value ? "Yes" : "No");
}
NLM_EXTERN long GetAppParamLong(const Nlm_Char* filebase, const Nlm_Char* sect,
const Nlm_Char* key, long dflt)
{
Nlm_Char buffer[32];
return GetAppParam(filebase, sect, key, "", buffer, sizeof(buffer)) ?
atol(buffer) : dflt;
}
NLM_EXTERN Nlm_Boolean SetAppParamLong
(const Nlm_Char* filebase, const Nlm_Char* sect, const Nlm_Char* key,
long value)
{
char buffer[32];
sprintf(buffer,"%ld",value);
return SetAppParam((char*)filebase,(char*)sect,(char*)key,buffer);
}
#ifdef WIN32
extern int Nlm_x_HasConsole(void)
{
static int has_console = -1;
if (has_console == -1)
has_console = fileno(stdin) >= 0 ? 1 : 0;
return has_console;
}
#endif
NLM_EXTERN Nlm_Boolean Nlm_FreeArgs(Nlm_Int2 numargs, Nlm_ArgPtr ap)
{
Nlm_Int2 i;
for (i = 0; i < numargs; i++, ap++)
{
switch ( ap->type )
{
case ARG_BOOLEAN:
ap->intvalue = 0;
break;
case ARG_INT:
ap->intvalue = 0;
break;
case ARG_FLOAT:
ap->floatvalue = 0.0;
break;
case ARG_STRING:
case ARG_FILE_IN:
case ARG_FILE_OUT:
case ARG_DATA_IN:
case ARG_DATA_OUT:
ap->strvalue = (Nlm_Char*) Nlm_MemFree( ap->strvalue );
break;
default:
ASSERT ( FALSE );
return FALSE;
}
}
return TRUE;
}
#ifdef OS_UNIX_DARWIN
#include <sys/sysctl.h>
#endif
NLM_EXTERN Nlm_CharPtr Nlm_GetOpSysString (void)
{
#ifdef OS_UNIX_DARWIN
#ifdef PROC_PPC
Nlm_Boolean isRosetta = FALSE;
size_t len;
int mib [2];
Nlm_Char model [32];
#endif
Nlm_Int4 sysVer;
#endif
Nlm_CharPtr str = "unknown";
#if defined(OS_MAC) && !defined(OS_UNIX_DARWIN)
long sysVer;
if ( Gestalt (gestaltSystemVersion, &sysVer) == noErr) {
/* system version in low order word is hexadecimal */
if (sysVer >= 4096) {
str = "MAC Carbon on OS X";
} else if (sysVer >= 2304) {
str = "MAC Carbon on OS 9";
} else {
str = "MAC Carbon on OS 8";
}
}
#endif
#ifdef OS_UNIX
/* initial nonspecific UNIX string */
str = "UNIX";
#ifdef OS_UNIX_DARWIN
#ifdef PROC_PPC
mib [0] = CTL_HW;
mib [1] = HW_MODEL;
len = sizeof (model);
if (sysctl (mib, 2, &model, &len, NULL, 0) == 0) {
isRosetta = (Nlm_Boolean) (len == 9 && strcmp (model, "PowerMac") == 0);
}
if (isRosetta) {
str = "MAC Rosetta on OS X";
if ( Gestalt (gestaltSystemVersion, &sysVer) == noErr) {
if (sysVer >= 4192) {
str = "MAC Rosetta on OS 10.6";
} else if (sysVer >= 4176) {
str = "MAC Rosetta on OS 10.5";
} else if (sysVer >= 4160) {
str = "MAC Rosetta on OS 10.4";
} else if (sysVer >= 4144) {
str = "MAC Rosetta on OS 10.3";
} else if (sysVer >= 4128) {
str = "MAC Rosetta on OS 10.2";
} else if (sysVer >= 4112) {
str = "MAC Rosetta on OS 10.1";
} else {
str = "MAC Rosetta on OS X";
}
}
} else {
str = "MAC PPC on OS X";
if ( Gestalt (gestaltSystemVersion, &sysVer) == noErr) {
if (sysVer >= 4192) {
str = "MAC PPC on OS 10.6";
} else if (sysVer >= 4176) {
str = "MAC PPC on OS 10.5";
} else if (sysVer >= 4160) {
str = "MAC PPC on OS 10.4";
} else if (sysVer >= 4144) {
str = "MAC PPC on OS 10.3";
} else if (sysVer >= 4128) {
str = "MAC PPC on OS 10.2";
} else if (sysVer >= 4112) {
str = "MAC PPC on OS 10.1";
} else {
str = "MAC PPC on OS X";
}
}
}
#else
#ifdef PROC_I80X86
str = "MAC 386 on OS X";
if ( Gestalt (gestaltSystemVersion, &sysVer) == noErr) {
if (sysVer >= 4192) {
str = "MAC 386 on OS 10.6";
} else if (sysVer >= 4176) {
str = "MAC 386 on OS 10.5";
} else if (sysVer >= 4160) {
str = "MAC 386 on OS 10.4";
} else if (sysVer >= 4144) {
str = "MAC 386 on OS 10.3";
} else if (sysVer >= 4128) {
str = "MAC 386 on OS 10.2";
} else if (sysVer >= 4112) {
str = "MAC 386 on OS 10.1";
} else {
str = "MAC 386 on OS X";
}
}
#else
str = "MAC UNIX on OS X";
#endif
#endif
#endif
#ifdef OS_UNIX_SYSV
str = "SYSV UNIX";
#endif
#ifdef OS_UNIX_SOL
str = "SOLARIS UNIX";
#ifdef PROC_I80X86
str = "SOLARIS INTEL UNIX";
#endif
#endif
#ifdef OS_UNIX_SUN
str = "SUN UNIX";
#endif
#ifdef OS_UNIX_IRIX
str = "SGI UNIX";
#endif
#ifdef OS_UNIX_LINUX
str = "LINUX UNIX";
#endif
#endif
#ifdef OS_MSWIN
DWORD version, lowbyte;
str = "MS WINDOWS";
version = GetVersion ();
lowbyte = (version & 0x0000FF);
if ((version & 0x80000000) == 0) {
if (lowbyte == 6) {
str = "MS WINDOWS VISTA";
} else if (lowbyte == 5) {
str = "MS WINDOWS 2000/XP";
} else if (lowbyte == 4) {
str = "MS WINDOWS NT 4.0";
} else if (lowbyte == 3) {
str = "MS WINDOWS NT 3.51";
}
} else {
if (lowbyte == 4) {
str = "MS WINDOWS 95/98/Me";
} else if (lowbyte == 3) {
str = "MS WINDOWS 3.1";
}
}
#endif
return Nlm_StringSave (str);
}
|