1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093
|
/* makeinfo -- convert Texinfo source into other formats.
$Id: makeinfo.c,v 1.63 2004/04/09 21:17:17 karl Exp $
Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Original author of makeinfo: Brian Fox (bfox@ai.mit.edu). */
#include "system.h"
#include "getopt.h"
#define COMPILING_MAKEINFO
#include "makeinfo.h"
#include "cmds.h"
#include "files.h"
#include "float.h"
#include "footnote.h"
#include "html.h"
#include "index.h"
#include "insertion.h"
#include "lang.h"
#include "macro.h"
#include "node.h"
#include "sectioning.h"
#include "toc.h"
#include "xml.h"
/* You can change some of the behavior of Makeinfo by changing the
following defines: */
/* Define INDENT_PARAGRAPHS_IN_TABLE if you want the paragraphs which
appear within an @table, @ftable, or @itemize environment to have
standard paragraph indentation. Without this, such paragraphs have
no starting indentation. */
/* #define INDENT_PARAGRAPHS_IN_TABLE */
/* Define PARAGRAPH_START_INDENT to be the amount of indentation that
the first lines of paragraphs receive by default, where no other
value has been specified. Users can change this value on the command
line, with the --paragraph-indent option, or within the texinfo file,
with the @paragraphindent command. */
#define PARAGRAPH_START_INDENT 3
/* Define DEFAULT_PARAGRAPH_SPACING as the number of blank lines that you
wish to appear between paragraphs. A value of 1 creates a single blank
line between paragraphs. Paragraphs are defined by 2 or more consecutive
newlines in the input file (i.e., one or more blank lines). */
#define DEFAULT_PARAGRAPH_SPACING 1
/* Global variables. */
/* The output file name. */
char *output_filename = NULL;
/* Name of the output file that the user elected to pass on the command line.
Such a name overrides any name found with the @setfilename command. */
char *command_output_filename = NULL;
static char *save_command_output_filename = NULL;
#define INITIAL_PARAGRAPH_SPACE 5000
int paragraph_buffer_len = INITIAL_PARAGRAPH_SPACE;
/* The amount of indentation to add at the starts of paragraphs.
0 means don't change existing indentation at paragraph starts.
> 0 is amount to indent new paragraphs by.
< 0 means indent to column zero by removing indentation if necessary.
This is normally zero, but some people prefer paragraph starts to be
somewhat more indented than paragraph bodies. A pretty value for
this is 3. */
int paragraph_start_indent = PARAGRAPH_START_INDENT;
/* Indentation that is pending insertion. We have this for hacking lines
which look blank, but contain whitespace. We want to treat those as
blank lines. */
int pending_indent = 0;
/* The index in our internal command table of the currently
executing command. */
int command_index;
/* A search string which is used to find the first @setfilename. */
char setfilename_search[] =
{ COMMAND_PREFIX,
's', 'e', 't', 'f', 'i', 'l', 'e', 'n', 'a', 'm', 'e', 0 };
/* Values for calling handle_variable_internal (). */
#define SET 1
#define CLEAR 2
#define IFSET 3
#define IFCLEAR 4
/* Flags controlling the operation of the program. */
/* Default is to remove output if there were errors. */
int force = 0;
/* Default is to notify users of bad choices. */
int print_warnings = 1;
/* Number of errors that we tolerate on a given fileset. */
int max_error_level = 100;
/* The actual last inserted character. Note that this may be something
other than NEWLINE even if last_char_was_newline is 1. */
int last_inserted_character = 0;
/* Nonzero means that a newline character has already been
inserted, so close_paragraph () should insert one less. */
int line_already_broken = 0;
/* When nonzero we have finished an insertion (see end_insertion ()) and we
want to ignore false continued paragraph closings. */
int insertion_paragraph_closed = 0;
/* Nonzero means attempt to make all of the lines have fill_column width. */
int do_justification = 0;
/* Nonzero means don't replace whitespace with in HTML mode. */
int in_html_elt = 0;
/* Nonzero means we are inserting a block level HTML element that must not be
enclosed in a <p>, such as <ul>, <ol> and <h?>. */
int in_html_block_level_elt = 0;
/* True when expanding a macro definition. */
static int executing_macro = 0;
/* True when we are inside a <li> block of a menu. */
static int in_menu_item = 0;
typedef struct brace_element
{
struct brace_element *next;
COMMAND_FUNCTION *proc;
char *command;
int pos, line;
int in_fixed_width_font;
} BRACE_ELEMENT;
BRACE_ELEMENT *brace_stack = NULL;
static void convert_from_file (char *name);
static void convert_from_loaded_file (char *name);
static void convert_from_stream (FILE *stream, char *name);
static void do_flush_right_indentation (void);
static void handle_variable (int action);
static void handle_variable_internal (int action, char *name);
static void init_brace_stack (void);
static void init_internals (void);
static void pop_and_call_brace (void);
static void remember_brace (COMMAND_FUNCTION (*proc));
static int end_of_sentence_p (void);
void maybe_update_execution_strings (char **text, unsigned int new_len);
/* Error handling. */
/* Number of errors encountered. */
int errors_printed = 0;
/* Remember that an error has been printed. If more than
max_error_level have been printed, then exit the program. */
static void
remember_error (void)
{
errors_printed++;
if (max_error_level && (errors_printed > max_error_level))
{
fprintf (stderr, _("Too many errors! Gave up.\n"));
flush_file_stack ();
cm_bye ();
xexit (1);
}
}
/* Print the last error gotten from the file system. */
int
fs_error (char *filename)
{
remember_error ();
perror (filename);
return 0;
}
/* Print an error message, and return false. */
void
#if defined (VA_FPRINTF) && __STDC__
error (const char *format, ...)
#else
error (format, va_alist)
const char *format;
va_dcl
#endif
{
#ifdef VA_FPRINTF
va_list ap;
#endif
remember_error ();
VA_START (ap, format);
#ifdef VA_FPRINTF
VA_FPRINTF (stderr, format, ap);
#else
fprintf (stderr, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_FPRINTF */
va_end (ap);
putc ('\n', stderr);
}
/* Just like error (), but print the input file and line number as well. */
void
#if defined (VA_FPRINTF) && __STDC__
file_line_error (char *infile, int lno, const char *format, ...)
#else
file_line_error (infile, lno, format, va_alist)
char *infile;
int lno;
const char *format;
va_dcl
#endif
{
#ifdef VA_FPRINTF
va_list ap;
#endif
remember_error ();
fprintf (stderr, "%s:%d: ", infile, lno);
VA_START (ap, format);
#ifdef VA_FPRINTF
VA_FPRINTF (stderr, format, ap);
#else
fprintf (stderr, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_FPRINTF */
va_end (ap);
fprintf (stderr, ".\n");
}
/* Just like file_line_error (), but take the input file and the line
number from global variables. */
void
#if defined (VA_FPRINTF) && __STDC__
line_error (const char *format, ...)
#else
line_error (format, va_alist)
const char *format;
va_dcl
#endif
{
#ifdef VA_FPRINTF
va_list ap;
#endif
remember_error ();
fprintf (stderr, "%s:%d: ", input_filename, line_number);
VA_START (ap, format);
#ifdef VA_FPRINTF
VA_FPRINTF (stderr, format, ap);
#else
fprintf (stderr, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_FPRINTF */
va_end (ap);
fprintf (stderr, ".\n");
}
void
#if defined (VA_FPRINTF) && __STDC__
warning (const char *format, ...)
#else
warning (format, va_alist)
const char *format;
va_dcl
#endif
{
#ifdef VA_FPRINTF
va_list ap;
#endif
if (print_warnings)
{
fprintf (stderr, _("%s:%d: warning: "), input_filename, line_number);
VA_START (ap, format);
#ifdef VA_FPRINTF
VA_FPRINTF (stderr, format, ap);
#else
fprintf (stderr, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_FPRINTF */
va_end (ap);
fprintf (stderr, ".\n");
}
}
/* The other side of a malformed expression. */
static void
misplaced_brace (void)
{
line_error (_("Misplaced %c"), '}');
}
/* Main. */
/* Display the version info of this invocation of Makeinfo. */
static void
print_version_info (void)
{
printf ("makeinfo (GNU %s) %s\n", PACKAGE, VERSION);
}
/* If EXIT_VALUE is zero, print the full usage message to stdout.
Otherwise, just say to use --help for more info.
Then exit with EXIT_VALUE. */
static void
usage (int exit_value)
{
if (exit_value != 0)
fprintf (stderr, _("Try `%s --help' for more information.\n"), progname);
else
{
printf (_("Usage: %s [OPTION]... TEXINFO-FILE...\n"), progname);
puts ("");
puts (_("\
Translate Texinfo source documentation to various other formats, by default\n\
Info files suitable for reading online with Emacs or standalone GNU Info.\n"));
printf (_("\
General options:\n\
--error-limit=NUM quit after NUM errors (default %d).\n\
--force preserve output even if errors.\n\
--help display this help and exit.\n\
--no-validate suppress node cross-reference validation.\n\
--no-warn suppress warnings (but not errors).\n\
--reference-limit=NUM warn about at most NUM references (default %d).\n\
-v, --verbose explain what is being done.\n\
--version display version information and exit.\n"),
max_error_level, reference_warning_limit);
puts ("");
/* xgettext: no-wrap */
puts (_("\
Output format selection (default is to produce Info):\n\
--docbook output Docbook XML rather than Info.\n\
--html output HTML rather than Info.\n\
--xml output Texinfo XML rather than Info.\n\
--plaintext output plain text rather than Info.\n\
"));
puts (_("\
General output options:\n\
-E, --macro-expand FILE output macro-expanded source to FILE.\n\
ignoring any @setfilename.\n\
--no-headers suppress node separators, Node: lines, and menus\n\
from Info output (thus producing plain text)\n\
or from HTML (thus producing shorter output);\n\
also, write to standard output by default.\n\
--no-split suppress splitting of Info or HTML output,\n\
generate only one output file.\n\
--number-sections output chapter and sectioning numbers.\n\
-o, --output=FILE output to FILE (directory if split HTML),\n\
"));
printf (_("\
Options for Info and plain text:\n\
--enable-encoding output accented and special characters in\n\
Info output based on @documentencoding.\n\
--fill-column=NUM break Info lines at NUM characters (default %d).\n\
--footnote-style=STYLE output footnotes in Info according to STYLE:\n\
`separate' to put them in their own node;\n\
`end' to put them at the end of the node\n\
in which they are defined (default).\n\
--paragraph-indent=VAL indent Info paragraphs by VAL spaces (default %d).\n\
If VAL is `none', do not indent; if VAL is\n\
`asis', preserve existing indentation.\n\
--split-size=NUM split Info files at size NUM (default %d).\n"),
fill_column, paragraph_start_indent,
DEFAULT_SPLIT_SIZE);
puts ("");
puts (_("\
Options for HTML:\n\
--css-include=FILE include FILE in HTML <style> output;\n\
read stdin if FILE is -.\n\
"));
printf (_("\
Options for XML and Docbook:\n\
--output-indent=VAL indent XML elements by VAL spaces (default %d).\n\
If VAL is 0, ignorable whitespace is dropped.\n\
"), xml_indentation_increment);
puts ("");
puts (_("\
Input file options:\n\
--commands-in-node-names allow @ commands in node names.\n\
-D VAR define the variable VAR, as with @set.\n\
-I DIR append DIR to the @include search path.\n\
-P DIR prepend DIR to the @include search path.\n\
-U VAR undefine the variable VAR, as with @clear.\n\
"));
puts (_("\
Conditional processing in input:\n\
--ifdocbook process @ifdocbook and @docbook even if\n\
not generating Docbook.\n\
--ifhtml process @ifhtml and @html even if not generating HTML.\n\
--ifinfo process @ifinfo even if not generating Info.\n\
--ifplaintext process @ifplaintext even if not generating plain text.\n\
--iftex process @iftex and @tex; implies --no-split.\n\
--ifxml process @ifxml and @xml.\n\
--no-ifdocbook do not process @ifdocbook and @docbook text.\n\
--no-ifhtml do not process @ifhtml and @html text.\n\
--no-ifinfo do not process @ifinfo text.\n\
--no-ifplaintext do not process @ifplaintext text.\n\
--no-iftex do not process @iftex and @tex text.\n\
--no-ifxml do not process @ifxml and @xml text.\n\
"));
puts (_("\
The defaults for the @if... conditionals depend on the output format:\n\
if generating HTML, --ifhtml is on and the others are off;\n\
if generating Info, --ifinfo is on and the others are off;\n\
if generating plain text, --ifplaintext is on and the others are off;\n\
if generating XML, --ifxml is on and the others are off.\n\
"));
fputs (_("\
Examples:\n\
makeinfo foo.texi write Info to foo's @setfilename\n\
makeinfo --html foo.texi write HTML to @setfilename\n\
makeinfo --xml foo.texi write Texinfo XML to @setfilename\n\
makeinfo --docbook foo.texi write DocBook XML to @setfilename\n\
makeinfo --no-headers foo.texi write plain text to standard output\n\
\n\
makeinfo --html --no-headers foo.texi write html without node lines, menus\n\
makeinfo --number-sections foo.texi write Info with numbered sections\n\
makeinfo --no-split foo.texi write one Info file however big\n\
"), stdout);
puts (_("\n\
Email bug reports to bug-texinfo@gnu.org,\n\
general questions and discussion to help-texinfo@gnu.org.\n\
Texinfo home page: http://www.gnu.org/software/texinfo/"));
} /* end of full help */
xexit (exit_value);
}
struct option long_options[] =
{
{ "commands-in-node-names", 0, &expensive_validation, 1 },
{ "css-include", 1, 0, 'C' },
{ "docbook", 0, 0, 'd' },
{ "enable-encoding", 0, &enable_encoding, 1 },
{ "error-limit", 1, 0, 'e' },
{ "fill-column", 1, 0, 'f' },
{ "footnote-style", 1, 0, 's' },
{ "force", 0, &force, 1 },
{ "help", 0, 0, 'h' },
{ "html", 0, 0, 'w' },
{ "ifdocbook", 0, &process_docbook, 1 },
{ "ifhtml", 0, &process_html, 1 },
{ "ifinfo", 0, &process_info, 1 },
{ "ifplaintext", 0, &process_plaintext, 1 },
{ "iftex", 0, &process_tex, 1 },
{ "ifxml", 0, &process_xml, 1 },
{ "macro-expand", 1, 0, 'E' },
{ "no-headers", 0, &no_headers, 1 },
{ "no-ifdocbook", 0, &process_docbook, 0 },
{ "no-ifhtml", 0, &process_html, 0 },
{ "no-ifinfo", 0, &process_info, 0 },
{ "no-ifplaintext", 0, &process_plaintext, 0 },
{ "no-iftex", 0, &process_tex, 0 },
{ "no-ifxml", 0, &process_xml, 0 },
{ "no-number-footnotes", 0, &number_footnotes, 0 },
{ "no-number-sections", 0, &number_sections, 0 },
{ "no-pointer-validate", 0, &validating, 0 },
{ "no-split", 0, &splitting, 0 },
{ "no-validate", 0, &validating, 0 },
{ "no-warn", 0, &print_warnings, 0 },
{ "number-footnotes", 0, &number_footnotes, 1 },
{ "number-sections", 0, &number_sections, 1 },
{ "output", 1, 0, 'o' },
{ "output-indent", 1, 0, 'i' },
{ "paragraph-indent", 1, 0, 'p' },
{ "plaintext", 0, 0, 't' },
{ "reference-limit", 1, 0, 'r' },
{ "split-size", 1, 0, 'S'},
{ "verbose", 0, &verbose_mode, 1 },
{ "version", 0, 0, 'V' },
{ "xml", 0, 0, 'x' },
{NULL, 0, NULL, 0}
};
/* For each file mentioned in the command line, process it, turning
Texinfo commands into wonderfully formatted output text. */
int
main (int argc, char **argv)
{
int c, ind;
int reading_from_stdin = 0;
#ifdef HAVE_SETLOCALE
/* Do not use LC_ALL, because LC_NUMERIC screws up the scanf parsing
of the argument to @multicolumn. */
setlocale (LC_TIME, "");
setlocale (LC_MESSAGES, "");
setlocale (LC_CTYPE, "");
setlocale (LC_COLLATE, "");
#endif
#ifdef ENABLE_NLS
/* Set the text message domain. */
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
#endif
/* If TEXINFO_OUTPUT_FORMAT envvar is set, use it to set default output.
Can be overridden with one of the output options. */
if (getenv ("TEXINFO_OUTPUT_FORMAT") != NULL)
{
if (STREQ (getenv ("TEXINFO_OUTPUT_FORMAT"), "docbook"))
{
splitting = 0;
html = 0;
docbook = 1;
xml = 1;
process_docbook = 1;
}
else if (STREQ (getenv ("TEXINFO_OUTPUT_FORMAT"), "html"))
{
html = 1;
docbook = 0;
xml = 0;
process_html = 1;
}
else if (STREQ (getenv ("TEXINFO_OUTPUT_FORMAT"), "info"))
{
html = 0;
docbook = 0;
xml = 0;
}
else if (STREQ (getenv ("TEXINFO_OUTPUT_FORMAT"), "plaintext"))
{
splitting = 0;
no_headers = 1;
html = 0;
docbook = 0;
xml = 0;
process_plaintext = 1;
}
else if (STREQ (getenv ("TEXINFO_OUTPUT_FORMAT"), "xml"))
{
splitting = 0;
html = 0;
docbook = 0;
xml = 1;
process_xml = 1;
}
else
fprintf (stderr,
_("%s: Ignoring unrecognized TEXINFO_OUTPUT_FORMAT value `%s'.\n"),
progname, getenv ("TEXINFO_OUTPUT_FORMAT"));
}
/* Parse argument flags from the input line. */
while ((c = getopt_long (argc, argv, "D:de:E:f:hI:i:o:p:P:r:s:t:U:vV:wx",
long_options, &ind)) != EOF)
{
if (c == 0 && long_options[ind].flag == 0)
c = long_options[ind].val;
switch (c)
{
case 'C': /* --css-include */
css_include = xstrdup (optarg);
break;
case 'D':
case 'U':
/* User specified variable to set or clear. */
handle_variable_internal ((c == 'D') ? SET : CLEAR, optarg);
break;
case 'd': /* --docbook */
splitting = 0;
xml = 1;
docbook = 1;
html = 0;
process_docbook = 1;
break;
case 'e': /* --error-limit */
if (sscanf (optarg, "%d", &max_error_level) != 1)
{
fprintf (stderr,
_("%s: %s arg must be numeric, not `%s'.\n"),
progname, "--error-limit", optarg);
usage (1);
}
break;
case 'E': /* --macro-expand */
if (!macro_expansion_output_stream)
{
macro_expansion_filename = optarg;
macro_expansion_output_stream
= strcmp (optarg, "-") == 0 ? stdout : fopen (optarg, "w");
if (!macro_expansion_output_stream)
error (_("%s: could not open macro expansion output `%s'"),
progname, optarg);
}
else
fprintf (stderr,
_("%s: ignoring second macro expansion output `%s'.\n"),
progname, optarg);
break;
case 'f': /* --fill-column */
if (sscanf (optarg, "%d", &fill_column) != 1)
{
fprintf (stderr,
_("%s: %s arg must be numeric, not `%s'.\n"),
progname, "--fill-column", optarg);
usage (1);
}
break;
case 'h': /* --help */
usage (0);
break;
case 'I':
/* Append user-specified dir to include file path. */
append_to_include_path (optarg);
break;
case 'i':
if (sscanf (optarg, "%d", &xml_indentation_increment) != 1)
{
fprintf (stderr,
_("%s: %s arg must be numeric, not `%s'.\n"),
progname, "--output-indent", optarg);
usage (1);
}
break;
case 'o': /* --output */
command_output_filename = xstrdup (optarg);
save_command_output_filename = command_output_filename;
break;
case 'p': /* --paragraph-indent */
if (set_paragraph_indent (optarg) < 0)
{
fprintf (stderr,
_("%s: --paragraph-indent arg must be numeric/`none'/`asis', not `%s'.\n"),
progname, optarg);
usage (1);
}
break;
case 'P':
/* Prepend user-specified include dir to include path. */
prepend_to_include_path (optarg);
break;
case 'r': /* --reference-limit */
if (sscanf (optarg, "%d", &reference_warning_limit) != 1)
{
fprintf (stderr,
_("%s: %s arg must be numeric, not `%s'.\n"),
progname, "--reference-limit", optarg);
usage (1);
}
break;
case 's': /* --footnote-style */
if (set_footnote_style (optarg) < 0)
{
fprintf (stderr,
_("%s: --footnote-style arg must be `separate' or `end', not `%s'.\n"),
progname, optarg);
usage (1);
}
footnote_style_preset = 1;
break;
case 'S': /* --split-size */
if (sscanf (optarg, "%d", &split_size) != 1)
{
fprintf (stderr,
_("%s: %s arg must be numeric, not `%s'.\n"),
progname, "--split-size", optarg);
usage (1);
}
break;
case 't': /* --plaintext */
splitting = 0;
no_headers = 1;
html = 0;
docbook = 0;
xml = 0;
process_plaintext = 1;
break;
case 'v':
verbose_mode++;
break;
case 'V': /* --version */
print_version_info ();
puts ("");
puts ("Copyright (C) 2004 Free Software Foundation, Inc.");
printf (_("There is NO warranty. You may redistribute this software\n\
under the terms of the GNU General Public License.\n\
For more information about these matters, see the files named COPYING.\n"));
xexit (0);
break;
case 'w': /* --html */
xml = 0;
docbook = 0;
html = 1;
process_html = 1;
break;
case 'x': /* --xml */
splitting = 0;
html = 0;
docbook = 0;
xml = 1;
process_xml = 1;
break;
case '?':
usage (1);
break;
}
}
if (macro_expansion_output_stream)
validating = 0;
if (!validating)
expensive_validation = 0;
if (optind == argc)
{
/* Check to see if input is a file. If so, process that. */
if (!isatty (fileno (stdin)))
reading_from_stdin = 1;
else
{
fprintf (stderr, _("%s: missing file argument.\n"), progname);
usage (1);
}
}
if (no_headers)
{
/* If the user did not specify an output file, use stdout. */
if (!command_output_filename)
command_output_filename = xstrdup ("-");
if (html && splitting && !STREQ (command_output_filename, "-"))
{ /* --no-headers --no-split --html indicates confusion. */
fprintf (stderr,
"%s: can't split --html output to `%s' with --no-headers.\n",
progname, command_output_filename);
usage (1);
}
/* --no-headers implies --no-split. */
splitting = 0;
}
if (process_info == -1)
{ /* no explicit --[no-]ifinfo option, so we'll do @ifinfo
if we're generating info or (for compatibility) plain text. */
process_info = !html && !xml;
}
if (process_plaintext == -1)
{ /* no explicit --[no-]ifplaintext option, so we'll do @ifplaintext
if we're generating plain text. */
process_plaintext = no_headers && !html && !xml;
}
if (verbose_mode)
print_version_info ();
/* Remaining arguments are file names of texinfo files.
Convert them, one by one. */
if (!reading_from_stdin)
{
while (optind != argc)
convert_from_file (argv[optind++]);
}
else
convert_from_stream (stdin, "stdin");
xexit (errors_printed ? 2 : 0);
return 0; /* Avoid bogus warnings. */
}
/* Hacking tokens and strings. */
/* Return the next token as a string pointer. We cons the string. This
`token' means simply a command name. */
/* = is so @alias works. ^ and _ are so macros can be used in math mode
without a space following. Possibly we should simply allow alpha, to
be compatible with TeX. */
#define COMMAND_CHAR(c) (!cr_or_whitespace(c) \
&& (c) != '{' \
&& (c) != '}' \
&& (c) != '=' \
&& (c) != '_' \
&& (c) != '^' \
)
static char *
read_token (void)
{
int i, character;
char *result;
/* If the first character to be read is self-delimiting, then that
is the command itself. */
character = curchar ();
if (self_delimiting (character))
{
input_text_offset++;
if (character == '\n')
line_number++;
result = xstrdup (" ");
*result = character;
return result;
}
for (i = 0; ((input_text_offset != input_text_length)
&& (character = curchar ())
&& COMMAND_CHAR (character));
i++, input_text_offset++);
result = xmalloc (i + 1);
memcpy (result, &input_text[input_text_offset - i], i);
result[i] = 0;
return result;
}
/* Return nonzero if CHARACTER is self-delimiting. */
int
self_delimiting (int character)
{
/* @; and @\ are not Texinfo commands, but they are listed here
anyway. I don't know why. --karl, 10aug96. */
return strchr ("~{|}`^\\@?=;:./-,*\'\" !\n\t", character) != NULL;
}
/* Clear whitespace from the front and end of string. */
void
canon_white (char *string)
{
char *p = string;
unsigned len;
if (!*p)
return;
do
{
if (!cr_or_whitespace (*p))
break;
++p;
}
while (*p);
len = strlen (p);
while (len && cr_or_whitespace (p[len-1]))
--len;
if (p != string)
memmove (string, p, len);
string[len] = 0;
}
/* Bash STRING, replacing all whitespace with just one space. */
void
fix_whitespace (char *string)
{
char *temp = xmalloc (strlen (string) + 1);
int string_index = 0;
int temp_index = 0;
int c;
canon_white (string);
while (string[string_index])
{
c = temp[temp_index++] = string[string_index++];
if (c == ' ' || c == '\n' || c == '\t')
{
temp[temp_index - 1] = ' ';
while ((c = string[string_index]) && (c == ' ' ||
c == '\t' ||
c == '\n'))
string_index++;
}
}
temp[temp_index] = 0;
strcpy (string, temp);
free (temp);
}
/* Discard text until the desired string is found. The string is
included in the discarded text. */
void
discard_until (char *string)
{
int temp = search_forward (string, input_text_offset);
int tt = (temp < 0) ? input_text_length : temp + strlen (string);
int from = input_text_offset;
/* Find out what line we are on. */
while (from != tt)
if (input_text[from++] == '\n')
line_number++;
if (temp < 0)
{
if (strcmp (string, "\n") != 0)
{ /* Give a more descriptive feedback, if we are looking for ``@end ''
during macro execution. That means someone used a multiline
command as an argument to, say, @section ... style commands. */
char *end_block = xmalloc (8);
sprintf (end_block, "\n%cend ", COMMAND_PREFIX);
if (executing_string && strstr (string, end_block))
line_error (_("Multiline command %c%s used improperly"),
COMMAND_PREFIX, command);
else
{
line_error (_("Expected `%s'"), string);
input_text_offset = input_text_length - strlen (string);
}
free (end_block);
return;
}
}
else
input_text_offset = temp;
input_text_offset += strlen (string);
}
/* Read characters from the file until we are at MATCH.
Place the characters read into STRING.
On exit input_text_offset is after the match string.
Return the offset where the string starts. */
int
get_until (char *match, char **string)
{
int len, current_point, x, new_point, tem;
current_point = x = input_text_offset;
new_point = search_forward (match, input_text_offset);
if (new_point < 0)
new_point = input_text_length;
len = new_point - current_point;
/* Keep track of which line number we are at. */
tem = new_point + (strlen (match) - 1);
while (x != tem)
if (input_text[x++] == '\n')
line_number++;
*string = xmalloc (len + 1);
memcpy (*string, &input_text[current_point], len);
(*string)[len] = 0;
/* Now leave input_text_offset in a consistent state. */
input_text_offset = tem;
if (input_text_offset > input_text_length)
input_text_offset = input_text_length;
return new_point;
}
/* Replace input_text[FROM .. TO] with its expansion. */
void
replace_with_expansion (int from, int *to)
{
char *xp;
unsigned xp_len, new_len;
char *old_input = input_text;
unsigned raw_len = *to - from;
char *str;
/* The rest of the code here moves large buffers, so let's
not waste time if the input cannot possibly expand
into anything. Unfortunately, we cannot avoid expansion
when we see things like @code etc., even if they only
asked for expansion of macros, since any Texinfo command
can be potentially redefined with a macro. */
if (only_macro_expansion &&
memchr (input_text + from, COMMAND_PREFIX, raw_len) == 0)
return;
/* Get original string from input. */
str = xmalloc (raw_len + 1);
memcpy (str, input_text + from, raw_len);
str[raw_len] = 0;
/* We are going to relocate input_text, so we had better output
pending portion of input_text now, before the pointer changes. */
if (macro_expansion_output_stream && !executing_string
&& !me_inhibit_expansion)
append_to_expansion_output (from);
/* Expand it. */
xp = expansion (str, 0);
xp_len = strlen (xp);
free (str);
/* Plunk the expansion into the middle of `input_text' --
which is terminated by a newline, not a null. Avoid
expensive move of the rest of the input if the expansion
has the same length as the original string. */
if (xp_len != raw_len)
{
new_len = from + xp_len + input_text_length - *to + 1;
if (executing_string)
{ /* If we are in execute_string, we might need to update
the relevant element in the execution_strings[] array,
since it could have to be relocated from under our
feet. (input_text is reallocated here as well, if needed.) */
maybe_update_execution_strings (&input_text, new_len);
}
else if (new_len > input_text_length + 1)
/* Don't bother to realloc if we have enough space. */
input_text = xrealloc (input_text, new_len);
memmove (input_text + from + xp_len,
input_text + *to, input_text_length - *to + 1);
*to += xp_len - raw_len;
/* Since we change input_text_length here, the comparison above
isn't really valid, but it seems the worst that might happen is
an extra xrealloc or two, so let's not worry. */
input_text_length += xp_len - raw_len;
}
memcpy (input_text + from, xp, xp_len);
free (xp);
/* Synchronize the macro-expansion pointers with our new input_text. */
if (input_text != old_input)
forget_itext (old_input);
if (macro_expansion_output_stream && !executing_string)
remember_itext (input_text, from);
}
/* Read characters from the file until we are at MATCH or end of line.
Place the characters read into STRING. If EXPAND is nonzero,
expand the text before looking for MATCH for those cases where
MATCH might be produced by some macro. */
void
get_until_in_line (int expand, char *match, char **string)
{
int real_bottom = input_text_length;
int limit = search_forward ("\n", input_text_offset);
if (limit < 0)
limit = input_text_length;
/* Replace input_text[input_text_offset .. limit-1] with its expansion.
This allows the node names and menu entries themselves to be
constructed via a macro, as in:
@macro foo{p, q}
Together: \p\ & \q\.
@end macro
@node @foo{A,B}, next, prev, top
Otherwise, the `,' separating the macro args A and B is taken as
the node argument separator, so the node name is `@foo{A'. This
expansion is only necessary on the first call, since we expand the
whole line then. */
if (expand)
{
replace_with_expansion (input_text_offset, &limit);
}
real_bottom = input_text_length;
input_text_length = limit;
get_until (match, string);
input_text_length = real_bottom;
}
void
get_rest_of_line (int expand, char **string)
{
xml_no_para ++;
if (expand)
{
char *tem;
/* Don't expand non-macros in input, since we want them
intact in the macro-expanded output. */
only_macro_expansion++;
get_until_in_line (1, "\n", &tem);
only_macro_expansion--;
*string = expansion (tem, 0);
free (tem);
}
else
get_until_in_line (0, "\n", string);
canon_white (*string);
if (curchar () == '\n') /* as opposed to the end of the file... */
{
line_number++;
input_text_offset++;
}
xml_no_para --;
}
/* Backup the input pointer to the previous character, keeping track
of the current line number. */
void
backup_input_pointer (void)
{
if (input_text_offset)
{
input_text_offset--;
if (curchar () == '\n')
line_number--;
}
}
/* Read characters from the file until we are at MATCH or closing brace.
Place the characters read into STRING. */
void
get_until_in_braces (char *match, char **string)
{
char *temp;
int i, brace = 0;
int match_len = strlen (match);
for (i = input_text_offset; i < input_text_length; i++)
{
if (i < input_text_length - 1 && input_text[i] == '@')
{
i++; /* skip commands like @, and @{ */
continue;
}
else if (input_text[i] == '{')
brace++;
else if (input_text[i] == '}')
{
brace--;
/* If looking for a brace, don't stop at the interior brace,
like after "baz" in "@foo{something @bar{baz} more}". */
if (brace == 0)
continue;
}
else if (input_text[i] == '\n')
line_number++;
if (brace < 0 ||
(brace == 0 && strncmp (input_text + i, match, match_len) == 0))
break;
}
match_len = i - input_text_offset;
temp = xmalloc (2 + match_len);
memcpy (temp, input_text + input_text_offset, match_len);
temp[match_len] = 0;
input_text_offset = i;
*string = temp;
}
/* Converting a file. */
/* Convert the file named by NAME. The output is saved on the file
named as the argument to the @setfilename command. */
static char *suffixes[] = {
/* ".txi" is checked first so that on 8+3 DOS filesystems, if they
have "texinfo.txi" and "texinfo.tex" in the same directory, the
former is used rather than the latter, due to file name truncation. */
".txi",
".texinfo",
".texi",
".txinfo",
"",
NULL
};
static void
initialize_conversion (void)
{
init_tag_table ();
init_indices ();
init_internals ();
init_paragraph ();
/* This is used for splitting the output file and for doing section
headings. It was previously initialized in `init_paragraph', but its
use there loses with the `init_paragraph' calls done by the
multitable code; the tag indices get reset to zero. */
output_position = 0;
}
/* Reverse the chain of structures in LIST. Output the new head
of the chain. You should always assign the output value of this
function to something, or you will lose the chain. */
GENERIC_LIST *
reverse_list (GENERIC_LIST *list)
{
GENERIC_LIST *next;
GENERIC_LIST *prev = NULL;
while (list)
{
next = list->next;
list->next = prev;
prev = list;
list = next;
}
return prev;
}
/* We read in multiples of 4k, simply because it is a typical pipe size
on unix systems. */
#define READ_BUFFER_GROWTH (4 * 4096)
/* Convert the Texinfo file coming from the open stream STREAM. Assume the
source of the stream is named NAME. */
static void
convert_from_stream (FILE *stream, char *name)
{
char *buffer = NULL;
int buffer_offset = 0, buffer_size = 0;
initialize_conversion ();
/* Read until the end of the stream. This isn't strictly correct, since
the texinfo input may end before the stream ends, but it is a quick
working hueristic. */
while (!feof (stream))
{
int count;
if (buffer_offset + (READ_BUFFER_GROWTH + 1) >= buffer_size)
buffer = (char *)
xrealloc (buffer, (buffer_size += READ_BUFFER_GROWTH));
count = fread (buffer + buffer_offset, 1, READ_BUFFER_GROWTH, stream);
if (count < 0)
{
perror (name);
xexit (1);
}
buffer_offset += count;
if (count == 0)
break;
}
/* Set the globals to the new file. */
input_text = buffer;
input_text_length = buffer_offset;
input_filename = xstrdup (name);
node_filename = xstrdup (name);
input_text_offset = 0;
line_number = 1;
/* Not strictly necessary. This magic prevents read_token () from doing
extra unnecessary work each time it is called (that is a lot of times).
The INPUT_TEXT_LENGTH is one past the actual end of the text. */
input_text[input_text_length] = '\n';
convert_from_loaded_file (name);
}
static void
convert_from_file (char *name)
{
int i;
char *filename = xmalloc (strlen (name) + 50);
/* Prepend file directory to the search path, so relative links work. */
prepend_to_include_path (pathname_part (name));
initialize_conversion ();
/* Try to load the file specified by NAME, concatenated with our
various suffixes. Prefer files like `makeinfo.texi' to
`makeinfo'. */
for (i = 0; suffixes[i]; i++)
{
strcpy (filename, name);
strcat (filename, suffixes[i]);
if (find_and_load (filename, 1))
break;
if (!suffixes[i][0] && strrchr (filename, '.'))
{
fs_error (filename);
free (filename);
return;
}
}
if (!suffixes[i])
{
fs_error (name);
free (filename);
return;
}
input_filename = filename;
convert_from_loaded_file (name);
/* Pop the prepended path, so multiple filenames in the
command line do not screw each others include paths. */
pop_path_from_include_path ();
}
static int
create_html_directory (char *dir, int can_remove_file)
{
struct stat st;
/* Already exists. */
if (stat (dir, &st) == 0)
{
/* And it's a directory, so silently reuse it. */
if (S_ISDIR (st.st_mode))
return 1;
/* Not a directory, so move it out of the way if we are allowed. */
else if (can_remove_file)
{
if (unlink (dir) != 0)
return 0;
}
else
return 0;
}
if (mkdir (dir, 0777) == 0)
/* Success! */
return 1;
else
return 0;
}
/* Given OUTPUT_FILENAME == ``/foo/bar/baz.html'', return
"/foo/bar/baz/baz.html". This routine is called only if html && splitting.
Split html output goes into the subdirectory of the toplevel
filename, without extension. For example:
@setfilename foo.info
produces output in files foo/index.html, foo/second-node.html, ...
But if the user said -o foo.whatever on the cmd line, then use
foo.whatever unchanged. */
static char *
insert_toplevel_subdirectory (char *output_filename)
{
static const char index_name[] = "index.html";
char *dir, *subdir, *base, *basename, *p;
char buf[PATH_MAX];
const int index_len = sizeof (index_name) - 1;
strcpy (buf, output_filename);
dir = pathname_part (buf); /* directory of output_filename */
base = filename_part (buf); /* strips suffix, too */
basename = xstrdup (base); /* remember real @setfilename name */
p = dir + strlen (dir) - 1;
if (p > dir && IS_SLASH (*p))
*p = 0;
p = strrchr (base, '.');
if (p)
*p = 0;
/* Split html output goes into subdirectory of toplevel name. */
if (save_command_output_filename
&& STREQ (output_filename, save_command_output_filename))
subdir = basename; /* from user, use unchanged */
else
subdir = base; /* implicit, omit suffix */
free (output_filename);
output_filename = xmalloc (strlen (dir) + 1
+ strlen (basename) + 1
+ index_len
+ 1);
strcpy (output_filename, dir);
if (strlen (dir))
strcat (output_filename, "/");
strcat (output_filename, subdir);
/* First try, do not remove existing file. */
if (!create_html_directory (output_filename, 0))
{
/* That failed, try subdir name with .html.
Remove it if it exists. */
strcpy (output_filename, dir);
if (strlen (dir))
strcat (output_filename, "/");
strcat (output_filename, basename);
if (!create_html_directory (output_filename, 1))
{
/* Last try failed too :-\ */
line_error (_("Can't create directory `%s': %s"),
output_filename, strerror (errno));
xexit (1);
}
}
strcat (output_filename, "/");
strcat (output_filename, index_name);
return output_filename;
}
/* FIXME: this is way too hairy */
static void
convert_from_loaded_file (char *name)
{
char *real_output_filename = NULL;
remember_itext (input_text, 0);
input_text_offset = 0;
/* Avoid the `\input texinfo' line in HTML output (assuming it starts
the file). */
if (looking_at ("\\input"))
discard_until ("\n");
/* Search this file looking for the special string which starts conversion.
Once found, we may truly begin. */
while (input_text_offset >= 0)
{
input_text_offset =
search_forward (setfilename_search, input_text_offset);
if (input_text_offset == 0
|| (input_text_offset > 0
&& input_text[input_text_offset -1] == '\n'))
break;
else if (input_text_offset > 0)
input_text_offset++;
}
if (input_text_offset < 0)
{
if (!command_output_filename)
{
#if defined (REQUIRE_SETFILENAME)
error (_("No `%s' found in `%s'"), setfilename_search, name);
goto finished;
#else
command_output_filename = output_name_from_input_name (name);
#endif /* !REQUIRE_SETFILENAME */
}
{
int i, end_of_first_line;
/* Find the end of the first line in the file. */
for (i = 0; i < input_text_length - 1; i++)
if (input_text[i] == '\n')
break;
end_of_first_line = i + 1;
for (i = 0; i < end_of_first_line; i++)
{
if ((input_text[i] == '\\') &&
(strncmp (input_text + i + 1, "input", 5) == 0))
{
input_text_offset = i;
break;
}
}
}
}
else
input_text_offset += strlen (setfilename_search);
if (!command_output_filename)
{
get_until ("\n", &output_filename); /* read rest of line */
if (html || xml)
{ /* Change any extension to .html or .xml. */
char *html_name, *directory_part, *basename_part, *temp;
canon_white (output_filename);
directory_part = pathname_part (output_filename);
basename_part = filename_part (output_filename);
/* Zap any existing extension. */
temp = strrchr (basename_part, '.');
if (temp)
*temp = 0;
/* Construct new filename. */
html_name = xmalloc (strlen (directory_part)
+ strlen (basename_part) + 6);
strcpy (html_name, directory_part);
strcat (html_name, basename_part);
strcat (html_name, html ? ".html" : ".xml");
/* Replace name from @setfilename with the html name. */
free (output_filename);
output_filename = html_name;
}
}
else
{
if (input_text_offset != -1)
discard_until ("\n");
else
input_text_offset = 0;
real_output_filename = output_filename = command_output_filename;
command_output_filename = NULL; /* for included files or whatever */
}
canon_white (output_filename);
toplevel_output_filename = xstrdup (output_filename);
if (real_output_filename && strcmp (real_output_filename, "-") == 0)
{
if (macro_expansion_filename
&& strcmp (macro_expansion_filename, "-") == 0)
{
fprintf (stderr,
_("%s: Skipping macro expansion to stdout as Info output is going there.\n"),
progname);
macro_expansion_output_stream = NULL;
}
real_output_filename = xstrdup (real_output_filename);
output_stream = stdout;
splitting = 0; /* Cannot split when writing to stdout. */
}
else
{
if (html && splitting)
{
if (FILENAME_CMP (output_filename, NULL_DEVICE) == 0
|| FILENAME_CMP (output_filename, ALSO_NULL_DEVICE) == 0)
splitting = 0;
else
output_filename = insert_toplevel_subdirectory (output_filename);
real_output_filename = xstrdup (output_filename);
}
else if (!real_output_filename)
real_output_filename = expand_filename (output_filename, name);
else
real_output_filename = xstrdup (real_output_filename);
output_stream = fopen (real_output_filename, "w");
}
set_current_output_filename (real_output_filename);
if (xml && !docbook)
xml_begin_document (filename_part (output_filename));
if (verbose_mode)
printf (_("Making %s file `%s' from `%s'.\n"),
no_headers ? "text"
: html ? "HTML"
: xml ? "XML"
: "info",
output_filename, input_filename);
if (output_stream == NULL)
{
fs_error (real_output_filename);
goto finished;
}
/* Make the displayable filename from output_filename. Only the base
portion of the filename need be displayed. */
flush_output (); /* in case there was no @bye */
if (output_stream != stdout)
pretty_output_filename = filename_part (output_filename);
else
pretty_output_filename = xstrdup ("stdout");
/* For this file only, count the number of newlines from the top of
the file to here. This way, we keep track of line numbers for
error reporting. Line_number starts at 1, since the user isn't
zero-based. */
{
int temp = 0;
line_number = 1;
while (temp != input_text_offset)
if (input_text[temp++] == '\n')
line_number++;
}
/* html fixxme: should output this as trailer on first page. */
if (!no_headers && !html && !xml)
add_word_args (_("This is %s, produced by makeinfo version %s from %s.\n"),
output_filename, VERSION, input_filename);
close_paragraph ();
reader_loop ();
if (xml)
xml_end_document ();
finished:
discard_insertions (0);
close_paragraph ();
flush_file_stack ();
if (macro_expansion_output_stream)
{
fclose (macro_expansion_output_stream);
if (errors_printed && !force
&& strcmp (macro_expansion_filename, "-") != 0
&& FILENAME_CMP (macro_expansion_filename, NULL_DEVICE) != 0
&& FILENAME_CMP (macro_expansion_filename, ALSO_NULL_DEVICE) != 0)
{
fprintf (stderr,
_("%s: Removing macro output file `%s' due to errors; use --force to preserve.\n"),
progname, macro_expansion_filename);
if (unlink (macro_expansion_filename) < 0)
perror (macro_expansion_filename);
}
}
if (output_stream)
{
output_pending_notes ();
if (html)
{
no_indent = 1;
start_paragraph ();
add_word ("</body></html>\n");
close_paragraph ();
}
/* maybe we want local variables in info output. */
{
char *trailer = info_trailer ();
if (!xml && !docbook && trailer)
{
if (html)
insert_string ("<!--");
insert_string (trailer);
free (trailer);
if (html)
insert_string ("\n-->\n");
}
}
/* Write stuff makeinfo generates after @bye, ie. info_trailer. */
flush_output ();
if (output_stream != stdout)
fclose (output_stream);
/* If validating, then validate the entire file right now. */
if (validating)
validate_file (tag_table);
handle_delayed_writes ();
if (tag_table)
{
tag_table = (TAG_ENTRY *) reverse_list ((GENERIC_LIST *) tag_table);
if (!no_headers && !html && !STREQ (current_output_filename, "-"))
write_tag_table (real_output_filename);
}
if (splitting && !html && (!errors_printed || force))
{
clean_old_split_files (real_output_filename);
split_file (real_output_filename, split_size);
}
else if (errors_printed
&& !force
&& strcmp (real_output_filename, "-") != 0
&& FILENAME_CMP (real_output_filename, NULL_DEVICE) != 0
&& FILENAME_CMP (real_output_filename, ALSO_NULL_DEVICE) != 0)
{ /* If there were errors, and no --force, remove the output. */
fprintf (stderr,
_("%s: Removing output file `%s' due to errors; use --force to preserve.\n"),
progname, real_output_filename);
if (unlink (real_output_filename) < 0)
perror (real_output_filename);
}
}
free (real_output_filename);
}
/* If enable_encoding is set and @documentencoding is used, return a
Local Variables section (as a malloc-ed string) so that Emacs'
locale features can work. Else return NULL. */
char *
info_trailer (void)
{
char *encoding;
if (!enable_encoding)
return NULL;
encoding = current_document_encoding ();
if (encoding && *encoding)
{
#define LV_FMT "\n\037\nLocal Variables:\ncoding: %s\nEnd:\n"
char *lv = xmalloc (sizeof (LV_FMT) + strlen (encoding));
sprintf (lv, LV_FMT, encoding);
free (encoding);
return lv;
}
free (encoding);
return NULL;
}
void
free_and_clear (char **pointer)
{
if (*pointer)
{
free (*pointer);
*pointer = NULL;
}
}
/* Initialize some state. */
static void
init_internals (void)
{
free_and_clear (&output_filename);
free_and_clear (&command);
free_and_clear (&input_filename);
free_node_references ();
free_node_node_references ();
toc_free ();
init_insertion_stack ();
init_brace_stack ();
current_node = NULL; /* sometimes already freed */
command_index = 0;
in_menu = 0;
in_detailmenu = 0;
top_node_seen = 0;
non_top_node_seen = 0;
node_number = -1;
}
void
init_paragraph (void)
{
free_and_clear ((char **) &output_paragraph);
output_paragraph = xmalloc (paragraph_buffer_len);
output_paragraph[0] = 0;
output_paragraph_offset = 0;
output_column = 0;
paragraph_is_open = 0;
current_indent = 0;
meta_char_pos = 0;
}
/* This is called from `reader_loop' when we are at the * beginning a
menu line. */
static void
handle_menu_entry (void)
{
char *tem;
/* Ugh, glean_node_from_menu wants to read the * itself. */
input_text_offset--;
/* Find node name in menu entry and save it in references list for
later validation. Use followed_reference type for detailmenu
references since we don't want to use them for default node pointers. */
tem = glean_node_from_menu (1, in_detailmenu
? followed_reference : menu_reference);
if (html && tem)
{ /* Start a menu item with the cleaned-up line. Put an anchor
around the start text (before `:' or the node name). */
char *string;
discard_until ("* ");
/* The line number was already incremented in reader_loop when we
saw the newline, and discard_until has now incremented again. */
line_number--;
if (had_menu_commentary)
{
add_html_block_elt ("<ul class=\"menu\">\n");
had_menu_commentary = 0;
in_paragraph = 0;
}
if (in_paragraph)
{
add_html_block_elt ("</p>\n");
add_html_block_elt ("<ul class=\"menu\">\n");
in_paragraph = 0;
}
in_menu_item = 1;
add_html_block_elt ("<li><a");
if (next_menu_item_number <= 9)
{
add_word(" accesskey=");
add_word_args("\"%d\"", next_menu_item_number);
next_menu_item_number++;
}
add_word (" href=\"");
string = expansion (tem, 0);
add_anchor_name (string, 1);
add_word ("\">");
free (string);
/* The menu item may use macros, so expand them now. */
only_macro_expansion++;
get_until_in_line (1, ":", &string);
only_macro_expansion--;
execute_string ("%s", string); /* get escaping done */
free (string);
add_word ("</a>");
if (looking_at ("::"))
discard_until (":");
else
{ /* discard the node name */
get_until_in_line (0, ".", &string);
free (string);
}
input_text_offset++; /* discard the second colon or the period */
/* Insert a colon only if there is a description of this menu item. */
{
int save_input_text_offset = input_text_offset;
int save_line_number = line_number;
char *test_string;
get_rest_of_line (0, &test_string);
if (strlen (test_string) > 0)
add_word (": ");
input_text_offset = save_input_text_offset;
line_number = save_line_number;
}
}
else if (xml && tem)
{
xml_start_menu_entry (tem);
}
else if (tem)
{ /* For Info output, we can just use the input and the main case in
reader_loop where we output what comes in. Just move off the *
so the next time through reader_loop we don't end up back here. */
add_char ('*');
input_text_offset += 2; /* undo the pointer back-up above. */
}
if (tem)
free (tem);
}
/* Find the command corresponding to STRING. If the command is found,
return a pointer to the data structure. Otherwise return -1. */
static COMMAND *
get_command_entry (char *string)
{
int i;
for (i = 0; command_table[i].name; i++)
if (strcmp (command_table[i].name, string) == 0)
return &command_table[i];
/* This command is not in our predefined command table. Perhaps
it is a user defined command. */
for (i = 0; i < user_command_array_len; i++)
if (user_command_array[i] &&
(strcmp (user_command_array[i]->name, string) == 0))
return user_command_array[i];
/* We never heard of this command. */
return (COMMAND *) -1;
}
/* input_text_offset is right at the command prefix character.
Read the next token to determine what to do. Return zero
if there's no known command or macro after the prefix character. */
static int
read_command (void)
{
COMMAND *entry;
int old_text_offset = input_text_offset++;
free_and_clear (&command);
command = read_token ();
/* Check to see if this command is a macro. If so, execute it here. */
{
MACRO_DEF *def;
def = find_macro (command);
if (def)
{
/* We disallow recursive use of a macro call. Inhibit the expansion
of this macro during the life of its execution. */
if (!(def->flags & ME_RECURSE))
def->inhibited = 1;
executing_macro++;
execute_macro (def);
executing_macro--;
if (!(def->flags & ME_RECURSE))
def->inhibited = 0;
return 1;
}
}
if (only_macro_expansion)
{
/* Back up to the place where we were called, so the
caller will have a chance to process this non-macro. */
input_text_offset = old_text_offset;
return 0;
}
/* Perform alias expansion */
command = alias_expand (command);
if (enclosure_command (command))
{
remember_brace (enclosure_expand);
enclosure_expand (START, output_paragraph_offset, 0);
return 0;
}
entry = get_command_entry (command);
if (entry == (COMMAND *)-1)
{
line_error (_("Unknown command `%s'"), command);
return 0;
}
if (entry->argument_in_braces == BRACE_ARGS)
remember_brace (entry->proc);
else if (entry->argument_in_braces == MAYBE_BRACE_ARGS)
{
if (curchar () == '{')
remember_brace (entry->proc);
else
{ /* No braces, so arg is next char. */
int ch;
int saved_offset = output_paragraph_offset;
(*(entry->proc)) (START, output_paragraph_offset, 0);
/* Possibilities left for the next character: @ (error), }
(error), whitespace (skip) anything else (normal char). */
skip_whitespace ();
ch = curchar ();
if (ch == '@')
{
line_error (_("Use braces to give a command as an argument to @%s"),
entry->name);
return 0;
}
else if (ch == '}')
{
/* Our caller will give the error message, because this }
won't match anything. */
return 0;
}
add_char (ch);
input_text_offset++;
(*(entry->proc)) (END, saved_offset, output_paragraph_offset);
return 1;
}
}
/* Get here if we have BRACE_ARGS, NO_BRACE_ARGS, or MAYBE_BRACE_ARGS
with braces. */
(*(entry->proc)) (START, output_paragraph_offset, 0);
return 1;
}
/* Okay, we are ready to start the conversion. Call the reader on
some text, and fill the text as it is output. Handle commands by
remembering things like open braces and the current file position on a
stack, and when the corresponding close brace is found, you can call
the function with the proper arguments. Although the filling isn't
necessary for HTML, it should do no harm. */
void
reader_loop (void)
{
int character;
int done = 0;
while (!done)
{
if (input_text_offset >= input_text_length)
break;
character = curchar ();
/* If only_macro_expansion, only handle macros and leave
everything else intact. */
if (!only_macro_expansion && !in_fixed_width_font
&& ((!html && !xml) || escape_html)
&& (character == '\'' || character == '`')
&& input_text[input_text_offset + 1] == character)
{
if (html)
{
input_text_offset += 2;
add_word (character == '`' ? "“" : "”");
continue;
}
else if (xml)
{
input_text_offset += 2;
xml_insert_entity (character == '`' ? "ldquo" : "rdquo");
continue;
}
else
{
input_text_offset++;
character = '"';
}
}
/* Convert --- to --. */
if (!only_macro_expansion && character == '-' && !in_fixed_width_font
&& ((!html && !xml) || escape_html))
{
int dash_count = 0;
/* Get the number of consequtive dashes. */
while (input_text[input_text_offset] == '-')
{
dash_count++;
input_text_offset++;
}
/* Eat one dash. */
dash_count--;
if (html || xml)
{
if (dash_count == 0)
add_char ('-');
else
while (dash_count > 0)
{
if (dash_count >= 2)
{
html ? add_word ("—") : xml_insert_entity ("mdash");
dash_count -= 2;
}
else if (dash_count >= 1)
{
html ? add_word ("–") : xml_insert_entity ("ndash");
dash_count--;
}
}
}
else
{
add_char ('-');
while (--dash_count > 0)
add_char ('-');
}
continue;
}
/* If this is a whitespace character, then check to see if the line
is blank. If so, advance to the carriage return. */
if (!only_macro_expansion && whitespace (character))
{
int i = input_text_offset + 1;
while (i < input_text_length && whitespace (input_text[i]))
i++;
if (i == input_text_length || input_text[i] == '\n')
{
if (i == input_text_length)
i--;
input_text_offset = i;
character = curchar ();
}
}
if (character == '\n')
line_number++;
switch (character)
{
case '*': /* perhaps we are at a menu */
/* We used to check for this in the \n case but an @c in a
menu swallows its newline, so check here instead. */
if (!only_macro_expansion && in_menu
&& input_text_offset + 1 < input_text_length
&& input_text[input_text_offset-1] == '\n')
handle_menu_entry ();
else
{ /* Duplicate code from below, but not worth twisting the
fallthroughs to get down there. */
add_char (character);
input_text_offset++;
}
break;
/* Escapes for HTML unless we're outputting raw HTML. Do
this always, even if SGML rules don't require it since
that's easier and safer for non-conforming browsers. */
case '&':
if (html && escape_html)
add_word ("&");
else
add_char (character);
input_text_offset++;
break;
case '<':
if (html && escape_html)
add_word ("<");
else if (xml && escape_html)
xml_insert_entity ("lt");
else
add_char (character);
input_text_offset++;
break;
case '>':
if (html && escape_html)
add_word (">");
else if (xml && escape_html)
xml_insert_entity ("gt");
else
add_char (character);
input_text_offset++;
break;
case COMMAND_PREFIX: /* @ */
if (read_command () || !only_macro_expansion)
break;
/* FALLTHROUGH (usually) */
case '{':
/* Special case. We're not supposed to see this character by itself.
If we do, it means there is a syntax error in the input text.
Report the error here, but remember this brace on the stack so
we can ignore its partner. */
if (!only_macro_expansion)
{
if (command && !STREQ (command, "math"))
{
line_error (_("Misplaced %c"), '{');
remember_brace (misplaced_brace);
}
else
/* We don't mind `extra' braces inside @math. */
remember_brace (cm_no_op);
/* remember_brace advances input_text_offset. */
break;
}
/* FALLTHROUGH (usually) */
case '}':
if (!only_macro_expansion)
{
pop_and_call_brace ();
input_text_offset++;
break;
}
/* FALLTHROUGH (usually) */
default:
add_char (character);
input_text_offset++;
}
}
if (macro_expansion_output_stream && !only_macro_expansion)
maybe_write_itext (input_text, input_text_offset);
}
static void
init_brace_stack (void)
{
brace_stack = NULL;
}
/* Remember the current output position here. Save PROC
along with it so you can call it later. */
static void
remember_brace_1 (COMMAND_FUNCTION (*proc), int position)
{
BRACE_ELEMENT *new = xmalloc (sizeof (BRACE_ELEMENT));
new->next = brace_stack;
new->proc = proc;
new->command = command ? xstrdup (command) : "";
new->pos = position;
new->line = line_number;
new->in_fixed_width_font = in_fixed_width_font;
brace_stack = new;
}
static void
remember_brace (COMMAND_FUNCTION (*proc))
{
if (curchar () != '{')
line_error (_("%c%s expected braces"), COMMAND_PREFIX, command);
else
input_text_offset++;
remember_brace_1 (proc, output_paragraph_offset);
}
/* Pop the top of the brace stack, and call the associated function
with the args END and POS. */
static void
pop_and_call_brace (void)
{
if (brace_stack == NULL)
{
line_error (_("Unmatched }"));
return;
}
{
BRACE_ELEMENT *temp;
int pos = brace_stack->pos;
COMMAND_FUNCTION *proc = brace_stack->proc;
in_fixed_width_font = brace_stack->in_fixed_width_font;
/* Reset current command, so the proc can know who it is. This is
used in cm_accent. */
command = brace_stack->command;
temp = brace_stack->next;
free (brace_stack);
brace_stack = temp;
(*proc) (END, pos, output_paragraph_offset);
}
}
/* Shift all of the markers in `brace_stack' by AMOUNT. */
static void
adjust_braces_following (int here, int amount)
{
BRACE_ELEMENT *stack = brace_stack;
while (stack)
{
if (stack->pos >= here)
stack->pos += amount;
stack = stack->next;
}
}
/* Return the string which invokes PROC; a pointer to a function.
Always returns the first function in the command table if more than
one matches PROC. */
static const char *
find_proc_name (COMMAND_FUNCTION (*proc))
{
int i;
for (i = 0; command_table[i].name; i++)
if (proc == command_table[i].proc)
return command_table[i].name;
return _("NO_NAME!");
}
/* You call discard_braces () when you shouldn't have any braces on the stack.
I used to think that this happens for commands that don't take arguments
in braces, but that was wrong because of things like @code{foo @@}. So now
I only detect it at the beginning of nodes. */
void
discard_braces (void)
{
if (!brace_stack)
return;
while (brace_stack)
{
if (brace_stack->proc != misplaced_brace)
{
const char *proc_name;
proc_name = find_proc_name (brace_stack->proc);
file_line_error (input_filename, brace_stack->line,
_("%c%s missing close brace"), COMMAND_PREFIX,
proc_name);
pop_and_call_brace ();
}
else
{
BRACE_ELEMENT *temp;
temp = brace_stack->next;
free (brace_stack);
brace_stack = temp;
}
}
}
static int
get_char_len (int character)
{
/* Return the printed length of the character. */
int len;
switch (character)
{
case '\t':
len = (output_column + 8) & 0xf7;
if (len > fill_column)
len = fill_column - output_column;
else
len = len - output_column;
break;
case '\n':
len = fill_column - output_column;
break;
default:
/* ASCII control characters appear as two characters in the output
(e.g., ^A). But characters with the high bit set are just one
on suitable terminals, so don't count them as two for line
breaking purposes. */
if (0 <= character && character < ' ')
len = 2;
else
len = 1;
}
return len;
}
void
#if defined (VA_FPRINTF) && __STDC__
add_word_args (const char *format, ...)
#else
add_word_args (format, va_alist)
const char *format;
va_dcl
#endif
{
char buffer[2000]; /* xx no fixed limits */
#ifdef VA_FPRINTF
va_list ap;
#endif
VA_START (ap, format);
#ifdef VA_SPRINTF
VA_SPRINTF (buffer, format, ap);
#else
sprintf (buffer, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_SPRINTF */
va_end (ap);
add_word (buffer);
}
/* Add STRING to output_paragraph. */
void
add_word (char *string)
{
while (*string)
add_char (*string++);
}
/* Like add_word, but inhibits conversion of whitespace into .
Use this to output HTML directives with embedded blanks, to make
them @w-safe. */
void
add_html_elt (char *string)
{
in_html_elt++;
add_word (string);
in_html_elt--;
}
/* These two functions below, add_html_block_elt and add_html_block_elt_args,
are mixtures of add_html_elt and add_word_args. They inform makeinfo that
the current HTML element being inserted should not be enclosed in a <p>
element. */
void
add_html_block_elt (char *string)
{
in_html_block_level_elt++;
add_word (string);
in_html_block_level_elt--;
}
void
#if defined (VA_FPRINTF) && __STDC__
add_html_block_elt_args (const char *format, ...)
#else
add_html_block_elt_args (format, va_alist)
const char *format;
va_dcl
#endif
{
char buffer[2000]; /* xx no fixed limits */
#ifdef VA_FPRINTF
va_list ap;
#endif
VA_START (ap, format);
#ifdef VA_SPRINTF
VA_SPRINTF (buffer, format, ap);
#else
sprintf (buffer, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_SPRINTF */
va_end (ap);
add_html_block_elt (buffer);
}
/* Here is another awful kludge, used in add_char. Ordinarily, macro
expansions take place in the body of the document, and therefore we
should html_output_head when we see one. But there's an exception: a
macro call might take place within @copying, and that does not start
the real output, even though we fully expand the copying text.
So we need to be able to check if we are defining the @copying text.
We do this by looking back through the insertion stack. */
static int
defining_copying (void)
{
INSERTION_ELT *i;
for (i = insertion_stack; i; i = i->next)
{
if (i->insertion == copying)
return 1;
}
return 0;
}
/* Add the character to the current paragraph. If filling_enabled is
nonzero, then do filling as well. */
void
add_char (int character)
{
if (xml)
{
xml_add_char (character);
return;
}
/* If we are avoiding outputting headers, and we are currently
in a menu, then simply return. But if we're only expanding macros,
then we're being called from glean_node_from_menu to try to
remember a menu reference, and we need that so we can do defaulting. */
if (no_headers && !only_macro_expansion && (in_menu || in_detailmenu))
return;
/* If we are adding a character now, then we don't have to
ignore close_paragraph () calls any more. */
if (must_start_paragraph && character != '\n')
{
must_start_paragraph = 0;
line_already_broken = 0; /* The line is no longer broken. */
if (current_indent > output_column)
{
indent (current_indent - output_column);
output_column = current_indent;
}
}
if (non_splitting_words
&& !(html && in_html_elt)
&& strchr (" \t\n", character))
{
if (html || docbook)
{ /* Seems cleaner to use than an 8-bit char. */
int saved_escape_html = escape_html;
escape_html = 0;
add_word (" ");
escape_html = saved_escape_html;
character = ';';
}
else
character = META (' '); /* unmeta-d in flush_output */
}
insertion_paragraph_closed = 0;
switch (character)
{
case '\n':
if (!filling_enabled && !(html && (in_menu || in_detailmenu)))
{
insert ('\n');
if (force_flush_right)
{
close_paragraph ();
/* Hack to force single blank lines out in this mode. */
flush_output ();
}
output_column = 0;
if (!no_indent && paragraph_is_open)
indent (output_column = current_indent);
break;
}
else if (end_of_sentence_p ())
/* CHARACTER is newline, and filling is enabled. */
{
insert (' ');
output_column++;
last_inserted_character = character;
}
if (last_char_was_newline)
{
if (html)
last_char_was_newline++;
close_paragraph ();
pending_indent = 0;
}
else
{
last_char_was_newline = 1;
if (html)
insert ('\n');
else
insert (' ');
output_column++;
}
break;
default: /* not at newline */
{
int len = get_char_len (character);
int suppress_insert = 0;
if ((character == ' ') && (last_char_was_newline))
{
if (!paragraph_is_open)
{
pending_indent++;
return;
}
}
/* This is sad, but it seems desirable to not force any
particular order on the front matter commands. This way,
the document can do @settitle, @documentlanguage, etc, in
any order and with any omissions, and we'll still output
the html <head> `just in time'. */
if ((executing_macro || !executing_string)
&& html && !html_output_head_p && !defining_copying ())
html_output_head ();
if (!paragraph_is_open)
{
start_paragraph ();
/* If the paragraph is supposed to be indented a certain
way, then discard all of the pending whitespace.
Otherwise, we let the whitespace stay. */
if (!paragraph_start_indent)
indent (pending_indent);
pending_indent = 0;
/* This check for in_html_block_level_elt prevents <p> from being
inserted when we already have html markup starting a paragraph,
as with <ul> and <h1> and the like. */
if (html && !in_html_block_level_elt)
{
if ((in_menu || in_detailmenu) && in_menu_item)
{
insert_string ("</li></ul>\n");
in_menu_item = 0;
}
insert_string ("<p>");
in_paragraph = 1;
adjust_braces_following (0, 3); /* adjust for <p> */
}
}
output_column += len;
if (output_column > fill_column)
{
if (filling_enabled && !html)
{
int temp = output_paragraph_offset;
while (--temp > 0 && output_paragraph[temp] != '\n')
{
/* If we have found a space, we have the place to break
the line. */
if (output_paragraph[temp] == ' ')
{
/* Remove trailing whitespace from output. */
while (temp && whitespace (output_paragraph[temp - 1]))
temp--;
/* If we went back all the way to the newline of the
preceding line, it probably means that the word we
are adding is itself wider than the space that the
indentation and the fill_column let us use. In
that case, do NOT insert another newline, since it
won't help. Just indent to current_indent and
leave it alone, since that's the most we can do. */
if (temp && output_paragraph[temp - 1] != '\n')
output_paragraph[temp++] = '\n';
/* We have correctly broken the line where we want
to. What we don't want is spaces following where
we have decided to break the line. We get rid of
them. */
{
int t1 = temp;
for (;; t1++)
{
if (t1 == output_paragraph_offset)
{
if (whitespace (character))
suppress_insert = 1;
break;
}
if (!whitespace (output_paragraph[t1]))
break;
}
if (t1 != temp)
{
adjust_braces_following (temp, (- (t1 - temp)));
memmove (&output_paragraph[temp],
&output_paragraph[t1],
output_paragraph_offset - t1);
output_paragraph_offset -= (t1 - temp);
}
}
/* Filled, but now indent if that is right. */
if (indented_fill && current_indent > 0)
{
int buffer_len = ((output_paragraph_offset - temp)
+ current_indent);
char *temp_buffer = xmalloc (buffer_len);
int indentation = 0;
/* We have to shift any markers that are in
front of the wrap point. */
adjust_braces_following (temp, current_indent);
while (current_indent > 0 &&
indentation != current_indent)
temp_buffer[indentation++] = ' ';
memcpy ((char *) &temp_buffer[current_indent],
(char *) &output_paragraph[temp],
buffer_len - current_indent);
if (output_paragraph_offset + buffer_len
>= paragraph_buffer_len)
{
unsigned char *tt = xrealloc
(output_paragraph,
(paragraph_buffer_len += buffer_len));
output_paragraph = tt;
}
memcpy ((char *) &output_paragraph[temp],
temp_buffer, buffer_len);
output_paragraph_offset += current_indent;
free (temp_buffer);
}
output_column = 0;
while (temp < output_paragraph_offset)
output_column +=
get_char_len (output_paragraph[temp++]);
output_column += len;
break;
}
}
}
}
if (!suppress_insert)
{
insert (character);
last_inserted_character = character;
}
last_char_was_newline = 0;
line_already_broken = 0;
}
}
}
/* Add a character and store its position in meta_char_pos. */
void
add_meta_char (int character)
{
meta_char_pos = output_paragraph_offset;
add_char (character);
}
/* Insert CHARACTER into `output_paragraph'. */
void
insert (int character)
{
/* We don't want to strip trailing whitespace in multitables. Otherwise
horizontal separators confuse the font locking in Info mode in Emacs,
because it looks like a @subsection. Adding a trailing space to those
lines fixes it. */
if (character == '\n' && !html && !xml && !multitable_active)
{
while (output_paragraph_offset
&& whitespace (output_paragraph[output_paragraph_offset-1]))
output_paragraph_offset--;
}
output_paragraph[output_paragraph_offset++] = character;
if (output_paragraph_offset == paragraph_buffer_len)
{
output_paragraph =
xrealloc (output_paragraph, (paragraph_buffer_len += 100));
}
}
/* Insert the null-terminated string STRING into `output_paragraph'. */
void
insert_string (char *string)
{
while (*string)
insert (*string++);
}
/* Sentences might have these characters after the period (or whatever). */
#define POST_SENTENCE(c) ((c) == ')' || (c) == '\'' || (c) == '"' \
|| (c) == ']')
/* Return true if at an end-of-sentence character, possibly followed by
post-sentence punctuation to ignore. */
static int
end_of_sentence_p (void)
{
int loc = output_paragraph_offset - 1;
/* If nothing has been output, don't check output_paragraph[-1]. */
if (loc < 0)
return 0;
/* A post-sentence character that is at meta_char_pos is not really
a post-sentence character; it was produced by a markup such as
@samp. We don't want the period inside @samp to be treated as a
sentence ender. */
while (loc > 0
&& loc != meta_char_pos && POST_SENTENCE (output_paragraph[loc]))
loc--;
return loc != meta_char_pos && sentence_ender (output_paragraph[loc]);
}
/* Remove upto COUNT characters of whitespace from the
the current output line. If COUNT is less than zero,
then remove until none left. */
void
kill_self_indent (int count)
{
/* Handle infinite case first. */
if (count < 0)
{
output_column = 0;
while (output_paragraph_offset)
{
if (whitespace (output_paragraph[output_paragraph_offset - 1]))
output_paragraph_offset--;
else
break;
}
}
else
{
while (output_paragraph_offset && count--)
if (whitespace (output_paragraph[output_paragraph_offset - 1]))
output_paragraph_offset--;
else
break;
}
}
/* Nonzero means do not honor calls to flush_output (). */
static int flushing_ignored = 0;
/* Prevent calls to flush_output () from having any effect. */
void
inhibit_output_flushing (void)
{
flushing_ignored++;
}
/* Allow calls to flush_output () to write the paragraph data. */
void
uninhibit_output_flushing (void)
{
flushing_ignored--;
}
void
flush_output (void)
{
int i;
if (!output_paragraph_offset || flushing_ignored)
return;
for (i = 0; i < output_paragraph_offset; i++)
{
if (output_paragraph[i] == '\n')
{
output_line_number++;
node_line_number++;
}
/* If we turned on the 8th bit for a space inside @w, turn it
back off for output. This might be problematic, since the
0x80 character may be used in 8-bit character sets. Sigh.
In any case, don't do this for HTML, since the nbsp character
is valid input and must be passed along to the browser. */
if (!html && (output_paragraph[i] & meta_character_bit))
{
int temp = UNMETA (output_paragraph[i]);
if (temp == ' ')
output_paragraph[i] &= 0x7f;
}
}
fwrite (output_paragraph, 1, output_paragraph_offset, output_stream);
output_position += output_paragraph_offset;
output_paragraph_offset = 0;
meta_char_pos = 0;
}
/* How to close a paragraph controlling the number of lines between
this one and the last one. */
/* Paragraph spacing is controlled by this variable. It is the number of
blank lines that you wish to appear between paragraphs. A value of
1 creates a single blank line between paragraphs. */
int paragraph_spacing = DEFAULT_PARAGRAPH_SPACING;
static void
close_paragraph_with_lines (int lines)
{
int old_spacing = paragraph_spacing;
paragraph_spacing = lines;
close_paragraph ();
paragraph_spacing = old_spacing;
}
/* Close the current paragraph, leaving no blank lines between them. */
void
close_single_paragraph (void)
{
close_paragraph_with_lines (0);
}
/* Close a paragraph after an insertion has ended. */
void
close_insertion_paragraph (void)
{
if (!insertion_paragraph_closed)
{
/* Close the current paragraph, breaking the line. */
close_single_paragraph ();
/* Start a new paragraph, with the correct indentation for the now
current insertion level (one above the one that we are ending). */
start_paragraph ();
/* Tell `close_paragraph' that the previous line has already been
broken, so it should insert one less newline. */
line_already_broken = 1;
/* Tell functions such as `add_char' we've already found a newline. */
ignore_blank_line ();
}
else
{
/* If the insertion paragraph is closed already, then we are seeing
two `@end' commands in a row. Note that the first one we saw was
handled in the first part of this if-then-else clause, and at that
time `start_paragraph' was called, partially to handle the proper
indentation of the current line. However, the indentation level
may have just changed again, so we may have to outdent the current
line to the new indentation level. */
if (current_indent < output_column)
kill_self_indent (output_column - current_indent);
}
insertion_paragraph_closed = 1;
}
/* Close the currently open paragraph. */
void
close_paragraph (void)
{
int i;
/* We don't need these newlines in XML and Docbook outputs for
paragraph seperation. We have <para> element for that. */
if (xml)
return;
/* The insertion paragraph is no longer closed. */
insertion_paragraph_closed = 0;
if (paragraph_is_open && !must_start_paragraph)
{
int tindex = output_paragraph_offset;
/* Back up to last non-newline/space character, forcing all such
subsequent characters to be newlines. This isn't strictly
necessary, but a couple of functions use the presence of a newline
to make decisions. */
for (tindex = output_paragraph_offset - 1; tindex >= 0; --tindex)
{
int c = output_paragraph[tindex];
if (c == ' '|| c == '\n')
output_paragraph[tindex] = '\n';
else
break;
}
/* All trailing whitespace is ignored. */
output_paragraph_offset = ++tindex;
/* Break the line if that is appropriate. */
if (paragraph_spacing >= 0)
insert ('\n');
/* Add as many blank lines as is specified in `paragraph_spacing'. */
if (!force_flush_right)
{
for (i = 0; i < (paragraph_spacing - line_already_broken); i++)
{
insert ('\n');
/* Don't need anything extra for HTML in usual case of no
extra paragraph spacing. */
if (html && i > 0)
insert_string ("<br>");
}
}
/* If we are doing flush right indentation, then do it now
on the paragraph (really a single line). */
if (force_flush_right)
do_flush_right_indentation ();
flush_output ();
paragraph_is_open = 0;
no_indent = 0;
output_column = 0;
}
ignore_blank_line ();
}
/* Make the last line just read look as if it were only a newline. */
void
ignore_blank_line (void)
{
last_inserted_character = '\n';
last_char_was_newline = 1;
}
/* Align the end of the text in output_paragraph with fill_column. */
static void
do_flush_right_indentation (void)
{
char *temp;
int temp_len;
kill_self_indent (-1);
if (output_paragraph[0] != '\n')
{
output_paragraph[output_paragraph_offset] = 0;
if (output_paragraph_offset < fill_column)
{
int i;
if (fill_column >= paragraph_buffer_len)
output_paragraph =
xrealloc (output_paragraph,
(paragraph_buffer_len += fill_column));
temp_len = strlen ((char *)output_paragraph);
temp = xmalloc (temp_len + 1);
memcpy (temp, (char *)output_paragraph, temp_len);
for (i = 0; i < fill_column - output_paragraph_offset; i++)
output_paragraph[i] = ' ';
memcpy ((char *)output_paragraph + i, temp, temp_len);
free (temp);
output_paragraph_offset = fill_column;
adjust_braces_following (0, i);
}
}
}
/* Begin a new paragraph. */
void
start_paragraph (void)
{
/* First close existing one. */
if (paragraph_is_open)
close_paragraph ();
/* In either case, the insertion paragraph is no longer closed. */
insertion_paragraph_closed = 0;
/* However, the paragraph is open! */
paragraph_is_open = 1;
/* If we MUST_START_PARAGRAPH, that simply means that start_paragraph ()
had to be called before we would allow any other paragraph operations
to have an effect. */
if (!must_start_paragraph)
{
int amount_to_indent = 0;
/* If doing indentation, then insert the appropriate amount. */
if (!no_indent)
{
if (inhibit_paragraph_indentation)
{
amount_to_indent = current_indent;
if (inhibit_paragraph_indentation < 0)
inhibit_paragraph_indentation++;
}
else if (paragraph_start_indent < 0)
amount_to_indent = current_indent;
else
amount_to_indent = current_indent + paragraph_start_indent;
if (amount_to_indent >= output_column)
{
amount_to_indent -= output_column;
indent (amount_to_indent);
output_column += amount_to_indent;
}
}
}
else
must_start_paragraph = 0;
}
/* Insert the indentation specified by AMOUNT. */
void
indent (int amount)
{
/* For every START_POS saved within the brace stack which will be affected
by this indentation, bump that start pos forward. */
adjust_braces_following (output_paragraph_offset, amount);
while (--amount >= 0)
insert (' ');
}
/* Search forward for STRING in input_text.
FROM says where where to start. */
int
search_forward (char *string, int from)
{
int len = strlen (string);
while (from < input_text_length)
{
if (strncmp (input_text + from, string, len) == 0)
return from;
from++;
}
return -1;
}
/* search_forward until n characters. */
int
search_forward_until_pos (char *string, int from, int end_pos)
{
int save_input_text_length = input_text_length;
input_text_length = end_pos;
from = search_forward (string, from);
input_text_length = save_input_text_length;
return from;
}
/* Return next non-whitespace and non-cr character. */
int
next_nonwhitespace_character (void)
{
/* First check the current input_text. Start from the next char because
we already have input_text[input_text_offset] in ``current''. */
int pos = input_text_offset + 1;
while (pos < input_text_length)
{
if (!cr_or_whitespace(input_text[pos]))
return input_text[pos];
pos++;
}
{ /* Can't find a valid character, so go through filestack
in case we are doing @include or expanding a macro. */
FSTACK *tos = filestack;
while (tos)
{
int tmp_input_text_length = filestack->size;
int tmp_input_text_offset = filestack->offset;
char *tmp_input_text = filestack->text;
while (tmp_input_text_offset < tmp_input_text_length)
{
if (!cr_or_whitespace(tmp_input_text[tmp_input_text_offset]))
return tmp_input_text[tmp_input_text_offset];
tmp_input_text_offset++;
}
tos = tos->next;
}
}
return -1;
}
/* An external image is a reference, kind of. The parsing is (not
coincidentally) similar, anyway. */
void
cm_image (int arg)
{
char *name_arg, *w_arg, *h_arg, *alt_arg, *ext_arg;
if (arg == END)
return;
name_arg = get_xref_token (1); /* expands all macros in image */
w_arg = get_xref_token (0);
h_arg = get_xref_token (0);
alt_arg = get_xref_token (1); /* expands all macros in alt text */
ext_arg = get_xref_token (0);
if (*name_arg)
{
struct stat file_info;
char *pathname = NULL;
char *fullname = xmalloc (strlen (name_arg)
+ (ext_arg && *ext_arg ? strlen (ext_arg) + 1: 4) + 1);
if (ext_arg && *ext_arg)
{
sprintf (fullname, "%s%s", name_arg, ext_arg);
if (access (fullname, R_OK) != 0)
pathname = get_file_info_in_path (fullname, include_files_path,
&file_info);
if (pathname == NULL)
{
/* Backwards compatibility (4.6 <= version < 4.7):
try prefixing @image's EXTENSION parameter with a period. */
sprintf (fullname, "%s.%s", name_arg, ext_arg);
if (access (fullname, R_OK) != 0)
pathname = get_file_info_in_path (fullname, include_files_path,
&file_info);
}
}
else
{
sprintf (fullname, "%s.png", name_arg);
if (access (fullname, R_OK) != 0)
{
pathname = get_file_info_in_path (fullname,
include_files_path, &file_info);
if (pathname == NULL)
{
sprintf (fullname, "%s.jpg", name_arg);
if (access (fullname, R_OK) != 0)
pathname = get_file_info_in_path (fullname,
include_files_path, &file_info);
}
}
}
if (html)
{
int image_in_div = 0;
if (pathname == NULL && access (fullname, R_OK) != 0)
{
line_error(_("@image file `%s' (for HTML) not readable: %s"),
fullname, strerror (errno));
return;
}
if (pathname != NULL && access (pathname, R_OK) != 0)
{
line_error (_("No such file `%s'"),
fullname);
return;
}
if (!paragraph_is_open)
{
add_html_block_elt ("<div class=\"block-image\">");
image_in_div = 1;
}
add_html_elt ("<img src=");
add_word_args ("\"%s\"", fullname);
add_html_elt (" alt=");
add_word_args ("\"%s\">",
escape_string (*alt_arg ? text_expansion (alt_arg) : fullname));
if (image_in_div)
add_html_block_elt ("</div>");
}
else if (xml && docbook)
xml_insert_docbook_image (name_arg);
else if (xml)
{
extern int xml_in_para;
extern int xml_no_para;
int elt = xml_in_para ? INLINEIMAGE : IMAGE;
if (!xml_in_para)
xml_no_para++;
xml_insert_element_with_attribute (elt,
START, "width=\"%s\" height=\"%s\" name=\"%s\" extension=\"%s\"",
w_arg, h_arg, name_arg, ext_arg);
xml_insert_element (IMAGEALTTEXT, START);
execute_string ("%s", alt_arg);
xml_insert_element (IMAGEALTTEXT, END);
xml_insert_element (elt, END);
if (!xml_in_para)
xml_no_para--;
}
else
{ /* Try to open foo.EXT or foo.txt. */
FILE *image_file;
char *txtpath = NULL;
char *txtname = xmalloc (strlen (name_arg)
+ (ext_arg && *ext_arg
? strlen (ext_arg) : 4) + 1);
strcpy (txtname, name_arg);
strcat (txtname, ".txt");
image_file = fopen (txtname, "r");
if (image_file == NULL)
{
txtpath = get_file_info_in_path (txtname,
include_files_path, &file_info);
if (txtpath != NULL)
image_file = fopen (txtpath, "r");
}
if (image_file != NULL
|| access (fullname, R_OK) == 0
|| (pathname != NULL && access (pathname, R_OK) == 0))
{
int ch;
int save_inhibit_indentation = inhibit_paragraph_indentation;
int save_filling_enabled = filling_enabled;
int image_in_brackets = paragraph_is_open;
/* Write magic ^@^H[image ...^@^H] cookie in the info file, if
there's an accompanying bitmap. Otherwise just include the
text image. In the plaintext output, always include the text
image without the magic cookie. */
int use_magic_cookie = !no_headers
&& access (fullname, R_OK) == 0 && !STREQ (fullname, txtname);
inhibit_paragraph_indentation = 1;
filling_enabled = 0;
last_char_was_newline = 0;
if (use_magic_cookie)
{
add_char ('\0');
add_word ("\010[image");
if (access (fullname, R_OK) == 0
|| (pathname != NULL && access (pathname, R_OK) == 0))
add_word_args (" src=\"%s\"", fullname);
if (*alt_arg)
add_word_args (" alt=\"%s\"", alt_arg);
}
if (image_file != NULL)
{
if (use_magic_cookie)
add_word (" text=\"");
if (image_in_brackets)
add_char ('[');
/* Maybe we need to remove the final newline if the image
file is only one line to allow in-line images. On the
other hand, they could just make the file without a
final newline. */
while ((ch = getc (image_file)) != EOF)
{
if (use_magic_cookie && (ch == '"' || ch == '\\'))
add_char ('\\');
add_char (ch);
}
if (image_in_brackets)
add_char (']');
if (use_magic_cookie)
add_char ('"');
if (fclose (image_file) != 0)
perror (txtname);
}
if (use_magic_cookie)
{
add_char ('\0');
add_word ("\010]");
}
inhibit_paragraph_indentation = save_inhibit_indentation;
filling_enabled = save_filling_enabled;
}
else
warning (_("@image file `%s' (for text) unreadable: %s"),
txtname, strerror (errno));
}
free (fullname);
if (pathname)
free (pathname);
}
else
line_error (_("@image missing filename argument"));
if (name_arg)
free (name_arg);
if (w_arg)
free (w_arg);
if (h_arg)
free (h_arg);
if (alt_arg)
free (alt_arg);
if (ext_arg)
free (ext_arg);
}
/* Conditionals. */
/* A structure which contains `defined' variables. */
typedef struct defines {
struct defines *next;
char *name;
char *value;
} DEFINE;
/* The linked list of `set' defines. */
DEFINE *defines = NULL;
/* Add NAME to the list of `set' defines. */
static void
set (char *name, char *value)
{
DEFINE *temp;
for (temp = defines; temp; temp = temp->next)
if (strcmp (name, temp->name) == 0)
{
free (temp->value);
temp->value = xstrdup (value);
return;
}
temp = xmalloc (sizeof (DEFINE));
temp->next = defines;
temp->name = xstrdup (name);
temp->value = xstrdup (value);
defines = temp;
if (xml && !docbook)
{
xml_insert_element_with_attribute (SETVALUE, START, "name=\"%s\"", name);
execute_string ("%s", value);
xml_insert_element (SETVALUE, END);
}
}
/* Remove NAME from the list of `set' defines. */
static void
clear (char *name)
{
DEFINE *temp, *last;
last = NULL;
temp = defines;
while (temp)
{
if (strcmp (temp->name, name) == 0)
{
if (last)
last->next = temp->next;
else
defines = temp->next;
free (temp->name);
free (temp->value);
free (temp);
break;
}
last = temp;
temp = temp->next;
}
if (xml && !docbook)
{
xml_insert_element_with_attribute (CLEARVALUE, START, "name=\"%s\"", name);
xml_insert_element (CLEARVALUE, END);
}
}
/* Return the value of NAME. The return value is NULL if NAME is unset. */
static char *
set_p (char *name)
{
DEFINE *temp;
for (temp = defines; temp; temp = temp->next)
if (strcmp (temp->name, name) == 0)
return temp->value;
return NULL;
}
/* Create a variable whose name appears as the first word on this line. */
void
cm_set (void)
{
handle_variable (SET);
}
/* Remove a variable whose name appears as the first word on this line. */
void
cm_clear (void)
{
handle_variable (CLEAR);
}
void
cm_ifset (void)
{
handle_variable (IFSET);
}
void
cm_ifclear (void)
{
handle_variable (IFCLEAR);
}
/* This command takes braces, but we parse the contents specially, so we
don't use the standard brace popping code.
The syntax @ifeq{arg1, arg2, texinfo-commands} performs texinfo-commands
if ARG1 and ARG2 caselessly string compare to the same string, otherwise,
it produces no output. */
void
cm_ifeq (void)
{
char **arglist;
arglist = get_brace_args (0);
if (arglist)
{
if (array_len (arglist) > 1)
{
if ((strcasecmp (arglist[0], arglist[1]) == 0) &&
(arglist[2]))
execute_string ("%s\n", arglist[2]);
}
free_array (arglist);
}
}
void
cm_value (int arg, int start_pos, int end_pos)
{
static int value_level = 0, saved_meta_pos = -1;
/* xml_add_char() skips any content inside menus when output format is
Docbook, so @value{} is no use there. Also start_pos and end_pos does not
get updated, causing name to be empty string. So just return. */
if (docbook && in_menu)
return;
/* All the text after @value{ upto the matching } will eventually
disappear from output_paragraph, when this function is called
with ARG == END. If the text produced until then sets
meta_char_pos, we will need to restore it to the value it had
before @value was seen. So we need to save the previous value
of meta_char_pos here. */
if (arg == START)
{
/* If we are already inside some outer @value, don't overwrite
the value saved in saved_meta_pos. */
if (!value_level)
saved_meta_pos = meta_char_pos;
value_level++;
/* While the argument of @value is processed, we need to inhibit
textual transformations like "--" into "-", since @set didn't
do that when it grabbed the name of the variable. */
in_fixed_width_font++;
}
else
{
char *name = (char *) &output_paragraph[start_pos];
char *value;
output_paragraph[end_pos] = 0;
name = xstrdup (name);
value = set_p (name);
output_column -= end_pos - start_pos;
output_paragraph_offset = start_pos;
/* Restore the previous value of meta_char_pos if the stuff
inside this @value{} moved it. */
if (saved_meta_pos == -1) /* can't happen inside @value{} */
abort ();
if (value_level == 1
&& meta_char_pos >= start_pos && meta_char_pos < end_pos)
{
meta_char_pos = saved_meta_pos;
saved_meta_pos = -1;
}
value_level--;
/* No need to decrement in_fixed_width_font, since before
we are called with arg == END, the reader loop already
popped the brace stack, which restored in_fixed_width_font,
among other things. */
if (value)
execute_string ("%s", value);
else
{
warning (_("undefined flag: %s"), name);
add_word_args (_("{No value for `%s'}"), name);
}
free (name);
}
}
/* Set, clear, or conditionalize based on ACTION. */
static void
handle_variable (int action)
{
char *name;
get_rest_of_line (0, &name);
/* If we hit the end of text in get_rest_of_line, backing up
input pointer will cause the last character of the last line
be pushed back onto the input, which is wrong. */
if (input_text_offset < input_text_length)
backup_input_pointer ();
handle_variable_internal (action, name);
free (name);
}
static void
handle_variable_internal (int action, char *name)
{
char *temp;
int delimiter, additional_text_present = 0;
/* Only the first word of NAME is a valid tag. */
temp = name;
delimiter = 0;
while (*temp && (delimiter || !whitespace (*temp)))
{
/* #if defined (SET_WITH_EQUAL) */
if (*temp == '"' || *temp == '\'')
{
if (*temp == delimiter)
delimiter = 0;
else
delimiter = *temp;
}
/* #endif SET_WITH_EQUAL */
temp++;
}
if (*temp)
additional_text_present++;
*temp = 0;
if (!*name)
line_error (_("%c%s requires a name"), COMMAND_PREFIX, command);
else
{
switch (action)
{
case SET:
{
char *value;
#if defined (SET_WITH_EQUAL)
/* Allow a value to be saved along with a variable. The value is
the text following an `=' sign in NAME, if any is present. */
for (value = name; *value && *value != '='; value++);
if (*value)
*value++ = 0;
if (*value == '"' || *value == '\'')
{
value++;
value[strlen (value) - 1] = 0;
}
#else /* !SET_WITH_EQUAL */
/* The VALUE of NAME is the remainder of the line sans
whitespace. */
if (additional_text_present)
{
value = temp + 1;
canon_white (value);
}
else
value = "";
#endif /* !SET_WITH_VALUE */
set (name, value);
}
break;
case CLEAR:
clear (name);
break;
case IFSET:
case IFCLEAR:
/* If IFSET and NAME is not set, or if IFCLEAR and NAME is set,
read lines from the the file until we reach a matching
"@end CONDITION". This means that we only take note of
"@ifset/clear" and "@end" commands. */
{
char condition[8];
int condition_len;
int orig_line_number = line_number;
if (action == IFSET)
strcpy (condition, "ifset");
else
strcpy (condition, "ifclear");
condition_len = strlen (condition);
if ((action == IFSET && !set_p (name))
|| (action == IFCLEAR && set_p (name)))
{
int level = 0, done = 0;
while (!done && input_text_offset < input_text_length)
{
char *freeable_line, *line;
get_rest_of_line (0, &freeable_line);
for (line = freeable_line; whitespace (*line); line++);
if (*line == COMMAND_PREFIX &&
(strncmp (line + 1, condition, condition_len) == 0))
level++;
else if (strncmp (line, "@end", 4) == 0)
{
char *cname = line + 4;
char *temp;
while (*cname && whitespace (*cname))
cname++;
temp = cname;
while (*temp && !whitespace (*temp))
temp++;
*temp = 0;
if (strcmp (cname, condition) == 0)
{
if (!level)
{
done = 1;
}
else
level--;
}
}
free (freeable_line);
}
if (!done)
file_line_error (input_filename, orig_line_number,
_("Reached eof before matching @end %s"),
condition);
/* We found the end of a false @ifset/ifclear. If we are
in a menu, back up over the newline that ends the ifset,
since that newline may also begin the next menu entry. */
break;
}
else
{
if (action == IFSET)
begin_insertion (ifset);
else
begin_insertion (ifclear);
}
}
break;
}
}
}
/* Execution of random text not in file. */
typedef struct {
char *string; /* The string buffer. */
int size; /* The size of the buffer. */
int in_use; /* Nonzero means string currently in use. */
} EXECUTION_STRING;
static EXECUTION_STRING **execution_strings = NULL;
static int execution_strings_index = 0;
static int execution_strings_slots = 0;
static EXECUTION_STRING *
get_execution_string (int initial_size)
{
int i = 0;
EXECUTION_STRING *es = NULL;
if (execution_strings)
{
for (i = 0; i < execution_strings_index; i++)
if (execution_strings[i] && (execution_strings[i]->in_use == 0))
{
es = execution_strings[i];
break;
}
}
if (!es)
{
if (execution_strings_index + 1 >= execution_strings_slots)
{
execution_strings = xrealloc
(execution_strings,
(execution_strings_slots += 3) * sizeof (EXECUTION_STRING *));
for (; i < execution_strings_slots; i++)
execution_strings[i] = NULL;
}
execution_strings[execution_strings_index] =
xmalloc (sizeof (EXECUTION_STRING));
es = execution_strings[execution_strings_index];
execution_strings_index++;
es->size = 0;
es->string = NULL;
es->in_use = 0;
}
if (initial_size > es->size)
{
es->string = xrealloc (es->string, initial_size);
es->size = initial_size;
}
return es;
}
/* Given a pointer to TEXT and its desired length NEW_LEN, find TEXT's
entry in the execution_strings[] array and change the .STRING and
.SIZE members of that entry as appropriate. */
void
maybe_update_execution_strings (char **text, unsigned int new_len)
{
int i = 0;
if (execution_strings)
{
for (i = 0; i < execution_strings_index; i++)
if (execution_strings[i] && (execution_strings[i]->in_use == 1) &&
execution_strings[i]->string == *text)
{
/* Don't ever shrink the string storage in execution_strings[]!
execute_string assumes that it is always big enough to store
every possible execution_string, and will break if that's
not true. So we only enlarge the string storage if the
current size isn't big enough. */
if (execution_strings[i]->size < new_len)
{
execution_strings[i]->string =
*text = xrealloc (*text, new_len + 1);
execution_strings[i]->size = new_len + 1;
}
return;
}
}
/* We should *never* end up here, since if we are inside
execute_string, TEXT is always in execution_strings[]. */
abort ();
}
/* FIXME: this is an arbitrary limit. */
#define EXECUTE_STRING_MAX 16*1024
/* Execute the string produced by formatting the ARGs with FORMAT. This
is like submitting a new file with @include. */
void
#if defined (VA_FPRINTF) && __STDC__
execute_string (char *format, ...)
#else
execute_string (format, va_alist)
char *format;
va_dcl
#endif
{
EXECUTION_STRING *es;
char *temp_string, *temp_input_filename;
#ifdef VA_FPRINTF
va_list ap;
#endif
int insertion_level_at_start = insertion_level;
es = get_execution_string (EXECUTE_STRING_MAX);
temp_string = es->string;
es->in_use = 1;
VA_START (ap, format);
#ifdef VA_SPRINTF
VA_SPRINTF (temp_string, format, ap);
#else
sprintf (temp_string, format, a1, a2, a3, a4, a5, a6, a7, a8);
#endif /* not VA_SPRINTF */
va_end (ap);
pushfile ();
input_text_offset = 0;
input_text = temp_string;
input_text_length = strlen (temp_string);
input_filename = xstrdup (input_filename);
temp_input_filename = input_filename;
executing_string++;
reader_loop ();
/* If insertion stack level changes during execution, that means a multiline
command is used inside braces or @section ... kind of commands. */
if (insertion_level_at_start != insertion_level)
{
line_error (_("Multiline command %c%s used improperly"),
COMMAND_PREFIX,
command);
/* We also need to keep insertion_level intact to make sure warnings are
issued for @end ... command. */
while (insertion_level > insertion_level_at_start)
pop_insertion ();
}
popfile ();
executing_string--;
es->in_use = 0;
free (temp_input_filename);
}
/* Return what would be output for STR (in newly-malloced memory), i.e.,
expand Texinfo commands. If IMPLICIT_CODE is set, expand @code{STR}.
This is generally used for short texts; filling, indentation, and
html escapes are disabled. */
char *
expansion (char *str, int implicit_code)
{
char *result;
/* Inhibit indentation and filling, so that extra newlines
are not added to the expansion. (This is undesirable if
we write the expanded text to macro_expansion_output_stream.) */
int saved_filling_enabled = filling_enabled;
int saved_indented_fill = indented_fill;
int saved_no_indent = no_indent;
int saved_escape_html = escape_html;
filling_enabled = 0;
indented_fill = 0;
no_indent = 1;
escape_html = 0;
result = full_expansion (str, implicit_code);
filling_enabled = saved_filling_enabled;
indented_fill = saved_indented_fill;
no_indent = saved_no_indent;
escape_html = saved_escape_html;
return result;
}
/* Expand STR (or @code{STR} if IMPLICIT_CODE is nonzero). No change to
any formatting parameters -- filling, indentation, html escapes,
etc., are not reset. */
char *
full_expansion (char *str, int implicit_code)
{
int length;
char *result;
/* Inhibit any real output. */
int start = output_paragraph_offset;
int saved_paragraph_is_open = paragraph_is_open;
int saved_output_column = output_column;
/* More output state to save. */
int saved_meta_pos = meta_char_pos;
int saved_last_char = last_inserted_character;
int saved_last_nl = last_char_was_newline;
/* If we are called in the middle of processing a command, we need
to dup and save the global variable `command' (which holds the
name of this command), since the recursive reader loop will free
it from under our feet if it finds any macros in STR. */
char *saved_command = command ? xstrdup (command) : NULL;
inhibit_output_flushing ();
paragraph_is_open = 1;
if (strlen (str) > (implicit_code
? EXECUTE_STRING_MAX - 1 - sizeof("@code{}")
: EXECUTE_STRING_MAX - 1))
line_error (_("`%.40s...' is too long for expansion; not expanded"), str);
else
execute_string (implicit_code ? "@code{%s}" : "%s", str);
uninhibit_output_flushing ();
/* Copy the expansion from the buffer. */
length = output_paragraph_offset - start;
result = xmalloc (1 + length);
memcpy (result, (char *) (output_paragraph + start), length);
result[length] = 0;
/* Pretend it never happened. */
free_and_clear (&command);
command = saved_command;
output_paragraph_offset = start;
paragraph_is_open = saved_paragraph_is_open;
output_column = saved_output_column;
meta_char_pos = saved_meta_pos;
last_inserted_character = saved_last_char;
last_char_was_newline = saved_last_nl;
return result;
}
/* Return text (info) expansion of STR no matter what the current output
format is. */
char *
text_expansion (char *str)
{
char *ret;
int save_html = html;
int save_xml = xml;
int save_docbook = docbook;
html = 0;
xml = 0;
docbook = 0;
ret = expansion (str, 0);
html = save_html;
xml = save_xml;
docbook = save_docbook;
return ret;
}
/* Set the paragraph indentation variable to the value specified in STRING.
Values can be:
`asis': Don't change existing indentation.
`none': Remove existing indentation.
NUM: Indent NUM spaces at the starts of paragraphs.
If NUM is zero, we assume `none'.
Returns 0 if successful, or nonzero if STRING isn't one of the above. */
int
set_paragraph_indent (char *string)
{
if (strcmp (string, "asis") == 0 || strcmp (string, _("asis")) == 0)
paragraph_start_indent = 0;
else if (strcmp (string, "none") == 0 || strcmp (string, _("none")) == 0)
paragraph_start_indent = -1;
else
{
if (sscanf (string, "%d", ¶graph_start_indent) != 1)
return -1;
else
{
if (paragraph_start_indent == 0)
paragraph_start_indent = -1;
}
}
return 0;
}
|