Pod::Parser updates (v1.091) from Brad Appleton <bradapp@enteract.com>
[p5sagit/p5-mst-13.2.git] / pod / podchecker.PL
1 #!/usr/local/bin/perl
2
3 use Config;
4 use File::Basename qw(&basename &dirname);
5 use Cwd;
6
7 # List explicitly here the variables you want Configure to
8 # generate.  Metaconfig only looks for shell variables, so you
9 # have to mention them as if they were shell variables, not
10 # %Config entries.  Thus you write
11 #  $startperl
12 # to ensure Configure will look for $Config{startperl}.
13
14 # This forces PL files to create target in same directory as PL file.
15 # This is so that make depend always knows where to find PL derivatives.
16 $origdir = cwd;
17 chdir(dirname($0));
18 ($file = basename($0)) =~ s/\.PL$//;
19 $file =~ s/\.pl$//
20         if ($^O eq 'VMS' or $^O eq 'os2' or $^O eq 'dos');  # "case-forgiving"
21
22 open OUT,">$file" or die "Can't create $file: $!";
23
24 print "Extracting $file (with variable substitutions)\n";
25
26 # In this section, perl variables will be expanded during extraction.
27 # You can use $Config{...} to use Configure variables.
28
29 print OUT <<"!GROK!THIS!";
30 $Config{'startperl'}
31     eval 'exec perl -S \$0 "\$@"'
32         if 0;
33 !GROK!THIS!
34
35 # In the following, perl variables are not expanded during extraction.
36
37 print OUT <<'!NO!SUBS!';
38 #############################################################################
39 # podchecker -- command to invoke the podchecker function in Pod::Checker
40 #
41 # Copyright (c) 1998-1999 by Bradford Appleton. All rights reserved.
42 # This file is part of "PodParser". PodParser is free software;
43 # you can redistribute it and/or modify it under the same terms
44 # as Perl itself.
45 #############################################################################
46
47 use strict;
48 #use diagnostics;
49
50 =head1 NAME
51
52 podchecker - check the syntax of POD format documentation files
53
54 =head1 SYNOPSIS
55
56 B<podchecker> [B<-help>] [B<-man>] [B<-(no)warnings>] [I<file>S< >...]
57
58 =head1 OPTIONS AND ARGUMENTS
59
60 =over 8
61
62 =item B<-help>
63
64 Print a brief help message and exit.
65
66 =item B<-man>
67
68 Print the manual page and exit.
69
70 =item B<-warnings> B<-nowarnings>
71
72 Turn on/off printing of warnings.
73
74 =item I<file>
75
76 The pathname of a POD file to syntax-check (defaults to standard input).
77
78 =back
79
80 =head1 DESCRIPTION
81
82 B<podchecker> will read the given input files looking for POD
83 syntax errors in the POD documentation and will print any errors
84 it find to STDERR. At the end, it will print a status message
85 indicating the number of errors found.
86
87 B<podchecker> invokes the B<podchecker()> function exported by B<Pod::Checker>
88 Please see L<Pod::Checker/podchecker()> for more details.
89
90 =head1 RETURN VALUE
91
92 B<podchecker> returns a 0 (zero) exit status if all specified
93 POD files are ok.
94
95 =head1 ERRORS
96
97 B<podchecker> returns the exit status 1 if at least one of
98 the given POD files has syntax errors.
99
100 The status 2 indicates that at least one of the specified 
101 files does not contain I<any> POD commands.
102
103 Status 1 overrides status 2. If you want unambigouus
104 results, call B<podchecker> with one single argument only.
105
106 =head1 SEE ALSO
107
108 L<Pod::Parser> and L<Pod::Checker>
109
110 =head1 AUTHORS
111
112 Brad Appleton E<lt>bradapp@enteract.comE<gt>,
113 Marek Rouchal E<lt>marek@saftsack.fs.uni-bayreuth.deE<gt>
114
115 Based on code for B<Pod::Text::pod2text(1)> written by
116 Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
117
118 =cut
119
120
121 use Pod::Checker;
122 use Pod::Usage;
123 use Getopt::Long;
124
125 ## Define options
126 my %options = (
127         "help"     => 0,
128         "man"      => 0,
129         "warnings" => 1,
130 );
131
132 ## Parse options
133 GetOptions(\%options, "help", "man", "warnings!")  ||  pod2usage(2);
134 pod2usage(1)  if ($options{help});
135 pod2usage(-verbose => 2)  if ($options{man});
136
137 ## Dont default to STDIN if connected to a terminal
138 pod2usage(2) if ((@ARGV == 0) && (-t STDIN));
139
140 ## Invoke podchecker()
141 my $status = 0;
142 @ARGV = ("<&STDIN") unless(@ARGV);
143 for (@ARGV) {
144     my $s = podchecker($_, undef, '-warnings' => $options{warnings});
145     if($s > 0) {
146         # errors occurred
147         $status = 1;
148     }
149     elsif($s < 0) {
150         # no pod found
151         $status = 2 unless($status);
152     }
153 }
154 exit $status;
155
156 !NO!SUBS!
157
158 close OUT or die "Can't close $file: $!";
159 chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
160 exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
161 chdir $origdir;