]> sigrok.org Git - sigrok-cli.git/blob - HACKING
94064f8765a037073b7a309eebda21f4f5aa9a66
[sigrok-cli.git] / HACKING
1 -------------------------------------------------------------------------------
2 HACKING
3 -------------------------------------------------------------------------------
4
5 Coding style
6 ------------
7
8 This project is programmed using the Linux kernel coding style:
9
10   https://www.kernel.org/doc/html/latest/process/coding-style.html
11
12 Please use the same style for any code contributions, thanks!
13
14
15 Contributions
16 -------------
17
18  - Patches should be sent to the development mailinglist at
19    sigrok-devel@lists.sourceforge.net (please subscribe to the list first).
20
21    https://lists.sourceforge.net/lists/listinfo/sigrok-devel
22
23  - Alternatively, you can also clone the git repository and let us know
24    from where to pull/review your changes. You can use gitorious.org,
25    github.com, or any other public git hosting site.
26
27
28 Random notes
29 ------------
30
31  - Consistently use g_try_malloc() / g_try_malloc0(). Do not use standard
32    malloc()/calloc() if it can be avoided (sometimes other libs such
33    as libftdi can return malloc()'d memory, for example).
34
35  - Always properly match allocations with the proper *free() functions. If
36    glib's g_try_malloc()/g_try_malloc0() was used, use g_free() to free the
37    memory. Otherwise use standard free(). Never use the wrong function!
38
39  - Never use g_malloc() or g_malloc0(). These functions do not return NULL
40    if not enough memory is available but rather lead to an exit() or segfault
41    instead. This behaviour is not acceptable.
42    Use g_try_malloc()/g_try_malloc0() instead and check the return value.
43
44  - You should never print any messages (neither to stdout nor stderr nor
45    elsewhere) "manually" via e.g. printf() or g_log() or similar functions.
46    Only sr_err()/sr_warn()/sr_info()/sr_dbg()/sr_spew() should be used.
47
48  - Use glib's gboolean / TRUE / FALSE for boolean types consistently.
49    Do not use <stdbool.h> and its true / false, and do not invent private
50    definitions for this either.
51
52  - Consistently use the same naming convention for #include guards in headers:
53    <PROJECTNAME>_<PATH_TO_FILE>_<FILE>
54    This ensures that all #include guards are always unique and consistent.
55    Example: SIGROK_CLI_SIGROK_CLI_H
56
57  - Consistently use the same naming convention for functions, if appropriate:
58
59    Getter/setter function names should usually end with "_get" or "_set".
60    Functions creating new "objects" should end with "_new".
61    Functions destroying "objects" should end with "_destroy".
62    Functions adding or removing items (e.g. from lists) should end with
63    either "_add" or "_remove".
64    Functions operating on all items from a list (not on only one of them),
65    should end with "_all", e.g. "_remove_all", "_get_all", and so on.
66    Use "_remove_all" in favor of "_clear" for consistency.
67
68  - In Doxygen comments, put an empty line between the block of @param lines
69    and the final @return line. The @param lines themselves (if there is more
70    than one) are not separated by empty lines.
71
72
73 Release engineering
74 -------------------
75
76 See
77
78  http://sigrok.org/wiki/Developers/Release_process
79
80 for a list of items that need to be done when releasing a new tarball.
81