]> git.donarmstrong.com Git - perltidy.git/blob - lib/Perl/Tidy.pod
New upstream version 20170521
[perltidy.git] / lib / Perl / Tidy.pod
1 =head1 NAME
2
3 Perl::Tidy - Parses and beautifies perl source
4
5 =head1 SYNOPSIS
6
7     use Perl::Tidy;
8
9     my $error_flag = Perl::Tidy::perltidy(
10         source            => $source,
11         destination       => $destination,
12         stderr            => $stderr,
13         argv              => $argv,
14         perltidyrc        => $perltidyrc,
15         logfile           => $logfile,
16         errorfile         => $errorfile,
17         formatter         => $formatter,           # callback object (see below)
18         dump_options      => $dump_options,
19         dump_options_type => $dump_options_type,
20         prefilter         => $prefilter_coderef,
21         postfilter        => $postfilter_coderef,
22     );
23
24 =head1 DESCRIPTION
25
26 This module makes the functionality of the perltidy utility available to perl
27 scripts.  Any or all of the input parameters may be omitted, in which case the
28 @ARGV array will be used to provide input parameters as described
29 in the perltidy(1) man page.
30
31 For example, the perltidy script is basically just this:
32
33     use Perl::Tidy;
34     Perl::Tidy::perltidy();
35
36 The call to B<perltidy> returns a scalar B<$error_flag> which is TRUE if an
37 error caused premature termination, and FALSE if the process ran to normal
38 completion.  Additional discuss of errors is contained below in the L<ERROR
39 HANDLING> section.
40
41 The module accepts input and output streams by a variety of methods.
42 The following list of parameters may be any of the following: a
43 filename, an ARRAY reference, a SCALAR reference, or an object with
44 either a B<getline> or B<print> method, as appropriate.
45
46         source            - the source of the script to be formatted
47         destination       - the destination of the formatted output
48         stderr            - standard error output
49         perltidyrc        - the .perltidyrc file
50         logfile           - the .LOG file stream, if any 
51         errorfile         - the .ERR file stream, if any
52         dump_options      - ref to a hash to receive parameters (see below), 
53         dump_options_type - controls contents of dump_options
54         dump_getopt_flags - ref to a hash to receive Getopt flags
55         dump_options_category - ref to a hash giving category of options
56         dump_abbreviations    - ref to a hash giving all abbreviations
57
58 The following chart illustrates the logic used to decide how to
59 treat a parameter.
60
61    ref($param)  $param is assumed to be:
62    -----------  ---------------------
63    undef        a filename
64    SCALAR       ref to string
65    ARRAY        ref to array
66    (other)      object with getline (if source) or print method
67
68 If the parameter is an object, and the object has a B<close> method, that
69 close method will be called at the end of the stream.
70
71 =over 4
72
73 =item source
74
75 If the B<source> parameter is given, it defines the source of the input stream.
76 If an input stream is defined with the B<source> parameter then no other source
77 filenames may be specified in the @ARGV array or B<argv> parameter.
78
79 =item destination
80
81 If the B<destination> parameter is given, it will be used to define the
82 file or memory location to receive output of perltidy.  
83
84 =item stderr
85
86 The B<stderr> parameter allows the calling program to redirect the stream that
87 would otherwise go to the standard error output device to any of the stream
88 types listed above.  This stream contains important warnings and errors 
89 related to the parameters passed to perltidy.
90
91 =item perltidyrc
92
93 If the B<perltidyrc> file is given, it will be used instead of any
94 F<.perltidyrc> configuration file that would otherwise be used. 
95
96 =item errorfile
97
98 The B<errorfile> parameter allows the calling program to capture
99 the stream that would otherwise go to either a .ERR file.  This
100 stream contains warnings or errors related to the contents of one
101 source file or stream. 
102
103 The reason that this is different from the stderr stream is that when perltidy
104 is called to process multiple files there will be up to one .ERR file created
105 for each file and it would be very confusing if they were combined.  
106
107 However if perltidy is called to process just a single perl script then it may
108 be more convenient to combine the B<errorfile> stream with the B<stderr>
109 stream.  This can be done by setting the B<-se> parameter, in which case this
110 parameter is ignored.
111
112 =item logfile
113
114 The B<logfile> parameter allows the calling program to capture the log stream.
115 This stream is only created if requested with a B<-g> parameter.  It contains
116 detailed diagnostic information about a script which may be useful for
117 debugging.
118
119 =item argv
120
121 If the B<argv> parameter is given, it will be used instead of the
122 B<@ARGV> array.  The B<argv> parameter may be a string, a reference to a
123 string, or a reference to an array.  If it is a string or reference to a
124 string, it will be parsed into an array of items just as if it were a
125 command line string.
126
127 =item dump_options
128
129 If the B<dump_options> parameter is given, it must be the reference to a hash.
130 In this case, the parameters contained in any perltidyrc configuration file
131 will be placed in this hash and perltidy will return immediately.  This is
132 equivalent to running perltidy with --dump-options, except that the perameters
133 are returned in a hash rather than dumped to standard output.  Also, by default
134 only the parameters in the perltidyrc file are returned, but this can be
135 changed (see the next parameter).  This parameter provides a convenient method
136 for external programs to read a perltidyrc file.  An example program using
137 this feature, F<perltidyrc_dump.pl>, is included in the distribution.
138
139 Any combination of the B<dump_> parameters may be used together.
140
141 =item dump_options_type
142
143 This parameter is a string which can be used to control the parameters placed
144 in the hash reference supplied by B<dump_options>.  The possible values are
145 'perltidyrc' (default) and 'full'.  The 'full' parameter causes both the
146 default options plus any options found in a perltidyrc file to be returned.
147
148 =item dump_getopt_flags
149
150 If the B<dump_getopt_flags> parameter is given, it must be the reference to a
151 hash.  This hash will receive all of the parameters that perltidy understands
152 and flags that are passed to Getopt::Long.  This parameter may be
153 used alone or with the B<dump_options> flag.  Perltidy will
154 exit immediately after filling this hash.  See the demo program
155 F<perltidyrc_dump.pl> for example usage.
156
157 =item dump_options_category
158
159 If the B<dump_options_category> parameter is given, it must be the reference to a
160 hash.  This hash will receive a hash with keys equal to all long parameter names
161 and values equal to the title of the corresponding section of the perltidy manual.
162 See the demo program F<perltidyrc_dump.pl> for example usage.
163
164 =item dump_abbreviations
165
166 If the B<dump_abbreviations> parameter is given, it must be the reference to a
167 hash.  This hash will receive all abbreviations used by Perl::Tidy.  See the
168 demo program F<perltidyrc_dump.pl> for example usage.
169
170 =item prefilter
171
172 A code reference that will be applied to the source before tidying. It is
173 expected to take the full content as a string in its input, and output the
174 transformed content.
175
176 =item postfilter
177
178 A code reference that will be applied to the tidied result before outputting.
179 It is expected to take the full content as a string in its input, and output
180 the transformed content.
181
182 Note: A convenient way to check the function of your custom prefilter and
183 postfilter code is to use the --notidy option, first with just the prefilter
184 and then with both the prefilter and postfilter.  See also the file
185 B<filter_example.pl> in the perltidy distribution.
186
187 =back
188
189 =head1 ERROR HANDLING
190
191 Perltidy will return with an error flag indicating if the process had to be
192 terminated early due to errors in the input parameters.  This can happen for
193 example if a parameter is misspelled or given an invalid value.  The calling
194 program should check this flag because if it is set the destination stream will
195 be empty or incomplete and should be ignored.  Error messages in the B<stderr>
196 stream will indicate the cause of any problem.  
197
198 If the error flag is not set then perltidy ran to completion.   However there
199 may still be warning messages in the B<stderr> stream related to control
200 parameters, and there may be warning messages in the B<errorfile> stream
201 relating to possible syntax errors in the source code being tidied.  
202
203 In the event of a catastrophic error for which recovery is not possible
204 B<perltidy> terminates by making calls to B<croak> or B<confess> to help the
205 programmer localize the problem.  These should normally only occur during
206 program development.  
207
208 =head1 NOTES ON FORMATTING PARAMETERS
209
210 Parameters which control formatting may be passed in several ways: in a
211 F<.perltidyrc> configuration file, in the B<perltidyrc> parameter, and in the
212 B<argv> parameter.
213
214 The B<-syn> (B<--check-syntax>) flag may be used with all source and
215 destination streams except for standard input and output.  However 
216 data streams which are not associated with a filename will 
217 be copied to a temporary file before being be passed to Perl.  This
218 use of temporary files can cause somewhat confusing output from Perl.
219
220 If the B<-pbp> style is used it will typically be necessary to also
221 specify a B<-nst> flag.  This is necessary to turn off the B<-st> flag
222 contained in the B<-pbp> parameter set which otherwise would direct
223 the output stream to the standard output.  
224
225 =head1 EXAMPLES
226
227 The following example uses string references to hold the input and output
228 code and error streams, and illustrates checking for errors.
229
230   use Perl::Tidy;
231   
232   my $source_string = <<'EOT';
233   my$error=Perl::Tidy::perltidy(argv=>$argv,source=>\$source_string,
234     destination=>\$dest_string,stderr=>\$stderr_string,
235   errorfile=>\$errorfile_string,);
236   EOT
237   
238   my $dest_string;
239   my $stderr_string;
240   my $errorfile_string;
241   my $argv = "-npro";   # Ignore any .perltidyrc at this site
242   $argv .= " -pbp";     # Format according to perl best practices
243   $argv .= " -nst";     # Must turn off -st in case -pbp is specified
244   $argv .= " -se";      # -se appends the errorfile to stderr
245   ## $argv .= " --spell-check";  # uncomment to trigger an error
246   
247   print "<<RAW SOURCE>>\n$source_string\n";
248   
249   my $error = Perl::Tidy::perltidy(
250       argv        => $argv,
251       source      => \$source_string,
252       destination => \$dest_string,
253       stderr      => \$stderr_string,
254       errorfile   => \$errorfile_string,    # ignored when -se flag is set
255       ##phasers   => 'stun',                # uncomment to trigger an error
256   );
257   
258   if ($error) {
259   
260       # serious error in input parameters, no tidied output
261       print "<<STDERR>>\n$stderr_string\n";
262       die "Exiting because of serious errors\n";
263   }
264   
265   if ($dest_string)      { print "<<TIDIED SOURCE>>\n$dest_string\n" }
266   if ($stderr_string)    { print "<<STDERR>>\n$stderr_string\n" }
267   if ($errorfile_string) { print "<<.ERR file>>\n$errorfile_string\n" }
268
269 Additional examples are given in examples section of the perltidy distribution.  
270
271 =head1 Using the B<formatter> Callback Object
272
273 The B<formatter> parameter is an optional callback object which allows
274 the calling program to receive tokenized lines directly from perltidy for
275 further specialized processing.  When this parameter is used, the two
276 formatting options which are built into perltidy (beautification or
277 html) are ignored.  The following diagram illustrates the logical flow:
278
279                     |-- (normal route)   -> code beautification
280   caller->perltidy->|-- (-html flag )    -> create html 
281                     |-- (formatter given)-> callback to write_line
282
283 This can be useful for processing perl scripts in some way.  The 
284 parameter C<$formatter> in the perltidy call,
285
286         formatter   => $formatter,  
287
288 is an object created by the caller with a C<write_line> method which
289 will accept and process tokenized lines, one line per call.  Here is
290 a simple example of a C<write_line> which merely prints the line number,
291 the line type (as determined by perltidy), and the text of the line:
292
293  sub write_line {
294  
295      # This is called from perltidy line-by-line
296      my $self              = shift;
297      my $line_of_tokens    = shift;
298      my $line_type         = $line_of_tokens->{_line_type};
299      my $input_line_number = $line_of_tokens->{_line_number};
300      my $input_line        = $line_of_tokens->{_line_text};
301      print "$input_line_number:$line_type:$input_line";
302  }
303
304 The complete program, B<perllinetype>, is contained in the examples section of
305 the source distribution.  As this example shows, the callback method
306 receives a parameter B<$line_of_tokens>, which is a reference to a hash
307 of other useful information.  This example uses these hash entries:
308
309  $line_of_tokens->{_line_number} - the line number (1,2,...)
310  $line_of_tokens->{_line_text}   - the text of the line
311  $line_of_tokens->{_line_type}   - the type of the line, one of:
312
313     SYSTEM         - system-specific code before hash-bang line
314     CODE           - line of perl code (including comments)
315     POD_START      - line starting pod, such as '=head'
316     POD            - pod documentation text
317     POD_END        - last line of pod section, '=cut'
318     HERE           - text of here-document
319     HERE_END       - last line of here-doc (target word)
320     FORMAT         - format section
321     FORMAT_END     - last line of format section, '.'
322     DATA_START     - __DATA__ line
323     DATA           - unidentified text following __DATA__
324     END_START      - __END__ line
325     END            - unidentified text following __END__
326     ERROR          - we are in big trouble, probably not a perl script
327
328 Most applications will be only interested in lines of type B<CODE>.  For
329 another example, let's write a program which checks for one of the
330 so-called I<naughty matching variables> C<&`>, C<$&>, and C<$'>, which
331 can slow down processing.  Here is a B<write_line>, from the example
332 program B<find_naughty.pl>, which does that:
333
334  sub write_line {
335  
336      # This is called back from perltidy line-by-line
337      # We're looking for $`, $&, and $'
338      my ( $self, $line_of_tokens ) = @_;
339  
340      # pull out some stuff we might need
341      my $line_type         = $line_of_tokens->{_line_type};
342      my $input_line_number = $line_of_tokens->{_line_number};
343      my $input_line        = $line_of_tokens->{_line_text};
344      my $rtoken_type       = $line_of_tokens->{_rtoken_type};
345      my $rtokens           = $line_of_tokens->{_rtokens};
346      chomp $input_line;
347  
348      # skip comments, pod, etc
349      return if ( $line_type ne 'CODE' );
350  
351      # loop over tokens looking for $`, $&, and $'
352      for ( my $j = 0 ; $j < @$rtoken_type ; $j++ ) {
353  
354          # we only want to examine token types 'i' (identifier)
355          next unless $$rtoken_type[$j] eq 'i';
356  
357          # pull out the actual token text
358          my $token = $$rtokens[$j];
359  
360          # and check it
361          if ( $token =~ /^\$[\`\&\']$/ ) {
362              print STDERR
363                "$input_line_number: $token\n";
364          }
365      }
366  }
367
368 This example pulls out these tokenization variables from the $line_of_tokens
369 hash reference:
370
371      $rtoken_type = $line_of_tokens->{_rtoken_type};
372      $rtokens     = $line_of_tokens->{_rtokens};
373
374 The variable C<$rtoken_type> is a reference to an array of token type codes,
375 and C<$rtokens> is a reference to a corresponding array of token text.
376 These are obviously only defined for lines of type B<CODE>.
377 Perltidy classifies tokens into types, and has a brief code for each type.
378 You can get a complete list at any time by running perltidy from the
379 command line with
380
381      perltidy --dump-token-types
382
383 In the present example, we are only looking for tokens of type B<i>
384 (identifiers), so the for loop skips past all other types.  When an
385 identifier is found, its actual text is checked to see if it is one
386 being sought.  If so, the above write_line prints the token and its
387 line number.
388
389 The B<formatter> feature is relatively new in perltidy, and further
390 documentation needs to be written to complete its description.  However,
391 several example programs have been written and can be found in the
392 B<examples> section of the source distribution.  Probably the best way
393 to get started is to find one of the examples which most closely matches
394 your application and start modifying it.
395
396 For help with perltidy's peculiar way of breaking lines into tokens, you
397 might run, from the command line, 
398
399  perltidy -D filename
400
401 where F<filename> is a short script of interest.  This will produce
402 F<filename.DEBUG> with interleaved lines of text and their token types.
403 The B<-D> flag has been in perltidy from the beginning for this purpose.
404 If you want to see the code which creates this file, it is
405 C<write_debug_entry> in Tidy.pm.
406
407 =head1 EXPORT
408
409   &perltidy
410
411 =head1 VERSION
412
413 This man page documents Perl::Tidy version 20170521.
414
415 =head1 LICENSE
416
417 This package is free software; you can redistribute it and/or modify it
418 under the terms of the "GNU General Public License".
419
420 Please refer to the file "COPYING" for details.
421
422 =head1 BUG REPORTS
423
424 A list of current bugs and issues can be found at the CPAN site
425
426      https://rt.cpan.org/Public/Dist/Display.html?Name=Perl-Tidy
427
428 To report a new bug or problem, use the link on this page .  
429
430 =head1 SEE ALSO
431
432 The perltidy(1) man page describes all of the features of perltidy.  It
433 can be found at http://perltidy.sourceforge.net.
434
435 =cut