Changes between Version 1 and Version 2 of CodingStyle
- Timestamp:
- Apr 25, 2007, 12:34:34 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStyle
v1 v2 1 1 = BOINC coding style = 2 3 2 4 3 == All languages == … … 11 10 * C++ .h files often contain both interface and implementation. Clearly divide these. 12 11 13 14 12 === Code documentation === 15 13 16 * .C files have a comment at the top saying what's 14 * .C files have a comment at the top saying what's in the file (and perhaps what isn't). 17 15 * Functions are preceded by a comment saying what they do. 18 16 * Structs and classes are preceded by a comment saying what they are. 19 17 20 21 18 === Naming === 22 19 23 * Names should be descriptive without being verbose 20 * Names should be descriptive without being verbose (local variables names may be short) 24 21 * Class and type names, and #defined symbols, are all upper case, with underscores to separate words. 25 * Variable and function names are all lower case, 22 * Variable and function names are all lower case, with underscores to separate words. 26 23 * No mixed case names 27 24 28 29 === Indentation === 25 === Indentation === 30 26 31 27 * Each level of indentation is 4 spaces (not a tab). 32 28 * multi-line function call: 33 29 {{{ 34 35 36 37 38 30 func( 31 blah, blah, blah, blah, blah, 32 blah, blah, blah, blah, blah 33 ); 34 }}} 39 35 * switch statements: case labels are at same indent level as switch 40 36 {{{ 41 42 43 44 45 46 47 48 49 37 switch (foo) { 38 case 1: 39 ... 40 break; 41 case 2: 42 ... 43 break; 44 } 45 }}} 50 46 47 === Constants === 51 48 52 === Constants === 49 There should be few numeric constants in code. Generally they should be `#define`s. 53 50 54 55 56 === Braces === 51 === Braces === 57 52 58 53 * Opening curly brace goes at end of line (not next line): 59 54 {{{ 60 61 62 63 64 65 66 67 55 if (foobar) { 56 ... 57 } else if (blah) { 58 ... 59 } else { 60 ... 61 } 62 }}} 68 63 * always use curly braces on multi-line if statements 69 64 {{{ 70 71 return blah;// WRONG72 65 if (foo) 66 return blah; // WRONG 67 }}} 73 68 * 1-line if() statments are OK: 74 69 {{{ 75 76 70 if (foo) return blah; 71 }}} 77 72 78 73 79 === comments and #ifdefs ===74 === Comments and #ifdefs === 80 75 81 * use //for all comments76 * use `//` for all comments 82 77 * comment out blocks of code as follows: 83 78 {{{ 84 85 86 87 79 #if 0 80 ... 81 #endif 82 }}} 88 83 84 == C++ specific == 89 85 90 == C++ specific==86 === Includes === 91 87 92 === Includes === 93 94 * A .C file should have the minimum set of #includes to get that particular file to compile (e.g. the includes needed by foo.C should be in foo.C, not foo.h) 88 * A .C file should have the minimum set of #includes to get that particular file to compile (e.g. the includes needed by foo.C should be in foo.C, not foo.h) 95 89 * Includes should go from general (<stdio.h>) to specific (thisfile.h) 96 90 91 === Extern declarations === 97 92 98 === extern declarations === 93 foo.h should have 'extern' declarations for all public functions and variables in foo.C There should be no 'extern' statements in .C files. 99 94 95 === Use of static === 100 96 97 * if a function or variable is used in only one file, declare it static. 101 98 102 === Use of static === 103 104 * if a function or variable is used only in 1 file, declare it static. 105 106 107 === Things to avoid unless there's a truly compelling reason: === 99 === Things to avoid unless there's a truly compelling reason: === 108 100 109 101 * inline functions … … 111 103 * templates 112 104 113 114 === Things to avoid === 105 === Things to avoid === 115 106 116 107 * use typedef (not #define) to define types 117 * don't use memset() or memcpy() to initialize or copy classes that are non-C compatible. 108 * don't use memset() or memcpy() to initialize or copy classes that are non-C compatible. Write a default constructor and a copy constructor. 118 109 110 === Error codes === 119 111 120 === error codes === 112 * (almost) all functions should return an integer error code. Nonzero means error. See lib/errornumbers.h for a list of error codes. 113 * Calls to functions that return an error code should check the code. Generally they should return on error, e.g.: 114 {{{ 115 retval = blah(); 116 if (retval) return retval; 117 }}} 121 118 122 * (almost) all functions should return an integer error code. Nonzero means error. See lib/errornumbers.h for a list of error codes. 123 * Calls to functions that return an error code should check the code. Generally they should return on error, e.g.: 124 {{{ 125 retval = blah(); 126 if (retval) return retval; 127 }}} 128 129 130 === structure definitions === 131 132 119 === Structure definitions === 133 120 134 121 {{{ 122 struct FOO { 123 ... 124 }; 125 }}} 126 You can then declare variables as: 127 {{{ 128 FOO x; 129 }}} 135 130 136 struct FOO { 137 ... 138 }; 139 }}} 140 You can then declare variables as: 141 {{{ 142 FOO x; 143 }}} 144 145 == PHP specific == 131 == PHP specific == 146 132 147 133 === Getting POST and GET data === 148 149 * Do not access $_POST or $_GETdirectly.150 * Use get_int(), get_str(), post_int() and post_str() (from util.inc) to get POST and GET data.151 * If a POST or GET value will be used in a SQL query, use process_user_text()to escape it.134 Remember that hackers can pass arbitrary values in POST and GET, and they can use this to do SQL injections and other exploits. 135 * Do not access `$_POST` or `$_GET` directly. 136 * Use `get_int()`, `get_str()`, `post_int()` and `post_str()` (from `util.inc`) to get POST and GET data. 137 * If a POST or GET value will be used in a SQL query, use `process_user_text()` to escape it. 152 138