update developer manual for new types
[openocd.git] / doc / manual / style.txt
1 /** @page styleguide Style Guides
2
3 The goals for each of these guides are:
4 - to produce correct code that appears clean, consistent, and readable,
5 - to allow developers to create patches that conform to a standard, and
6 - to eliminate these issues as points of future contention.
7
8 Some of these rules may be ignored in the spirit of these stated goals;
9 however, such exceptions should be fairly rare.
10
11 The following style guides describe a formatting, naming, and other
12 conventions that should be followed when writing or changing the OpenOCD
13 code:
14
15 - @subpage styletcl
16 - @subpage stylec
17 - @subpage styleperl
18 - @subpage styleautotools
19
20 In addition, the following style guides provide information for
21 providing documentation, either as part of the C code or stand-alone.
22
23 - @subpage styledoxygen
24 - @subpage styletexinfo
25 - @subpage stylelatex
26
27 Feedback would be welcome to improve the OpenOCD guidelines.
28
29 */
30 /** @page styletcl TCL Style Guide
31
32 OpenOCD needs to expand its Jim/TCL Style Guide.
33
34 Many of the guidelines listed on the @ref stylec page should apply to
35 OpenOCD's Jim/TCL code as well.
36
37 */
38 /** @page stylec C Style Guide
39
40 This page contains guidelines for writing new C source code for the
41 OpenOCD project.
42
43 @section styleformat Formatting Guide
44
45 - remove any trailing white space at the end of lines.
46 - use TAB characters for indentation; do NOT use spaces.
47 - displayed TAB width is 4 characters.
48 - use Unix line endings ('\\n'); do NOT use DOS endings ('\\r\\n')
49 - limit adjacent empty lines to at most two (2).
50 - remove any trailing empty lines at the end of source files
51 - do not "comment out" code from the tree; instead, one should either:
52 -# remove it entirely (git can retrieve the old version), or
53 -# use an @c \#if/\#endif block.
54
55 Finally, try to avoid lines of code that are longer than than 72-80 columns:
56
57 - long lines frequently indicate other style problems:
58 - insufficient use of static functions, macros, or temporary variables
59 - poor flow-control structure; "inverted" logical tests
60 - a few lines may be wider than this limit (typically format strings), but:
61 - all C compilers will concatenate series of string constants.
62 - all long string constants should be split across multiple lines.
63
64 @section stylenames Naming Rules
65
66 - most identifiers must use lower-case letters (and digits) only.
67 - macros must use upper-case letters (and digits) only.
68 - OpenOCD identifiers should NEVER use @c MixedCaps.
69 - @c typedef names must end with the '_t' suffix.
70 - This should be reserved for types that should be passed by value.
71 - Do @b not mix the typedef keyword with @c struct.
72 - use underline characters between consecutive words in identifiers
73 (e.g. @c more_than_one_word).
74
75 @section stylec99 C99 Rules
76
77 - inline functions
78 - @c // comments -- in new code, prefer these for single-line comments
79 - trailing comma allowed in enum declarations
80 - designated initializers (@{ .field = value @})
81 - variables declarations should occur at the point of first use
82 - new block scopes for selection and iteration statements
83
84 @section styletypes Type Guidelines
85 - use native types (@c int or @c unsigned) if the type is not important
86 - if size matters, use the types from \<stdint.h\> or \<inttypes.h\>:
87 - @c int8_t, @c int16_t, @c int32_t, or @c int64_t: signed types of specified size
88 - @c uint8_t, @c uint16_t, @c uint32_t, or @c uint64_t: unsigned types of specified size
89 - do @b NOT redefine @c uN types from "types.h"
90
91 @section stylefunc Functions
92
93 - static inline functions should be prefered over macros:
94 @code
95 /** do NOT define macro-like functions like this... */
96 #define CUBE(x) ((x) * (x) * (x))
97 /** instead, define the same expression using a C99 inline function */
98 static inline int cube(int x) { return x * x * x; }
99 @endcode
100 - Functions should be declared static unless required by other modules
101 - define static functions before first usage to avoid forward declarations.
102 - Functions should have no space between its name and its parameter list:
103 @code
104 int f(int x1, int x2)
105 {
106 ...
107 int y = f(x1, x2 - x1);
108 ...
109 }
110 @endcode
111 - Separate assignment and logical test statements. In other words, you
112 should write statements like the following:
113 @code
114 // separate statements should be preferred
115 result = foo();
116 if (ERROR_OK != result)
117 ...
118 @endcode
119 More directly, do @b not combine these kinds of statements:
120 @code
121 // Combined statements should be avoided
122 if (ERROR_OK != (result = foo()))
123 return result;
124 @endcode
125
126 */
127 /** @page styledoxygen Doxygen Style Guide
128
129 The following sections provide guidelines for OpenOCD developers
130 who wish to write Doxygen comments in the code or this manual.
131 For an introduction to Doxygen documentation,
132 see the @ref primerdoxygen.
133
134 @section styledoxyblocks Doxygen Block Selection
135
136 Several different types of Doxygen comments can be used; often,
137 one style will be the most appropriate for a specific context.
138 The following guidelines provide developers with heuristics for
139 selecting an appropriate form and writing consistent documentation
140 comments.
141
142 -# use @c /// to for one-line documentation of instances.
143 -# for documentation requiring multiple lines, use a "block" style:
144 @verbatim
145 /**
146 * @brief First sentence is short description. Remaining text becomes
147 * the full description block, where "empty" lines start new paragraphs.
148 *
149 * One can make text appear in @a italics, @b bold, @c monospace, or
150 * in blocks such as the one in which this example appears in the Style
151 * Guide. See the Doxygen Manual for the full list of commands.
152 *
153 * @param foo For a function, describe the parameters (e.g. @a foo).
154 * @returns The value(s) returned, or possible error conditions.
155 */
156 @endverbatim
157 -# The block should start on the line following the opening @c /**.
158 -# The end of the block, \f$*/\f$, should also be on its own line.
159 -# Every line in the block should have a @c '*' in-line with its start:
160 - A leading space is required to align the @c '*' with the @c /** line.
161 - A single "empty" line should separate the function documentation
162 from the block of parameter and return value descriptions.
163 - Except to separate paragraphs of documentation, other extra
164 "empty" lines should be removed from the block.
165 -# Only single spaces should be used; do @b not add mid-line indentation.
166 -# If the total line length will be less than 72-80 columns, then
167 - The @c /**< form can be used on the same line.
168 - This style should be used sparingly; the best use is for fields:
169 @code int field; /**< field description */ @endcode
170
171 @section styledoxyall Doxygen Style Guide
172
173 The following guidelines apply to all Doxygen comment blocks:
174
175 -# Use the @c '\@cmd' form for all doxygen commands (do @b not use @c '\\cmd').
176 -# Use symbol names such that Doxygen automatically creates links:
177 -# @c function_name() can be used to reference functions
178 (e.g. flash_set_dirty()).
179 -# @c struct_name::member_name should be used to reference structure
180 fields in the documentation (e.g. @c flash_driver::name).
181 -# URLS get converted to markup automatically, without any extra effort.
182 -# new pages can be linked into the heirarchy by using the @c \@subpage
183 command somewhere the page(s) under which they should be linked:
184 -# use @c \@ref in other contexts to create links to pages and sections.
185 -# Use good Doxygen mark-up:
186 -# '\@a' (italics) should be used to reference parameters (e.g. <i>foo</i>).
187 -# '\@b' (bold) should be used to emphasizing <b>single</b> words.
188 -# '\@c' (monospace) should be used with <code>file names</code> and
189 <code>code symbols</code>, so they appear visually distinct from
190 surrounding text.
191 -# To mark-up multiple words, the HTML alternatives must be used.
192 -# Two spaces should be used when nesting lists; do @b not use '\\t' in lists.
193 -# Code examples provided in documentation must conform to the Style Guide.
194
195 @section styledoxytext Doxygen Text Inputs
196
197 In addition to the guidelines in the preceding sections, the following
198 additional style guidelines should be considered when writing
199 documentation as part of standalone text files:
200
201 -# Text files must contain Doxygen at least one comment block:
202 -# Documentation should begin in the first column (except for nested lists).
203 -# Do NOT use the @c '*' convention that must be used in the source code.
204 -# Each file should contain at least one @c \@page block.
205 -# Each new page should be listed as a \@subpage in the \@page block
206 of the page that should serve as its parent.
207 -# Large pages should be structure in parts using meaningful \@section
208 and \@subsection commands.
209 -# Include a @c \@file block at the end of each Doxygen @c .txt file to
210 document its contents:
211 - Doxygen creates such pages for files automatically, but no content
212 will appear on them for those that only contain manual pages.
213 - The \@file block should provide useful meta-documentation to assist
214 techincal writers; typically, a list of the pages that it contains.
215 - For example, the @ref styleguide exists in @c doc/manual/style.txt,
216 which contains a reference back to itself.
217 -# The \@file and \@page commands should begin on the same line as
218 the start of the Doxygen comment:
219 @verbatim
220 /** @page pagename Page Title
221
222 Documentation for the page.
223
224 */
225 /** @file
226
227 This file contains the @ref pagename page.
228
229 */
230 @endverbatim
231
232 For an example, the Doxygen source for this Style Guide can be found in
233 @c doc/manual/style.txt, alongside other parts of The Manual.
234
235 */
236 /** @page styletexinfo Texinfo Style Guide
237
238 The User's Guide is there to provide two basic kinds of information. It
239 is a guide for how and why to use each feature or mechanism of OpenOCD.
240 It is also the reference manual for all commands and options involved
241 in using them, including interface, flash, target, and other drivers.
242 At this time, it is the only user-targetted documentation; everything
243 else is addressing OpenOCD developers.
244
245 There are two key audiences for the User's Guide, both developer based.
246 The primary audience is developers using OpenOCD as a tool in their
247 work, or who may be starting to use it that way. A secondary audience
248 includes developers who are supporting those users by packaging or
249 customizing it for their hardware, installing it as part of some software
250 distribution, or by evolving OpenOCD itself. There is some crossover
251 between those audiences. We encourage contributions from users as the
252 fundamental way to evolve and improve OpenOCD. In particular, creating
253 a board or target specific configuration file is something that many
254 users will end up doing at some point, and we like to see such files
255 become part of the mainline release.
256
257 General documentation rules to remember include:
258
259 - Be concise and clear. It's work to remove those extra words and
260 sentences, but such "noise" doesn't help readers.
261 - Make it easy to skim and browse. "Tell what you're going to say,
262 then say it". Help readers decide whether to dig in now, or
263 leave it for later.
264 - Make sure the chapters flow well. Presentations should not jump
265 around, and should move easily from overview down to details.
266 - Avoid using the passive voice.
267 - Address the reader to clarify roles ("your config file", "the board you
268 are debugging", etc.); "the user" (etc) is artificial.
269 - Use good English grammar and spelling. Remember also that English
270 will not be the first language for many readers. Avoid complex or
271 idiomatic usage that could create needless barriers.
272 - Use examples to highlight fundamental ideas and common idioms.
273 - Don't overuse list constructs. This is not a slide presentation;
274 prefer paragraphs.
275
276 When presenting features and mechanisms of OpenOCD:
277
278 - Explain key concepts before presenting commands using them.
279 - Tie examples to common developer tasks.
280 - When giving instructions, you can \@enumerate each step both
281 to clearly delineate the steps, and to highlight that this is
282 not explanatory text.
283 - When you provide "how to use it" advice or tutorials, keep it
284 in separate sections from the reference material.
285 - Good indexing is something of a black art. Use \@cindex for important
286 concepts, but don't overuse it. In particular, rely on the \@deffn
287 indexing, and use \@cindex primarily with significant blocks of text
288 such as \@subsection. The \@dfn of a key term may merit indexing.
289 - Use \@xref (and \@anchor) with care. Hardcopy versions, from the PDF,
290 must make sense without clickable links (which don't work all that well
291 with Texinfo in any case). If you find you're using many links,
292 read that as a symptom that the presentation may be disjointed and
293 confusing.
294 - Avoid font tricks like \@b, but use \@option, \@file, \@dfn, \@emph
295 and related mechanisms where appropriate.
296
297 For technical reference material:
298
299 - It's OK to start sections with explanations and end them with
300 detailed lists of the relevant commands.
301 - Use the \@deffn style declarations to define all commands and drivers.
302 These will automatically appear in the relevant index, and those
303 declarations help promote consistent presentation and style.
304 - It's a "Command" if it can be used interactively.
305 - Else it's a "Config Command" if it must be used before the
306 configuration stage completes.
307 - For a "Driver", list its name.
308 - Use BNF style regular expressions to define parameters:
309 brackets around zero-or-one choices, parentheses around
310 exactly-one choices.
311 - Use \@option, \@file, \@var and other mechanisms where appropriate.
312 - Say what output it displays, and what value it returns to callers.
313 - Explain clearly what the command does. Sometimes you will find
314 that it can't be explained clearly. That usually means the command
315 is poorly designed; replace it with something better, if you can.
316 - Be complete: document all commands, except as part of a strategy
317 to phase something in or out.
318 - Be correct: review the documentation against the code, and
319 vice versa.
320 - Alphabetize the \@defn declarations for all commands in each
321 section.
322 - Keep the per-command documentation focussed on exactly what that
323 command does, not motivation, advice, suggestions, or big examples.
324 When commands deserve such expanded text, it belongs elsewhere.
325 Solutions might be using a \@section explaining a cluster of related
326 commands, or acting as a mini-tutorial.
327 - Details for any given driver should be grouped together.
328
329 The User's Guide is the first place most users will start reading,
330 after they begin using OpenOCD. Make that investment of their time
331 be as productive as possible. Needing to look at OpenOCD source code,
332 to figure out how to use it is a bad sign, though it's OK to need to
333 look at the User's guide to figure out what a config script is doing.
334
335 */
336 /** @page stylelatex LaTeX Style Guide
337
338 This page needs to provide style guidelines for using LaTeX, the
339 typesetting language used by The References for OpenOCD Hardware.
340 Likewise, the @ref primerlatex for using this guide needs to be completed.
341
342 */
343 /** @page styleperl Perl Style Guide
344
345 This page provides some style guidelines for using Perl, a scripting
346 language used by several small tools in the tree:
347
348 -# Ensure all Perl scripts use the proper suffix (@c .pl for scripts, and
349 @c .pm for modules)
350 -# Pass files as script parameters or piped as input:
351 - Do NOT code paths to files in the tree, as this breaks out-of-tree builds.
352 - If you must, then you must also use an automake rule to create the script.
353 -# use @c '#!/usr/bin/perl' as the first line of Perl scripts.
354 -# always <code>use strict</code> and <code>use warnings</code>
355 -# invoke scripts indirectly in Makefiles or other scripts:
356 @code
357 perl script.pl
358 @endcode
359
360 Maintainers must also be sure to follow additional guidelines:
361 -# Ensure that Perl scripts are committed as executables:
362 Use "<code>chmod +x script.pl</code>"
363 @a before using "<code>git add script.pl</code>"
364
365 */
366 /** @page styleautotools Autotools Style Guide
367
368 This page contains style guidelines for the OpenOCD autotools scripts.
369
370 The following guidelines apply to the @c configure.in file:
371 - Better guidelines need to be developed, but until then...
372 - Use good judgement.
373
374 The following guidelines apply to @c Makefile.am files:
375 -# When assigning variables with long lists of items:
376 -# Separate the values on each line to make the files "patch friendly":
377 @code
378 VAR = \
379 value1 \
380 value2 \
381 ...
382 value9 \
383 value10
384 @endcode
385 */
386 /** @file
387
388 This file contains the @ref styleguide pages. The @ref styleguide pages
389 include the following Style Guides for their respective code and
390 documentation languages:
391
392 - @ref styletcl
393 - @ref stylec
394 - @ref styledoxygen
395 - @ref styletexinfo
396 - @ref stylelatex
397 - @ref styleperl
398 - @ref styleautotools
399
400 */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)