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
|
#!@PERL@ -w
########################################################################
#
# filepp 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 of the License, 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; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
########################################################################
#
# Project : File Preprocessor
# Filename : $RCSfile: filepp.in,v $
# Author : $Author: darren $
# Maintainer : Darren Miller: darren@cabaret.demon.co.uk
# File version : $Revision: 1.119 $
# Last changed : $Date: 2003/07/13 15:52:41 $
# Description : Main program
# Licence : GNU copyleft
#
########################################################################
package Filepp;
use strict "vars";
use strict "subs";
# Used to all filepp to work with any char, not just ascii,
# feel free to remove this if it causes you problems
use bytes;
# version number of program
my $VERSION = '@VERSION@';
# list of paths to search for modules, normal Perl list + module dir
push(@INC, "@moduledir@");
# index of keywords supported and functions to deal with them
my %Keywords = (
'comment' => \&Comment,
'define' => \&Define,
'elif' => \&Elif,
'else' => \&Else,
'endif' => \&Endif,
'error' => \&Error,
'if' => \&If,
'ifdef' => \&Ifdef,
'ifndef' => \&Ifndef,
'include' => \&Include,
'pragma' => \&Pragma,
'undef' => \&Undef,
'warning' => \&Warning
);
# set of functions which process the file in the Parse routine.
# Processors are functions which take in a line and return the processed line.
# Note: this is done as a string rather than pointer to a function because
# it makes list easier to modify/remove from/print.
my @Processors = ( "Filepp::ParseKeywords", "Filepp::ReplaceDefines" );
# processor types say what the processor should be run on: choice is:
# 0: Everything (default)
# 1: Full lines only (lines originating from Parse function)
# 2: Part lines only (lines originating from within keywords, eg:
# #if "condition", "condition" is a part line)
my %ProcessorTypes = (
'Filepp::ParseKeywords' => 1,
'Filepp::ReplaceDefines' => 0
);
# functions to run each time a new base input file is opened or closed
my @OpenInputFuncs = ();
my @CloseInputFuncs = ();
# functions to run each time a new output file is opened or closed
my @OpenOutputFuncs = ();
my @CloseOutputFuncs = ();
# safe mode is for the paranoid, when enabled turns off #pragma filepp,
# enabled by default
my $safe_mode = 0;
# test for shebang mode, used for "filepp script", ie. executable file with
# "#!/usr/bin/perl /usr/local/bin/filepp" at the top
my $shebang = 1;
# allow $keywordchar, $contchar, $optlineendchar and $macroprefix
# to be perl regexps
my $charperlre = 0;
# character(s) which prefix environment variables - defaults to shell-style '$'
my $envchar = "\$";
# boolean determining whether line continuation is implicit if there are more
# open brackets than close brackets on a line
# disabled by default
my $parselineend = \&Filepp::ParseLineEnd;
# character(s) which replace continuation char(s) - defaults to C-style nothing
my $contrepchar = "";
# character(s) which prefix keywords - defaults to C-style '#'
my $keywordchar;
if($charperlre) { $keywordchar = "\#"; }
else { $keywordchar = "\Q#\E"; }
# character(s) which signifies continuation of a line - defaults to C-style '\'
my $contchar;
if($charperlre) { $contchar = "\\\\"; }
else { $contchar = "\Q\\\E"; }
# character(s) which optionally signifies the end of a line -
# defaults to empty string ''
my $optlineendchar = "";
# character(s) which prefix macros - defaults to nothing
my $macroprefix = "";
# flag to use macro prefix in keywords (on by default)
my $macroprefixinkeywords = 1;
# check if macros must occur as words when replacing, set this to '\b' if
# you prefer cpp style behaviour as default
my $bound = '';
# number of line currently being parsed (int)
my $line = 0;
# file currently being parsed
my $file = "";
# list of input files
my @Inputfiles;
# list of files to include macros from
my @Imacrofiles;
# flag to control when output is written
my $output = 1;
# name of outputfile - defaults to STDOUT
my $outputfile = "";
# overwrite mode - automatically overwrites old file with new file
my $overwrite = 0;
# overwrite conversion mode - conversion from input filename to output filename
my $overwriteconv = "";
# list of keywords which have "if" functionality
my %Ifwords = ('if', '',
'ifdef', '',
'ifndef', '');
# list of keywords which have "else" functionality
my %Elsewords = ('else', '',
'elif', '');
# list of keywords which have "endif" functionality
my %Endifwords = ('endif', '');
# current level of include files
my $include_level = -1;
# suppress blank lines in header files (indexed by include level)
my $blanksuppopt = 0;
my @blanksupp;
# try to keep same number lines in output file as input file
my $preserveblank = 0;
# counter of recursion level for detecting recursive macros
my $recurse_level = -1;
# debugging info, 1=on, 0=off
my $debug = 0;
# send debugging info to stdout rather than stderr
my $debugstdout = 0;
# debug prefix character or string
my $debugprefix = "";
# debug postfix character or string
my $debugpostfix = "\n";
# hash of macros defined - standard ones already included
my %Defines = (
'__BASE_FILE__' => "",
'__DATE__' => "",
'__FILEPP_INPUT__' => "Generated automatically from __BASE_FILE__ by filepp",
'__FILE__' => $file,
'__INCLUDE_LEVEL__' => $include_level,
'__ISO_DATE__' => "",
'__LINE__' => $line,
'__NEWLINE__' => "\n",
'__NULL__' => "",
'__TAB__' => "\t",
'__TIME__' => "",
'__VERSION__' => $VERSION
);
# hash of first chars in each macro
my %DefineLookup;
# length of longest and shortest define
my ($defmax, $defmin);
GenerateDefinesKeys();
# set default values for date and time
{
# conversions of month number into letters (0-11)
my @MonthChars = ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
#prepare standard defines
my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isbst) =
localtime(time());
$year += 1900;
$sec = sprintf("%02d", $sec);
$min = sprintf("%02d", $min);
$hour = sprintf("%02d", $hour);
$mday = sprintf("%02d", $mday);
$mon = sprintf("%02d", $mon);
Redefine("__TIME__", $hour.":".$min.":".$sec);
Redefine("__DATE__", $MonthChars[$mon]." ".$mday." ".$year);
$mon = sprintf("%02d", ++$mon);
Redefine("__ISO_DATE__", $year."-".$mon."-".$mday);
}
# hash table for arguments to macros which need them
my %DefinesArgs = ();
# hash table for functions which macros should call (if any)
my %DefinesFuncs = ();
# eat-trailing-whitespace flag for each macro
my %EatTrail = ();
# list of include paths
my @IncludePaths;
# help string
my $usage = "filepp: generic file preprocessor, version ".$VERSION."
usage: filepp [options] inputfile(s)
options:
-b\t\tsuppress blank lines from include files
-c\t\tread input from STDIN instead of file
-Dmacro[=defn]\tdefine macros (same as #define)
-d\t\tprint debugging information
-dd\t\tprint verbose debugging information
-dl\t\tprint some (light) debugging information
-dpre char\tprefix all debugging information with char
-dpost char\tpostfix all debugging information with char, defaults to newline
-ds\t\tsend debugging info to stdout rather than stderr
-e\t\tdefine all environment variables as macros
-ec char\tset environment variable prefix char to \"char\" (default \$)
-ecn\t\tset environment variable prefix char to nothing (default \$)
-h\t\tprint this help message
-Idir\t\tdirectory to search for include files
-imacros file\tread in macros from file, but discard rest of file
-k\t\tturn off parsing of all keywords, just macro expansion is done
-kc char\tset keyword prefix char to \"char\" (defaults to #)
-lc char\tset line continuation character to \"char\" (defaults to \\)
-lec char\tset optional keyword line end char to \"char\"
-lr char\tset line continuation replacement character to \"char\"
-lrn\t\tset line continuation replacement character to newline
-m module\tload module
-mp char\tprefix all macros with \"char\" (defaults to no prefix)
-mpnk\t\tdo not use macro prefix char in keywords
-Mdir\t\tdirectory to search for filepp modules
-o output\tname of output file (defaults to stdout)
-ov\t\toverwrite mode - output file will overwrite input file
-ovc IN=OUT\toutput file(s) will have be input file(s) with IN conveted to OUT
-pb\t\tpreseve blank lines in output that would normally be removed
-s\t\trun in safe mode (turns off pragma keyword)
-re\t\ttreat keyword and macro prefixes and line cont chars as reg exps
-u\t\tundefine all predefined macros
-v\t\tprint version and exit
-w\t\tturn on word boundaries when replacing macros
all other arguments are assumed to be input files
";
##############################################################################
# SetDebug - controls debugging level
##############################################################################
sub SetDebug
{
$debug = shift;
Debug("Debugging level set to $debug", 1);
}
##############################################################################
# Debugging info
##############################################################################
sub Debug
{
# print nothing if not debugging
if($debug == 0) { return; }
my $msg = shift;
my $level = 1;
# check if level has been provided
if($#_ > -1) { $level = shift; }
if($level <= $debug) {
# if currently parsing a file show filename and line number
if($file ne "" && $line > 0) {
$msg = $file.":".$line.": ".$msg;
}
# else show program name
else { $msg = "filepp: ".$msg; }
if($debugstdout) {
print(STDOUT $debugprefix.$msg.$debugpostfix);
}
else {
print(STDERR $debugprefix.$msg.$debugpostfix);
}
}
}
##############################################################################
# Standard error handler.
# #error msg - print error message "msg" and exit
##############################################################################
sub Error
{
my $msg = shift;
# close and delete output file if created
close(OUTPUT);
if($outputfile ne "-") { # output is not stdout
my $inputfile;
my $found = 0;
# do paranoid check to make sure we are not deleting an input file
foreach $inputfile (@Inputfiles) {
if($outputfile eq $inputfile) { $found = 1; last; }
}
# delete output file
if($found == 0) { unlink($outputfile); }
}
# print error message
$debug = 1;
Debug($msg, 0);
exit(1);
}
##############################################################################
# SafeMode - turns safe mode on
##############################################################################
sub SafeMode
{
$safe_mode = 1;
Debug("Filepp safe mode enabled", 2);
}
##############################################################################
# CleanStart($sline) - strip leading whitespace from start of $sline.
##############################################################################
sub CleanStart
{
my $sline = shift;
for($sline) {
# '^' = start of line, '\s+' means all whitespace, replace with nothing
s/^\s+//;
}
return $sline;
}
##############################################################################
# Strip($sline, $char, $level) - strip $char's from start and end of $sline
# removes up to $level $char's from start and end of line, it is not an
# error if $level chars do not exist at the start or end of line
##############################################################################
sub Strip
{
my $sline = shift;
my $char = shift;
my $level = shift;
# strip leading chars from line
$sline =~ s/\A([$char]{0,$level})//g;
# strip trailing chars from line
$sline =~ s/([$char]{0,$level})\Z//g;
return $sline;
}
##############################################################################
# SetMacroPrefix $string - prefixs all macros with $string
##############################################################################
sub SetMacroPrefix
{
$macroprefix = shift;
# make sure prefix will not be treated as a Perl regular expression
if(!$charperlre) { $macroprefix = "\Q$macroprefix\E"; }
Debug("Setting macro prefix to <".$macroprefix.">", 2);
}
##############################################################################
# SetKeywordchar $string - sets the first char(s) of each keyword to
# something other than "#"
##############################################################################
sub SetKeywordchar
{
$keywordchar = shift;
# make sure char will not be treated as a Perl regular expression
if(!$charperlre) { $keywordchar = "\Q$keywordchar\E"; }
Debug("Setting keyword prefix character to <".$keywordchar.">", 2);
}
##############################################################################
# GetKeywordchar - returns the current keywordchar
##############################################################################
sub GetKeywordchar
{
return $keywordchar;
}
##############################################################################
# SetContchar $string - sets the line continuation char to something other
# than "\"
##############################################################################
sub SetContchar
{
$contchar = shift;
# make sure char will not be treated as a Perl regular expression
if(!$charperlre) { $contchar = "\Q$contchar\E"; }
Debug("Setting line continuation character to <".$contchar.">", 2);
}
##############################################################################
# SetContrepchar $string - sets the replace of the line continuation char to
# something other than ""
##############################################################################
sub SetContrepchar
{
$contrepchar = shift;
Debug("Setting line continuation replacement character to <".$contrepchar.">", 2);
}
##############################################################################
# SetOptLineEndchar $string - sets the optional line end char to something
# other than ""
##############################################################################
sub SetOptLineEndchar
{
$optlineendchar = shift;
# make sure char will not be treated as a Perl regular expression
if(!$charperlre) { $optlineendchar = "\Q$optlineendchar\E"; }
Debug("Setting optional line end character to <".$optlineendchar.">", 2);
}
##############################################################################
# SetEnvchar $string - sets the first char(s) of each defined environment
# variable to $string - NOTE: change only takes effect when DefineEnv run
##############################################################################
sub SetEnvchar
{
$envchar = shift;
Debug("Setting environment variable prefix character to <".$envchar.">",2);
}
##############################################################################
# RunProcessors $string, $calledfrom
# run the current processing chain on the string
# $string is the string to be processed and should be returned by the processor
# $calledfrom says where the processors are called from, the choice is:
#
# 0 or default: Part line (from within a keyword) - if called recursively
# runs all processors AFTER current processor, then continues with processing.
# This is used when a keyword want to run all remaining processors on a line
# before doing its keyword task.
#
# 1: Full line (from Parse function) - if called recursively runs all
# processors BEFORE current processor, then continues with processing
#
# 2: Part line (from within a keyword) - if called recursively runs all
# processors BEFORE current processor, then continues with processing.
# This is used when keywords are using text taken from somewhere other than
# the current line, this text needs to go through the same processors as
# the current line has been through so it can "catch up" (eg: regexp.pm).
#
##############################################################################
my @Running;
my @Currentproc;
sub RunProcessors
{
my $string = shift;
my $calledfrom = 0;
if($#_ > -1) { $calledfrom = shift; }
my $i;
# turn off macoprefix if in a keyword
my $tmpprefix = "";
if($calledfrom != 1 && $macroprefixinkeywords == 0) {
$tmpprefix = $macroprefix;
$macroprefix = "";
}
# These tests are done to make RunProcessors recursion safe.
# If RunProcessors is called from with a function that was itself called
# by RunProcessors, then the second calling of RunProcessors will only
# execute the processors before the currently running processor in the
# chain.
my $recursing = 0;
my $firstproc = 0;
my $lastproc = $#Processors;
if($Running[$include_level]) {
if($calledfrom == 0) {
$firstproc = $Currentproc[$include_level] + 1;
}
else {
$lastproc = $Currentproc[$include_level] - 1;
}
$recursing = 1;
}
else { $Running[$include_level] = 1; }
for($i = $firstproc; $i <= $lastproc; $i++) {
if(!$recursing) { $Currentproc[$include_level] = $i; }
# called from anywhere (default)
if($ProcessorTypes{$Processors[$i]} == 0 ||
# called from keyword (part lines only - within keywords)
(($calledfrom == 0 || $calledfrom == 2) &&
$ProcessorTypes{$Processors[$i]} == 2) ||
# called from Parse function (whole lines only)
($calledfrom == 1 && $ProcessorTypes{$Processors[$i]} == 1)) {
# run processor
# Debug("Running processor $Processors[$i] on \"$string\"", 2);
$string = $Processors[$i]->($string);
}
# check that no processors have been deleted (bigdef.pm)
if($lastproc > $#Processors) { $lastproc = $#Processors; }
}
if(!$recursing) { $Running[$include_level] = 0; }
# return macro prefix to its former glory
if($calledfrom != 1 && $macroprefixinkeywords == 0) {
$macroprefix = $tmpprefix;
}
return $string;
}
##############################################################################
# PrintProcessors
# print the current processing chain
##############################################################################
sub PrintProcessors
{
my $processor;
Debug("Current processing chain:", 3);
my $i = 0;
foreach $processor (@Processors) {
Debug($processor." type ".$ProcessorTypes{$Processors[$i]}, 3);
$i++;
}
}
##############################################################################
# AddProcessor(function[, first[, type]])
# add a line processor to processing chain, defaults to end of chain
# if "first" is set to one adds processor to start of chain
##############################################################################
sub AddProcessor
{
my $function = shift;
my $first = 0;
my $type = 0;
# check if flag to add processor to start of chain is set
if($#_ > -1) { $first = shift; }
# check if processor has a type
if($#_ > -1) { $type = shift; }
# adding processor to start of chasin
if($first) {
@Processors = reverse(@Processors);
}
push(@Processors, $function);
if($first) {
@Processors = reverse(@Processors);
}
$ProcessorTypes{$function} = $type;
Debug("Added processor ".$function." of type ".$type, 2);
if($debug > 1) { PrintProcessors(); }
}
##############################################################################
# AddProcessorAfter(function, processor[, type])
# add a line processor to processing chain immediately after an existing
# processor, if existing processor not found, new processor is added to
# end of chain
##############################################################################
sub AddProcessorAfter
{
my $function = shift;
my $existing = shift;
my $type = 0;
# check if processor has a type
if($#_ > -1) { $type = shift; }
my $i = 0;
my $found = 0;
my @CurrentProcessors = @Processors;
my $processor;
# reset processing chain
@Processors = ();
foreach $processor (@CurrentProcessors) {
push(@Processors, $processor);
if(!$found) {
# check done as regular expression for greater flexibility
if($processor =~ /$existing/) {
push(@Processors, $function);
$found = 1;
}
}
}
if(!$found) {
Warning("Did not find processor $existing in chain, processor $processor added to end of list");
AddProcessor($function, 0, $type);
return;
}
$ProcessorTypes{$function} = $type;
Debug("Added processor ".$function." of type ".$type, 2);
if($debug > 1) { PrintProcessors(); }
}
##############################################################################
# AddProcessorBefore(function, processor[, type])
# add a line processor to processing chain immediately after an existing
# processor, if existing processor not found, new processor is added to
# end of chain
##############################################################################
sub AddProcessorBefore
{
my $function = shift;
my $existing = shift;
my $type = 0;
# check if processor has a type
if($#_ > -1) { $type = shift; }
my $i = 0;
my $found = 0;
my @CurrentProcessors = @Processors;
my $processor;
# reset processing chain
@Processors = ();
foreach $processor (@CurrentProcessors) {
if(!$found) {
# check done as regular expression for greater flexibility
if($processor =~ /$existing/) {
push(@Processors,$function);
$found = 1;
}
}
push(@Processors, $processor);
}
if(!$found) {
Warning("Did not find processor $existing in chain, processor $processor added to start of list");
AddProcessor($function, 1, $type);
return;
}
$ProcessorTypes{$function} = $type;
Debug("Added processor ".$function." of type ".$type, 2);
if($debug > 1) { PrintProcessors(); }
}
##############################################################################
# RemoveProcessor(function)
# remove a processor name "function" from list
##############################################################################
sub RemoveProcessor
{
my $function = shift;
my $i = 0;
# find function
while($i <= $#Processors && $Processors[$i] ne $function) { $i++; }
# check function found
if($i > $#Processors) {
Warning("Attempt to remove function ".$function.
" which does not exist");
return;
}
# remove function
for(; $i<$#Processors; $i++) {
$Processors[$i] = $Processors[$i+1];
}
pop(@Processors);
delete($ProcessorTypes{$function});
Debug("Removed processor ".$function, 2);
PrintProcessors();
}
##############################################################################
# Add a function to run each time a base file is opened
##############################################################################
sub AddOpenInputFunc
{
my $func = shift;
push(@OpenInputFuncs, $func);
}
##############################################################################
# Add a function to run each time a base file is closed
##############################################################################
sub AddCloseInputFunc
{
my $func = shift;
push(@CloseInputFuncs, $func);
}
##############################################################################
# Add a function to run each time a base file is opened
##############################################################################
sub AddOpenOutputFunc
{
my $func = shift;
push(@OpenOutputFuncs, $func);
}
##############################################################################
# Add a function to run each time a base file is closed
##############################################################################
sub AddCloseOutputFunc
{
my $func = shift;
push(@CloseOutputFuncs, $func);
}
##############################################################################
# AddKeyword(keyword, function)
# Define a new keyword, when keyword (preceded by keyword char) is found,
# function is run on the remainder of the line.
##############################################################################
sub AddKeyword
{
my $keyword = shift;
my $function = shift;
$Keywords{$keyword} = $function;
Debug("Added keyword ".$keyword." which runs ".$function, 2);
}
##############################################################################
# RemoveKeyword(keyword)
# Keyword is deleted from list, all occurrences of keyword found in
# document are ignored.
##############################################################################
sub RemoveKeyword
{
my $keyword = shift;
delete $Keywords{$keyword};
# sort keywords index into reverse order, this ensures #if[n]def comes
# before #if when comparing input with keywords
Debug("Removed keyword ".$keyword, 2);
}
##############################################################################
# RemoveAllKeywords - removes all current keywords.
##############################################################################
sub RemoveAllKeywords
{
%Keywords = ();
Debug("Removed all current keywords", 2);
}
##############################################################################
# AddIfword - adds a keyword to ifword hash
##############################################################################
sub AddIfword
{
my $ifword = shift;
$Ifwords{$ifword} = '';
Debug("Added Ifword: ".$ifword, 2);
}
##############################################################################
# RemoveIfword - removes a keyword from ifword hash
##############################################################################
sub RemoveIfword
{
my $ifword = shift;
delete $Ifwords{$ifword};
Debug("Removed Ifword: ".$ifword, 2);
}
##############################################################################
# AddElseword - adds a keyword to elseword hash
##############################################################################
sub AddElseword
{
my $elseword = shift;
$Elsewords{$elseword} = '';
Debug("Added Elseword: ".$elseword, 2);
}
##############################################################################
# RemoveElseword - removes a keyword from elseword hash
##############################################################################
sub RemoveElseword
{
my $elseword = shift;
delete $Elsewords{$elseword};
Debug("Removed Elseword: ".$elseword, 2);
}
##############################################################################
# AddEndifword - adds a keyword to endifword hash
##############################################################################
sub AddEndifword
{
my $endifword = shift;
$Endifwords{$endifword} = '';
Debug("Added Endifword: ".$endifword, 2);
}
##############################################################################
# RemoveEndifword - removes a keyword from endifword hash
##############################################################################
sub RemoveEndifword
{
my $endifword = shift;
delete $Endifwords{$endifword};
Debug("Removed Endifword: ".$endifword, 2);
}
##############################################################################
# AddIncludePath - adds another include path to the list
##############################################################################
sub AddIncludePath
{
my $path = shift;
push(@IncludePaths, $path);
Debug("Added include path: \"".$path."\"", 2);
}
##############################################################################
# AddModulePath - adds another module search path to the list
##############################################################################
sub AddModulePath
{
my $path = shift;
push(@INC, $path);
Debug("Added module path: \"".$path."\"", 2);
}
# set if file being written to has same name as input file
my $same_file = "";
##############################################################################
# OpenOutputFile - opens the output file
##############################################################################
sub OpenOutputFile
{
$outputfile = shift;
Debug("Output file: ".$outputfile, 1);
# check for outputfile name, if not specified use STDOUT
if($outputfile eq "") { $outputfile = "-"; }
# output is not stdout and file with that name already exists
if($outputfile ne "-" && FileExists($outputfile) ) {
$same_file = $outputfile;
# paranoid: check file is writable and normal file
if(-w $outputfile && -f $outputfile) {
$outputfile = $outputfile.".fpp".$$;
my $i=0; # paranoid: check temp file does not exist
while(FileExists($outputfile)) {
$outputfile = $outputfile.$i;
$i++;
if($i >= 10) { Error("Cound not get temp filename"); }
}
}
else {
Error("Cannot read or write to ".$outputfile);
}
}
if(!open(OUTPUT, ">".$outputfile)) {
Error("Cannot open output file: ".$outputfile);
}
# run any open functions
my $func;
foreach $func (@OpenOutputFuncs) { $func->(); }
}
##############################################################################
# CloseOutputFile - close the output file
##############################################################################
sub CloseOutputFile
{
# run any close functions
my $func;
foreach $func (@CloseOutputFuncs) { $func->(); }
close(OUTPUT);
# if input and output have same name, rename output to input now
if($same_file ne "") {
if(rename($same_file, $same_file."~") == -1) {
Error("Could not rename ".$same_file." ".$same_file."~");
}
if(rename($outputfile, $same_file) == -1) {
Error("Could not rename ".$outputfile." ".$same_file);
}
}
# reset same_file
$same_file = "";
}
##############################################################################
# ChangeOutputFile - change the output file
##############################################################################
sub ChangeOutputFile
{
CloseOutputFile();
$outputfile = shift;
OpenOutputFile($outputfile);
}
##############################################################################
# AddInputFile - adds another input file to the list
##############################################################################
sub AddInputFile
{
my $file = shift;
push(@Inputfiles, $file);
Debug("Added input file: \"".$file."\"", 2);
}
##############################################################################
# UseModule(module)
# Module "module.pm" is used, "module.pm" can be any perl module and can use
# or replace any of the functions in this package
##############################################################################
sub UseModule
{
my $module = shift;
Debug("Loading module ".$module, 1);
require $module;
if($@) { Error($@); }
}
##############################################################################
# find end of next word in $sline, assumes leading whitespace removed
##############################################################################
sub GetNextWordEnd
{
my $sline = shift;
# check for whitespace in this string
if($sline =~ /\s/) {
# return length of everything up to first whitespace
return length($`);
}
# whitespace not found, return length of the whole string
return length($sline);
}
##############################################################################
# Print current table of defines - used for debugging
##############################################################################
sub PrintDefines
{
my $define;
Debug("Current ".$keywordchar."define's:", 3);
foreach $define (keys(%Defines)) {
Debug(" macro:\"".$define."\", definition:\"".$Defines{$define}."\"",3);
}
}
##############################################################################
# DefineEnv - define's all environment variables to macros, each prefixed
# by $envchar
##############################################################################
sub DefineEnv
{
my $macro;
Debug("Defining environment variables as macros", 2);
foreach $macro (keys(%ENV)) {
Define($envchar.$macro." ".$ENV{$macro});
}
}
##############################################################################
# Find out if arguments have been used with macro
##############################################################################
sub DefineArgsUsed
{
my $string = shift;
# check '(' is first non-whitespace char after macro
if($string =~ /^\s*\(/) {
return 1;
}
return 0;
}
##############################################################################
# ParseArgs($string) - find the arguments in a string of form
# (arg1, arg2, arg3...) trailing chars
# or
# arg1, arg2, arg3...
##############################################################################
sub ParseArgs
{
my $string = shift;
$string = CleanStart($string);
my @Chars;
my $char;
# split string into chars (can't use split coz it deletes \n at end)
for($char=0; $char<length($string); $char++) {
push(@Chars, substr($string, $char, 1));
}
my @Args; # list of Args
my $arg = "";
my @Endchar;
# special characters - no processing is done between character pairs
my %SpecialChars = ('(' => ')', '"' => '"', '\'' => '\'');
my $s = -1; # start of chars
my $backslash = 0;
# number of special char pairs to allow
my $pairs = 1;
# deal with first '(' if there (ie func(args) rather than func args)
if($#Chars >= 0 && $Chars[0] eq '(') {
push(@Endchar, ')');
$Chars[0] = '';
$s++;
$pairs++; # ignore this pair of special char pairs
}
# replace args with their values
foreach $char (@Chars) {
# deal with end of special chars, ),",' etc.
if($#Endchar > -1 && $char eq $Endchar[$#Endchar]) {
# if char before this was a backslash, ignore this char
if($backslash) {
chop($arg); # delete backslash from string
}
else {
# pop end char of list and reduce pairs if its a bracket
if(pop(@Endchar) eq ')') { $pairs--; }
}
}
# deal with start of special chars
elsif(exists($SpecialChars{$char})) {
# if char before this was a backslash, ignore this char
if($backslash) {
chop($arg); # delete backslash from string
}
# only start new pair if not already in special char pair
# (not including main args brackets of course)
elsif($#Endchar < $pairs-1) {
push(@Endchar, $SpecialChars{$char});
# need to treat brackets differently for macros within
# macros "this(that(tother)))", otherwise lose track of ()'s
if($char eq '(') { $pairs++; }
}
}
# deal with ',', add arg to list and start search for next one
elsif($#Endchar == $s && $char eq ',') {
# if char before this was a backslash, ignore this char
if($backslash) {
chop($arg); # delete backslash from string
}
else {
push(@Args, CleanStart($arg));
$char = '';
$arg = "";
next;
}
}
# deal \\ with an escaping \ ie. \" or \, or \\
if($char eq '\\') {
if($backslash) { # found \\
$backslash = 0; # second backslash ignored
chop($arg); # delete backslash from string
}
else{$backslash = 1;}
}
elsif($backslash) { $backslash = 0; }
# check for end of args string
if($#Endchar < $s) {
push(@Args, CleanStart($arg));
$char = '';
# put remainder of string back together
$arg = join('', @Chars);
last;
}
$arg = $arg.$char; # add char to current arg
$char = ''; # set char to null
}
# deal with last arg or string following args if it exists
push(@Args, $arg);
return @Args;
}
##############################################################################
# Find the arguments in a macro and replace them
##############################################################################
sub FindDefineArgs
{
my $substring = shift;
my $macro = shift;
# get definition list for this macro
my @Argnames = split(/\,/, $DefinesArgs{$macro});
# check to see if macro can have any number of arguments (last arg ...)
my $anyargs = ($#Argnames >= 0 && $Argnames[$#Argnames] =~ /\.\.\.\Z/o);
# get arguments passed to this macro
my @Argvals = ParseArgs($substring);
# everything following macro args should be returned as tail
my $tail = pop(@Argvals);
# check the right number of args have been passed, should be all args
# present plus string at end of args (assuming macro cannot have any number
# of arguments)
if(!$anyargs && $#Argvals != $#Argnames) {
# show warning if wrong args (unless macro should have zero args and
# 1 arg provided which is blank space
if(!($#Argnames == -1 && $#Argvals == 0 && $Argvals[0] =~ /\A\s*\Z/)) {
Warning("Macro \'".$macro."\' used with ".$#Argvals.
" args, expected ".($#Argnames+1));
}
# delete all excess args
while($#Argvals > $#Argnames) { pop(@Argvals); }
}
# make all missing args blanks
while($#Argvals < $#Argnames) { push(@Argvals, ""); }
return (@Argvals, $tail);
}
##############################################################################
# FunctionMacro: used with functions to inform a module which macro
# was being replaced when the function was called - used in bigfunc.pm
##############################################################################
my $functionmacro = "";
sub FunctionMacro
{
return $functionmacro;
}
##############################################################################
# Replace all defined macro's arguments with their values
# Inputs:
# $macro = the macro to be replaces
# $string = the string following the occurrence of macro
##############################################################################
sub ReplaceDefineArgs
{
my ($string, $tail, %Used) = @_;
# check if args used, if not do nothing
if(DefineArgsUsed($tail)) {
my $macro = $string;
# get arguments following macro
my @Argvals = FindDefineArgs($tail, $macro);
$tail = pop(@Argvals); # tail returned as last element
my @Argnames = split(/\,/, $DefinesArgs{$macro});
my ($i, $j);
# replace previous macro with defn + args
$string = $Defines{$macro};
# check if macro should call a function
if(exists($DefinesFuncs{$macro})) {
# replace all macros in argument list
for($i=0; $i<=$#Argvals; $i++) {
$Argvals[$i] = ReplaceDefines($Argvals[$i]);
}
if($debug > 1) {
my $argstring = "";
if($#Argvals >= 0) { $argstring = join(", ", @Argvals); }
Debug("Running function $DefinesFuncs{$macro} with args (".
$argstring.")", 2);
}
# set name of macro which is being parse (needed in bigfunc.pm)
$functionmacro = $macro;
$string = $DefinesFuncs{$macro}->(@Argvals);
# don't need do anything else, return now
return $string, $tail;
}
# check if last arg ends in ... (allows any number of args in macro)
if($#Argnames >= 0 && $Argnames[$#Argnames] =~ s/\.\.\.\Z//o) {
# concatanate all extra args into final arg
while($#Argvals > $#Argnames) {
my $arg1 = pop(@Argvals);
my $arg2 = pop(@Argvals);
push(@Argvals, $arg2.", ".$arg1);
}
# check for ## at start of macro name in args list
if($string =~ /\#\#$Argnames[$#Argnames]/) {
# if last argument is empty remove preciding ","
if($#Argvals == $#Argnames && $Argvals[$#Argnames] eq "") {
$string =~ s/\,\s*\#\#$Argnames[$#Argnames]//g;
}
else {
$string =~
s/\#\#$Argnames[$#Argnames]/$Argnames[$#Argnames]/g;
}
}
}
# to get args passed to macro to same processed level as rest of
# macro, they need to be checked for occurrences of all used macros,
# this is a nasty hack to temporarily change defines list to %Used
{
my %RealDefines = %Defines;
my $realdefmin = $defmin;
my $realdefmax = $defmax;
my %RealDefineLookup = %DefineLookup;
%Defines = %Used;
GenerateDefinesKeys();
for($i=0; $i<=$#Argvals; $i++) {
$Argvals[$i] = ReplaceDefines($Argvals[$i]);
}
# return defines to normal
%Defines = %RealDefines;
$defmin = $realdefmin;
$defmax = $realdefmax;
%DefineLookup = %RealDefineLookup;
}
# The next step replaces argnames with argvals. Once a bit of string
# has been replaced it is removed from further processing to avoid
# unwanted recursive macro replacement.
my @InString = ( $string ); # string to be replaced
my @InDone = ( 0 ); # flag to say if string section replaced
my @OutString; # output of string sections after each
# macro has been replaced
my @OutDone; # output flags
my $k = 0;
for($i=0; $i<=$#Argnames; $i++) {
for($j=0; $j<=$#InString; $j++) {
if($InDone[$j] == 0) {
# replace macros and split up string so replaced part
# is flagged as done and rest is left for further
# processing
while($InString[$j] =~ /$bound$Argnames[$i]$bound/) {
$OutString[$k] = $`; $OutDone[$k] = 0;
$k++;
$OutString[$k] = $Argvals[$i]; $OutDone[$k] = 1;
$k++;
$InString[$j] = $'; # one more quote for emacs '
}
}
$OutString[$k] = $InString[$j]; $OutDone[$k] = $InDone[$j];
$k++;
}
@InString = @OutString; @InDone = @OutDone;
$k = 0;
}
# rebuild string
$string = join('', @InString);
Debug("Replaced \"".$macro."\" for \"".$string."\" [".$recurse_level."]", 2);
}
else {
Debug("Macro \"".$string."\" found without args, ignored", 2);
}
return ($string, $tail);
}
##############################################################################
# When replacing macros with args, the macro and everything following the
# macro (the tail) are passed to ReplaceDefineArgs. The function extracts
# the args from the tail and then returns the replaced macro and the new
# tail. This function extracts the remaining part of the real tail from
# the current input string.
##############################################################################
sub ReclaimTail
{
my ($input, $tail) = @_;
# split strings into chars and compare each one until difference found
my @Input = split(//, $input);
my @Tail = split(//, $tail);
$tail = $input = "";
while($#Input >= 0 && $#Tail >= 0 && $Input[$#Input] eq $Tail[$#Tail]) {
$tail = pop(@Tail).$tail;
pop(@Input);
}
while($#Input >=0) { $input = pop(@Input).$input; }
return ($input, $tail);
}
##############################################################################
# Replace all defined macro's in a line with their value. Recursively run
# through macros as many times as needed (to find macros within macros).
# Inputs:
# $input = string to process
# $tail = rest of line following $string (if any), this will only be used
# if string contains a macro with args, the args will probably be
# at the start of the tail
# %Used = all macros found in $string so far, these will not be checked
# again to avoid possible recursion
# Initially just $input is passed in, other args are added for recursive calls
##############################################################################
sub ReplaceDefines
{
my ($input, $tail, %Used) = @_;
# check for recursive macro madness (set to same level as Perl warning)
if(++$recurse_level > 97) {
$recurse_level--;
Warning("Recursive macro detected in \"".$input."\"");
if($tail) { return ($input, $tail); }
return $input;
}
my $out = ""; # initialise output to empty string
OUTER : while($input =~ /\S/o) {
my ($macro, $string);
my @Words;
######################################################################
# if macros start with prefix, skip to next prefix
######################################################################
if($macroprefix ne "") {
my $found = 0;
# find next potential macro in line if any
while(!$found && $input =~ /$macroprefix\S/) {
# everything before prefix
$out = $out.$`;
# reclaim first char in macro
my $match = $&;
# everything after prefix
$input = chop($match).$'; # one more quote for emacs '
# check if first chars are in macro
if(exists($DefineLookup{substr($input, 0, $defmin)})) {
$found = 1;
}
# put prefix back onto output and carry on searching
else { $out = $out.$match; }
}
# no more macros
if(!$found) { $out = $out.$input; $input = ""; last OUTER; }
}
######################################################################
# replacing macros which are "words" only - quick and easy
######################################################################
if($bound eq '\b') {
@Words = split(/(\w+)/, $input, 2);
$out = $out.$Words[0];
if($#Words == 2) { $macro = $Words[1]; $input = $Words[2]; }
else { $input = ""; last OUTER; }
}
######################################################################
# replacing all types of macro - slow and horrid
######################################################################
else {
# forward string to next non-whitespace char that starts a macro
while(!exists($DefineLookup{substr($input, 0, $defmin)})) {
if($input =~ /^\s/ ) { # remove preceding whitespace
@Words = split(/^(\s+)/, $input, 2);
$out = $out.$Words[1];
$input = $Words[2];
}
else { # skip to next char
$out = $out.substr($input, 0, 1);
$input = substr($input, 1);
}
if($input eq "") { last OUTER; }
}
# remove the longest possible potential macro (containing no
# whitespace) from the start of input
@Words = split(/(\s+)/, $input, 2);
$macro = $Words[0];
if($#Words == 2) {$input = $Words[1].$Words[2]; }
else {$input = ""; }
# shorten macro if too long
if(length($macro) > $defmax) {
$input = substr($macro, $defmax).$input;
$macro = substr($macro, 0, $defmax);
}
# see if a macro exists in "macro"
while(length($macro) > $defmin &&
!(exists($Defines{$macro}) && !exists($Used{$macro}))) {
# chop a char off macro and try again
$input = chop($macro).$input;
}
}
# check if macro is at start of string and has not been used yet
if(exists($Defines{$macro}) && !exists($Used{$macro})) {
# set macro as used
$Used{$macro} = $Defines{$macro};
# temporarily add tail to input
if($tail) { $input = $input.$tail; }
# replace macro with defn
if(CheckDefineArgs($macro)) {
($string, $input) = ReplaceDefineArgs($macro, $input, %Used);
}
else {
$string = $Defines{$macro};
Debug("Replaced \"".$macro."\" for \"".$string."\" [".$recurse_level."]", 2);
}
($string=~ m/\#\#/) and ($string=~ s/\s*\#\#\s*//gm);
@Words = ReplaceDefines($string, $input, %Used);
$out = $out.$Words[0];
if($#Words == 0) { $input = ""; }
else {
# remove space up to start of next char
if(CheckEatTrail($macro)) { $Words[1] =~ s/^[ \t]*//o; }
$input = $Words[1];
}
delete($Used{$macro});
# reclaim all unparsed tail
if($tail && $tail ne "") {
($input, $tail) = ReclaimTail($input, $tail);
}
}
# macro not matched, add to output and move swiftly on
else {
if($bound eq '\b') { $out = $out.$macro; }
else {
$out = $out.substr($macro, 0, 1);
$input = substr($macro, 1).$input;
}
}
}
$recurse_level--;
# append any whitespace left in string and return it
if($tail) { return ($out.$input, $tail); }
return $out.$input;
}
##############################################################################
# GenerateDefinesKey creates all keys and indices needed for %Defines
##############################################################################
sub GenerateDefinesKeys
{
# find longest and shortest macro
my ($define, $length) = each %Defines;
$defmin = $defmax = length($define);
%DefineLookup = ();
foreach $define (keys(%Defines)) {
$length = length($define);
if($length > $defmax) { $defmax = $length; }
if($length < $defmin) { $defmin = $length; }
}
# regenerate lookup table of first letters
foreach $define (keys(%Defines)) {
$DefineLookup{substr($define, 0, $defmin)} = 1;
}
}
##############################################################################
# Set a define
##############################################################################
sub SetDefine
{
my ($macro, $value) = @_;
# add macro and value to hash table
$Defines{$macro} = $value;
# add define to keys
my $length = length($macro);
if($length < $defmin || $defmin == 0) { GenerateDefinesKeys(); }
else {
if($length > $defmax) { $defmax = $length; }
$length = substr($macro, 0, $defmin);
$DefineLookup{$length} = 1;
}
}
##############################################################################
# Get a define without doing any macro replacement
##############################################################################
sub GetDefine
{
my $macro = shift;
return $Defines{$macro};
}
##############################################################################
# Replace a define, checks if macro defined and only redefine's if it is
##############################################################################
sub Redefine
{
my $macro = shift;
my $value = shift;
# check if defined
if(CheckDefine($macro)) { SetDefine($macro, $value); }
}
##############################################################################
# Set a define argument list
##############################################################################
sub SetDefineArgs
{
my $macro = shift;
my $args = shift;
# add macro args to hash table
$DefinesArgs{$macro} = $args;
}
##############################################################################
# Set a function which should be called when a macro is found
##############################################################################
sub SetDefineFuncs
{
my $macro = shift;
my $func = shift;
# add macro function to hash table
$DefinesFuncs{$macro} = $func;
}
##############################################################################
# Check if a macro is defined
##############################################################################
sub CheckDefine
{
my $macro = shift;
return exists($Defines{$macro});
}
##############################################################################
# Check if a macro is defined and has arguments
##############################################################################
sub CheckDefineArgs
{
my $macro = shift;
return exists($DefinesArgs{$macro});
}
##############################################################################
# Check if a macro is defined and calls a function
##############################################################################
sub CheckDefineFuncs
{
my $macro = shift;
return exists($DefinesFuncs{$macro});
}
##############################################################################
# Check if a macro is defined and eats trailing whitespace
##############################################################################
sub CheckEatTrail
{
my $macro = shift;
return exists($EatTrail{$macro});
}
##############################################################################
# Set eat-trailing-whitespace for a macro
##############################################################################
sub SetEatTrail
{
my $macro = shift;
$EatTrail{$macro} = 1;
}
##############################################################################
# Test if a file exists and is readable
##############################################################################
sub FileExists
{
my $filename = shift;
# test if file is readable and not a directory
if( !(-r $filename) || -d $filename ) {
Debug("Checking for file: ".$filename."...not found!", 2);
return 0;
}
Debug("Checking for file: ".$filename."...found!", 2);
return 1;
}
##############################################################################
# #comment - rest of line ignored as a comment
##############################################################################
sub Comment
{
# nothing to be done here
Debug("Commented line", 2);
}
##############################################################################
# Define a variable, accepted inputs:
# $macrodefn = $macro $defn - $macro associated with $defn
# ie: #define TEST test string
# $macro = TEST, $defn = "test string"
# Note: $defn = rest of line after $macro
# $macrodefn = $macro - $macro defined without a defn, rest of line ignored
# ie: #define TEST_DEFINE
# $macro = TEST_DEFINE, $defn = "1"
##############################################################################
sub Define
{
my $macrodefn = shift;
my $macro;
my $defn;
my $i;
# check there is an argument
if($macrodefn !~ /\S/o) {
Filepp::Error("define keyword used without arguments");
}
# find end of macroword - assume separated by space or tab
$i = GetNextWordEnd($macrodefn);
# separate macro and defn (can't use split, doesn't work with '0')
$macro = substr($macrodefn, 0, $i);
$defn = substr($macrodefn, $i);
# strip leading whitespace from $defn
if($defn) {
$defn =~ s/^[ \t]*//;
}
else {
$defn = "";
}
# check if macro has arguments (will be a '(' in macro)
if($macro =~ /\(/) {
# split up macro, args and defn - delimiters = space, (, ), ','
my @arglist = split(/([\s,\(,\),\,])/, $macro." ".$defn);
my $macroargs = "";
my $arg;
# macro is first element in list, remove it from list
$macro = $arglist[0];
$arglist[0] = "";
# loop through list until ')' and find all args
foreach $arg (@arglist) {
if($arg) {
# end of arg list, leave loop
if($arg eq ")") {
$arg = "";
last;
}
# ignore space, ',' and '('
elsif($arg =~ /([\s,\,,\(])/) {
$arg = "";
}
# argument found, add to ',' separated list
else {
$macroargs = $macroargs.",".$arg;
$arg = "";
}
}
}
$macroargs = Strip($macroargs, ",", 1);
# store args
SetDefineArgs($macro, $macroargs);
Debug("Define: macro ".$macro." has args (".$macroargs.")", 2);
# put rest of defn back together
$defn = join('',@arglist);
$defn = CleanStart($defn);
}
# make sure macro is not being redefined and used to have args
else {
delete($DefinesArgs{$macro});
delete($DefinesFuncs{$macro});
}
# define the macro defn pair
SetDefine($macro, $defn);
Debug("Defined \"".$macro."\" to be \"".$defn."\"", 2);
if($debug > 2) { PrintDefines(); }
}
##############################################################################
# Else, standard if[n][def]-else-endif
# usage: #else somewhere between #if[n][def] key and #endif
##############################################################################
sub Else
{
# else always true - only ran when all preceding 'if's have failed
return 1;
}
##############################################################################
# Endif, standard ifdef-[else]-endif
# usage: #endif somewhere after #ifdef key and optionally #else
##############################################################################
sub Endif
{
# this always terminates an if block
return 1;
}
##############################################################################
# If conditionally includes or ignores parts of a file based on expr
# usage: #if expr
# expr is evaluated to true(1) or false(0) and include usual ==, !=, > etc.
# style comparisons. The "defined" keyword can also be used, ie:
# #if defined MACRO || !defined(MACRO)
##############################################################################
sub If
{
my $expr = shift;
Debug("If: parsing: \"".$expr."\"", 2);
# check for any "defined MACRO" tests and evaluate them
if($expr =~ /defined/) {
my $indefined = 0;
# split expr up into its component parts, the split is done on the
# following list of chars and strings: '!','(',')','&&','||', space
my @Exprs = split(/([\s,\!,\(,\)]|\&\&|\|\|)/, $expr);
# search through parts for "defined" keyword and check if macros
# are defined
foreach $expr (@Exprs) {
if($indefined == 1) {
# previously found a defined keyword, check if next word
# could be the macro to test for (not any of the listed chars)
if($expr && $expr !~ /([\s,\!,\(,\)]|\&\&|\|\|)/) {
# replace macro with 0 or 1 depending if it is defined
Debug("If: testing if \"".$expr."\" defined...", 2);
if(CheckDefine($expr)) {
$expr = 1;
Debug("If: defined", 2);
}
else {
$expr = 0;
Debug("If: NOT defined", 2);
}
$indefined = 0;
}
}
elsif($expr eq "defined") {
# get rid of defined keyword
$expr = "";
# search for next macro following "defined"
$indefined = 1;
}
}
# put full expr string back together
my $newexpr = join('',@Exprs);
$expr = $newexpr;
}
# pass parsed line though processors
$expr = RunProcessors($expr);
# evaluate line and return result (1 = true)
Debug("If: evaluating \"".$expr."\"", 2);
my $result = eval($expr);
# check if statement is valid
if(!defined($result)) { Warning($@); }
elsif($result) {
Debug("If: \"".$expr."\" true", 1);
return 1;
}
Debug("If: \"".$expr."\" false", 1);
return 0;
}
##############################################################################
# Elif equivalent to "else if". Placed between #if[n][def] and #endif,
# equivalent to nesting #if's
##############################################################################
sub Elif
{
my $input = shift;
return If($input);
}
##############################################################################
# Ifdef conditionally includes or ignores parts of a file based on macro,
# usage: #ifdef MACRO
# if macro has been previously #define'd everything following the
# #ifdef will be included, else it will be ignored until #else or #endif
##############################################################################
sub Ifdef
{
my $macro = shift;
# separate macro from any trailing garbage
$macro = substr($macro, 0, GetNextWordEnd($macro));
# check if macro defined - if not set to be #ifdef'ed out
if(CheckDefine($macro)) {
Debug("Ifdef: ".$macro." defined", 1);
return 1;
}
Debug("Ifdef: ".$macro." not defined", 1);
return 0;
}
##############################################################################
# Ifndef conditionally includes or ignores parts of a file based on macro,
# usage: #ifndef MACRO
# if macro has been previously #define'd everything following the
# #ifndef will be ignored, else it will be included until #else or #endif
##############################################################################
sub Ifndef
{
my $macro = shift;
# separate macro from any trailing garbage
$macro = substr($macro, 0, GetNextWordEnd($macro));
# check if macro defined - if not set to be #ifdef'ed out
if(CheckDefine($macro)) {
Debug("Ifndef: ".$macro." defined", 1);
return 0;
}
Debug("Ifndef: ".$macro." not defined", 1);
return 1;
}
##############################################################################
# Parses all macros from file, but discards all other output
##############################################################################
sub IncludeMacros
{
my $file = shift;
my $currentoutput = $output;
SetOutput(0);
Parse($file);
SetOutput($currentoutput);
}
##############################################################################
# Include $filename in output file, format:
# #include "filename" - local include file, ie. in same directory, try -Ipath
# also if not not found in current directory
# #include <filename> - system include file, use -Ipath
##############################################################################
sub Include
{
my $input = shift;
my $filename = $input;
my $fullname;
my $sysinclude = 0;
my $found = 0;
my $i;
# check for recursive includes (level set to same as Perl recurse warn)
if($include_level >= 98) {
Warning("Include recursion too deep - skipping \"".$filename."\"\n");
return;
}
# replace any defined values in the include line
$filename = RunProcessors($filename);
# check if it is a system include file (#include <filename>) or a local
# include file (#include "filename")
if(substr($filename, 0, 1) eq "<") {
$sysinclude = 1;
# remove <> from filename
$filename = substr($filename, 1);
($filename) = split(/\>/, $filename, 2);
}
elsif(substr($filename, 0, 1) eq "\"") {
# remove double quotes from filename
$filename = substr($filename, 1);
($filename) = split(/\"/, $filename, 2);
}
# else assume filename given without "" or <>, naughty but allowed
# check for file in current directory
if($sysinclude == 0) {
# get name of directory base file is in
my $dir = "";
if($file =~ /\//) {
my @Dirs = split(/(\/)/, $file);
for($i=0; $i<$#Dirs; $i++) {
$dir = $dir.$Dirs[$i];
}
}
if(FileExists($dir.$filename)) {
$fullname = $dir.$filename;
$found = 1;
}
}
# search for file in include paths, first path on command line first
$i = 0;
while($found == 0 && $i <= $#IncludePaths) {
$fullname = $IncludePaths[$i]."/".$filename;
if(FileExists($fullname)) { $found = 1; }
$i++;
}
# include file if found, error if not
if($found == 1) {
Debug("Including file: \"".$fullname."\"", 1);
# recursively call Parse
Parse($fullname);
}
else {
Warning("Include file \"".$filename."\" not found", 1);
}
}
##############################################################################
# Pragma filepp Function Args
# Pragma executes a filepp function, everything following the function name
# is passed as arguments to the function.
# The format is:
# #pragma filepp function args...
# If pragma is not followed by "filepp", it is ignored.
##############################################################################
sub Pragma
{
my $input = shift;
# check for "filepp" in string
if($input =~ /^filepp\b/) {
my ($function, $args);
($input, $function, $args) = split(/\s/, $input, 3);
if($function) {
if(!$args) { $args = ""; }
if($safe_mode) {
Debug("Safe mode enabled, NOT running: ".$function."(".$args.")", 1);
}
else {
my @Args = ParseArgs($args);
Debug("Running function: ".$function."(".$args.")", 1);
$function->(@Args);
}
}
}
}
##############################################################################
# Turn normal output on/off (does not affect any output produced by keywords)
# 1 = on, 0 = off
##############################################################################
sub SetOutput
{
$output = shift;
Debug("Output set to ".$output, 2);
}
##############################################################################
# Turn blank suppression on and off at this include level
# 1 = on, 0 = off
##############################################################################
sub SetBlankSupp
{
$blanksupp[$include_level] = shift;
Debug("Blank suppression set to ".$blanksupp[$include_level], 2);
}
##############################################################################
# Reset blank suppression to command-line value (except at level 0)
##############################################################################
sub ResetBlankSupp
{
if($include_level == 0) {
$blanksupp[$include_level] = 0;
} else {
$blanksupp[$include_level] = $blanksuppopt;
}
Debug("Blank suppression reset to ".$blanksupp[$include_level], 2);
}
##############################################################################
# Set if macros are only replaced if the macro is a 'word'
##############################################################################
sub SetWordBoundaries
{
my $on = shift;
if($on) {
$bound = '\b';
Debug("Word Boundaries turned on", 2);
}
else {
$bound = '';
Debug("Word Boundaries turned off", 2);
}
}
##############################################################################
# DEPRECATED - this function will be removed in later versions, use Set
# Toggle if macros are only replaced if the macro is a 'word'
##############################################################################
sub ToggleWordBoundaries
{
if($bound eq '\b') { SetWordBoundaries(1); }
else { SetWordBoundaries(0); }
}
##############################################################################
# Set treating keywordchar, contchar, macroprefix and optlineendchar as
# Perl regexps
##############################################################################
sub SetCharPerlre
{
$charperlre = shift;
Debug("Characters treated as Perl regexp's : ".$charperlre, 2);
}
##############################################################################
# Undef a previously defined variable, usage:
# #undef $macro
##############################################################################
sub Undef
{
my $macro = shift;
my $i;
# separate macro from any trailing garbage
$macro = substr($macro, 0, GetNextWordEnd($macro));
# delete macro from table
delete $Defines{$macro};
delete $DefinesArgs{$macro};
delete $DefinesFuncs{$macro};
# and remove its eat-trailing-whitespace flag
if(CheckEatTrail($macro)) { delete $EatTrail{$macro}; }
# regenerate keys
GenerateDefinesKeys();
Debug("Undefined macro \"".$macro."\"", 2);
if($debug > 1) { PrintDefines(); }
}
##############################################################################
# UndefAll - undefines ALL macros
##############################################################################
sub UndefAll
{
%Defines = ();
%DefineLookup = ();
%EatTrail = ();
$defmin = $defmax = 0;
Debug("Undefined ALL macros", 2);
if($debug > 1) { PrintDefines(); }
}
##############################################################################
# #warning msg - print warning message "msg"
##############################################################################
sub Warning
{
my $msg = shift;
my $lastdebug = $debug;
$debug = 1;
Debug($msg, 1);
$debug = $lastdebug;
}
##############################################################################
# ParseLineEnd - takes in line from input most recently read and checks
# if line should be continued (ie. next line in input read and appended
# to current line).
# Returns two values:
# $more - boolean, 1 = read another line from input to append to this one
# 0 = no line continuation
# $line - the line to be read. If any modification needs to be done to the
# line for line contination, it is done here.
# Example: if line is to be continued: set $more = 1, then
# remove line continuation character and newline from end of
# $line and replace with line continuation character.
##############################################################################
sub ParseLineEnd
{
my $thisline = shift;
my $more = 0;
# check if end of line has a continuation char, if it has get next line
if($thisline =~ /$contchar$/) {
$more = 1;
# remove backslash and newline
$thisline =~ s/$contchar\n\Z//;
# append line continuation character
$thisline = $thisline.$contrepchar;
}
return ($more, $thisline);
}
##############################################################################
# Set name of function to take check if line shoule be continued
##############################################################################
sub SetParseLineEnd
{
my $func = shift;
$parselineend = $func;
}
##############################################################################
# Get name of function to take check if line shoule be continued
##############################################################################
sub GetParseLineEnd
{
return $parselineend;
}
##############################################################################
# GetNextLine - returns the next line of the current INPUT line,
# line continuation is taken care of here.
##############################################################################
sub GetNextLine
{
my $thisline = <INPUT>;
if($thisline) {
Redefine("__LINE__", ++$line);
my $more = 0;
($more, $thisline) = $parselineend->($thisline);
while($more) {
Debug("Line continuation", 2);
my $nextline = <INPUT>;
if(!$nextline) { return $thisline; }
# increment line count
Redefine("__LINE__", ++$line);
($more, $thisline) = $parselineend->($thisline.$nextline);
# maintain same number of lines in input as output
if($preserveblank) { Filepp::Output("\n"); }
}
}
return $thisline;
}
##############################################################################
# Write($string) - writes $string to OUTPUT file
##############################################################################
sub Write
{
my $string = shift;
print(OUTPUT $string);
}
##############################################################################
# Output($string) - conditionally writes $string to OUTPUT file
##############################################################################
sub Output
{
my $string = shift;
if($output) { Write($string); }
}
# counter for number of #if[n][def] loops currently in
my $iflevel = 0;
# flag to control when to write output
my @Writing = (1); # initialise default to 'writing'
# flag to show if current 'if' block has passed a 'true if'
my @Ifdone = (0); # initialise first to 'not passed true if'
##############################################################################
# Keyword parsing routine
##############################################################################
sub ParseKeywords
{
# input is next line in file
my $inline = shift;
my $outline = "";
my $thisline = $inline;
my $keyword;
my $found = 0;
# remove whitespace from start of line
$thisline = CleanStart($thisline);
# check if first char on line is a #
if($thisline && $thisline =~ /^$keywordchar/) {
# remove "#" and any following whitespace
$thisline =~ s/^$keywordchar\s*//g;
# remove the optional end line char
if($optlineendchar ne "") {
$thisline =~ s/$optlineendchar\Z//g;
}
# check for keyword
if($thisline && $thisline =~ /^\w+\b/ && exists($Keywords{$&})) {
$keyword = $&;
$found = 1;
# remove newline from line
chomp($thisline);
# remove leading whitespace and keyword from line
my $inline = CleanStart(substr($thisline, length($keyword)));
# check for 'if' style keyword
if(exists($Ifwords{$keyword})) {
# increment ifblock level and set ifdone to same
# value as previous block
$iflevel++;
$Ifdone[$iflevel] = 0;
$Writing[$iflevel] = $Writing[$iflevel - 1];
if(!$Writing[$iflevel]) { $Ifdone[$iflevel] = 1; }
}
# check for out of place 'else' or 'endif' style keyword
elsif($iflevel <= 0 && (exists($Elsewords{$keyword}) ||
exists($Endifwords{$keyword}) )) {
Warning($keywordchar.$keyword." found without preceding ".
$keywordchar."[else]ifword");
}
# decide if to run 'if' or 'else' keyword
if(exists($Ifwords{$keyword}) || exists($Elsewords{$keyword})){
if(!($Ifdone[$iflevel])) {
# check return value of 'if'
if($Keywords{$keyword}->($inline)) {
$Ifdone[$iflevel] = 1;
$Writing[$iflevel] = 1;
}
else { $Writing[$iflevel] = 0; }
}
else { $Writing[$iflevel] = 0; }
}
# check for 'endif' style keyword
elsif(exists($Endifwords{$keyword})) {
# run endif keyword and decrement iflevel if true
if($Keywords{$keyword}->($inline)) { $iflevel--; }
}
# run all other keywords
elsif($Writing[$iflevel]) { $Keywords{$keyword}->($inline); }
# write a blank line if preserving blank lines
# (assumes keywords have no output)
if($preserveblank) { $outline = $outline."\n"; }
} # keyword if statement
}
# no keywords in line - write line to file if not #ifdef'ed out
if(!$found && $Writing[$iflevel]) {
$outline = $outline.$inline;
}
# keep same number of files in output and input
elsif(!$found && $preserveblank) { $outline = $outline."\n"; }
return $outline;
}
##############################################################################
# Main parsing routine
##############################################################################
sub Parse
{
# change file being parsed to this file, remember last filename so
# it can be returned at the end
my $lastparse = $file;
$file = shift;
Debug("Parsing ".$file."...", 1);
Redefine("__FILE__", $file);
# reset line count, remembering previous count for future reference
my $lastcount = $line;
$line = 0;
Redefine("__LINE__", $line);
# increment include level
Redefine("__INCLUDE_LEVEL__", ++$include_level);
# set blank line suppression:
# no suppression for top level files
if($include_level == 0) {
$blanksupp[$include_level] = 0;
}
# include level 1 - set suppression to command line given value
elsif($include_level == 1) {
# inherit root value if set
if($blanksupp[0]) { $blanksupp[$include_level] = 1; }
else {$blanksupp[$include_level] = $blanksuppopt; }
}
# all other include levels - keep suppression at existing value
else {
$blanksupp[$include_level] = $blanksupp[$include_level - 1];
}
# reset RunProcessors function for this file
$Running[$include_level] = 0;
$Currentproc[$include_level] = 0;
# open file and set its handle to INPUT
local *INPUT;
if(!open(INPUT, $file)) {
Error("Could not open file ".$file);
}
# if a base file, run any initialisation functions
if($include_level == 0) {
my $func;
foreach $func (@OpenInputFuncs) { $func->(); }
}
# parse each line of file
$_ = GetNextLine();
# if in "shebang" mode, throw away first line (the #!/blah bit)
if($shebang) {
# check for "#!...perl ...filepp..."
if($_ && $_ =~ /^\#\!.*perl.+filepp/) {
Debug("Skipping first line (shebang): ".$_, 1);
$_ = GetNextLine();
}
}
while($_) {
# unless blank lines are suppressed at this include level
unless($blanksupp[$include_level] && /^\s*$/) {
# run processing chain (defaults to ReplaceDefines)
$_ = RunProcessors($_, 1);
# write output to file or STDOUT
if($output) { Write($_); }
}
$_ = GetNextLine();
}
# run any close functions
if($include_level == 0) {
my $func;
foreach $func (@CloseInputFuncs) { $func->(); }
}
# check all #if blocks have been closed at end of parsing
if($lastparse eq "" && $iflevel > 0) { Warning("Unterminated if block"); }
# close file
close(INPUT);
Debug("Parsing ".$file." done. (".$line." lines processed)", 1);
# reset $line
$line = $lastcount;
Redefine("__LINE__", $line);
# reset $file
$file = $lastparse;
Redefine("__FILE__", $file);
if($file ne "") {
Debug("Parsing returned to ".$file." at line ".$line, 1);
}
# decrement include level
Redefine("__INCLUDE_LEVEL__", --$include_level);
}
##############################################################################
# Main routine
##############################################################################
# parse command line
my $i=0;
my $argc=0;
while($ARGV[$argc]) { $argc++; }
while($ARGV[$i]) {
# suppress blank lines in header files
if($ARGV[$i] eq "-b") {
$blanksuppopt = 1;
}
# read from stdin instead of file
elsif($ARGV[$i] eq "-c") {
AddInputFile("-");
}
# Defines: -Dmacro[=defn] or -D macro[=defn]
elsif(substr($ARGV[$i], 0, 2) eq "-D") {
my $macrodefn;
# -D macro[=defn] format
if(length($ARGV[$i]) == 2) {
if($i+1 >= $argc) {
Error("Argument to `-D' is missing");
}
$macrodefn = $ARGV[++$i];
}
# -Dmacro[=defn] format
else {
$macrodefn = substr($ARGV[$i], 2);
}
my $macro = $macrodefn;
my $defn = "";
my $j = index($macrodefn, "=");
if($j > -1) {
$defn = substr($macrodefn, $j+1);
$macro = substr($macrodefn, 0, $j);
}
# add macro and defn to hash table
Define($macro." ".$defn);
}
# Debugging turned on: -d
elsif($ARGV[$i] eq "-d") {
SetDebug(2);
}
# Full debugging turned on: -dd
elsif($ARGV[$i] eq "-dd") {
SetDebug(3);
}
# Light debugging turned on: -dl
elsif($ARGV[$i] eq "-dl") {
SetDebug(1);
}
# Send debugging info to stdout rather than stderr
elsif($ARGV[$i] eq "-ds") {
$debugstdout = 1;
}
# prefix all debugging info with string
elsif($ARGV[$i] eq "-dpre") {
if($i+1 >= $argc) {
Error("Argument to `-dpre' is missing");
}
$debugprefix = ReplaceDefines($ARGV[++$i]);
}
# prefix all debugging info with string
elsif($ARGV[$i] eq "-dpost") {
if($i+1 >= $argc) {
Error("Argument to `-dpost' is missing");
}
# replace defines is called here in case a newline is required,
# this allows it to be added as __NEWLINE__
$debugpostfix = ReplaceDefines($ARGV[++$i]);
}
# define environment variables as macros: -e
elsif($ARGV[$i] eq "-e") {
DefineEnv();
}
# set environment variable prefix char
elsif($ARGV[$i] eq "-ec") {
if($i+1 >= $argc) {
Error("Argument to `-ec' is missing");
}
SetEnvchar($ARGV[++$i]);
}
# set environment variable prefix char to nothing
elsif($ARGV[$i] eq "-ecn") {
SetEnvchar("");
}
# show help
elsif($ARGV[$i] eq "-h") {
print(STDERR $usage);
exit(0);
}
# Include paths: -Iinclude or -I include
elsif(substr($ARGV[$i], 0, 2) eq "-I") {
# -I include format
if(length($ARGV[$i]) == 2) {
if($i+1 >= $argc) {
Error("Argument to `-I' is missing");
}
AddIncludePath($ARGV[++$i]);
}
# -Iinclude format
else {
AddIncludePath(substr($ARGV[$i], 2));
}
}
# Include macros from file: -imacros file
elsif($ARGV[$i] eq "-imacros") {
if($i+1 >= $argc) {
Error("Argument to `-imacros' is missing");
}
push(@Imacrofiles, $ARGV[++$i]);
}
# turn off keywords
elsif($ARGV[$i] eq "-k") {
RemoveAllKeywords();
}
# set keyword prefix char
elsif($ARGV[$i] eq "-kc") {
if($i+1 >= $argc) {
Error("Argument to `-kc' is missing");
}
SetKeywordchar($ARGV[++$i]);
}
# set line continuation character
elsif($ARGV[$i] eq "-lc") {
if($i+1 >= $argc) {
Error("Argument to `-lc' is missing");
}
SetContchar($ARGV[++$i]);
}
# set optional line end character
elsif($ARGV[$i] eq "-lec") {
if($i+1 >= $argc) {
Error("Argument to `-lec' is missing");
}
SetOptLineEndchar($ARGV[++$i]);
}
# set line continuation replacement char to newline
elsif($ARGV[$i] eq "-lrn") {
SetContrepchar("\n");
}
# set line continuation replacement character
elsif($ARGV[$i] eq "-lr") {
if($i+1 >= $argc) {
Error("Argument to `-lr' is missing");
}
SetContrepchar($ARGV[++$i]);
}
# Module paths: -Minclude or -M include
elsif(substr($ARGV[$i], 0, 2) eq "-M") {
# -M include format
if(length($ARGV[$i]) == 2) {
if($i+1 >= $argc) {
Error("Argument to `-M' is missing");
}
AddModulePath($ARGV[++$i]);
}
# -Minclude format
else {
AddModulePath(substr($ARGV[$i], 2));
}
}
# use module
elsif($ARGV[$i] eq "-m") {
if($i+1 >= $argc) {
Error("Argument to `-m' is missing");
}
UseModule($ARGV[++$i]);
}
# set macro prefix
elsif($ARGV[$i] eq "-mp") {
if($i+1 >= $argc) {
Error("Argument to `-mp' is missing");
}
SetMacroPrefix($ARGV[++$i]);
}
# turn off macro prefix within keywords
elsif($ARGV[$i] eq "-mpnk") {
$macroprefixinkeywords = 0;
}
# turn on overwrite mode
elsif($ARGV[$i] eq "-ov") {
$overwrite = 1;
}
# turn on overwrite conversion mode
elsif($ARGV[$i] eq "-ovc") {
if($i+1 >= $argc) {
Error("Argument to `-ovc' is missing");
}
$overwriteconv = $ARGV[++$i];
if($overwriteconv !~ /=/) {
Error("-ovc argument is of form IN=OUT");
}
$overwrite = 1;
}
# Output filename: -o filename or -ofilename
elsif(substr($ARGV[$i], 0, 2) eq "-o") {
# -o filename
if(length($ARGV[$i]) == 2) {
if($i+1 >= $argc) {
Error("Argument to `-o' is missing");
}
$outputfile = $ARGV[++$i];
}
# -ofilename
else {
$outputfile = substr($ARGV[$i], 2);
}
}
# preserve blank lines in output file
elsif($ARGV[$i] eq "-pb") {
$preserveblank = 1;
}
# treat $keywordchar, $contchar and $optlineendchar as regular expressions
elsif($ARGV[$i] eq "-re") {
if($charperlre) { SetCharPerlre(0); }
else { SetCharPerlre(1); }
}
# Safe mode - turns off #pragma
elsif($ARGV[$i] eq "-s") {
SafeMode();
}
# Undefine all macros
elsif($ARGV[$i] eq "-u") {
UndefAll();
}
# print version number and exit
elsif($ARGV[$i] eq "-v") {
print(STDERR "filepp version ".$VERSION."\n");
exit(0);
}
# only replace macros if they appear as 'words'
elsif($ARGV[$i] eq "-w") {
if($bound eq '') { SetWordBoundaries(1); }
else { SetWordBoundaries(0); }
}
# default - an input file name
else {
if(!FileExists($ARGV[$i])) {
Error("Input file \"".$ARGV[$i]."\" not readable");
}
AddInputFile($ARGV[$i]);
}
$i++;
}
# check input files have been specified
if($#Inputfiles == -1) {
Error("No input files given");
}
# import macros from file if any
if($#Imacrofiles >= 0) {
my $file;
foreach $file (@Imacrofiles) { IncludeMacros($file); }
}
# print initial defines if debugging
if($debug > 1) { PrintDefines(); }
# open the output file
if(!$overwrite) { OpenOutputFile($outputfile); }
# parse all input files in order given on command line
my $base_file = "";
foreach $base_file (@Inputfiles) {
Redefine("__BASE_FILE__", $base_file);
# set open output file if in overwrite mode
if($overwrite) {
if($overwriteconv ne "") { # convert output filename if needed
my ($in,$out) = split(/=/, $overwriteconv, 2);
my $outfile = $base_file;
$outfile =~ s/\Q$in\E/$out/;
OpenOutputFile($outfile);
}
else { OpenOutputFile($base_file); }
}
Parse($base_file);
# close output file if in overwrite mode
if($overwrite) { CloseOutputFile(); }
}
# close output file
if(!$overwrite) { CloseOutputFile(); }
exit(0);
# Hey emacs !!
# Local Variables:
# mode: perl
# End:
########################################################################
# End of file
########################################################################
|