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
|
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# Fuzz is a script whose purpose is to check through ACE/TAO files for
# easy to spot (by a perl script, at least) problems.
use lib "$ENV{ACE_ROOT}/bin";
if (defined $ENV{srcdir}) {
use lib "$ENV{srcdir}/bin";
}
use Cwd;
use File::Find;
use File::Basename;
use Getopt::Std;
use PerlACE::Run_Test;
###### TODO
#
# Add tests for these:
#
# - Guards in .h files
# - no global functions
# - other commit_check checks
#
# And others in ACE_Guidelines and Design Rules
#
# Also add a -g flag to ignore tao_idl generated files
#
###### END TODO
# Lists of all the files
@files_cdp = ();
@files_cpp = ();
@files_inl = ();
@files_h = ();
@files_html = ();
@files_dsp = ();
@files_dsw = ();
@files_gnu = ();
@files_idl = ();
@files_pl = ();
@files_py = ();
@files_changelog = ();
@files_makefile = ();
@files_mpc = ();
@files_bor = ();
@files_noncvs = ();
@files_sln = ();
@files_vcproj = ();
@files_run_pl = ();
@files_generic = ();
@files_doxygen = ();
@files_conf = ();
@files_rb = ();
@files_features = ();
# To keep track of errors and warnings
$errors = 0;
$warnings = 0;
# to register suppressed tests
%suppressed_tests = ();
# to register excluded directories
@excluded_dirs = ();
##############################################################################
# Use 'git status -s' to get a list of locally modified
# files to look through
sub find_mod_git_files ()
{
unless (open (GIT, "git status -s |")) {
print STDERR "Error: Could not run git\n";
return 0;
}
while (<GIT>) {
if (/^ [MA] +(.*)$/) {
store_file ($1);
}
}
close (GIT);
return 1;
}
sub find_mod_files ()
{
if (!find_mod_git_files()) {
print "Could use git to find modified files\n";
exit (1);
}
}
sub is_excluded ($)
{
# exclude will contain the full file name
my $exclude = shift;
foreach (@excluded_dirs) {
if ($exclude =~ /$_/) {
return 1;
}
}
return 0;
}
# Find_Files will search for files with certain extensions in the
# directory tree
sub find_files ()
{
# wanted is only used for the File::Find
sub wanted
{
store_file ($File::Find::name);
}
find (\&wanted, '.');
}
#
sub store_file ($)
{
my $name = shift;
return if is_excluded ($name);
if ($name =~ /\.(c|cc|cpp|cxx|tpp)$/i) {
push @files_cpp, ($name);
}
elsif ($name =~ /\.(inl|i)$/i) {
push @files_inl, ($name);
}
elsif ($name =~ /\.(h|hh|hpp|hxx)$/i) {
push @files_h, ($name);
}
elsif ($name =~ /\.(htm|html)$/i) {
push @files_html, ($name);
}
elsif ($name =~ /\.(bor)$/i) {
push @files_bor, ($name);
}
elsif ($name =~ /\.(GNU)$/i) {
push @files_gnu, ($name);
}
elsif ($name =~ /\.(dsp|vcp)$/i) {
push @files_dsp, ($name);
}
elsif ($name =~ /\.(dsw|vcp)$/i) {
push @files_dsw, ($name);
}
elsif ($name =~ /\.(pidl|idl|idl3|idl3p)$/i) {
push @files_idl, ($name);
}
elsif ($name =~ /\.pl$/i) {
if ($name =~ /fuzz.pl/) {
return;
}
push @files_pl, ($name);
if ($name =~ /^run.*\.pl$/i) {
push @files_run_pl, ($name);
}
}
elsif ($name =~ /\.py$/i) {
push @files_py, ($name);
}
elsif ($name =~ /\.(rb|erb)$/i) {
push @files_rb, ($name);
}
elsif ($name =~ /\.features$/i) {
push @files_features, ($name);
}
elsif ($name =~ /\.vcproj$/i) {
push @files_vcproj, ($name);
}
elsif ($name =~ /\.sln$/i) {
push @files_sln, ($name);
}
elsif ($name =~ /ChangeLog/i && -f $name) {
push @files_changelog, ($name);
}
elsif ($name =~ /\/GNUmakefile.*.[^~]$/) {
push @files_makefile, ($name);
}
elsif ($name =~ /\.(mpc|mwc|mpb|mpt)$/i) {
push @files_mpc, ($name);
}
elsif ($name =~ /\.(icc|ncb|zip)$/i) {
push @files_noncvs, ($name);
}
elsif ($name =~ /\.(cdp)$/i) {
push @files_cdp, ($name);
}
elsif ($name =~ /\.(doxygen)$/i) {
push @files_doxygen, ($name);
}
elsif ($name =~ /\.(conf)$/i) {
if ($name =~ /\.(WCHAR_T.conf|UTF-16.conf)$/i) {
return;
}
push @files_conf, ($name);
}
elsif ($name =~ /\.(conf.xml)$/i) {
if ($name =~ /\.(WCHAR_T.conf.xml|UTF-16.conf.xml)$/i) {
return;
}
push @files_conf, ($name);
}
elsif ($name =~ /\.(pm|cmd|java|sh|txt|xml)$/i) {
push @files_generic, ($name);
}
elsif ($name =~ /README$/i) {
push @files_generic, ($name);
}
}
##############################################################################
## Just messages
sub print_error ($)
{
my $msg = shift;
print "Error: $msg\n";
++$errors;
}
sub print_warning ($)
{
my $msg = shift;
print "Warning: $msg\n";
++$warnings;
}
##############################################################################
## Check if test is suppressed
sub is_suppressed ()
{
my $method = (split (/::/, (caller(1))[3]))[-1];
return (defined $suppressed_tests{$method} ? 1 : 0);
}
##############################################################################
## Tests
# The point of this test is to check for the existence of ACE_INLINE
# or ASYS_INLINE in a .cpp file. This is most commonly caused by
# copy/pasted code from a .inl/.i file
sub check_for_inline_in_cpp ()
{
return if is_suppressed ();
print "Running ACE_INLINE/ASYS_INLINE check\n";
foreach $file (@files_cpp) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/^ACE_INLINE/) {
print_error ("$file:$.: ACE_INLINE found");
}
if (/^ASYS_INLINE/) {
print_error ("$file:$.: ASYS_INLINE found");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks to make sure we have no files with $Id string in them.
sub check_for_id_string ()
{
return if is_suppressed ();
print "Running \$Id\$ string check\n";
foreach $file (@files_cpp, @files_inl, @files_h, @files_mpc, @files_bor,
@files_gnu, @files_html, @files_idl, @files_pl,
@files_cdp, @files_py, @files_conf, @files_generic, @files_features) {
my $found = 0;
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/\$id\$/) {
print_error ("$file:$.: Incorrect \$id\$ found (correct casing)");
}
if (/\$Id:\$/) {
print_error ("$file:$.: Incorrect \$Id:\$ found (remove colon)");
}
if (/\$Id\$/ || /\$Id: /) {
$found = 1;
}
}
close (FILE);
if ($found == 1) {
print_error ("$file: \$Id\$ string found, not used anymore.");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# check for _MSC_VER
sub check_for_msc_ver_string ()
{
return if is_suppressed ();
print "Running _MSC_VER check\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
my $found = 0;
if (open (FILE, $file)) {
my $disable = 0;
my $mscline = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_msc_ver/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_msc_ver/) {
$disable = 0;
}
if ($disable == 0 and /\_MSC_VER \<= 1200/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \>= 1200/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \> 1200/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \< 1300/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \<= 1300/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \>= 1300/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \< 1310/) {
$found = 1;
$mscline = $.;
}
if ($disable == 0 and /\_MSC_VER \>= 1310/) {
$found = 1;
$mscline = $.;
}
}
close (FILE);
if ($found == 1) {
print_error ("$file:$mscline: Incorrect _MSC_VER check found");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the newline at the end of a file
sub check_for_newline ()
{
return if is_suppressed ();
print "Running newline check\n";
foreach $file (@files_cpp, @files_inl, @files_h,
@files_html, @files_idl, @files_pl) {
if (open (FILE, $file)) {
my $line;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
$line = $_
}
close (FILE);
if ($line !~ /\n$/) {
print_error ("$file:$.: No ending newline found in $file");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for files that are not allowed to be in version control
sub check_for_noncvs_files ()
{
return if is_suppressed ();
print "Running non versioned controlled files check\n";
foreach $file (@files_noncvs, @files_dsp, @files_dsw, @files_makefile, @files_bor) {
print_error ("File $file should not be in version control!");
}
}
# This test checks for the use of ACE_SYNCH_MUTEX in TAO,
# TAO_SYNCH_MUTEX should used instead.
sub check_for_ACE_SYNCH_MUTEX ()
{
return if is_suppressed ();
print "Running ACE_SYNCH_MUTEX check\n";
ITERATION: foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_ACE_SYNCH_MUTEX/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_ACE_SYNCH_MUTEX/) {
$disable = 0;
next;
}
if ($disable == 0 and /ACE_SYNCH_MUTEX/) {
# It is okay to use ACE_SYNCH_MUTEX in ACE
# so don't check the ACE directory. The below
# will check it for TAO
if (($file !~ /.*TAO.*/)) {
next ITERATION;
}
# Disable the check in the ESF directory for the
# time being until we fix the issues there.
if(($file =~ /.*TAO\/orbsvcs\/orbsvcs\/ESF.*/)) {
next ITERATION;
}
print_error ("$file:$.: found ACE_SYNCH_MUTEX, use TAO_SYNCH_MUTEX instead");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of ACE_Thread_Mutex in TAO,
# TAO_SYNCH_MUTEX should used instead to make the code build
# in single-threaded builds.
sub check_for_ACE_Thread_Mutex ()
{
return if is_suppressed ();
print "Running ACE_Thread_Mutex check\n";
ITERATION: foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_ACE_Thread_Mutex/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_ACE_Thread_Mutex/) {
$disable = 0;
next;
}
if ($disable == 0 and /ACE_Thread_Mutex/) {
# It is okay to use ACE_Thread_Mutex in ACE
# so don't check the ACE directory. The below
# will check it for TAO
if (($file !~ /.*TAO.*/)) {
next ITERATION;
}
print_error ("$file:$.: found ACE_Thread_Mutex, use TAO_SYNCH_MUTEX instead to allow the code to work in single-threaded builds");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of ACE_Guard
# ACE_GUARD should used because it checks if we really got a lock
# in single-threaded builds.
sub check_for_ACE_Guard ()
{
return if is_suppressed ();
print "Running ACE_Guard check\n";
ITERATION: foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_ACE_Guard/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_ACE_Guard/) {
$disable = 0;
next;
}
if ($disable == 0 and /ACE_Guard/) {
print_error ("$file:$.: found ACE_Guard, use ACE_GUARD");
}
if ($disable == 0 and /ACE_Read_Guard/) {
print_error ("$file:$.: found ACE_Read_Guard, use ACE_READ_GUARD");
}
if ($disable == 0 and /ACE_Write_Guard/) {
print_error ("$file:$.: found ACE_Write_Guard, use ACE_WRITE_GUARD");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of tabs, spaces should be used instead of tabs
sub check_for_tab ()
{
return if is_suppressed ();
print "Running tabs check\n";
ITERATION: foreach $file (@files_cpp, @files_inl, @files_h, @files_idl, @files_cdp, @files_doxygen, @files_changelog) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_tab/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_tab/) {
$disable = 0;
}
if ($disable == 0 and /.*\t.*/) {
print_error ("$file:$.: found tab");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
sub check_for_trailing_whitespace ()
{
return if is_suppressed ();
print "Running trailing_whitespaces check\n";
ITERATION: foreach $file (@files_cpp, @files_inl, @files_h, @files_idl,
@files_cdp, @files_pl, @files_py, @files_generic) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_trailing_whitespace/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_trailing_whitespace/) {
$disable = 0;
}
if ($disable == 0 and /\s\n$/) {
print_error ("$file:$.: found trailing whitespace");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the lack of ACE_OS
sub check_for_lack_ACE_OS ()
{
return if is_suppressed ();
$OS_NS_arpa_inet_symbols = "inet_addr|inet_aton|inet_ntoa|inet_ntop|inet_pton";
$OS_NS_ctype_symbols = "isalnum|isalpha|iscntrl|isdigit|isgraph|islower|isprint|ispunct|isspace|isupper|isxdigit|tolower|toupper|isblank|isascii|isctype|iswctype";
$OS_NS_dirent_symbols = "closedir|opendir|readdir|readdir_r|rewinddir|scandir|alphasort|seekdir|telldir|opendir_emulation|scandir_emulation|closedir_emulation|readdir_emulation";
$OS_NS_dlfcn_symbols = "dlclose|dlerror|dlopen|dlsym";
$OS_NS_errno_symbols = "last_error|set_errno_to_last_error|set_errno_to_wsa_last_error";
$OS_NS_fcntl_symbols = "fcntl|open";
$OS_NS_math_symbols = "floor|ceil|log2";
$OS_NS_netdb_symbols = "gethostbyaddr|gethostbyaddr_r|gethostbyname|gethostbyname_r|getipnodebyaddr|getipnodebyname|getmacaddress|getprotobyname|getprotobyname_r|getprotobynumber|getprotobynumber_r|getservbyname|getservbyname_r|netdb_acquire|netdb_release";
$OS_NS_poll_symbols = "poll";
$OS_NS_pwd_symbols = "endpwent|getpwent|getpwnam|getpwnam_r|setpwent";
$OS_NS_regex_symbols = "compile|step";
$OS_NS_signal_symbols = "kill|pthread_sigmask|sigaction|sigaddset|sigdelset|sigemptyset|sigfillset|sigismember|signal|sigprocmask|sigsuspend|raise";
$OS_NS_stdio_symbols = "fileno|checkUnicodeFormat|clearerr|cuserid|fclose|fdopen|fflush|fgetc|getc|fgetpos|fgets|flock_adjust_params|flock_init|flock_destroy|flock_rdlock|flock_tryrdlock|flock_trywrlock|flock_unlock|flock_wrlock|fopen|default_win32_security_attributes|default_win32_security_attributes_r|get_win32_versioninfo|get_win32_resource_module|set_win32_resource_module|fprintf|ungetc|fputc|putc|fputs|fread|freopen|fseek|fsetpos|ftell|fwrite|perror|printf|puts|rename|rewind|snprintf|sprintf|tempnam|vsprintf|vsnprintf|asprintf|aswprintf|vasprintf|vaswprintf";
$OS_NS_stdlib_symbols = "_exit|abort|atexit|atof|atol|atoi|atop|bsearch|calloc|exit|free|getenv|getenvstrings|itoa|itoa_emulation|itow_emulation|malloc|mkstemp|mkstemp_emulation|mktemp|setenv|unsetenv|putenv|qsort|rand|rand_r|realloc|realpath|set_exit_hook|srand|strenvdup|strtod|strtol|strtol_emulation|strtoul|strtoul_emulation|strtoll|strtoll_emulation|strtoull|strtoull_emulation|system|getprogname|setprogname";
$OS_NS_string_symbols = "memchr|memchr_emulation|memcmp|memcpy|fast_memcpy|memmove|memset|strcat|strchr|strcmp|strcpy|strcspn|strdup|strdup_emulation|strecpy|strerror|strerror_emulation|strsignal|strlen|strncat|strnchr|strncmp|strncpy|strnlen|strnstr|strpbrk|strrchr|strrchr_emulation|strsncpy|strspn|strstr|strtok|strtok_r|strtok_r_emulation";
$OS_NS_strings_symbols = "strcasecmp|strncasecmp|strcasecmp_emulation";
$OS_NS_stropts_symbols = "getmsg|getpmsg|fattach|fdetach|ioctl|isastream|putmsg|putpmsg";
$OS_NS_sys_mman_symbols = "madvise|mmap|mprotect|msync|munmap|shm_open|shm_unlink";
$OS_NS_sys_msg_symbols = "msgctl|msgget|msgrcv|msgsnd";
$OS_NS_sys_resource_symbols = "getrlimit|getrusage|setrlimit";
$OS_NS_sys_select_symbols = "select";
$OS_NS_sys_sendfile_symbols = "sendfile|sendfile_emulation";
$OS_NS_sys_shm_symbols = "shmat|shmctl|shmdt|shmget";
$OS_NS_sys_socket_symbols = "accept|bind|closesocket|connect|enum_protocols|getpeername|getsockname|getsockopt|join_leaf|listen|recv|recvfrom|recvmsg|recvv|send|sendmsg|sendto|sendv|setsockopt|shutdown|if_nametoindex|if_indextoname|if_nameindex|socket_init|socket_fini|socket|socketpair";
$OS_NS_sys_stat_symbols = "creat|filesize|fstat|lstat|mkdir|mkfifo|stat|umask";
$OS_NS_sys_time_symbols = "gettimeofday";
$OS_NS_sys_uio_symbols = "readv|readv_emulation|writev|writev_emulation";
$OS_NS_sys_utsname_symbols = "uname";
$OS_NS_sys_wait_symbols = "wait|waitpid";
$OS_NS_Thread_symbols = "cleanup_tss|condattr_init|condattr_destroy|cond_broadcast|cond_destroy|cond_init|cond_signal|cond_timedwait|cond_wait|event_destroy|event_init|event_pulse|event_reset|event_signal|event_timedwait|event_wait|lwp_getparams|lwp_setparams|mutex_destroy|mutex_init|mutex_lock|mutex_lock_cleanup|mutex_trylock|mutex_unlock|priority_control|recursive_mutex_cond_unlock|recursive_mutex_cond_relock|recursive_mutex_destroy|recursive_mutex_init|recursive_mutex_lock|recursive_mutex_trylock|recursive_mutex_unlock|rw_rdlock|rw_tryrdlock|rw_trywrlock|rw_trywrlock_upgrade|rw_unlock|rw_wrlock|rwlock_destroy|rwlock_init|sched_params|scheduling_class|sema_destroy|sema_init|sema_post|sema_trywait|sema_wait|semctl|semget|semop|set_scheduling_params|sigtimedwait|sigwait|sigwaitinfo|thr_cancel|thr_cmp|thr_continue|thr_create|thr_equal|thr_exit|thr_getconcurrency|thr_getprio|thr_getspecific_native|thr_getspecific|thr_join|thr_get_affinity|thr_set_affinity|thr_key_detach|thr_key_used|thr_keycreate_native|thr_keycreate|thr_keyfree|thr_kill|thr_min_stack|thr_self|thr_setcancelstate|thr_setcanceltype|thr_setconcurrency|thr_setprio|thr_setspecific_native|thr_setspecific|thr_sigsetmask|thr_suspend|thr_testcancel|thr_yield|thread_mutex_destroy|thread_mutex_init|thread_mutex_lock|thread_mutex_trylock|thread_mutex_unlock|unique_name";
$OS_NS_time_symbols = "asctime|asctime_r|clock_gettime|clock_settime|ctime|ctime_r|difftime|gmtime|gmtime_r|localtime|localtime_r|mktime|nanosleep|readPPCTimeBase|strftime|strptime|strptime_emulation|strptime_getnum|time|timezone|tzset";
$OS_NS_unistd_symbols = "access|alarm|allocation_granularity|argv_to_string|chdir|rmdir|close|dup|dup2|execl|execle|execlp|execv|execve|execvp|fork|fork_exec|fsync|ftruncate|getcwd|getgid|getegid|getopt|getpagesize|getpgid|getpid|getppid|getuid|geteuid|hostname|isatty|lseek|llseek|num_processors|num_processors_online|pipe|pread|pwrite|read|read_n|readlink|sbrk|setgid|setegid|setpgid|setregid|setreuid|setsid|setuid|seteuid|sleep|string_to_argv|swab|sysconf|sysinfo|truncate|ualarm|unlink|write|write_n";
$OS_NS_wchar_symbols = "fgetwc|wcscat_emulation|wcschr_emulation|wcscmp_emulation|wcscpy_emulation|wcscspn_emulation|wcsicmp_emulation|wcslen_emulation|wcsncat_emulation|wcsncmp_emulation|wcsncpy_emulation|wcsnicmp_emulation|wcspbrk_emulation|wcsrchr_emulation|wcsrchr_emulation|wcsspn_emulation|wcsstr_emulation|wslen|wscpy|wscmp|wsncmp|ungetwc";
print "Running ACE_OS check\n";
foreach $file (@files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_lack_ACE_OS/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_lack_ACE_OS/) {
$disable = 0;
}
if ($disable == 0) {
if($file !~ /.c$/ && $file !~ /S.cpp$/ && $file !~ /S.inl$/ && $file !~ /C.cpp$/ && $file !~ /C.inl$/) {
if($file !~ /OS_NS_arpa_inet/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_arpa_inet_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_arpa_inet.h");
}
}
if($file !~ /OS_NS_ctype/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_ctype_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_ctype.h");
}
}
if($file !~ /OS_NS_dirent/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_dirent_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_dirent.h");
}
}
if($file !~ /OS_NS_dlfcn/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_dlfcn_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_dlfcn.h");
}
}
if($file !~ /OS_NS_errno/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_errno_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_errno.h");
}
}
if($file !~ /OS_NS_fcntl/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_fcntl_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_fcntl.h");
}
}
if($file !~ /OS_NS_math/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_math_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_math.");
}
}
if($file !~ /OS_NS_netdb/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_netdb_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_netdb.h");
}
}
if($file !~ /OS_NS_poll/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_netdb_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_poll.h");
}
}
if($file !~ /OS_NS_pwd/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_pwd_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_pwd.h");
}
}
if($file !~ /OS_NS_regex/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_regex_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_regex.h");
}
}
if($file !~ /OS_NS_signal/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_signal_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_signal.h");
}
}
if($file !~ /OS_NS_stdlib/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_stdlib_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_stdlib.h");
}
}
if($file !~ /OS_NS_stdio/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_stdio_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_stdio.h");
}
}
if($file !~ /OS_NS_string/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_string_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_string.h");
}
}
if($file !~ /OS_NS_strings/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_strings_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_strings.h");
}
}
if($file !~ /OS_NS_stropts/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_stropts_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_stropts.h");
}
}
if($file !~ /OS_NS_sys_mman/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_mman_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_mman.h");
}
}
if($file !~ /OS_NS_sys_msg/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_msg_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_msg.h");
}
}
if($file !~ /OS_NS_sys_resource/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_resource_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_resource.h");
}
}
if($file !~ /OS_NS_sys_select/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_select_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_select.h");
}
}
if($file !~ /OS_NS_sys_sendfile/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_sendfile_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_sendfile.h");
}
}
if($file !~ /OS_NS_sys_shm/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_shm_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_shm.h");
}
}
if($file !~ /OS_NS_sys_socket/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_socket_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_socket.h");
}
}
if($file !~ /OS_NS_sys_stat/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_stat_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_stat.h");
}
}
if($file !~ /OS_NS_sys_time/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_time_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_time.h");
}
}
if($file !~ /OS_NS_sys_uio/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_uio_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_uio.h");
}
}
if($file !~ /OS_NS_sys_utsname/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_utsname_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_utsname.h");
}
}
if($file !~ /OS_NS_sys_wait/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_sys_wait_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_sys_wait.h");
}
}
if($file !~ /OS_NS_Thread/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_Thread_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_Thread.h");
}
}
if($file !~ /OS_NS_time/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_time_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_time.h");
}
}
if($file !~ /OS_NS_unistd/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_unistd_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_unistd.h");
}
}
if($file !~ /OS_NS_wchar/) {
if(/(\s+:{0,2}|\(:{0,2}|\s*!:{0,2}|^|\):{0,2})($OS_NS_wchar_symbols)\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: missing ACE_OS use ace/OS_NS_wchar.h");
}
}
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of exception specification,
# exception specification has fallen out of favor, and generally
# should not be used.
sub check_for_exception_spec ()
{
return if is_suppressed ();
print "Running exception specification check\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_exception_sepc/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_exception_sepc/) {
$disable = 0;
}
if ($disable == 0) {
if(/throw\s*\(\s*\)/) {
#next;
}
elsif(/(^|\s+)throw\s*\(/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: exception specification found");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of NULL,
# NULL shouldn't be used, use 0 instead
sub check_for_NULL ()
{
return if is_suppressed ();
print "Running NULL usage check\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_NULL/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_NULL/) {
$disable = 0;
}
if ($disable == 0) {
if(/(\(|\)|\s+|=)NULL(\)|\s+|\;|\,)/ and $` !~ /\/\// and $` !~ /\/\*/ and $` !~ /\*\*+/ and $` !~ /\s+\*+\s+/) {
print_error ("$file:$.: NULL found");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for improper main declaration,
# the proper form should look like:
# int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
sub check_for_improper_main_declaration ()
{
return if is_suppressed ();
print "Running Improper main() declaration check\n";
foreach $file (@files_cpp) {
if (open (FILE, $file)) {
my $disable = 0;
my $type_of_main;
my $multi_line;
my $not_found_end_line_count= 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (!defined $multi_line) {
if (/FUZZ\: disable check_for_improper_main_declaration/) {
$disable = 1;
next;
}
elsif (/FUZZ\: enable check_for_improper_main_declaration/) {
$disable = 0;
next;
}
elsif ($disable == 0) {
s/^\s+//; ## Remove leading space
s/\s*(\/\/.*)?$//; ## Remove trailing space and line comments
if (s/^(?:.*\s)?(main|ACE_TMAIN)\s*//) {
$type_of_main = $1; ## main or ACE_TMAIN
$multi_line = $_; ## Rest of the line
}
else {
next;
}
}
}
else {
$_ =~ s/^\s+//; ## Remove leading space
$_ =~ s/\s*(\/\/.*)?$//; ## Remove trailling space and line comments
if ($multi_line eq "") { ## Append this line to existing statement.
$multi_line = $_;
}
else {
$multi_line .= ' ' . $_;
}
}
$multi_line =~ s!^(/+\*.*?\*/\s*)*!!; ## Remove leading /* ... */ comments
next if ($multi_line eq ""); ## Must have something after main
if ($multi_line !~ m/^\(/) {
## Not a function opening bracket, we will ignore this one
## it is not a main function.
undef $multi_line;
$not_found_end_line_count = 0;
}
elsif ($multi_line =~ s/^\(\s*([^\)]*?)\s*\)[^;\{]*?\{//) {
$multi_line = $1; ## What was between the main's ( and )
$multi_line =~ s/\s{2,}/ /g; ## Compress white space
my $was = $multi_line;
$multi_line =~ s!([^/])\*\s([^/])!$1\*$2!g; ## Remove space after * (except around comment)
$multi_line =~ s!([^/])\s\[!$1\[!g; ## Remove space before [ (except following comment)
$multi_line =~ s!\s?\*/\s?/\*\s?! !g; ## Connect seporate adjacent /* ... */ comments
if ($multi_line =~ s!^([^,]*?)\s?,\s?(/+\*.*?\*/\s?)*!!) { # Fails if only 1 parameter (ignore this main)
my $arg1 = $1;
if ($multi_line =~ s/^(\w[\w\d]*)\s?//) { # Fails if no type for 2nd parameter (ignore this main)
my $arg2_type = $1;
$multi_line =~ s!^(?:/+\*.*?\*/\s?)?(\**)(\w[\w\d]*|\s?/\*.*?\*/\s?)?!!;
my $prefix = $1; ## should be * or **
my $name = $2; ## is now arg2's variable name
$multi_line =~ s!\s?\*/\s?/\*\s?! !g; ## Connect seporate adjacent /* ... */ comments
## remove any comment after postfix
if ($multi_line =~ s!\s?(/+\*.*?\*/)$!! && $name eq '') {
$name = "$1 "; ## Some name argv in comment after []
}
## multi_line now postfix, should be []
if ($type_of_main ne 'ACE_TMAIN' ||
$arg2_type ne 'ACE_TCHAR' ||
!(($prefix eq '*' && $multi_line eq '[]') ||
($prefix eq '**' && $multi_line eq '' )) ) {
print_error ("$file:$.: $type_of_main ($was) should be ACE_TMAIN ($arg1, ACE_TCHAR \*$name\[])");
}
}
}
undef $multi_line;
$not_found_end_line_count = 0;
}
elsif ($not_found_end_line_count < 10) { # Limit the search for ( ... ) following main to ten lines
++$not_found_end_line_count;
}
else {
undef $multi_line;
$not_found_end_line_count = 0;
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of "inline" instead of ACE_INLINE
sub check_for_inline ()
{
return if is_suppressed ();
print "Running inline check\n";
foreach $file (@files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_inline/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_inline/) {
$disable = 0;
}
if ($disable == 0 and m/^\s*inline/) {
print_error ("$file:$.: 'inline' keyword found");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the inclusion of math.h. math.h should be avoided
# since on some platforms, "exceptions" is defined as a struct, which will
# cause problems with exception handling
sub check_for_math_include ()
{
return if is_suppressed ();
print "Running math.h test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_math_include/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_math_include/) {
$disable = 0;
}
if ($disable == 0
and /^\s*#\s*include\s*(\/\*\*\/){0,1}\s*\<math\.h\>/) {
print_error ("$file:$.: <math.h> included");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the inclusion of streams.h.
# // FUZZ: disable check_for_streams_include
sub check_for_streams_include ()
{
return if is_suppressed ();
print "Running ace/streams.h test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_streams_include/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_streams_include/) {
$disable = 0;
}
if ($disable == 0
and /^\s*#\s*include\s*\"ace\/streams\.h\"/) {
print_error ("$file:$.: expensive ace/streams.h included; consider ace/iosfwd.h");
print " ace/streams.h is very expensive in both ";
print "compile-time and footprint. \n";
print " Please consider including ace/iosfwd.h instead.\n\n";
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the inclusion of Synch*.h.
sub check_for_synch_include ()
{
return if is_suppressed ();
print "Running ace/Synch*.h test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_synch_include/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_synch_include/) {
$disable = 0;
}
if ($disable == 0
and (/^\s*#\s*include\s*\"(ace\/Synch\.h)\"/
or /^\s*#\s*include\s*\"(ace\/Synch_T\.h)\"/)) {
my $synch = $1;
print_error ("$file:$.: expensive $synch included; consider individual synch file");
print " $synch is very expensive in both ";
print "compile-time and footprint. \n";
print " Please consider including one of the ";
print "individual synch files instead.\n\n";
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# For general readability, lines should not contain more than 80 characters
sub check_for_line_length ()
{
return if is_suppressed ();
print "Running line length test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
# Make sure to ignore ACE_RCSID lines, since they
# are difficult to get under 80 chars.
if (/.{80,}/ and !/^ACE_RCSID/) {
print_error ("$file:$.: line longer than 80 chars");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# For preprocessor directives, only the old C style comments (/* */)
# should be used, not the newer // style.
sub check_for_preprocessor_comments ()
{
return if is_suppressed ();
print "Running preprocessor comment test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/^\#.*\/\//) {
print_error ("$file:$.: C++ comment in directive");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# We should not have empty files in the repo
sub check_for_empty_files ()
{
return if is_suppressed ();
print "Running empty file test\n";
foreach $file (@files_inl, @files_cpp, @files_rb) {
my $found_non_empty_line = 0;
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
next if /^[[:blank:]]*$/; # skip empty lines
next if /^[[:blank:]]*\/\//; # skip C++ comments
next if /^[[:blank:]]*\/\*/; # skip C++ comments
$found_non_empty_line = 1;
last;
}
close (FILE);
if ($found_non_empty_line == 0) {
print_error ("$file:1: empty file should not be in the repository");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the use of the Win32 Unicode string defines
# or outdated ASYS_* macros
# We should only be using the ACE_TCHAR, ACE_TEXT macros instead.
sub check_for_tchar
{
return if is_suppressed ();
print "Running TCHAR test\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_tchar/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_tchar/) {
$disable = 0;
}
if ($disable == 0) {
if (/LPTSTR/) {
print_error ("$file:$.: LPTSTR found");
}
if (/LPCTSTR/) {
print_error ("$file:$.: LPCTSTR found");
}
if (/ASYS_TCHAR/) {
print_error ("$file:$.: ASYS_TCHAR found");
}
elsif (/TCHAR/ and !/ACE_TCHAR/) {
### Do a double check, since some macros do have TCHAR
### (like DEFAULTCHARS)
if (/^TCHAR[^\w_]/ or /[^\w_]TCHAR[^\w_]/) {
print_error ("$file:$.: TCHAR found");
}
}
if (/ASYS_TEXT/) {
print_error ("$file:$.: ASYS_TEXT found");
}
elsif (/TEXT/ and !/ACE_TEXT/) {
### Do a double check, since there are several macros
### that end with TEXT
if (/^TEXT\s*\(/ or /[^\w_]TEXT\s*\(/) {
print_error ("$file:$.: TEXT found");
}
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This checks to see if Makefiles define a DEPENDENCY_FILE, and if they do
# whether or not it's in the cvs repo.
sub check_for_dependency_file ()
{
return if is_suppressed ();
print "Running DEPENDENCY_FILE test\n";
foreach $file (@files_makefile) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/^DEPENDENCY_FILE\s* =\s*(.*)/) {
my $depend = $1;
my $path = $file;
$path =~ s/\/GNUmakefile.*/\//;
$depend = $path . $depend;
unless (open (DFILE, $depend)) {
print_error ("DEPENDENCY_FILE \"$depend\" not found");
print " Either add \"$depend\" to git ";
print "or remove DEPENDENCY_FILE variable\n";
print " from $file\n\n";
}
close (DFILE);
}
}
close (FILE);
}
else {
print_error ("cannot open $file");
}
}
}
# This checks to see if GNUmakefiles define a MAKEFILE, and if it matches the
# name of the GNUmakefile
sub check_for_makefile_variable ()
{
return if is_suppressed ();
print "Running MAKEFILE variable test\n";
foreach $file (@files_makefile) {
if (!(substr($file,-4) eq ".bor")
and !(substr($file,-3) eq ".am")
and !(substr($file,-4) eq ".vac")
and !(substr($file,-4) eq ".alt")) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
my $makevarfound = 0;
my $filename = basename($file,"");
while (<FILE>) {
if (/^MAKEFILE\s*=\s*(.*)/) {
$makevarfound = 1;
$makevar = $1;
if (!($makevar eq $filename)) {
print_error ("$file:$.: MAKEFILE variable $makevar != $filename");
print " Change MAKEFILE = $filename in $file.\n\n";
}
}
}
if ($makevarfound == 0 and !($filename eq "GNUmakefile")) {
print_error ("$file:$.: MAKEFILE variable missing in $file");
print " Add MAKEFILE = $filename to the top of $file.\n\n";
}
close (FILE);
}
else {
print_error ("cannot open $file");
}
}
}
}
# This checks to make sure files include ace/post.h if ace/pre.h is included
# and vice versa.
sub check_for_pre_and_post ()
{
return if is_suppressed ();
print "Running pre.h/post.h test\n";
foreach $file (@files_h) {
my $pre = 0;
my $post = 0;
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_pre_and_post/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_pre_and_post/) {
$disable = 0;
}
if ($disable == 0) {
if (/^\s*#\s*include\s*\"ace\/pre\.h\"/) {
print_error ("$file:$.: pre.h missing \"/**/\"");
++$pre;
}
if (/^\s*#\s*include\s*\s*\"ace\/post\.h\"/) {
print_error ("$file:$.: post.h missing \"/**/\"");
++$post;
}
if (/^\s*#\s*include\s*\/\*\*\/\s*\"ace\/pre\.h\"/) {
++$pre;
}
if (/^\s*#\s*include\s*\/\*\*\/\s*\"ace\/post\.h\"/) {
++$post;
}
}
}
close (FILE);
if ($disable == 0 && $pre != $post) {
print_error ("$file:1: pre.h/post.h mismatch");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test verifies that the same number of "#pragma warning(push)" and
# "#pragma warning(pop)" pragmas are used in a given header.
sub check_for_push_and_pop ()
{
return if is_suppressed ();
print "Running #pragma (push)/(pop) test\n";
foreach $file (@files_h) {
my $push_count = 0;
my $pop_count = 0;
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_push_and_pop/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_push_and_pop/) {
$disable = 0;
}
if ($disable == 0) {
if (/^\s*#\s*pragma\s*warning\s*\(\s*push[,1-4]*\s*\)/) {
++$push_count;
}
if (/^\s*#\s*pragma\s*warning\s*\(\s*pop\s*\)/) {
++$pop_count;
}
}
}
close (FILE);
if ($disable == 0 && $push_count != $pop_count) {
print_error ("$file: #pragma warning(push)/(pop) mismatch");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test verifies that the same number of
# "ACE_VERSIONED_NAMESPACE_BEGIN_DECL" and
# "ACE_END_VERSIONED_NAMESPACE_DECL" macros are used in a given
# source file.
sub check_for_versioned_namespace_begin_end ()
{
return if is_suppressed ();
print "Running versioned namespace begin/end test\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
my $begin_count = 0;
my $end_count = 0;
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/^\s*\w+_BEGIN_VERSIONED_NAMESPACE_DECL/) {
++$begin_count;
}
if (/^\s*\w+_END_VERSIONED_NAMESPACE_DECL/) {
++$end_count;
}
if ($begin_count > $end_count and
/^\s*#\s*include(\s*\/\*\*\/)?\s*"/) {
print_error ("$file:$.: #include directive within Versioned namespace block");
}
}
close (FILE);
if ($begin_count != $end_count) {
print_error ("$file: Versioned namespace begin($begin_count)/end($end_count) mismatch");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# Check doxygen @file comments
sub check_for_mismatched_filename ()
{
return if is_suppressed ();
print "Running doxygen \@file test\n";
foreach $file (@files_h, @files_cpp, @files_inl, @files_idl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (m/\@file\s*([^\s]+)/){
# $file includes complete path, $1 is the name after
# @file. We must check whether the last part of $file
# is equal to $1
if ($file !~ /$1$/) {
print_error ("$file:$.: \@file mismatch in $file, found $1");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# check for bad run_test
sub check_for_bad_run_test ()
{
return if is_suppressed ();
print "Running run_test.pl test\n";
foreach $file (@files_run_pl) {
if (open (FILE, $file)) {
my $is_run_test = 0;
my $sub = 0;
if (($file =~ /.*TAO\/examples\/Advanced.*/)) {
next ITERATION;
}
if (($file =~ /.*TAO\/orbsvcs\/examples\/Security\/Send_File.*/)) {
next ITERATION;
}
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (m/PerlACE/ || m/ACEutils/) {
$is_run_test = 1;
}
if ($is_run_test == 1) {
if (m/ACEutils/) {
print_error ("$file:$.: ACEutils.pm still in use");
}
if (m/unshift \@INC/) {
print_error ("$file:$.: unshifting \@INC; use \"use lib\"");
}
if (m/\$EXEPREFIX/) {
print_error ("$file:$.: using \$EXEPREFIX");
}
if (m/\$EXE_EXT/) {
print_error ("$file:$.: using \$EXE_EXT");
}
if (m/Sys::Hostname/) {
print_error ("$file:$.: using Sys::Hostname");
}
if (m/PerlACE::wait_interval_for_process_creation/) {
print_error ("$file:$.: using PerlACE::wait_interval_for_process_creation");
}
if (m/PerlACE::waitforfile_timed/) {
print_error ("$file:$.: using PerlACE::waitforfile_timed");
}
if (m/PerlACE::is_vxworks_test/) {
print_error ("$file:$.: using PerlACE::is_vxworks_test");
}
if (m/PerlACE::add_lib_path/) {
print_error ("$file:$.: using PerlACE::add_lib_path, use AddLibPath on the target");
}
if (m/PerlACE::Run_Test/) {
print_error ("$file:$.: using PerlACE::Run_Test, use PerlACE::TestTarget");
}
if (m/PerlACE::random_port/) {
print_error ("$file:$.: using PerlACE::random_port, use TestTarget::random_port");
}
if (m/PerlACE::Process/) {
print_error ("$file:$.: using PerlACE::Process");
}
if (m/PerlACE::TestConfig/) {
print_error ("$file:$.: using PerlACE::TestConfig");
}
if (m/ACE_RUN_VX_TGTHOST/) {
print_error ("$file:$.: using ACE_RUN_VX_TGTHOST, use TestTarget::HostName");
}
if (m/Spawn(Wait(Kill)?)?\s*\(.+\->ProcessStop.*\)/) {
print_error ("$file:$.: uses Stop together with Spawn");
}
if (m/Spawn(Wait(Kill)?)?\s*\(\d+\)/) {
print_error ("$file:$.: uses hardcoded timeout for Spawn");
}
if (m/Kill\s*\(\d+\)/) {
print_error ("$file:$.: uses hardcoded timeout for Kill");
}
if (m/unlink/) {
print_error ("$file:$.: using unlink");
}
if (m/PerlACE::LocalFile/) {
print_error ("$file:$.: using PerlACE::LocalFile");
}
if (m/\$DIR_SEPARATOR/) {
print_error ("$file:$.: using \$DIR_SEPARATOR");
}
if (m/ACE\:\:/ && !m/PerlACE\:\:/) {
print_error ("$file:$.: using ACE::*");
}
if (m/Process\:\:/ && !m/PerlACE\:\:Process\:\:/) {
print_error ("$file:$.: using Process::*");
}
if (m/Process\:\:Create/) {
print_error ("$file:$.: using Process::Create");
}
if (m/^ [^ ]/) {
print_warning ("$file:$.: using two-space indentation");
}
if (m/^\s*\t/) {
print_error ("$file:$.: Indenting using tabs");
}
if (m/^\s*\{/ && $sub != 1) {
print_warning ("$file:$.: Using Curly Brace alone");
}
if (m/timedout/i && !m/\#/) {
print_error ("$file:$.: timedout message found");
}
if (m/^\s*sub/) {
$sub = 1;
}
else {
$sub = 0;
}
}
}
close (FILE);
if ($is_run_test) {
my @output = `perl -wc $file 2>&1`;
foreach $output (@output) {
chomp $output;
if ($output =~ m/error/i) {
print_error ($output);
}
elsif ($output !~ m/syntax OK/) {
print_warning ($output);
}
}
}
}
}
}
# Check for links to ~schmidt/ACE_wrappers/, which should not be in the
# documentation
sub check_for_absolute_ace_wrappers()
{
return if is_suppressed ();
print "Running absolute ACE_wrappers test\n";
foreach $file (@files_html) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (m/\~schmidt\/ACE_wrappers\//) {
chomp;
print_error ("$file:$.: ~schmidt/ACE_wrappers found");
print_error ($_);
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# Check for generated headers in the code documentation
sub check_for_generated_headers()
{
return if is_suppressed ();
print "Running generated headers test\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (m/Code generated by the The ACE ORB \(TAO\) IDL Compiler/) {
chomp;
print_error ("$file:$.: header found");
print_error ($_);
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# Make sure ACE_[OS_]TRACE matches the function/method
sub check_for_bad_ace_trace()
{
return if is_suppressed ();
print "Running TRACE test\n";
foreach $file (@files_inl, @files_cpp) {
if (open (FILE, $file)) {
my $class;
my $function;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
# look for methods or functions
if (m/(^[^\s][^\(]*)\:\:([^\:^\(]*[^\s^\(])\s*/) {
$class = $1;
$function = $2;
}
elsif (m/^([^\s^\(^\#]*) \(/i) {
$class = "";
$function = $1;
}
elsif (m/^(operator.*) \(/i) {
$class = "";
$function = $1;
}
elsif (m/^class (.*)\s*:/) {
$class = $1;
$function = "";
}
elsif (m/^class (.*)\s*$/) {
$class = $1;
$function = "";
}
# print "TRACE_CHECK. Class = $class\n";
# Look for TRACE statements
if (m/ACE_OS_TRACE\s*\(\s*\"(.*)\"/
|| m/ACE_TRACE\s*\(\s*\"(.*)\"/) {
my $trace = $1;
# reduce the classname
if ($class =~ m/([^\s][^\<^\s]*)\s*\</) {
$class = $1;
}
# print "TRACE_CHECK. Found a trace. Class = $class\n";
if ($class =~ m/([^\s^\&^\*]*)\s*$/) {
$class = $1;
}
# print "TRACE_CHECK. Augmenting class. Class = $class\n";
if ($trace !~ m/\Q$function\E/
|| ($trace =~ m/\:\:/ && !($trace =~ m/\Q$class\E/ && $trace =~ m/\Q$function\E/))) {
print_error ("$file:$.: Mismatched TRACE");
print_error ("$file:$.: I see \"$trace\" but I think I'm in \""
. $class . "::" . $function . "\"");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
sub check_for_deprecated_macros ()
{
return if is_suppressed ();
## Take the current working directory and remove everything up to
## ACE_wrappers (or ACE for the peer-style checkout). This will be
## used to determine when the use of ACE_THROW_SPEC is an error.
my($cwd) = getcwd();
if ($cwd =~ s/.*(ACE_wrappers)/$1/) {
}
elsif ($cwd =~ s/.*(ACE)/$1/) {
}
print "Running deprecated macros check\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/ACE_THROW_SPEC/) {
## Do not use ACE_THROW_SPEC in TAO.
if ($file =~ /TAO/i || $cwd =~ /TAO/i) {
print_error ("$file:$.: ACE_THROW_SPEC found.");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for ptr_arith_t usage in source code. ptr_arith_t
# is non-portable. Use ptrdiff_t instead.
sub check_for_ptr_arith_t ()
{
return if is_suppressed ();
print "Running ptr_arith_t check\n";
foreach $file (@files_cpp, @files_inl, @files_h) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
next if m/^\s*\/\//; # Ignore C++ comments.
next if m/^\s*$/; # Skip lines only containing
# whitespace.
# Check for ptr_arith_t usage. This test should
# ignore typedefs, and should only catch variable
# declarations and parameter types.
if (m/ptr_arith_t / || m/ptr_arith_t,/) {
print_error ("$file:$.: ptr_arith_t; use ptrdiff_t instead.");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the #include <ace/...>
# This check is suggested by Don Hinton to force user to use
# " " instead of <> to avoid confict with Doxygen.
sub check_for_include ()
{
return if is_suppressed ();
print "Running the include check\n";
foreach $file (@files_h, @files_cpp, @files_inl, @files_idl) {
my $bad_occurance = 0;
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_include/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_include/) {
$disable = 0;
}
if ($disable == 0) {
if (/^\s*#\s*include\s*<[(ace)|(TAO)]\/.*>/) {
print_error ("$file:$.: include <ace\/..> used");
++$bad_occurance;
}
if (/^\s*#\s*include\s*<tao\/.*>/) {
print_error ("$file:$.: include <tao\/..> used");
++$bad_occurance;
}
}
}
close (FILE);
if ($disable == 0 && $bad_occurance > 0 ) {
print_error ("$file:1: found $bad_occurance usage(s) of #include <> of ace\/tao.");
}
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test verifies that all equality, relational and logical
# operators return bool, as is the norm for modern C++.
#
# NOTE: This test isn't fool proof yet.
sub check_for_non_bool_operators ()
{
return if is_suppressed ();
print "Running non-bool equality, relational and logical operator check\n";
foreach $file (@files_h, @files_inl, @files_cpp) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
my $found_bool = 0;
my $found_return_type = 0;
while (<FILE>) {
if ($found_bool == 0
&& (/[^\w]bool\s*$/
|| /^bool\s*$/
|| /\sbool\s+\w/
|| /^bool\s+\w/
|| /[^\w]return\s*$/))
{
$found_bool = 1;
$found_return_type = 0;
next;
}
if ($found_bool == 0 && $found_return_type == 0
&& /^(?:\w+|\s+\w+)\s*$/
&& !/[^\w]return\s*$/)
{
$found_return_type = 1;
$found_bool = 0;
next;
}
if ($found_bool == 0
&& /(?<![^\w]bool)(\s+|\w+::|>\s*::)operator\s*(?:!|<|<=|>|>=|==|!=|&&|\|\|)\s*\(/
&& !/\(.*operator\s*(?:!|<|<=|>|>=|==|!=|&&|\|\|)\s*\(/
&& !/^\s*return\s+/) {
print_error ("$file:$.: non-bool return type for operator");
}
$found_return_type = 0;
$found_bool = 0;
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test verifies that all filenames are short enough
sub check_for_long_file_names ()
{
return if is_suppressed ();
my $max_filename = 50;
my $max_mpc_projectname = $max_filename - 12; ## GNUmakefile.[project_name]
print "Running file names check\n";
foreach $file (@files_cpp, @files_inl, @files_h, @files_html,
@files_dsp, @files_dsw, @files_gnu, @files_idl,
@files_pl, @files_changelog, @files_makefile,
@files_bor, @files_mpc, @files_generic) {
if ( length( basename($file) ) >= $max_filename )
{
print_error ("File name $file meets or exceeds $max_filename chars.");
}
}
foreach $file (grep(/\.mpc$/, @files_mpc)) {
if (open(FH, $file)) {
my($blen) = length(basename($file)) - 4; ## .mpc
while(<FH>) {
if (/project\s*(:.*)\s*{/) {
if ($blen >= $max_mpc_projectname) {
print_warning ("File name $file meets or exceeds $max_mpc_projectname chars.");
}
}
elsif (/project\s*\(([^\)]+)\)/) {
my($name) = $1;
if ($name =~ /\*/) {
my($length) = length($name) + (($name =~ tr/*//) * $blen);
if ($length >= $max_mpc_projectname) {
print_warning ("Project name ($name) from $file will meet or exceed $max_mpc_projectname chars when expanded by MPC.");
}
}
else {
if (length($name) >= $max_mpc_projectname) {
print_warning ("Project name ($name) from $file meets or exceeds $max_mpc_projectname chars.");
}
}
}
}
close(FH);
}
}
}
sub check_for_refcountservantbase ()
{
return if is_suppressed ();
print "Running PortableServer::RefCountServantBase derivation check\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/PortableServer::RefCountServantBase/) {
print_error ("$file:$.: reference to deprecated PortableServer::RefCountServantBase");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
sub check_for_old_documentation_style ()
{
return if is_suppressed ();
print "Running documentation style check\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/\/\/\s*\= TITLE/) {
print_error ("$file:$.: found old documentation style // = TITLE");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
sub check_for_TAO_Local_RefCounted_Object ()
{
return if is_suppressed ();
print "Running TAO_Local_RefCounted_Object check\n";
ITERATION: foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_TAO_Local_RefCounted_Object/) {
$disable = 1;
}
if (/FUZZ\: enable check_for_TAO_Local_RefCounted_Object/) {
$disable = 0;
}
if ($disable == 0 and /TAO_Local_RefCounted_Object/) {
print_error ("$file:$.: TAO_Local_RefCounted_Object is deprecated, use CORBA::LocalObject instead");
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the correct use of ORB_init() so as
# to be compatible with wide character builds.
sub check_for_ORB_init ()
{
return if is_suppressed ();
print "Running the ORB_init() wide character incompatibility check\n";
foreach $file (@files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
my $multi_line;
my $not_found_end_line_count= 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (!defined $multi_line) {
if (/FUZZ\: disable check_for_ORB_init/) {
$disable = 1;
next;
}
elsif (/FUZZ\: enable check_for_ORB_init/) {
$disable = 0;
next;
}
elsif ($disable == 0) {
s/^\s+//; ## Remove leading space
s/\s*(\/\/.*)?$//; ## Remove trailling space and line comments
if (s/^([^=]*=)?\s*(CORBA\s*::\s*)?ORB_init\s*//) {
$multi_line = $_; ## Rest of the line
}
else {
next;
}
}
}
else {
$_ =~ s/^\s+//; ## Remove leading space
$_ =~ s/\s*(\/\/.*)?$//; ## Remove trailling space and line comments
if ($multi_line eq "") { ## Append this line to existing statement.
$multi_line = $_;
}
else {
$multi_line .= ' ' . $_;
}
}
my $testing = $multi_line;
if ($testing =~ s/^\(([^\"\/\)]*(\"([^\"\\]*(\\.)*)\")?(\/+\*.*?\*\/\s*)*)*\)//) {
# $testing has thrown away what we actually want, i.e.
# we want to ignore what's left in $testing.
$multi_line = substr ($multi_line, 0, -length ($testing));
$multi_line =~ s!/\*.*?\*/! !g; ## Remove any internal /* ... */ comments
$multi_line =~ s!\s{2,}! !g; ## collapse multi spaces
$multi_line =~ s/^\(\s*//; ## Trim leading ( and space
$multi_line =~ s/\s*\)$//; ## Trim trailing space and )
if ($multi_line =~ s/^[^,]*,\s*//) { # If this fails there is only 1 parameter (which we will ignore)
# 1st parameter has been removed by the above, split up remaining 2 & 3
$multi_line =~ s/^([^,]*),?\s*//;
my $param2 = $1;
$param2 =~ s/\s+$//; # Trim trailing spaces
print_error ("$file:$.: ORB_init() 2nd parameter requires static_cast<ACE_TCHAR **>(0)") if ($param2 eq '0');
print_error ("$file:$.: ORB_init() 3rd parameter is redundant (default orbID or give as string)") if ($multi_line eq '0');
print_error ("$file:$.: ORB_init() 3rd parameter is redundant (default orbID already \"\")") if ($multi_line eq '""');
}
undef $multi_line;
$not_found_end_line_count = 0;
}
elsif ($not_found_end_line_count < 10) { # Limit the search for ( ... ) following ORB_init to ten lines
++$not_found_end_line_count;
}
else {
undef $multi_line;
$not_found_end_line_count = 0;
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
# This test checks for the presence of an include for ace/OS.h
# which should never occur. Only user code is allowed to include OS.h.
sub check_for_include_OS_h ()
{
return if is_suppressed ();
print "Running the OS.h inclusion check\n";
foreach $file (@files_h, @files_cpp, @files_inl) {
if (open (FILE, $file)) {
my $disable = 0;
print "Looking at file $file\n" if $opt_d;
while (<FILE>) {
if (/FUZZ\: disable check_for_include_OS_h/) {
$disable = 1;
next;
}
elsif (/FUZZ\: enable check_for_include_OS_h/) {
$disable = 0;
next;
}
elsif ($disable == 0 and /^\s*#\s*include\s*<[(ace)|(TAO)]\/.*>/) {
print_error ("$file:$.: include <ace\/..> used");
}
else {
if ($disable == 0 and /^\s*#\s*include\s*"ace\/OS.h"/) {
print_error ("$file:$.: include ace/OS.h used");
}
}
}
close (FILE);
}
else {
print STDERR "Error: Could not open $file\n";
}
}
}
sub check_for_ace_log_categories ()
{
return if is_suppressed ();
print "Running the ACE log categories check\n";
my @macros = qw/HEX_DUMP ERROR ERROR_RETURN ERROR_BREAK DEBUG/;
my $macros = join ('|', @macros);
for my $f (@files_h, @files_cpp, @files_inl) {
my $cat = 'ACE';
$f =~ s!\\!/!g;
if ($f =~ /\bace\/(\w+)/) {
next if $1 eq 'Log_Msg' || $` =~ /\/protocols\/$/;
$cat = 'ACELIB';
}
elsif ($f =~ /tao\// && $f !~ /interop-tests\//) {
$cat = 'TAOLIB';
}
elsif ($f =~ /\/orbsvcs\// && $f !~ /tests|examples/i) {
$cat = 'ORBSVCS';
}
elsif ($f =~ /tests\/Log_Msg_Test\.cpp/) {
next;
}
if (open (IN, $f)) {
print "Looking at file $f for category $cat\n" if $opt_d;
my $disable = 0;
while (<IN>) {
if (/FUZZ: disable check_for_ace_log_categories/) {
$disable = 1;
next;
}
elsif (/FUZZ: enable check_for_ace_log_categories/) {
$disable = 0;
next;
}
elsif ($disable == 0
&& /\b(ACE|ACELIB|TAOLIB|ORBSVCS)_($macros)\b/g
&& $1 ne $cat) {
print_error ("$f:$.: found log macro $1_$2, "
. "expecting ${cat}_$2");
}
}
close IN;
}
else {
print STDERR "Error: Could not open $f\n";
}
}
}
##############################################################################
use vars qw/$opt_c $opt_d $opt_x $opt_h $opt_l $opt_t $opt_s $opt_m/;
if (!getopts ('cdx:hl:t:s:mv') || $opt_h) {
print "fuzz.pl [-cdhm] [-l level] [-t test_names] [file1, file2, ...]\n";
print "\n";
print " -c only look at the files passed in\n";
print " -d turn on debugging\n";
print " -x specify comma-separated list of path masks\n";
" (regex) to exclude\n";
print " -h display this help\n";
print " -l level set detection level (default = 5)\n";
print " -t test_names specify comma-separated list of tests to run\n".
" this will disable the run level setting\n";
print " -s test_names specify comma-separated list of tests to suppress\n".
" this will supplement the run level setting\n";
print " -m only check locally modified files (uses git)\n";
print "======================================================\n";
print "list of the tests that could be run or suppressed:\n";
print <<EOT;
check_for_noncvs_files
check_for_generated_headers
check_for_synch_include
check_for_streams_include
check_for_dependency_file
check_for_makefile_variable
check_for_inline_in_cpp
check_for_id_string
check_for_newline
check_for_ACE_SYNCH_MUTEX
check_for_ACE_Thread_Mutex
check_for_tab
check_for_exception_spec
check_for_NULL
check_for_improper_main_declaration
check_for_lack_ACE_OS
check_for_inline
check_for_math_include
check_for_line_length
check_for_preprocessor_comments
check_for_tchar
check_for_pre_and_post
check_for_push_and_pop
check_for_versioned_namespace_begin_end
check_for_mismatched_filename
check_for_bad_run_test
check_for_absolute_ace_wrappers
check_for_bad_ace_trace
check_for_ptr_arith_t
check_for_include (disabled by default)
check_for_non_bool_operators
check_for_long_file_names
check_for_refcountservantbase
check_for_TAO_Local_RefCounted_Object
check_for_ORB_init
check_for_trailing_whitespace
check_for_include_OS_h
check_for_ORB_init
check_for_old_documentation_style
check_for_ace_log_categories
EOT
exit (1);
}
if (!$opt_l) {
$opt_l = 5;
}
# Before opt_m is read!
if ($opt_x) {
my @excludes = split '\s*,\s*', $opt_x;
for my $exclude (@excludes) {
push (@excluded_dirs, $exclude);
}
}
if ($opt_c) {
foreach $file (@ARGV) {
store_file ($file);
}
}
elsif ($opt_m) {
find_mod_files ();
}
else {
find_files ();
}
if ($opt_t) {
my @tests = split '\s*,\s*', $opt_t;
for my $test (@tests) {
&$test();
}
print "\nfuzz.pl - $errors error(s), $warnings warning(s)\n";
exit ($errors > 0) ? 1 : 0;
}
if ($opt_s) {
my @tests = split '\s*,\s*', $opt_s;
for my $test (@tests) {
$suppressed_tests{$test} = 1;
}
}
print "--------------------Configuration: Fuzz - Level ",$opt_l,
"--------------------\n";
check_for_trailing_whitespace () if ($opt_l >= 4);
check_for_lack_ACE_OS () if ($opt_l >= 6);
check_for_ACE_Guard () if ($opt_l >= 1);
check_for_generated_headers () if ($opt_l >= 6);
check_for_bad_run_test () if ($opt_l >= 5);
check_for_deprecated_macros () if ($opt_l >= 1);
check_for_refcountservantbase () if ($opt_l >= 1);
check_for_msc_ver_string () if ($opt_l >= 3);
check_for_empty_files () if ($opt_l >= 1);
check_for_noncvs_files () if ($opt_l >= 1);
check_for_streams_include () if ($opt_l >= 6);
check_for_dependency_file () if ($opt_l >= 1);
check_for_makefile_variable () if ($opt_l >= 1);
check_for_inline_in_cpp () if ($opt_l >= 2);
check_for_id_string () if ($opt_l >= 1);
check_for_newline () if ($opt_l >= 1);
check_for_ACE_Thread_Mutex () if ($opt_l >= 1);
check_for_ACE_SYNCH_MUTEX () if ($opt_l >= 1);
check_for_tab () if ($opt_l >= 1);
check_for_exception_spec () if ($opt_l >= 1);
check_for_NULL () if ($opt_l >= 1);
check_for_inline () if ($opt_l >= 2);
check_for_math_include () if ($opt_l >= 3);
check_for_synch_include () if ($opt_l >= 6);
check_for_line_length () if ($opt_l >= 8);
check_for_preprocessor_comments () if ($opt_l >= 7);
check_for_tchar () if ($opt_l >= 4);
check_for_pre_and_post () if ($opt_l >= 4);
check_for_push_and_pop () if ($opt_l >= 4);
check_for_versioned_namespace_begin_end () if ($opt_l >= 4);
check_for_mismatched_filename () if ($opt_l >= 2);
check_for_absolute_ace_wrappers () if ($opt_l >= 3);
check_for_bad_ace_trace () if ($opt_l >= 4);
check_for_ptr_arith_t () if ($opt_l >= 4);
check_for_non_bool_operators () if ($opt_l > 2);
check_for_long_file_names () if ($opt_l >= 1);
check_for_improper_main_declaration () if ($opt_l >= 1);
check_for_TAO_Local_RefCounted_Object () if ($opt_l >= 1);
check_for_include_OS_h () if ($opt_l >= 1);
check_for_ORB_init () if ($opt_l >= 1);
check_for_old_documentation_style () if ($opt_l >= 6);
check_for_ace_log_categories () if ($opt_l >= 5);
print "\nfuzz.pl - $errors error(s), $warnings warning(s)\n";
exit (1) if $errors > 0;
|