diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2004-11-19 15:58:00 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2004-11-19 15:58:00 (GMT) |
commit | 870988ff0cde7aff6794e9a6a27904562cad9291 (patch) | |
tree | cb8ad5b7524d8213faf726fbb51f43c3a0a02c69 /CODING | |
parent | d3d4440d89768fd13283e5daf5a9b338a8c11892 (diff) | |
download | monitoring-plugins-870988ff0cde7aff6794e9a6a27904562cad9291.tar.gz |
Added perl coding guidelines, from Programming Perl book (Andreas Ericsson)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@913 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'CODING')
-rw-r--r-- | CODING | 80 |
1 files changed, 79 insertions, 1 deletions
@@ -4,6 +4,7 @@ code that is consistent with the existing core plugins. | |||
4 | The primary goals of these standards are internal consistency, and | 4 | The primary goals of these standards are internal consistency, and |
5 | readability in a wide range of environments. | 5 | readability in a wide range of environments. |
6 | 6 | ||
7 | |||
7 | 1. C Language Programming | 8 | 1. C Language Programming |
8 | 9 | ||
9 | All code should comply with the requirements of the Free Software | 10 | All code should comply with the requirements of the Free Software |
@@ -33,6 +34,83 @@ characters | |||
33 | e) The opening brace of an if or while block is on the same line as | 34 | e) The opening brace of an if or while block is on the same line as |
34 | the end of the conditional expression (the '-br' option). | 35 | the end of the conditional expression (the '-br' option). |
35 | 36 | ||
37 | |||
36 | 2. Perl Language Programming | 38 | 2. Perl Language Programming |
37 | 39 | ||
38 | <To Be Written> | 40 | Taken from the O'Reilly book "Programming Perl" (3rd edition, pages 604-606) with |
41 | modifications for clarity and to cohere with C coding standards. | ||
42 | |||
43 | *) Always check the return code of system calls. | ||
44 | |||
45 | a) Use tab indentation. | ||
46 | |||
47 | b) Put space before the opening brace of a multiline block. | ||
48 | |||
49 | c) A short block may be put on one line, including braces. | ||
50 | |||
51 | d) Never omit the semicolon. | ||
52 | |||
53 | e) Surround most operators with space. | ||
54 | |||
55 | $x = 5; # do this | ||
56 | $y=5; # don't do this | ||
57 | |||
58 | f) Surround a "complex" subscript (inside brackets) with space. | ||
59 | |||
60 | g) Put empty lines between chunks of code that do different things. | ||
61 | |||
62 | *) Always check the return code of system calls. | ||
63 | |||
64 | h) Put a newline between closing brace and else or elsif. | ||
65 | |||
66 | i) Do not put space between a function name and its opening parenthesis. | ||
67 | |||
68 | j) Do not put space before a semicolon. | ||
69 | |||
70 | k) Put space after each comma. | ||
71 | |||
72 | l) Break long lines after an operator (but before 'and' and 'or', even when | ||
73 | spelled as && and ||)). | ||
74 | |||
75 | *) Always check the return code of system calls. | ||
76 | |||
77 | m) Line up corresponding items vertically. | ||
78 | |||
79 | n) Use redundant parentheses only where it increases readability. | ||
80 | |||
81 | o) An opening brace should be put on the same line as its preceding keyword, | ||
82 | if possible; otherwise, line them up vertically. | ||
83 | |||
84 | while ($condition) { | ||
85 | # do something | ||
86 | } | ||
87 | |||
88 | while ($this_condition and $that_condition and $some_other_condition | ||
89 | and $this_really_really_really_long_condition) | ||
90 | { | ||
91 | # do something | ||
92 | } | ||
93 | |||
94 | p) Do things the most readable way. For instance: | ||
95 | |||
96 | open(FOO, $foo) or die "Can't open $foo: $!"; | ||
97 | |||
98 | is better than | ||
99 | |||
100 | die "Can't open $foo: $!" unless open(FOO, $foo); | ||
101 | |||
102 | because the second way hides the main point of the statement in a modifier. | ||
103 | |||
104 | q) Just because an operator lets you assume default arguments doesn't mean | ||
105 | that you should always use them. The defaults are there for lazy programmers | ||
106 | writing one-shot, non-shared programs. If you want your program to be readable, | ||
107 | consider supplying the argument. | ||
108 | |||
109 | r) Choose mnemonic identifiers. That is, don't name your variables $h, $c | ||
110 | and $w. Try $hostaddress, $critical and $warning instead ($host, $crit and | ||
111 | $warn is OK too). | ||
112 | |||
113 | s) Use underscore to split words in long identifiers. That is, use | ||
114 | $service_port instead of $ServicePort as the former is much more readable. | ||
115 | |||
116 | *) Always check the return code of system calls. | ||