Home | History | Annotate | Line # | Download | only in misc
style revision 1.19
      1  1.19   kleink /* $NetBSD: style,v 1.19 2001/10/23 18:45:13 kleink Exp $ */
      2   1.6  thorpej 
      3   1.1      cgd /*
      4  1.12    lukem  * The revision control tag appears first, with a blank line after it.
      5  1.12    lukem  * Copyright text appears after the revision control tag.
      6  1.12    lukem  */
      7  1.12    lukem 
      8  1.12    lukem /*
      9  1.12    lukem  * The NetBSD source code style guide.
     10  1.12    lukem  * (Previously known as KNF - Kernel Normal Form).
     11   1.1      cgd  *
     12   1.2      cgd  *	from: @(#)style	1.12 (Berkeley) 3/18/94
     13  1.10   scottr  */
     14  1.10   scottr /*
     15  1.10   scottr  * An indent(1) profile approximating the style outlined in
     16  1.10   scottr  * this document lives in /usr/share/misc/indent.pro.  It is a
     17  1.10   scottr  * useful tool to assist in converting code to KNF, but indent(1)
     18  1.10   scottr  * output generated using this profile must not be considered to
     19  1.10   scottr  * be an authoritative reference.
     20   1.1      cgd  */
     21   1.1      cgd 
     22   1.1      cgd /*
     23  1.12    lukem  * Source code revision control identifiers appear after any copyright
     24  1.12    lukem  * text.  Use the appropriate macros from <sys/cdefs.h>.  Usually only one
     25  1.12    lukem  * source file per program contains a __COPYRIGHT() section.
     26  1.12    lukem  * Historic Berkeley code may also have an __SCCSID() section.
     27  1.12    lukem  * Only one instance of each of these macros can occur in each file.
     28  1.12    lukem  */
     29  1.12    lukem #include <sys/cdefs.h>
     30  1.12    lukem #ifndef __lint
     31  1.12    lukem __COPYRIGHT("@(#) Copyright (c) 2000\n\
     32  1.12    lukem 	The NetBSD Foundation, inc. All rights reserved.\n");
     33  1.19   kleink __RCSID("$NetBSD: style,v 1.19 2001/10/23 18:45:13 kleink Exp $");
     34  1.12    lukem #endif /* !__lint */
     35  1.12    lukem 
     36  1.12    lukem /*
     37   1.1      cgd  * VERY important single-line comments look like this.
     38   1.1      cgd  */
     39   1.1      cgd 
     40   1.1      cgd /* Most single-line comments look like this. */
     41   1.1      cgd 
     42   1.1      cgd /*
     43   1.1      cgd  * Multi-line comments look like this.  Make them real sentences.  Fill
     44   1.1      cgd  * them so they look like real paragraphs.
     45   1.1      cgd  */
     46   1.1      cgd 
     47   1.2      cgd /*
     48  1.12    lukem  * Attempt to wrap lines longer than 80 characters appropriately.
     49  1.12    lukem  * Refer to the examples below for more information.
     50  1.12    lukem  */
     51  1.12    lukem 
     52  1.12    lukem /*
     53  1.12    lukem  * EXAMPLE HEADER FILE:
     54  1.12    lukem  *
     55  1.12    lukem  * A header file should protect itself against multiple inclusion.
     56  1.12    lukem  * E.g, <sys/socket.h> would contain something like:
     57  1.12    lukem  */
     58  1.12    lukem #ifndef _SYS_SOCKET_H_
     59  1.12    lukem #define _SYS_SOCKET_H_
     60  1.12    lukem /*
     61  1.12    lukem  * Contents of #include file go between the #ifndef and the #endif at the end.
     62  1.12    lukem  */
     63  1.12    lukem #endif /* !_SYS_SOCKET_H_ */
     64  1.12    lukem /*
     65  1.12    lukem  * END OF EXAMPLE HEADER FILE.
     66  1.12    lukem  */
     67  1.12    lukem 
     68  1.12    lukem /*
     69  1.12    lukem  * Kernel include files come first.
     70   1.2      cgd  */
     71   1.2      cgd #include <sys/types.h>		/* Non-local includes in brackets. */
     72   1.2      cgd 
     73  1.12    lukem /*
     74  1.12    lukem  * If it's a network program, put the network include files next.
     75  1.12    lukem  * Group the includes files by subdirectory.
     76  1.12    lukem  */
     77   1.2      cgd #include <net/if.h>
     78   1.2      cgd #include <net/if_dl.h>
     79   1.2      cgd #include <net/route.h>
     80   1.2      cgd #include <netinet/in.h>
     81   1.2      cgd #include <protocols/rwhod.h>
     82   1.2      cgd 
     83   1.2      cgd /*
     84   1.2      cgd  * Then there's a blank line, followed by the /usr include files.
     85   1.2      cgd  * The /usr include files should be sorted!
     86   1.2      cgd  */
     87   1.2      cgd #include <stdio.h>
     88  1.18      cgd #include <stdlib.h>
     89   1.1      cgd 
     90   1.1      cgd /*
     91   1.1      cgd  * Global pathnames are defined in /usr/include/paths.h.  Pathnames local
     92   1.1      cgd  * to the program go in pathnames.h in the local directory.
     93   1.1      cgd  */
     94   1.2      cgd #include <paths.h>
     95   1.2      cgd 
     96   1.2      cgd /* Then, there's a blank line, and the user include files. */
     97  1.12    lukem #include "pathnames.h"		/* Local includes in double quotes. */
     98   1.1      cgd 
     99   1.1      cgd /*
    100   1.2      cgd  * ANSI function declarations for private functions (i.e. functions not used
    101  1.12    lukem  * elsewhere) and the main() function go at the top of the source module.
    102  1.12    lukem  * Don't associate a name with the types.  I.e. use:
    103  1.12    lukem  *	void function(int);
    104  1.12    lukem  * Use your discretion on indenting between the return type and the name, and
    105  1.12    lukem  * how to wrap a prototype too long for a single line.  In the latter case,
    106  1.15    lukem  * lining up under the initial left parenthesis may be more readable.
    107  1.12    lukem  * In any case, consistency is important!
    108  1.12    lukem  */
    109  1.12    lukem static char *function(int, int, float, int);
    110  1.12    lukem static int dirinfo(const char *, struct stat *, struct dirent *,
    111  1.12    lukem 		   struct statfs *, int *, char **[]);
    112  1.12    lukem static void usage(void);
    113  1.12    lukem int main(int, char *[]);
    114   1.1      cgd 
    115   1.1      cgd /*
    116   1.1      cgd  * Macros are capitalized, parenthesized, and should avoid side-effects.
    117   1.1      cgd  * If they are an inline expansion of a function, the function is defined
    118  1.12    lukem  * all in lowercase, the macro has the same name all in uppercase.
    119  1.12    lukem  * If the macro is an expression, wrap the expression in parenthesis.
    120  1.12    lukem  * If the macro is more than a single statement, use ``do { ... } while (0)'',
    121  1.12    lukem  * so that a trailing semicolon works.  Right-justify the backslashes; it
    122  1.13    lukem  * makes it easier to read. The CONSTCOND comment is to satisfy lint(1).
    123  1.12    lukem  */
    124  1.12    lukem #define	MACRO(v, w, x, y)						\
    125  1.12    lukem do {									\
    126  1.12    lukem 	v = (x) + (y);							\
    127  1.12    lukem 	w = (y) + 2;							\
    128  1.12    lukem } while (/* CONSTCOND */ 0)
    129  1.12    lukem 
    130  1.15    lukem #define	DOUBLE(x) ((x) * 2)
    131  1.12    lukem 
    132  1.12    lukem /* Enum types are capitalized.  No comma on the last element. */
    133  1.12    lukem enum enumtype {
    134  1.12    lukem 	ONE,
    135  1.12    lukem 	TWO
    136  1.12    lukem } et;
    137  1.12    lukem 
    138  1.12    lukem /*
    139  1.16    enami  * When declaring variables in structures, declare them organized by use in
    140  1.16    enami  * a manner to attempt to minimize memory wastage because of compiler alignment
    141  1.12    lukem  * issues, then by size, and then by alphabetical order. E.g, don't use
    142  1.12    lukem  * ``int a; char *b; int c; char *d''; use ``int a; int b; char *c; char *d''.
    143  1.12    lukem  * Each variable gets its own type and line, although an exception can be made
    144  1.12    lukem  * when declaring bitfields (to clarify that it's part of the one bitfield).
    145  1.12    lukem  * Note that the use of bitfields in general is discouraged.
    146   1.1      cgd  *
    147   1.2      cgd  * Major structures should be declared at the top of the file in which they
    148   1.2      cgd  * are used, or in separate header files, if they are used in multiple
    149   1.2      cgd  * source files.  Use of the structures should be by separate declarations
    150   1.1      cgd  * and should be "extern" if they are declared in a header file.
    151  1.12    lukem  *
    152  1.12    lukem  * It may be useful to use a meaningful prefix for each member name.
    153  1.12    lukem  * E.g, for ``struct softc'' the prefix could be ``sc_''.
    154   1.1      cgd  */
    155   1.1      cgd struct foo {
    156  1.12    lukem 	struct foo *next;	/* List of active foo */
    157  1.12    lukem 	struct mumble amumble;	/* Comment for mumble */
    158  1.12    lukem 	int bar;
    159  1.12    lukem 	unsigned int baz:1,	/* Bitfield; line up entries if desired */
    160  1.12    lukem 		     fuz:5,
    161  1.12    lukem 		     zap:2;
    162  1.12    lukem 	u_int8_t flag;
    163   1.1      cgd };
    164   1.1      cgd struct foo *foohead;		/* Head of global foo list */
    165   1.2      cgd 
    166   1.2      cgd /* Make the structure name match the typedef. */
    167  1.12    lukem typedef struct BAR {
    168  1.12    lukem 	int level;
    169   1.2      cgd } BAR;
    170  1.12    lukem 
    171   1.1      cgd /*
    172   1.1      cgd  * All major routines should have a comment briefly describing what
    173   1.2      cgd  * they do.  The comment before the "main" routine should describe
    174   1.1      cgd  * what the program does.
    175   1.1      cgd  */
    176   1.2      cgd int
    177  1.12    lukem main(int argc, char *argv[])
    178   1.1      cgd {
    179   1.1      cgd 	long num;
    180   1.1      cgd 	int ch;
    181   1.1      cgd 	char *ep;
    182   1.1      cgd 
    183   1.1      cgd 	/*
    184  1.17      cgd 	 * At the start of main(), call setprogname() to set the program
    185  1.17      cgd 	 * name.  This does nothing on NetBSD, but increases portability
    186  1.17      cgd 	 * to other systems.
    187  1.17      cgd 	 */
    188  1.17      cgd 	setprogname(argv[0]);
    189  1.17      cgd 
    190  1.17      cgd 	/*
    191   1.2      cgd 	 * For consistency, getopt should be used to parse options.  Options
    192   1.2      cgd 	 * should be sorted in the getopt call and the switch statement, unless
    193   1.2      cgd 	 * parts of the switch cascade.  Elements in a switch statement that
    194   1.2      cgd 	 * cascade should have a FALLTHROUGH comment.  Numerical arguments
    195   1.2      cgd 	 * should be checked for accuracy.  Code that cannot be reached should
    196   1.2      cgd 	 * have a NOTREACHED comment.
    197   1.1      cgd 	 */
    198  1.12    lukem 	while ((ch = getopt(argc, argv, "abn")) != -1) {
    199   1.1      cgd 		switch (ch) {		/* Indent the switch. */
    200   1.1      cgd 		case 'a':		/* Don't indent the case. */
    201   1.1      cgd 			aflag = 1;
    202   1.1      cgd 			/* FALLTHROUGH */
    203   1.1      cgd 		case 'b':
    204   1.1      cgd 			bflag = 1;
    205   1.1      cgd 			break;
    206   1.1      cgd 		case 'n':
    207   1.1      cgd 			num = strtol(optarg, &ep, 10);
    208  1.12    lukem 			if (num <= 0 || *ep != '\0')
    209  1.12    lukem 				errx(1, "illegal number -- %s", optarg);
    210   1.1      cgd 			break;
    211   1.1      cgd 		case '?':
    212   1.1      cgd 		default:
    213   1.1      cgd 			usage();
    214   1.2      cgd 			/* NOTREACHED */
    215   1.1      cgd 		}
    216  1.12    lukem 	}
    217   1.1      cgd 	argc -= optind;
    218   1.1      cgd 	argv += optind;
    219   1.1      cgd 
    220   1.1      cgd 	/*
    221   1.1      cgd 	 * Space after keywords (while, for, return, switch).  No braces are
    222  1.12    lukem 	 * used for control statements with zero or only a single statement,
    223  1.12    lukem 	 * unless it's a long statement.
    224   1.1      cgd 	 *
    225   1.1      cgd 	 * Forever loops are done with for's, not while's.
    226   1.1      cgd 	 */
    227  1.12    lukem 	for (p = buf; *p != '\0'; ++p)
    228  1.12    lukem 		continue;		/* Explicit no-op */
    229   1.1      cgd 	for (;;)
    230   1.1      cgd 		stmt;
    231  1.12    lukem 
    232   1.1      cgd 	/*
    233   1.2      cgd 	 * Parts of a for loop may be left empty.  Don't put declarations
    234   1.2      cgd 	 * inside blocks unless the routine is unusually complicated.
    235   1.1      cgd 	 */
    236   1.1      cgd 	for (; cnt < 15; cnt++) {
    237   1.1      cgd 		stmt1;
    238   1.1      cgd 		stmt2;
    239   1.1      cgd 	}
    240   1.1      cgd 
    241   1.2      cgd 	/* Second level indents are four spaces. */
    242   1.2      cgd 	while (cnt < 20)
    243  1.16    enami 		z = a + really + long + statement + that + needs + two lines +
    244   1.1      cgd 		    gets + indented + four + spaces + on + the + second +
    245   1.7    enami 		    and + subsequent + lines;
    246   1.1      cgd 
    247   1.1      cgd 	/*
    248   1.2      cgd 	 * Closing and opening braces go on the same line as the else.
    249  1.12    lukem 	 * Don't add braces that aren't necessary except in cases where
    250  1.12    lukem 	 * there are ambiguity or readability issues.
    251   1.1      cgd 	 */
    252  1.12    lukem 	if (test) {
    253  1.12    lukem 		/*
    254  1.12    lukem 		 * I have a long comment here.
    255  1.12    lukem 		 */
    256  1.12    lukem #ifdef zorro
    257  1.12    lukem 		z = 1;
    258  1.12    lukem #else
    259  1.12    lukem 		b = 3;
    260  1.12    lukem #endif
    261  1.12    lukem 	} else if (bar) {
    262   1.1      cgd 		stmt;
    263   1.1      cgd 		stmt;
    264   1.1      cgd 	} else
    265   1.1      cgd 		stmt;
    266  1.12    lukem 
    267   1.2      cgd 	/* No spaces after function names. */
    268  1.12    lukem 	if ((result = function(a1, a2, a3, a4)) == NULL)
    269  1.12    lukem 		exit(1);
    270   1.1      cgd 
    271   1.1      cgd 	/*
    272  1.12    lukem 	 * Unary operators don't require spaces, binary operators do.
    273  1.12    lukem 	 * Don't excessively use parenthesis, but they should be used if
    274   1.9    lukem 	 * statement is really confusing without them, such as:
    275   1.9    lukem 	 * a = b->c[0] + ~d == (e || f) || g && h ? i : j >> 1;
    276   1.1      cgd 	 */
    277   1.9    lukem 	a = ((b->c[0] + ~d == (e || f)) || (g && h)) ? i : (j >> 1);
    278   1.2      cgd 	k = !(l & FLAGS);
    279   1.1      cgd 
    280   1.1      cgd 	/*
    281   1.1      cgd 	 * Exits should be 0 on success, and 1 on failure.  Don't denote
    282   1.1      cgd 	 * all the possible exit points, using the integers 1 through 300.
    283  1.12    lukem 	 * Avoid obvious comments such as "Exit 0 on success."
    284   1.1      cgd 	 */
    285  1.12    lukem 	exit(0);
    286   1.1      cgd }
    287   1.1      cgd 
    288   1.1      cgd /*
    289   1.8   simonb  * The function type must be declared on a line by itself
    290  1.16    enami  * preceding the function.
    291   1.1      cgd  */
    292   1.1      cgd static char *
    293  1.12    lukem function(int a1, int a2, float fl, int a4)
    294   1.1      cgd {
    295   1.1      cgd 	/*
    296   1.1      cgd 	 * When declaring variables in functions declare them sorted by size,
    297  1.12    lukem 	 * then in alphabetical order; multiple ones per line are okay.
    298  1.12    lukem 	 * Function prototypes should go in the include file "extern.h".
    299   1.1      cgd 	 * If a line overflows reuse the type keyword.
    300   1.1      cgd 	 *
    301   1.2      cgd 	 * DO NOT initialize variables in the declarations.
    302   1.1      cgd 	 */
    303   1.1      cgd 	extern u_char one;
    304   1.1      cgd 	extern char two;
    305   1.1      cgd 	struct foo three, *four;
    306   1.1      cgd 	double five;
    307  1.12    lukem 	int *six, seven;
    308  1.12    lukem 	char *eight, *nine, ten, eleven, twelve, thirteen;
    309  1.12    lukem 	char fourteen, fifteen, sixteen;
    310   1.1      cgd 
    311   1.1      cgd 	/*
    312   1.1      cgd 	 * Casts and sizeof's are not followed by a space.  NULL is any
    313   1.1      cgd 	 * pointer type, and doesn't need to be cast, so use NULL instead
    314   1.1      cgd 	 * of (struct foo *)0 or (struct foo *)NULL.  Also, test pointers
    315  1.12    lukem 	 * against NULL.  I.e. use:
    316   1.1      cgd 	 *
    317  1.12    lukem 	 *	(p = f()) == NULL
    318   1.1      cgd 	 * not:
    319   1.1      cgd 	 *	!(p = f())
    320   1.2      cgd 	 *
    321  1.12    lukem 	 * Don't use `!' for tests unless it's a boolean.
    322  1.12    lukem 	 * E.g. use "if (*p == '\0')", not "if (!*p)".
    323  1.12    lukem 	 *
    324   1.1      cgd 	 * Routines returning void * should not have their return values cast
    325   1.1      cgd 	 * to any pointer type.
    326   1.2      cgd 	 *
    327   1.2      cgd 	 * Use err/warn(3), don't roll your own!
    328   1.1      cgd 	 */
    329   1.1      cgd 	if ((four = malloc(sizeof(struct foo))) == NULL)
    330   1.2      cgd 		err(1, NULL);
    331   1.1      cgd 	if ((six = (int *)overflow()) == NULL)
    332   1.2      cgd 		errx(1, "Number overflowed.");
    333   1.1      cgd 	return (eight);
    334   1.1      cgd }
    335   1.1      cgd 
    336   1.2      cgd /*
    337  1.12    lukem  * Use ANSI function declarations.  ANSI function braces look like
    338  1.12    lukem  * old-style (K&R) function braces.
    339  1.12    lukem  * As per the wrapped prototypes, use your discretion on how to format
    340  1.12    lukem  * the subsequent lines.
    341  1.12    lukem  */
    342  1.12    lukem static int
    343  1.12    lukem dirinfo(const char *p, struct stat *sb, struct dirent *de, struct statfs *sf,
    344  1.12    lukem 	int *rargc, char **rargv[])
    345  1.12    lukem {	/* Insert an empty line if the function has no local variables. */
    346  1.19   kleink 
    347  1.19   kleink 	/*
    348  1.19   kleink 	 * In system libraries, catch obviously invalid function arguments
    349  1.19   kleink 	 * using _DIAGASSERT(3).
    350  1.19   kleink 	 */
    351  1.19   kleink 	_DIAGASSERT(p != NULL);
    352  1.19   kleink 	_DIAGASSERT(filedesc != -1);
    353  1.12    lukem 
    354  1.14    lukem 	if (stat(p, sb) < 0)
    355  1.14    lukem 		err(1, "Unable to stat %s", p);
    356  1.14    lukem 
    357  1.14    lukem 	/*
    358  1.14    lukem 	 * To printf 64 bit quantities, use %ll and cast to (long long).
    359  1.14    lukem 	 */
    360  1.14    lukem 	printf("The size of %s is %lld\n", p, (long long)sb->st_size);
    361   1.2      cgd }
    362   1.2      cgd 
    363  1.12    lukem /*
    364  1.12    lukem  * Functions that support variable numbers of arguments should look like this.
    365  1.12    lukem  * (With the #include <stdarg.h> appearing at the top of the file with the
    366  1.12    lukem  * other include files).
    367  1.12    lukem  */
    368   1.2      cgd #include <stdarg.h>
    369   1.2      cgd 
    370   1.2      cgd void
    371   1.2      cgd vaf(const char *fmt, ...)
    372   1.2      cgd {
    373   1.2      cgd 	va_list ap;
    374  1.12    lukem 
    375   1.2      cgd 	va_start(ap, fmt);
    376   1.2      cgd 	STUFF;
    377  1.12    lukem 	va_end(ap);
    378  1.12    lukem 				/* No return needed for void functions. */
    379   1.1      cgd }
    380   1.1      cgd 
    381   1.1      cgd static void
    382  1.12    lukem usage(void)
    383  1.12    lukem {
    384   1.1      cgd 
    385   1.1      cgd 	/*
    386   1.1      cgd 	 * Use printf(3), not fputs/puts/putchar/whatever, it's faster and
    387   1.1      cgd 	 * usually cleaner, not to mention avoiding stupid bugs.
    388  1.12    lukem 	 * Use snprintf(3) or strlcpy(3)/strlcat(3) instead of sprintf(3);
    389  1.12    lukem 	 * again to avoid stupid bugs.
    390   1.1      cgd 	 *
    391   1.1      cgd 	 * Usage statements should look like the manual pages.  Options w/o
    392   1.1      cgd 	 * operands come first, in alphabetical order inside a single set of
    393   1.1      cgd 	 * braces.  Followed by options with operands, in alphabetical order,
    394   1.1      cgd 	 * each in braces.  Followed by required arguments in the order they
    395   1.1      cgd 	 * are specified, followed by optional arguments in the order they
    396  1.12    lukem 	 * are specified.  A bar (`|') separates either/or options/arguments,
    397   1.1      cgd 	 * and multiple options/arguments which are specified together are
    398   1.1      cgd 	 * placed in a single set of braces.
    399   1.1      cgd 	 *
    400  1.17      cgd 	 * Use getprogname() instead of hardcoding the program name.
    401  1.12    lukem 	 *
    402   1.1      cgd 	 * "usage: f [-ade] [-b b_arg] [-m m_arg] req1 req2 [opt1 [opt2]]\n"
    403   1.1      cgd 	 * "usage: f [-a | -b] [-c [-de] [-n number]]\n"
    404   1.1      cgd 	 */
    405  1.17      cgd 	(void)fprintf(stderr, "usage: %s [-ab]\n", getprogname());
    406   1.1      cgd 	exit(1);
    407   1.1      cgd }
    408