File Coverage

blib/lib/Pod/Usage.pm
Criterion Covered Total %
statement 147 200 73.5
branch 82 148 55.4
condition 30 71 42.2
subroutine 14 17 82.3
pod 1 8 12.5
total 274 444 61.7


line stmt bran cond sub pod time code
1             #############################################################################
2             # Pod/Usage.pm -- print usage messages for the running script.
3             #
4             # Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved.
5             # Copyright (c) 2001-2016 by Marek Rouchal.
6             # This file is part of "Pod-Usage". Pod-Usage is free software;
7             # you can redistribute it and/or modify it under the same terms
8             # as Perl itself.
9             #############################################################################
10              
11             package Pod::Usage;
12 17     17   962710 use strict;
  17         136  
  17         476  
13              
14 17     17   68 use vars qw($VERSION @ISA @EXPORT);
  17         17  
  17         1343  
15             $VERSION = '1.70'; ## Current version of this package
16             require 5.006; ## requires this Perl version or later
17              
18             #use diagnostics;
19 17     17   85 use Carp;
  17         17  
  17         697  
20 17     17   51 use Config;
  17         136  
  17         697  
21 17     17   85 use Exporter;
  17         17  
  17         425  
22 17     17   187 use File::Spec;
  17         34  
  17         1122  
23              
24             @EXPORT = qw(&pod2usage);
25             BEGIN {
26 17   50 17   153 $Pod::Usage::Formatter ||= 'Pod::Text';
27 17         867 eval "require $Pod::Usage::Formatter";
28 17 50       662983 die $@ if $@;
29 17         37570 @ISA = ( $Pod::Usage::Formatter );
30             }
31              
32             our $MAX_HEADING_LEVEL = 3;
33              
34             ##---------------------------------------------------------------------------
35              
36             ##---------------------------------
37             ## Function definitions begin here
38             ##---------------------------------
39              
40             sub pod2usage {
41 15     15 0 36756765 local($_) = shift;
42 15         329 my %opts;
43             ## Collect arguments
44 15 100       502 if (@_ > 0) {
    100          
    50          
    50          
45             ## Too many arguments - assume that this is a hash and
46             ## the user forgot to pass a reference to it.
47 12         398 %opts = ($_, @_);
48             }
49             elsif (!defined $_) {
50 1         16 $_ = '';
51             }
52             elsif (ref $_) {
53             ## User passed a ref to a hash
54 0 0       0 %opts = %{$_} if (ref($_) eq 'HASH');
  0         0  
55             }
56             elsif (/^[-+]?\d+$/) {
57             ## User passed in the exit value to use
58 2         51 $opts{'-exitval'} = $_;
59             }
60             else {
61             ## User passed in a message to print before issuing usage.
62 0 0       0 $_ and $opts{'-message'} = $_;
63             }
64              
65             ## Need this for backward compatibility since we formerly used
66             ## options that were all uppercase words rather than ones that
67             ## looked like Unix command-line options.
68             ## to be uppercase keywords)
69             %opts = map {
70 15         352 my ($key, $val) = ($_, $opts{$_});
  38         331  
71 38         539 $key =~ s/^(?=\w)/-/;
72 38 50       399 $key =~ /^-msg/i and $key = '-message';
73 38 100       1807 $key =~ /^-exit/i and $key = '-exitval';
74 38         512 lc($key) => $val;
75             } (keys %opts);
76              
77             ## Now determine default -exitval and -verbose values to use
78 15 100 100     589 if ((! defined $opts{'-exitval'}) && (! defined $opts{'-verbose'})) {
    100          
    100          
79 1         14 $opts{'-exitval'} = 2;
80 1         13 $opts{'-verbose'} = 0;
81             }
82             elsif (! defined $opts{'-exitval'}) {
83 2 50       24 $opts{'-exitval'} = ($opts{'-verbose'} > 0) ? 1 : 2;
84             }
85             elsif (! defined $opts{'-verbose'}) {
86             $opts{'-verbose'} = (lc($opts{'-exitval'}) eq 'noexit' ||
87 2   66     84 $opts{'-exitval'} < 2);
88             }
89              
90             ## Default the output file
91             $opts{'-output'} = (lc($opts{'-exitval'}) eq 'noexit' ||
92             $opts{'-exitval'} < 2) ? \*STDOUT : \*STDERR
93 15 100 100     735 unless (defined $opts{'-output'});
    50          
94             ## Default the input file
95 15 100       261 $opts{'-input'} = $0 unless (defined $opts{'-input'});
96              
97             ## Look up input file in path if it doesn't exist.
98 15 50 33     1383 unless ((ref $opts{'-input'}) || (-e $opts{'-input'})) {
99 0         0 my $basename = $opts{'-input'};
100 0 0 0     0 my $pathsep = ($^O =~ /^(?:dos|os2|MSWin32)$/i) ? ';'
    0          
101             : (($^O eq 'MacOS' || $^O eq 'VMS') ? ',' : ':');
102 0   0     0 my $pathspec = $opts{'-pathlist'} || $ENV{PATH} || $ENV{PERL5LIB};
103              
104 0 0       0 my @paths = (ref $pathspec) ? @$pathspec : split($pathsep, $pathspec);
105 0         0 for my $dirname (@paths) {
106 0 0       0 $_ = File::Spec->catfile($dirname, $basename) if length;
107 0 0 0     0 last if (-e $_) && ($opts{'-input'} = $_);
108             }
109             }
110              
111             ## Now create a pod reader and constrain it to the desired sections.
112 15         339 my $parser = new Pod::Usage(USAGE_OPTIONS => \%opts);
113 15 100 66     287 if ($opts{'-verbose'} == 0) {
    100          
    100          
    50          
114 5         48 $parser->select('(?:SYNOPSIS|USAGE)\s*');
115             }
116             elsif ($opts{'-verbose'} == 1) {
117 4         14 my $opt_re = '(?i)' .
118             '(?:OPTIONS|ARGUMENTS)' .
119             '(?:\s*(?:AND|\/)\s*(?:OPTIONS|ARGUMENTS))?';
120 4         57 $parser->select( '(?:SYNOPSIS|USAGE)\s*', $opt_re, "DESCRIPTION/$opt_re" );
121             }
122             elsif ($opts{'-verbose'} >= 2 && $opts{'-verbose'} != 99) {
123 1         11 $parser->select('.*');
124             }
125             elsif ($opts{'-verbose'} == 99) {
126 5         14 my $sections = $opts{'-sections'};
127 5 100       62 $parser->select( (ref $sections) ? @$sections : $sections );
128 5         12 $opts{'-verbose'} = 1;
129             }
130              
131             ## Check for perldoc
132             my $progpath = $opts{'-perldoc'} ? $opts{'-perldoc'} :
133             File::Spec->catfile($Config{scriptdirexp} || $Config{scriptdir},
134 15 50 33     4346 'perldoc');
135              
136 15         208 my $version = sprintf("%vd",$^V);
137 15 50 33     917 if ($Config{versiononly} and $Config{startperl} =~ /\Q$version\E$/ ) {
138 0         0 $progpath .= $version;
139             }
140 15 50       407 $opts{'-noperldoc'} = 1 unless -e $progpath;
141              
142             ## Now translate the pod document and then exit with the desired status
143 15 50 66     345 if ( !$opts{'-noperldoc'}
      66        
      66        
144             and $opts{'-verbose'} >= 2
145             and !ref($opts{'-input'})
146             and $opts{'-output'} == \*STDOUT )
147             {
148             ## spit out the entire PODs. Might as well invoke perldoc
149 0 0       0 print { $opts{'-output'} } ($opts{'-message'}, "\n") if($opts{'-message'});
  0         0  
150 0 0 0     0 if(defined $opts{-input} && $opts{-input} =~ /^\s*(\S.*?)\s*$/) {
151             # the perldocs back to 5.005 should all have -F
152             # without -F there are warnings in -T scripts
153 0         0 my $f = $1;
154 0         0 my @perldoc_cmd = ($progpath);
155 0 0       0 if ($opts{'-perldocopt'}) {
156 0         0 $opts{'-perldocopt'} =~ s/^\s+|\s+$//g;
157 0         0 push @perldoc_cmd, split(/\s+/, $opts{'-perldocopt'});
158             }
159 0         0 push @perldoc_cmd, ('-F', $f);
160 0 0       0 unshift @perldoc_cmd, $opts{'-perlcmd'} if $opts{'-perlcmd'};
161 0         0 system(@perldoc_cmd);
162             # RT16091: fall back to more if perldoc failed
163 0 0       0 if($?) {
164             # RT131844: prefer PAGER env
165 0   0     0 my $pager = $ENV{PAGER} || $Config{pager};
166 0 0 0     0 if(defined($pager) && length($pager)) {
167 0 0       0 my $cmd = $pager . ' ' . ($^O =~ /win/i ? qq("$f") : quotemeta($f));
168 0         0 system($cmd);
169             } else {
170             # the most humble fallback; should work (at least) on *nix and Win
171 0         0 system('more', $f);
172             }
173             }
174             } else {
175 0         0 croak "Unspecified input file or insecure argument.\n";
176             }
177             }
178             else {
179 15         453 $parser->parse_from_file($opts{'-input'}, $opts{'-output'});
180             }
181              
182 15 100       3820 exit($opts{'-exitval'}) unless (lc($opts{'-exitval'}) eq 'noexit');
183             }
184              
185             ##---------------------------------------------------------------------------
186              
187             ##-------------------------------
188             ## Method definitions begin here
189             ##-------------------------------
190              
191             sub new {
192 15     15 1 144 my $this = shift;
193 15   33     259 my $class = ref($this) || $this;
194 15         171 my %params = @_;
195 15         70 my $self = {%params};
196 15         34 bless $self, $class;
197 15 50       1110 if ($self->can('initialize')) {
198 0         0 $self->initialize();
199             } else {
200             # pass through options to Pod::Text
201 15         53 my %opts;
202 15         52 for (qw(alt code indent loose margin quotes sentence stderr utf8 width)) {
203 150         258 my $val = $params{USAGE_OPTIONS}{"-$_"};
204 150 50       261 $opts{$_} = $val if defined $val;
205             }
206 15         633 $self = $self->SUPER::new(%opts);
207 15         8704 %$self = (%$self, %params);
208             }
209 15         62 return $self;
210             }
211              
212             # This subroutine was copied in whole-cloth from Pod::Select 1.60 in order to
213             # allow the ejection of Pod::Select from the core without breaking Pod::Usage.
214             # -- rjbs, 2013-03-18
215             sub _compile_section_spec {
216 25     25   65 my ($section_spec) = @_;
217 25         54 my (@regexs, $negated);
218              
219             ## Compile the spec into a list of regexs
220 25         48 local $_ = $section_spec;
221 25         158 s{\\\\}{\001}g; ## handle escaped backward slashes
222 25         79 s{\\/}{\002}g; ## handle escaped forward slashes
223              
224             ## Parse the regexs for the heading titles
225 25         196 @regexs = split(/\//, $_, $MAX_HEADING_LEVEL);
226              
227             ## Set default regex for ommitted levels
228 25         122 for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
229 75 100 66     443 $regexs[$i] = '.*' unless ((defined $regexs[$i])
230             && (length $regexs[$i]));
231             }
232             ## Modify the regexs as needed and validate their syntax
233 25         57 my $bad_regexs = 0;
234 25         58 for (@regexs) {
235 75 50       180 $_ .= '.+' if ($_ eq '!');
236 75         106 s{\001}{\\\\}g; ## restore escaped backward slashes
237 75         155 s{\002}{\\/}g; ## restore escaped forward slashes
238 75         140 $negated = s/^\!//; ## check for negation
239 75         6948 eval "m{$_}"; ## check regex syntax
240 75 50       243 if ($@) {
241 0         0 ++$bad_regexs;
242 0         0 carp qq{Bad regular expression /$_/ in "$section_spec": $@\n};
243             }
244             else {
245             ## Add the forward and rear anchors (and put the negator back)
246 75 50       266 $_ = '^' . $_ unless (/^\^/);
247 75 50       194 $_ = $_ . '$' unless (/\$$/);
248 75 100       202 $_ = '!' . $_ if ($negated);
249             }
250             }
251 25 50       159 return (! $bad_regexs) ? [ @regexs ] : undef;
252             }
253              
254             sub select {
255 15     15 0 144 my ($self, @sections) = @_;
256 15 50       608 if ($ISA[0]->can('select')) {
257 0         0 $self->SUPER::select(@sections);
258             } else {
259             # we're using Pod::Simple - need to mimic the behavior of Pod::Select
260 15 50       85 my $add = ($sections[0] eq '+') ? shift(@sections) : '';
261             ## Reset the set of sections to use
262 15 50       61 unless (@sections) {
263 0 0       0 delete $self->{USAGE_SELECT} unless ($add);
264 0         0 return;
265             }
266             $self->{USAGE_SELECT} = []
267 15 50 33     107 unless ($add && $self->{USAGE_SELECT});
268 15         37 my $sref = $self->{USAGE_SELECT};
269             ## Compile each spec
270 15         80 for my $spec (@sections) {
271 25         88 my $cs = _compile_section_spec($spec);
272 25 50       54 if ( defined $cs ) {
273             ## Store them in our sections array
274 25         96 push(@$sref, $cs);
275             } else {
276 0         0 carp qq{Ignoring section spec "$spec"!\n};
277             }
278             }
279             }
280             }
281              
282             # Override Pod::Text->seq_i to return just "arg", not "*arg*".
283 0     0 0 0 sub seq_i { return $_[1] }
284             # Override Pod::Text->cmd_i to return just "arg", not "*arg*".
285             # newer version based on Pod::Simple
286             sub cmd_i {
287 28     28 0 469 my $self = shift;
288             # RT121489: highlighting should be there with Termcap
289 28 50       155 return $self->SUPER::cmd_i(@_) if $self->isa('Pod::Text::Termcap');
290 28         62 return $_[1];
291             }
292              
293             # This overrides the Pod::Text method to do something very akin to what
294             # Pod::Select did as well as the work done below by preprocess_paragraph.
295             # Note that the below is very, very specific to Pod::Text and Pod::Simple.
296             sub _handle_element_end {
297 548     548   152094 my ($self, $element) = @_;
298 548 100 66     1779 if ($element eq 'head1') {
    100          
299 66         286 $self->{USAGE_HEADINGS} = [ $$self{PENDING}[-1][1] ];
300 66 100       203 if ($self->{USAGE_OPTIONS}->{-verbose} < 2) {
301 62         266 $$self{PENDING}[-1][1] =~ s/^\s*SYNOPSIS\s*$/USAGE/;
302             }
303             } elsif ($element =~ /^head(\d+)$/ && $1) { # avoid 0
304 24         67 my $idx = $1 - 1;
305 24 50       64 $self->{USAGE_HEADINGS} = [] unless($self->{USAGE_HEADINGS});
306 24         46 $self->{USAGE_HEADINGS}->[$idx] = $$self{PENDING}[-1][1];
307             # we have to get rid of the lower headings
308 24         29 splice(@{$self->{USAGE_HEADINGS}},$idx+1);
  24         51  
309             }
310 548 100       1145 if ($element =~ /^head\d+$/) {
311 90         171 $$self{USAGE_SKIPPING} = 1;
312 90 50 33     314 if (!$$self{USAGE_SELECT} || !@{ $$self{USAGE_SELECT} }) {
313 0         0 $$self{USAGE_SKIPPING} = 0;
314             } else {
315 90         115 my @headings = @{$$self{USAGE_HEADINGS}};
  90         197  
316 90         114 for my $section_spec ( @{$$self{USAGE_SELECT}} ) {
  90         183  
317 133         158 my $match = 1;
318 133         278 for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
319 192 100       373 $headings[$i] = '' unless defined $headings[$i];
320 192         256 my $regex = $section_spec->[$i];
321 192         282 my $negated = ($regex =~ s/^\!//);
322 192 100       2763 $match &= ($negated ? ($headings[$i] !~ /${regex}/)
323             : ($headings[$i] =~ /${regex}/));
324 192 100       561 last unless ($match);
325             } # end heading levels
326 133 100       295 if ($match) {
327 27         47 $$self{USAGE_SKIPPING} = 0;
328 27         54 last;
329             }
330             } # end sections
331             }
332              
333             # Try to do some lowercasing instead of all-caps in headings, and use
334             # a colon to end all headings.
335 90 100       217 if($self->{USAGE_OPTIONS}->{-verbose} < 2) {
336 86         172 local $_ = $$self{PENDING}[-1][1];
337 86 100       330 s{([A-Z])([A-Z]+)}{((length($2) > 2) ? $1 : lc($1)) . lc($2)}ge;
  59         332  
338 86 50       486 s/\s*$/:/ unless (/:\s*$/);
339 86         151 $_ .= "\n";
340 86         220 $$self{PENDING}[-1][1] = $_;
341             }
342             }
343 548 100 100     2370 if ($$self{USAGE_SKIPPING} && $element !~ m/^over-|^[BCFILSZ]$/) {
344 234         323 pop @{ $$self{PENDING} };
  234         504  
345             } else {
346 314         874 $self->SUPER::_handle_element_end($element);
347             }
348             }
349              
350             # required for Pod::Simple API
351             sub start_document {
352 15     15 0 70918 my $self = shift;
353 15         416 $self->SUPER::start_document();
354 15 100       881 my $msg = $self->{USAGE_OPTIONS}->{-message} or return 1;
355 1         10 my $out_fh = $self->output_fh();
356 1         46 print $out_fh "$msg\n";
357             }
358              
359             # required for old Pod::Parser API
360             sub begin_pod {
361 0     0 0   my $self = shift;
362 0           $self->SUPER::begin_pod(); ## Have to call superclass
363 0 0         my $msg = $self->{USAGE_OPTIONS}->{-message} or return 1;
364 0           my $out_fh = $self->output_handle();
365 0           print $out_fh "$msg\n";
366             }
367              
368             sub preprocess_paragraph {
369 0     0 0   my $self = shift;
370 0           local $_ = shift;
371 0           my $line = shift;
372             ## See if this is a heading and we aren't printing the entire manpage.
373 0 0 0       if (($self->{USAGE_OPTIONS}->{-verbose} < 2) && /^=head/) {
374             ## Change the title of the SYNOPSIS section to USAGE
375 0           s/^=head1\s+SYNOPSIS\s*$/=head1 USAGE/;
376             ## Try to do some lowercasing instead of all-caps in headings
377 0 0         s{([A-Z])([A-Z]+)}{((length($2) > 2) ? $1 : lc($1)) . lc($2)}ge;
  0            
378             ## Use a colon to end all headings
379 0 0         s/\s*$/:/ unless (/:\s*$/);
380 0           $_ .= "\n";
381             }
382 0           return $self->SUPER::preprocess_paragraph($_);
383             }
384              
385             1; # keep require happy
386              
387             __END__