home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Find.pm < prev    next >
Text File  |  2003-11-07  |  15KB  |  515 lines

  1. #############################################################################  
  2. # Pod/Find.pm -- finds files containing POD documentation
  3. #
  4. # Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
  5. # Copyright (C) 1999-2000 by Marek Rouchal (and borrowing code
  6. # from Nick Ing-Simmon's PodToHtml). All rights reserved.
  7. # This file is part of "PodParser". Pod::Find is free software;
  8. # you can redistribute it and/or modify it under the same terms
  9. # as Perl itself.
  10. #############################################################################
  11.  
  12. package Pod::Find;
  13.  
  14. use vars qw($VERSION);
  15. $VERSION = 0.24;   ## Current version of this package
  16. require  5.005;   ## requires this Perl version or later
  17. use Carp;
  18.  
  19. #############################################################################
  20.  
  21. =head1 NAME
  22.  
  23. Pod::Find - find POD documents in directory trees
  24.  
  25. =head1 SYNOPSIS
  26.  
  27.   use Pod::Find qw(pod_find simplify_name);
  28.   my %pods = pod_find({ -verbose => 1, -inc => 1 });
  29.   foreach(keys %pods) {
  30.      print "found library POD `$pods{$_}' in $_\n";
  31.   }
  32.  
  33.   print "podname=",simplify_name('a/b/c/mymodule.pod'),"\n";
  34.  
  35.   $location = pod_where( { -inc => 1 }, "Pod::Find" );
  36.  
  37. =head1 DESCRIPTION
  38.  
  39. B<Pod::Find> provides a set of functions to locate POD files.  Note that
  40. no function is exported by default to avoid pollution of your namespace,
  41. so be sure to specify them in the B<use> statement if you need them:
  42.  
  43.   use Pod::Find qw(pod_find);
  44.  
  45. =cut
  46.  
  47. use strict;
  48. #use diagnostics;
  49. use Exporter;
  50. use File::Spec;
  51. use File::Find;
  52. use Cwd;
  53.  
  54. use vars qw(@ISA @EXPORT_OK $VERSION);
  55. @ISA = qw(Exporter);
  56. @EXPORT_OK = qw(&pod_find &simplify_name &pod_where &contains_pod);
  57.  
  58. # package global variables
  59. my $SIMPLIFY_RX;
  60.  
  61. =head2 C<pod_find( { %opts } , @directories )>
  62.  
  63. The function B<pod_find> searches for POD documents in a given set of
  64. files and/or directories. It returns a hash with the file names as keys
  65. and the POD name as value. The POD name is derived from the file name
  66. and its position in the directory tree.
  67.  
  68. E.g. when searching in F<$HOME/perl5lib>, the file
  69. F<$HOME/perl5lib/MyModule.pm> would get the POD name I<MyModule>,
  70. whereas F<$HOME/perl5lib/Myclass/Subclass.pm> would be
  71. I<Myclass::Subclass>. The name information can be used for POD
  72. translators.
  73.  
  74. Only text files containing at least one valid POD command are found.
  75.  
  76. A warning is printed if more than one POD file with the same POD name
  77. is found, e.g. F<CPAN.pm> in different directories. This usually
  78. indicates duplicate occurrences of modules in the I<@INC> search path.
  79.  
  80. B<OPTIONS> The first argument for B<pod_find> may be a hash reference
  81. with options. The rest are either directories that are searched
  82. recursively or files.  The POD names of files are the plain basenames
  83. with any Perl-like extension (.pm, .pl, .pod) stripped.
  84.  
  85. =over 4
  86.  
  87. =item C<-verbose =E<gt> 1>
  88.  
  89. Print progress information while scanning.
  90.  
  91. =item C<-perl =E<gt> 1>
  92.  
  93. Apply Perl-specific heuristics to find the correct PODs. This includes
  94. stripping Perl-like extensions, omitting subdirectories that are numeric
  95. but do I<not> match the current Perl interpreter's version id, suppressing
  96. F<site_perl> as a module hierarchy name etc.
  97.  
  98. =item C<-script =E<gt> 1>
  99.  
  100. Search for PODs in the current Perl interpreter's installation 
  101. B<scriptdir>. This is taken from the local L<Config|Config> module.
  102.  
  103. =item C<-inc =E<gt> 1>
  104.  
  105. Search for PODs in the current Perl interpreter's I<@INC> paths. This
  106. automatically considers paths specified in the C<PERL5LIB> environment
  107. as this is prepended to I<@INC> by the Perl interpreter itself.
  108.  
  109. =back
  110.  
  111. =cut
  112.  
  113. # return a hash of the POD files found
  114. # first argument may be a hashref (options),
  115. # rest is a list of directories to search recursively
  116. sub pod_find
  117. {
  118.     my %opts;
  119.     if(ref $_[0]) {
  120.         %opts = %{shift()};
  121.     }
  122.  
  123.     $opts{-verbose} ||= 0;
  124.     $opts{-perl}    ||= 0;
  125.  
  126.     my (@search) = @_;
  127.  
  128.     if($opts{-script}) {
  129.         require Config;
  130.         push(@search, $Config::Config{scriptdir})
  131.             if -d $Config::Config{scriptdir};
  132.         $opts{-perl} = 1;
  133.     }
  134.  
  135.     if($opts{-inc}) {
  136.         if ($^O eq 'MacOS') {
  137.             # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
  138.             my @new_INC = @INC;
  139.             for (@new_INC) {
  140.                 if ( $_ eq '.' ) {
  141.                     $_ = ':';
  142.                 } elsif ( $_ =~ s|^((?:\.\./)+)|':' x (length($1)/3)|e ) {
  143.                     $_ = ':'. $_;
  144.                 } else {
  145.                     $_ =~ s|^\./|:|;
  146.                 }
  147.             }
  148.             push(@search, grep($_ ne File::Spec->curdir, @new_INC));
  149.         } else {
  150.             push(@search, grep($_ ne File::Spec->curdir, @INC));
  151.         }
  152.  
  153.         $opts{-perl} = 1;
  154.     }
  155.  
  156.     if($opts{-perl}) {
  157.         require Config;
  158.         # this code simplifies the POD name for Perl modules:
  159.         # * remove "site_perl"
  160.         # * remove e.g. "i586-linux" (from 'archname')
  161.         # * remove e.g. 5.00503
  162.         # * remove pod/ if followed by *.pod (e.g. in pod/perlfunc.pod)
  163.  
  164.         # Mac OS:
  165.         # * remove ":?site_perl:"
  166.         # * remove :?pod: if followed by *.pod (e.g. in :pod:perlfunc.pod)
  167.  
  168.         if ($^O eq 'MacOS') {
  169.             $SIMPLIFY_RX =
  170.               qq!^(?i:\:?site_perl\:|\:?pod\:(?=.*?\\.pod\\z))*!;
  171.         } else {
  172.             $SIMPLIFY_RX =
  173.               qq!^(?i:site(_perl)?/|\Q$Config::Config{archname}\E/|\\d+\\.\\d+([_.]?\\d+)?/|pod/(?=.*?\\.pod\\z))*!;
  174.         }
  175.     }
  176.  
  177.     my %dirs_visited;
  178.     my %pods;
  179.     my %names;
  180.     my $pwd = cwd();
  181.  
  182.     foreach my $try (@search) {
  183.         unless(File::Spec->file_name_is_absolute($try)) {
  184.             # make path absolute
  185.             $try = File::Spec->catfile($pwd,$try);
  186.         }
  187.         # simplify path
  188.         # on VMS canonpath will vmsify:[the.path], but File::Find::find
  189.         # wants /unixy/paths
  190.         $try = File::Spec->canonpath($try) if ($^O ne 'VMS');
  191.         $try = VMS::Filespec::unixify($try) if ($^O eq 'VMS');
  192.         my $name;
  193.         if(-f $try) {
  194.             if($name = _check_and_extract_name($try, $opts{-verbose})) {
  195.                 _check_for_duplicates($try, $name, \%names, \%pods);
  196.             }
  197.             next;
  198.         }
  199.         my $root_rx = $^O eq 'MacOS' ? qq!^\Q$try\E! : qq!^\Q$try\E/!;
  200.         File::Find::find( sub {
  201.             my $item = $File::Find::name;
  202.             if(-d) {
  203.                 if($dirs_visited{$item}) {
  204.                     warn "Directory '$item' already seen, skipping.\n"
  205.                         if($opts{-verbose});
  206.                     $File::Find::prune = 1;
  207.                     return;
  208.                 }
  209.                 else {
  210.                     $dirs_visited{$item} = 1;
  211.                 }
  212.                 if($opts{-perl} && /^(\d+\.[\d_]+)\z/s && eval "$1" != $]) {
  213.                     $File::Find::prune = 1;
  214.                     warn "Perl $] version mismatch on $_, skipping.\n"
  215.                         if($opts{-verbose});
  216.                 }
  217.                 return;
  218.             }
  219.             if($name = _check_and_extract_name($item, $opts{-verbose}, $root_rx)) {
  220.                 _check_for_duplicates($item, $name, \%names, \%pods);
  221.             }
  222.         }, $try); # end of File::Find::find
  223.     }
  224.     chdir $pwd;
  225.     %pods;
  226. }
  227.  
  228. sub _check_for_duplicates {
  229.     my ($file, $name, $names_ref, $pods_ref) = @_;
  230.     if($$names_ref{$name}) {
  231.         warn "Duplicate POD found (shadowing?): $name ($file)\n";
  232.         warn "    Already seen in ",
  233.             join(' ', grep($$pods_ref{$_} eq $name, keys %$pods_ref)),"\n";
  234.     }
  235.     else {
  236.         $$names_ref{$name} = 1;
  237.     }
  238.     $$pods_ref{$file} = $name;
  239. }
  240.  
  241. sub _check_and_extract_name {
  242.     my ($file, $verbose, $root_rx) = @_;
  243.  
  244.     # check extension or executable flag
  245.     # this involves testing the .bat extension on Win32!
  246.     unless(-f $file && -T _ && ($file =~ /\.(pod|pm|plx?)\z/i || -x _ )) {
  247.       return undef;
  248.     }
  249.  
  250.     return undef unless contains_pod($file,$verbose);
  251.  
  252.     # strip non-significant path components
  253.     # TODO what happens on e.g. Win32?
  254.     my $name = $file;
  255.     if(defined $root_rx) {
  256.         $name =~ s!$root_rx!!s;
  257.         $name =~ s!$SIMPLIFY_RX!!os if(defined $SIMPLIFY_RX);
  258.     }
  259.     else {
  260.         if ($^O eq 'MacOS') {
  261.             $name =~ s/^.*://s;
  262.         } else {
  263.             $name =~ s:^.*/::s;
  264.         }
  265.     }
  266.     _simplify($name);
  267.     $name =~ s!/+!::!g; #/
  268.     if ($^O eq 'MacOS') {
  269.         $name =~ s!:+!::!g; # : -> ::
  270.     } else {
  271.         $name =~ s!/+!::!g; # / -> ::
  272.     }
  273.     $name;
  274. }
  275.  
  276. =head2 C<simplify_name( $str )>
  277.  
  278. The function B<simplify_name> is equivalent to B<basename>, but also
  279. strips Perl-like extensions (.pm, .pl, .pod) and extensions like
  280. F<.bat>, F<.cmd> on Win32 and OS/2, or F<.com> on VMS, respectively.
  281.  
  282. =cut
  283.  
  284. # basic simplification of the POD name:
  285. # basename & strip extension
  286. sub simplify_name {
  287.     my ($str) = @_;
  288.     # remove all path components
  289.     if ($^O eq 'MacOS') {
  290.         $str =~ s/^.*://s;
  291.     } else {
  292.         $str =~ s:^.*/::s;
  293.     }
  294.     _simplify($str);
  295.     $str;
  296. }
  297.  
  298. # internal sub only
  299. sub _simplify {
  300.     # strip Perl's own extensions
  301.     $_[0] =~ s/\.(pod|pm|plx?)\z//i;
  302.     # strip meaningless extensions on Win32 and OS/2
  303.     $_[0] =~ s/\.(bat|exe|cmd)\z//i if($^O =~ /mswin|os2/i);
  304.     # strip meaningless extensions on VMS
  305.     $_[0] =~ s/\.(com)\z//i if($^O eq 'VMS');
  306. }
  307.  
  308. # contribution from Tim Jenness <t.jenness@jach.hawaii.edu>
  309.  
  310. =head2 C<pod_where( { %opts }, $pod )>
  311.  
  312. Returns the location of a pod document given a search directory
  313. and a module (e.g. C<File::Find>) or script (e.g. C<perldoc>) name.
  314.  
  315. Options:
  316.  
  317. =over 4
  318.  
  319. =item C<-inc =E<gt> 1>
  320.  
  321. Search @INC for the pod and also the C<scriptdir> defined in the
  322. L<Config|Config> module.
  323.  
  324. =item C<-dirs =E<gt> [ $dir1, $dir2, ... ]>
  325.  
  326. Reference to an array of search directories. These are searched in order
  327. before looking in C<@INC> (if B<-inc>). Current directory is used if
  328. none are specified.
  329.  
  330. =item C<-verbose =E<gt> 1>
  331.  
  332. List directories as they are searched
  333.  
  334. =back
  335.  
  336. Returns the full path of the first occurrence to the file.
  337. Package names (eg 'A::B') are automatically converted to directory
  338. names in the selected directory. (eg on unix 'A::B' is converted to
  339. 'A/B'). Additionally, '.pm', '.pl' and '.pod' are appended to the
  340. search automatically if required.
  341.  
  342. A subdirectory F<pod/> is also checked if it exists in any of the given
  343. search directories. This ensures that e.g. L<perlfunc|perlfunc> is
  344. found.
  345.  
  346. It is assumed that if a module name is supplied, that that name
  347. matches the file name. Pods are not opened to check for the 'NAME'
  348. entry.
  349.  
  350. A check is made to make sure that the file that is found does 
  351. contain some pod documentation.
  352.  
  353. =cut
  354.  
  355. sub pod_where {
  356.  
  357.   # default options
  358.   my %options = (
  359.          '-inc' => 0,
  360.          '-verbose' => 0,
  361.          '-dirs' => [ File::Spec->curdir ],
  362.         );
  363.  
  364.   # Check for an options hash as first argument
  365.   if (defined $_[0] && ref($_[0]) eq 'HASH') {
  366.     my $opt = shift;
  367.  
  368.     # Merge default options with supplied options
  369.     %options = (%options, %$opt);
  370.   }
  371.  
  372.   # Check usage
  373.   carp 'Usage: pod_where({options}, $pod)' unless (scalar(@_));
  374.  
  375.   # Read argument
  376.   my $pod = shift;
  377.  
  378.   # Split on :: and then join the name together using File::Spec
  379.   my @parts = split (/::/, $pod);
  380.  
  381.   # Get full directory list
  382.   my @search_dirs = @{ $options{'-dirs'} };
  383.  
  384.   if ($options{'-inc'}) {
  385.  
  386.     require Config;
  387.  
  388.     # Add @INC
  389.     if ($^O eq 'MacOS' && $options{'-inc'}) {
  390.         # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
  391.         my @new_INC = @INC;
  392.         for (@new_INC) {
  393.             if ( $_ eq '.' ) {
  394.                 $_ = ':';
  395.             } elsif ( $_ =~ s|^((?:\.\./)+)|':' x (length($1)/3)|e ) {
  396.                 $_ = ':'. $_;
  397.             } else {
  398.                 $_ =~ s|^\./|:|;
  399.             }
  400.         }
  401.         push (@search_dirs, @new_INC);
  402.     } elsif ($options{'-inc'}) {
  403.         push (@search_dirs, @INC);
  404.     }
  405.  
  406.     # Add location of pod documentation for perl man pages (eg perlfunc)
  407.     # This is a pod directory in the private install tree
  408.     #my $perlpoddir = File::Spec->catdir($Config::Config{'installprivlib'},
  409.     #                    'pod');
  410.     #push (@search_dirs, $perlpoddir)
  411.     #  if -d $perlpoddir;
  412.  
  413.     # Add location of binaries such as pod2text
  414.     push (@search_dirs, $Config::Config{'scriptdir'})
  415.       if -d $Config::Config{'scriptdir'};
  416.   }
  417.  
  418.   warn "Search path is: ".join(' ', @search_dirs)."\n"
  419.         if $options{'-verbose'};
  420.  
  421.   # Loop over directories
  422.   Dir: foreach my $dir ( @search_dirs ) {
  423.  
  424.     # Don't bother if can't find the directory
  425.     if (-d $dir) {
  426.       warn "Looking in directory $dir\n" 
  427.         if $options{'-verbose'};
  428.  
  429.       # Now concatenate this directory with the pod we are searching for
  430.       my $fullname = File::Spec->catfile($dir, @parts);
  431.       warn "Filename is now $fullname\n"
  432.         if $options{'-verbose'};
  433.  
  434.       # Loop over possible extensions
  435.       foreach my $ext ('', '.pod', '.pm', '.pl') {
  436.         my $fullext = $fullname . $ext;
  437.         if (-f $fullext && 
  438.          contains_pod($fullext, $options{'-verbose'}) ) {
  439.           warn "FOUND: $fullext\n" if $options{'-verbose'};
  440.           return $fullext;
  441.         }
  442.       }
  443.     } else {
  444.       warn "Directory $dir does not exist\n"
  445.         if $options{'-verbose'};
  446.       next Dir;
  447.     }
  448.     # for some strange reason the path on MacOS/darwin/cygwin is
  449.     # 'pods' not 'pod'
  450.     # this could be the case also for other systems that
  451.     # have a case-tolerant file system, but File::Spec
  452.     # does not recognize 'darwin' yet. And cygwin also has "pods",
  453.     # but is not case tolerant. Oh well...
  454.     if((File::Spec->case_tolerant || $^O =~ /macos|darwin|cygwin/i)
  455.      && -d File::Spec->catdir($dir,'pods')) {
  456.       $dir = File::Spec->catdir($dir,'pods');
  457.       redo Dir;
  458.     }
  459.     if(-d File::Spec->catdir($dir,'pod')) {
  460.       $dir = File::Spec->catdir($dir,'pod');
  461.       redo Dir;
  462.     }
  463.   }
  464.   # No match;
  465.   return undef;
  466. }
  467.  
  468. =head2 C<contains_pod( $file , $verbose )>
  469.  
  470. Returns true if the supplied filename (not POD module) contains some pod
  471. information.
  472.  
  473. =cut
  474.  
  475. sub contains_pod {
  476.   my $file = shift;
  477.   my $verbose = 0;
  478.   $verbose = shift if @_;
  479.  
  480.   # check for one line of POD
  481.   unless(open(POD,"<$file")) {
  482.     warn "Error: $file is unreadable: $!\n";
  483.     return undef;
  484.   }
  485.   
  486.   local $/ = undef;
  487.   my $pod = <POD>;
  488.   close(POD) || die "Error closing $file: $!\n";
  489.   unless($pod =~ /\n=(head\d|pod|over|item)\b/s) {
  490.     warn "No POD in $file, skipping.\n"
  491.       if($verbose);
  492.     return 0;
  493.   }
  494.  
  495.   return 1;
  496. }
  497.  
  498. =head1 AUTHOR
  499.  
  500. Marek Rouchal E<lt>marek@saftsack.fs.uni-bayreuth.deE<gt>,
  501. heavily borrowing code from Nick Ing-Simmons' PodToHtml.
  502.  
  503. Tim Jenness E<lt>t.jenness@jach.hawaii.eduE<gt> provided
  504. C<pod_where> and C<contains_pod>.
  505.  
  506. =head1 SEE ALSO
  507.  
  508. L<Pod::Parser>, L<Pod::Checker>, L<perldoc>
  509.  
  510. =cut
  511.  
  512. 1;
  513.  
  514.