home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_mlb.zip / Pod / Text.pm < prev   
Text File  |  1997-11-25  |  13KB  |  546 lines

  1. package Pod::Text;
  2.  
  3. =head1 NAME
  4.  
  5. Pod::Text - convert POD data to formatted ASCII text
  6.  
  7. =head1 SYNOPSIS
  8.  
  9.     use Pod::Text;
  10.  
  11.     pod2text("perlfunc.pod");
  12.  
  13. Also:
  14.  
  15.     pod2text [B<-a>] [B<->I<width>] < input.pod
  16.  
  17. =head1 DESCRIPTION
  18.  
  19. Pod::Text is a module that can convert documentation in the POD format (such
  20. as can be found throughout the Perl distribution) into formatted ASCII.
  21. Termcap is optionally supported for boldface/underline, and can enabled via
  22. C<$Pod::Text::termcap=1>. If termcap has not been enabled, then backspaces
  23. will be used to simulate bold and underlined text.
  24.  
  25. A separate F<pod2text> program is included that is primarily a wrapper for
  26. Pod::Text.
  27.  
  28. The single function C<pod2text()> can take the optional options B<-a>
  29. for an alternative output format, then a B<->I<width> option with the
  30. max terminal width, followed by one or two arguments. The first
  31. should be the name of a file to read the pod from, or "E<lt>&STDIN" to read from
  32. STDIN. A second argument, if provided, should be a filehandle glob where
  33. output should be sent.
  34.  
  35. =head1 AUTHOR
  36.  
  37. Tom Christiansen E<lt>F<tchrist@mox.perl.com>E<gt>
  38.  
  39. =head1 TODO
  40.  
  41. Cleanup work. The input and output locations need to be more flexible,
  42. termcap shouldn't be a global variable, and the terminal speed needs to
  43. be properly calculated.
  44.  
  45. =cut
  46.  
  47. use Term::Cap;
  48. require Exporter;
  49. @ISA = Exporter;
  50. @EXPORT = qw(pod2text);
  51.  
  52. use vars qw($VERSION);
  53. $VERSION = "1.0203";
  54.  
  55. $termcap=0;
  56.  
  57. $opt_alt_format = 0;
  58.  
  59. #$use_format=1;
  60.  
  61. $UNDL = "\x1b[4m";
  62. $INV = "\x1b[7m";
  63. $BOLD = "\x1b[1m";
  64. $NORM = "\x1b[0m";
  65.  
  66. sub pod2text {
  67. shift if $opt_alt_format = ($_[0] eq '-a');
  68.  
  69. if($termcap and !$setuptermcap) {
  70.     $setuptermcap=1;
  71.  
  72.     my($term) = Tgetent Term::Cap { TERM => undef, OSPEED => 9600 };
  73.     $UNDL = $term->{'_us'};
  74.     $INV = $term->{'_mr'};
  75.     $BOLD = $term->{'_md'};
  76.     $NORM = $term->{'_me'};
  77. }
  78.  
  79. $SCREEN = ($_[0] =~ /^-(\d+)/ && (shift, $1))
  80.        ||  $ENV{COLUMNS}
  81.        || ($ENV{TERMCAP} =~ /co#(\d+)/)[0]
  82.        || ($^O ne 'MSWin32' && (`stty -a 2>/dev/null` =~ /(\d+) columns/)[0])
  83.        || 72;
  84.  
  85. @_ = ("<&STDIN") unless @_;
  86. local($file,*OUTPUT) = @_;
  87. *OUTPUT = *STDOUT if @_<2;
  88.  
  89. local $: = $:;
  90. $: = " \n" if $opt_alt_format;    # Do not break ``-L/lib/'' into ``- L/lib/''.
  91.  
  92. $/ = "";
  93.  
  94. $FANCY = 0;
  95.  
  96. $cutting = 1;
  97. $DEF_INDENT = 4;
  98. $indent = $DEF_INDENT;
  99. $needspace = 0;
  100. $begun = "";
  101.  
  102. open(IN, $file) || die "Couldn't open $file: $!";
  103.  
  104. POD_DIRECTIVE: while (<IN>) {
  105.     if ($cutting) {
  106.     next unless /^=/;
  107.     $cutting = 0;
  108.     }
  109.     if ($begun) {
  110.         if (/^=end\s+$begun/) {
  111.              $begun = "";
  112.         }
  113.         elsif ($begun eq "text") {
  114.             print OUTPUT $_;
  115.         }
  116.         next;
  117.     }
  118.     1 while s{^(.*?)(\t+)(.*)$}{
  119.     $1
  120.     . (' ' x (length($2) * 8 - length($1) % 8))
  121.     . $3
  122.     }me;
  123.     # Translate verbatim paragraph
  124.     if (/^\s/) {
  125.     output($_);
  126.     next;
  127.     }
  128.  
  129.     if (/^=for\s+(\S+)\s*(.*)/s) {
  130.         if ($1 eq "text") {
  131.             print OUTPUT $2,"";
  132.         } else {
  133.             # ignore unknown for
  134.         }
  135.         next;
  136.     }
  137.     elsif (/^=begin\s+(\S+)\s*(.*)/s) {
  138.         $begun = $1;
  139.         if ($1 eq "text") {
  140.             print OUTPUT $2."";
  141.         }
  142.         next;
  143.     }
  144.  
  145. sub prepare_for_output {
  146.  
  147.     s/\s*$/\n/;
  148.     &init_noremap;
  149.  
  150.     # need to hide E<> first; they're processed in clear_noremap
  151.     s/(E<[^<>]+>)/noremap($1)/ge;
  152.     $maxnest = 10;
  153.     while ($maxnest-- && /[A-Z]</) {
  154.     unless ($FANCY) {
  155.         if ($opt_alt_format) {
  156.         s/[BC]<(.*?)>/``$1''/sg;
  157.         s/F<(.*?)>/"$1"/sg;
  158.         } else {
  159.         s/C<(.*?)>/`$1'/sg;
  160.         }
  161.     } else {
  162.         s/C<(.*?)>/noremap("E<lchevron>${1}E<rchevron>")/sge;
  163.     }
  164.         # s/[IF]<(.*?)>/italic($1)/ge;
  165.         s/I<(.*?)>/*$1*/sg;
  166.         # s/[CB]<(.*?)>/bold($1)/ge;
  167.     s/X<.*?>//sg;
  168.     # LREF: a manpage(3f)
  169.     s:L<([a-zA-Z][^\s\/]+)(\([^\)]+\))?>:the $1$2 manpage:g;
  170.     # LREF: an =item on another manpage
  171.     s{
  172.         L<
  173.         ([^/]+)
  174.         /
  175.         (
  176.             [:\w]+
  177.             (\(\))?
  178.         )
  179.         >
  180.     } {the "$2" entry in the $1 manpage}gx;
  181.  
  182.     # LREF: an =item on this manpage
  183.     s{
  184.        ((?:
  185.         L<
  186.         /
  187.         (
  188.             [:\w]+
  189.             (\(\))?
  190.         )
  191.         >
  192.         (,?\s+(and\s+)?)?
  193.       )+)
  194.     } { internal_lrefs($1) }gex;
  195.  
  196.     # LREF: a =head2 (head1?), maybe on a manpage, maybe right here
  197.     # the "func" can disambiguate
  198.     s{
  199.         L<
  200.         (?:
  201.             ([a-zA-Z]\S+?) / 
  202.         )?
  203.         "?(.*?)"?
  204.         >
  205.     }{
  206.         do {
  207.         $1     # if no $1, assume it means on this page.
  208.             ?  "the section on \"$2\" in the $1 manpage"
  209.             :  "the section on \"$2\""
  210.         }
  211.     }sgex;
  212.  
  213.         s/[A-Z]<(.*?)>/$1/sg;
  214.     }
  215.     clear_noremap(1);
  216. }
  217.  
  218.     &prepare_for_output;
  219.  
  220.     if (s/^=//) {
  221.     # $needspace = 0;        # Assume this.
  222.     # s/\n/ /g;
  223.     ($Cmd, $_) = split(' ', $_, 2);
  224.     # clear_noremap(1);
  225.     if ($Cmd eq 'cut') {
  226.         $cutting = 1;
  227.     }
  228.     elsif ($Cmd eq 'pod') {
  229.         $cutting = 0;
  230.     }
  231.     elsif ($Cmd eq 'head1') {
  232.         makespace();
  233.         if ($opt_alt_format) {
  234.         print OUTPUT "\n";
  235.         s/^(.+?)[ \t]*$/==== $1 ====/;
  236.         }
  237.         print OUTPUT;
  238.         # print OUTPUT uc($_);
  239.         $needspace = $opt_alt_format;
  240.     }
  241.     elsif ($Cmd eq 'head2') {
  242.         makespace();
  243.         # s/(\w+)/\u\L$1/g;
  244.         #print ' ' x $DEF_INDENT, $_;
  245.         # print "\xA7";
  246.         s/(\w)/\xA7 $1/ if $FANCY;
  247.         if ($opt_alt_format) {
  248.         s/^(.+?)[ \t]*$/==   $1   ==/;
  249.         print OUTPUT "\n", $_;
  250.         } else {
  251.         print OUTPUT ' ' x ($DEF_INDENT/2), $_, "\n";
  252.         }
  253.         $needspace = $opt_alt_format;
  254.     }
  255.     elsif ($Cmd eq 'over') {
  256.         push(@indent,$indent);
  257.         $indent += ($_ + 0) || $DEF_INDENT;
  258.     }
  259.     elsif ($Cmd eq 'back') {
  260.         $indent = pop(@indent);
  261.         warn "Unmatched =back\n" unless defined $indent;
  262.     }
  263.     elsif ($Cmd eq 'item') {
  264.         makespace();
  265.         # s/\A(\s*)\*/$1\xb7/ if $FANCY;
  266.         # s/^(\s*\*\s+)/$1 /;
  267.         {
  268.         if (length() + 3 < $indent) {
  269.             my $paratag = $_;
  270.             $_ = <IN>;
  271.             if (/^=/) {  # tricked!
  272.             local($indent) = $indent[$#index - 1] || $DEF_INDENT;
  273.             output($paratag);
  274.             redo POD_DIRECTIVE;
  275.             }
  276.             &prepare_for_output;
  277.             IP_output($paratag, $_);
  278.         } else {
  279.             local($indent) = $indent[$#index - 1] || $DEF_INDENT;
  280.             output($_, 0);
  281.         }
  282.         }
  283.     }
  284.     else {
  285.         warn "Unrecognized directive: $Cmd\n";
  286.     }
  287.     }
  288.     else {
  289.     # clear_noremap(1);
  290.     makespace();
  291.     output($_, 1);
  292.     }
  293. }
  294.  
  295. close(IN);
  296.  
  297. }
  298.  
  299. #########################################################################
  300.  
  301. sub makespace {
  302.     if ($needspace) {
  303.     print OUTPUT "\n";
  304.     $needspace = 0;
  305.     }
  306. }
  307.  
  308. sub bold {
  309.     my $line = shift;
  310.     return $line if $use_format;
  311.     if($termcap) {
  312.         $line = "$BOLD$line$NORM";
  313.     } else {
  314.         $line =~ s/(.)/$1\b$1/g;
  315.     }
  316. #    $line = "$BOLD$line$NORM" if $ansify;
  317.     return $line;
  318. }
  319.  
  320. sub italic {
  321.     my $line = shift;
  322.     return $line if $use_format;
  323.     if($termcap) {
  324.         $line = "$UNDL$line$NORM";
  325.     } else {
  326.         $line =~ s/(.)/$1\b_/g;
  327.     }
  328. #    $line = "$UNDL$line$NORM" if $ansify;
  329.     return $line;
  330. }
  331.  
  332. # Fill a paragraph including underlined and overstricken chars.
  333. # It's not perfect for words longer than the margin, and it's probably
  334. # slow, but it works.
  335. sub fill {
  336.     local $_ = shift;
  337.     my $par = "";
  338.     my $indent_space = " " x $indent;
  339.     my $marg = $SCREEN-$indent;
  340.     my $line = $indent_space;
  341.     my $line_length;
  342.     foreach (split) {
  343.     my $word_length = length;
  344.     $word_length -= 2 while /\010/g;  # Subtract backspaces
  345.  
  346.     if ($line_length + $word_length > $marg) {
  347.         $par .= $line . "\n";
  348.         $line= $indent_space . $_;
  349.         $line_length = $word_length;
  350.     }
  351.     else {
  352.         if ($line_length) {
  353.         $line_length++;
  354.         $line .= " ";
  355.         }
  356.         $line_length += $word_length;
  357.         $line .= $_;
  358.     }
  359.     }
  360.     $par .= "$line\n" if $line;
  361.     $par .= "\n";
  362.     return $par;
  363. }
  364.  
  365. sub IP_output {
  366.     local($tag, $_) = @_;
  367.     local($tag_indent) = $indent[$#index - 1] || $DEF_INDENT;
  368.     $tag_cols = $SCREEN - $tag_indent;
  369.     $cols = $SCREEN - $indent;
  370.     $tag =~ s/\s*$//;
  371.     s/\s+/ /g;
  372.     s/^ //;
  373.     $str = "format OUTPUT = \n"
  374.     . (($opt_alt_format && $tag_indent > 1)
  375.        ? ":" . " " x ($tag_indent - 1)
  376.        : " " x ($tag_indent))
  377.     . '@' . ('<' x ($indent - $tag_indent - 1))
  378.     . "^" .  ("<" x ($cols - 1)) . "\n"
  379.     . '$tag, $_'
  380.     . "\n~~"
  381.     . (" " x ($indent-2))
  382.     . "^" .  ("<" x ($cols - 5)) . "\n"
  383.     . '$_' . "\n\n.\n1";
  384.     #warn $str; warn "tag is $tag, _ is $_";
  385.     eval $str || die;
  386.     write OUTPUT;
  387. }
  388.  
  389. sub output {
  390.     local($_, $reformat) = @_;
  391.     if ($reformat) {
  392.     $cols = $SCREEN - $indent;
  393.     s/\s+/ /g;
  394.     s/^ //;
  395.     $str = "format OUTPUT = \n~~"
  396.         . (" " x ($indent-2))
  397.         . "^" .  ("<" x ($cols - 5)) . "\n"
  398.         . '$_' . "\n\n.\n1";
  399.     eval $str || die;
  400.     write OUTPUT;
  401.     } else {
  402.     s/^/' ' x $indent/gem;
  403.     s/^\s+\n$/\n/gm;
  404.     s/^  /: /s if defined($reformat) && $opt_alt_format;
  405.     print OUTPUT;
  406.     }
  407. }
  408.  
  409. sub noremap {
  410.     local($thing_to_hide) = shift;
  411.     $thing_to_hide =~ tr/\000-\177/\200-\377/;
  412.     return $thing_to_hide;
  413. }
  414.  
  415. sub init_noremap {
  416.     die "unmatched init" if $mapready++;
  417.     #mask off high bit characters in input stream
  418.     s/([\200-\377])/"E<".ord($1).">"/ge;
  419. }
  420.  
  421. sub clear_noremap {
  422.     my $ready_to_print = $_[0];
  423.     die "unmatched clear" unless $mapready--;
  424.     tr/\200-\377/\000-\177/;
  425.     # now for the E<>s, which have been hidden until now
  426.     # otherwise the interative \w<> processing would have
  427.     # been hosed by the E<gt>
  428.     s {
  429.         E<
  430.         (
  431.             ( \d+ )
  432.             | ( [A-Za-z]+ )
  433.         )
  434.         >    
  435.     } {
  436.      do {
  437.          defined $2
  438.          ? chr($2)
  439.          :
  440.          defined $HTML_Escapes{$3}
  441.         ? do { $HTML_Escapes{$3} }
  442.         : do {
  443.             warn "Unknown escape: E<$1> in $_";
  444.             "E<$1>";
  445.         }
  446.      }
  447.     }egx if $ready_to_print;
  448. }
  449.  
  450. sub internal_lrefs {
  451.     local($_) = shift;
  452.     s{L</([^>]+)>}{$1}g;
  453.     my(@items) = split( /(?:,?\s+(?:and\s+)?)/ );
  454.     my $retstr = "the ";
  455.     my $i;
  456.     for ($i = 0; $i <= $#items; $i++) {
  457.     $retstr .= "C<$items[$i]>";
  458.     $retstr .= ", " if @items > 2 && $i != $#items;
  459.     $retstr .= " and " if $i+2 == @items;
  460.     }
  461.  
  462.     $retstr .= " entr" . ( @items > 1  ? "ies" : "y" )
  463.         .  " elsewhere in this document ";
  464.  
  465.     return $retstr;
  466.  
  467. }
  468.  
  469. BEGIN {
  470.  
  471. %HTML_Escapes = (
  472.     'amp'    =>    '&',    #   ampersand
  473.     'lt'    =>    '<',    #   left chevron, less-than
  474.     'gt'    =>    '>',    #   right chevron, greater-than
  475.     'quot'    =>    '"',    #   double quote
  476.  
  477.     "Aacute"    =>    "\xC1",    #   capital A, acute accent
  478.     "aacute"    =>    "\xE1",    #   small a, acute accent
  479.     "Acirc"    =>    "\xC2",    #   capital A, circumflex accent
  480.     "acirc"    =>    "\xE2",    #   small a, circumflex accent
  481.     "AElig"    =>    "\xC6",    #   capital AE diphthong (ligature)
  482.     "aelig"    =>    "\xE6",    #   small ae diphthong (ligature)
  483.     "Agrave"    =>    "\xC0",    #   capital A, grave accent
  484.     "agrave"    =>    "\xE0",    #   small a, grave accent
  485.     "Aring"    =>    "\xC5",    #   capital A, ring
  486.     "aring"    =>    "\xE5",    #   small a, ring
  487.     "Atilde"    =>    "\xC3",    #   capital A, tilde
  488.     "atilde"    =>    "\xE3",    #   small a, tilde
  489.     "Auml"    =>    "\xC4",    #   capital A, dieresis or umlaut mark
  490.     "auml"    =>    "\xE4",    #   small a, dieresis or umlaut mark
  491.     "Ccedil"    =>    "\xC7",    #   capital C, cedilla
  492.     "ccedil"    =>    "\xE7",    #   small c, cedilla
  493.     "Eacute"    =>    "\xC9",    #   capital E, acute accent
  494.     "eacute"    =>    "\xE9",    #   small e, acute accent
  495.     "Ecirc"    =>    "\xCA",    #   capital E, circumflex accent
  496.     "ecirc"    =>    "\xEA",    #   small e, circumflex accent
  497.     "Egrave"    =>    "\xC8",    #   capital E, grave accent
  498.     "egrave"    =>    "\xE8",    #   small e, grave accent
  499.     "ETH"    =>    "\xD0",    #   capital Eth, Icelandic
  500.     "eth"    =>    "\xF0",    #   small eth, Icelandic
  501.     "Euml"    =>    "\xCB",    #   capital E, dieresis or umlaut mark
  502.     "euml"    =>    "\xEB",    #   small e, dieresis or umlaut mark
  503.     "Iacute"    =>    "\xCD",    #   capital I, acute accent
  504.     "iacute"    =>    "\xED",    #   small i, acute accent
  505.     "Icirc"    =>    "\xCE",    #   capital I, circumflex accent
  506.     "icirc"    =>    "\xEE",    #   small i, circumflex accent
  507.     "Igrave"    =>    "\xCD",    #   capital I, grave accent
  508.     "igrave"    =>    "\xED",    #   small i, grave accent
  509.     "Iuml"    =>    "\xCF",    #   capital I, dieresis or umlaut mark
  510.     "iuml"    =>    "\xEF",    #   small i, dieresis or umlaut mark
  511.     "Ntilde"    =>    "\xD1",        #   capital N, tilde
  512.     "ntilde"    =>    "\xF1",        #   small n, tilde
  513.     "Oacute"    =>    "\xD3",    #   capital O, acute accent
  514.     "oacute"    =>    "\xF3",    #   small o, acute accent
  515.     "Ocirc"    =>    "\xD4",    #   capital O, circumflex accent
  516.     "ocirc"    =>    "\xF4",    #   small o, circumflex accent
  517.     "Ograve"    =>    "\xD2",    #   capital O, grave accent
  518.     "ograve"    =>    "\xF2",    #   small o, grave accent
  519.     "Oslash"    =>    "\xD8",    #   capital O, slash
  520.     "oslash"    =>    "\xF8",    #   small o, slash
  521.     "Otilde"    =>    "\xD5",    #   capital O, tilde
  522.     "otilde"    =>    "\xF5",    #   small o, tilde
  523.     "Ouml"    =>    "\xD6",    #   capital O, dieresis or umlaut mark
  524.     "ouml"    =>    "\xF6",    #   small o, dieresis or umlaut mark
  525.     "szlig"    =>    "\xDF",        #   small sharp s, German (sz ligature)
  526.     "THORN"    =>    "\xDE",    #   capital THORN, Icelandic
  527.     "thorn"    =>    "\xFE",    #   small thorn, Icelandic
  528.     "Uacute"    =>    "\xDA",    #   capital U, acute accent
  529.     "uacute"    =>    "\xFA",    #   small u, acute accent
  530.     "Ucirc"    =>    "\xDB",    #   capital U, circumflex accent
  531.     "ucirc"    =>    "\xFB",    #   small u, circumflex accent
  532.     "Ugrave"    =>    "\xD9",    #   capital U, grave accent
  533.     "ugrave"    =>    "\xF9",    #   small u, grave accent
  534.     "Uuml"    =>    "\xDC",    #   capital U, dieresis or umlaut mark
  535.     "uuml"    =>    "\xFC",    #   small u, dieresis or umlaut mark
  536.     "Yacute"    =>    "\xDD",    #   capital Y, acute accent
  537.     "yacute"    =>    "\xFD",    #   small y, acute accent
  538.     "yuml"    =>    "\xFF",    #   small y, dieresis or umlaut mark
  539.  
  540.     "lchevron"    =>    "\xAB",    #   left chevron (double less than)
  541.     "rchevron"    =>    "\xBB",    #   right chevron (double greater than)
  542. );
  543. }
  544.  
  545. 1;
  546.