2000-10-17 02:51:03 +00:00
|
|
|
.\" Copyright (c) 2000 Josef Karthauser <joe@FreeBSD.org>
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
|
|
|
.Dd October 16, 2000
|
|
|
|
.Dt STYLE.PERL 7
|
2001-07-10 15:31:11 +00:00
|
|
|
.Os
|
2000-10-17 02:51:03 +00:00
|
|
|
.Sh NAME
|
2001-02-01 16:38:02 +00:00
|
|
|
.Nm style.perl
|
2000-10-17 02:51:03 +00:00
|
|
|
.Nd "FreeBSD Perl source file style guide"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
This file specifies the preferred style for perl scripts in the
|
2000-12-29 09:18:45 +00:00
|
|
|
.Fx
|
2000-10-17 02:51:03 +00:00
|
|
|
source tree.
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
#
|
|
|
|
# Style guide for Perl. Based on the kernel style guide.
|
|
|
|
#
|
2000-10-17 02:51:03 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
#
|
|
|
|
# VERY important single-line comments look like this.
|
|
|
|
#
|
2000-10-17 02:51:03 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
# Most single-line comments look like this.
|
2000-10-17 02:51:03 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
# Multi-line comments look like this. Make them real sentences.
|
|
|
|
# Fill them so they look like real paragraphs.
|
2000-10-17 02:51:03 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2000-10-19 18:18:35 +00:00
|
|
|
All scripts should follow the copyright block at the start of the
|
|
|
|
script with a comment block that describes what the script does.
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
#!/usr/bin/perl -w
|
2000-10-19 18:18:35 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
# COPYRIGHT
|
|
|
|
# BLOCK
|
2000-10-19 18:18:35 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
# This script processes an old kernel config file, which it gets on
|
|
|
|
# stdin, and outputs a new style hints file to stdout.
|
2000-10-19 18:18:35 +00:00
|
|
|
.Ed
|
2001-02-01 16:38:02 +00:00
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
All scripts should use the
|
2001-02-01 16:38:02 +00:00
|
|
|
.Xr strict 3
|
|
|
|
module and run without warnings.
|
|
|
|
For example:
|
|
|
|
.Bd -literal
|
|
|
|
#!/usr/bin/perl -w
|
2000-10-17 02:51:03 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
# Copyright, description of what the script does, etc
|
2000-10-19 18:18:35 +00:00
|
|
|
|
2001-02-01 16:38:02 +00:00
|
|
|
use strict;
|
|
|
|
\&...
|
2000-10-17 02:51:03 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2001-02-01 16:38:02 +00:00
|
|
|
Where possible run the script with taint mode switched on.
|
|
|
|
This is documented in
|
2000-10-17 02:51:03 +00:00
|
|
|
.Xr perlsec 1 .
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
#!/usr/bin/perl -wT
|
2000-10-17 02:51:03 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2001-02-01 16:38:02 +00:00
|
|
|
The main program should be placed in a block labeled MAIN:.
|
|
|
|
This
|
2000-10-18 17:21:54 +00:00
|
|
|
makes it easier to identify the entry point in a large perl script,
|
|
|
|
and provides a scope for variables which are used in the main
|
|
|
|
program but nowhere else.
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
MAIN:{
|
2000-10-18 17:21:54 +00:00
|
|
|
print(foo("/usr/bin/man", "7", "style.perl"));
|
|
|
|
exit(0);
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 17:21:54 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
All subroutines should be defined using argument prototypes as defined in
|
|
|
|
.Xr perlsub 1 .
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
sub foo($@) {
|
2000-10-18 17:21:54 +00:00
|
|
|
my $cmd = shift;
|
|
|
|
my @args = @_;
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 17:21:54 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
All variables should be defined before use; this is enforced if operating
|
|
|
|
under
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic use Ar strict .
|
2000-10-17 02:51:03 +00:00
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
Scope local variables should be defined using
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic my
|
2000-10-17 15:32:57 +00:00
|
|
|
.Va $variable
|
|
|
|
and not
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic local
|
2000-10-17 15:32:57 +00:00
|
|
|
.Va $variable .
|
|
|
|
The
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic local
|
2000-10-17 15:32:57 +00:00
|
|
|
declaration should only be used when it is required, and not by
|
2001-02-01 16:38:02 +00:00
|
|
|
default.
|
|
|
|
Lots of perl4 scripts use
|
|
|
|
.Ic local
|
2000-10-17 15:32:57 +00:00
|
|
|
because the
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic my
|
2000-10-17 15:32:57 +00:00
|
|
|
definition didn't exist prior to perl5.
|
2000-10-17 02:51:03 +00:00
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
In most cases globals should be defined at the top of the code
|
|
|
|
using a
|
2001-02-01 16:38:02 +00:00
|
|
|
.Xr vars 3
|
2000-10-17 15:32:57 +00:00
|
|
|
definition block:
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
use vars qw($globalscalar @globalarray %globalhash);
|
2000-10-17 15:32:57 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
In some cases it may be appropriate to use
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic my
|
2000-10-17 15:32:57 +00:00
|
|
|
statements at the top of the script as an alternative to using
|
2001-02-01 16:38:02 +00:00
|
|
|
.Xr vars 3
|
2000-10-17 15:32:57 +00:00
|
|
|
declarations.
|
|
|
|
.Pp
|
2000-10-18 17:25:59 +00:00
|
|
|
All variables should be commented.
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
sub foo($@) {
|
2000-10-18 17:25:59 +00:00
|
|
|
my $cmd = shift; # Command to run
|
|
|
|
my @args = @_; # Arguments to $cmd
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 17:25:59 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Local variables should be separated from function arguments by a
|
|
|
|
blank line:
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
sub foo($@) {
|
2000-10-18 17:25:59 +00:00
|
|
|
my $cmd = shift; # Command to run
|
|
|
|
my @args = @_; # Arguments to command
|
|
|
|
|
|
|
|
my $pid; # Child PID
|
|
|
|
local *PIPE; # Pipe
|
|
|
|
my $output; # Output from command
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 17:25:59 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
Whenever possible code should be run through the code checker
|
|
|
|
.Nm perl
|
2001-02-01 16:38:02 +00:00
|
|
|
.Fl wc
|
2000-10-17 15:32:57 +00:00
|
|
|
.Ar script.pl
|
|
|
|
or
|
|
|
|
.Nm perl
|
2001-02-01 16:38:02 +00:00
|
|
|
.Fl wcT
|
2000-10-17 15:32:57 +00:00
|
|
|
.Ar script.pl
|
|
|
|
and produce no warnings.
|
|
|
|
.Pp
|
2001-02-01 16:38:02 +00:00
|
|
|
Indentation is an 8 character tab.
|
|
|
|
Second level indents are four spaces.
|
|
|
|
.Bd -literal
|
|
|
|
while (cnt < 20) {
|
2000-10-18 21:57:37 +00:00
|
|
|
z = a + really + long + statement + that + needs +
|
|
|
|
two lines + gets + indented + four + spaces +
|
|
|
|
on + the + second + and + subsequent + lines.
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 21:57:37 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Do not add whitespace at the end of a line, and only use tabs
|
2001-02-01 16:38:02 +00:00
|
|
|
followed by spaces to form the indentation.
|
|
|
|
Do not use more spaces
|
2000-10-18 21:57:37 +00:00
|
|
|
than a tab will produce and do not use spaces in front of tabs.
|
|
|
|
.Pp
|
2001-02-01 16:38:02 +00:00
|
|
|
Opening braces should be at the end of the controlling line.
|
|
|
|
Else
|
2000-10-18 17:48:10 +00:00
|
|
|
and elsif belong on the same line as the closing brace for the
|
|
|
|
previous if or elsif block:
|
2001-02-01 16:38:02 +00:00
|
|
|
.Bd -literal
|
|
|
|
sub foo($@) {
|
2000-10-18 17:48:10 +00:00
|
|
|
my $cmd = shift; # Command to run
|
|
|
|
my @args = @_; # Arguments to command
|
|
|
|
|
|
|
|
my $pid; # Child PID
|
|
|
|
local *PIPE; # Pipe
|
|
|
|
my $output; # Output from command
|
|
|
|
|
|
|
|
unless (defined($pid = open(PIPE, "-|"))) {
|
|
|
|
die("open(): $!\\n");
|
|
|
|
} elsif ($pid == 0) {
|
|
|
|
exec($cmd, @args);
|
|
|
|
die("exec(): $!\\n");
|
|
|
|
}
|
|
|
|
$output = "";
|
|
|
|
while (<PIPE>) {
|
|
|
|
$output .= $_;
|
|
|
|
}
|
|
|
|
waitpid($pid, 0);
|
|
|
|
if ($? & 0xff) {
|
|
|
|
die("$cmd caught a signal " . ($? & 0x7f) . "\\n");
|
|
|
|
} elsif ($?) {
|
|
|
|
die("$cmd returned exit code " . ($? >> 8) . "\\n");
|
|
|
|
}
|
|
|
|
return $output;
|
2001-02-01 16:38:02 +00:00
|
|
|
}
|
2000-10-18 17:48:10 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
2000-10-17 15:32:57 +00:00
|
|
|
Where possible scripts should use standard modules instead of
|
2001-02-01 16:38:02 +00:00
|
|
|
rewriting the code inline.
|
|
|
|
It may be appropriate in some cases to
|
2000-10-17 15:32:57 +00:00
|
|
|
import a CPAN module into the base system to facilitate this.
|
|
|
|
.Pp
|
|
|
|
Use
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic chomp
|
2000-10-17 15:32:57 +00:00
|
|
|
instead of
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic chop
|
2000-10-17 15:32:57 +00:00
|
|
|
where appropriate.
|
2000-10-18 18:01:35 +00:00
|
|
|
.Pp
|
|
|
|
Use
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic unless
|
2000-10-18 18:01:35 +00:00
|
|
|
instead of
|
2001-02-01 16:38:02 +00:00
|
|
|
.Ic if Pq Cm \&! No ...\&
|
2000-10-18 18:01:35 +00:00
|
|
|
where it improves readability.
|
|
|
|
.Pp
|
2000-10-18 21:57:37 +00:00
|
|
|
Where it doesn't conflict with this guide read
|
|
|
|
.Xr perlstyle 1
|
|
|
|
and adopt Larry Wall's style recommendations.
|
2000-10-17 02:51:03 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr perlsec 1 ,
|
2000-10-18 21:57:37 +00:00
|
|
|
.Xr perlstyle 1 ,
|
2000-10-17 02:51:03 +00:00
|
|
|
.Xr style 9
|
|
|
|
.Sh HISTORY
|
|
|
|
This man page is largely based on the
|
|
|
|
.Xr style 9
|
2001-02-01 16:38:02 +00:00
|
|
|
man page in
|
2000-12-29 09:18:45 +00:00
|
|
|
.Fx .
|