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
|
#!/usr/bin/perl -w
BEGIN {
chdir 't';
unshift @INC, "../lib";
}
use strict;
use warnings;
use feature 'unicode_strings';
use Carp;
use Config;
use Digest;
use File::Find;
use File::Spec;
use Scalar::Util;
use Text::Tabs;
BEGIN {
if ( $Config{usecrosscompile} ) {
print "1..0 # Not all files are available during cross-compilation\n";
exit 0;
}
if ($^O eq 'dec_osf') {
print "1..0 # $^O cannot handle this test\n";
exit 0;
}
require '../regen/regen_lib.pl';
}
sub DEBUG { 0 };
=pod
=head1 NAME
podcheck.t - Look for possible problems in the Perl pods
=head1 SYNOPSIS
cd t
./perl -I../lib porting/podcheck.t [--show_all] [--cpan] [--deltas]
[--counts] [--pedantic] [FILE ...]
./perl -I../lib porting/podcheck.t --add_link MODULE ...
./perl -I../lib porting/podcheck.t --regen
=head1 DESCRIPTION
podcheck.t is an extension of Pod::Checker. It looks for pod errors and
potential errors in the files given as arguments, or if none specified, in all
pods in the distribution workspace, except certain known special ones
(specified below). It does additional checking beyond that done by
Pod::Checker, and keeps a database of known potential problems, and will
fail a pod only if the number of such problems differs from that given in the
database. It also suppresses the C<(section) deprecated> message from
Pod::Checker, since specifying the man page section number is quite proper to do.
The additional checks it always makes are:
=over
=item Cross-pod link checking
Pod::Checker verifies that links to an internal target in a pod are not
broken. podcheck.t extends that (when called without FILE arguments) to
external links. It does this by gathering up all the possible targets in the
workspace, and cross-checking them. It also checks that a non-broken link
points to just one target. (The destination pod could have two targets with
the same name.)
The way that the C<LE<lt>E<gt>> pod command works (for links outside the pod)
is to actually create a link to C<search.cpan.org> with an embedded query for
the desired pod or man page. That means that links outside the distribution
are valid. podcheck.t doesn't verify the validity of such links, but instead
keeps a database of those known to be valid. This means that if a link to a
target not on the list is created, the target needs to be added to the data
base. This is accomplished via the L<--add_link|/--add_link MODULE ...>
option to podcheck.t, described below.
=item An internal link that isn't so specified
If a link is broken, but there is an existing internal target of the same
name, it is likely that the internal target was meant, and the C<"/"> is
missing from the C<LE<lt>E<gt>> pod command.
=item Missing or duplicate NAME or missing NAME short description
A pod can't be linked to unless it has a unique name.
And a NAME should have a dash and short description after it.
=item =encoding statement issues
This indicates if an C<=encoding> statement should be present, or moved to the
front of the pod.
=back
If the C<PERL_POD_PEDANTIC> environment variable is set or the C<--pedantic>
command line argument is provided then a few more checks are made.
The pedantic checks are:
=over
=item Verbatim paragraphs that wrap in an 80 (including 1 spare) column window
It's annoying to have lines wrap when displaying pod documentation in a
terminal window. This checks that all verbatim lines fit in a standard 80
column window, even when using a pager that reserves a column for its own use.
(Thus the check is for a net of 79 columns.)
For those lines that don't fit, it tells you how much needs to be cut in
order to fit.
Often, the easiest thing to do to gain space for these is to lower the indent
to just one space.
=item Items that perhaps should be links
There are mentions of apparent files in the pods that perhaps should be links
instead, using C<LE<lt>...E<gt>>
=item Items that perhaps should be C<FE<lt>...E<gt>>
What look like path names enclosed in C<CE<lt>...E<gt>> should perhaps have
C<FE<lt>...E<gt>> mark-up instead.
=back
A number of issues raised by podcheck.t and by the base Pod::Checker are not
really problems, but merely potential problems, that is, false positives.
After inspecting them and
deciding that they aren't real problems, it is possible to shut up this program
about them, unlike base Pod::Checker. For a valid link to an outside module
or man page, call podcheck.t with the C<--add_link> option to add it to the
the database of known links; for other causes, call podcheck.t with the C<--regen>
option to regenerate the entire database. This tells it that all existing
issues are to not be mentioned again.
C<--regen> isn't fool-proof. The database merely keeps track of the number of these
potential problems of each type for each pod. If a new problem of a given
type is introduced into the pod, podcheck.t will spit out all of them. You
then have to figure out which is the new one, and should it be changed or not.
But doing it this way insulates the database from having to keep track of line
numbers of problems, which may change, or the exact wording of each problem
which might also change without affecting whether it is a problem or not.
Also, if the count of potential problems of a given type for a pod decreases,
the database must be regenerated so that it knows the new number. The program
gives instructions when this happens.
Some pods will have varying numbers of problems of a given type. This can
be handled by manually editing the database file (see L</FILES>), and setting
the number of those problems for that pod to a negative number. This will
cause the corresponding error to always be suppressed no matter how many there
actually are.
Another problem is that there is currently no check that modules listed as
valid in the database
actually are. Thus any errors introduced there will remain there.
=head2 Specially handled pods
=over
=item perltoc
This pod is generated by pasting bits from other pods. Errors in those bits
will show up as errors here, as well as for those other pods. Therefore
errors here are suppressed, and the pod is checked only to verify that nodes
within it actually exist that are externally linked to.
=item perldelta
The current perldelta pod is initialized from a template that contains
placeholder text. Some of this text is in the form of links that don't really
exist. Any such links that are listed in C<@perldelta_ignore_links> will not
generate messages. It is presumed that these links will be cleaned up when
the perldelta is cleaned up for release since they should be marked with
C<XXX>.
=item Porting/perldelta_template.pod
This is not a pod, but a template for C<perldelta>. Any errors introduced
here will show up when C<perldelta> is created from it.
=item cpan-upstream pods
See the L</--cpan> option documentation
=item old perldeltas
See the L</--deltas> option documentation
=back
=head1 OPTIONS
=over
=item --add_link MODULE ...
Use this option to teach podcheck.t that the C<MODULE>s or man pages actually
exist, and to silence any messages that links to them are broken.
podcheck.t checks that links within the Perl core distribution are valid, but
it doesn't check links to man pages or external modules. When it finds
a broken link, it checks its database of external modules and man pages,
and only if not found there does it raise a message. This option just adds
the list of modules and man page references that follow it on the command line
to that database.
For example,
cd t
./perl -I../lib porting/podcheck.t --add_link Unicode::Casing
causes the external module "Unicode::Casing" to be added to the database, so
C<LE<lt>Unicode::CasingE<gt>> will be considered valid.
=item --regen
Regenerate the database used by podcheck.t to include all the existing
potential problems. Future runs of the program will not then flag any of
these. Setting this option also sets C<--pedantic>.
=item --cpan
Normally, all pods in the cpan directory are skipped, except to make sure that
any blead-upstream links to such pods are valid.
This option will cause cpan upstream pods to be fully checked.
=item --deltas
Normally, all old perldelta pods are skipped, except to make sure that
any links to such pods are valid. This is because they are considered
stable, and perhaps trying to fix them will cause changes that will
misrepresent Perl's history. But, this option will cause them to be fully
checked.
=item --show_all
Normally, if the number of potential problems of a given type found for a
pod matches the expected value in the database, they will not be displayed.
This option forces the database to be ignored during the run, so all potential
problems are displayed and will fail their respective pod test. Specifying
any particular FILES to operate on automatically selects this option.
=item --counts
Instead of testing, this just dumps the counts of the occurrences of the
various types of potential problems in the database.
=item --pedantic
There are three potential problems that are not checked for by default.
This options enables them. The environment variable C<PERL_POD_PEDANTIC>
can be set to 1 to enable this option also.
This option is set when C<--regen> is used.
=back
=head1 FILES
The database is stored in F<t/porting/known_pod_issues.dat>
=head1 SEE ALSO
L<Pod::Checker>
=cut
# VMS builds have a '.com' appended to utility and script names, and it adds a
# trailing dot for any other file name that doesn't have a dot in it. The db
# is stored without those things. This regex allows for these special file
# names to be dealt with. It needs to be interpolated into a larger regex
# that furnishes the closing boundary.
my $vms_re = qr/ \. (?: com )? /x;
# Some filenames in the MANIFEST match $vms_re, and so must not be handled the
# same way that that the special vms ones are. This hash lists those.
my %special_vms_files;
# This is to get this to work across multiple file systems, including those
# that are not case sensitive. The db is stored in lower case, Un*x style,
# and all file name comparisons are done that way.
sub canonicalize($) {
my $input = shift;
my ($volume, $directories, $file)
= File::Spec->splitpath(File::Spec->canonpath($input));
# Assumes $volume is constant for everything in this directory structure
$directories = "" if ! $directories;
$file = "" if ! $file;
$file = lc join '/', File::Spec->splitdir($directories), $file;
$file =~ s! / /+ !/!gx; # Multiple slashes => single slash
# The db is stored without the special suffixes that are there in VMS, so
# strip them off to get the comparable name. But some files on all
# platforms have these suffixes, so this shouldn't happen for them, as any
# of their db entries will have the suffixes in them. The hash has been
# populated with these files.
if ($^O eq 'VMS'
&& $file =~ / ( $vms_re ) $ /x
&& ! exists $special_vms_files{$file})
{
$file =~ s/ $1 $ //x;
}
return $file;
}
#####################################################
# HOW IT WORKS (in general)
#
# If not called with specific files to check, the directory structure is
# examined for files that have pods in them. Files that might not have to be
# fully parsed (e.g. in cpan) are parsed enough at this time to find their
# pod's NAME, and to get a checksum.
#
# Those kinds of files are sorted last, but otherwise the pods are parsed with
# the package coded here, My::Pod::Checker, which is an extension to
# Pod::Checker that adds some tests and suppresses others that aren't
# appropriate. The latter module has no provision for capturing diagnostics,
# so a package, Tie_Array_to_FH, is used to force them to be placed into an
# array instead of printed.
#
# Parsing the files builds up a list of links. The files are gone through
# again, doing cross-link checking and outputting all saved-up problems with
# each pod.
#
# Sorting the files last that potentially don't need to be fully parsed allows
# us to not parse them unless there is a link to an internal anchor in them
# from something that we have already parsed. Keeping checksums allows us to
# not parse copies of other pods.
#
#####################################################
# 1 => Exclude low priority messages that aren't likely to be problems, and
# has many false positives; higher numbers give more messages.
my $Warnings_Level = 200;
# perldelta during construction may have place holder links. N.B. This
# variable is referred to by name in release_managers_guide.pod
our @perldelta_ignore_links = ( "XXX", "perl5YYYdelta", "perldiag/message" );
# To see if two pods with the same NAME are actually copies of the same pod,
# which is not an error, it uses a checksum to save work.
my $digest_type = "SHA-1";
my $original_dir = File::Spec->rel2abs(File::Spec->curdir);
my $data_dir = File::Spec->catdir($original_dir, 'porting');
my $known_issues = File::Spec->catfile($data_dir, 'known_pod_issues.dat');
my $MANIFEST = File::Spec->catfile(File::Spec->updir($original_dir), 'MANIFEST');
my $copy_fh;
my $MAX_LINE_LENGTH = 79; # 79 columns
my $INDENT = 7; # default nroff indent
# Our warning messages. Better not have [('"] in them, as those are used as
# delimiters for variable parts of the messages by poderror.
my $broken_link = "Apparent broken link";
my $broken_internal_link = "Apparent internal link is missing its forward slash";
my $multiple_targets = "There is more than one target";
my $duplicate_name = "Pod NAME already used";
my $need_encoding = "Should have =encoding statement because have non-ASCII";
my $encoding_first = "=encoding must be first command (if present)";
my $no_name = "There is no NAME";
my $missing_name_description = "The NAME should have a dash and short description after it";
# the pedantic warnings messages
my $line_length = "Verbatim line length including indents exceeds $MAX_LINE_LENGTH by";
my $C_not_linked = "? Should you be using L<...> instead of";
my $C_with_slash = "? Should you be using F<...> or maybe L<...> instead of";
# objects, tests, etc can't be pods, so don't look for them. Also skip
# files output by the patch program. Could also ignore most of .gitignore
# files, but not all, so don't.
my $obj_ext = $Config{'obj_ext'}; $obj_ext =~ tr/.//d; # dot will be added back
my $lib_ext = $Config{'lib_ext'}; $lib_ext =~ tr/.//d;
my $lib_so = $Config{'so'}; $lib_so =~ tr/.//d;
my $dl_ext = $Config{'dlext'}; $dl_ext =~ tr/.//d;
# Not really pods, but can look like them.
my %excluded_files = (
canonicalize("lib/unicore/mktables") => 1,
canonicalize("Porting/make-rmg-checklist") => 1,
# this one is a POD, but unfinished, so skip
# it for now
canonicalize("Porting/perl5200delta.pod") => 1,
canonicalize("Porting/perldelta_template.pod") => 1,
canonicalize("regen/feature.pl") => 1,
canonicalize("regen/warnings.pl") => 1,
canonicalize("autodoc.pl") => 1,
canonicalize("configpm") => 1,
canonicalize("miniperl") => 1,
canonicalize("perl") => 1,
canonicalize('cpan/Pod-Perldoc/corpus/no-head.pod') => 1,
canonicalize('cpan/Pod-Perldoc/corpus/perlfunc.pod') => 1,
canonicalize('cpan/Pod-Perldoc/corpus/utf8.pod') => 1,
canonicalize("lib/unicore/mktables") => 1,
);
# This list should not include anything for which case sensitivity is
# important, as it won't work on VMS, and won't show up until tested on VMS.
# All or almost all such files should be listed in the MANIFEST, so that can
# be examined for them, and each such file explicitly excluded, as is done for
# .PL files in the loop just below this. For files not catchable this way,
# is_pod_file() can be used to exclude these at a finer grained level.
my $non_pods = qr/ (?: \.
(?: [achot] | zip | gz | bz2 | jar | tar | tgz
| orig | rej | patch # Patch program output
| sw[op] | \#.* # Editor droppings
| old # buildtoc output
| xs # pod should be in the .pm file
| al # autosplit files
| bs # bootstrap files
| (?i:sh) # shell scripts, hints, templates
| lst # assorted listing files
| bat # Windows,Netware,OS2 batch files
| cmd # Windows,Netware,OS2 command files
| lis # VMS compiler listings
| map # VMS linker maps
| opt # VMS linker options files
| mms # MM(K|S) description files
| ts # timestamp files generated during build
| $obj_ext # object files
| exe # $Config{'exe_ext'} might be empty string
| $lib_ext # object libraries
| $lib_so # shared libraries
| $dl_ext # dynamic libraries
| gif # GIF images (example files from CGI.pm)
| eg # examples from libnet
)
$
) | ~$ | \ \(Autosaved\)\.txt$ # Other editor droppings
| ^cxx\$demangler_db\.$ # VMS name mangler database
| ^typemap\.?$ # typemap files
| ^(?i:Makefile\.PL)$
/x;
# '.PL' files should be excluded, as they aren't final pods, but often contain
# material used in generating pods, and so can look like a pod. We can't use
# the regexp above because case sensisitivity is important for these, as some
# '.pl' files should be examined for pods. Instead look through the MANIFEST
# for .PL files and get their full path names, so we can exclude each such
# file explicitly. This works because other porting tests prohibit having two
# files with the same names except for case.
open my $manifest_fh, '<:bytes', $MANIFEST or die "Can't open $MANIFEST";
while (<$manifest_fh>) {
# While we have MANIFEST open, on VMS platforms, look for files that match
# the magic VMS file names that have to be handled specially. Add these
# to the list of them.
if ($^O eq 'VMS' && / ^ ( [^\t]* $vms_re ) \t /x) {
$special_vms_files{$1} = 1;
}
if (/ ^ ( [^\t]* \. PL ) \t /x) {
$excluded_files{canonicalize($1)} = 1;
}
}
close $manifest_fh, or die "Can't close $MANIFEST";
# Pod::Checker messages to suppress
my @suppressed_messages = (
"(section) in", # Checker is wrong to flag this
"multiple occurrence of link target", # We catch independently the ones
# that are real problems.
"unescaped <>",
"Entity number out of range", # Checker outputs this for anything above
# 255, but in fact all Unicode is valid
"No items in =over", # ie a blockquote
);
sub suppressed {
# Returns bool as to if input message is one that is to be suppressed
my $message = shift;
return grep { $message =~ /^\Q$_/i } @suppressed_messages;
}
{ # Closure to contain a simple subset of test.pl. This is to get rid of the
# unnecessary 'failed at' messages that would otherwise be output pointing
# to a particular line in this file.
my $current_test = 0;
my $planned;
sub plan {
my %plan = @_;
$planned = $plan{tests} + 1; # +1 for final test that files haven't
# been removed
print "1..$planned\n";
return;
}
sub ok {
my $success = shift;
my $message = shift;
chomp $message;
$current_test++;
print "not " unless $success;
print "ok $current_test - $message\n";
return $success;
}
sub skip {
my $why = shift;
my $n = @_ ? shift : 1;
for (1..$n) {
$current_test++;
print "ok $current_test # skip $why\n";
}
no warnings 'exiting';
last SKIP;
}
sub note {
my $message = shift;
chomp $message;
print $message =~ s/^/# /mgr;
print "\n";
return;
}
END {
if ($planned && $planned != $current_test) {
print STDERR
"# Looks like you planned $planned tests but ran $current_test.\n";
}
}
}
# List of known potential problems by pod and type.
my %known_problems;
# Pods given by the keys contain an interior node that is referred to from
# outside it.
my %has_referred_to_node;
my $show_counts = 0;
my $regen = 0;
my $add_link = 0;
my $show_all = 0;
my $pedantic = 0;
my $do_upstream_cpan = 0; # Assume that are to skip anything in /cpan
my $do_deltas = 0; # And stable perldeltas
while (@ARGV && substr($ARGV[0], 0, 1) eq '-') {
my $arg = shift @ARGV;
$arg =~ s/^--/-/; # Treat '--' the same as a single '-'
if ($arg eq '-regen') {
$regen = 1;
$pedantic = 1;
}
elsif ($arg eq '-add_link') {
$add_link = 1;
}
elsif ($arg eq '-cpan') {
$do_upstream_cpan = 1;
}
elsif ($arg eq '-deltas') {
$do_deltas = 1;
}
elsif ($arg eq '-show_all') {
$show_all = 1;
}
elsif ($arg eq '-counts') {
$show_counts = 1;
}
elsif ($arg eq '-pedantic') {
$pedantic = 1;
}
else {
die <<EOF;
Unknown option '$arg'
Usage: $0 [ --regen | --cpan | --show_all | FILE ... | --add_link MODULE ... ]\n"
--add_link -> Add the MODULE and man page references to the database
--regen -> Regenerate the data file for $0
--cpan -> Include files in the cpan subdirectory.
--deltas -> Include stable perldeltas
--show_all -> Show all known potential problems
--counts -> Don't test, but give summary counts of the currently
existing database
--pedantic -> Check for overly long lines in verbatim blocks
EOF
}
}
$pedantic = 1 if exists $ENV{PERL_POD_PEDANTIC} and $ENV{PERL_POD_PEDANTIC};
my @files = @ARGV;
my $cpan_or_deltas = $do_upstream_cpan || $do_deltas;
if (($regen + $show_all + $show_counts + $add_link + $cpan_or_deltas ) > 1) {
croak "--regen, --show_all, --counts, and --add_link are mutually exclusive\n and none can be run with --cpan nor --deltas";
}
my $has_input_files = @files;
if ($add_link) {
if (! $has_input_files) {
croak "--add_link requires at least one module or man page reference";
}
}
elsif ($has_input_files) {
if ($regen || $show_counts || $do_upstream_cpan || $do_deltas) {
croak "--regen, --counts, --deltas, and --cpan can't be used since using specific files";
}
foreach my $file (@files) {
croak "Can't read file '$file'" if ! -r $file;
}
}
our %problems; # potential problems found in this run
package My::Pod::Checker { # Extend Pod::Checker
use parent 'Pod::Checker';
# Uses inside out hash to protect from typos
# For new fields, remember to add to destructor DESTROY()
my %indents; # Stack of indents from =over's in effect for
# current line
my %current_indent; # Current line's indent
my %filename; # The pod is store in this file
my %skip; # is SKIP set for this pod
my %in_NAME; # true if within NAME section
my %in_begin; # true if within =begin section
my %linkable_item; # Bool: if the latest =item is linkable. It isn't
# for bullet and number lists
my %linkable_nodes; # Pod::Checker adds all =items to its node list,
# but not all =items are linkable to
my %seen_encoding_cmd; # true if have =encoding earlier
my %command_count; # Number of commands seen
my %seen_pod_cmd; # true if have =pod earlier
my %warned_encoding; # true if already have warned about =encoding
# problems
sub DESTROY {
my $addr = Scalar::Util::refaddr $_[0];
delete $command_count{$addr};
delete $current_indent{$addr};
delete $filename{$addr};
delete $in_begin{$addr};
delete $indents{$addr};
delete $in_NAME{$addr};
delete $linkable_item{$addr};
delete $linkable_nodes{$addr};
delete $seen_encoding_cmd{$addr};
delete $seen_pod_cmd{$addr};
delete $skip{$addr};
delete $warned_encoding{$addr};
return;
}
sub new {
my $class = shift;
my $filename = shift;
my $self = $class->SUPER::new(-quiet => 1,
-warnings => $Warnings_Level);
my $addr = Scalar::Util::refaddr $self;
$command_count{$addr} = 0;
$current_indent{$addr} = 0;
$filename{$addr} = $filename;
$in_begin{$addr} = 0;
$in_NAME{$addr} = 0;
$linkable_item{$addr} = 0;
$seen_encoding_cmd{$addr} = 0;
$seen_pod_cmd{$addr} = 0;
$warned_encoding{$addr} = 0;
return $self;
}
# re's for messages that Pod::Checker outputs
my $location = qr/ \b (?:in|at|on|near) \s+ /xi;
my $optional_location = qr/ (?: $location )? /xi;
my $line_reference = qr/ [('"]? $optional_location \b line \s+
(?: \d+ | EOF | \Q???\E | - )
[)'"]? /xi;
sub poderror { # Called to register a potential problem
# This adds an extra field to the parent hash, 'parameter'. It is
# used to extract the variable parts of a message leaving just the
# constant skeleton. This in turn allows the message to be
# categorized better, so that it shows up as a single type in our
# database, with the specifics of each occurrence not being stored with
# it.
my $self = shift;
my $opts = shift;
my $addr = Scalar::Util::refaddr $self;
return if $skip{$addr};
# Input can be a string or hash. If a string, parse it to separate
# out the line number and convert to a hash for easier further
# processing
my $message;
if (ref $opts ne 'HASH') {
$message = join "", $opts, @_;
my $line_number;
if ($message =~ s/\s*($line_reference)//) {
($line_number = $1) =~ s/\s*$optional_location//;
}
else {
$line_number = '???';
}
$opts = { -msg => $message, -line => $line_number };
} else {
$message = $opts->{'-msg'};
}
$message =~ s/^\d+\s+//;
return if main::suppressed($message);
$self->SUPER::poderror($opts, @_);
$opts->{parameter} = "" unless $opts->{parameter};
# The variable parts of the message tend to be enclosed in '...',
# "....", or (...). Extract them and put them in an extra field,
# 'parameter'. This is trickier because the matching delimiter to a
# '(' is its mirror, and not itself. Text::Balanced could be used
# instead.
while ($message =~ m/ \s* $optional_location ( [('"] )/xg) {
my $delimiter = $1;
my $start = $-[0];
$delimiter = ')' if $delimiter eq '(';
# If there is no ending delimiter, don't consider it to be a
# variable part. Most likely it is a contraction like "Don't"
last unless $message =~ m/\G .+? \Q$delimiter/xg;
my $length = $+[0] - $start;
# Get the part up through the closing delimiter
my $special = substr($message, $start, $length);
$special =~ s/^\s+//; # No leading whitespace
# And add that variable part to the parameter, while removing it
# from the message. This isn't a foolproof way of finding the
# variable part. For example '(s)' can occur in e.g.,
# 'paragraph(s)'
if ($special ne '(s)') {
substr($message, $start, $length) = "";
pos $message = $start;
$opts->{-msg} = $message;
$opts->{parameter} .= " " if $opts->{parameter};
$opts->{parameter} .= $special;
}
}
# Extract any additional line number given. This is often the
# beginning location of something whereas the main line number gives
# the ending one.
if ($message =~ /( $line_reference )/xi) {
my $line_ref = $1;
while ($message =~ s/\s*\Q$line_ref//) {
$opts->{-msg} = $message;
$opts->{parameter} .= " " if $opts->{parameter};
$opts->{parameter} .= $line_ref;
}
}
Carp::carp("Couldn't extract line number from '$message'") if $message =~ /line \d+/;
push @{$problems{$filename{$addr}}{$message}}, $opts;
#push @{$problems{$self->get_filename}{$message}}, $opts;
}
sub check_encoding { # Does it need an =encoding statement?
my ($self, $paragraph, $line_num, $pod_para) = @_;
# Do nothing if there is an =encoding in the file, or if the line
# doesn't require an =encoding, or have already warned.
my $addr = Scalar::Util::refaddr $self;
return if $seen_encoding_cmd{$addr}
|| $warned_encoding{$addr}
|| $paragraph !~ /\P{ASCII}/;
$warned_encoding{$addr} = 1;
my ($file, $line) = $pod_para->file_line;
$self->poderror({ -line => $line, -file => $file,
-msg => $need_encoding
});
return;
}
sub verbatim {
my ($self, $paragraph, $line_num, $pod_para) = @_;
$self->check_encoding($paragraph, $line_num, $pod_para);
$self->SUPER::verbatim($paragraph, $line_num, $pod_para);
my $addr = Scalar::Util::refaddr $self;
# Pick up the name, since the parent class doesn't in verbatim
# NAMEs; so treat as non-verbatim. The parent class only allows one
# paragraph in a NAME section, so if there is an extra blank line, it
# will trigger a message, but such a blank line is harmless, so skip
# in that case.
if ($in_NAME{$addr} && $paragraph =~ /\S/) {
$self->textblock($paragraph, $line_num, $pod_para);
}
my @lines = split /^/, $paragraph;
for my $i (0 .. @lines - 1) {
if ( my $encoding = $seen_encoding_cmd{$addr} ) {
require Encode;
$lines[$i] = Encode::decode($encoding, $lines[$i]);
}
$lines[$i] =~ s/\s+$//;
my $indent = $self->get_current_indent;
if ($pedantic) { # TODO: this check should be moved higher
# to avoid more unnecessary work
my $exceeds = length(Text::Tabs::expand($lines[$i]))
+ $indent - $MAX_LINE_LENGTH;
next unless $exceeds > 0;
my ($file, $line) = $pod_para->file_line;
$self->poderror({ -line => $line + $i, -file => $file,
-msg => $line_length,
parameter => "+$exceeds (including " . ($indent - $INDENT) . " from =over's)",
});
}
}
}
sub textblock {
my ($self, $paragraph, $line_num, $pod_para) = @_;
$self->check_encoding($paragraph, $line_num, $pod_para);
$self->SUPER::textblock($paragraph, $line_num, $pod_para);
my ($file, $line) = $pod_para->file_line;
my $addr = Scalar::Util::refaddr $self;
if ($in_NAME{$addr}) {
if (! $self->name) {
my $text = $self->interpolate($paragraph, $line_num);
if ($text =~ /^\s*(\S+?)\s*$/) {
$self->name($1);
$self->poderror({ -line => $line, -file => $file,
-msg => $missing_name_description,
parameter => $1});
}
}
}
$paragraph = join " ", split /^/, $paragraph;
# Matches something that looks like a file name, but is enclosed in
# C<...>
my $C_path_re = qr{ \b ( C<
# exclude various things that have slashes
# in them but aren't paths
(?!
(?: (?: s | qr | m) / ) # regexes
| \d+/\d+> # probable fractions
| OS/2>
| Perl/Tk>
| origin/blead>
| origin/maint
| - # File names don't begin with "-"
)
[-\w]+ (?: / [-\w]+ )+ (?: \. \w+ )? > )
}x;
# If looks like a reference to other documentation by containing the
# word 'See' and then a likely pod directive, warn.
while ($paragraph =~ m{
( (?: \w+ \s+ )* ) # The phrase before, if any
\b [Ss]ee \s+
( ( [^L] )
<
( [^<]*? ) # The not < excludes nested C<L<...
>
)
( \s+ (?: under | in ) \s+ L< )?
}xg) {
my $prefix = $1 // "";
my $construct = $2; # The whole thing, like C<...>
my $type = $3;
my $interior = $4;
my $trailing = $5; # After the whole thing ending in "L<"
# If the full phrase is something like, "you might see C<", or
# similar, it really isn't a reference to a link. The ones I saw
# all had the word "you" in them; and the "you" wasn't the
# beginning of a sentence.
if ($prefix !~ / \b you \b /x) {
# Now, find what the module or man page name within the
# construct would be if it actually has L<> syntax. If it
# doesn't have that syntax, will set the module to the entire
# interior.
$interior =~ m/ ^
(?: [^|]+ \| )? # Optional arbitrary text ending
# in "|"
( .+? ) # module, etc. name
(?: \/ .+ )? # target within module
$
/xs;
my $module = $1;
if (! defined $trailing # not referring to something in another
# section
&& $interior !~ /$non_pods/
# C<> that look like files have their own message below, so
# exclude them
&& $construct !~ /$C_path_re/g
# There can't be spaces (I think) in module names or man
# pages
&& $module !~ / \s /x
# F<> that end in eg \.pl are almost certainly ok, as are
# those that look like a path with multiple "/" chars
&& ($type ne "F"
|| (! -e $interior
&& $interior !~ /\.\w+$/
&& $interior !~ /\/.+\//)
)
) {
# TODO: move the checking of $pedantic higher up
$self->poderror({ -line => $line, -file => $file,
-msg => $C_not_linked,
parameter => $construct
}) if $pedantic;
}
}
}
while ($paragraph =~ m/$C_path_re/g) {
my $construct = $1;
# TODO: move the checking of $pedantic higher up
$self->poderror({ -line => $line, -file => $file,
-msg => $C_with_slash,
parameter => $construct
}) if $pedantic;
}
return;
}
sub command {
my ($self, $cmd, $paragraph, $line_num, $pod_para) = @_;
my $addr = Scalar::Util::refaddr $self;
if ($cmd eq "pod") {
$seen_pod_cmd{$addr}++;
}
elsif ($cmd eq "encoding") {
my ($file, $line) = $pod_para->file_line;
$seen_encoding_cmd{$addr} = $paragraph; # for later decoding
if ($command_count{$addr} != 1 && $seen_pod_cmd{$addr}) {
$self->poderror({ -line => $line, -file => $file,
-msg => $encoding_first
});
}
}
$self->check_encoding($paragraph, $line_num, $pod_para);
# Pod::Check treats all =items as linkable, but the bullet and
# numbered lists really aren't. So keep our own list. This has to be
# processed before SUPER is called so that the list is started before
# the rest of it gets parsed.
if ($cmd eq 'item') { # Not linkable if item begins with * or a digit
$linkable_item{$addr} = ($paragraph !~ / ^ \s*
(?: [*]
| \d+ \.? (?: \$ | \s+ )
)/x)
? 1
: 0;
}
$self->SUPER::command($cmd, $paragraph, $line_num, $pod_para);
$command_count{$addr}++;
$in_NAME{$addr} = 0; # Will change to 1 below if necessary
$in_begin{$addr} = 0; # ibid
if ($cmd eq 'over') {
my $text = $self->interpolate($paragraph, $line_num);
my $indent = 4; # default
$indent = $1 if $text && $text =~ /^\s*(\d+)\s*$/;
push @{$indents{$addr}}, $indent;
$current_indent{$addr} += $indent;
}
elsif ($cmd eq 'back') {
if (@{$indents{$addr}}) {
$current_indent{$addr} -= pop @{$indents{$addr}};
}
else {
# =back without corresponding =over, but should have
# warned already
$current_indent{$addr} = 0;
}
}
elsif ($cmd =~ /^head/) {
if (! $in_begin{$addr}) {
# If a particular formatter, then this command doesn't really
# apply
$current_indent{$addr} = 0;
undef @{$indents{$addr}};
}
my $text = $self->interpolate($paragraph, $line_num);
$in_NAME{$addr} = 1 if $cmd eq 'head1'
&& $text && $text =~ /^NAME\b/;
}
elsif ($cmd eq 'begin') {
$in_begin{$addr} = 1;
}
return;
}
sub hyperlink {
my $self = shift;
my $page;
if ($_[0] && ($page = $_[0][1]{'-page'})) {
my $node = $_[0][1]{'-node'};
# If the hyperlink is to an interior node of another page, save it
# so that we can see if we need to parse normally skipped files.
$has_referred_to_node{$page} = 1 if $node;
# Ignore certain placeholder links in perldelta. Check if the
# link is page-level, and also check if to a node within the page
if ($self->name && $self->name eq "perldelta"
&& ((grep { $page eq $_ } @perldelta_ignore_links)
|| ($node
&& (grep { "$page/$node" eq $_ } @perldelta_ignore_links)
))) {
return;
}
}
return $self->SUPER::hyperlink($_[0]);
}
sub node {
my $self = shift;
my $text = $_[0];
if($text) {
$text =~ s/\s+$//s; # strip trailing whitespace
$text =~ s/\s+/ /gs; # collapse whitespace
my $addr = Scalar::Util::refaddr $self;
push(@{$linkable_nodes{$addr}}, $text) if
! $current_indent{$addr}
|| $linkable_item{$addr};
}
return $self->SUPER::node($_[0]);
}
sub get_current_indent {
return $INDENT + $current_indent{Scalar::Util::refaddr $_[0]};
}
sub get_filename {
return $filename{Scalar::Util::refaddr $_[0]};
}
sub linkable_nodes {
my $linkables = $linkable_nodes{Scalar::Util::refaddr $_[0]};
return undef unless $linkables;
return @$linkables;
}
sub get_skip {
return $skip{Scalar::Util::refaddr $_[0]} // 0;
}
sub set_skip {
my $self = shift;
$skip{Scalar::Util::refaddr $self} = shift;
# If skipping, no need to keep the problems for it
delete $problems{$self->get_filename};
return;
}
sub parse_from_file {
# This overrides the super class method so that if an open fails on a
# transitory file, it doesn't croak. It returns 1 if it did find the
# file, 0 if it didn't
my $self = shift;
my $filename = shift;
# ignores 2nd param, which is output file. Always uses undef
if (open my $in_fh, '<:bytes', $filename) {
$self->SUPER::parse_from_filehandle($in_fh, undef);
close $in_fh;
return 1;
}
# If couldn't open file, perhaps it was transitory, and hence not an error
return 0 unless -e $filename;
die "Can't open '$filename': $!\n";
}
}
package Tie_Array_to_FH { # So printing actually goes to an array
my %array;
sub TIEHANDLE {
my $class = shift;
my $array_ref = shift;
my $self = bless \do{ my $anonymous_scalar }, $class;
$array{Scalar::Util::refaddr $self} = $array_ref;
return $self;
}
sub PRINT {
my $self = shift;
push @{$array{Scalar::Util::refaddr $self}}, @_;
return 1;
}
}
my %filename_to_checker; # Map a filename to it's pod checker object
my %id_to_checker; # Map a checksum to it's pod checker object
my %nodes; # key is filename, values are nodes in that file.
my %nodes_first_word; # same, but value is first word of each node
my %valid_modules; # List of modules known to exist outside us.
my %digests; # checksums of files, whose names are the keys
my %filename_to_pod; # Map a filename to its pod NAME
my %files_with_unknown_issues;
my %files_with_fixes;
my $data_fh;
open $data_fh, '<:bytes', $known_issues or die "Can't open $known_issues";
my %counts; # For --counts param, count of each issue type
my %suppressed_files; # Files with at least one issue type to suppress
my $HEADER = <<END;
# This file is the data file for $0.
# There are three types of lines.
# Comment lines are white-space only or begin with a '#', like this one. Any
# changes you make to the comment lines will be lost when the file is
# regen'd.
# Lines without tab characters are simply NAMES of pods that the program knows
# will have links to them and the program does not check if those links are
# valid.
# All other lines should have three fields, each separated by a tab. The
# first field is the name of a pod; the second field is an error message
# generated by this program; and the third field is a count of how many
# known instances of that message there are in the pod. -1 means that the
# program can expect any number of this type of message.
END
my @existing_issues;
while (<$data_fh>) { # Read the database
chomp;
next if /^\s*(?:#|$)/; # Skip comment and empty lines
if (/\t/) {
next if $show_all;
if ($add_link) { # The issues are saved and later output unchanged
push @existing_issues, $_;
next;
}
# Keep track of counts of each issue type for each file
my ($filename, $message, $count) = split /\t/;
$known_problems{$filename}{$message} = $count;
if ($show_counts) {
if ($count < 0) { # -1 means to suppress this issue type
$suppressed_files{$filename} = $filename;
}
else {
$counts{$message} += $count;
}
}
}
else { # Lines without a tab are modules known to be valid
$valid_modules{$_} = 1
}
}
close $data_fh;
if ($add_link) {
$copy_fh = open_new($known_issues);
# Check for basic sanity, and add each command line argument
foreach my $module (@files) {
die "\"$module\" does not look like a module or man page"
# Must look like (A or A::B or A::B::C ..., or foo(3C)
if $module !~ /^ (?: \w+ (?: :: \w+ )* | \w+ \( \d \w* \) ) $/x;
$valid_modules{$module} = 1
}
my_safer_print($copy_fh, $HEADER);
foreach (sort { lc $a cmp lc $b } keys %valid_modules) {
my_safer_print($copy_fh, $_, "\n");
}
# The rest of the db file is output unchanged.
my_safer_print($copy_fh, join "\n", @existing_issues, "");
close_and_rename($copy_fh);
exit;
}
if ($show_counts) {
my $total = 0;
foreach my $message (sort keys %counts) {
$total += $counts{$message};
note(Text::Tabs::expand("$counts{$message}\t$message"));
}
note("-----\n" . Text::Tabs::expand("$total\tknown potential issues"));
if (%suppressed_files) {
note("\nFiles that have all messages of at least one type suppressed:");
note(join ",", keys %suppressed_files);
}
exit 0;
}
# re to match files that are to be parsed only if there is an internal link
# to them. It does not include cpan, as whether those are parsed depends
# on a switch. Currently, only perltoc and the stable perldelta.pod's
# are included. The latter all have characters between 'perl' and
# 'delta'. (Actually the currently developed one matches as well, but
# is a duplicate of perldelta.pod, so can be skipped, so fine for it to
# match this.
my $only_for_interior_links_re = qr/ ^ pod\/perltoc.pod $
/x;
unless ($do_deltas) {
$only_for_interior_links_re = qr/$only_for_interior_links_re |
\b perl \d+ delta \. pod \b
/x;
}
{ # Closure
my $first_time = 1;
sub output_thanks ($$$$) { # Called when an issue has been fixed
my $filename = shift;
my $original_count = shift;
my $current_count = shift;
my $message = shift;
$files_with_fixes{$filename} = 1;
my $return;
my $fixed_count = $original_count - $current_count;
my $a_problem = ($fixed_count == 1) ? "a problem" : "multiple problems";
my $another_problem = ($fixed_count == 1) ? "another problem" : "another set of problems";
my $diff;
if ($message) {
$diff = <<EOF;
There were $original_count occurrences (now $current_count) in this pod of type
"$message",
EOF
} else {
$diff = <<EOF;
There are no longer any problems found in this pod!
EOF
}
if ($first_time) {
$first_time = 0;
$return = <<EOF;
Thanks for fixing $a_problem!
$diff
Now you must teach $0 that this was fixed.
EOF
}
else {
$return = <<EOF
Thanks for fixing $another_problem.
$diff
EOF
}
return $return;
}
}
sub my_safer_print { # print, with error checking for outputting to db
my ($fh, @lines) = @_;
if (! print $fh @lines) {
my $save_error = $!;
close($fh);
die "Write failure: $save_error";
}
}
sub extract_pod { # Extracts just the pod from a file; returns undef if file
# doesn't exist
my $filename = shift;
my @pod;
# Arrange for the output of Pod::Parser to be collected in an array we can
# look at instead of being printed
tie *ALREADY_FH, 'Tie_Array_to_FH', \@pod;
if (open my $in_fh, '<:bytes', $filename) {
my $parser = Pod::Parser->new();
$parser->parse_from_filehandle($in_fh, *ALREADY_FH);
close $in_fh;
return join "", @pod
}
# The file should already have been opened once to get here, so if that
# fails, something is wrong. It's possible that a transitory file
# containing a pod would get here, so if the file no longer exists just
# return undef.
return unless -e $filename;
die "Can't open '$filename': $!\n";
}
my $digest = Digest->new($digest_type);
# This is used as a callback from File::Find::find(), which always constructs
# pathnames using Unix separators
sub is_pod_file {
# If $_ is a pod file, add it to the lists and do other prep work.
if (-d) {
# Don't look at files in directories that are for tests, nor those
# beginning with a dot
if (m!/t\z! || m!/\.!) {
$File::Find::prune = 1;
}
return;
}
return unless -r && -s; # Can't check it if can't read it; no need to
# check if 0 length
return unless -f || -l; # Weird file types won't be pods
my ($leaf) = m!([^/]+)\z!;
if (m!/\.! # No hidden Unix files
|| $leaf =~ $non_pods) {
note("Not considering $_") if DEBUG;
return;
}
my $filename = $File::Find::name;
# $filename is relative, like './path'. Strip that initial part away.
$filename =~ s!^\./!! or die 'Unexpected pathname "$filename"';
return if $excluded_files{canonicalize($filename)};
my $contents = do {
local $/;
my $candidate;
if (! open $candidate, '<:bytes', $_) {
# If a transitory file was found earlier, the open could fail
# legitimately and we just skip the file; also skip it if it is a
# broken symbolic link, as it is probably just a build problem;
# certainly not a file that we would want to check the pod of.
# Otherwise fail it here and no reason to process it further.
# (But the test count will be off too)
ok(0, "Can't open '$filename': $!")
if -r $filename && ! -l $filename;
return;
}
<$candidate>;
};
# If the file is a .pm or .pod, having any initial '=' on a line is
# grounds for testing it. Otherwise, require a head1 NAME line to
# consider it as a potential pod
if ($filename =~ /\.(?:pm|pod)/) {
return unless $contents =~ /^=/m;
} else {
return unless $contents =~ /^=head1 +NAME/m;
}
# Here, we know that the file is a pod. Add it to the list of files
# to check and create a checker object for it.
push @files, $filename;
my $checker = My::Pod::Checker->new($filename);
$filename_to_checker{$filename} = $checker;
# In order to detect duplicate pods and only analyze them once, we
# compute checksums for the file, so don't have to do an exact
# compare. Note that if the pod is just part of the file, the
# checksums can differ for the same pod. That special case is handled
# later, since if the checksums of the whole file are the same, that
# case won't even come up. We don't need the checksums for files that
# we parse only if there is a link to its interior, but we do need its
# NAME, which is also retrieved in the code below.
if ($filename =~ / (?: ^(cpan|lib|ext|dist)\/ )
| $only_for_interior_links_re
/x) {
$digest->add($contents);
$digests{$filename} = $digest->digest;
# lib files aren't analyzed if they are duplicates of files copied
# there from some other directory. But to determine this, we need
# to know their NAMEs. We might as well find the NAME now while
# the file is open. Similarly, cpan files aren't analyzed unless
# we're analyzing all of them, or this particular file is linked
# to by a file we are analyzing, and thus we will want to verify
# that the target exists in it. We need to know at least the NAME
# to see if it's worth analyzing, or so we can determine if a lib
# file is a copy of a cpan one.
if ($filename =~ m{ (?: ^ (?: cpan | lib ) / )
| $only_for_interior_links_re
}x) {
if ($contents =~ /^=head1 +NAME.*/mg) {
# The NAME is the first non-spaces on the line up to a
# comma, dash or end of line. Otherwise, it's invalid and
# this pod doesn't have a legal name that we're smart
# enough to find currently. But the parser will later
# find it if it thinks there is a legal name, and set the
# name
if ($contents =~ /\G # continue from the line after =head1
\s* # ignore any empty lines
^ \s* ( \S+?) \s* (?: [,-] | $ )/mx) {
my $name = $1;
$checker->name($name);
$id_to_checker{$name} = $checker
if $filename =~ m{^cpan/};
}
}
elsif ($filename =~ m{^cpan/}) {
$id_to_checker{$digests{$filename}} = $checker;
}
}
}
return;
} # End of is_pod_file()
# Start of real code that isn't processing the command line (except the
# db is read in above, as is processing of the --add_link option).
# Here, @files contains list of files on the command line. If have any of
# these, unconditionally test them, and show all the errors, even the known
# ones, and, since not testing other pods, don't do cross-pod link tests.
# (Could add extra code to do cross-pod tests for the ones in the list.)
if ($has_input_files) {
undef %known_problems;
$do_upstream_cpan = $do_deltas = 1; # In case one of the inputs is one
# of these types
}
else { # No input files -- go find all the possibilities.
if ($regen) {
$copy_fh = open_new($known_issues);
note("Regenerating $known_issues, please be patient...");
print $copy_fh $HEADER;
}
# Move to the directory above us, but have to adjust @INC to account for
# that.
s{^\.\./lib$}{lib} for @INC;
chdir File::Spec->updir;
# And look in this directory and all its subdirectories
find( {wanted => \&is_pod_file, no_chdir => 1}, '.');
# Add ourselves to the test
push @files, "t/porting/podcheck.t";
}
# Now we know how many tests there will be.
plan (tests => scalar @files) if ! $regen;
# Sort file names so we get consistent results, and to put cpan last,
# preceeded by the ones that we don't generally parse. This is because both
# these classes are generally parsed only if there is a link to the interior
# of them, and we have to parse all others first to guarantee that they don't
# have such a link. 'lib' files come just before these, as some of these are
# duplicates of others. We already have figured this out when gathering the
# data as a special case for all such files, but this, while unnecessary,
# puts the derived file last in the output. 'readme' files come before those,
# as those also could be duplicates of others, which are considered the
# primary ones. These currently aren't figured out when gathering data, so
# are done here.
@files = sort { if ($a =~ /^cpan/) {
return 1 if $b !~ /^cpan/;
return lc $a cmp lc $b;
}
elsif ($b =~ /^cpan/) {
return -1;
}
elsif ($a =~ /$only_for_interior_links_re/) {
return 1 if $b !~ /$only_for_interior_links_re/;
return lc $a cmp lc $b;
}
elsif ($b =~ /$only_for_interior_links_re/) {
return -1;
}
elsif ($a =~ /^lib/) {
return 1 if $b !~ /^lib/;
return lc $a cmp lc $b;
}
elsif ($b =~ /^lib/) {
return -1;
} elsif ($a =~ /\breadme\b/i) {
return 1 if $b !~ /\breadme\b/i;
return lc $a cmp lc $b;
}
elsif ($b =~ /\breadme\b/i) {
return -1;
}
else {
return lc $a cmp lc $b;
}
}
@files;
# Now go through all the files and parse them
FILE:
foreach my $filename (@files) {
my $parsed = 0;
note("parsing $filename") if DEBUG;
# We may have already figured out some things in the process of generating
# the file list. If so, we have a $checker object already. But if not,
# generate one now.
my $checker = $filename_to_checker{$filename};
if (! $checker) {
$checker = My::Pod::Checker->new($filename);
$filename_to_checker{$filename} = $checker;
}
# We have set the name in the checker object if there is a possibility
# that no further parsing is necessary, but otherwise do the parsing now.
if (! $checker->name) {
if (! $checker->parse_from_file($filename, undef)) {
$checker->set_skip("$filename is transitory");
next FILE;
}
$parsed = 1;
}
if ($checker->num_errors() < 0) { # Returns negative if not a pod
$checker->set_skip("$filename is not a pod");
}
else {
# Here, is a pod. See if it is one that has already been tested,
# or should be tested under another directory. Use either its NAME
# if it has one, or a checksum if not.
my $name = $checker->name;
my $id;
if ($name) {
$id = $name;
}
else {
my $digest = Digest->new($digest_type);
my $contents = extract_pod($filename);
# If the return is undef, it means that $filename was a transitory
# file; skip it.
next FILE unless defined $contents;
$digest->add($contents);
$id = $digest->digest;
}
# If there is a match for this pod with something that we've already
# processed, don't process it, and output why.
my $prior_checker;
if (defined ($prior_checker = $id_to_checker{$id})
&& $prior_checker != $checker) # Could have defined the checker
# earlier without pursuing it
{
# If the pods are identical, then it's just a copy, and isn't an
# error. First use the checksums we have already computed to see
# if the entire files are identical, which means that the pods are
# identical too.
my $prior_filename = $prior_checker->get_filename;
my $same = (! $name
|| ($digests{$prior_filename}
&& $digests{$filename}
&& $digests{$prior_filename} eq $digests{$filename}));
# If they differ, it could be that the files differ for some
# reason, but the pods they contain are identical. Extract the
# pods and do the comparisons on just those.
if (! $same && $name) {
my $contents = extract_pod($filename);
# If return is <undef>, it means that $filename no longer
# exists. This means it was a transitory file, and should not
# be tested.
next FILE unless defined $contents;
my $prior_contents = extract_pod($prior_filename);
# If return is <undef>, it means that $prior_filename no
# longer exists. This means it was a transitory file, and
# should not have been tested, but we already did process it.
# What we should do now is to back-out its records, and
# process $filename in its stead. But backing out is not so
# simple, and so I'm (khw) skipping that unless and until
# experience shows that it is needed. We do go process
# $filename, and there are potential false positive conflicts
# with the transitory $prior_contents, and rerunning the test
# should cause it to succeed.
goto process_this_pod unless defined $prior_contents;
$same = $prior_contents eq $contents;
}
if ($same) {
$checker->set_skip("The pod of $filename is a duplicate of "
. "the pod for $prior_filename");
} elsif ($prior_filename =~ /\breadme\b/i) {
$checker->set_skip("$prior_filename is a README apparently for $filename");
} elsif ($filename =~ /\breadme\b/i) {
$checker->set_skip("$filename is a README apparently for $prior_filename");
} elsif (! $do_upstream_cpan
&& $filename =~ /^cpan/
&& $prior_filename =~ /^cpan/)
{
$checker->set_skip("CPAN is upstream for $filename");
} elsif ( $filename =~ /^utils/ or $prior_filename =~ /^utils/ ) {
$checker->set_skip("$filename copy is in utils/");
} else { # Here have two pods with identical names that differ
$prior_checker->poderror(
{ -msg => $duplicate_name,
-line => "???",
parameter => "'$filename' also has NAME '$name'"
});
$checker->poderror(
{ -msg => $duplicate_name,
-line => "???",
parameter => "'$prior_filename' also has NAME '$name'"
});
# Changing the names helps later.
$prior_checker->name("$name version arbitrarily numbered 1");
$checker->name("$name version arbitrarily numbered 2");
}
# In any event, don't process this pod that has the same name as
# another.
next FILE;
}
process_this_pod:
# A unique pod.
$id_to_checker{$id} = $checker;
my $parsed_for_links = ", but parsed for its interior links";
if ((! $do_upstream_cpan && $filename =~ /^cpan/)
|| $filename =~ $only_for_interior_links_re)
{
if ($filename =~ /^cpan/) {
$checker->set_skip("CPAN is upstream for $filename");
}
elsif ($filename =~ /perl\d+delta/) {
if (! $do_deltas) {
$checker->set_skip("$filename is a stable perldelta");
}
}
elsif ($filename =~ /perltoc/) {
$checker->set_skip("$filename dependent on component pods");
}
else {
croak("Unexpected file '$filename' encountered that has parsing for interior-linking only");
}
if ($name && $has_referred_to_node{$name}) {
$checker->set_skip($checker->get_skip() . $parsed_for_links);
}
}
# Need a name in order to process it, because not meaningful
# otherwise, and also can't test links to this without a name.
if (!defined $name) {
$checker->poderror( { -msg => $no_name,
-line => '???'
});
next FILE;
}
# For skipped files, just get its NAME
my $skip;
if (($skip = $checker->get_skip()) && $skip !~ /$parsed_for_links/)
{
$checker->node($name) if $name;
}
elsif (! $parsed) {
if (! $checker->parse_from_file($filename, undef)) {
$checker->set_skip("$filename is transitory");
next FILE;
}
}
# Go through everything in the file that could be an anchor that
# could be a link target. Count how many there are of the same name.
foreach my $node ($checker->linkable_nodes) {
next FILE if ! $node; # Can be empty is like '=item *'
if (exists $nodes{$name}{$node}) {
$nodes{$name}{$node}++;
}
else {
$nodes{$name}{$node} = 1;
}
# Experiments have shown that cpan search can figure out the
# target of a link even if the exact wording is incorrect, as long
# as the first word is. This happens frequently in perlfunc.pod,
# where the link will be just to the function, but the target
# entry also includes parameters to the function.
my $first_word = $node;
if ($first_word =~ s/^(\S+)\s+\S.*/$1/) {
$nodes_first_word{$name}{$first_word} = $node;
}
}
$filename_to_pod{$filename} = $name;
}
}
# Here, all files have been parsed, and all links and link targets are stored.
# Now go through the files again and see which don't have matches.
if (! $has_input_files) {
foreach my $filename (@files) {
next if $filename_to_checker{$filename}->get_skip;
my $checker = $filename_to_checker{$filename};
foreach my $link ($checker->hyperlink) {
my $linked_to_page = $link->[1]->page;
next unless $linked_to_page; # intra-file checks are handled by std
# Pod::Checker
# Initialize the potential message.
my %problem = ( -msg => $broken_link,
-line => $link->[0],
parameter => "to \"$linked_to_page\"",
);
# See if we have found the linked-to_file in our parse
if (exists $nodes{$linked_to_page}) {
my $node = $link->[1]->node;
# If link is only to the page-level, already have it
next if ! $node;
# Transform pod language to what we are expecting
$node =~ s,E<sol>,/,g;
$node =~ s/E<verbar>/|/g;
# If link is to a node that exists in the file, is ok
if ($nodes{$linked_to_page}{$node}) {
# But if the page has multiple targets with the same name,
# it's ambiguous which one this should be to.
if ($nodes{$linked_to_page}{$node} > 1) {
$problem{-msg} = $multiple_targets;
$problem{parameter} = "in $linked_to_page that $node could be pointing to";
$checker->poderror(\%problem);
}
} elsif (! $nodes_first_word{$linked_to_page}{$node}) {
# Here the link target was not found, either exactly or to
# the first word. Is an error.
$problem{parameter} =~ s,"$,/$node",;
$checker->poderror(\%problem);
}
} # Linked-to-file not in parse; maybe is in exception list
elsif (! exists $valid_modules{$link->[1]->page}) {
# Here, is a link to a target that we can't find. Check if
# there is an internal link on the page with the target name.
# If so, it could be that they just forgot the initial '/'
# But perldelta is handled specially: only do this if the
# broken link isn't one of the known bad ones (that are
# placemarkers and should be removed for the final)
my $NAME = $filename_to_pod{$filename};
if (! defined $NAME) {
$checker->poderror(\%problem);
}
else {
if ($nodes{$NAME}{$linked_to_page}) {
$problem{-msg} = $broken_internal_link;
}
$checker->poderror(\%problem);
}
}
}
}
}
# If regenerating the data file, start with the modules for which we don't
# check targets. If you change the sort order, you need to run --regen before
# committing so that future commits that do run regen don't show irrelevant
# changes.
if ($regen) {
foreach (sort { lc $a cmp lc $b } keys %valid_modules) {
my_safer_print($copy_fh, $_, "\n");
}
}
# Now ready to output the messages.
foreach my $filename (@files) {
my $canonical = canonicalize($filename);
SKIP: {
my $skip = $filename_to_checker{$filename}->get_skip // "";
if ($regen) {
foreach my $message ( sort keys %{$problems{$filename}}) {
my $count;
# Preserve a negative setting.
if ($known_problems{$canonical}{$message}
&& $known_problems{$canonical}{$message} < 0)
{
$count = $known_problems{$canonical}{$message};
}
else {
$count = @{$problems{$filename}{$message}};
}
my_safer_print($copy_fh, $canonical . "\t$message\t$count\n");
}
next;
}
skip($skip, 1) if $skip;
my @diagnostics;
my $thankful_diagnostics = 0;
my $indent = ' ';
my $total_known = 0;
foreach my $message ( sort keys %{$problems{$filename}}) {
$known_problems{$canonical}{$message} = 0
if ! $known_problems{$canonical}{$message};
my $diagnostic = "";
my $problem_count = scalar @{$problems{$filename}{$message}};
$total_known += $problem_count;
next if $known_problems{$canonical}{$message} < 0;
if ($problem_count > $known_problems{$canonical}{$message}) {
# Here we are about to output all the messages for this type,
# subtract back this number we previously added in.
$total_known -= $problem_count;
$diagnostic .= $indent . qq{"$message"};
if ($problem_count > 2) {
$diagnostic .= " ($problem_count occurrences,"
. " expected $known_problems{$canonical}{$message})";
}
foreach my $problem (@{$problems{$filename}{$message}}) {
$diagnostic .= " " if $problem_count == 1;
$diagnostic .= "\n$indent$indent";
$diagnostic .= "$problem->{parameter}" if $problem->{parameter};
$diagnostic .= " near line $problem->{-line}";
$diagnostic .= " $problem->{comment}" if $problem->{comment};
}
$diagnostic .= "\n";
$files_with_unknown_issues{$filename} = 1;
} elsif ($problem_count < $known_problems{$canonical}{$message}) {
$diagnostic = output_thanks($filename, $known_problems{$canonical}{$message}, $problem_count, $message);
$thankful_diagnostics++;
}
push @diagnostics, $diagnostic if $diagnostic;
}
# The above loop has output messages where there are current potential
# issues. But it misses where there were some that have been entirely
# fixed. For those, we need to look through the old issues
foreach my $message ( sort keys %{$known_problems{$canonical}}) {
next if $problems{$filename}{$message};
next if ! $known_problems{$canonical}{$message};
next if $known_problems{$canonical}{$message} < 0; # Preserve negs
next if !$pedantic and $message =~
/^(?:\Q$line_length\E|\Q$C_not_linked\E|\Q$C_with_slash\E)/;
my $diagnostic = output_thanks($filename, $known_problems{$canonical}{$message}, 0, $message);
push @diagnostics, $diagnostic if $diagnostic;
$thankful_diagnostics++ if $diagnostic;
}
my $output = "POD of $filename";
$output .= ", excluding $total_known not shown known potential problems"
if $total_known;
if (@diagnostics && @diagnostics == $thankful_diagnostics) {
# Output fixed issues as passing to-do tests, so they do not
# cause failures, but t/harness still flags them.
$output .= " # TODO"
}
ok(@diagnostics == $thankful_diagnostics, $output);
if (@diagnostics) {
note(join "", @diagnostics,
"See end of this test output for your options on silencing this");
}
delete $known_problems{$canonical};
}
}
if (! $regen
&& ! ok (keys %known_problems == 0, "The known problems database includes no references to non-existent files"))
{
note("The following files were not found: "
. join ", ", keys %known_problems);
note("They will automatically be removed from the db the next time");
note(" cd t; ./perl -I../lib porting/podcheck.t --regen");
note("is run");
}
my $how_to = <<EOF;
run this test script by hand, using the following formula (on
Un*x-like machines):
cd t
./perl -I../lib porting/podcheck.t --regen
EOF
if (%files_with_unknown_issues) {
my $were_count_files = scalar keys %files_with_unknown_issues;
$were_count_files = ($were_count_files == 1)
? "was $were_count_files file"
: "were $were_count_files files";
my $message = <<EOF;
HOW TO GET THIS .t TO PASS
There $were_count_files that had new potential problems identified.
Some of them may be real, and some of them may be false positives because
this program isn't as smart as it likes to think it is. You can teach this
program to ignore the issues it has identified, and hence pass, by doing the
following:
1) If a problem is about a link to an unknown module or man page that
you know exists, re-run the command something like:
./perl -I../lib porting/podcheck.t --add_link MODULE man_page ...
(MODULEs should look like Foo::Bar, and man_pages should look like
bar(3c); don't do this for a module or man page that you aren't sure
about; instead treat as another type of issue and follow the
instructions below.)
2) For other issues, decide if each should be fixed now or not. Fix the
ones you decided to, and rerun this test to verify that the fixes
worked.
3) If there remain false positive or problems that you don't plan to fix right
now,
$how_to
That should cause all current potential problems to be accepted by
the program, so that the next time it runs, they won't be flagged.
EOF
if (%files_with_fixes) {
$message .= " This step will also take care of the files that have fixes in them\n";
}
$message .= <<EOF;
For a few files, such as perltoc, certain issues will always be
expected, and more of the same will be added over time. For those,
before you do the regen, you can edit
$known_issues
and find the entry for the module's file and specific error message,
and change the count of known potential problems to -1.
EOF
note($message);
} elsif (%files_with_fixes) {
note(<<EOF
To teach this test script that the potential problems have been fixed,
$how_to
EOF
);
}
if ($regen) {
chdir $original_dir || die "Can't change directories to $original_dir";
close_and_rename($copy_fh);
}
|