1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
A Brief Perltidy Tutorial
Perltidy can save you a lot of tedious editing if you spend a few
minutes learning to use it effectively. There are a large number of
options available for customizing it, but for many programmers the
default parameter set will be satisfactory, with perhaps a few
additional parameters to account for style preferences.
This tutorial assumes that perltidy has been installed on your system.
Installation instructions accompany the package. To follow along with
this tutorial, please find a small Perl script and place a copy in a
temporary directory. For example, here is a small script (from the book
Learning Perl 2nd edition, by Randall Schwartz and Tom Christiansen
http://www.oreilly.com/catalog/lperl2/):
#Learning Perl Appendix A, Exercise 4.2
print "What temperature is it? ";
chop($temperature = <STDIN>);
if ($temperature > 75) {
print "Too hot!\n";
} elsif ($temperature < 68) {
print "Too cold!\n";
} else {
print "Just right!\n";
}
It is included in the docs section of the distribution.
A First Test
Assume that the name of your script is testfile.pl. You can reformat it
with the default options to use the style recommended in the perlstyle
man pages with the command:
perltidy testfile.pl
Try it now. For safety, perltidy never overwrites your original file. In
this case, its output will go to a file named testfile.pl.tdy, which you
should examine now with your editor. Here is what the above file looks
like with the default options:
#Learning Perl Appendix A, Exercise 4.2
print "What temperature is it? ";
chop( $temperature = <STDIN> );
if ( $temperature > 75 ) {
print "Too hot!\n";
}
elsif ( $temperature < 68 ) {
print "Too cold!\n";
}
else {
print "Just right!\n";
}
If you are executing perltidy on a single file, and you do not like the
default name, you can control the name of the output file with the -o
parameter. Try the following command,
perltidy testfile.pl -o=testfile.new.pl
which will create a file named testfile.new.pl.
Making Backups
In an actual project, at this point you could make a backup copy of the
original script and then rename testfile.pl.tdy to be testfile.pl. While
perltidy is a very reliable program, it is very important to have a
standard procedure for backing up your script in case something goes
wrong. For a small project, a simple backup procedure using RCS could be
as follows (see the rcsintro(1) man page).
ci -l testfile.pl
perltidy testfile.pl
A good practice is to use a file comparison utility, such as diff, to
examine the differences between the original and reformatted files.
Then, if no problems are seen, update to the new version using
mv testfile.pl testfile.pl.bak
mv testfile.pl.tdy testfile.pl
This has the effect of keeping a historical record of the script in the
RCS directory, and a current separate backup as testfile.pl.bak. Of
course, you should make regular additional backups to other media as
well. Perltidy, a relatively large script, was itself developed with
this backup procedure.
Tabs or Spaces?
With indentation, there is always a tab issue to resolve. By default,
perltidy will use leading ascii space characters instead of tabs. The
reason is that this will be displayed correctly by virtually all
editors. It is the author's recommendation that tabs not be used for
indentation, but if you prefer, you may choose to use one leading tab
character for each level of indentation by using the -t flag. Most
editors display tabs as 8 spaces, but they normally have a switch to
change this. If you choose tabs, you should use this switch to change
tabs to display as 4 columns, because that is the default assumption
made by perltidy in aligning lists and side comments vertically.
(The number 4 is the indentation spacing suggested in perlstyle(1) for
Perl scripts, but you may change this to any number "n" of columns with
the flag -i=n).
For example, the commands for the vim editor are as follows. To change
to 4 spaces per tab, use ":set ts=4" and ":set sw=4". If you are using
real spaces instead of tabs, as recommended, you will also want to
expand tabs to spaces with ":set et". All of these commands can be put
in a comment (modeline) at the end of a script like this:
# vi: set ts=4 sw=4 et:
Fortunately, perltidy makes it easy to change indentation spaces and
tabbing assumptions at any time.
To get some practice, try these examples, and examine the resulting
testfile.pl.tdy file:
perltidy -i=3 testfile.pl
This changes the default of 4 spaces per indentation level to be 3. Now
just to emphasize the point, try this and examine the result:
perltidy -i=0 testfile.pl
There will be no indentation at all in this case.
Now try using tabs with the -t command
perltidy -t testfile.pl
Look at the file with your editor, and tell it to display tabs as 4
columns so that the file displays properly.
This is a good place to mention a few points regarding the input flags.
First, for each option, there are two forms, a long form and a short
form, and either may be used.
For example, if you want to change the number of columns corresponding
to one indentation level to 3 (from the default of 4) you may use either
-i=3 or --indent-columns=3
The short forms are convenient for entering parameters by hand, whereas
the long forms, though often ridiculously long, are self-documenting and
therefore useful in configuration scripts. You may use either one or two
dashes ahead of the parameters. Also, the '=' sign is optional, and may
be a single space instead. However, the value of a parameter must NOT be
adjacent to the flag, like this -i3 (WRONG). Also, flags must be input
separately, never bundled together.
Style Variations, or, What are All of Those Other Parameters For?
Perltidy has to make some kind of default selection of formatting
options, and its choice is to try to follow the suggestions in the
perlstyle man pages. Many programmers more or less follow these
suggestions with the exception that "cuddled elses" are widely used. If
you prefer cuddled elses, use the -ce flag. If you are unfamiliar with
this term, a "cuddled else" is something like this: '} else {', so named
because the "else" has been "cuddled" between the two braces.
While style preferences vary, most people would agree that it is
important to maintain a uniform style within a script, and this is a
major benefit provided by perltidy. Once you have decided on which, if
any, special options you prefer, you may want to avoid having to enter
them each time you run it. You can do this by creating a special file
named .perltidyrc in either your home directory or your current
directory. (Note the leading "." in the file name). Perltidy will first
look in your current directory, and if it does not find one, it will
look in your home directory. This file is free format. It is simply a
list of parameters, just as they would be entered on a command line. Any
number of lines may be used, with any number of parameters per line,
although it may be easiest to read with one parameter per line. Blank
lines are ignored, and text after a '#' is ignored to the end of a line.
Here is an example of a .perltidyrc file:
# This is a simple of a .perltidyrc configuration file
# This implements a highly spaced style
-bl # braces on new lines
-pt=0 # parens not tight at all
-bt=0 # braces not tight
-sbt=0 # square brackets not tight
If you experiment with this file, remember that it is in your directory,
since if you are running on a Unix system, files beginning with a "."
are normally hidden. If you are unsure if a .perltidyrc file is in
effect, you can always use the -log flag to create a .LOG file and look
at the top. It will tell you.
If you have a .perltidyrc file, and want perltidy to ignore it, use the
-npro flag on the command line.
The Log File
One last topic that needs to be touched upon concerns the .LOG file.
This is where perltidy writes messages that are not normally of any
interest, but which just might occasionally be useful. This file is not
saved, though, unless there is an error or you ask for it to be saved.
There are a couple of ways to ask perltidy to save a log file. For a
relatively sparce log file use
perltidy -log testfile.pl
and for a verbose log file use
perltidy -g testfile.pl
The difference is that the first form only saves detailed information at
least every 50th line, while the second form saves detailed information
about every line.
So returning to our example, lets force perltidy to save a verbose log
file by issuing the following command
perltidy -g testfile.pl
You will find that a file named testfile.pl.LOG has been created in your
directory.
Take a few minutes to examine this file. It is a text file with a
combination of warning messages and informative messages. All you need
to know for now is that it exists.
Using Perltidy as a Filter on Selected Text from an Editor
Most programmer's editors allow a selected group of lines to be passed
through an external filter. Perltidy has been designed to work well as a
filter, and it is well worthwhile learning the appropriate commands to
do this with your editor. You may want to supply the -q flag to prevent
error messages regarding incorrect syntax, since errors may be obvious
in the indentation of the reformatted text. If you do not use the -q
flag, you will need to use the undo keys in case an error message
appears on the screen.
For example, within the vim editor it is only necessary to select the
text by any of the text selection methods, and then issue the command
!perltidy in command mode. Thus, an entire file can be formatted using
:%!perltidy -q
Summary
That's all you need to know to get started using perltidy. You will want
to delete unwanted files in the temporary directory created in this
tutorial. Additional special features and capabilities can be found in
the manual pages for perltidy.
We hope that perltidy makes perl programming a little more fun. Please
check the perltidy web site http://perltidy.sourceforge.net occasionally
for updates.
|