Usage.pm 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  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. # This file is part of "PodParser". PodParser is free software;
  6. # you can redistribute it and/or modify it under the same terms
  7. # as Perl itself.
  8. #############################################################################
  9. package Pod::Usage;
  10. use strict;
  11. use vars qw($VERSION @ISA @EXPORT);
  12. $VERSION = '1.64'; ## Current version of this package
  13. require 5.006; ## requires this Perl version or later
  14. #use diagnostics;
  15. use Carp;
  16. use Config;
  17. use Exporter;
  18. use File::Spec;
  19. @EXPORT = qw(&pod2usage);
  20. BEGIN {
  21. $Pod::Usage::Formatter ||= 'Pod::Text';
  22. eval "require $Pod::Usage::Formatter";
  23. die $@ if $@;
  24. @ISA = ( $Pod::Usage::Formatter );
  25. }
  26. our $MAX_HEADING_LEVEL = 3;
  27. ##---------------------------------------------------------------------------
  28. ##---------------------------------
  29. ## Function definitions begin here
  30. ##---------------------------------
  31. sub pod2usage {
  32. local($_) = shift;
  33. my %opts;
  34. ## Collect arguments
  35. if (@_ > 0) {
  36. ## Too many arguments - assume that this is a hash and
  37. ## the user forgot to pass a reference to it.
  38. %opts = ($_, @_);
  39. }
  40. elsif (!defined $_) {
  41. $_ = '';
  42. }
  43. elsif (ref $_) {
  44. ## User passed a ref to a hash
  45. %opts = %{$_} if (ref($_) eq 'HASH');
  46. }
  47. elsif (/^[-+]?\d+$/) {
  48. ## User passed in the exit value to use
  49. $opts{'-exitval'} = $_;
  50. }
  51. else {
  52. ## User passed in a message to print before issuing usage.
  53. $_ and $opts{'-message'} = $_;
  54. }
  55. ## Need this for backward compatibility since we formerly used
  56. ## options that were all uppercase words rather than ones that
  57. ## looked like Unix command-line options.
  58. ## to be uppercase keywords)
  59. %opts = map {
  60. my ($key, $val) = ($_, $opts{$_});
  61. $key =~ s/^(?=\w)/-/;
  62. $key =~ /^-msg/i and $key = '-message';
  63. $key =~ /^-exit/i and $key = '-exitval';
  64. lc($key) => $val;
  65. } (keys %opts);
  66. ## Now determine default -exitval and -verbose values to use
  67. if ((! defined $opts{'-exitval'}) && (! defined $opts{'-verbose'})) {
  68. $opts{'-exitval'} = 2;
  69. $opts{'-verbose'} = 0;
  70. }
  71. elsif (! defined $opts{'-exitval'}) {
  72. $opts{'-exitval'} = ($opts{'-verbose'} > 0) ? 1 : 2;
  73. }
  74. elsif (! defined $opts{'-verbose'}) {
  75. $opts{'-verbose'} = (lc($opts{'-exitval'}) eq 'noexit' ||
  76. $opts{'-exitval'} < 2);
  77. }
  78. ## Default the output file
  79. $opts{'-output'} = (lc($opts{'-exitval'}) eq 'noexit' ||
  80. $opts{'-exitval'} < 2) ? \*STDOUT : \*STDERR
  81. unless (defined $opts{'-output'});
  82. ## Default the input file
  83. $opts{'-input'} = $0 unless (defined $opts{'-input'});
  84. ## Look up input file in path if it doesn't exist.
  85. unless ((ref $opts{'-input'}) || (-e $opts{'-input'})) {
  86. my $basename = $opts{'-input'};
  87. my $pathsep = ($^O =~ /^(?:dos|os2|MSWin32)$/i) ? ';'
  88. : (($^O eq 'MacOS' || $^O eq 'VMS') ? ',' : ':');
  89. my $pathspec = $opts{'-pathlist'} || $ENV{PATH} || $ENV{PERL5LIB};
  90. my @paths = (ref $pathspec) ? @$pathspec : split($pathsep, $pathspec);
  91. for my $dirname (@paths) {
  92. $_ = File::Spec->catfile($dirname, $basename) if length;
  93. last if (-e $_) && ($opts{'-input'} = $_);
  94. }
  95. }
  96. ## Now create a pod reader and constrain it to the desired sections.
  97. my $parser = new Pod::Usage(USAGE_OPTIONS => \%opts);
  98. if ($opts{'-verbose'} == 0) {
  99. $parser->select('(?:SYNOPSIS|USAGE)\s*');
  100. }
  101. elsif ($opts{'-verbose'} == 1) {
  102. my $opt_re = '(?i)' .
  103. '(?:OPTIONS|ARGUMENTS)' .
  104. '(?:\s*(?:AND|\/)\s*(?:OPTIONS|ARGUMENTS))?';
  105. $parser->select( '(?:SYNOPSIS|USAGE)\s*', $opt_re, "DESCRIPTION/$opt_re" );
  106. }
  107. elsif ($opts{'-verbose'} >= 2 && $opts{'-verbose'} != 99) {
  108. $parser->select('.*');
  109. }
  110. elsif ($opts{'-verbose'} == 99) {
  111. my $sections = $opts{'-sections'};
  112. $parser->select( (ref $sections) ? @$sections : $sections );
  113. $opts{'-verbose'} = 1;
  114. }
  115. ## Check for perldoc
  116. my $progpath = File::Spec->catfile($Config{scriptdirexp}
  117. || $Config{scriptdir}, 'perldoc');
  118. my $version = sprintf("%vd",$^V);
  119. if ($Config{versiononly} and $Config{startperl} =~ /\Q$version\E$/ ) {
  120. $progpath .= $version;
  121. }
  122. $opts{'-noperldoc'} = 1 unless -e $progpath;
  123. ## Now translate the pod document and then exit with the desired status
  124. if ( !$opts{'-noperldoc'}
  125. and $opts{'-verbose'} >= 2
  126. and !ref($opts{'-input'})
  127. and $opts{'-output'} == \*STDOUT )
  128. {
  129. ## spit out the entire PODs. Might as well invoke perldoc
  130. print { $opts{'-output'} } ($opts{'-message'}, "\n") if($opts{'-message'});
  131. if(defined $opts{-input} && $opts{-input} =~ /^\s*(\S.*?)\s*$/) {
  132. # the perldocs back to 5.005 should all have -F
  133. # without -F there are warnings in -T scripts
  134. system($progpath, '-F', $1);
  135. if($?) {
  136. # RT16091: fall back to more if perldoc failed
  137. system(($Config{pager} || $ENV{PAGER} || '/bin/more'), $1);
  138. }
  139. } else {
  140. croak "Unspecified input file or insecure argument.\n";
  141. }
  142. }
  143. else {
  144. $parser->parse_from_file($opts{'-input'}, $opts{'-output'});
  145. }
  146. exit($opts{'-exitval'}) unless (lc($opts{'-exitval'}) eq 'noexit');
  147. }
  148. ##---------------------------------------------------------------------------
  149. ##-------------------------------
  150. ## Method definitions begin here
  151. ##-------------------------------
  152. sub new {
  153. my $this = shift;
  154. my $class = ref($this) || $this;
  155. my %params = @_;
  156. my $self = {%params};
  157. bless $self, $class;
  158. if ($self->can('initialize')) {
  159. $self->initialize();
  160. } else {
  161. # pass through options to Pod::Text
  162. my %opts;
  163. for (qw(alt code indent loose margin quotes sentence stderr utf8 width)) {
  164. my $val = $params{USAGE_OPTIONS}{"-$_"};
  165. $opts{$_} = $val if defined $val;
  166. }
  167. $self = $self->SUPER::new(%opts);
  168. %$self = (%$self, %params);
  169. }
  170. return $self;
  171. }
  172. # This subroutine was copied in whole-cloth from Pod::Select 1.60 in order to
  173. # allow the ejection of Pod::Select from the core without breaking Pod::Usage.
  174. # -- rjbs, 2013-03-18
  175. sub _compile_section_spec {
  176. my ($section_spec) = @_;
  177. my (@regexs, $negated);
  178. ## Compile the spec into a list of regexs
  179. local $_ = $section_spec;
  180. s{\\\\}{\001}g; ## handle escaped backward slashes
  181. s{\\/}{\002}g; ## handle escaped forward slashes
  182. ## Parse the regexs for the heading titles
  183. @regexs = split(/\//, $_, $MAX_HEADING_LEVEL);
  184. ## Set default regex for ommitted levels
  185. for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  186. $regexs[$i] = '.*' unless ((defined $regexs[$i])
  187. && (length $regexs[$i]));
  188. }
  189. ## Modify the regexs as needed and validate their syntax
  190. my $bad_regexs = 0;
  191. for (@regexs) {
  192. $_ .= '.+' if ($_ eq '!');
  193. s{\001}{\\\\}g; ## restore escaped backward slashes
  194. s{\002}{\\/}g; ## restore escaped forward slashes
  195. $negated = s/^\!//; ## check for negation
  196. eval "m{$_}"; ## check regex syntax
  197. if ($@) {
  198. ++$bad_regexs;
  199. carp qq{Bad regular expression /$_/ in "$section_spec": $@\n};
  200. }
  201. else {
  202. ## Add the forward and rear anchors (and put the negator back)
  203. $_ = '^' . $_ unless (/^\^/);
  204. $_ = $_ . '$' unless (/\$$/);
  205. $_ = '!' . $_ if ($negated);
  206. }
  207. }
  208. return (! $bad_regexs) ? [ @regexs ] : undef;
  209. }
  210. sub select {
  211. my ($self, @sections) = @_;
  212. if ($ISA[0]->can('select')) {
  213. $self->SUPER::select(@sections);
  214. } else {
  215. # we're using Pod::Simple - need to mimic the behavior of Pod::Select
  216. my $add = ($sections[0] eq '+') ? shift(@sections) : '';
  217. ## Reset the set of sections to use
  218. unless (@sections) {
  219. delete $self->{USAGE_SELECT} unless ($add);
  220. return;
  221. }
  222. $self->{USAGE_SELECT} = []
  223. unless ($add && $self->{USAGE_SELECT});
  224. my $sref = $self->{USAGE_SELECT};
  225. ## Compile each spec
  226. for my $spec (@sections) {
  227. my $cs = _compile_section_spec($spec);
  228. if ( defined $cs ) {
  229. ## Store them in our sections array
  230. push(@$sref, $cs);
  231. } else {
  232. carp qq{Ignoring section spec "$spec"!\n};
  233. }
  234. }
  235. }
  236. }
  237. # Override Pod::Text->seq_i to return just "arg", not "*arg*".
  238. sub seq_i { return $_[1] }
  239. # This overrides the Pod::Text method to do something very akin to what
  240. # Pod::Select did as well as the work done below by preprocess_paragraph.
  241. # Note that the below is very, very specific to Pod::Text.
  242. sub _handle_element_end {
  243. my ($self, $element) = @_;
  244. if ($element eq 'head1') {
  245. $self->{USAGE_HEADINGS} = [ $$self{PENDING}[-1][1] ];
  246. if ($self->{USAGE_OPTIONS}->{-verbose} < 2) {
  247. $$self{PENDING}[-1][1] =~ s/^\s*SYNOPSIS\s*$/USAGE/;
  248. }
  249. } elsif ($element =~ /^head(\d+)$/ && $1) { # avoid 0
  250. my $idx = $1 - 1;
  251. $self->{USAGE_HEADINGS} = [] unless($self->{USAGE_HEADINGS});
  252. $self->{USAGE_HEADINGS}->[$idx] = $$self{PENDING}[-1][1];
  253. }
  254. if ($element =~ /^head\d+$/) {
  255. $$self{USAGE_SKIPPING} = 1;
  256. if (!$$self{USAGE_SELECT} || !@{ $$self{USAGE_SELECT} }) {
  257. $$self{USAGE_SKIPPING} = 0;
  258. } else {
  259. my @headings = @{$$self{USAGE_HEADINGS}};
  260. for my $section_spec ( @{$$self{USAGE_SELECT}} ) {
  261. my $match = 1;
  262. for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  263. $headings[$i] = '' unless defined $headings[$i];
  264. my $regex = $section_spec->[$i];
  265. my $negated = ($regex =~ s/^\!//);
  266. $match &= ($negated ? ($headings[$i] !~ /${regex}/)
  267. : ($headings[$i] =~ /${regex}/));
  268. last unless ($match);
  269. } # end heading levels
  270. if ($match) {
  271. $$self{USAGE_SKIPPING} = 0;
  272. last;
  273. }
  274. } # end sections
  275. }
  276. # Try to do some lowercasing instead of all-caps in headings, and use
  277. # a colon to end all headings.
  278. if($self->{USAGE_OPTIONS}->{-verbose} < 2) {
  279. local $_ = $$self{PENDING}[-1][1];
  280. s{([A-Z])([A-Z]+)}{((length($2) > 2) ? $1 : lc($1)) . lc($2)}ge;
  281. s/\s*$/:/ unless (/:\s*$/);
  282. $_ .= "\n";
  283. $$self{PENDING}[-1][1] = $_;
  284. }
  285. }
  286. if ($$self{USAGE_SKIPPING} && $element !~ m/^over-/) {
  287. pop @{ $$self{PENDING} };
  288. } else {
  289. $self->SUPER::_handle_element_end($element);
  290. }
  291. }
  292. # required for Pod::Simple API
  293. sub start_document {
  294. my $self = shift;
  295. $self->SUPER::start_document();
  296. my $msg = $self->{USAGE_OPTIONS}->{-message} or return 1;
  297. my $out_fh = $self->output_fh();
  298. print $out_fh "$msg\n";
  299. }
  300. # required for old Pod::Parser API
  301. sub begin_pod {
  302. my $self = shift;
  303. $self->SUPER::begin_pod(); ## Have to call superclass
  304. my $msg = $self->{USAGE_OPTIONS}->{-message} or return 1;
  305. my $out_fh = $self->output_handle();
  306. print $out_fh "$msg\n";
  307. }
  308. sub preprocess_paragraph {
  309. my $self = shift;
  310. local $_ = shift;
  311. my $line = shift;
  312. ## See if this is a heading and we aren't printing the entire manpage.
  313. if (($self->{USAGE_OPTIONS}->{-verbose} < 2) && /^=head/) {
  314. ## Change the title of the SYNOPSIS section to USAGE
  315. s/^=head1\s+SYNOPSIS\s*$/=head1 USAGE/;
  316. ## Try to do some lowercasing instead of all-caps in headings
  317. s{([A-Z])([A-Z]+)}{((length($2) > 2) ? $1 : lc($1)) . lc($2)}ge;
  318. ## Use a colon to end all headings
  319. s/\s*$/:/ unless (/:\s*$/);
  320. $_ .= "\n";
  321. }
  322. return $self->SUPER::preprocess_paragraph($_);
  323. }
  324. 1; # keep require happy
  325. __END__
  326. =head1 NAME
  327. Pod::Usage - print a usage message from embedded pod documentation
  328. =head1 SYNOPSIS
  329. use Pod::Usage
  330. my $message_text = "This text precedes the usage message.";
  331. my $exit_status = 2; ## The exit status to use
  332. my $verbose_level = 0; ## The verbose level to use
  333. my $filehandle = \*STDERR; ## The filehandle to write to
  334. pod2usage($message_text);
  335. pod2usage($exit_status);
  336. pod2usage( { -message => $message_text ,
  337. -exitval => $exit_status ,
  338. -verbose => $verbose_level,
  339. -output => $filehandle } );
  340. pod2usage( -msg => $message_text ,
  341. -exitval => $exit_status ,
  342. -verbose => $verbose_level,
  343. -output => $filehandle );
  344. pod2usage( -verbose => 2,
  345. -noperldoc => 1 )
  346. =head1 ARGUMENTS
  347. B<pod2usage> should be given either a single argument, or a list of
  348. arguments corresponding to an associative array (a "hash"). When a single
  349. argument is given, it should correspond to exactly one of the following:
  350. =over 4
  351. =item *
  352. A string containing the text of a message to print I<before> printing
  353. the usage message
  354. =item *
  355. A numeric value corresponding to the desired exit status
  356. =item *
  357. A reference to a hash
  358. =back
  359. If more than one argument is given then the entire argument list is
  360. assumed to be a hash. If a hash is supplied (either as a reference or
  361. as a list) it should contain one or more elements with the following
  362. keys:
  363. =over 4
  364. =item C<-message>
  365. =item C<-msg>
  366. The text of a message to print immediately prior to printing the
  367. program's usage message.
  368. =item C<-exitval>
  369. The desired exit status to pass to the B<exit()> function.
  370. This should be an integer, or else the string "NOEXIT" to
  371. indicate that control should simply be returned without
  372. terminating the invoking process.
  373. =item C<-verbose>
  374. The desired level of "verboseness" to use when printing the usage
  375. message. If the corresponding value is 0, then only the "SYNOPSIS"
  376. section of the pod documentation is printed. If the corresponding value
  377. is 1, then the "SYNOPSIS" section, along with any section entitled
  378. "OPTIONS", "ARGUMENTS", or "OPTIONS AND ARGUMENTS" is printed. If the
  379. corresponding value is 2 or more then the entire manpage is printed.
  380. The special verbosity level 99 requires to also specify the -sections
  381. parameter; then these sections are extracted and printed.
  382. =item C<-sections>
  383. A string representing a selection list for sections to be printed
  384. when -verbose is set to 99, e.g. C<"NAME|SYNOPSIS|DESCRIPTION|VERSION">.
  385. Alternatively, an array reference of section specifications can be used:
  386. pod2usage(-verbose => 99,
  387. -sections => [ qw(fred fred/subsection) ] );
  388. =item C<-output>
  389. A reference to a filehandle, or the pathname of a file to which the
  390. usage message should be written. The default is C<\*STDERR> unless the
  391. exit value is less than 2 (in which case the default is C<\*STDOUT>).
  392. =item C<-input>
  393. A reference to a filehandle, or the pathname of a file from which the
  394. invoking script's pod documentation should be read. It defaults to the
  395. file indicated by C<$0> (C<$PROGRAM_NAME> for users of F<English.pm>).
  396. If you are calling B<pod2usage()> from a module and want to display
  397. that module's POD, you can use this:
  398. use Pod::Find qw(pod_where);
  399. pod2usage( -input => pod_where({-inc => 1}, __PACKAGE__) );
  400. =item C<-pathlist>
  401. A list of directory paths. If the input file does not exist, then it
  402. will be searched for in the given directory list (in the order the
  403. directories appear in the list). It defaults to the list of directories
  404. implied by C<$ENV{PATH}>. The list may be specified either by a reference
  405. to an array, or by a string of directory paths which use the same path
  406. separator as C<$ENV{PATH}> on your system (e.g., C<:> for Unix, C<;> for
  407. MSWin32 and DOS).
  408. =item C<-noperldoc>
  409. By default, Pod::Usage will call L<perldoc> when -verbose >= 2 is
  410. specified. This does not work well e.g. if the script was packed
  411. with L<PAR>. The -noperldoc option suppresses the external call to
  412. L<perldoc> and uses the simple text formatter (L<Pod::Text>) to
  413. output the POD.
  414. =back
  415. =head2 Formatting base class
  416. The default text formatter is L<Pod::Text>. The base class for Pod::Usage can
  417. be defined by pre-setting C<$Pod::Usage::Formatter> I<before>
  418. loading Pod::Usage, e.g.:
  419. BEGIN { $Pod::Usage::Formatter = 'Pod::Text::Termcap'; }
  420. use Pod::Usage qw(pod2usage);
  421. =head2 Pass-through options
  422. The following options are passed through to the underlying text formatter.
  423. See the manual pages of these modules for more information.
  424. alt code indent loose margin quotes sentence stderr utf8 width
  425. =head1 DESCRIPTION
  426. B<pod2usage> will print a usage message for the invoking script (using
  427. its embedded pod documentation) and then exit the script with the
  428. desired exit status. The usage message printed may have any one of three
  429. levels of "verboseness": If the verbose level is 0, then only a synopsis
  430. is printed. If the verbose level is 1, then the synopsis is printed
  431. along with a description (if present) of the command line options and
  432. arguments. If the verbose level is 2, then the entire manual page is
  433. printed.
  434. Unless they are explicitly specified, the default values for the exit
  435. status, verbose level, and output stream to use are determined as
  436. follows:
  437. =over 4
  438. =item *
  439. If neither the exit status nor the verbose level is specified, then the
  440. default is to use an exit status of 2 with a verbose level of 0.
  441. =item *
  442. If an exit status I<is> specified but the verbose level is I<not>, then the
  443. verbose level will default to 1 if the exit status is less than 2 and
  444. will default to 0 otherwise.
  445. =item *
  446. If an exit status is I<not> specified but verbose level I<is> given, then
  447. the exit status will default to 2 if the verbose level is 0 and will
  448. default to 1 otherwise.
  449. =item *
  450. If the exit status used is less than 2, then output is printed on
  451. C<STDOUT>. Otherwise output is printed on C<STDERR>.
  452. =back
  453. Although the above may seem a bit confusing at first, it generally does
  454. "the right thing" in most situations. This determination of the default
  455. values to use is based upon the following typical Unix conventions:
  456. =over 4
  457. =item *
  458. An exit status of 0 implies "success". For example, B<diff(1)> exits
  459. with a status of 0 if the two files have the same contents.
  460. =item *
  461. An exit status of 1 implies possibly abnormal, but non-defective, program
  462. termination. For example, B<grep(1)> exits with a status of 1 if
  463. it did I<not> find a matching line for the given regular expression.
  464. =item *
  465. An exit status of 2 or more implies a fatal error. For example, B<ls(1)>
  466. exits with a status of 2 if you specify an illegal (unknown) option on
  467. the command line.
  468. =item *
  469. Usage messages issued as a result of bad command-line syntax should go
  470. to C<STDERR>. However, usage messages issued due to an explicit request
  471. to print usage (like specifying B<-help> on the command line) should go
  472. to C<STDOUT>, just in case the user wants to pipe the output to a pager
  473. (such as B<more(1)>).
  474. =item *
  475. If program usage has been explicitly requested by the user, it is often
  476. desirable to exit with a status of 1 (as opposed to 0) after issuing
  477. the user-requested usage message. It is also desirable to give a
  478. more verbose description of program usage in this case.
  479. =back
  480. B<pod2usage> doesn't force the above conventions upon you, but it will
  481. use them by default if you don't expressly tell it to do otherwise. The
  482. ability of B<pod2usage()> to accept a single number or a string makes it
  483. convenient to use as an innocent looking error message handling function:
  484. use strict;
  485. use Pod::Usage;
  486. use Getopt::Long;
  487. ## Parse options
  488. my %opt;
  489. GetOptions(\%opt, "help|?", "man", "flag1") || pod2usage(2);
  490. pod2usage(1) if ($opt{help});
  491. pod2usage(-exitval => 0, -verbose => 2) if ($opt{man});
  492. ## Check for too many filenames
  493. pod2usage("$0: Too many files given.\n") if (@ARGV > 1);
  494. Some user's however may feel that the above "economy of expression" is
  495. not particularly readable nor consistent and may instead choose to do
  496. something more like the following:
  497. use strict;
  498. use Pod::Usage qw(pod2usage);
  499. use Getopt::Long qw(GetOptions);
  500. ## Parse options
  501. my %opt;
  502. GetOptions(\%opt, "help|?", "man", "flag1") ||
  503. pod2usage(-verbose => 0);
  504. pod2usage(-verbose => 1) if ($opt{help});
  505. pod2usage(-verbose => 2) if ($opt{man});
  506. ## Check for too many filenames
  507. pod2usage(-verbose => 2, -message => "$0: Too many files given.\n")
  508. if (@ARGV > 1);
  509. As with all things in Perl, I<there's more than one way to do it>, and
  510. B<pod2usage()> adheres to this philosophy. If you are interested in
  511. seeing a number of different ways to invoke B<pod2usage> (although by no
  512. means exhaustive), please refer to L<"EXAMPLES">.
  513. =head2 Scripts
  514. The Pod::Usage distribution comes with a script pod2usage which offers
  515. a command line interface to the functionality of Pod::Usage. See
  516. L<pod2usage>.
  517. =head1 EXAMPLES
  518. Each of the following invocations of C<pod2usage()> will print just the
  519. "SYNOPSIS" section to C<STDERR> and will exit with a status of 2:
  520. pod2usage();
  521. pod2usage(2);
  522. pod2usage(-verbose => 0);
  523. pod2usage(-exitval => 2);
  524. pod2usage({-exitval => 2, -output => \*STDERR});
  525. pod2usage({-verbose => 0, -output => \*STDERR});
  526. pod2usage(-exitval => 2, -verbose => 0);
  527. pod2usage(-exitval => 2, -verbose => 0, -output => \*STDERR);
  528. Each of the following invocations of C<pod2usage()> will print a message
  529. of "Syntax error." (followed by a newline) to C<STDERR>, immediately
  530. followed by just the "SYNOPSIS" section (also printed to C<STDERR>) and
  531. will exit with a status of 2:
  532. pod2usage("Syntax error.");
  533. pod2usage(-message => "Syntax error.", -verbose => 0);
  534. pod2usage(-msg => "Syntax error.", -exitval => 2);
  535. pod2usage({-msg => "Syntax error.", -exitval => 2, -output => \*STDERR});
  536. pod2usage({-msg => "Syntax error.", -verbose => 0, -output => \*STDERR});
  537. pod2usage(-msg => "Syntax error.", -exitval => 2, -verbose => 0);
  538. pod2usage(-message => "Syntax error.",
  539. -exitval => 2,
  540. -verbose => 0,
  541. -output => \*STDERR);
  542. Each of the following invocations of C<pod2usage()> will print the
  543. "SYNOPSIS" section and any "OPTIONS" and/or "ARGUMENTS" sections to
  544. C<STDOUT> and will exit with a status of 1:
  545. pod2usage(1);
  546. pod2usage(-verbose => 1);
  547. pod2usage(-exitval => 1);
  548. pod2usage({-exitval => 1, -output => \*STDOUT});
  549. pod2usage({-verbose => 1, -output => \*STDOUT});
  550. pod2usage(-exitval => 1, -verbose => 1);
  551. pod2usage(-exitval => 1, -verbose => 1, -output => \*STDOUT});
  552. Each of the following invocations of C<pod2usage()> will print the
  553. entire manual page to C<STDOUT> and will exit with a status of 1:
  554. pod2usage(-verbose => 2);
  555. pod2usage({-verbose => 2, -output => \*STDOUT});
  556. pod2usage(-exitval => 1, -verbose => 2);
  557. pod2usage({-exitval => 1, -verbose => 2, -output => \*STDOUT});
  558. =head2 Recommended Use
  559. Most scripts should print some type of usage message to C<STDERR> when a
  560. command line syntax error is detected. They should also provide an
  561. option (usually C<-H> or C<-help>) to print a (possibly more verbose)
  562. usage message to C<STDOUT>. Some scripts may even wish to go so far as to
  563. provide a means of printing their complete documentation to C<STDOUT>
  564. (perhaps by allowing a C<-man> option). The following complete example
  565. uses B<Pod::Usage> in combination with B<Getopt::Long> to do all of these
  566. things:
  567. use strict;
  568. use Getopt::Long qw(GetOptions);
  569. use Pod::Usage qw(pod2usage);
  570. my $man = 0;
  571. my $help = 0;
  572. ## Parse options and print usage if there is a syntax error,
  573. ## or if usage was explicitly requested.
  574. GetOptions('help|?' => \$help, man => \$man) or pod2usage(2);
  575. pod2usage(1) if $help;
  576. pod2usage(-verbose => 2) if $man;
  577. ## If no arguments were given, then allow STDIN to be used only
  578. ## if it's not connected to a terminal (otherwise print usage)
  579. pod2usage("$0: No files given.") if ((@ARGV == 0) && (-t STDIN));
  580. __END__
  581. =head1 NAME
  582. sample - Using GetOpt::Long and Pod::Usage
  583. =head1 SYNOPSIS
  584. sample [options] [file ...]
  585. Options:
  586. -help brief help message
  587. -man full documentation
  588. =head1 OPTIONS
  589. =over 4
  590. =item B<-help>
  591. Print a brief help message and exits.
  592. =item B<-man>
  593. Prints the manual page and exits.
  594. =back
  595. =head1 DESCRIPTION
  596. B<This program> will read the given input file(s) and do something
  597. useful with the contents thereof.
  598. =cut
  599. =head1 CAVEATS
  600. By default, B<pod2usage()> will use C<$0> as the path to the pod input
  601. file. Unfortunately, not all systems on which Perl runs will set C<$0>
  602. properly (although if C<$0> isn't found, B<pod2usage()> will search
  603. C<$ENV{PATH}> or else the list specified by the C<-pathlist> option).
  604. If this is the case for your system, you may need to explicitly specify
  605. the path to the pod docs for the invoking script using something
  606. similar to the following:
  607. pod2usage(-exitval => 2, -input => "/path/to/your/pod/docs");
  608. In the pathological case that a script is called via a relative path
  609. I<and> the script itself changes the current working directory
  610. (see L<perlfunc/chdir>) I<before> calling pod2usage, Pod::Usage will
  611. fail even on robust platforms. Don't do that. Or use L<FindBin> to locate
  612. the script:
  613. use FindBin;
  614. pod2usage(-input => $FindBin::Bin . "/" . $FindBin::Script);
  615. =head1 AUTHOR
  616. Please report bugs using L<http://rt.cpan.org>.
  617. Marek Rouchal E<lt>marekr@cpan.orgE<gt>
  618. Brad Appleton E<lt>bradapp@enteract.comE<gt>
  619. Based on code for B<Pod::Text::pod2text()> written by
  620. Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
  621. =head1 ACKNOWLEDGMENTS
  622. rjbs for refactoring Pod::Usage to not use Pod::Parser any more.
  623. Steven McDougall E<lt>swmcd@world.std.comE<gt> for his help and patience
  624. with re-writing this manpage.
  625. =head1 SEE ALSO
  626. B<Pod::Usage> is now a standalone distribution, depending on
  627. L<Pod::Text> which in turn depends on L<Pod::Simple>.
  628. L<Pod::Perldoc>, L<Getopt::Long>, L<Pod::Find>, L<FindBin>,
  629. L<Pod::Text>, L<Pod::Text::Termcap>, L<Pod::Simple>
  630. =cut