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
|
#!/usr/bin/perl -w
use Text::Tabs;
#
# Unconditionally regenerate:
#
# pod/perlintern.pod
# pod/perlapi.pod
#
# from information stored in
#
# embed.fnc
# plus all the core .c, .h, and .pod files listed in MANIFEST
# plus %extra_input_pods
my %extra_input_pods = ( 'dist/ExtUtils-ParseXS/lib/perlxs.pod' => 1 );
# Has an optional arg, which is the directory to chdir to before reading
# MANIFEST and the files
#
# This script is invoked as part of 'make all'
#
# The generated pod consists of sections of related elements, functions,
# macros, and variables. The keys of %valid_sections give the current legal
# ones. Just add a new key to add a section.
#
# Throughout the files read by this script are lines like
#
# =for apidoc_section Section Name
# =for apidoc_section $section_name_variable
#
# "Section Name" (after having been stripped of leading space) must be one of
# the legal section names, or an error is thrown. $section_name_variable must
# be one of the legal section name variables defined below; these expand to
# legal section names. This form is used so that minor wording changes in
# these titles can be confined to this file. All the names of the variables
# end in '_scn'; this suffix is optional in the apidoc_section lines.
#
# All API elements defined between this line and the next 'apidoc_section'
# line will go into the section "Section Name" (or $section_name_variable),
# sorted by dictionary order within it. perlintern and perlapi are parallel
# documents, each potentially with a section "Section Name". Each element is
# marked as to which document it goes into. If there are none for a
# particular section in perlapi, that section is omitted.
#
# Also, in .[ch] files, there may be
#
# =head1 Section Name
#
# lines in comments. These are also used by this program to switch to section
# "Section Name". The difference is that if there are any lines after the
# =head1, inside the same comment, and before any =for apidoc-ish lines, they
# are used as a heading for section "Section Name" (in both perlintern and
# perlapi). This includes any =head[2-5]. If more than one '=head1 Section
# Name' line has content, they appear in the generated pod in an undefined
# order. Note that you can't use a $section_name_variable in =head1 lines
#
# The next =head1, =for apidoc_section, or file end terminates what goes into
# the current section
#
# The %valid_sections hash below also can have header content, which will
# appear before any =head1 content. The hash can also have footer content
# content, which will appear at the end of the section, after all the
# elements.
#
# The lines that define the actual functions, etc are documented in embed.fnc,
# because they have flags which must be kept in sync with that file.
use strict;
use warnings;
my $config_h = 'config.h';
if (@ARGV >= 2 && $ARGV[0] eq "-c") {
shift;
$config_h = shift;
}
my $nroff_min_indent = 4; # for non-heading lines
# 80 column terminal - 2 for pager adding 2 columns;
my $max_width = 80 - 2 - $nroff_min_indent;
my $standard_indent = 4; # Any additional indentations
if (@ARGV) {
my $workdir = shift;
chdir $workdir
or die "Couldn't chdir to '$workdir': $!";
}
require './regen/regen_lib.pl';
require './regen/embed_lib.pl';
my %described_elsewhere;
#
# See database of global and static function prototypes in embed.fnc
# This is used to generate prototype headers under various configurations,
# export symbols lists for different platforms, and macros to provide an
# implicit interpreter context argument.
#
my %docs;
my %seen;
my %funcflags;
my %missing;
my %missing_macros;
my $link_text = "Described in";
my $description_indent = 4;
my $usage_indent = 3; # + initial blank yields 4 total
my $AV_scn = 'AV Handling';
my $callback_scn = 'Callback Functions';
my $casting_scn = 'Casting';
my $casing_scn = 'Character case changing';
my $classification_scn = 'Character classification';
my $names_scn = 'Character names';
my $scope_scn = 'Compile-time scope hooks';
my $compiler_scn = 'Compiler and Preprocessor information';
my $directives_scn = 'Compiler directives';
my $concurrency_scn = 'Concurrency';
my $COP_scn = 'COPs and Hint Hashes';
my $CV_scn = 'CV Handling';
my $custom_scn = 'Custom Operators';
my $debugging_scn = 'Debugging';
my $display_scn = 'Display functions';
my $embedding_scn = 'Embedding, Threads, and Interpreter Cloning';
my $errno_scn = 'Errno';
my $exceptions_scn = 'Exception Handling (simple) Macros';
my $filesystem_scn = 'Filesystem configuration values';
my $filters_scn = 'Source Filters';
my $floating_scn = 'Floating point';
my $genconfig_scn = 'General Configuration';
my $globals_scn = 'Global Variables';
my $GV_scn = 'GV Handling and Stashes';
my $hook_scn = 'Hook manipulation';
my $HV_scn = 'HV Handling';
my $io_scn = 'Input/Output';
my $io_formats_scn = 'I/O Formats';
my $integer_scn = 'Integer';
my $lexer_scn = 'Lexer interface';
my $locale_scn = 'Locales';
my $magic_scn = 'Magic';
my $memory_scn = 'Memory Management';
my $MRO_scn = 'MRO';
my $multicall_scn = 'Multicall Functions';
my $numeric_scn = 'Numeric Functions';
my $rpp_scn = 'Reference-counted stack manipulation';
# Now combined, as unclear which functions go where, but separate names kept
# to avoid 1) other code changes; 2) in case it seems better to split again
my $optrees_scn = 'Optrees';
my $optree_construction_scn = $optrees_scn; # Was 'Optree construction';
my $optree_manipulation_scn = $optrees_scn; # Was 'Optree Manipulation Functions'
my $pack_scn = 'Pack and Unpack';
my $pad_scn = 'Pad Data Structures';
my $password_scn = 'Password and Group access';
my $reports_scn = 'Reports and Formats';
my $paths_scn = 'Paths to system commands';
my $prototypes_scn = 'Prototype information';
my $regexp_scn = 'REGEXP Functions';
my $signals_scn = 'Signals';
my $site_scn = 'Site configuration';
my $sockets_scn = 'Sockets configuration values';
my $stack_scn = 'Stack Manipulation Macros';
my $string_scn = 'String Handling';
my $SV_flags_scn = 'SV Flags';
my $SV_scn = 'SV Handling';
my $tainting_scn = 'Tainting';
my $time_scn = 'Time';
my $typedefs_scn = 'Typedef names';
my $unicode_scn = 'Unicode Support';
my $utility_scn = 'Utility Functions';
my $versioning_scn = 'Versioning';
my $warning_scn = 'Warning and Dieing';
my $XS_scn = 'XS';
# Kept separate at end
my $undocumented_scn = 'Undocumented elements';
my %valid_sections = (
$AV_scn => {},
$callback_scn => {},
$casting_scn => {},
$casing_scn => {},
$classification_scn => {},
$scope_scn => {},
$compiler_scn => {},
$directives_scn => {},
$concurrency_scn => {},
$COP_scn => {},
$CV_scn => {
header => <<~'EOT',
This section documents functions to manipulate CVs which are
code-values, meaning subroutines. For more information, see
L<perlguts>.
EOT
},
$custom_scn => {},
$debugging_scn => {},
$display_scn => {},
$embedding_scn => {},
$errno_scn => {},
$exceptions_scn => {},
$filesystem_scn => {
header => <<~'EOT',
Also see L</List of capability HAS_foo symbols>.
EOT
},
$filters_scn => {},
$floating_scn => {
header => <<~'EOT',
Also L</List of capability HAS_foo symbols> lists capabilities
that arent in this section. For example C<HAS_ASINH>, for the
hyperbolic sine function.
EOT
},
$genconfig_scn => {
header => <<~'EOT',
This section contains configuration information not otherwise
found in the more specialized sections of this document. At the
end is a list of C<#defines> whose name should be enough to tell
you what they do, and a list of #defines which tell you if you
need to C<#include> files to get the corresponding functionality.
EOT
footer => <<~EOT,
=head2 List of capability C<HAS_I<foo>> symbols
This is a list of those symbols that dont appear elsewhere in ths
document that indicate if the current platform has a certain
capability. Their names all begin with C<HAS_>. Only those
symbols whose capability is directly derived from the name are
listed here. All others have their meaning expanded out elsewhere
in this document. This (relatively) compact list is because we
think that the expansion would add little or no value and take up
a lot of space (because there are so many). If you think certain
ones should be expanded, send email to
L<perl5-porters\@perl.org|mailto:perl5-porters\@perl.org>.
Each symbol here will be C<#define>d if and only if the platform
has the capability. If you need more detail, see the
corresponding entry in F<config.h>. For convenience, the list is
split so that the ones that indicate there is a reentrant version
of a capability are listed separately
__HAS_LIST__
And, the reentrant capabilities:
__HAS_R_LIST__
Example usage:
=over $standard_indent
#ifdef HAS_STRNLEN
use strnlen()
#else
use an alternative implementation
#endif
=back
=head2 List of C<#include> needed symbols
This list contains symbols that indicate if certain C<#include>
files are present on the platform. If your code accesses the
functionality that one of these is for, you will need to
C<#include> it if the symbol on this list is C<#define>d. For
more detail, see the corresponding entry in F<config.h>.
__INCLUDE_LIST__
Example usage:
=over $standard_indent
#ifdef I_WCHAR
#include <wchar.h>
#endif
=back
EOT
},
$globals_scn => {},
$GV_scn => {},
$hook_scn => {},
$HV_scn => {},
$io_scn => {},
$io_formats_scn => {
header => <<~'EOT',
These are used for formatting the corresponding type For example,
instead of saying
Perl_newSVpvf(pTHX_ "Create an SV with a %d in it\n", iv);
use
Perl_newSVpvf(pTHX_ "Create an SV with a " IVdf " in it\n", iv);
This keeps you from having to know if, say an IV, needs to be
printed as C<%d>, C<%ld>, or something else.
EOT
},
$integer_scn => {},
$lexer_scn => {},
$locale_scn => {},
$magic_scn => {},
$memory_scn => {},
$MRO_scn => {},
$multicall_scn => {},
$numeric_scn => {},
$optrees_scn => {},
$optree_construction_scn => {},
$optree_manipulation_scn => {},
$pack_scn => {},
$pad_scn => {},
$password_scn => {},
$paths_scn => {},
$prototypes_scn => {},
$regexp_scn => {},
$reports_scn => {
header => <<~"EOT",
These are used in the simple report generation feature of Perl.
See L<perlform>.
EOT
},
$rpp_scn => {
header => <<~'EOT',
Functions for pushing and pulling items on the stack when the
stack is reference counted. They are intended as replacements
for the old PUSHs, POPi, EXTEND etc pp macros within pp
functions.
EOT
},
$signals_scn => {},
$site_scn => {
header => <<~'EOT',
These variables give details as to where various libraries,
installation destinations, I<etc.>, go, as well as what various
installation options were selected
EOT
},
$sockets_scn => {},
$stack_scn => {},
$string_scn => {
header => <<~EOT,
See also C<L</$unicode_scn>>.
EOT
},
$SV_flags_scn => {},
$SV_scn => {},
$tainting_scn => {},
$time_scn => {},
$typedefs_scn => {},
$unicode_scn => {
header => <<~EOT,
L<perlguts/Unicode Support> has an introduction to this API.
See also C<L</$classification_scn>>,
C<L</$casing_scn>>,
and C<L</$string_scn>>.
Various functions outside this section also work specially with
Unicode. Search for the string "utf8" in this document.
EOT
},
$utility_scn => {},
$versioning_scn => {},
$warning_scn => {},
$XS_scn => {},
);
# Somewhat loose match for an apidoc line so we can catch minor typos.
# Parentheses are used to capture portions so that below we verify
# that things are the actual correct syntax.
my $apidoc_re = qr/ ^ (\s*) # $1
(=?) # $2
(\s*) # $3
for (\s*) # $4
apidoc (_item)? # $5
(\s*) # $6
(.*?) # $7
\s* \n /x;
# Only certain flags, dealing with display, are acceptable for apidoc_item
my $display_flags = "fFnDopTx;";
sub check_api_doc_line ($$) {
my ($file, $in) = @_;
return unless $in =~ $apidoc_re;
my $is_item = defined $5;
my $is_in_proper_form = length $1 == 0
&& length $2 > 0
&& length $3 == 0
&& length $4 > 0
&& length $7 > 0
&& ( length $6 > 0
|| ($is_item && substr($7, 0, 1) eq '|'));
my $proto_in_file = $7;
my $proto = $proto_in_file;
$proto = "||$proto" if $proto !~ /\|/;
my ($flags, $ret_type, $name, @args) = split /\s*\|\s*/, $proto;
$name && $is_in_proper_form or die <<EOS;
Bad apidoc at $file line $.:
$in
Expected:
=for apidoc flags|returntype|name|arg|arg|...
=for apidoc flags|returntype|name
=for apidoc name
(or 'apidoc_item')
EOS
die "Only [$display_flags] allowed in apidoc_item:\n$in"
if $is_item && $flags =~ /[^$display_flags]/;
return ($name, $flags, $ret_type, $is_item, $proto_in_file, @args);
}
sub embed_override($) {
my ($element_name) = shift;
# If the entry is also in embed.fnc, it should be defined
# completely there, but not here
my $embed_docref = delete $funcflags{$element_name};
return unless $embed_docref and %$embed_docref;
my $flags = $embed_docref->{'flags'};
warn "embed.fnc entry '$element_name' missing 'd' flag"
unless $flags =~ /d/;
return ($flags, $embed_docref->{'ret_type'}, $embed_docref->{args}->@*);
}
# The section that is in effect at the beginning of the given file. If not
# listed here, an apidoc_section line must precede any apidoc lines.
# This allows the files listed here that generally are single-purpose, to not
# have to worry about the autodoc section
my %initial_file_section = (
'av.c' => $AV_scn,
'av.h' => $AV_scn,
'cv.h' => $CV_scn,
'deb.c' => $debugging_scn,
'dist/ExtUtils-ParseXS/lib/perlxs.pod' => $XS_scn,
'doio.c' => $io_scn,
'gv.c' => $GV_scn,
'gv.h' => $GV_scn,
'hv.h' => $HV_scn,
'locale.c' => $locale_scn,
'malloc.c' => $memory_scn,
'numeric.c' => $numeric_scn,
'opnames.h' => $optree_construction_scn,
'pad.h'=> $pad_scn,
'patchlevel.h' => $versioning_scn,
'perlio.h' => $io_scn,
'pod/perlapio.pod' => $io_scn,
'pod/perlcall.pod' => $callback_scn,
'pod/perlembed.pod' => $embedding_scn,
'pod/perlfilter.pod' => $filters_scn,
'pod/perliol.pod' => $io_scn,
'pod/perlmroapi.pod' => $MRO_scn,
'pod/perlreguts.pod' => $regexp_scn,
'pp_pack.c' => $pack_scn,
'pp_sort.c' => $SV_scn,
'regcomp.c' => $regexp_scn,
'regexp.h' => $regexp_scn,
'sv.h' => $SV_scn,
'sv.c' => $SV_scn,
'sv_inline.h' => $SV_scn,
'taint.c' => $tainting_scn,
'unicode_constants.h' => $unicode_scn,
'utf8.c' => $unicode_scn,
'utf8.h' => $unicode_scn,
'vutil.c' => $versioning_scn,
);
sub autodoc ($$) { # parse a file and extract documentation info
my($fh,$file) = @_;
my($in, $line_num, $header, $section);
$section = $initial_file_section{$file}
if defined $initial_file_section{$file};
my $file_is_C = $file =~ / \. [ch] $ /x;
# Count lines easier
my $get_next_line = sub { $line_num++; return <$fh> };
# Read the file
while ($in = $get_next_line->()) {
last unless defined $in;
next unless ( $in =~ / ^ =for [ ]+ apidoc /x
# =head1 lines only have effect in C files
|| ($file_is_C && $in =~ /^=head1/));
# Here, the line introduces a portion of the input that we care about.
# Either it is for an API element, or heading text which we expect
# will be used for elements later in the file
my ($text, $element_name, $flags, $ret_type, $is_item, $proto_in_file);
my (@args, @items);
# If the line starts a new section ...
if ($in=~ /^ = (?: for [ ]+ apidoc_section | head1 ) [ ]+ (.*) /x) {
$section = $1;
if ($section =~ / ^ \$ /x) {
$section .= '_scn' unless $section =~ / _scn $ /;
$section = eval "$section";
die "Unknown \$section variable '$section' in $file: $@" if $@;
}
die "Unknown section name '$section' in $file near line $.\n"
unless defined $valid_sections{$section};
}
elsif ($in=~ /^ =for [ ]+ apidoc \B /x) { # Otherwise better be a
# plain apidoc line
die "Unknown apidoc-type line '$in'" unless $in=~ /^=for apidoc_item/;
die "apidoc_item doesn't immediately follow an apidoc entry: '$in'";
}
else { # Plain apidoc
($element_name, $flags, $ret_type, $is_item, $proto_in_file, @args)
= check_api_doc_line($file, $in);
# Override this line with any info in embed.fnc
my ($embed_flags, $embed_ret_type, @embed_args)
= embed_override($element_name);
if ($embed_ret_type) {
warn "embed.fnc entry overrides redundant information in"
. " '$proto_in_file' in $file"
if $flags || $ret_type || @args;
$flags = $embed_flags;
$ret_type = $embed_ret_type;
@args = @embed_args;
}
elsif ($flags !~ /[my]/) { # Not in embed.fnc, is missing if not
# a macro or typedef
$missing{$element_name} = $file;
}
die "flag '$1' is not legal (for function $element_name (from $file))"
if $flags =~ / ( [^AabCDdEeFfGhiIMmNnTOoPpRrSsUuvWXxy;#] ) /x;
die "'u' flag must also have 'm' or 'y' flags' for $element_name"
if $flags =~ /u/ && $flags !~ /[my]/;
warn ("'$element_name' not \\w+ in '$proto_in_file' in $file")
if $flags !~ /N/ &&
$element_name !~ / ^ (?:struct\s+)? [_[:alpha:]] \w* $ /x;
if ($flags =~ /#/) {
die "Return type must be empty for '$element_name'"
if $ret_type;
$ret_type = '#ifdef';
}
if (exists $seen{$element_name} && $flags !~ /h/) {
die ("'$element_name' in $file was already documented in $seen{$element_name}");
}
else {
$seen{$element_name} = $file;
}
}
# Here we have processed the initial line in the heading text or API
# element, and have saved the important information from it into the
# corresponding variables. Now accumulate the text that applies to it
# up to a terminating line, which is one of:
# 1) =cut
# 2) =head (in a C file only =head1)
# 3) an end comment line in a C file: m:^\s*\*/:
# 4) =for apidoc... (except apidoc_item lines)
$text = "";
my $head_ender_num = ($file_is_C) ? 1 : "";
while (defined($in = $get_next_line->())) {
last if $in =~ /^=cut/x;
last if $in =~ /^=head$head_ender_num/;
if ($file_is_C && $in =~ m: ^ \s* \* / $ :x) {
# End of comment line in C files is a fall-back terminator,
# but warn only if there actually is some accumulated text
warn "=cut missing? $file:$line_num:$in" if $text =~ /\S/;
last;
}
if ($in !~ / ^ =for [ ]+ apidoc /x) {
$text .= $in;
next;
}
# Here, the line is an apidoc line. All but apidoc_item terminate
# the text being accumulated.
last if $in =~ / ^ =for [ ]+ apidoc_section /x;
my ($item_name, $item_flags, $item_ret_type, $is_item,
$item_proto, @item_args) = check_api_doc_line($file, $in);
last unless $is_item;
# Here, is an apidoc_item_line; They can only come within apidoc
# paragraphs.
die "Unexpected api_doc_item line '$item_proto'"
unless $element_name;
# We accept blank lines between these, but nothing else;
die "apidoc_item lines must immediately follow apidoc lines for "
. " '$element_name' in $file"
if $text =~ /\S/;
# Override this line with any info in embed.fnc
my ($embed_flags, $embed_ret_type, @embed_args)
= embed_override($item_name);
if ($embed_ret_type) {
warn "embed.fnc entry overrides redundant information in"
. " '$item_proto' in $file"
if $item_flags || $item_ret_type || @item_args;
$item_flags = $embed_flags;
$item_ret_type = $embed_ret_type;
@item_args = @embed_args;
}
# Use the base entry flags if none for this item; otherwise add in
# any non-display base entry flags.
if ($item_flags) {
$item_flags .= $flags =~ s/[$display_flags]//rg;
}
else {
$item_flags = $flags;
}
$item_ret_type = $ret_type unless $item_ret_type;
@item_args = @args unless @item_args;
push @items, { name => $item_name,
ret_type => $item_ret_type,
flags => $item_flags,
args => [ @item_args ],
};
# This line shows that this element is documented.
delete $funcflags{$item_name};
}
# Here, are done accumulating the text for this item. Trim it
$text =~ s/ ^ \s* //x;
$text =~ s/ \s* $ //x;
$text .= "\n" if $text ne "";
# And treat all-spaces as nothing at all
undef $text unless $text =~ /\S/;
if ($element_name) {
# Here, we have accumulated into $text, the pod for $element_name
my $where = $flags =~ /A/ ? 'api' : 'intern';
die "No =for apidoc_section nor =head1 in $file for '$element_name'\n"
unless defined $section;
my $is_link_only = ($flags =~ /h/);
if (! $is_link_only && exists $docs{$where}{$section}{$element_name}) {
warn "$0: duplicate API entry for '$element_name' in"
. " $where/$section\n";
next;
}
# Override the text with just a link if the flags call for that
if ($is_link_only) {
if ($file_is_C) {
die "Can't currently handle link with items to it:\n$in"
if @items;
$docs{$where}{$section}{X_tags}{$element_name} = $file;
redo; # Don't put anything if C source
}
# Here, is an 'h' flag in pod. We add a reference to the pod (and
# nothing else) to perlapi/intern. (It would be better to add a
# reference to the correct =item,=header, but something that makes
# it harder is that it that might be a duplicate, like '=item *';
# so that is a future enhancement XXX. Another complication is
# there might be more than one deserving candidates.)
my $podname = $file =~ s!.*/!!r; # Rmv directory name(s)
$podname =~ s/\.pod//;
$text = "Described in L<$podname>.\n";
# Don't output a usage example for linked to documentation if
# it is trivial (has no arguments) and we aren't to add a
# semicolon
$flags .= 'U' if $flags =~ /n/ && $flags !~ /[U;]/;
# Keep track of all the pod files that we refer to.
push $described_elsewhere{$podname}->@*, $podname;
}
$docs{$where}{$section}{$element_name}{flags} = $flags;
$docs{$where}{$section}{$element_name}{pod} = $text;
$docs{$where}{$section}{$element_name}{file} = $file;
$docs{$where}{$section}{$element_name}{ret_type} = $ret_type;
push $docs{$where}{$section}{$element_name}{args}->@*, @args;
push $docs{$where}{$section}{$element_name}{items}->@*, @items;
}
elsif ($text) {
$valid_sections{$section}{header} = "" unless
defined $valid_sections{$section}{header};
$valid_sections{$section}{header} .= "\n$text";
}
# We already have the first line of what's to come in $in
redo;
} # End of loop through input
}
my %configs;
my @has_defs;
my @has_r_defs; # Reentrant symbols
my @include_defs;
sub parse_config_h {
use re '/aa'; # Everything is ASCII in this file
# Process config.h
die "Can't find $config_h" unless -e $config_h;
open my $fh, '<', $config_h or die "Can't open $config_h: $!";
while (<$fh>) {
# Look for lines like /* FOO_BAR:
# By convention all config.h descriptions begin like that
if (m[ ^ /\* [ ] ( [[:alpha:]] \w+ ) : \s* $ ]ax) {
my $name = $1;
# Here we are starting the description for $name in config.h. We
# accumulate the entire description for it into @description.
# Flowing text from one input line to another is appended into the
# same array element to make a single flowing line element, but
# verbatim lines are kept as separate elements in @description.
# This will facilitate later doing pattern matching without regard
# to line boundaries on non-verbatim text.
die "Multiple config.h entries for '$name'"
if defined $configs{$name}{description};
# Get first line of description
$_ = <$fh>;
# Each line in the description begins with blanks followed by '/*'
# and some spaces.
die "Unexpected config.h initial line for $name: '$_'"
unless s/ ^ ( \s* \* \s* ) //x;
my $initial_text = $1;
# Initialize the description with this first line (after having
# stripped the prefix text)
my @description = $_;
# The first line is used as a template for how much indentation
# each normal succeeding line has. Lines indented further
# will be considered as intended to be verbatim. But, empty lines
# likely won't have trailing blanks, so just strip the whole thing
# for them.
my $strip_initial_qr = qr! \s* \* \s* $
| \Q$initial_text\E
!x;
$configs{$name}{verbatim} = 0;
# Read in the remainder of the description
while (<$fh>) {
last if s| ^ \s* \* / ||x; # A '*/' ends it
die "Unexpected config.h description line for $name: '$_'"
unless s/$strip_initial_qr//;
# Fix up the few flawed lines in config.h wherein a new
# sentence begins with a tab (and maybe a space after that).
# Although none of them currently do, let it recognize
# something like
#
# "... text"). The next sentence ...
#
s/ ( \w "? \)? \. ) \t \s* ( [[:alpha:]] ) /$1 $2/xg;
# If this line has extra indentation or looks to have columns,
# it should be treated as verbatim. Columns are indicated by
# use of interior: tabs, 3 spaces in a row, or even 2 spaces
# not preceded by punctuation.
if ($_ !~ m/ ^ \s
| \S (?: \t
| \s{3}
| (*nlb:[[:punct:]]) \s{2}
)
/x)
{
# But here, is not a verbatim line. Add an empty line if
# this is the first non-verbatim after a run of verbatims
if ($description[-1] =~ /^\s/) {
push @description, "\n", $_;
}
else { # Otherwise, append this flowing line to the
# current flowing line
$description[-1] .= $_;
}
}
else {
$configs{$name}{verbatim} = 1;
# The first verbatim line in a run of them is separated by an
# empty line from the flowing lines above it
push @description, "\n" if $description[-1] =~ /^\S/;
$_ = Text::Tabs::expand($_);
# Only a single space so less likely to wrap
s/ ^ \s* / /x;
push @description, $_;
}
}
push $configs{$name}{description}->@*, @description
} # Not a description; see if it is a macro definition.
elsif (m! ^
(?: / \* )? # Optional commented-out
# indication
\# \s* define \s+ ( \w+ ) # $1 is the name
( \s* ) # $2 indicates if args or not
( .*? ) # $3 is any definition
(?: / \s* \* \* / )? # Optional trailing /**/ or / **/
$
!x)
{
my $name = $1;
# There can be multiple definitions for a name. We want to know
# if any of them has arguments, and if any has a body.
$configs{$name}{has_args} //= $2 eq "";
$configs{$name}{has_args} ||= $2 eq "";
$configs{$name}{has_defn} //= $3 ne "";
$configs{$name}{has_defn} ||= $3 ne "";
}
}
# We now have stored the description and information about every #define
# in the file. The description is in a form convenient to operate on to
# convert to pod. Do that now.
foreach my $name (keys %configs) {
next unless defined $configs{$name}{description};
# All adjacent non-verbatim lines of the description are appended
# together in a single element in the array. This allows the patterns
# to work across input line boundaries.
my $pod = "";
while (defined ($_ = shift $configs{$name}{description}->@*)) {
chomp;
if (/ ^ \S /x) { # Don't edit verbatim lines
# Enclose known file/path names not already so enclosed
# with <...>. (Some entries in config.h are already
# '<path/to/file>')
my $file_name_qr = qr! [ \w / ]+ \.
(?: c | h | xs | p [lm] | pmc | PL
| sh | SH | exe ) \b
!xx;
my $path_name_qr = qr! (?: / \w+ )+ !x;
for my $re ($file_name_qr, $path_name_qr) {
s! (*nlb:[ < \w / ]) ( $re ) !<$1>!gxx;
}
# Enclose <... file/path names with F<...> (but no double
# angle brackets)
for my $re ($file_name_qr, $path_name_qr) {
s! < ( $re ) > !F<$1>!gxx;
}
# Explain metaconfig units
s/ ( \w+ \. U \b ) /$1 (part of metaconfig)/gx;
# Convert "See foo" to "See C<L</foo>>" if foo is described in
# this file. Also create a link to the known file INSTALL.
# And, to be more general, handle "See also foo and bar", and
# "See also foo, bar, and baz"
while (m/ \b [Ss]ee \s+
(?: also \s+ )? ( \w+ )
(?: , \s+ ( \w+ ) )?
(?: ,? \s+ and \s+ ( \w+ ) )? /xg) {
my @links = $1;
push @links, $2 if defined $2;
push @links, $3 if defined $3;
foreach my $link (@links) {
if ($link eq 'INSTALL') {
s/ \b INSTALL \b /C<L<INSTALL>>/xg;
}
elsif (grep { $link =~ / \b $_ \b /x } keys %configs) {
s| \b $link \b |C<L</$link>>|xg;
$configs{$link}{linked} = 1;
$configs{$name}{linked} = 1;
}
}
}
# Enclose what we think are symbols with C<...>.
no warnings 'experimental::vlb';
s/ (*nlb:<)
(
# Any word followed immediately with parens or
# brackets
\b \w+ (?: \( [^)]* \) # parameter list
| \[ [^]]* \] # or array reference
)
| (*plb: ^ | \s ) -D \w+ # Also -Dsymbols.
| \b (?: struct | union ) \s \w+
# Words that contain underscores (which are
# definitely not text) or three uppercase letters in
# a row. Length two ones, like IV, aren't enclosed,
# because they often don't look as nice.
| \b \w* (?: _ | [[:upper:]]{3,} ) \w* \b
)
(*nla:>)
/C<$1>/xg;
# These include foo when the name is HAS_foo. This is a
# heuristic which works in most cases.
if ($name =~ / ^ HAS_ (.*) /x) {
my $symbol = lc $1;
# Don't include path components, nor things already in
# <>, or with trailing '(', '['
s! \b (*nlb:[/<]) $symbol (*nla:[[/>(]) \b !C<$symbol>!xg;
}
}
$pod .= "$_\n";
}
delete $configs{$name}{description};
$configs{$name}{pod} = $pod;
}
# Now have converted the description to pod. We also now have enough
# information that we can do cross checking to find definitions without
# corresponding pod, and see if they are mentioned in some description;
# otherwise they aren't documented.
NAME:
foreach my $name (keys %configs) {
# A definition without pod
if (! defined $configs{$name}{pod}) {
# Leading/trailing underscore means internal to config.h, e.g.,
# _GNU_SOURCE
next if $name =~ / ^ _ /x;
next if $name =~ / _ $ /x;
# MiXeD case names are internal to config.h; the first 4
# characters are sufficient to determine this
next if $name =~ / ^ [[:upper:]] [[:lower:]]
[[:upper:]] [[:lower:]]
/x;
# Here, not internal to config.h. Look to see if this symbol is
# mentioned in the pod of some other. If so, assume it is
# documented.
foreach my $check_name (keys %configs) {
my $this_element = $configs{$check_name};
my $this_pod = $this_element->{pod};
if (defined $this_pod) {
next NAME if $this_pod =~ / \b $name \b /x;
}
}
warn "$name has no documentation\n";
$missing_macros{$name} = 'config.h';
next;
}
my $has_defn = $configs{$name}{has_defn};
my $has_args = $configs{$name}{has_args};
# Check if any section already has an entry for this element.
# If so, it better be a placeholder, in which case we replace it
# with this entry.
foreach my $section (keys $docs{'api'}->%*) {
if (exists $docs{'api'}{$section}{$name}) {
my $was = $docs{'api'}{$section}{$name}->{pod};
$was = "" unless $was;
chomp $was;
if ($was ne "" && $was !~ m/$link_text/) {
die "Multiple descriptions for $name\n"
. "The '$section' section contained\n'$was'";
}
$docs{'api'}{$section}{$name}->{pod} = $configs{$name}{pod};
$configs{$name}{section} = $section;
last;
}
elsif (exists $docs{'intern'}{$section}{$name}) {
die "'$name' is in 'config.h' meaning it is part of the API,\n"
. " but it is also in 'perlintern', meaning it isn't API\n";
}
}
my $handled = 0; # Haven't handled this yet
if (defined $configs{$name}{'section'}) {
# This has been taken care of elsewhere.
$handled = 1;
}
else {
my $flags = "";
if ($has_defn && ! $has_args) {
$configs{$name}{args} = 1;
}
# Symbols of the form I_FOO are for #include files. They have
# special usage information
if ($name =~ / ^ I_ ( .* ) /x) {
my $file = lc $1 . '.h';
$configs{$name}{usage} = <<~"EOT";
#ifdef $name
#include <$file>
#endif
EOT
}
# Compute what section this variable should go into. This
# heuristic was determined by manually inspecting the current
# things in config.h, and should be adjusted as necessary as
# deficiencies are found.
#
# This is the default section for macros with a definition but
# no arguments, meaning it is replaced unconditionally
#
my $sb = qr/ _ | \b /x; # segment boundary
my $dash_or_spaces = qr/ - | \s+ /x;
my $pod = $configs{$name}{pod};
if ($name =~ / ^ USE_ /x) {
$configs{$name}{'section'} = $site_scn;
}
elsif ($name =~ / SLEEP | (*nlb:SYS_) TIME | TZ | $sb TM $sb /x)
{
$configs{$name}{'section'} = $time_scn;
}
elsif ( $name =~ / ^ [[:alpha:]]+ f $ /x
&& $configs{$name}{pod} =~ m/ \b format \b /ix)
{
$configs{$name}{'section'} = $io_formats_scn;
}
elsif ($name =~ / DOUBLE | FLOAT | LONGDBL | LDBL | ^ NV
| $sb CASTFLAGS $sb
| QUADMATH
| $sb (?: IS )? NAN
| $sb (?: IS )? FINITE
/x)
{
$configs{$name}{'section'} =
$floating_scn;
}
elsif ($name =~ / (?: POS | OFF | DIR ) 64 /x) {
$configs{$name}{'section'} = $filesystem_scn;
}
elsif ( $name =~ / $sb (?: BUILTIN | CPP ) $sb | ^ CPP /x
|| $configs{$name}{pod} =~ m/ \b align /x)
{
$configs{$name}{'section'} = $compiler_scn;
}
elsif ($name =~ / ^ [IU] [ \d V ]
| ^ INT | SHORT | LONG | QUAD | 64 | 32 /xx)
{
$configs{$name}{'section'} = $integer_scn;
}
elsif ($name =~ / $sb t $sb /x) {
$configs{$name}{'section'} = $typedefs_scn;
$flags .= 'y';
}
elsif ( $name =~ / ^ PERL_ ( PRI | SCN ) | $sb FORMAT $sb /x
&& $configs{$name}{pod} =~ m/ \b format \b /ix)
{
$configs{$name}{'section'} = $io_formats_scn;
}
elsif ($name =~ / BACKTRACE /x) {
$configs{$name}{'section'} = $debugging_scn;
}
elsif ($name =~ / ALLOC $sb /x) {
$configs{$name}{'section'} = $memory_scn;
}
elsif ( $name =~ / STDIO | FCNTL | EOF | FFLUSH
| $sb FILE $sb
| $sb DIR $sb
| $sb LSEEK
| $sb INO $sb
| $sb OPEN
| $sb CLOSE
| ^ DIR
| ^ INO $sb
| DIR $
| FILENAMES
/x
|| $configs{$name}{pod} =~ m! I/O | stdio
| file \s+ descriptor
| file \s* system
| statfs
!x)
{
$configs{$name}{'section'} = $filesystem_scn;
}
elsif ($name =~ / ^ SIG | SIGINFO | signal /ix) {
$configs{$name}{'section'} = $signals_scn;
}
elsif ($name =~ / $sb ( PROTO (?: TYPE)? S? ) $sb /x) {
$configs{$name}{'section'} = $prototypes_scn;
}
elsif ( $name =~ / ^ LOC_ /x
|| $configs{$name}{pod} =~ /full path/i)
{
$configs{$name}{'section'} = $paths_scn;
}
elsif ($name =~ / $sb LC_ | LOCALE | langinfo /xi) {
$configs{$name}{'section'} = $locale_scn;
}
elsif ($configs{$name}{pod} =~ / GCC | C99 | C\+\+ /xi) {
$configs{$name}{'section'} = $compiler_scn;
}
elsif ($name =~ / PASSW (OR)? D | ^ PW | ( PW | GR ) ENT /x)
{
$configs{$name}{'section'} = $password_scn;
}
elsif ($name =~ / SOCKET | $sb SOCK /x) {
$configs{$name}{'section'} = $sockets_scn;
}
elsif ( $name =~ / THREAD | MULTIPLICITY /x
|| $configs{$name}{pod} =~ m/ \b pthread /ix)
{
$configs{$name}{'section'} = $concurrency_scn;
}
elsif ($name =~ / PERL | ^ PRIV | SITE | ARCH | BIN
| VENDOR | ^ USE
/x)
{
$configs{$name}{'section'} = $site_scn;
}
elsif ( $pod =~ / \b floating $dash_or_spaces point \b /ix
|| $pod =~ / \b (double | single) $dash_or_spaces precision \b /ix
|| $pod =~ / \b doubles \b /ix
|| $pod =~ / \b (?: a | the | long ) \s+ (?: double | NV ) \b /ix)
{
$configs{$name}{'section'} =
$floating_scn;
}
else {
# Above are the specific sections. The rest go into a
# grab-bag of general configuration values. However, we put
# two classes of them into lists of their names, without their
# descriptions, when we think that the description doesn't add
# any real value. One list contains the #include variables:
# the description is basically boiler plate for each of these.
# The other list contains the very many things that are of the
# form HAS_foo, and \bfoo\b is contained in its description,
# and there is no verbatim text in the pod or links to/from it
# (which would add value). That means that it is likely the
# intent of the variable can be gleaned from just its name,
# and unlikely the description adds significant value, so just
# listing them suffices. Giving their descriptions would
# expand this pod significantly with little added value.
if ( ! $has_defn
&& ! $configs{$name}{verbatim}
&& ! $configs{$name}{linked})
{
if ($name =~ / ^ I_ ( .* ) /x) {
push @include_defs, $name;
next;
}
elsif ($name =~ / ^ HAS_ ( .* ) /x) {
my $canonical_name = $1;
$canonical_name =~ s/_//g;
my $canonical_pod = $configs{$name}{pod};
$canonical_pod =~ s/_//g;
if ($canonical_pod =~ / \b $canonical_name \b /xi) {
if ($name =~ / $sb R $sb /x) {
push @has_r_defs, $name;
}
else {
push @has_defs, $name;
}
next;
}
}
}
$configs{$name}{'section'} = $genconfig_scn;
}
my $section = $configs{$name}{'section'};
die "Internal error: '$section' not in \%valid_sections"
unless grep { $_ eq $section } keys %valid_sections;
$flags .= 'AdmnT';
$flags .= 'U' unless defined $configs{$name}{usage};
# All the information has been gathered; save it
$docs{'api'}{$section}{$name}{flags} = $flags;
$docs{'api'}{$section}{$name}{pod} = $configs{$name}{pod};
$docs{'api'}{$section}{$name}{ret_type} = "";
$docs{'api'}{$section}{$name}{file} = 'config.h';
$docs{'api'}{$section}{$name}{usage}
= $configs{$name}{usage} if defined $configs{$name}{usage};
push $docs{'api'}{$section}{$name}{args}->@*, ();
push $docs{'api'}{$section}{$name}{items}->@*, ();
}
}
}
sub format_pod_indexes($) {
my $entries_ref = shift;
# Output the X<> references to the names, packed since they don't get
# displayed, but not too many per line so that when someone is editing the
# file, it doesn't run on
my $text ="";
my $line_length = 0;
for my $name (sort dictionary_order $entries_ref->@*) {
my $entry = "X<$name>";
my $entry_length = length $entry;
# Don't loop forever if we have a verrry long name, and don't go too
# far to the right.
if ($line_length > 0 && $line_length + $entry_length > $max_width) {
$text .= "\n";
$line_length = 0;
}
$text .= $entry;
$line_length += $entry_length;
}
return $text;
}
sub docout ($$$) { # output the docs for one function group
my($fh, $element_name, $docref) = @_;
# Trim trailing space
$element_name =~ s/\s*$//;
my $flags = $docref->{flags};
my $pod = $docref->{pod} // "";
my $file = $docref->{file};
my @items = $docref->{items}->@*;
# Make the main element the first of the items. This allows uniform
# treatment below
unshift @items, { name => $element_name,
flags => $flags,
ret_type => $docref->{ret_type},
args => [ $docref->{args}->@* ],
};
warn("Empty pod for $element_name (from $file)") unless $pod =~ /\S/;
print $fh "\n=over $description_indent\n";
print $fh "\n=item C<$_->{name}>\n" for @items;
# If we're printing only a link to an element, this isn't the major entry,
# so no X<> here.
if ($flags !~ /h/) {
print $fh "X<$_->{name}>" for @items;
print $fh "\n";
}
my @deprecated;
my @experimental;
for my $item (@items) {
push @deprecated, "C<$item->{name}>" if $item->{flags} =~ /D/;
push @experimental, "C<$item->{name}>" if $item->{flags} =~ /x/;
}
for my $which (\@deprecated, \@experimental) {
if ($which->@*) {
my $is;
my $it;
my $list;
if ($which->@* == 1) {
$is = 'is';
$it = 'it';
$list = $which->[0];
}
elsif ($which->@* == @items) {
$is = 'are';
$it = 'them';
$list = (@items == 2)
? "both forms"
: "all these forms";
}
else {
$is = 'are';
$it = 'them';
my $final = pop $which->@*;
$list = "the " . join ", ", $which->@*;
$list .= "," if $which->@* > 1;
$list .= " and $final forms";
}
if ($which == \@deprecated) {
print $fh <<~"EOT";
C<B<DEPRECATED!>> It is planned to remove $list
from a future release of Perl. Do not use $it for
new code; remove $it from existing code.
EOT
}
else {
print $fh <<~"EOT";
NOTE: $list $is B<experimental> and may change or be
removed without notice.
EOT
}
}
}
chomp $pod; # Make sure prints pod with a single trailing \n
print $fh "\n", $pod, "\n";
for my $item (@items) {
my $item_flags = $item->{flags};
my $item_name = $item->{name};
print $fh "\nNOTE: the C<perl_$item_name()> form is B<deprecated>.\n"
if $item_flags =~ /O/;
# Is Perl_, but no #define foo # Perl_foo
if ( ($item_flags =~ /p/ && $item_flags =~ /o/ && $item_flags !~ /M/)
# Can't handle threaded varargs
|| ( $item_flags =~ /f/
&& $item_flags !~ /T/
&& $item_name !~ /strftime/))
{
$item->{name} = "Perl_$item_name";
print $fh <<~"EOT";
NOTE: C<$item_name> must be explicitly called as
C<$item->{name}>
EOT
print $fh "with an C<aTHX_> parameter" if $item_flags !~ /T/;
print $fh ".\n";
}
}
if ($flags =~ /[Uy]/) { # no usage; typedefs are considered simple enough
# to never warrant a usage line
warn("U and ; flags are incompatible")
if $flags =~ /U/ && $flags =~ /;/;
# nothing
} else {
print $fh "\n=over $usage_indent\n";
if (defined $docref->{usage}) { # An override of the usage section
print $fh "\n", ($docref->{usage} =~ s/^/ /mrg), "\n";
}
else {
# Add the thread context formal parameter on expanded-out names
for my $item (@items) {
unshift $item->{args}->@*, (($item->{args}->@*)
? "pTHX_"
: "pTHX")
if $item->{flags} !~ /T/
&& $item->{name} =~ /^Perl_/;
}
# Look through all the items in this entry. If all have the same
# return type and arguments (including thread context), only the
# main entry is displayed.
# Also, find the longest return type and longest name so that if
# multiple ones are shown, they can be vertically aligned nicely
my $need_individual_usage = 0;
my $longest_name_length = length $items[0]->{name};
my $base_ret_type = $items[0]->{ret_type};
my $longest_ret = length $base_ret_type;
my @base_args = $items[0]->{args}->@*;
my $base_thread_context = $items[0]->{flags} =~ /T/;
for (my $i = 1; $i < @items; $i++) {
my $item = $items[$i];
my $args_are_equal = $item->{args}->@* == @base_args
&& !grep $item->{args}[$_] ne $base_args[$_], keys @base_args;
$need_individual_usage = 1
if $item->{ret_type} ne $base_ret_type
|| ! $args_are_equal
|| ( $item->{flags} =~ /T/
!= $base_thread_context);
my $ret_length = length $item->{ret_type};
$longest_ret = $ret_length if $ret_length > $longest_ret;
my $name_length = length $item->{name};
$longest_name_length = $name_length
if $name_length > $longest_name_length;
}
# If we're only showing one entry, only its length matters.
$longest_name_length = length($items[0]->{name})
unless $need_individual_usage;
print $fh "\n";
my $indent = 1; # 1 is sufficient for verbatim; =over is used
# for more
my $ret_name_sep_length = 2; # spaces between return type and name
my $name_indent = $indent + $longest_ret;
$name_indent += $ret_name_sep_length if $longest_ret;
my $this_max_width =
$max_width - $description_indent - $usage_indent;
for my $item (@items) {
my $ret_type = $item->{ret_type};
my @args = $item->{args}->@*;
my $name = $item->{name};
my $item_flags = $item->{flags};
# The return type
print $fh (" " x $indent), $ret_type;
print $fh " " x ( $ret_name_sep_length
+ $longest_ret - length $ret_type);
print $fh $name;
if ($item_flags =~ /n/) { # no args
warn("$file: $element_name: n flag without m")
unless $item_flags =~ /m/;
warn("$file: $name: n flag but apparently has args")
if @args;
}
else {
# +1 for the '('
my $arg_indent = $name_indent + $longest_name_length + 1;
# Align the argument lists of the items
print $fh " " x ($longest_name_length - length($name));
print $fh "(";
# Display as many of the arguments on the same line as
# will fit.
my $total_length = $arg_indent;
my $first_line = 1;
for (my $i = 0; $i < @args; $i++) {
my $arg = $args[$i];
my $arg_length = length($arg);
# All but the first arg are preceded by a blank
my $use_blank = $i > 0;
# +1 here and below because either the argument has a
# trailing comma or trailing ')'
$total_length += $arg_length + $use_blank + 1;
# We want none of the arguments to be positioned so
# they extend too far to the right. Ideally, they
# should all start in the same column as the arguments
# on the first line of the function display do. But, if
# necessary, outdent them so that they all start in
# another column, with the longest ending at the right
# margin, like so:
# void function_name(pTHX_ short1,
# short2,
# very_long_argument,
# short3)
if ($total_length > $this_max_width) {
# If this is the first continuation line,
# calculate the longest argument; this will be the
# one we may have to outdent for.
if ($first_line) {
$first_line = 0;
# We will need at least as much as the current
# argument
my $longest_arg_length = $arg_length
+ $use_blank + 1;
# Look through the rest of the args to see if
# any are longer than this one.
for (my $j = $i + 1; $j < @args; $j++) {
# Include the trailing ',' or ')' in the
# length. No need to concern ourselves
# with a leading blank, as the argument
# would be positioned first on the next
# line
my $peek_arg_length = length ($args[$j])
+ 1;
$longest_arg_length = $peek_arg_length
if $peek_arg_length > $longest_arg_length;
}
# Calculate the new indent if necessary.
$arg_indent =
$this_max_width - $longest_arg_length
if $arg_indent + $longest_arg_length
> $this_max_width;
}
print $fh "\n", (" " x $arg_indent);
$total_length = $arg_indent + $arg_length + 1;
$use_blank = 0;
}
# Display this argument
print $fh " " if $use_blank;
print $fh $arg;
print $fh "," if $i < @args - 1 && $args[$i] ne 'pTHX_';
} # End of loop through args
print $fh ")";
}
print $fh ";" if $item_flags =~ /;/; # semicolon: "dTHR;"
print $fh "\n";
# Only the first entry is normally displayed
last unless $need_individual_usage;
}
}
print $fh "\n=back\n";
}
print $fh "\n=back\n";
print $fh "\n=for hackers\nFound in file $file\n";
}
sub construct_missings_section {
my ($missings_hdr, $missings_ref) = @_;
my $text = "";
$text .= "$missings_hdr\n" . format_pod_indexes($missings_ref);
if ($missings_ref->@* == 0) {
return $text . "\nThere are currently no items of this type\n";
}
# Sort the elements.
my @missings = sort dictionary_order $missings_ref->@*;
# Make a table of the missings in columns. Give the subroutine a width
# one less than you might expect, as we indent each line by one, to mark
# it as verbatim.
my $table .= columnarize_list(\@missings, $max_width - 1);
$table =~ s/^/ /gm;
return $text . "\n\n" . $table;
}
sub dictionary_order {
# Do a case-insensitive dictionary sort, falling back in stages to using
# everything for determinancy. The initial comparison ignores
# all non-word characters and non-trailing underscores and digits, with
# trailing ones collating to after any other characters. This collation
# order continues in case tie breakers are needed; sequences of digits
# that do get looked at always compare numerically. The first tie
# breaker takes all digits and underscores into account. The next tie
# breaker uses a caseless character-by-character comparison of everything
# (including non-word characters). Finally is a cased comparison.
#
# This gives intuitive results, but obviously could be tweaked.
no warnings 'non_unicode';
local $a = $a;
local $b = $b;
# Convert all digit sequences to same length with leading zeros, so for
# example, 8 will compare less than 16 (using a fill length value that
# should be longer than any sequence in the input).
$a =~ s/(\d+)/sprintf "%06d", $1/ge;
$b =~ s/(\d+)/sprintf "%06d", $1/ge;
# Translate any underscores and digits so they compare after all Unicode
# characters
$a =~ tr[_0-9]/\x{110000}-\x{11000A}/;
$b =~ tr[_0-9]/\x{110000}-\x{11000A}/;
use feature 'state';
# Modify \w, \W to reflect the changes.
state $ud = '\x{110000}-\x{11000A}'; # xlated underscore, digits
state $w = "\\w$ud"; # new \w string
state $mod_w = qr/[$w]/;
state $mod_W = qr/[^$w]/;
# Only \w for initial comparison
my $a_only_word = uc($a =~ s/$mod_W//gr);
my $b_only_word = uc($b =~ s/$mod_W//gr);
# And not initial nor interior underscores nor digits (by squeezing them
# out)
my $a_stripped = $a_only_word =~ s/ (*atomic:[$ud]+) (*pla: $mod_w ) //grxx;
my $b_stripped = $b_only_word =~ s/ (*atomic:[$ud]+) (*pla: $mod_w ) //grxx;
# If the stripped versions differ, use that as the comparison.
my $cmp = $a_stripped cmp $b_stripped;
return $cmp if $cmp;
# For the first tie breaker, repeat, but consider initial and interior
# underscores and digits, again having those compare after all Unicode
# characters
$cmp = $a_only_word cmp $b_only_word;
return $cmp if $cmp;
# Next tie breaker is just a caseless comparison
$cmp = uc($a) cmp uc($b);
return $cmp if $cmp;
# Finally a straight comparison
return $a cmp $b;
}
sub output {
my ($podname, $header, $dochash, $footer, @missings_refs) = @_;
#
# strip leading '|' from each line which had been used to hide
# pod from pod checkers.
s/^\|//gm for $header, $footer, @missings_refs;
my $fh = open_new("pod/$podname.pod", undef,
{by => "$0 extracting documentation",
from => 'the C source files'}, 1);
print $fh $header, "\n";
for my $section_name (sort dictionary_order keys %valid_sections) {
my $section_info = $dochash->{$section_name};
# We allow empty sections in perlintern.
if (! $section_info && $podname eq 'perlapi') {
warn "Empty section '$section_name' for $podname; skipped";
next;
}
print $fh "\n=head1 $section_name\n";
if ($section_info->{X_tags}) {
print $fh "X<$_>" for sort keys $section_info->{X_tags}->%*;
print $fh "\n";
delete $section_info->{X_tags};
}
if ($podname eq 'perlapi') {
print $fh "\n", $valid_sections{$section_name}{header}, "\n"
if defined $valid_sections{$section_name}{header};
# Output any heading-level documentation and delete so won't get in
# the way later
if (exists $section_info->{""}) {
print $fh "\n", $section_info->{""}, "\n";
delete $section_info->{""};
}
}
if ($section_info && keys $section_info->%*) {
for my $function_name (sort dictionary_order keys %$section_info) {
docout($fh, $function_name, $section_info->{$function_name});
}
}
else {
my $pod_type = ($podname eq 'api') ? "public" : "internal";
print $fh "\nThere are currently no $pod_type API items in ",
$section_name, "\n";
}
print $fh "\n", $valid_sections{$section_name}{footer}, "\n"
if $podname eq 'perlapi'
&& defined $valid_sections{$section_name}{footer};
}
my $first_time = 1;
while (1) {
my $missings_hdr = shift @missings_refs or last;
my $missings_ref = shift @missings_refs or die "Foo";
if ($first_time) {
$first_time = 0;
print $fh <<~EOT;
=head1 $undocumented_scn
EOT
}
print $fh construct_missings_section($missings_hdr, $missings_ref);
}
print $fh "\n$footer\n=cut\n";
read_only_bottom_close_and_rename($fh);
}
foreach (@{(setup_embed())[0]}) {
my $embed= $_->{embed}
or next;
my ($flags, $ret_type, $func, $args) = @{$embed}{qw(flags return_type name args)};
my @munged_args= @$args;
s/\b(?:NN|NULLOK)\b\s+//g for @munged_args;
$funcflags{$func} = {
flags => $flags,
ret_type => $ret_type,
args => \@munged_args,
};
}
# glob() picks up docs from extra .c or .h files that may be in unclean
# development trees.
open my $fh, '<', 'MANIFEST'
or die "Can't open MANIFEST: $!";
while (my $line = <$fh>) {
next unless my ($file) = $line =~ /^(\S+\.(?:[ch]|pod))\t/;
# Don't pick up pods from these.
next if $file =~ m! ^ ( cpan | dist | ext ) / !x
&& ! defined $extra_input_pods{$file};
open F, '<', $file or die "Cannot open $file for docs: $!\n";
autodoc(\*F,$file);
close F or die "Error closing $file: $!\n";
}
close $fh or die "Error whilst reading MANIFEST: $!";
parse_config_h();
for (sort keys %funcflags) {
next unless $funcflags{$_}{flags} =~ /d/;
next if $funcflags{$_}{flags} =~ /h/;
warn "no docs for $_\n";
}
foreach (sort keys %missing) {
warn "Function '$_', documented in $missing{$_}, not listed in embed.fnc";
}
# List of funcs in the public API that aren't also marked as core-only,
# experimental nor deprecated.
my @undocumented_api = grep { $funcflags{$_}{flags} =~ /A/
&& ! $docs{api}{$_}
} keys %funcflags;
my @undocumented_intern = grep { $funcflags{$_}{flags} !~ /[AS]/
&& ! $docs{intern}{$_}
} keys %funcflags;
my @undocumented_deprecated_api = grep { $funcflags{$_}{flags} =~ /D/ }
@undocumented_api;
my @undocumented_deprecated_intern = grep { $funcflags{$_}{flags} =~ /D/ }
@undocumented_intern;
my @undocumented_experimental_api = grep { $funcflags{$_}{flags} =~ /x/ }
@undocumented_api;
my @undocumented_experimental_intern = grep { $funcflags{$_}{flags} =~ /x/ }
@undocumented_intern;
my @missing_api = grep { $funcflags{$_}{flags} !~ /[xD]/ } @undocumented_api;
push @missing_api, keys %missing_macros;
my @missing_intern = grep { $funcflags{$_}{flags} !~ /[xD]/ }
@undocumented_intern;
my @other_places = ( qw(perlclib ), keys %described_elsewhere );
my $places_other_than_intern = join ", ",
map { "L<$_>" } sort dictionary_order 'perlapi', @other_places;
my $places_other_than_api = join ", ",
map { "L<$_>" } sort dictionary_order 'perlintern', @other_places;
# The S< > makes things less densely packed, hence more readable
my $has_defs_text .= join ",S< > ", map { "C<$_>" } sort dictionary_order @has_defs;
my $has_r_defs_text .= join ",S< > ", map { "C<$_>" } sort dictionary_order @has_r_defs;
$valid_sections{$genconfig_scn}{footer} =~ s/__HAS_LIST__/$has_defs_text/;
$valid_sections{$genconfig_scn}{footer} =~ s/__HAS_R_LIST__/$has_r_defs_text/;
my $include_defs_text .= join ",S< > ", map { "C<$_>" } sort dictionary_order @include_defs;
$valid_sections{$genconfig_scn}{footer} =~ s/__INCLUDE_LIST__/$include_defs_text/;
my $section_list = join "\n\n", map { "=item L</$_>" }
sort(dictionary_order keys %valid_sections),
$undocumented_scn; # Keep last
# Leading '|' is to hide these lines from pod checkers. khw is unsure if this
# is still needed.
my $api_hdr = <<"_EOB_";
|=encoding UTF-8
|
|=head1 NAME
|
|perlapi - autogenerated documentation for the perl public API
|
|=head1 DESCRIPTION
|X<Perl API> X<API> X<api>
|
|This file contains most of the documentation of the perl public API, as
|generated by F<embed.pl>. Specifically, it is a listing of functions,
|macros, flags, and variables that may be used by extension writers. Besides
|L<perlintern> and F<config.h>, some items are listed here as being actually
|documented in another pod.
|
|L<At the end|/$undocumented_scn> is a list of functions which have yet
|to be documented. Patches welcome! The interfaces of these are subject to
|change without notice.
|
|Some of the functions documented here are consolidated so that a single entry
|serves for multiple functions which all do basically the same thing, but have
|some slight differences. For example, one form might process magic, while
|another doesn't. The name of each variation is listed at the top of the
|single entry. But if all have the same signature (arguments and return type)
|except for their names, only the usage for the base form is shown. If any
|one of the forms has a different signature (such as returning C<const> or
|not) every function's signature is explicitly displayed.
|
|Anything not listed here or in the other mentioned pods is not part of the
|public API, and should not be used by extension writers at all. For these
|reasons, blindly using functions listed in F<proto.h> is to be avoided when
|writing extensions.
|
|In Perl, unlike C, a string of characters may generally contain embedded
|C<NUL> characters. Sometimes in the documentation a Perl string is referred
|to as a "buffer" to distinguish it from a C string, but sometimes they are
|both just referred to as strings.
|
|Note that all Perl API global variables must be referenced with the C<PL_>
|prefix. Again, those not listed here are not to be used by extension writers,
|and may be changed or removed without notice; same with macros.
|Some macros are provided for compatibility with the older,
|unadorned names, but this support may be disabled in a future release.
|
|Perl was originally written to handle US-ASCII only (that is characters
|whose ordinal numbers are in the range 0 - 127).
|And documentation and comments may still use the term ASCII, when
|sometimes in fact the entire range from 0 - 255 is meant.
|
|The non-ASCII characters below 256 can have various meanings, depending on
|various things. (See, most notably, L<perllocale>.) But usually the whole
|range can be referred to as ISO-8859-1. Often, the term "Latin-1" (or
|"Latin1") is used as an equivalent for ISO-8859-1. But some people treat
|"Latin1" as referring just to the characters in the range 128 through 255, or
|sometimes from 160 through 255.
|This documentation uses "Latin1" and "Latin-1" to refer to all 256 characters.
|
|Note that Perl can be compiled and run under either ASCII or EBCDIC (See
|L<perlebcdic>). Most of the documentation (and even comments in the code)
|ignore the EBCDIC possibility.
|For almost all purposes the differences are transparent.
|As an example, under EBCDIC,
|instead of UTF-8, UTF-EBCDIC is used to encode Unicode strings, and so
|whenever this documentation refers to C<utf8>
|(and variants of that name, including in function names),
|it also (essentially transparently) means C<UTF-EBCDIC>.
|But the ordinals of characters differ between ASCII, EBCDIC, and
|the UTF- encodings, and a string encoded in UTF-EBCDIC may occupy a different
|number of bytes than in UTF-8.
|
|The organization of this document is tentative and subject to change.
|Suggestions and patches welcome
|L<perl5-porters\@perl.org|mailto:perl5-porters\@perl.org>.
|
|The sections in this document currently are
|
|=over $standard_indent
|$section_list
|
|=back
|
|The listing below is alphabetical, case insensitive.
_EOB_
my $api_footer = <<"_EOE_";
|=head1 AUTHORS
|
|Until May 1997, this document was maintained by Jeff Okamoto
|<okamoto\@corp.hp.com>. It is now maintained as part of Perl itself.
|
|With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
|Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
|Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
|Stephen McCamant, and Gurusamy Sarathy.
|
|API Listing originally by Dean Roehrich <roehrich\@cray.com>.
|
|Updated to be autogenerated from comments in the source by Benjamin Stuhl.
|
|=head1 SEE ALSO
|
|F<config.h>, $places_other_than_api
_EOE_
my $api_missings_hdr = <<'_EOT_';
|The following functions have been flagged as part of the public
|API, but are currently undocumented. Use them at your own risk,
|as the interfaces are subject to change. Functions that are not
|listed in this document are not intended for public use, and
|should NOT be used under any circumstances.
|
|If you feel you need to use one of these functions, first send
|email to L<perl5-porters@perl.org|mailto:perl5-porters@perl.org>.
|It may be that there is a good reason for the function not being
|documented, and it should be removed from this list; or it may
|just be that no one has gotten around to documenting it. In the
|latter case, you will be asked to submit a patch to document the
|function. Once your patch is accepted, it will indicate that the
|interface is stable (unless it is explicitly marked otherwise) and
|usable by you.
_EOT_
my $api_experimental_hdr = <<"_EOT_";
|
|Next are the API-flagged elements that are considered experimental. Using one
|of these is even more risky than plain undocumented ones. They are listed
|here because they should be listed somewhere (so their existence doesn't get
|lost) and this is the best place for them.
_EOT_
my $api_deprecated_hdr = <<"_EOT_";
|
|Finally are deprecated undocumented API elements.
|Do not use any for new code; remove all occurrences of all of these from
|existing code.
_EOT_
output('perlapi', $api_hdr, $docs{api}, $api_footer,
$api_missings_hdr, \@missing_api,
$api_experimental_hdr, \@undocumented_experimental_api,
$api_deprecated_hdr, \@undocumented_deprecated_api);
my $intern_hdr = <<"_EOB_";
|=head1 NAME
|
|perlintern - autogenerated documentation of purely B<internal>
|Perl functions
|
|=head1 DESCRIPTION
|X<internal Perl functions> X<interpreter functions>
|
|This file is the autogenerated documentation of functions in the
|Perl interpreter that are documented using Perl's internal documentation
|format but are not marked as part of the Perl API. In other words,
|B<they are not for use in extensions>!
|It has the same sections as L<perlapi>, though some may be empty.
|
_EOB_
my $intern_footer = <<"_EOE_";
|
|=head1 AUTHORS
|
|The autodocumentation system was originally added to the Perl core by
|Benjamin Stuhl. Documentation is by whoever was kind enough to
|document their functions.
|
|=head1 SEE ALSO
|
|F<config.h>, $places_other_than_intern
_EOE_
my $intern_missings_hdr = <<"_EOT_";
|
|This section lists the elements that are otherwise undocumented. If you use
|any of them, please consider creating and submitting documentation for it.
|
|Experimental and deprecated undocumented elements are listed separately at the
|end.
|
_EOT_
my $intern_experimental_hdr = <<"_EOT_";
|
|Next are the experimental undocumented elements
|
_EOT_
my $intern_deprecated_hdr = <<"_EOT_";
|
|Finally are the deprecated undocumented elements.
|Do not use any for new code; remove all occurrences of all of these from
|existing code.
|
_EOT_
output('perlintern', $intern_hdr, $docs{intern}, $intern_footer,
$intern_missings_hdr, \@missing_intern,
$intern_experimental_hdr, \@undocumented_experimental_intern,
$intern_deprecated_hdr, \@undocumented_deprecated_intern
);
|