home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 July / AMIGA_1996_7.BIN / ausgabe_7_96 / pd-programmierung / perl5_002bin.lha / bin / perldoc < prev    next >
Text File  |  1996-03-27  |  9KB  |  348 lines

  1. #!/gnu/bin/perl
  2.     eval 'exec perl -S $0 "$@"'
  3.     if 0;
  4.     eval 'exec perl -S $0 "$@"'
  5.     if 0;
  6.  
  7. #
  8. # Perldoc revision #1 -- look up a piece of documentation in .pod format that
  9. # is embedded in the perl installation tree.
  10. #
  11. # This is not to be confused with Tom Christianson's perlman, which is a
  12. # man replacement, written in perl. This perldoc is strictly for reading
  13. # the perl manuals, though it too is written in perl.
  14. #
  15. # Version 1.11: Tue Dec 26 09:54:33 EST 1995
  16. #       Kenneth Albanowski <kjahds@kjahds.com>
  17. #   -added Charles Bailey's further VMS patches, and -u switch
  18. #   -added -t switch, with pod2text support
  19. # Version 1.10: Thu Nov  9 07:23:47 EST 1995
  20. #        Kenneth Albanowski <kjahds@kjahds.com>
  21. #    -added VMS support
  22. #    -added better error recognition (on no found pages, just exit. On
  23. #     missing nroff/pod2man, just display raw pod.)
  24. #    -added recursive/case-insensitive matching (thanks, Andreas). This
  25. #     slows things down a bit, unfortunately. Give a precise name, and
  26. #     it'll run faster.
  27. #
  28. # Version 1.01:    Tue May 30 14:47:34 EDT 1995
  29. #        Andy Dougherty  <doughera@lafcol.lafayette.edu>
  30. #   -added pod documentation.
  31. #   -added PATH searching.
  32. #   -added searching pod/ subdirectory (mainly to pick up perlfunc.pod
  33. #    and friends.
  34. #
  35. #
  36. # TODO:
  37. #
  38. #    Cache directories read during sloppy match
  39. #
  40.  
  41. =head1 NAME
  42.  
  43. perldoc - Look up Perl documentation in pod format.
  44.  
  45. =head1 SYNOPSIS
  46.  
  47. B<perldoc> [B<-h>] [B<-v>] [B<-t>] [B<-u>] PageName|ModuleName|ProgramName
  48.  
  49. =head1 DESCRIPTION
  50.  
  51. I<perldoc> looks up a piece of documentation in .pod format that is
  52. embedded in the perl installation tree or in a perl script, and displays
  53. it via pod2man | nroff -man | $PAGER.  This is primarily used for the
  54. documentation for the perl library modules. 
  55.  
  56. Your system may also have man pages installed for those modules, in
  57. which case you can probably just use the man(1) command.
  58.  
  59. =head1 OPTIONS
  60.  
  61. =over 5
  62.  
  63. =item B<-h> help
  64.  
  65. Prints out a brief help message.
  66.  
  67. =item B<-v> verbose
  68.  
  69. Describes search for the item in detail.
  70.  
  71. =item B<-t> text output
  72.  
  73. Display docs using plain text converter, instead of nroff. This may be faster,
  74. but it won't look as nice.
  75.  
  76. =item B<-u> unformatted
  77.  
  78. Find docs only; skip reformatting by pod2*
  79.  
  80. =item B<PageName|ModuleName|ProgramName>
  81.  
  82. The item you want to look up.  Nested modules (such as C<File::Basename>)
  83. are specified either as C<File::Basename> or C<File/Basename>.  You may also
  84. give a descriptive name of a page, such as C<perlfunc>. You make also give a
  85. partial or wrong-case name, such as "basename" for "File::Basename", but
  86. this will be slower, if there is more then one page with the same partial
  87. name, you will only get the first one.
  88.  
  89. =back
  90.  
  91. =head1 ENVIRONMENT
  92.  
  93. Any switches in the C<PERLDOC> environment variable will be used before the 
  94. command line arguments.  C<perldoc> also searches directories
  95. specified by the C<PERL5LIB> (or C<PERLLIB> if C<PERL5LIB> is not
  96. defined) and C<PATH> environment variables.
  97. (The latter is so that embedded pods for executables, such as
  98. C<perldoc> itself, are available.)
  99.  
  100. =head1 AUTHOR
  101.  
  102. Kenneth Albanowski <kjahds@kjahds.com>
  103.  
  104. Minor updates by Andy Dougherty <doughera@lafcol.lafayette.edu>
  105.  
  106. =head1 SEE ALSO
  107.  
  108. =head1 DIAGNOSTICS
  109.  
  110. =cut
  111.  
  112. if(@ARGV<1) {
  113.     die <<EOF;
  114. Usage: $0 [-h] [-v] [-t] [-u] PageName|ModuleName|ProgramName
  115.  
  116. We suggest you use "perldoc perldoc" to get aquainted 
  117. with the system.
  118. EOF
  119. }
  120.  
  121. use Getopt::Std;
  122. use Config;
  123. $Is_VMS = $Config{'osname'} eq 'VMS';
  124.  
  125. sub usage{
  126.         warn "@_\n" if @_;
  127.     die <<EOF;
  128. perldoc [-h] [-v] [-u] PageName|ModuleName|ProgramName...
  129.     -h   Display this help message.
  130.     -t   Display pod using pod2text instead of pod2man and nroff.
  131.     -u     Display unformatted pod text
  132.     -v     Verbosely describe what's going on.
  133. PageName|ModuleName...
  134.          is the name of a piece of documentation that you want to look at. You 
  135.          may either give a descriptive name of the page (as in the case of
  136.          `perlfunc') the name of a module, either like `Term::Info', 
  137.          `Term/Info', the partial name of a module, like `info', or 
  138.          `makemaker', or the name of a program, like `perldoc'.
  139.          
  140. Any switches in the PERLDOC environment variable will be used before the 
  141. command line arguments.
  142.  
  143. EOF
  144. }
  145.  
  146. use Text::ParseWords;
  147.  
  148.  
  149. unshift(@ARGV,shellwords($ENV{"PERLDOC"}));
  150.  
  151. getopts("htuv") || usage;
  152.  
  153. usage if $opt_h || $opt_h; # avoid -w warning
  154.  
  155. eval "use Pod::Text" if $opt_t;
  156.  
  157. @pages = @ARGV;
  158.  
  159. # VMS only -- use this hack until support for searchlist
  160. # logical names is better integrated into the Perl core
  161. sub translate_searchlist_logical {
  162.     my($lnm) = @_;
  163.     my($trans,@trans);
  164.     return unless $ENV{$lnm};
  165.     $trans = `show logical $lnm`;
  166.     $trans =~ s/\n1(.|\n)*//;  # clip off iterative translations
  167.     @trans = split(/[\"=\s\n]+/,$trans); # break into words
  168.     splice(@trans,0,2); # pop off initial blank and orig name
  169.     @trans = grep(!/^\(/,@trans); # filter out table names
  170.     wantarray ? @trans : $trans[0];
  171. }
  172.  
  173. sub containspod {
  174.     my($file) = @_;
  175.     local($_);
  176.     open(TEST,"<$file");
  177.     while(<TEST>) {
  178.         if(/^=head/) {
  179.             close(TEST);
  180.             return 1;
  181.         }
  182.     }
  183.     close(TEST);
  184.     return 0;
  185. }
  186.  
  187.  sub minus_f_nocase {
  188.      my($file) = @_;
  189.      local *DIR;
  190.      local($")="/";
  191.      my(@p,$p,$cip);
  192.      foreach $p (split(/\//, $file)){
  193.     if ($Is_VMS and not scalar @p) {
  194.         # VMS filesystems don't begin at '/'
  195.         push(@p,$p);
  196.         next;
  197.     }
  198.      if (-d ("@p/$p")){
  199.          push @p, $p;
  200.      } elsif (-f ("@p/$p")) {
  201.          return "@p/$p";
  202.      } else {
  203.          my $found=0;
  204.          my $lcp = lc $p;
  205.          opendir DIR, "@p";
  206.          while ($cip=readdir(DIR)) {
  207.         $cip =~ s/\.dir$// if $Is_VMS;
  208.          if (lc $cip eq $lcp){
  209.              $found++;
  210.              last;
  211.          }
  212.          }
  213.          closedir DIR;
  214.          return "" unless $found;
  215.          push @p, $cip;
  216.          return "@p" if -f "@p";
  217.      }
  218.      }
  219.      return; # is not a file
  220.  }
  221.  
  222.   sub searchfor {
  223.       my($recurse,$s,@dirs) = @_;
  224.       $s =~ s!::!/!g;
  225.       $s = VMS::Filespec::unixify($s) if $Is_VMS;
  226.       printf STDERR "looking for $s in @dirs\n" if $opt_v;
  227.      my $ret;
  228.      my $i;
  229.      my $dir;
  230.       for ($i=0;$i<@dirs;$i++) {
  231.           $dir = $dirs[$i];
  232.           ($dir = VMS::Filespec::unixpath($dir)) =~ s!/$!! if $Is_VMS;
  233.          if ((    $ret = minus_f_nocase "$dir/$s.pod")
  234.          or ( $ret = minus_f_nocase "$dir/$s.pm"  and containspod($ret))
  235.          or ( $ret = minus_f_nocase "$dir/$s"     and containspod($ret))
  236.          or ( $Is_VMS and 
  237.               $ret = minus_f_nocase "$dir/$s.com" and containspod($ret))
  238.          or ( $ret = minus_f_nocase "$dir/pod/$s.pod")
  239.          or ( $ret = minus_f_nocase "$dir/pod/$s" and containspod($ret)))
  240.          { return $ret; }
  241.          
  242.          if($recurse) {
  243.             opendir(D,$dir);
  244.             my(@newdirs) = grep(-d,map("$dir/$_",grep(!/^\.\.?$/,readdir(D))));
  245.             closedir(D);
  246.             @newdirs = map((s/.dir$//,$_)[1],@newdirs) if $Is_VMS;
  247.             last unless @newdirs;
  248.             print STDERR "Also looking in @newdirs\n" if $opt_v;
  249.             push(@dirs,@newdirs);
  250.          }
  251.      }
  252.       return ();
  253.   }
  254.  
  255.  
  256. foreach (@pages) {
  257.     print STDERR "Searching for $_\n" if $opt_v;
  258.     # We must look both in @INC for library modules and in PATH
  259.     # for executables, like h2xs or perldoc itself.
  260.     @searchdirs = @INC;
  261.     if ($Is_VMS) {
  262.         push(@searchdirs, translate_searchlist_logical('DCL$PATH'));
  263.     } else {
  264.         push(@searchdirs, grep(-d, split(':', $ENV{'PATH'})));
  265.     }
  266.     @files= searchfor(0,$_,@searchdirs);
  267.     if( @files ) {
  268.         print STDERR "Found as @files\n" if $opt_v;
  269.     } else {
  270.         # no match, try recursive search
  271.         
  272.         @searchdirs = grep(!/^\.$/,@INC);
  273.         
  274.         
  275.         @files= searchfor(1,$_,@searchdirs);
  276.         if( @files ) {
  277.             print STDERR "Loosely found as @files\n" if $opt_v;
  278.         } else {
  279.             print STDERR "No documentation found for '$_'\n";
  280.         }
  281.     }
  282.     push(@found,@files);
  283. }
  284.  
  285. if(!@found) {
  286.     exit ($Is_VMS ? 98962 : 1);
  287. }
  288.  
  289. if( ! -t STDOUT ) { $opt_f = 1 }
  290.  
  291. unless($Is_VMS) {
  292.     $tmp = "/tmp/perldoc1.$$";
  293.     $goodresult = 0;
  294.     @pagers = qw( more less pg view cat );
  295.     unshift(@pagers,$ENV{PAGER}) if $ENV{PAGER};
  296. } else {
  297.     $tmp = 'Sys$Scratch:perldoc.tmp1_'.$$;
  298.     @pagers = qw( most more less type/page );
  299.     unshift(@pagers,$ENV{PERLDOC_PAGER}) if $ENV{PERLDOC_PAGER};
  300.     $goodresult = 1;
  301. }
  302.  
  303. foreach (@found) {
  304.     
  305.     if($opt_t) {
  306.         open(TMP,">>$tmp");
  307.         Pod::Text::pod2text($_,*TMP);
  308.         close(TMP);
  309.     } elsif(not $opt_u) {
  310.         open(TMP,">>$tmp");
  311.         $rslt = `pod2man $_ | nroff -man`;
  312.         if ($Is_VMS) { $err = !($? % 2) || $rslt =~ /IVVERB/; }
  313.         else      { $err = $?; }
  314.         print TMP $rslt unless $err;
  315.         close TMP;
  316.     }
  317.                                                     
  318.     if( $opt_u or $err or -z $tmp) {
  319.         open(OUT,">>$tmp");
  320.         open(IN,"<$_");
  321.         $cut = 1;
  322.         while (<IN>) {
  323.             $cut = $1 eq 'cut' if /^=(\w+)/;
  324.             next if $cut;
  325.             print OUT;
  326.         }
  327.         close(IN);
  328.         close(OUT);
  329.     }
  330. }
  331.  
  332. if( $opt_f ) {
  333.     open(TMP,"<$tmp");
  334.     print while <TMP>;
  335.     close(TMP);
  336. } else {
  337.     foreach $pager (@pagers) {
  338.         $sts = system("$pager $tmp");
  339.         last if $Is_VMS && ($sts & 1);
  340.         last unless $sts;
  341.     }
  342. }
  343.  
  344. 1 while unlink($tmp); #Possibly pointless VMSism
  345.  
  346. exit 0;
  347.