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
|
/*-
******************************************************************************
******************************************************************************
**
** MODULE
**
** $RCSfile: utils.c,v $
** $Revision: 3.71 $
** $Date: 1996/08/18 20:37:06 $
**
** DESCRIPTION
**
** A 32-bit implementation of BibTeX v0.99c for MS-DOS, OS/2 2.x,
** Unix and VMS. This C language implementation is based on the
** original WEB source but it has been enhanced to support 8-bit input
** characters and a very large processing capacity.
**
** For documentation describing how to use and build this program,
** see the 00README.TXT file that accompanies this distribution.
**
** MODULE CONTENTS
**
** This module contains the new utility functions that will be used in
** the program. The functions are declared in alphabetical order.
** Functions defined in this module are:
**
** allocate_arrays
** checkdbg
** checklong
** close_file
** debug_msg
** find_file
** open_ip_file
** open_op_file
** mymalloc
** parse_cmd_line
** report_bibtex_capacity
** report_search_paths
** set_array_sizes
** usage
**
** 8-bit support functions:
**
** c8read_csf
** c8initialise
** c8read_lowercase
** c8read_lowupcase
** c8read_uppercase
** c8read_order
** c8report_8bit_handling
**
** AUTHORS
**
** Original WEB translation to C, conversion to "big" (32-bit) capacity,
** addition of run-time selectable capacity and 8-bit support extensions
** by:
**
** Niel Kempson
** Snowy Owl Systems Limited, Cheltenham, England
** E-mail: kempson@snowyowl.co.uk
**
** 8-bit support extensions also by:
**
** Alejandro Aguilar-Sierra
** Centro de Ciencias de la Atm\'osfera,
** Universidad Nacional Aut\'onoma de M\'exico, M\'exico
** E-mail: asierra@servidor.unam.mx
**
** COPYRIGHT
**
** This implementation copyright (c) 1991-1995 by Niel Kempson
** and copyright (c) 1995 by Alejandro Aguilar-Sierra.
**
** This program is free software; you can redistribute it and/or
** modify it under the terms of the GNU General Public License as
** published by the Free Software Foundation; either version 1, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**
** In other words, you are welcome to use, share and improve this
** program. You are forbidden to forbid anyone else to use, share
** and improve what you give them. Help stamp out software-hoarding!
**
** ACKNOWLEDGEMENT
**
** The original BibTeX was written by Oren Patashnik using Donald
** Knuth's WEB system. This format produces a PASCAL program for
** execution and a TeX documented version of the source code. This
** program started as a (manual) translation of the WEB source into C.
**
** CHANGE LOG
**
** $Log: utils.c,v $
** Revision 3.71 1996/08/18 20:37:06 kempson
** Official release 3.71 (see HISTORY file for details).
**
** Revision 3.70 1996/04/08 10:08:40 kempson
** Final documentation & cosmetic changes for official release 3.70.
**
** Revision 3.6 1995/10/21 22:20:42 kempson
** Fixed numerous bugs, improved error reporting and added the --wolfgang
** option.
**
** Revision 3.5 1995/09/24 20:44:37 kempson
** Many changes for final beta test version.
**
** Revision 3.4 1995/04/09 22:15:43 kempson
** Placed under RCS control
**
******************************************************************************
******************************************************************************
*/
#include <stdarg.h>
#ifdef WIN32
#include <getopt.h>
#else
#include "getopt.h"
#include <unistd.h>
#endif
#ifdef KPATHSEA
#include <kpathsea/config.h>
#include <kpathsea/c-fopen.h>
#include <kpathsea/tex-file.h>
#include <kpathsea/lib.h>
#endif
#include "sysdep.h"
#include "bibtex.h"
#include "datatype.h"
#include "gblprocs.h"
#include "gblvars.h"
#include "utils.h"
#include "version.h"
/*
** Useful macros to keep the code nicely formatted.
*/
#define FSE(_a) fprintf (stderr, _a);
#define FSO(_a) fprintf (TERM_OUT, _a);
#define LOG_CAPACITY(_a) \
FPRINTF (log_file, " %-15s = %7ld\n", #_a, (long) _a)
#define ISEMPTYSTR(_a) ((_a == NULL) || (*_a == '\0'))
#define NULLCHECK(_a) (ISEMPTYSTR(_a) ? "<undefined>" : _a)
/*-
** Options supported by the program and parsed by getopt(). Each option
** can be specified by a "traditional" single character argument
** preceeded by a dash (e.g. "-7") or a more descriptive parameter
** preceeded by two dashes (e.g. "--ascii"). Each option is also defined
** as either not taking a value, optinally taking a value or requiring a
** value.
*/
#define VALUE_NONE 0
#define VALUE_REQD 1
#define VALUE_OPT 2
static struct option long_options[] = {
{"8bit", VALUE_NONE, 0, '8'},
{"csfile", VALUE_REQD, 0, 'c'},
{"debug", VALUE_REQD, 0, 'd'},
{"help", VALUE_NONE, 0, '?'},
{"statistics", VALUE_NONE, 0, 's'},
{"trace", VALUE_NONE, 0, 't'},
{"traditional", VALUE_NONE, 0, '7'},
{"version", VALUE_NONE, 0, 'v'},
{"big", VALUE_NONE, 0, 'B'},
{"huge", VALUE_NONE, 0, 'H'},
{"wolfgang", VALUE_NONE, 0, 'W'},
{"min_crossrefs", VALUE_REQD, 0, 'M'},
{"mcites", VALUE_REQD, 0, '\x0A'},
{"mentints", VALUE_REQD, 0, '\x0B'},
{"mentstrs", VALUE_REQD, 0, '\x0C'},
{"mfields", VALUE_REQD, 0, '\x0D'},
{"mpool", VALUE_REQD, 0, '\x0E'},
{"mstrings", VALUE_REQD, 0, '\x0F'},
{"mwizfuns", VALUE_REQD, 0, '\x10'},
{0, 0, 0, 0}
};
static char *getopt_str = "78c:d:?stvBHM:W";
/*
** Forward declaration of private functions and variables used in this
** module for 8-bit support.
*/
#ifdef SUPPORT_8BIT
static int c8read_csf (void);
static void c8read_lowupcase (void);
static void c8read_lowercase (void);
static void c8read_order (void);
static void c8read_uppercase (void);
static void c8report_8bit_handling (void);
static FILE *c8_cs_file;
static int c8_line;
static int sort_weight;
#endif /* SUPPORT_8BIT */
/*-
**============================================================================
** allocate_arrays()
**
** Allocate memory dynamically for the large arrays whose size is fixed,
** regardless of the amount memory of memory available. If these arrays are
** declared statically, the linker will complain about an overflowing text
** segment.
**
** Allocate memory dynamically for the large arrays whose size is set
** dynamically, depending on the amount memory of memory available.
**
** StrNumber_T cite_info[Max_Cites + 1];
** StrNumber_T cite_list[Max_Cites + 1];
** Boolean_T entry_exists[Max_Cites + 1];
** Integer_T entry_ints[Max_Ent_Ints + 1];
** ASCIICode_T entry_strs[Max_Ent_Strs + 1][ENT_STR_SIZE + 1];
** StrNumber_T field_info[Max_Fields + 1];
** FnClass_T fn_type[Hash_Size + 1];
** ASCIICode_T global_strs[MAX_GLOB_STRS + 1];
** StrIlk_T hash_ilk[Hash_Size + 1];
** HashPointer_T hash_next[Hash_Size + 1];
** StrNumber_T hash_text[Hash_Size + 1];
** Integer_T ilk_info[Hash_Size + 1];
** ASCIICode_T str_pool[Pool_Size + 1];
** PoolPointer_T str_start[Max_Strings + 1];
** HashPtr2_T type_list[Max_Cites + 1];
** HashPtr2_T wiz_functions[Wiz_Fn_Space + 1];
**============================================================================
*/
void allocate_arrays (void)
{
unsigned long bytes_required;
ASCIICode_T *dummy_ptr;
int row;
debug_msg (DBG_MEM, "Starting to allocate memory for arrays ... ");
/*
** StrNumber_T cite_info[Max_Cites + 1];
*/
bytes_required = (Max_Cites + 1) * (unsigned long) sizeof (StrNumber_T);
cite_info = (StrNumber_T *) mymalloc (bytes_required, "cite_info");
/*
** StrNumber_T cite_list[Max_Cites + 1];
*/
bytes_required = (Max_Cites + 1) * (unsigned long) sizeof (StrNumber_T);
cite_list = (StrNumber_T *) mymalloc (bytes_required, "cite_list");
/*
** Boolean_T entry_exists[Max_Cites + 1];
*/
bytes_required = (Max_Cites + 1) * (unsigned long) sizeof (Boolean_T);
entry_exists = (Boolean_T *) mymalloc (bytes_required, "entry_exists");
/*
** Boolean_T entry_ints[Max_Ent_Ints + 1];
*/
bytes_required = (Max_Ent_Ints + 1) * (unsigned long) sizeof (Integer_T);
entry_ints = (Integer_T *) mymalloc (bytes_required, "entry_ints");
/*
** ASCIICode_T entry_strs[Max_Ent_Strs + 1][ENT_STR_SIZE + 1];
*/
bytes_required = (unsigned long) (Max_Ent_Strs + 1)
* (unsigned long) (ENT_STR_SIZE + 1)
* (unsigned long) sizeof (ASCIICode_T);
entry_strs = (ASCIICode_T *) mymalloc (bytes_required, "entry_strs");
/*
** StrNumber_T field_info[Max_Fields + 1];
*/
bytes_required = (Max_Fields + 1) * (unsigned long) sizeof (StrNumber_T);
field_info = (StrNumber_T *) mymalloc (bytes_required, "field_info");
/*
** FnClass_T fn_type[Hash_Size + 1];
*/
bytes_required = (Hash_Size + 1) * (unsigned long) sizeof (FnClass_T);
fn_type = (FnClass_T *) mymalloc (bytes_required, "fn_type");
/*
** ASCIICode_T global_strs[MAX_GLOB_STRS][GLOB_STR_SIZE + 1];
*/
bytes_required = (unsigned long) (MAX_GLOB_STRS)
* (GLOB_STR_SIZE + 1)
* (unsigned long) sizeof (ASCIICode_T);
dummy_ptr = (ASCIICode_T *) NULL;
dummy_ptr = (ASCIICode_T *) mymalloc (bytes_required, "global_strs");
for (row = 0; row < (MAX_GLOB_STRS + 1); row++) {
global_strs[row] = dummy_ptr + (row * (GLOB_STR_SIZE + 1));
}
/*
** StrIlk_T hash_ilk[Hash_Size + 1];
*/
bytes_required = (Hash_Size + 1) * (unsigned long) sizeof (StrIlk_T);
hash_ilk = (StrIlk_T *) mymalloc (bytes_required, "hash_ilk");
/*
** HashPointer_T hash_next[Hash_Size + 1];
*/
bytes_required = (Hash_Size + 1) * (unsigned long) sizeof (HashPointer_T);
hash_next = (HashPointer_T *) mymalloc (bytes_required, "hash_next");
/*
** StrNumber_T hash_text[Hash_Size + 1];
*/
bytes_required = (Hash_Size + 1) * (unsigned long) sizeof (StrNumber_T);
hash_text = (StrNumber_T *) mymalloc (bytes_required, "hash_text");
/*
** Integer_T ilk_info[Hash_Size + 1];
*/
bytes_required = (Hash_Size + 1) * (unsigned long) sizeof (Integer_T);
ilk_info = (Integer_T *) mymalloc (bytes_required, "ilk_info");
/*
** ASCIICode_T str_pool[Pool_Size + 1];
*/
bytes_required = (Pool_Size + 1) * (unsigned long) sizeof (ASCIICode_T);
str_pool = (ASCIICode_T *) mymalloc (bytes_required, "str_pool");
/*
** PoolPointer_T str_start[Max_Strings + 1];
*/
bytes_required = (Max_Strings + 1) * (unsigned long) sizeof (PoolPointer_T);
str_start = (PoolPointer_T *) mymalloc (bytes_required, "str_start");
/*
** HashPtr2_T type_list[Max_Cites + 1];
*/
bytes_required = (Max_Cites + 1) * (unsigned long) sizeof (HashPtr2_T);
type_list = (HashPtr2_T *) mymalloc (bytes_required, "type_list");
/*
** HashPtr2_T wiz_functions[Wiz_Fn_Space + 1];
*/
bytes_required = (Wiz_Fn_Space + 1) * (unsigned long) sizeof (HashPtr2_T);
wiz_functions = (HashPtr2_T *) mymalloc (bytes_required, "wiz_functions");
} /* allocate_arrays () */
/*-
**============================================================================
** checkdbg()
**
** Examine a string representing different debug options, usually provided
** as a value to a command line option, and return the value as a long
** integer. Return 0 (no debugging) if a valid option was not parsed.
**============================================================================
*/
int checkdbg (char *str)
{
int dbgval = 0;
if ((str == NULL) || (*str == '\0'))
return (0);
if (strstr (str, "all") != NULL)
dbgval |= DBG_ALL;
if (strstr (str, "csf") != NULL)
dbgval |= DBG_CSF;
if (strstr (str, "io") != NULL)
dbgval |= DBG_IO;
if (strstr (str, "mem") != NULL)
dbgval |= DBG_MEM;
if (strstr (str, "misc") != NULL)
dbgval |= DBG_MISC;
if (strstr (str, "search") != NULL)
dbgval |= DBG_SRCH;
return (dbgval);
} /* checkdbg() */
/*-
**============================================================================
** checklong()
**
** Examine a string representing an integer, usually provided as a value to
** a command line option, and return the value as a long integer.
** Return -1 if a valid integer was not parsed.
**============================================================================
*/
long checklong (char *str)
{
long value;
char *endptr;
int len;
len = strlen (str);
value = strtol (str, &endptr, 10);
if (str == endptr)
return (-1);
if ((endptr - str) < len)
return (-1);
return (value);
} /* checklong() */
/*-
**============================================================================
** close_file()
**
** Close a file - as long as it's open.
**============================================================================
*/
void close_file (const AlphaFile_T file_pointer)
{
if (file_pointer != NULL)
fclose (file_pointer);
} /* close_file() */
/*-
**============================================================================
** debug_msg()
**
** Write a debugging message to the stderr stream, but only if the
** appropriate debugging option has been selected.
**============================================================================
*/
void debug_msg (const int status, char *printf_fmt, ...)
{
va_list printf_args;
char *prefix;
switch (status) {
case DBG_CSF:
if ((Flag_debug & DBG_CSF) == 0) return;
prefix = "D-CSF";
break;
case DBG_IO:
if ((Flag_debug & DBG_IO) == 0) return;
prefix = "D-I/O";
break;
case DBG_MEM:
if ((Flag_debug & DBG_MEM) == 0) return;
prefix = "D-MEM";
break;
case DBG_MISC:
if ((Flag_debug & DBG_MISC) == 0) return;
prefix = "D-MSC";
break;
case DBG_SRCH:
if ((Flag_debug & DBG_SRCH) == 0) return;
prefix = "D-SCH";
break;
default:
return;
}
if (printf_fmt != NULL) {
fprintf (stderr, "%s: ", prefix);
va_start (printf_args, printf_fmt);
vfprintf (stderr, printf_fmt, printf_args);
va_end (printf_args);
fprintf (stderr, "\n");
fflush (stderr);
}
} /* debug_msg () */
#ifndef KPATHSEA
/*-
**============================================================================
** find_file()
**
** Search along a path for a file. The search path is specified by the
** value of an environment variable which can contain multiple directories,
** separated by an appropriate delimiter. The best known example is the
** PATH environment variable found on DOS, OS/2 and Unix.
**
** If the environment variable is not specified, or it has not been set,
** a 'fallback' path will be used. The current working directory will be
** searched first, then directories along the search path define dby the
** environment variable or fallback path.
**
** If the file is found along the search path, a value of 0 is returned and
** the full file specification is stored in parameter full_file_spec. If
** the file was not found, -1 is returned.
**============================================================================
*/
int find_file (const char *envvar_name, const char *fallback_path,
const char *filename, char *full_file_spec)
{
char c;
int len = 0;
char *search_path;
debug_msg (DBG_SRCH, "find_file: searching for file name `%s'",
filename);
debug_msg (DBG_SRCH,
"find_file: environment variable for search path = `%s'",
(envvar_name == NULL) ? "NULL" : envvar_name);
debug_msg (DBG_SRCH, "find_file: fallback path = `%s'",
(fallback_path == NULL) ? "NULL" : fallback_path);
if ((envvar_name == NULL) || (*envvar_name == '\0')) {
search_path = NULL;
debug_msg (DBG_SRCH,
"find_file: no environment variable specified");
} else {
search_path = getenv (envvar_name);
debug_msg (DBG_SRCH, "find_file: %s = `%s'", envvar_name,
(search_path == NULL) ? "NULL" : search_path);
}
/*
** If we have a NULL search path because an environment variable name was
** not specified or specified but not defined, we use the fallback
** search path.
*/
if (search_path == NULL) {
debug_msg (DBG_SRCH, "find_file: using fallback search path `%s'",
(fallback_path == NULL) ? "NULL" : fallback_path);
search_path = (char *) fallback_path;
}
/*
** Work along the search path looking for the wanted file. Stop when
** the first match is found.
*/
while (1) {
full_file_spec[len] = '\0';
/*
** If the path is not empty, and it doesn't end in '/' or '\',
** append a trailing '/'.
*/
if (len != 0) {
c = full_file_spec[len - 1];
if ((c != '/') && (c != '\\'))
strcat (full_file_spec, "/");
}
/*
** Append the filename to the path and then test whether the
** file exists. If not, return -1 and an empty string.
*/
strcat (full_file_spec, filename);
debug_msg (DBG_SRCH, "find_file: trying `%s'", full_file_spec);
if (access (full_file_spec, 0) == 0)
break;
if ((search_path == NULL) || (*search_path == '\0')) {
full_file_spec[0] = '\0';
return (-1);
}
len = 0;
for (;;) {
if ((*search_path != PATH_DELIM) && (*search_path != '\0')) {
if (*search_path == '\\')
full_file_spec[len] = '/';
else
full_file_spec[len] = *search_path;
++len;
++search_path;
} else
break;
} /* end for (;;) */
if (*search_path != '\0')
++search_path;
} /* end while (1) */
debug_msg (DBG_SRCH, "find_file: returning `%s'", full_file_spec);
return (0);
} /* find_file() */
#endif /* ! KPATHSEA */
/*-
**============================================================================
** mymalloc()
**
** Allocate memory for a specified array and check whether the allocation
** was successful. If not, issue an error message and cause the program
** to stop with a fatal exit status.
**============================================================================
*/
void *mymalloc (const unsigned long bytes_required, const char *array_name)
{
void *ptr;
ptr = malloc (bytes_required);
if (ptr == NULL) {
printf ("\nFatal error: couldn't allocate %lu bytes for array `%s'",
bytes_required, array_name);
mark_fatal ();
debug_msg (DBG_MISC, "calling longjmp (Exit_Program_Flag) ... ");
longjmp (Exit_Program_Flag, 1);
} else {
debug_msg (DBG_MEM, "allocated %7lu bytes for array `%s'",
bytes_required, array_name);
}
return (ptr);
} /* mymalloc () */
/*-
**============================================================================
** open_ip_file()
**
** Open a file for input after locating it using one of the five predefined
** search strategies defined by the parameter "search_path". This parameter
** can take 5 values:
**
** AUX_FILE - used for locating .aux files. Search for the file along the
** path defined by the environment variable AUX_INPUT_ENVVAR or
** if it is not defined, use the fallback path defined by
** AUX_INPUT_PATH.
**
** BIB_FILE - used for locating .bib files. Search for the file along the
** path defined by the environment variable BIB_INPUT_ENVVAR or
** if it is not defined, use the fallback path defined by
** BIB_INPUT_PATH.
**
** BST_FILE - used for locating .bst files. Search for the file along the
** path defined by the environment variable BST_INPUT_ENVVAR or
** if it is not defined, use the fallback path defined by
** BST_INPUT_PATH.
**
** CSF_FILE - used for locating .csf files. Search for the file along the
** path defined by the environment variable CSF_INPUT_ENVVAR or
** if it is not defined, use the fallback path defined by
** CSF_INPUT_PATH.
**
** NO_SEARCH_PATH - only look for the file in the current directory.
**
** Searching for the file is delegated to the function find_file(), and
** only if it was successful, does this function attempt to open the file.
**============================================================================
*/
FILE *open_ip_file (Integer_T search_path)
{
char filename[FILE_NAME_SIZE + 1];
#ifdef KPATHSEA
string full_filespec;
#else
char full_filespec[FILE_NAME_SIZE + 1];
#endif
FILE *fptr;
int status;
(void) strncpy (filename, name_of_file, (size_t) name_length);
filename[name_length] = '\0';
switch (search_path) {
case AUX_FILE_SEARCH_PATH:
#ifdef KPATHSEA
status = ((full_filespec = kpse_find_file(filename, kpse_tex_format, false)) == NULL);
#else
status = find_file (AUX_INPUT_ENVVAR, AUX_INPUT_PATH,
filename, full_filespec);
#endif
break;
case BIB_FILE_SEARCH_PATH:
#ifdef KPATHSEA
status = ((full_filespec = kpse_find_file(filename, kpse_bib_format, false)) == NULL);
#else
status = find_file (BIB_INPUT_ENVVAR, BIB_INPUT_PATH,
filename, full_filespec);
#endif
break;
case BST_FILE_SEARCH_PATH:
#ifdef KPATHSEA
status = ((full_filespec = kpse_find_file(filename, kpse_bst_format, false)) == NULL);
#else
status = find_file (BST_INPUT_ENVVAR, BST_INPUT_PATH,
filename, full_filespec);
#endif
break;
case CSF_FILE_SEARCH_PATH:
#ifdef KPATHSEA
status = ((full_filespec = kpse_find_file(filename, kpse_bst_format, false)) == NULL);
#else
status = find_file (CSF_INPUT_ENVVAR, CSF_INPUT_PATH,
filename, full_filespec);
#endif
break;
case NO_SEARCH_PATH:
default:
#ifdef KPATHSEA
status = ((full_filespec = kpse_find_file(filename, kpse_program_text_format, false)) == NULL);
#else
status = find_file (NULL, NULL, filename, full_filespec);
#endif
break;
} /* end switch (search_path) */
/*
** find_file() will return zero if the file was found somewhere
** along the search path. If it does, try to open the file.
*/
if (status == 0) {
debug_msg (DBG_IO, "open_ip_file: trying to open `%s' ... ",
full_filespec);
#ifdef KPATHSEA
fptr = fopen (full_filespec, FOPEN_R_MODE);
free (full_filespec);
#else
# if defined(MSDOS) || defined(OS2)
fptr = fopen (full_filespec, "rt");
# endif
# if defined(UNIX) || defined(VMS)
fptr = fopen (full_filespec, "r");
#endif
#endif /* ! KPATHSEA */
}
/*
** Otherwise, return a NULL pointer.
*/
else {
debug_msg (DBG_IO, "open_ip_file: unable to open `%s' ... ",
full_filespec);
fptr = NULL;
}
return (fptr);
} /* open_ip_file() */
/*-
**============================================================================
** open_op_file()
**
** Open a file for output in the current working directory. If the operating
** system makes a distinction between text and non-text files, make sure
** that the file is opened in "text" mode.
**============================================================================
*/
FILE *open_op_file (void)
{
char tmp_file_name[FILE_NAME_SIZE + 1];
FILE *fptr;
(void) strncpy (tmp_file_name, name_of_file, (size_t) name_length);
tmp_file_name[name_length] = '\0';
debug_msg (DBG_IO, "open_op_file: trying to open `%s' ... ",
tmp_file_name);
/*
** Make sure that we open the output file as a "text" file. This
** varies according to the operating system.
*/
#if defined(KPATHSEA)
fptr = fopen(tmp_file_name, FOPEN_W_MODE);
#else
# if defined(MSDOS) || defined(OS2)
fptr = fopen (tmp_file_name, "wt");
# endif
# ifdef UNIX
fptr = fopen (tmp_file_name, "w");
# endif
# ifdef VMS
fptr = fopen (tmp_file_name, "w", "rfm=var", "rat=cr");
# endif
#endif /* ! KPATHSEA */
if (fptr == NULL) {
printf ("open_op_file: error opening `%s'\n", tmp_file_name);
}
return (fptr);
} /* open_op_file() */
/*-
**============================================================================
** parse_cmd_line()
**
** Parse the command line used to launch BibTeX and set options accordingly.
** Most of the work is done by the GNU getopt() function to support these
** long and short options:
**
** -? --help display this help text
** -7 --traditional operate in the traditional 7-bit mode
** -8 --8bit force 8-bit mode, even if no CS file
** -c --csfile FILE read FILE as the BibTeX character set
** and sort definition file
** -d --debug TYPE report debugging information. TYPE is one or
** more of all, csf, io, mem, misc, search.
** -s --statistics report internal statistics
** -t --trace report execution tracing
** -v --version report BibTeX version\n
** -B --big set large BibTeX capacity
** -H --huge set huge BibTeX capacity
** -W --wolfgang set really huge BibTeX capacity for Wolfgang
** -M --min_crossrefs ## set ## as the minimum number of cross refs
** required for automatic inclusion of the cross
** referenced entry in the citation list
** (default = 2)
** --mcites ## allow ## \\cites in the .aux files
** --mentints ## allow ## integer entries in the .bib databases
** --mentstrs ## allow ## string entries in the .bib databases
** --mfields ## allow ## fields in the .bib databases
** --mpool ## set the string pool to ## bytes
** --mstrings ## allow ## unique strings
** --mwizfuns ## allow ## wizard functions
**============================================================================
*/
void parse_cmd_line (int argc, char **argv)
{
int c, l;
int no_files;
Flag_7bit = FALSE;
Flag_8bit = FALSE;
Flag_big = FALSE;
Flag_debug = FALSE;
Flag_huge = FALSE;
Flag_wolfgang = FALSE;
Flag_stats = FALSE;
Flag_trace = FALSE;
Str_auxfile = NULL;
Str_csfile = NULL;
while (1) {
int option_index = 0;
c = getopt_long (argc, argv, getopt_str, long_options, &option_index);
if (c == EOF)
break;
switch (c) {
case '?': /**************** -?, --help ***************/
usage (NULL);
break;
case '7': /**************** -7, --traditional ********/
Flag_7bit = TRUE;
break;
case '8': /**************** -8, --8bit ***************/
Flag_8bit = TRUE;
break;
case 'B': /**************** -B, --big ****************/
Flag_big = TRUE;
break;
case 'c': /**************** -C, --csfile *************/
Str_csfile = optarg;
break;
case 'd': /**************** -d, --debug **************/
if ((optarg == NULL) || (*optarg == '\0'))
Flag_debug = DBG_ALL;
else
Flag_debug = checkdbg (optarg);
break;
case 'H': /**************** -H, --huge ***************/
Flag_huge = TRUE;
break;
case 'M': /**************** -M, --min_crossrefs ******/
M_min_crossrefs = checklong (optarg);
if (M_min_crossrefs < 0) {
mark_fatal ();
usage ("invalid minimum cross references `%s'\n", optarg);
}
break;
case 's': /**************** -s, --statistics *********/
Flag_stats = TRUE;
break;
case 't': /**************** -t, --trace **************/
Flag_trace = TRUE;
break;
case 'v': /**************** -v, --version ************/
FPRINTF (TERM_OUT, "%s\n", BANNER);
FPRINTF (TERM_OUT, "Implementation: %s\n", IMPLEMENTATION);
FPRINTF (TERM_OUT, "Release version: %s\n", VERSION);
debug_msg (DBG_MISC,
"calling longjmp (Exit_Program_Flag) ... ");
longjmp (Exit_Program_Flag, 1);
break;
case 'W': /**************** -W, --wolfgang ***********/
Flag_wolfgang = TRUE;
break;
case '\x0A': /**************** --mcites *****************/
M_cites = checklong (optarg);
if (M_cites < 0) {
mark_fatal ();
usage ("invalid max number of cites `%s'\n", optarg);
}
break;
case '\x0B': /**************** --mentints ***************/
M_entints = checklong (optarg);
if (M_entints < 0) {
mark_fatal ();
usage ("invalid max number of integer entries `%s'\n",
optarg);
}
break;
case '\x0C': /**************** --mentstrs ***************/
M_entstrs = checklong (optarg);
if (M_entstrs < 0) {
mark_fatal ();
usage ("invalid max number of string entries `%s'\n",
optarg);
}
break;
case '\x0D': /**************** --mfields ****************/
M_fields = checklong (optarg);
if (M_fields < 0) {
mark_fatal ();
usage ("invalid max number of fields `%s'\n", optarg);
}
break;
case '\x0E': /**************** --mpool *****************/
M_pool = checklong (optarg);
if (M_pool < 0) {
mark_fatal ();
usage ("invalid pool size `%s'\n", optarg);
}
break;
case '\x0F': /**************** --mstrings ***************/
M_strings = checklong (optarg);
if (M_strings < 0) {
mark_fatal ();
usage ("invalid max number of strings `%s'\n", optarg);
}
break;
case '\x10': /**************** --mwizfuns ***************/
M_wiz_fn_space = checklong (optarg);
if (M_wiz_fn_space < 0) {
mark_fatal ();
usage ("invalid max wizard functions `%s'\n", optarg);
}
break;
default: /**************** Unknown argument ********/
mark_fatal ();
usage ("unknown option");
} /* end switch (c) */
} /* end while (1) */
/*
** Check that a single .aux file was specified.
*/
no_files = argc - optind;
if (no_files == 1)
Str_auxfile = argv[optind];
else if (no_files < 1) {
mark_fatal ();
usage ("no aux file specified");
} else {
mark_fatal ();
usage ("only one aux file may be specified");
}
/*
** If the auxilliary file was specified with the ".aux" part already
** appended, we strip it off here. (It's a bit of a bodge, but it
** minimises the changes necessary to the original BibTeX code.)
*/
l = strlen (Str_auxfile);
if (l > 4) {
if ((Str_auxfile[l-4] == '.')
&& ((Str_auxfile[l-3] == 'a') || (Str_auxfile[l-3] == 'A'))
&& ((Str_auxfile[l-2] == 'u') || (Str_auxfile[l-2] == 'U'))
&& ((Str_auxfile[l-1] == 'x') || (Str_auxfile[l-1] == 'X')))
Str_auxfile[l-4] = '\0';
}
/*
** Check for contradictory options
*/
if (Flag_7bit && Flag_8bit) {
mark_fatal ();
usage ("can't specify --traditional and --8bit");
}
if ((Flag_big && Flag_huge) || (Flag_big && Flag_wolfgang)
|| (Flag_huge && Flag_wolfgang)) {
mark_fatal ();
usage ("can only specify one of --big, --huge and --wolfgang");
}
if ((Str_csfile != NULL) && (Flag_7bit)) {
mark_fatal ();
usage ("can't specify --csfile and --traditional");
}
if ((Str_csfile != NULL) && (Flag_8bit)) {
mark_fatal ();
usage ("can't specify --csfile and --8bit");
}
/*
** Check for options which have not been #defined into the code
*/
#ifndef DEBUG
if (Flag_debug)
FSO ("BibTeX: debugging support was not compiled into this version\n");
#endif /* DEBUG */
#ifndef STAT
if (Flag_stats)
FSO ("BibTeX: statistics support was not compiled into this version\n");
#endif /* STAT */
#ifndef TRACE
if (Flag_trace)
FSO ("BibTeX: tracing support was not compiled into this version\n");
#endif /* TRACE */
} /* parse_cmd_line() */
/*-
**============================================================================
** report_bibtex_capacity()
**
** If the log file has been opened, indicate BibTeX's capacity by reporting
** the size/values of some key values and arrays. Anything in mixed case
** has been set at run-time.
**============================================================================
*/
void report_bibtex_capacity (void)
{
if (log_file != NULL) {
FPRINTF (log_file, "BibTeX's capacity set as follows:\n\n");
LOG_CAPACITY (AUX_STACK_SIZE);
LOG_CAPACITY (BUF_SIZE);
LOG_CAPACITY (ENT_STR_SIZE);
LOG_CAPACITY (FILE_NAME_SIZE);
LOG_CAPACITY (GLOB_STR_SIZE);
LOG_CAPACITY (Hash_Prime);
LOG_CAPACITY (Hash_Size);
LOG_CAPACITY (LIT_STK_SIZE);
LOG_CAPACITY (MAX_BIB_FILES);
LOG_CAPACITY (Max_Cites);
LOG_CAPACITY (Max_Ent_Ints);
LOG_CAPACITY (Max_Ent_Strs);
LOG_CAPACITY (Max_Fields);
LOG_CAPACITY (MAX_GLOB_STRS);
LOG_CAPACITY (MAX_PRINT_LINE);
LOG_CAPACITY (Max_Strings);
LOG_CAPACITY (Min_Crossrefs);
LOG_CAPACITY (MIN_PRINT_LINE);
LOG_CAPACITY (Pool_Size);
LOG_CAPACITY (SINGLE_FN_SPACE);
LOG_CAPACITY (Wiz_Fn_Space);
FPRINTF (log_file, "\n");
}
} /* report_bibtex_capacity() */
/*-
**============================================================================
** report_search_paths()
**
** Report the environment variables and fallback search paths used by
** BibTeX for locating input files.
**============================================================================
*/
void report_search_paths (void)
{
#ifndef KPATHSEA
/*
** Define a couple of useful macros to simplify reporting of the desired
** information.
*/
#define REPORT_SEARCH_PATH(_a,_b,_c) \
debug_msg (DBG_SRCH, "Search strategy for %s files:", _a); \
debug_msg (DBG_SRCH, " search path environment variable: %s", NULLCHECK (_b)); \
if (! ISEMPTYSTR (_b)) { \
char *ptr; \
ptr = getenv (_b); \
debug_msg (DBG_SRCH, " %s value: %s", _b, NULLCHECK (ptr)); \
} \
debug_msg (DBG_SRCH, " fallback search path: %s", NULLCHECK (_c));
#define REPORT_SEARCH_FILE(_a,_b,_c) \
debug_msg (DBG_SRCH, "Default %s file:", _a); \
debug_msg (DBG_SRCH, " file name environment variable: %s", NULLCHECK (_b)); \
if (! ISEMPTYSTR (_b)) { \
char *ptr; \
ptr = getenv (_b); \
debug_msg (DBG_SRCH, " %s value: %s", _b, NULLCHECK (ptr)); \
} \
debug_msg (DBG_SRCH, " fallback file name: %s", NULLCHECK (_c));
/*
** Now report the information.
*/
REPORT_SEARCH_PATH (".aux", AUX_INPUT_ENVVAR, AUX_INPUT_PATH);
REPORT_SEARCH_PATH (".bib", BIB_INPUT_ENVVAR, BIB_INPUT_PATH);
REPORT_SEARCH_PATH (".bst", BST_INPUT_ENVVAR, BST_INPUT_PATH);
REPORT_SEARCH_PATH (".csf", CSF_INPUT_ENVVAR, CSF_INPUT_PATH);
REPORT_SEARCH_FILE (".csf", CSF_FILE_ENVVAR, CSF_FILE_NAME);
#endif /* ! KPATHSEA */
} /* report_search_paths() */
/*-
**============================================================================
** set_array_sizes()
**
** Allocate memory dynamically for the large arrays whose size is set
** dynamically, depending on the amount memory of memory available.
**
** On virtual memory operating systems, there is not normally a problem
** allocating memory; the array sizes can be predetermined and memory
** allocated at run-time.
**
** Parameter Cmd Standard --big --huge --wolfgang
** ------------------------------------------------------------------
** Hash_Prime N 4,253 8,501 16,319 30,011
** Hash_Size N 5,000 10,000 19,000 35,000
** Max_Cites Y 750 2,000 5,000 7,500
** Max_Ent_Ints Y 3,000 4,000 5,000 7,500
** Max_Ent_Strs Y 3,000 6,000 10,000 10,000
** Max_Fields Y 17,250 30,000 85,000 125,000
** Max_Strings Y 4,000 10,000 19,000 30,000
** Pool_Size Y 65,530 130,000 500,000 750,000
** Wiz_Fn_Space Y 3,000 6,000 10,000 10,000
** ------------------------------------------------------------------
**
**============================================================================
*/
void set_array_sizes (void)
{
debug_msg (DBG_MEM, "Setting BibTeX's capacity ... ");
Hash_Prime = 4253;
Hash_Size = 5000;
Max_Cites = 750;
Max_Ent_Ints = 3000;
Max_Ent_Strs = 3000;
Max_Fields = 17250;
Max_Strings = 4000;
Min_Crossrefs = 2;
Pool_Size = 65530;
Wiz_Fn_Space = 3000;
if (Flag_big) {
Hash_Prime = 8501;
Hash_Size = 10000;
Max_Cites = 2000;
Max_Ent_Ints = 3000;
Max_Ent_Strs = 5000;
Max_Fields = 30000;
Max_Strings = 10000;
Pool_Size = 130000;
Wiz_Fn_Space = 6000;
}
if (Flag_huge) {
Hash_Prime = 16319;
Hash_Size = 19000;
Max_Cites = 5000;
Max_Ent_Ints = 5000;
Max_Ent_Strs = 10000;
Max_Fields = 85000L;
Max_Strings = 19000;
Pool_Size = 500000L;
Wiz_Fn_Space = 10000;
}
if (Flag_wolfgang) {
Hash_Prime = 30011;
Hash_Size = 35000;
Max_Cites = 7500;
Max_Ent_Ints = 7500;
Max_Ent_Strs = 10000;
Max_Fields = 125000L;
Max_Strings = 30000;
Pool_Size = 750000L;
Wiz_Fn_Space = 10000;
}
if (M_cites > 0)
Max_Cites = M_cites;
if (M_entints > 0)
Max_Ent_Ints = M_entints;
if (M_entstrs > 0)
Max_Ent_Strs = M_entstrs;
if (M_fields > 0)
Max_Fields = M_fields;
if (M_min_crossrefs > 0)
Min_Crossrefs = M_min_crossrefs;
if (M_pool > 0)
Pool_Size = M_pool;
if (M_strings > 0)
Max_Strings = M_strings ;
if (M_wiz_fn_space > 0)
Wiz_Fn_Space = M_wiz_fn_space;
debug_msg (DBG_MEM, "Hash_Prime = %d, Hash_Size = %d",
Hash_Prime, Hash_Size);
debug_msg (DBG_MEM, "Max_Cites = %d, Max_Ent_Ints = %d",
Max_Cites, Max_Ent_Ints);
debug_msg (DBG_MEM, "Max_Ent_Strs = %d, Max_Fields = %d",
Max_Ent_Strs, Max_Fields);
debug_msg (DBG_MEM, "Max_Strings = %d, Pool_Size = %d",
Max_Strings, Pool_Size);
debug_msg (DBG_MEM, "Min_Crossrefs = %d, Wiz_Fn_Space = %d",
Min_Crossrefs, Wiz_Fn_Space);
/*-
** Check that the key values are sensible. These checks are stolen
** from initialize(), but the error messages are more informative.
*/
debug_msg(DBG_MISC, "Sanity checking capacity values ... ");
if (Hash_Prime < 128)
usage ("Hash_Prime (%d) must be >= 128", Hash_Prime);
if (Hash_Prime > Hash_Size)
usage ("Hash_Prime (%d) must be <= Hash_Size (%d)",
Hash_Prime, Hash_Size);
/*
** The original WEB version of BibTeX imposed a maximum value of
** 16321 on Hash_Prime. A WEB constant was defined:
**
** MAX_HASH_VALUE = (Hash_Prime + Hash_Prime - 2 + 127)
**
** but, because WEB constants are limited to 32767, Hash_Prime was
** consequently limited to a maximum of (32767 + 2 - 127) / 2 = 16321.
**
** We're using C #defines, so that limit doesn't apply. The
** following original sanity check is therefore commented out.
**
** if (Hash_Prime >= (16384 - 64))
** usage ("Hash_Prime (%d) must be < %d", Hash_Prime, (16384-64));
*/
if (Max_Strings > Hash_Size)
usage ("Max_Strings (%d) must be <= Hash_Size (%d)",
Max_Strings, Hash_Size);
if (Max_Cites > Max_Strings)
usage ("Max_Cites (%d) must be <= Max_Strings (%d)",
Max_Cites, Max_Strings);
} /* set_array_sizes() */
/*-
**============================================================================
** usage()
**
** Display a helpful message reporting the command line options
** supported by this version of BibTeX. If a message string is
** provided, this is displayed first.
**============================================================================
*/
void usage (char *printf_fmt, ...)
{
va_list printf_args;
if (printf_fmt != NULL) {
fprintf (stderr, "BibTeX: ");
va_start (printf_args, printf_fmt);
vfprintf (stderr, printf_fmt, printf_args);
va_end (printf_args);
fprintf (stderr, "\n");
}
FSO ("\nUsage: bibtex [options] aux-file\n\n");
FSO (" Valid options are:\n\n");
FSO (" -? --help display this help text\n");
FSO (" -7 --traditional operate in the original 7-bit mode\n");
FSO (" -8 --8bit force 8-bit mode, no CS file used\n");
FSO (" -c --csfile FILE read FILE as the BibTeX character set\n");
FSO (" and sort definition file\n");
#ifdef DEBUG
FSO (" -d --debug TYPE report debugging information. TYPE is one\n");
FSO (" or more of all, csf, io, mem, misc, search.\n");
#endif /* DEBUG */
#ifdef STAT
FSO (" -s --statistics report internal statistics\n");
#endif /* STAT */
#ifdef TRACE
FSO (" -t --trace report execution tracing\n");
#endif /* TRACE */
FSO (" -v --version report BibTeX version\n\n");
FSO (" -B --big set large BibTeX capacity\n");
FSO (" -H --huge set huge BibTeX capacity\n");
FSO (" -W --wolfgang set really huge BibTeX capacity for Wolfgang\n");
FSO (" -M --min_crossrefs ## set min_crossrefs to ##\n");
FSO (" --mcites ## allow ## \\cites in the .aux files\n");
FSO (" --mentints ## allow ## integer entries in the .bib databases\n");
FSO (" --mentstrs ## allow ## string entries in the .bib databases\n");
FSO (" --mfields ## allow ## fields in the .bib databases\n");
FSO (" --mpool ## set the string pool to ## bytes\n");
FSO (" --mstrings ## allow ## unique strings\n");
FSO (" --mwizfuns ## allow ## wizard functions\n");
debug_msg (DBG_MISC, "calling longjmp (Exit_Program_Flag) ... ");
longjmp (Exit_Program_Flag, 1);
} /* usage() */
/*-
******************************************************************************
******************************************************************************
**
** Functions specifically for 8-bit support.
**
** c8read_csf
** c8initialise
** c8read_lowercase
** c8read_lowupcase
** c8read_uppercase
** c8read_order
** c8report_8bit_handling
**
******************************************************************************
******************************************************************************
*/
#ifdef SUPPORT_8BIT
/*
** Useful definitions.
*/
#define c8is_alpha(c) (isalpha(c) || c > 127)
#define c8is_alphanumeric(c) (isalnum(c) || c > 127)
#define SORT_LAST 4095
/*-
**============================================================================
** c8initialise ()
**
** Initialise BibTeX's handling of 8-bit character sets. The steps are:
**
** o initialise default behaviour for sorting and upper/lowercase
** o if appropriate, read and parse the CS file
** o use CS data to set behaviour for sorting and upper/lowercase
** o update xchr/xord arrays for 8-bit characters. These arrays
** are initialised for ASCII character sets in the original
** initialize() function. Further initialisation for 8-bit
** characters is performed here to minimise "contamination" of
** the original BibTeX code.
**
** We have to deal with three modes of operation:
**
** --traditional - the original BibTeX behaviour
** --8bit - every character with a code > 127 is treated as
** a letter
** default - a CS file is read and parsed to define sorting order
** and how 8-bit characters should be handled
**============================================================================
*/
void c8initialise (void)
{
int ascii_case_diff = 'a' - 'A';
int c;
int status;
/*
** Traditional mode (--traditional, -7) results in identical behaviour
** to the original BibTeX.
**
** o sort order by character code value ('A'=65 ... 'z'=122)
** o upper/lowercase relationships for A..Za..z established
** o no CS file read
** o only characters < 128 allowed
** o no need to update xchr/xord arrays
*/
if (Flag_7bit) {
for (c = 0; c <= 255; c++) {
c8order[c] = c;
c8lowcase[c] = (UChar_T) c;
c8upcase[c] = (UChar_T) c;
}
for (c = 'A'; c <= 'Z'; c++) {
c8lowcase[c] = (UChar_T) (c + ascii_case_diff);
c8upcase[c + ascii_case_diff] = (UChar_T) c;
}
for (c = 128; c <= 255; c++)
lex_class[c] = ILLEGAL;
}
/*
** Raw 8-bit (--8bit, -8).
**
** o sort order by character code value ('A'=65 ... 'z'=122)
** o upper/lowercase relationships for A..Za..z established
** o no CS file read
** o need to update xchr/xord arrays
** o characters > 127 allowed and all treated as type ALPHA
*/
else if (Flag_8bit) {
for (c = 0; c <= 255; c++) {
c8order[c] = c;
c8lowcase[c] = (UChar_T) c;
c8upcase[c] = (UChar_T) c;
}
for (c = 'A'; c <= 'Z'; c++) {
c8lowcase[c] = (UChar_T) (c + ascii_case_diff);
c8upcase[c + ascii_case_diff] = (UChar_T) c;
}
for (c = 128; c <= 255; c++)
xchr[c] = (char) c;
for (c = 128; c <= 255; c++)
xord[xchr[c]] = (ASCIICode_T) c;
for (c = 128; c <= 255; c++)
lex_class[c] = ALPHA;
}
/*
** Default initialisation using CS file.
**
** o no sort order defined - all set to weight SORT_LAST
** o upper/lowercase relationships for A..Za..z established
** o only characters < 128 allowed initially
** o a CS file is read and parsed by BibTeX to modify these defaults
** o need to update xchr/xord/lex_class arrays after reading CS file
*/
else {
for (c = 0; c <= 255; c++) {
c8order[c] = SORT_LAST;
c8lowcase[c] = (UChar_T) c;
c8upcase[c] = (UChar_T) c;
}
c8order[32] = 0;
for (c = 'A'; c <= 'Z'; c++) {
c8lowcase[c] = (UChar_T) (c + ascii_case_diff);
c8upcase[c + ascii_case_diff] = (UChar_T) c;
}
for (c = 128; c <= 255; c++)
xchr[c] = (char) c;
for (c = 128; c <= 255; c++)
xord[xchr[c]] = (ASCIICode_T) c;
for (c = 128; c <= 255; c++)
lex_class[c] = ILLEGAL;
/*
** Read the CS file. If it was read and parsed OK, update the
** definition of 8-bit characters. If an 8-bit character is defined
** in any section of the CS file, it is treated as type ALPHA.
*/
if ((status = c8read_csf ()) == TRUE) {
for (c = 128; c <= 255; c++)
if ((c8order[c] != SORT_LAST)
|| (c8lowcase[c] != c)
|| (c8upcase[c] != c))
lex_class[c] = ALPHA;
}
} /* end if (Flag_7bit) */
/*
** If the CSF debugging option has been selected, report results.
*/
if ((Flag_debug & DBG_CSF))
c8report_8bit_handling ();
} /* c8initialise () */
/*-
**============================================================================
** c8read_csf()
**
** Read the Case and Sorting definitions (CS) File. Steps taken are:
**
** o determine which CS file should be opened
** o open the CS file
** o look for valid CS file sections (\lowupcase, \lowercase,
** \uppercase, \order) and delegate parsing of each section to the
** appropriate function
** o close the CS file
**
** Returns TRUE if a CS file was successfully read and parsed, FALSE
** otherwise.
**============================================================================
*/
int c8read_csf (void)
{
int c, i;
int in_comment;
char sx[BUF_SIZE + 1];
#ifndef KPATHSEA
char *value;
#endif
/*
** Construct the name of the CS file to be used:
**
** 1. If the --csfile option was specified, use its value.
** or
** 2. If CSF_FILE_ENVVAR is defined to a non-empty value, it
** contains the name of an environment variable. The value of
** this environment variable will be used as the default CS file.
*/
if (Str_csfile == NULL) {
#ifdef KPATHSEA
/* FIXME: this default value should be stored in texmf.in */
Str_csfile = xstrdup("88591lat.csf");
#else
if (strlen (CSF_FILE_ENVVAR) != 0) {
debug_msg (DBG_CSF, "c8read_csf: --csfile not set, checking '%s'",
CSF_FILE_ENVVAR);
value = getenv (CSF_FILE_ENVVAR);
if (value == NULL)
debug_msg (DBG_CSF, "c8read_csf: %s = `NULL'", CSF_FILE_ENVVAR);
else
debug_msg (DBG_CSF, "c8read_csf: %s = `%s'",
CSF_FILE_ENVVAR, value);
/*
** If the environment variable has a non-empty value, use it
** as the file specifaction for the default CS file.
*/
if ((value != NULL) && (*value != '\0'))
Str_csfile = strdup (value);
else {
PRINT_LN ("Warning: cannot open CS file: --csfile not specfied");
PRINT_LN2 ("and environment variable %s has no value.",
CSF_FILE_ENVVAR);
return FALSE;
}
} else {
PRINT_LN ("Warning: cannot open CS file: --csfile not specified");
PRINT_LN ("and default environment variable not specified.");
return FALSE;
} /* if (strlen (CSF_FILE_ENVVAR) != 0) */
#endif /* KPATHSEA */
} /* if (Str_csfile == NULL) */
/*
** Make sure that we have ended up with a CS file name. If not,
** return FALSE;
*/
if ((Str_csfile == NULL) || (*Str_csfile == '\0')) {
PRINT_LN ("Warning: cannot open CS file: empty --csfile value specified.");
return FALSE;
}
/*
** If the CS file name doesn't contain a '.', append ".csf".
*/
strcpy (name_of_file, Str_csfile);
if (strchr (name_of_file, '.') == NULL)
strcat (name_of_file, ".csf");
name_length = strlen (name_of_file);
debug_msg (DBG_CSF, "c8read_csf: trying to open CS file `%s' ...",
name_of_file);
/*
** Attempt to open the CS file, using the CS file search path if
** necessary. If the open fails, return FALSE.
*/
if (! a_open_in (&c8_cs_file, CSF_FILE_SEARCH_PATH)) {
PRINT_LN2 ("Error: cannot open CS file: %s", name_of_file);
return FALSE;
}
PRINT_LN2 ("The 8-bit codepage and sorting file: %s", name_of_file);
/*
** The main loop for reading the CS file.
*/
c8_line = 1;
while (! feof (c8_cs_file)) {
/*
** Read the CS file until a '\\' character is found, denoting the
** start of a major section. Comments begin with a '%' and
** anything else on the same line is ignored.
*/
in_comment = FALSE;
do {
c = getc (c8_cs_file);
if (c == '\n') {
++c8_line;
in_comment = FALSE;
}
if (c == '%')
in_comment = TRUE;
if ((c == '\\') && (in_comment == FALSE))
break;
} while (!feof (c8_cs_file));
/*
** If we break out of the do loop on EOF, there were no more
** sections in the CS file. Exit the main reading loop.
*/
if (feof (c8_cs_file))
break;
/*
** After '\', a section name must be found. This name is a word
** composed only of lower case ASCII letters.
*/
i = 0;
do {
c = getc (c8_cs_file);
if ((c >= 'a') && (c <= 'z'))
sx[i++] = c;
else
break;
} while (!feof (c8_cs_file) && (i < BUF_SIZE));
sx[i] = '\0';
/*
** A '{' should follow the section name, but it could be preceeded
** by whitespace, comments or newlines.
*/
if (c != '{')
do {
if (c == '\n') {
++c8_line;
in_comment = FALSE;
}
if (c == '%')
in_comment = TRUE;
if ((c == '{') && (in_comment == FALSE))
break;
c = getc (c8_cs_file);
} while (!feof (c8_cs_file));
/*
** The major sections supported in the CS file are: \order{},
** \uppercase{}, \lowercase{} and \lowupcase{}. Anything else will
** be ignored. Known sections are processed until they terminate
** and then the loop starts again.
*/
if (strcmp (sx, "order") == 0)
c8read_order ();
else if (strcmp (sx, "uppercase") == 0)
c8read_uppercase ();
else if (strcmp (sx, "lowercase") == 0)
c8read_lowercase ();
else if (strcmp (sx, "lowupcase") == 0)
c8read_lowupcase ();
else {
PRINT_LN2 ("Unknown section on line in CS file %s", Str_csfile);
PRINT_LN3 ("%04d: \\%s", c8_line, buffer);
}
} /* while (! feof (c8_cs_file)) */
/*
** Finished reading, close the CS file then return TRUE.
*/
close_file (c8_cs_file);
return TRUE;
} /* c8read_csf () */
/*-
**============================================================================
** c8read_lowercase()
**
** Read and parse the \lowercase section of the CS file. This section is
** used to define the upper -> lower case relationship of pairs of specified
** characters. It should normally only be used if the relationship
** isn't symmetrical - use \lowupcase if it is.
**
** The syntax of the \lowercase section is:
**
** \lowercase{
** <UC-val-1> <LC-val-1> % Comment begins with a percent sign
** <UC-val-2> <LC-val-2> <UC-val-3> <LC-val-3>
** ...
** <UC-val-N> <LC-val-N>
** }
**
** Notes:
**
** o characters can be entered normally, or in TeX notation for
** character codes, i.e. ^^XX, where XX is the hexadecimal value.
**
** o reading of the \lowercase section ends when the first '}' character
** is reached, so '}' can't be included in a case relationship pair.
** You can't use ^^7d either.
**
** o '%' is used to introduce a trailing comment, so '%' can't be included
** in the \lowercase section. You can't use ^^25 either.
**
** o you cannot redefine the lower case equivalent of an ASCII character
** (code < 128). In other words, all "left hand" characters in the
** relationship pairs must have codes > 127.
**============================================================================
*/
static void c8read_lowercase (void)
{
int c;
int uppercase_val;
debug_msg (DBG_CSF, "reading the \\lowercase section ... ");
uppercase_val = -1;
/*
** Keep reading characters until the end of the section is encountered
** at a '}' or EOF is reached.
*/
c = getc (c8_cs_file);
while ((c != '}') && !feof (c8_cs_file)) {
/*
** Characters may be specified using the TeX syntax for the
** 8-bit code, i.e. ^^XX, where XX is the hexadecimal value.
** We should really check the result of this fscanf(). Read the
** character code and then start the while loop again.
*/
if (c == '^')
fscanf (c8_cs_file, "^%x", &c);
/*
** If we have reached the end of a line, simply increment the
** line count.
*/
if (c == '\n') {
c8_line++;
}
/*
** If we encounter a '%', it signifies the start of a comment.
** Ignore characters until the end of line is reached.
*/
else if (c == '%') {
do {
c = getc(c8_cs_file);
} while ((c != '\n') && (! feof( c8_cs_file)));
continue;
}
/*
** The normal case is for alpha characters to be included in the
** case relationship. Alpha characters are assumed to be ASCII
** alpha (A..Za..z) plus any character with a code > 127.
*/
else if (c8is_alpha (c)) {
/*
** The case relationship consists of a pair of alpha characters
** separated by whitespace. In the \lowercase section, the pair
** is in the order <uppercase-char> <lowercase-char>. We
** must remember which character we are looking for - this is
** achieved by setting uppercase_val to -1 when we are
** looking for the first character of a pair.
**
** If uppercase_val is < 0, we treat the current character as
** the upper case member of the pair and set uppercase_val
** accordingly.
*/
if (uppercase_val < 0)
uppercase_val = c;
else {
/*
** We are not allowed to redefine the lower case
** equivalent of an ASCII character.
*/
if (uppercase_val < 127) {
PRINT_LN2 ("Error: attempt to redefine lower case of "
"an ASCII character [0x%02x]", uppercase_val);
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
/*
** All OK, so set the appropriate element of the c8lowcase
** array and reset the value of uppercase_val to signify
** that we are looking for the next pair.
*/
else {
c8lowcase[uppercase_val] = c;
uppercase_val = -1;
}
}
} /* end if */
/*
** Get the next character from the file and start the loop again.
*/
c = getc (c8_cs_file);
} /* end while */
/*
** The only normal reason for breaking out of the while loop is that
** we encountered '}' at the end of the \lowercase section. Two
** conditions should be true:
**
** (uppercase_val = -1) - there is an unmatched character
** (c == '}') - the terminating '}' has been read
*/
if (uppercase_val != -1){
PRINT_LN ("Error: unmatched character pair in \\lowercase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
if (c != '}') {
PRINT_LN ("Error: unexpected end of file in \\lowercase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
debug_msg (DBG_CSF, "finished reading the \\lowercase section.");
} /* c8read_lowercase () */
/*-
**============================================================================
** c8read_lowupcase()
**
** Read and parse the \lowupcase section of the CS file. This section is
** used to define the lower -> upper and upper -> lower case relationship
** of pairs of specified characters. It is only used if the relationship
** is symmetrical - use \lowercase or \uppercase if it isn't.
**
** The syntax of the \lowupcase section is:
**
** \uppercase{
** <LC-val-1> <UC-val-1> % Comment begins with a percent sign
** <LC-val-2> <UC-val-2> <LC-val-3> <UC-val-3>
** ...
** <LC-val-N> <UC-val-N>
** }
**
** Notes:
**
** o characters can be entered normally, or in TeX notation for
** character codes, i.e. ^^XX, where XX is the hexadecimal value.
**
** o reading of the \lowupcase section ends when the first '}' character
** is reached, so '}' can't be included in a case relationship pair.
** You can't use ^^7d either.
**
** o '%' is used to introduce a trailing comment, so '%' can't be included
** in the \lowupcase section. You can't use ^^25 either.
**
** o you cannot redefine the lower or upper case equivalent of an ASCII
** character (code < 128). In other words, all characters in the
** relationship pairs must have codes > 127.
**============================================================================
*/
static void c8read_lowupcase (void)
{
int c;
int lowercase_val;
debug_msg (DBG_CSF, "reading the \\lowupcase section ... ");
lowercase_val = -1;
/*
** Keep reading characters until the end of the section is encountered
** at a '}' or EOF is reached.
*/
c = getc (c8_cs_file);
while ((c != '}') && !feof (c8_cs_file)) {
/*
** Characters may be specified using the TeX syntax for the
** 8-bit code, i.e. ^^XX, where XX is the hexadecimal value.
** We should really check the result of this fscanf().
*/
if (c == '^')
fscanf (c8_cs_file, "^%x", &c);
/*
** If we have reached the end of a line, simply increment the
** line count.
*/
if (c == '\n') {
c8_line++;
}
/*
** If we encounter a '%', it signifies the start of a comment,
** unless it was translated from a ^^xx sequence.
** Ignore characters until the end of line is reached.
*/
else if (c == '%') {
do {
c = getc(c8_cs_file);
} while ((c != '\n') && (! feof( c8_cs_file)));
continue;
}
/*
** The normal case is for alpha characters to be included in the
** case relationship. Alpha characters are assumed to be ASCII
** alpha (A..Za..z) plus any character with a code > 127.
*/
else if (c8is_alpha (c)) {
/*
** The case relationship consists of a pair of alpha characters
** separated by whitespace. In the \lowupcase section, the pair
** is in the order <lowercase-char> <uppercase-char>. We
** must remember which character we are looking for - this is
** achieved by setting lowercase_val to -1 when we are
** looking for the first character of a pair.
**
** If lowercase_val is < 0, we treat the current character as
** the lower case member of the pair and set lowercase_val
** accordingly.
*/
if (lowercase_val < 0)
lowercase_val = c;
else {
/*
** We are not allowed to redefine the lower or upper case
** equivalent of an ASCII character.
*/
if (lowercase_val < 127) {
PRINT_LN2 ("Error: attempt to redefine upper case of "
"an ASCII character [0x%02x]", lowercase_val);
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
else if (c < 127) {
PRINT_LN2 ("Error: attempt to redefine lower case of "
"an ASCII character [0x%02x]", c);
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
/*
** All OK, so set the appropriate element of the c8lowcase
** and c8upcase arrays, then reset the value of lowercase_val
** to signify that we are looking for the next pair.
*/
else {
c8lowcase[c] = lowercase_val;
c8upcase[lowercase_val] = c;
lowercase_val = -1;
}
}
} /* end if */
/*
** Get the next character from the file and start the loop again.
*/
c = getc (c8_cs_file);
} /* end while */
/*
** The only normal reason for breaking out of the while loop is that
** we encountered '}' at the end of the \lowupcase section. Two
** conditions should be true:
**
** (lowercase_val = -1) - there is an unmatched character
** (c == '}') - the terminating '}' has been read
*/
if (lowercase_val != -1){
PRINT_LN ("Error: unmatched character pair in \\lowupcase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
if (c != '}') {
PRINT_LN ("Error: unexpected end of file in \\lowupcase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
debug_msg (DBG_CSF, "finished reading the \\lowupcase section.");
} /* c8read_lowupcase () */
/*-
**============================================================================
** c8read_order()
**
** Read and parse the \order section of the CS file. This section is
** used to define the sorting order of characters in the 8-bit character
** set.
**
** The syntax of the \order section is:
**
** \order{
** <char-1> % Comment begins with a percent sign
** <char-2> <char-3>
** <char-4> - <char-5>
** <char-4> _ <char-5>
** ...
** <char-n>
** }
**
** Notes:
**
** o characters can be entered normally, or in TeX notation for
** character codes, i.e. ^^XX, where XX is the hexadecimal value.
**
** o reading of the \order section ends when the first '}' character
** is reached, so '}' can't be included in the \order section. You
** can't use ^^7d either.
**
** o '%' is used to introduce a trailing comment, so '%' can't be included
** in the \order section. You can't use ^^25 either.
**
** o All characters on the same line are given the same sorting weight.
**
** o The construct <char-1> <underscore> <char-2> is used to denote that
** all characters in the range <char-1> to <char-2> should be given the
** same sorting weight. For example, "A _ Z a _ z" would cause all
** ASCII alphabetical characters to have the same sorting weight and
** would be equivalent to placing all 26 characters on the same line.
**
** o The construct <char-1> <hyphen> <char-2> is used to denote that all
** characters in the range <char-1> to <char-2> should be given an
** ascending set of sorting weights, starting with <char-1> and
** ending with <char-2>. For example, "A - Z" would cause all
** upper case ASCII alphabetical characters to be sorted in
** ascending order and would be equivalent to placing 'A' on the
** first line, 'B' on the second, through to 'Z' on the 26th line.
**
** o the characters at the beginning of the order section are given a
** lower sorting weight than characters occuring later. When
** sorting alphabetically, characters with the lowest weight come
** first.
**
** o all characters not in the \order section (including ASCII characters)
** are given the same very high sorting weight to ensure that they
** come last when sorting alphabetically.
**============================================================================
*/
static void c8read_order (void)
{
int c, i;
int c_previous = 0;
int c_previous_previous = 0;
int seen_chars;
debug_msg (DBG_CSF, "reading the \\order section ... ");
sort_weight = 1;
seen_chars = FALSE;
/*
** Keep reading characters until the end of the section is
** encountered at a '}' or EOF is reached.
*/
c = getc (c8_cs_file);
while ((c != '}') && (! feof (c8_cs_file))) {
/*
** If we have reached the end of a line, the next line denotes
** characters with an increased sorting weight. Any other
** characters with a value less than ' ' are ignored.
*/
if (c == '\n') {
if (seen_chars)
sort_weight++;
c8_line++;
seen_chars = FALSE;
}
else if (c < ' ') {
debug_msg (DBG_CSF, "ignoring char 0x%02X on line %d of CS file",
c, c8_line);
}
else if (c > ' ') {
/*
** Characters may be specified using the TeX syntax for the
** 8-bit code, i.e. ^^XX, where XX is the hexadecimal value.
** We should really check the result of this fscanf(). Read the
** character code and then start the while loop again.
*/
if (c == '^')
fscanf (c8_cs_file, "^%x", &c);
/*
** If we encounter a '%', it signifies the start of a comment.
** Ignore characters until the end of line is reached.
*/
if (c == '%') {
do {
c = getc(c8_cs_file);
} while ((c != '\n') && (! feof( c8_cs_file)));
continue;
}
/*
** The normal case is for alpha characters to be included
** in the sorting sequence. Alpha characters are ASCII alpha
** plus any character with a code > 127.
*/
else if (c8is_alphanumeric (c) || c == ' ') {
/*
** If the previous char was '-', we expect this char to
** terminate a "X-Y" sequence. The character before
** the '-' must also be an alpha type. The characters in
** the sequence are assigned an increasing sort weight.
*/
if (c_previous == '-') {
if (c8is_alphanumeric (c_previous_previous)) {
for (i = c_previous_previous; i < c; i++)
c8order[i] = sort_weight++;
seen_chars = TRUE;
} else {
PRINT_LN ("Error: non-alphanumeric character "
"starts X-Y sequence");
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
/*
** If the previous char was '_', we expect this char to
** terminate a "X_Y" sequence. The character before
** the '_' must also be an alpha type. The characters in
** the sequence are assigned the same sort weight.
*/
} else if (c_previous == '_') {
if (c8is_alphanumeric (c_previous_previous)) {
for (i = c_previous_previous; i < c; i++)
c8order[i] = sort_weight;
seen_chars = TRUE;
} else {
PRINT_LN ("Error: non-alphanumeric character "
"starts X_Y sequence");
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
}
c8order[c] = sort_weight;
seen_chars = TRUE;
}
/*
** The only other non-alpha characters allowed are '-' & '_'.
*/
else if ((c != '-') && (c != '_')) {
PRINT_LN ("Error: only '-' or '_' may follow an "
"alpha character");
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
/*
** Keep an up-to-date note of the two previous values of c.
*/
c_previous_previous = c_previous;
c_previous = c;
} /* end if */
/*
** Get the next character and start the loop again.
*/
c = getc (c8_cs_file);
} /* end while */
/*
** If c isn't '}', we ran into EOF.
*/
if (c != '}') {
PRINT_LN ("Error: unexpected end of file in \\order section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
debug_msg (DBG_CSF, "finished reading the \\order section.");
} /* c8read_order () */
/*-
**============================================================================
** c8read_uppercase()
**
** Read and parse the \uppercase section of the CS file. This section is
** used to define the lower -> upper case relationship of pairs of specified
** characters. It should normally only be used if the relationship
** isn't symmetrical - use \lowupcase if it is.
**
** The syntax of the \uppercase section is:
**
** \uppercase{
** <LC-val-1> <UC-val-1> % Comment begins with a percent sign
** <LC-val-2> <UC-val-2> <LC-val-3> <UC-val-3>
** ...
** <LC-val-N> <UC-val-N>
** }
**
** Notes:
**
** o characters can be entered normally, or in TeX notation for
** character codes, i.e. ^^XX, where XX is the hexadecimal value.
**
** o reading of the \uppercase section ends when the first '}' character
** is reached, so '}' can't be included in a case relationship pair.
** You can't use ^^7d either.
**
** o '%' is used to introduce a trailing comment, so '%' can't be included
** in the \uppercase section. You can't use ^^25 either.
**
** o you cannot redefine the upper case equivalent of an ASCII character
** (code < 128). In other words, all "left hand" characters in the
** relationship pairs must have codes > 127.
**============================================================================
*/
static void c8read_uppercase (void)
{
int c;
int lowercase_val;
debug_msg (DBG_CSF, "reading the \\uppercase section ... ");
lowercase_val = -1;
/*
** Keep reading characters until the end of the section is encountered
** at a '}' or EOF is reached.
*/
c = getc (c8_cs_file);
while ((c != '}') && (! feof (c8_cs_file))) {
/*
** Characters may be specified using the TeX syntax for the
** 8-bit code, i.e. ^^XX, where XX is the hexadecimal value.
** We should really check the result of this fscanf().
*/
if (c == '^')
fscanf (c8_cs_file, "^%x", &c);
/*
** If we have reached the end of a line, simply increment the
** line count.
*/
if (c == '\n') {
c8_line++;
}
/*
** If we encounter a '%', it signifies the start of a comment.
** Ignore characters until the end of line is reached.
*/
else if (c == '%') {
do {
c = getc(c8_cs_file);
} while ((c != '\n') && (! feof( c8_cs_file)));
continue;
}
/*
** The normal case is for alpha characters to be included in the
** case relationship. Alpha characters are assumed to be ASCII
** alpha (A..Za..z) plus any character with a code > 127.
*/
else if (c8is_alpha (c)) {
/*
** The case relationship consists of a pair of alpha characters
** separated by whitespace. In the \uppercase section, the pair
** is in the order <lowercase-char> <uppercase-char>. We
** must remember which character we are looking for - this is
** achieved by setting lowercase_val to -1 when we are
** looking for the first character of a pair.
**
** If lowercase_val is < 0, we treat the current character as
** the lower case member of the pair and set lowercase_val
** accordingly.
*/
if (lowercase_val < 0)
lowercase_val = c;
else {
/*
** We are not allowed to redefine the upper case
** equivalent of an ASCII character.
*/
if (lowercase_val < 127) {
PRINT_LN2 ("Error: attempt to redefine upper case of "
"an ASCII character [0x%02x]", lowercase_val);
PRINT_LN3 ("Context: line %04d: of CS file %s",
c8_line, Str_csfile);
}
/*
** All OK, so set the appropriate element of the c8lowcase
** array and reset the value of lowercase_val to signify
** that we are looking for the next pair.
*/
else {
c8upcase[lowercase_val] = c;
lowercase_val = -1;
}
}
} /* end if */
/*
** Get the next character from the file and start the loop again.
*/
c = getc (c8_cs_file);
} /* end while */
/*
** The only normal reason for breaking out of the while loop is that
** we encountered '}' at the end of the \uppercase section. Two
** conditions should be true:
**
** (lowercase_val = -1) - there is an unmatched character
** (c == '}') - the terminating '}' has been read
*/
if (lowercase_val != -1){
PRINT_LN ("Error: unmatched character pair in \\uppercase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
if (c != '}') {
PRINT_LN ("Error: unexpected end of file in \\uppercase section");
PRINT_LN3 ("Context: line %04d: of CS file %s", c8_line, Str_csfile);
}
debug_msg (DBG_CSF, "finished reading the \\uppercase section.");
} /* c8read_uppercase () */
/*
**============================================================================
** c8report_8bit_handling()
**
** Report the internal status of BibTeX's 8-bit character set handling. The
** information reported is:
**
** o 8-bit characters defined as type ALPHA
** o character codes with upper case equivalents
** o character codes with lower case equivalents
** o the character codes in sorting weight order
**============================================================================
*/
void c8report_8bit_handling (void)
{
int c;
int column;
int weight;
/*
** Exit immediately if the CSF debugging option hasn't been selected.
*/
if ((Flag_debug & DBG_CSF) == 0)
return;
/*
** Report the 8-bit characters defined as type ALPHA, 16 to a row.
*/
fprintf (stderr, "\nD-CSF: 8-bit ALPHA characters\n");
fprintf (stderr, "D-CSF: ----------------------\n");
for (c = 128; c <= 255; c += 16) {
fprintf (stderr, "D-CSF: %02x: ", c);
for (column = 0; column < 16; column++) {
if (lex_class[c + column] == ALPHA)
fprintf (stderr, "%c ", c + column);
else
fputs (". ", stderr);
}
fputc ('\n', stderr);
}
/*
** Report the lower / upper case relationships, three pairs to a row.
*/
fprintf (stderr, "\nD-CSF: Characters with upper case equivalents\n");
fprintf (stderr, "D-CSF: --------------------------------------");
column = 0;
for (c = 1; c <= 255; c++)
if (c8upcase[c] != c) {
if ((column % 3) == 0)
fprintf (stderr, "\nD-CSF: %c [%02x] <<< %c [%02x]",
c, (int) c, c8upcase[c], (int) c8upcase[c]);
else
fprintf (stderr, " %c [%02x] <<< %c [%02x]",
c, (int) c, c8upcase[c], (int) c8upcase[c]);
++column;
}
/*
** Report the upper / lower case relationships, three pairs to a row.
*/
fprintf (stderr, "\n\nD-CSF: Characters with lower case equivalents\n");
fprintf (stderr, "D-CSF: --------------------------------------");
column = 0;
for (c = 1; c <= 255; c++)
if (c8lowcase[c] != c) {
if ((column % 3) == 0)
fprintf (stderr, "\nD-CSF: %c [%02x] >>> %c [%02x]",
c, (int) c, c8lowcase[c], (int) c8lowcase[c]);
else
fprintf (stderr, " %c [%02x] >>> %c [%02x]",
c, (int) c, c8lowcase[c], (int) c8lowcase[c]);
++column;
}
/*
** Report character codes in sorting weight order. If BibTeX is
** operating in --traditional or --8bit mode, sorting order is simply
** character code order. In that case, just give an abbreviated
** summary.
*/
fprintf (stderr, "\n\nD-CSF: Characters in sorting order\n");
fprintf (stderr, "D-CSF: ---------------------------\n");
if (Flag_7bit || Flag_8bit) {
fprintf (stderr, "D-CSF: 00: [00]\n");
fprintf (stderr, "D-CSF: 01: [01]\n");
fprintf (stderr, "D-CSF: .. ....\n");
fprintf (stderr, "D-CSF: 41: A [41]\n");
fprintf (stderr, "D-CSF: .. ....\n");
fprintf (stderr, "D-CSF: 5a: Z [5a]\n");
fprintf (stderr, "D-CSF: .. ....\n");
fprintf (stderr, "D-CSF: 61: a [61]\n");
fprintf (stderr, "D-CSF: .. ....\n");
fprintf (stderr, "D-CSF: 7a: z [7a]\n");
fprintf (stderr, "D-CSF: .. ....\n");
fprintf (stderr, "D-CSF: fe: [fe]\n");
fprintf (stderr, "D-CSF: ff: [ff]\n\n");
}
/*
** When a CS file has been used, sort_weight will be set to the value of
** the highest sorting weight. Report every character with a given
** sorting weight, for 0 <= weight < sort_weight.
*/
else {
for (weight = 0; weight < sort_weight; weight++) {
fprintf (stderr, "D-CSF: %02x: ", weight);
for (c = 0; c <= 255; c++) {
if (c8order[c] == weight)
fprintf (stderr, "%c [%02x] ", c, c);
}
fputc ('\n', stderr);
}
fprintf (stderr, "D-CSF: (All other characters are sorted "
"equally after any of the above.)\n\n");
}
} /* c8report_8bit_handling() */
#endif /* SUPPORT_8BIT */
|