blob: 9c422a328bce348a1832b9223ea838a85d94cb4d [file] [log] [blame]
Uwe Hermanna2353f62012-10-16 11:24:03 +02001-------------------------------------------------------------------------------
2HACKING
3-------------------------------------------------------------------------------
4
5Coding style
6------------
7
8This project is programmed using the Linux kernel coding style, see
9http://lxr.linux.no/linux/Documentation/CodingStyle for details.
10
11Please use the same style for any code contributions, thanks!
12
13
14Contributions
15-------------
16
17 - Patches should be sent to the development mailinglist at
18 sigrok-devel@lists.sourceforge.net (please subscribe to the list first).
19
20 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
21
22 - Alternatively, you can also clone the git repository and let us know
23 from where to pull/review your changes. You can use gitorious.org,
24 github.com, or any other public git hosting site.
25
26
Uwe Hermann2bba3dd2012-10-25 23:42:20 +020027Adding a new hardware driver
28----------------------------
29
30The simple, scripted way (recommended):
31---------------------------------------
32
33Use the 'new-driver' script from the sigrok-util repo:
34
35 $ git clone git://sigrok.org/sigrok-util
36 $ cd sigrok-util/source
37 $ ./new-driver "Tondaj SL-814"
38
39The example above generates a patch file against the current libsigrok
40development git tree which adds a simple "stub" driver for your device
41(the Tondaj SL-814 sound level meter in this case).
42
43You can apply it like this:
44
45 $ cd libsigrok
46 $ git am 0001-tondaj-sl-814-Initial-driver-skeleton.patch
47
48You can now edit the files in the hardware/tondaj-sl-814 directory as needed.
49
50
51The manual way:
52---------------
53
54This is a rough overview of what you need to do in order to add a new driver
55(using the Tondaj SL-814 device as example). It's basically what the
56'new-driver' script (see above) does for you:
57
58 - configure.ac:
59 - Add an --enable-tondaj-sl-814 option.
60 - Add "hardware/tondaj-sl-814/Makefile" to the AC_CONFIG_FILES list.
61 - Add and entry for the device in the "Enabled hardware drivers" list
62 at the bottom of the file.
63 - hardware/Makefile.am: Add "tondaj-sl-814" to the SUBDIRS variable.
64 - hwdriver.c: Add a tondaj_sl_814_driver_info entry in two places.
65 - hardware/tondaj-sl-814/ directory: Add the following files:
66 Makefile.am, api.c, protocol.c, protocol.h
67
68See existing drivers or the 'new-driver' output for the details.
69
70
Uwe Hermanna2353f62012-10-16 11:24:03 +020071Random notes
72------------
73
74 - Consistently use g_try_malloc() / g_try_malloc0(). Do not use standard
75 malloc()/calloc() if it can be avoided (sometimes other libs such
76 as libftdi can return malloc()'d memory, for example).
77
78 - Always properly match allocations with the proper *free() functions. If
79 glib's g_try_malloc()/g_try_malloc0() was used, use g_free() to free the
80 memory. Otherwise use standard free(). Never use the wrong function!
81
82 - Never use g_malloc() or g_malloc0(). These functions do not return NULL
83 if not enough memory is available but rather lead to an exit() or segfault
Uwe Hermann8ed26252012-10-16 14:48:39 +020084 instead. This behaviour is not acceptable for libraries.
Uwe Hermanna2353f62012-10-16 11:24:03 +020085 Use g_try_malloc()/g_try_malloc0() instead and check the return value.
86
Uwe Hermann8ed26252012-10-16 14:48:39 +020087 - You should never print any messages (neither to stdout nor stderr nor
Uwe Hermanna2353f62012-10-16 11:24:03 +020088 elsewhere) "manually" via e.g. printf() or g_log() or similar functions.
89 Only sr_err()/sr_warn()/sr_info()/sr_dbg()/sr_spew() should be used.
90
91 - Use glib's gboolean / TRUE / FALSE for boolean types consistently.
92 Do not use <stdbool.h> and its true / false, and do not invent private
93 definitions for this either.
94
95 - Consistently use the same naming convention for #include guards in headers:
96 <PROJECTNAME>_<PATH_TO_FILE>_<FILE>
97 This ensures that all #include guards are always unique and consistent.
98 Examples: LIBSIGROK_LIBSIGROK_H, LIBSIGROK_HARDWARE_ASIX_SIGMA_ASIX_SIGMA_H
99
100 - Consistently use the same naming convention for API functions:
101 <libprefix>_<groupname>_<action>().
102
103 Examples:
104 sr_log_loglevel_set(), sr_log_loglevel_get(), sr_log_handler_set(),
105 sr_log_handler_set_default(), and so on.
106 Or:
107 sr_session_new(), sr_session_destroy(), sr_session_load(), and so on.
108
109 Getter/setter function names should usually end with "_get" or "_set".
110 Functions creating new "objects" should end with "_new".
111 Functions destroying "objects" should end with "_destroy".
112 Functions adding or removing items (e.g. from lists) should end with
113 either "_add" or "_remove".
114 Functions operating on all items from a list (not on only one of them),
115 should end with "_all", e.g. "_remove_all", "_get_all", and so on.
116 Use "_remove_all" in favor of "_clear" for consistency.
117
Uwe Hermannb4bd7082012-10-19 10:07:22 +0200118
119Doxygen
120-------
121
Uwe Hermanna2353f62012-10-16 11:24:03 +0200122 - In Doxygen comments, put an empty line between the block of @param lines
123 and the final @return line. The @param lines themselves (if there is more
124 than one) are not separated by empty lines.
125
Uwe Hermannb4bd7082012-10-19 10:07:22 +0200126 - Mark private functions (SR_PRIV) with /** @private */, so that Doxygen
127 doesn't include them in the output. Functions that are "static" anyway
128 don't need to be marked like this.
129
130 - Mark private variables/#defines with /** @cond PRIVATE */ and
131 /** @endcond */, so that Doxygen doesn't include them in the output.
132 Variables that are "static" don't need to be marked like this.
133
Uwe Hermanna2353f62012-10-16 11:24:03 +0200134
135Release engineering
136-------------------
137
138See
139
140 http://sigrok.org/wiki/Developers/Release_process
141
142for a list of items that need to be done when releasing a new tarball.
143