Update installation script for metadata spelling
[geeqie.git] / CODING.md
1 # Coding and Documentation Style
2
3 [Error Logging](#error-logging)  
4 [GPL header](#gpl-header)  
5 [Git change log](#git-change-log)  
6 [Source Code Style](#source-code-style)  
7 [Shell Script Style](#shell-script-style)  
8 [External Software Tools](#external-software-tools)  
9 [Geeqie Software Tools](#geeqie-software-tools)  
10 [Documentation](#documentation)  
11 [Documentation - C code](#c-code)  
12 [Documentation - Script files](#script-files)  
13 [Documentation - Markdown](#markdown)  
14 [Doxygen](#doxygen)  
15
16 ---
17
18 ## Error Logging
19
20 ### DEBUG_0()
21
22 Use `DEBUG_0()` only for temporary debugging i.e. not in code in the repository.
23 The user will then not see irrelevant debug output when the default
24 `debug level = 0` is used.
25
26 ### log_printf()
27
28 If the first word of the message is "error" or "warning" (case insensitive) the message will be color-coded appropriately.
29
30 - Note that these messages are output in the idle loop.
31
32 ### print_term()
33
34 `print_term(gboolean err, const gchar *text_utf8)`
35
36 - If `err` is TRUE output is to STDERR, otherwise to STDOUT
37
38 ### DEBUG_NAME(widget)
39
40 For use with the [GTKInspector](https://wiki.gnome.org/action/show/Projects/GTK/Inspector?action=show&redirect=Projects%2FGTK%2B%2FInspector) to provide a visual indication of where objects are declared.
41
42 Sample command line call:  
43 `GTK_DEBUG=interactive src/geeqie`
44
45 ---
46
47 ## GPL header
48
49 Include a header in every file, like this:  
50
51 ```c
52 /*
53  * Copyright (C) <year> The Geeqie Team
54  *
55  * Author: Author1  
56  * Author: Author2  
57  *  
58  * This program is free software; you can redistribute it and/or modify
59  * it under the terms of the GNU General Public License as published by
60  * the Free Software Foundation; either version 2 of the License, or
61  * (at your option) any later version.
62  *
63  * This program is distributed in the hope that it will be useful,
64  * but WITHOUT ANY WARRANTY; without even the implied warranty of
65  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
66  * GNU General Public License for more details.
67  *
68  * You should have received a copy of the GNU General Public License along
69  * with this program; if not, write to the Free Software Foundation, Inc.,
70  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
71  *
72  *
73  * Optional description of purpose of file.
74  *
75 */  
76 ```
77
78 ---
79
80 ## git change-log
81
82 If referencing a Geeqie GitHub issue, include the issue number in the summary line and a hyperlink to the GitHub issue webpage in the message body. Start with a short summary in the first line (without a dot at the end) followed by a empty line.
83
84 Use whole sentences beginning with Capital letter. For each modification use a new line. Or you can write the theme, colon and then every change on new line, begin with "- ".
85
86 See also [A Note About Git Commit Messages](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
87
88 Example:
89
90 ```text
91 I did some bugfixes
92
93 There was the bug that something was wrong. I fixed it.
94
95 Library:
96 - the interface was modified
97 - new functions were added`
98 ```
99
100 Also please use your full name and a working e-mail address as author for any contribution.
101
102 ---
103
104 ## Source Code Style
105
106 Indentation: tabs at 4 spaces
107
108 Names:
109
110 - of variables & functions: small\_letters  
111 - of defines: CAPITAL\_LETTERS
112
113 Try to use explicit variable and function names.  
114 Try not to use macros.  
115 Use **either** "struct foo" OR "foo"; never both
116
117 Conditions, cycles:  
118
119 ```c
120 if (<cond>)
121     {
122     <command>;
123     ...
124     <command>;
125     }
126 else
127     {
128     <command>;
129     ...
130     <command>;
131     }
132
133 if (<cond_very_very_very_very_very_very_very_very_very_long> &&
134 <cond2very_very_very_very_very_very_very_very_very_long>)
135 <the_only_command>;
136
137 switch (<var>)
138     {
139     case 0:
140         <command>;
141         <command>;
142         break;
143     case 1:
144         <command>; break;
145     }
146
147 for (i = 0; i <= 10; i++)
148     {
149     <command>;
150     ...
151     <command>;
152     }
153 ```
154
155 Functions:
156
157 ```c
158 gint bar(<var_def>, <var_def>, <var_def>)
159 {
160     <command>;
161     ...
162     <command>;
163
164     return 0; // i.e. SUCCESS; if error, you must return minus <err_no> @FIXME
165 }
166
167 void bar2(void)
168 {
169     <command>;
170     ...
171     <command>;
172 }
173 ```
174
175 Pragma: (Indentation 2 spaces)
176
177 ```c
178 #ifdef ENABLE_NLS
179 #  undef _
180 #  define _(String) (String)
181 #endif /* ENABLE_NLS */
182 ```
183
184 Headers:
185
186 ```c
187 #ifndef _FILENAME_H
188 ```
189
190 Use spaces around every operator (except `.`, `->`, `++` and `--`).  
191 Unary operator `*` and `&` are missing the space from right, (and also unary `-`).
192
193 As you can see above, parentheses are closed to inside, i.e. ` (blah blah) `  
194 In `function(<var>)` there is no space before the `(`.  
195 You *may* use more tabs/spaces than you *ought to* (according to this CodingStyle), if it makes your code nicer in being vertically indented.  
196 Variables declarations should be followed by a blank line and should always be at the start of the block.  
197
198 Use glib types when possible (ie. gint and gchar instead of int and char).  
199 Use glib functions when possible (i.e. `g_ascii_isspace()` instead of `isspace()`).  
200 Check if used functions are not deprecated.
201
202 ---
203
204 ## Shell Script Style
205
206 Use `/bin/sh` as the interpreter directive.  
207 Ensure the script is POSIX compliant.  
208 Use `printf` rather than `echo` except for plain text.  
209 There are several versions of `mktemp`. Using the following definition helps portability (note that `template` is not optional):
210
211 ```sh
212 mktemp [-d] [-q] template ...
213 ```
214
215 and use for example this style:
216
217 ```sh
218 mktemp  "${TMPDIR:-/tmp}/geeqie.XXXXXXXXXX"
219 ```
220
221 ---
222 ## External Software Tools
223
224 ### astyle
225
226 There is no code format program that exactly matches the above style, but if you are writing new code the following command line program formats code to a fairly close level:
227
228 ```sh
229 astyle --options=<options file>
230 ```
231
232 Where the options file might contain:
233
234 ```text
235 style=vtk
236 indent=force-tab
237 pad-oper
238 pad-header
239 unpad-paren
240 align-pointer=name
241 align-reference=name
242 ```
243
244 ### cppcheck
245
246 A lint-style program may be used, e.g.
247
248 ```sh
249 cppcheck --language=c --library=gtk --enable=all --force  -USA_SIGINFO -UZD_EXPORT -Ugettext_noop -DG_KEY_FILE_DESKTOP_GROUP --template=gcc -I .. --quiet --suppressions-list=<suppressions file>
250 ```
251
252 Where the suppressions file might contain:
253
254 ```text
255 missingIncludeSystem
256 variableScope
257 unusedFunction
258 unmatchedSuppression
259 ```
260
261 ### markdownlint
262
263 Markdown documents may be validated with e.g. [markdownlint](https://github.com/markdownlint/markdownlint).
264
265 ```sh
266 mdl --style <style file>`
267 ```
268
269 Where the style file might contain:
270
271 ```text
272 all
273 rule 'MD007', :indent => 4
274 rule 'MD009', :br_spaces => 2
275 rule 'MD010', :code_blocks => true
276 exclude_rule 'MD013'
277 ```
278
279 ### shellcheck
280
281 Shell scripts may also be validated, e.g.
282
283 ```sh
284 shellcheck --enable=add-default-case,avoid-nullary-conditions,check-unassigned-uppercase,deprecate-which,quote-safe-variables
285 ```
286
287 ### shfmt
288
289 Shell scripts may formatted to some extent with [shfmt](https://github.com/mvdan/sh). At the time of writing it does not format `if`, `for` or `while` statements in the style used by Geeqie.  
290 However the following script can be used to achieve that:
291
292 ```sh
293 #!/bin/sh
294
295 shfmt -s -p -ci -sr -fn | awk '
296     {if ($0 ~ /; then/)
297         {
298         match($0, /^\t*/);
299         printf('%s\n', substr($0, 0, length($0) - 6));
300         printf('%s, substr("\t\t\t\t\t\t\t\t\t\t", 1, RLENGTH))
301         print("then")
302         }
303     else if ($0 ~ /; do/)
304         {
305         match($0, /^\t*/);
306         printf('%s\n', substr($0, 0, length($0) - 4));
307         printf('%s', substr("\t\t\t\t\t\t\t\t\t\t", 1, RLENGTH))
308         print("do")
309         }
310     else
311         {
312         print
313         }
314     }'
315 ```
316
317 ### xmllint
318
319 The .xml Help files may be validated with e.g. `xmllint`.
320
321 ---
322
323 ## Geeqie Software Tools
324
325 See the shell scripts section in the Doxygen documentation (`File List`, `detail level 3`, except the `src` sublist).
326
327 ---
328
329 ## Documentation
330
331 Use American, rather than British English, spelling. This will facilitate consistent
332 text searches. User text may be translated via the en_GB.po file.
333
334 To document the code use the following rules to allow extraction with Doxygen.  
335 Not all comments have to be Doxygen comments.
336
337 ### C code
338
339 - Use C comments in plain C files and use C++ comments in C++ files for one line comments.
340 - Use `/**` (note the two asterisks) to start comments to be extracted by Doxygen and start every following line with ` *` as shown below.
341 - Use `@` to indicate Doxygen keywords/commands (see below).
342 - Use the `@deprecated` command to indicate the function is subject to be deleted or to a  complete rewrite.
343
344 To document functions or big structures:
345
346 ```c
347 /**
348  * @brief This is a short description of the function.
349  *
350  * This function does ...
351  *
352  * @param x1 This is the first parameter named x1
353  * @param y1 This is the second parameter named y1
354  * @return What the function returns
355  *    You can extend that return description (or anything else) by indenting the
356  *    following lines until the next empty line or the next keyword/command.
357  * @see Cross reference
358  */
359 ```
360
361 To document members of a structure that have to be documented (use it at least
362 for big structures) use the `/**<` format:  
363
364 ```c
365 gint counter; /**< This counter counts images */
366
367 ```
368
369 Document TODO or FIXME comments as:  
370
371 ```c
372 /**  
373 * @todo
374 ```
375
376 or
377
378 ```c
379 /**  
380 * @FIXME
381 ```
382
383 ### Script files
384
385 Script files such as .sh, .pl, and .awk should have the file relevant file extension or be symlinked as so.
386
387 Doxygen comments should start each line with `##`, and each file should contain:
388
389 ```sh
390 ## @file
391 ## @brief <one line description>
392 ## <contents description>
393 ##
394 ```
395
396 ### Markdown
397
398 For a newline use two spaces (a backslash is not interpreted correctly by Doxygen).
399
400 ## Doxygen
401
402 For further documentation about Doxygen see the [Doxygen Manual](https://www.doxygen.nl/index.html).  
403 For the possible commands you may use, see [Doxygen Special Commands](https://www.doxygen.nl/manual/commands.html).
404
405 The file `./scripts/doxygen-help.sh` may be used to integrate access to the Doxygen files into a code editor.
406
407 The following environment variables may be set to personalize the Doxygen output:
408
409 ```sh
410 DOCDIR=<output folder>
411 SRCDIR=<the top level directory of the project>
412 PROJECT=
413 VERSION=
414 PLANTUML_JAR_PATH=
415 INLINE_SOURCES=<YES|NO>
416 STRIP_CODE_COMMENTS=<YES|NO>
417 ```
418
419 Ref: [INLINE\_SOURCES](https://www.doxygen.nl/manual/config.html#cfg_inline_sources)  
420 Ref: [STRIP\_CODE\_COMMENTS](https://www.doxygen.nl/manual/config.html#cfg_strip_code_comments)
421
422 For shell scripts to be documented, the file `doxygen-bash.sed` must be in the `$PATH` environment variable.  
423 It can be download from here:
424
425 ```sh
426 wget https://raw.githubusercontent.com/Anvil/bash-doxygen/master/doxygen-bash.sed
427 chmod +x doxygen-bash.sed
428 ```
429
430 To include diagrams in the Doxygen output, the following are required to be installed. The installation process will vary between distributions:
431
432 [The PlantUML jar](https://plantuml.com/download)
433
434 ```sh
435 sudo apt install default-jre
436 sudo apt install texlive-font-utils
437 ```
438
439 ---
440
441 But in case just think about that the documentation is for other developers not
442 for the end user. So keep the focus.