X-Git-Url: https://git.donarmstrong.com/?p=perltidy.git;a=blobdiff_plain;f=lib%2FPerl%2FTidy.pod;fp=lib%2FPerl%2FTidy.pod;h=0423b7e1ed1597518d8b9b7ff3857e0cf091b0cf;hp=138b336e7fea92195d6af2f45c055ca30e125060;hb=880633cc084e9d787eb9f760d3851c5d660db17c;hpb=57d829ae0e2c75828f8ecc9c7139579350927dbc diff --git a/lib/Perl/Tidy.pod b/lib/Perl/Tidy.pod index 138b336..0423b7e 100644 --- a/lib/Perl/Tidy.pod +++ b/lib/Perl/Tidy.pod @@ -49,9 +49,9 @@ either a B or B method, as appropriate. destination - the destination of the formatted output stderr - standard error output perltidyrc - the .perltidyrc file - logfile - the .LOG file stream, if any + logfile - the .LOG file stream, if any errorfile - the .ERR file stream, if any - dump_options - ref to a hash to receive parameters (see below), + dump_options - ref to a hash to receive parameters (see below), dump_options_type - controls contents of dump_options dump_getopt_flags - ref to a hash to receive Getopt flags dump_options_category - ref to a hash giving category of options @@ -72,65 +72,115 @@ close method will be called at the end of the stream. =over 4 -=item source +=item B If the B parameter is given, it defines the source of the input stream. If an input stream is defined with the B parameter then no other source filenames may be specified in the @ARGV array or B parameter. -=item destination +=item B If the B parameter is given, it will be used to define the -file or memory location to receive output of perltidy. +file or memory location to receive output of perltidy. -=item stderr +B. Perl strings +of characters which are decoded as utf8 by Perl::Tidy can be returned in either +of two possible states, decoded or encoded, and it is important that the +calling program and Perl::Tidy are in agreement regarding the state to be +returned. A flag B<--encode-output-strings>, or simply B<-eos>, was added in +versions of Perl::Tidy after 20220101 for this purpose. This flag should be +added to the end of the B paremeter (described below) if Perl::Tidy +will be decoding utf8 text. The options are as follows. + +=over 4 + +=item * + +Use B<-eos> if Perl::Tidy should encode any string which it decodes. +This is probably most convenient for most programs. +But do not use this setting if the calling program will +encode the data too, because double encoding will corrupt data. + +=item * + +Use B<-neos> if a string should remain decoded if it was decoded by Perl::Tidy. +This is appropriate if +the calling program will handle any needed encoding before outputting the string. + +=item * + +The current default is B<-neos>, but B, so B<-neos> should still be set, if appropriate, to allow for the +possibility of a future change in the default. + +=back + +For example, to set B<-eos> the following could be used + + $argv .= " -eos" if ( $Perl::Tidy::VERSION > 20220101 ); + + $error_flag = Perl::Tidy::perltidy( + argv => $argv, + source => \$source, + destination => \$destination, + stderr => \$stderr, + errorfile => \$errorfile + ); + +The test on version allows older versions of Perl::Tidy to still be used. + +For some background information see +L and +L. + +=item B The B parameter allows the calling program to redirect the stream that would otherwise go to the standard error output device to any of the stream -types listed above. This stream contains important warnings and errors +types listed above. This stream contains important warnings and errors related to the parameters passed to perltidy. -=item perltidyrc +=item B If the B file is given, it will be used instead of any -F<.perltidyrc> configuration file that would otherwise be used. +F<.perltidyrc> configuration file that would otherwise be used. -=item errorfile +=item B The B parameter allows the calling program to capture the stream that would otherwise go to either a .ERR file. This stream contains warnings or errors related to the contents of one -source file or stream. +source file or stream. The reason that this is different from the stderr stream is that when perltidy is called to process multiple files there will be up to one .ERR file created -for each file and it would be very confusing if they were combined. +for each file and it would be very confusing if they were combined. However if perltidy is called to process just a single perl script then it may be more convenient to combine the B stream with the B stream. This can be done by setting the B<-se> parameter, in which case this parameter is ignored. -=item logfile +=item B The B parameter allows the calling program to capture the log stream. This stream is only created if requested with a B<-g> parameter. It contains detailed diagnostic information about a script which may be useful for debugging. -=item teefile +=item B The B parameter allows the calling program to capture the tee stream. This stream is only created if requested with one of the 'tee' parameters, a B<--tee-pod> , B<--tee-block-comments>, B<--tee-side-commnts>, or B<--tee-all-comments>. -=item debugfile +=item B The B parameter allows the calling program to capture the stream -produced by the B<--DEBUG> parameter. This parameter is mainly used for +produced by the B<--DEBUG> parameter. This parameter is mainly used for debugging perltidy itself. -=item argv +=item B If the B parameter is given, it will be used instead of the B<@ARGV> array. The B parameter may be a string, a reference to a @@ -138,7 +188,7 @@ string, or a reference to an array. If it is a string or reference to a string, it will be parsed into an array of items just as if it were a command line string. -=item dump_options +=item B If the B parameter is given, it must be the reference to a hash. In this case, the parameters contained in any perltidyrc configuration file @@ -152,14 +202,14 @@ this feature, F, is included in the distribution. Any combination of the B parameters may be used together. -=item dump_options_type +=item B This parameter is a string which can be used to control the parameters placed in the hash reference supplied by B. The possible values are 'perltidyrc' (default) and 'full'. The 'full' parameter causes both the default options plus any options found in a perltidyrc file to be returned. -=item dump_getopt_flags +=item B If the B parameter is given, it must be the reference to a hash. This hash will receive all of the parameters that perltidy understands @@ -168,26 +218,26 @@ used alone or with the B flag. Perltidy will exit immediately after filling this hash. See the demo program F for example usage. -=item dump_options_category +=item B If the B parameter is given, it must be the reference to a hash. This hash will receive a hash with keys equal to all long parameter names and values equal to the title of the corresponding section of the perltidy manual. See the demo program F for example usage. -=item dump_abbreviations +=item B If the B parameter is given, it must be the reference to a hash. This hash will receive all abbreviations used by Perl::Tidy. See the demo program F for example usage. -=item prefilter +=item B A code reference that will be applied to the source before tidying. It is expected to take the full content as a string in its input, and output the transformed content. -=item postfilter +=item B A code reference that will be applied to the tidied result before outputting. It is expected to take the full content as a string in its input, and output @@ -211,17 +261,17 @@ errors in the input parameters. This can happen for example if a parameter is misspelled or given an invalid value. The calling program should check for this flag because if it is set the destination stream will be empty or incomplete and should be ignored. Error messages in the B stream will -indicate the cause of any problem. +indicate the cause of any problem. An exit value of 2 indicates that perltidy ran to completion but there there are warning messages in the B stream related to parameter errors or conflicts and/or warning messages in the B stream relating to -possible syntax errors in the source code being tidied. +possible syntax errors in the source code being tidied. In the event of a catastrophic error for which recovery is not possible B terminates by making calls to B or B to help the programmer localize the problem. These should normally only occur during -program development. +program development. =head1 NOTES ON FORMATTING PARAMETERS @@ -230,15 +280,15 @@ F<.perltidyrc> configuration file, in the B parameter, and in the B parameter. The B<-syn> (B<--check-syntax>) flag may be used with all source and -destination streams except for standard input and output. However -data streams which are not associated with a filename will +destination streams except for standard input and output. However +data streams which are not associated with a filename will be copied to a temporary file before being passed to Perl. This use of temporary files can cause somewhat confusing output from Perl. If the B<-pbp> style is used it will typically be necessary to also specify a B<-nst> flag. This is necessary to turn off the B<-st> flag contained in the B<-pbp> parameter set which otherwise would direct -the output stream to the standard output. +the output stream to the standard output. =head1 EXAMPLES @@ -246,13 +296,13 @@ The following example uses string references to hold the input and output code and error streams, and illustrates checking for errors. use Perl::Tidy; - + my $source_string = <<'EOT'; my$error=Perl::Tidy::perltidy(argv=>$argv,source=>\$source_string, destination=>\$dest_string,stderr=>\$stderr_string, errorfile=>\$errorfile_string,); EOT - + my $dest_string; my $stderr_string; my $errorfile_string; @@ -261,9 +311,9 @@ code and error streams, and illustrates checking for errors. $argv .= " -nst"; # Must turn off -st in case -pbp is specified $argv .= " -se"; # -se appends the errorfile to stderr ## $argv .= " --spell-check"; # uncomment to trigger an error - + print "<>\n$source_string\n"; - + my $error = Perl::Tidy::perltidy( argv => $argv, source => \$source_string, @@ -272,19 +322,19 @@ code and error streams, and illustrates checking for errors. errorfile => \$errorfile_string, # ignored when -se flag is set ##phasers => 'stun', # uncomment to trigger an error ); - + if ($error) { - + # serious error in input parameters, no tidied output print "<>\n$stderr_string\n"; die "Exiting because of serious errors\n"; } - + if ($dest_string) { print "<>\n$dest_string\n" } if ($stderr_string) { print "<>\n$stderr_string\n" } if ($errorfile_string) { print "<<.ERR file>>\n$errorfile_string\n" } -Additional examples are given in examples section of the perltidy distribution. +Additional examples are given in examples section of the perltidy distribution. =head1 Using the B Callback Object @@ -295,13 +345,13 @@ formatting options which are built into perltidy (beautification or html) are ignored. The following diagram illustrates the logical flow: |-- (normal route) -> code beautification - caller->perltidy->|-- (-html flag ) -> create html + caller->perltidy->|-- (-html flag ) -> create html |-- (formatter given)-> callback to write_line -This can be useful for processing perl scripts in some way. The +This can be useful for processing perl scripts in some way. The parameter C<$formatter> in the perltidy call, - formatter => $formatter, + formatter => $formatter, is an object created by the caller with a C method which will accept and process tokenized lines, one line per call. Here is @@ -309,7 +359,7 @@ a simple example of a C which merely prints the line number, the line type (as determined by perltidy), and the text of the line: sub write_line { - + # This is called from perltidy line-by-line my $self = shift; my $line_of_tokens = shift; @@ -350,11 +400,11 @@ can slow down processing. Here is a B, from the example program B, which does that: sub write_line { - + # This is called back from perltidy line-by-line # We're looking for $`, $&, and $' my ( $self, $line_of_tokens ) = @_; - + # pull out some stuff we might need my $line_type = $line_of_tokens->{_line_type}; my $input_line_number = $line_of_tokens->{_line_number}; @@ -362,19 +412,19 @@ program B, which does that: my $rtoken_type = $line_of_tokens->{_rtoken_type}; my $rtokens = $line_of_tokens->{_rtokens}; chomp $input_line; - + # skip comments, pod, etc return if ( $line_type ne 'CODE' ); - + # loop over tokens looking for $`, $&, and $' for ( my $j = 0 ; $j < @$rtoken_type ; $j++ ) { - + # we only want to examine token types 'i' (identifier) next unless $$rtoken_type[$j] eq 'i'; - + # pull out the actual token text my $token = $$rtokens[$j]; - + # and check it if ( $token =~ /^\$[\`\&\']$/ ) { print STDERR @@ -412,7 +462,7 @@ to get started is to find one of the examples which most closely matches your application and start modifying it. For help with perltidy's peculiar way of breaking lines into tokens, you -might run, from the command line, +might run, from the command line, perltidy -D filename @@ -432,7 +482,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t =head1 VERSION -This man page documents Perl::Tidy version 20210717 +This man page documents Perl::Tidy version 20220217 =head1 LICENSE @@ -445,7 +495,7 @@ Please refer to the file "COPYING" for details. A list of current bugs and issues can be found at the CPAN site L -To report a new bug or problem, use the link on this page. +To report a new bug or problem, use the link on this page. The source code repository is at L.