1 #############################################################################
2 # Pod/Find.pm -- finds files containing POD documentation
4 # Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
6 # Copyright (C) 1999-2000 by Marek Rouchal (and borrowing code
7 # from Nick Ing-Simmon's PodToHtml). All rights reserved.
8 # This file is part of "PodParser". Pod::Find is free software;
9 # you can redistribute it and/or modify it under the same terms
11 #############################################################################
15 use vars
qw($VERSION);
16 $VERSION = 0.21; ## Current version of this package
17 require 5.005; ## requires this Perl version or later
20 #############################################################################
24 Pod::Find - find POD documents in directory trees
28 use Pod::Find qw(pod_find simplify_name);
29 my %pods = pod_find
({ -verbose
=> 1, -inc
=> 1 });
31 print "found library POD `$pods{$_}' in $_\n";
34 print "podname=",simplify_name
('a/b/c/mymodule.pod'),"\n";
36 $location = pod_where
( { -inc
=> 1 }, "Pod::Find" );
40 B<Pod::Find> provides a set of functions to locate POD files. Note that
41 no function is exported by default to avoid pollution of your namespace,
42 so be sure to specify them in the B<use> statement if you need them:
44 use Pod::Find qw(pod_find);
55 use vars
qw(@ISA @EXPORT_OK $VERSION);
57 @EXPORT_OK = qw(&pod_find &simplify_name &pod_where &contains_pod);
59 # package global variables
62 =head2 C<pod_find( { %opts } , @directories )>
64 The function B<pod_find> searches for POD documents in a given set of
65 files and/or directories. It returns a hash with the file names as keys
66 and the POD name as value. The POD name is derived from the file name
67 and its position in the directory tree.
69 E.g. when searching in F<$HOME/perl5lib>, the file
70 F<$HOME/perl5lib/MyModule.pm> would get the POD name I<MyModule>,
71 whereas F<$HOME/perl5lib/Myclass/Subclass.pm> would be
72 I<Myclass::Subclass>. The name information can be used for POD
75 Only text files containing at least one valid POD command are found.
77 A warning is printed if more than one POD file with the same POD name
78 is found, e.g. F<CPAN.pm> in different directories. This usually
79 indicates duplicate occurrences of modules in the I<@INC> search path.
81 B<OPTIONS> The first argument for B<pod_find> may be a hash reference
82 with options. The rest are either directories that are searched
83 recursively or files. The POD names of files are the plain basenames
84 with any Perl-like extension (.pm, .pl, .pod) stripped.
88 =item C<-verbose =E<gt> 1>
90 Print progress information while scanning.
92 =item C<-perl =E<gt> 1>
94 Apply Perl-specific heuristics to find the correct PODs. This includes
95 stripping Perl-like extensions, omitting subdirectories that are numeric
96 but do I<not> match the current Perl interpreter's version id, suppressing
97 F<site_perl> as a module hierarchy name etc.
99 =item C<-script =E<gt> 1>
101 Search for PODs in the current Perl interpreter's installation
102 B<scriptdir>. This is taken from the local L<Config|Config> module.
104 =item C<-inc =E<gt> 1>
106 Search for PODs in the current Perl interpreter's I<@INC> paths. This
107 automatically considers paths specified in the C<PERL5LIB> environment
108 as this is prepended to I<@INC> by the Perl interpreter itself.
114 # return a hash of the POD files found
115 # first argument may be a hashref (options),
116 # rest is a list of directories to search recursively
124 $opts{-verbose
} ||= 0;
131 push(@search, $Config::Config
{scriptdir
})
132 if -d
$Config::Config
{scriptdir
};
137 if ($^O
eq 'MacOS') {
138 # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
143 } elsif ( $_ =~ s
|^((?
:\
.\
./)+)|':' x (length($1)/3)|e
) {
149 push(@search, grep($_ ne File
::Spec
->curdir, @new_INC));
151 push(@search, grep($_ ne File
::Spec
->curdir, @INC));
159 # this code simplifies the POD name for Perl modules:
160 # * remove "site_perl"
161 # * remove e.g. "i586-linux" (from 'archname')
162 # * remove e.g. 5.00503
163 # * remove pod/ if followed by *.pod (e.g. in pod/perlfunc.pod)
166 # * remove ":?site_perl:"
167 # * remove :?pod: if followed by *.pod (e.g. in :pod:perlfunc.pod)
169 if ($^O
eq 'MacOS') {
171 qq!^(?i
:\
:?site_perl\
:|\
:?pod\
:(?
=.*?
\\.pod
\\z
))*!;
174 qq!^(?i
:site
(_perl
)?
/|\Q$Config::Config{archname}\E/|\\d
+\\.\\d
+([_
.]?
\\d
+)?
/|pod/(?
=.*?
\\.pod
\\z
))*!;
183 foreach my $try (@search) {
184 unless(File
::Spec
->file_name_is_absolute($try)) {
186 $try = File
::Spec
->catfile($pwd,$try);
189 # on VMS canonpath will vmsify:[the.path], but File::Find::find
191 $try = File
::Spec
->canonpath($try) if ($^O
ne 'VMS');
194 if($name = _check_and_extract_name
($try, $opts{-verbose
})) {
195 _check_for_duplicates
($try, $name, \
%names, \
%pods);
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
;
203 if($dirs_visited{$item}) {
204 warn "Directory '$item' already seen, skipping.\n"
206 $File::Find
::prune
= 1;
210 $dirs_visited{$item} = 1;
212 if($opts{-perl
} && /^(\d+\.[\d_]+)\z/s && eval "$1" != $]) {
213 $File::Find
::prune
= 1;
214 warn "Perl $] version mismatch on $_, skipping.\n"
219 if($name = _check_and_extract_name
($item, $opts{-verbose
}, $root_rx)) {
220 _check_for_duplicates
($item, $name, \
%names, \
%pods);
222 }, $try); # end of File::Find::find
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";
236 $$names_ref{$name} = 1;
238 $$pods_ref{$file} = $name;
241 sub _check_and_extract_name
{
242 my ($file, $verbose, $root_rx) = @_;
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 _
)) {
250 return undef unless contains_pod
($file,$verbose);
252 # strip non-significant path components
253 # TODO what happens on e.g. Win32?
255 if(defined $root_rx) {
256 $name =~ s!$root_rx!!s;
257 $name =~ s!$SIMPLIFY_RX!!os if(defined $SIMPLIFY_RX);
260 if ($^O
eq 'MacOS') {
267 $name =~ s!/+!::!g; #/
268 if ($^O
eq 'MacOS') {
269 $name =~ s!:+!::!g; # : -> ::
271 $name =~ s!/+!::!g; # / -> ::
276 =head2 C<simplify_name( $str )>
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.
284 # basic simplification of the POD name:
285 # basename & strip extension
288 # remove all path components
289 if ($^O
eq 'MacOS') {
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');
308 # contribution from Tim Jenness <t.jenness@jach.hawaii.edu>
310 =head2 C<pod_where( { %opts }, $pod )>
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.
319 =item C<-inc =E<gt> 1>
321 Search @INC for the pod and also the C<scriptdir> defined in the
322 L<Config|Config> module.
324 =item C<-dirs =E<gt> [ $dir1, $dir2, ... ]>
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
330 =item C<-verbose =E<gt> 1>
332 List directories as they are searched
336 Returns the full path of the first occurence 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.
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
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'
350 A check is made to make sure that the file that is found does
351 contain some pod documentation.
361 '-dirs' => [ File
::Spec
->curdir ],
364 # Check for an options hash as first argument
365 if (defined $_[0] && ref($_[0]) eq 'HASH') {
368 # Merge default options with supplied options
369 %options = (%options, %$opt);
373 carp
'Usage: pod_where({options}, $pod)' unless (scalar(@_));
378 # Split on :: and then join the name together using File::Spec
379 my @parts = split (/::/, $pod);
381 # Get full directory list
382 my @search_dirs = @
{ $options{'-dirs'} };
384 if ($options{'-inc'}) {
389 if ($^O
eq 'MacOS' && $options{'-inc'}) {
390 # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
395 } elsif ( $_ =~ s
|^((?
:\
.\
./)+)|':' x (length($1)/3)|e
) {
401 push (@search_dirs, @new_INC);
402 } elsif ($options{'-inc'}) {
403 push (@search_dirs, @INC);
405 push (@search_dirs, @INC) if $options{'-inc'};
407 # Add location of pod documentation for perl man pages (eg perlfunc)
408 # This is a pod directory in the private install tree
409 #my $perlpoddir = File::Spec->catdir($Config::Config{'installprivlib'},
411 #push (@search_dirs, $perlpoddir)
414 # Add location of binaries such as pod2text
415 push (@search_dirs, $Config::Config
{'scriptdir'})
416 if -d
$Config::Config
{'scriptdir'};
419 # Loop over directories
420 Dir
: foreach my $dir ( @search_dirs ) {
422 # Don't bother if can't find the directory
424 warn "Looking in directory $dir\n"
425 if $options{'-verbose'};
427 # Now concatenate this directory with the pod we are searching for
428 my $fullname = File
::Spec
->catfile($dir, @parts);
429 warn "Filename is now $fullname\n"
430 if $options{'-verbose'};
432 # Loop over possible extensions
433 foreach my $ext ('', '.pod', '.pm', '.pl') {
434 my $fullext = $fullname . $ext;
436 contains_pod
($fullext, $options{'-verbose'}) ) {
437 warn "FOUND: $fullext\n" if $options{'-verbose'};
442 warn "Directory $dir does not exist\n"
443 if $options{'-verbose'};
446 if(-d File
::Spec
->catdir($dir,'pod')) {
447 $dir = File
::Spec
->catdir($dir,'pod');
455 =head2 C<contains_pod( $file , $verbose )>
457 Returns true if the supplied filename (not POD module) contains some pod
465 $verbose = shift if @_;
467 # check for one line of POD
468 unless(open(POD
,"<$file")) {
469 warn "Error: $file is unreadable: $!\n";
475 close(POD
) || die "Error closing $file: $!\n";
476 unless($pod =~ /\n=(head\d|pod|over|item)\b/s) {
477 warn "No POD in $file, skipping.\n"
487 Marek Rouchal E<lt>marek@saftsack.fs.uni-bayreuth.deE<gt>,
488 heavily borrowing code from Nick Ing-Simmons' PodToHtml.
490 Tim Jenness E<lt>t.jenness@jach.hawaii.eduE<gt> provided
491 C<pod_where> and C<contains_pod>.
495 L<Pod::Parser>, L<Pod::Checker>, L<perldoc>