File Coverage

blib/lib/Pod/Usage.pm
Criterion Covered Total %
statement 170 197 86.2
branch 105 148 70.9
condition 35 71 49.3
subroutine 13 16 81.2
pod 1 8 12.5
total 324 440 73.6


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              
13 22     22   1414930 use strict;
  22         286  
  22         770  
14             require 5.006; ## requires this Perl version or later
15              
16 22     22   110 use Carp;
  22         22  
  22         2068  
17 22     22   132 use Config;
  22         22  
  22         968  
18 22     22   110 use Exporter;
  22         44  
  22         638  
19 22     22   88 use File::Spec;
  22         44  
  22         2376  
20              
21             our $VERSION = '2.03';
22              
23             our @EXPORT = qw(&pod2usage);
24             our @ISA;
25             BEGIN {
26 22   50 22   198 $Pod::Usage::Formatter ||= 'Pod::Text';
27 22         1166 eval "require $Pod::Usage::Formatter";
28 22 50       1650858 die $@ if $@;
29 22         52580 @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 20     20 0 79142943 local($_) = shift;
42 20         520 my %opts;
43             ## Collect arguments
44 20 100       890 if (@_ > 0) {
    100          
    100          
    100          
45             ## Too many arguments - assume that this is a hash and
46             ## the user forgot to pass a reference to it.
47 13         609 %opts = ($_, @_);
48             }
49             elsif (!defined $_) {
50 1         16 $_ = '';
51             }
52             elsif (ref $_) {
53             ## User passed a ref to a hash
54 3 50       76 %opts = %{$_} if (ref($_) eq 'HASH');
  3         57  
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 1 50       34 $_ 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 20         540 my ($key, $val) = ($_, $opts{$_});
  54         558  
71 54         966 $key =~ s/^(?=\w)/-/;
72 54 50       606 $key =~ /^-msg/i and $key = '-message';
73 54 100       561 $key =~ /^-exit/i and $key = '-exitval';
74 54         1033 lc($key) => $val;
75             } (keys %opts);
76              
77             ## Now determine default -exitval and -verbose values to use
78 20 100 100     2633 if ((! defined $opts{'-exitval'}) && (! defined $opts{'-verbose'})) {
    100          
    100          
79 2         52 $opts{'-exitval'} = 2;
80 2         40 $opts{'-verbose'} = 0;
81             }
82             elsif (! defined $opts{'-exitval'}) {
83 3 50       148 $opts{'-exitval'} = ($opts{'-verbose'} > 0) ? 1 : 2;
84             }
85             elsif (! defined $opts{'-verbose'}) {
86             $opts{'-verbose'} = (lc($opts{'-exitval'}) eq 'noexit' ||
87 2   66     184 $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 20 100 100     1763 unless (defined $opts{'-output'});
    100          
94             ## Default the input file
95 20 100       309 $opts{'-input'} = $0 unless (defined $opts{'-input'});
96              
97             ## Look up input file in path if it doesn't exist.
98 20 100 66     1163 unless ((ref $opts{'-input'}) || (-e $opts{'-input'})) {
99 1         15 my $basename = $opts{'-input'};
100 1 50 33     55 my $pathsep = ($^O =~ /^(?:dos|os2|MSWin32)$/i) ? ';'
    50          
101             : (($^O eq 'MacOS' || $^O eq 'VMS') ? ',' : ':');
102 1   0     19 my $pathspec = $opts{'-pathlist'} || $ENV{PATH} || $ENV{PERL5LIB};
103              
104 1 50       18 my @paths = (ref $pathspec) ? @$pathspec : split($pathsep, $pathspec);
105 1         12 for my $dirname (@paths) {
106 1 50       56 $_ = length($dirname) ? File::Spec->catfile($dirname, $basename) : $basename;
107 1 50 33     40 last if (-e $_) && ($opts{'-input'} = $_);
108             }
109             }
110              
111             ## Now create a pod reader and constrain it to the desired sections.
112 20         1188 my $parser = Pod::Usage->new(USAGE_OPTIONS => \%opts);
113 20 100 66     456 if ($opts{'-verbose'} == 0) {
    100          
    100          
    50          
114 7         119 $parser->select('(?:SYNOPSIS|USAGE)\s*');
115             }
116             elsif ($opts{'-verbose'} == 1) {
117 4         9 my $opt_re = '(?i)' .
118             '(?:OPTIONS|ARGUMENTS)' .
119             '(?:\s*(?:AND|\/)\s*(?:OPTIONS|ARGUMENTS))?';
120 4         94 $parser->select( '(?:SYNOPSIS|USAGE)\s*', $opt_re, "DESCRIPTION/$opt_re" );
121             }
122             elsif ($opts{'-verbose'} >= 2 && $opts{'-verbose'} != 99) {
123 3         50 $parser->select('.*');
124             }
125             elsif ($opts{'-verbose'} == 99) {
126 6         60 my $sections = $opts{'-sections'};
127 6 100       144 $parser->select( (ref $sections) ? @$sections : $sections );
128 6         25 $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 20 50 33     6223 'perldoc');
135              
136 20         368 my $version = sprintf("%vd",$^V);
137 20 50 33     1185 if ($Config{versiononly} and $Config{startperl} =~ /\Q$version\E$/ ) {
138 0         0 $progpath .= $version;
139             }
140 20 50       739 $opts{'-noperldoc'} = 1 unless -e $progpath;
141              
142             ## Now translate the pod document and then exit with the desired status
143 20 100 66     683 if ( !$opts{'-noperldoc'}
      66        
      100        
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 2 100       9 print { $opts{'-output'} } ($opts{'-message'}, "\n") if($opts{'-message'});
  1         20  
150 2 50 33     38 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 2         7 my $f = $1;
154 2         6 my @perldoc_cmd = ($progpath);
155 2 100       10 if ($opts{'-perldocopt'}) {
156 1         4 $opts{'-perldocopt'} =~ s/^\s+|\s+$//g;
157 1         4 push @perldoc_cmd, split(/\s+/, $opts{'-perldocopt'});
158             }
159 2         6 push @perldoc_cmd, ('-F', $f);
160 2 50       7 unshift @perldoc_cmd, $opts{'-perlcmd'} if $opts{'-perlcmd'};
161 2         299492 system(@perldoc_cmd);
162             # RT16091: fall back to more if perldoc failed
163 2 50       191 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 18         519 $parser->parse_from_file($opts{'-input'}, $opts{'-output'});
180             }
181              
182 19 100       6081 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 20     20 1 211 my $this = shift;
193 20   33     560 my $class = ref($this) || $this;
194 20         292 my %params = @_;
195 20         262 my $self = {%params};
196 20         416 bless $self, $class;
197 20 100       2598 if ($self->can('initialize')) {
198 2         25 $self->initialize();
199             } else {
200             # pass through options to Pod::Text
201 18         88 my %opts;
202 18         86 for (qw(alt code indent loose margin quotes sentence stderr utf8 width)) {
203 180         565 my $val = $params{USAGE_OPTIONS}{"-$_"};
204 180 50       533 $opts{$_} = $val if defined $val;
205             }
206 18         955 $self = $self->SUPER::new(%opts);
207 18         13969 %$self = (%$self, %params);
208             }
209 20         120 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 30     30   89 my ($section_spec) = @_;
217 30         59 my (@regexs, $negated);
218              
219             ## Compile the spec into a list of regexs
220 30         71 local $_ = $section_spec;
221 30         382 s{\\\\}{\001}g; ## handle escaped backward slashes
222 30         158 s{\\/}{\002}g; ## handle escaped forward slashes
223              
224             ## Parse the regexs for the heading titles
225 30         335 @regexs = split(/\//, $_, $MAX_HEADING_LEVEL);
226              
227             ## Set default regex for ommitted levels
228 30         175 for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
229 90 100 66     832 $regexs[$i] = '.*' unless ((defined $regexs[$i])
230             && (length $regexs[$i]));
231             }
232             ## Modify the regexs as needed and validate their syntax
233 30         88 my $bad_regexs = 0;
234 30         80 for (@regexs) {
235 90 50       195 $_ .= '.+' if ($_ eq '!');
236 90         187 s{\001}{\\\\}g; ## restore escaped backward slashes
237 90         376 s{\002}{\\/}g; ## restore escaped forward slashes
238 90         250 $negated = s/^\!//; ## check for negation
239 90         10543 eval "m{$_}"; ## check regex syntax
240 90 100       384 if ($@) {
241 1         3 ++$bad_regexs;
242 1         667 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 89 50       405 $_ = '^' . $_ unless (/^\^/);
247 89 50       541 $_ = $_ . '$' unless (/\$$/);
248 89 100       287 $_ = '!' . $_ if ($negated);
249             }
250             }
251 30 100       246 return (! $bad_regexs) ? [ @regexs ] : undef;
252             }
253              
254             sub select {
255 20     20 0 143 my ($self, @sections) = @_;
256 20 50       799 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 20 50       310 my $add = ($sections[0] eq '+') ? shift(@sections) : '';
261             ## Reset the set of sections to use
262 20 50       384 unless (@sections) {
263 0 0       0 delete $self->{USAGE_SELECT} unless ($add);
264 0         0 return;
265             }
266             $self->{USAGE_SELECT} = []
267 20 50 33     200 unless ($add && $self->{USAGE_SELECT});
268 20         181 my $sref = $self->{USAGE_SELECT};
269             ## Compile each spec
270 20         106 for my $spec (@sections) {
271 30         295 my $cs = _compile_section_spec($spec);
272 30 100       91 if ( defined $cs ) {
273             ## Store them in our sections array
274 29         114 push(@$sref, $cs);
275             } else {
276 1         148 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 30     30 0 468 my $self = shift;
288             # RT121489: highlighting should be there with Termcap
289 30 50       175 return $self->SUPER::cmd_i(@_) if $self->isa('Pod::Text::Termcap');
290 30         63 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 610     610   165065 my ($self, $element) = @_;
298 610 100 66     1786 if ($element eq 'head1') {
    100          
299 75         358 $self->{USAGE_HEADINGS} = [ $$self{PENDING}[-1][1] ];
300 75 100       249 if ($self->{USAGE_OPTIONS}->{-verbose} < 2) {
301 71         205 $$self{PENDING}[-1][1] =~ s/^\s*SYNOPSIS\s*$/USAGE/;
302             }
303             } elsif ($element =~ /^head(\d+)$/ && $1) { # avoid 0
304 29         69 my $idx = $1 - 1;
305 29 50       72 $self->{USAGE_HEADINGS} = [] unless($self->{USAGE_HEADINGS});
306 29         55 $self->{USAGE_HEADINGS}->[$idx] = $$self{PENDING}[-1][1];
307             # we have to get rid of the lower headings
308 29         35 splice(@{$self->{USAGE_HEADINGS}},$idx+1);
  29         65  
309             }
310 610 100       1208 if ($element =~ /^head\d+$/) {
311 104         244 $$self{USAGE_SKIPPING} = 1;
312 104 50 33     504 if (!$$self{USAGE_SELECT} || !@{ $$self{USAGE_SELECT} }) {
313 0         0 $$self{USAGE_SKIPPING} = 0;
314             } else {
315 104         140 my @headings = @{$$self{USAGE_HEADINGS}};
  104         224  
316 104         139 for my $section_spec ( @{$$self{USAGE_SELECT}} ) {
  104         355  
317 147         227 my $match = 1;
318 147         346 for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
319 208 100       475 $headings[$i] = '' unless defined $headings[$i];
320 208         309 my $regex = $section_spec->[$i];
321 208         330 my $negated = ($regex =~ s/^\!//);
322 208 100       3183 $match &= ($negated ? ($headings[$i] !~ /${regex}/)
323             : ($headings[$i] =~ /${regex}/));
324 208 100       635 last unless ($match);
325             } # end heading levels
326 147 100       439 if ($match) {
327 28         60 $$self{USAGE_SKIPPING} = 0;
328 28         79 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 104 100       290 if($self->{USAGE_OPTIONS}->{-verbose} < 2) {
336 100         180 local $_ = $$self{PENDING}[-1][1];
337 100 100       516 s{([A-Z])([A-Z]+)}{((length($2) > 2) ? $1 : lc($1)) . lc($2)}ge;
  67         382  
338 100 50       616 s/\s*$/:/ unless (/:\s*$/);
339 100         182 $_ .= "\n";
340 100         209 $$self{PENDING}[-1][1] = $_;
341             }
342             }
343 610 100 100     2287 if ($$self{USAGE_SKIPPING} && $element !~ m/^over-|^[BCFILSZ]$/) {
344 272         416 pop @{ $$self{PENDING} };
  272         538  
345             } else {
346 338         953 $self->SUPER::_handle_element_end($element);
347             }
348             }
349              
350             # required for Pod::Simple API
351             sub start_document {
352 17     17 0 100986 my $self = shift;
353 17         567 $self->SUPER::start_document();
354 17 100       1409 my $msg = $self->{USAGE_OPTIONS}->{-message} or return 1;
355 2         12 my $out_fh = $self->output_fh();
356 2         182 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__