Use util_clip_triangle() in pan_item_tri_new()
[geeqie.git] / CODING.md
index 5c72374..4f4d492 100644 (file)
--- a/CODING.md
+++ b/CODING.md
-[Log Window](#log-window)  
+# Coding and Documentation Style
+
+[Error Logging](#error-logging)  
 [GPL header](#gpl-header)  
 [Git change log](#git-change-log)  
 [GPL header](#gpl-header)  
 [Git change log](#git-change-log)  
-[Sources](#sources)  
+[Source Code Style](#source-code-style)  
+[Shell Script Style](#shell-script-style)  
+[External Software Tools](#external-software-tools)  
+[Geeqie Software Tools](#geeqie-software-tools)  
 [Documentation](#documentation)  
 [Documentation](#documentation)  
+[Documentation - C code](#c-code)  
+[Documentation - Script files](#script-files)  
+[Documentation - Markdown](#markdown)  
+[Doxygen](#doxygen)  
+
+---
 
 
------------
+## Error Logging
 
 
+### DEBUG_0()
 
 
-# <a name='log-window'>
-#Log Window
+Use `DEBUG_0()` only for temporary debugging i.e. not in code in the repository.
+The user will then not see irrelevant debug output when the default
+`debug level = 0` is used.
 
 
+### log_printf()
 
 
-`log_printf()`  
 If the first word of the message is "error" or "warning" (case insensitive) the message will be color-coded appropriately.
 
 If the first word of the message is "error" or "warning" (case insensitive) the message will be color-coded appropriately.
 
+- Note that these messages are output in the idle loop.
+
+### print_term()
+
+`print_term(gboolean err, const gchar *text_utf8)`
+
+- If `err` is TRUE output is to STDERR, otherwise to STDOUT
+
+### DEBUG_NAME(widget)
 
 
-`DEBUG_NAME(widget)`  
 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.
 
 Sample command line call:  
 `GTK_DEBUG=interactive src/geeqie`
 
 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.
 
 Sample command line call:  
 `GTK_DEBUG=interactive src/geeqie`
 
---------------------------------------------------------------------------------
+### DEBUG_BT()
+
+Prints a backtrace.
+Use only for temporary debugging i.e. not in code in the repository
+
+### DEBUG_FD()
+
+Prints a dump of the FileData hash list as a ref. count followed by the full path of the item.
+Use only for temporary debugging i.e. not in code in the repository
+
+### Log Window
 
 
-# <a name='gpl-header'>
-# GPL header
+When the Log Window has focus, the F1 key executes the action specified in `Edit/Preferences/Behavior/Log Window F1 Command` with the selected text as a parameter.
+If no text is selected, the entire line is passed to the command.
+This feature may be used to open an editor at a file location in the text string.
+
+---
+
+## GPL header
 
 Include a header in every file, like this:  
 
 
 Include a header in every file, like this:  
 
-    /** @file  
-    * @brief Short description of this file.  
-    * @author Author1  
-    * @author Author2  
-    *  
-    * Optionally detailed description of this file    
-    * on more lines.    
-    */    
-
-    /*  
-    *  This file is a part of Geeqie project (http://www.geeqie.org/).  
-    *  Copyright (C) 2008 - 2021 The Geeqie Team  
-    *  
-    *  This program is free software; you can redistribute it and/or modify it  
-    *  under the terms of the GNU General Public License as published by the Free  
-    *  Software Foundation; either version 2 of the License, or (at your option)  
-    *  any later version.  
-    *  
-    *  This program is distributed in the hope that it will be useful, but WITHOUT  
-    *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or  
-    *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for  
-    *  more details.  
-    */  
-
--------------
-
-# <a name='git-change-log'>
-#git change-log
-
-If referencing a Geeqie GitHub issue, include the issue number in the summary line. Start with a short summary in the first line (without a dot at the end) followed by a empty line.
-
-If referencing a Geeqie GitHub issue, include a hyperlink to the GitHub issue webpage in the message body. 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 "- ".
-
-See also [A Note About Git Commit Messages](http://www.tpope.net/node/106)
+```c
+/*
+ * Copyright (C) <year> The Geeqie Team
+ *
+ * Author: Author1  
+ * Author: Author2  
+ *  
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ *
+ * Optional description of purpose of file.
+ *
+*/  
+```
+
+---
+
+## git change-log
+
+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.
+
+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 "- ".
+
+See also [A Note About Git Commit Messages](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
 
 Example:
 
 
 Example:
 
-   `I did some bugfixes`
+```text
+I did some bugfixes
 
 
-   `There was the bug that something was wrong. I fixed it.`
+There was the bug that something was wrong. I fixed it.
 
 
-  ` Library:`  
-   `- the interface was modified`  
-  `- new functions were added`
+Library:
+- the interface was modified
+- new functions were added`
+```
 
 Also please use your full name and a working e-mail address as author for any contribution.
 
 
 Also please use your full name and a working e-mail address as author for any contribution.
 
---------------------------------------------------------------------------------
+---
 
 
-# <a name='sources'>
-#Sources
+## Source Code Style
 
 Indentation: tabs at 4 spaces
 
 Indentation: tabs at 4 spaces
-       
-       
+
 Names:
 
 Names:
 
-- of variables & functions:     small\_letters  
-- of defines:           CAPITAL\_LETTERS
+- of variables & functions: small\_letters  
+- of defines: CAPITAL\_LETTERS
 
 Try to use explicit variable and function names.  
 Try not to use macros.  
 
 Try to use explicit variable and function names.  
 Try not to use macros.  
-Use EITHER "struct foo" OR "foo"; never both
-
+Use **either** "struct foo" OR "foo"; never both
 
 Conditions, cycles:  
 
 
 Conditions, cycles:  
 
-    if (<cond>)
-       {
-       <command>;
-       ...
-       <command>;
-       }
-    else
-       {
-       <command>;
-       ...
-       <command>;
-       }
-
-    if (<cond_very_very_very_very_very_very_very_very_very_long> &&
-    <cond2very_very_very_very_very_very_very_very_very_long>)
-    <the_only_command>;
-
-    switch (<var>)
-       {
-       case 0:
-               <command>;
-                   <command>;
-                   break;
-       case 1:
-               <command>; break;
-       }
-
-    for (i = 0; i <= 10; i++)
-       {
-       <command>;
-       ...
-       <command>;
-       }
+```c
+if (<cond>)
+    {
+    <command>;
+    ...
+    <command>;
+    }
+else
+    {
+    <command>;
+    ...
+    <command>;
+    }
 
 
-Functions:
+if (<cond_very_very_very_very_very_very_very_very_very_long> &&
+<cond2very_very_very_very_very_very_very_very_very_long>)
+<the_only_command>;
 
 
-    gint bar(<var_def>, <var_def>, <var_def>)
+switch (<var>)
     {
     {
-       <command>;
-       ...
-       <command>;
-
-       return 0; // i.e. SUCCESS; if error, you must return minus <err_no>
+    case 0:
+        <command>;
+        <command>;
+        break;
+    case 1:
+        <command>; break;
     }
 
     }
 
-    void bar2(void)
+for (i = 0; i <= 10; i++)
     {
     {
-       <command>;
-       ...
-       <command>;
+    <command>;
+    ...
+    <command>;
     }
     }
+```
+
+Functions:
+
+```c
+gint bar(<var_def>, <var_def>, <var_def>)
+{
+    <command>;
+    ...
+    <command>;
+
+    return 0; // i.e. SUCCESS; if error, you must return minus <err_no> @FIXME
+}
+
+void bar2(void)
+{
+    <command>;
+    ...
+    <command>;
+}
+```
 
 Pragma: (Indentation 2 spaces)
 
 
 Pragma: (Indentation 2 spaces)
 
-    #ifdef ENABLE_NLS
-    #  undef _
-    #  define _(String) (String)
-    #endif /* ENABLE_NLS */
+```c
+#ifdef ENABLE_NLS
+#  undef _
+#  define _(String) (String)
+#endif /* ENABLE_NLS */
+```
 
 Headers:
 
 
 Headers:
 
-    #ifndef _FILENAME_H
+```c
+#ifndef _FILENAME_H
+```
 
 
+Use [Names and Order of Includes](https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes) for headers include order.
 
 
-Use spaces around every operator (except ".", "->", "++" and "--").   
-Unary operator '*' and '&' are missing the space from right, (and also unary '-').
+Use spaces around every operator (except `.`, `->`, `++` and `--`).  
+Unary operator `*` and `&` are missing the space from right, (and also unary `-`).
 
 
-As you can see above, parentheses are closed to inside, i.e. " (blah blah) "  
-In "`function(<var>)`" there is no space before the '('.  
-You MAY use more tabs/spaces than you OUGHT TO (according to this CodingStyle), if it makes your code nicer in being vertically indented.  
+As you can see above, parentheses are closed to inside, i.e. ` (blah blah) `  
+In `function(<var>)` there is no space before the `(`.  
+You *may* use more tabs/spaces than you *ought to* (according to this CodingStyle), if it makes your code nicer in being vertically indented.  
 Variables declarations should be followed by a blank line and should always be at the start of the block.  
 
 Variables declarations should be followed by a blank line and should always be at the start of the block.  
 
+Use glib types when possible (ie. gint and gchar instead of int and char).  
+Use glib functions when possible (i.e. `g_ascii_isspace()` instead of `isspace()`).  
+Check if used functions are not deprecated.  
+
+---
+
+## Shell Script Style
+
+Use `/bin/sh` as the interpreter directive.  
+Ensure the script is POSIX compliant.  
+Use `printf` rather than `echo` except for plain text.  
+There are several versions of `mktemp`. Using the following definition helps portability (note that `template` is not optional):
+
+```sh
+mktemp [-d] [-q] template ...
+```
+
+and use for example this style:
+
+```sh
+mktemp  "${TMPDIR:-/tmp}/geeqie.XXXXXXXXXX"
+```
+
+---
+
+## External Software Tools
+
+### astyle
+
+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:
+
+```sh
+astyle --options=<options file>
+```
+
+Where the options file might contain:
+
+```text
+style=vtk
+indent=force-tab
+pad-oper
+pad-header
+unpad-paren
+align-pointer=name
+align-reference=name
+```
+
+### cppcheck
 
 
-Use glib types when possible (ie. gint and gchar instead of int and char).
-Use glib functions when possible (ie. `g_ascii_isspace()` instead of `isspace()`).
-Check if used functions are not deprecated.
+A lint-style program may be used, e.g.
 
 
---------------------------------------------------------------------------------
+```sh
+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>
+```
 
 
-# <a name='documentation'>
-#Documentation
+Where the suppressions file might contain:
+
+```text
+missingIncludeSystem
+variableScope
+unusedFunction
+unmatchedSuppression
+```
+
+### markdownlint
+
+Markdown documents may be validated with e.g. [markdownlint](https://github.com/markdownlint/markdownlint).
+
+```sh
+mdl --style <style file>`
+```
+
+Where the style file might contain:
+
+```text
+all
+rule 'MD007', :indent => 4
+rule 'MD009', :br_spaces => 2
+rule 'MD010', :code_blocks => true
+exclude_rule 'MD013'
+```
+
+### shellcheck
+
+Shell scripts may also be validated, e.g.
+
+```sh
+shellcheck --enable=add-default-case,avoid-nullary-conditions,check-unassigned-uppercase,deprecate-which,quote-safe-variables
+```
+
+### shfmt
+
+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.  
+However the following script can be used to achieve that:
+
+```sh
+#!/bin/sh
+
+shfmt -s -p -ci -sr -fn | awk '
+    {if ($0 ~ /; then/)
+        {
+        match($0, /^\t*/);
+        printf('%s\n', substr($0, 0, length($0) - 6));
+        printf('%s, substr("\t\t\t\t\t\t\t\t\t\t", 1, RLENGTH))
+        print("then")
+        }
+    else if ($0 ~ /; do/)
+        {
+        match($0, /^\t*/);
+        printf('%s\n', substr($0, 0, length($0) - 4));
+        printf('%s', substr("\t\t\t\t\t\t\t\t\t\t", 1, RLENGTH))
+        print("do")
+        }
+    else
+        {
+        print
+        }
+    }'
+```
+
+### xmllint
+
+The .xml Help files may be validated with e.g. `xmllint`.
+
+---
+
+## Geeqie Software Tools
+
+See the shell scripts section in the Doxygen documentation (`File List`, `detail level 3`, except the `src` sublist).
+
+---
+
+## Documentation
 
 Use American, rather than British English, spelling. This will facilitate consistent
 text searches. User text may be translated via the en_GB.po file.
 
 
 Use American, rather than British English, spelling. This will facilitate consistent
 text searches. User text may be translated via the en_GB.po file.
 
-To document the code use the following rules to allow extraction with doxygen.
-Do not save with comments. Not all comments have to be doxygen comments.
+To avoid confusion between American and British date formats, use ISO format (YYYY-MM-DD) where possible.
 
 
-- Use C comments in plain C files and use C++ comments in C++ files for one line
-  comments.
-- Use '/**' (note the two asterisks) to start comments to be extracted by
-  doxygen and start every following line with " *".
-- Use '@' to indicate doxygen keywords/commands (see below).
-- Use the '@deprecated' command to tell if the function is subject to be deleted
-  or to a  complete rewrite.
+To document the code use the following rules to allow extraction with Doxygen.  
+Not all comments have to be Doxygen comments.
 
 
-Example:
+### C code
+
+- Use C comments in plain C files and use C++ comments in C++ files for one line comments.
+- Use `/**` (note the two asterisks) to start comments to be extracted by Doxygen and start every following line with ` *` as shown below.
+- Use `@` to indicate Doxygen keywords/commands (see below).
+- Use the `@deprecated` command to indicate the function is subject to be deleted or to a  complete rewrite.
 
 To document functions or big structures:
 
 
 To document functions or big structures:
 
-    /**
-     * @brief This is a short description of the function.
-     *
-     * This function does ...
-     *
-     * @param x1 This is the first parameter named x1
-     * @param y1 This is the second parameter named y1
-     * @return What the function returns
-     *    You can extend that return description (or anything else) by indenting the
-     *    following lines until the next empty line or the next keyword/command.
-     * @see Cross reference
-     */
+```c
+/**
+ * @brief This is a short description of the function.
+ *
+ * This function does ...
+ *
+ * @param x1 This is the first parameter named x1
+ * @param y1 This is the second parameter named y1
+ * @return What the function returns
+ *    You can extend that return description (or anything else) by indenting the
+ *    following lines until the next empty line or the next keyword/command.
+ * @see Cross reference
+ */
+```
 
 To document members of a structure that have to be documented (use it at least
 for big structures) use the `/**<` format:  
 
 To document members of a structure that have to be documented (use it at least
 for big structures) use the `/**<` format:  
-`int counter; /**< This counter counts images */`
+
+```c
+gint counter; /**< This counter counts images */
+
+```
 
 Document TODO or FIXME comments as:  
 
 
 Document TODO or FIXME comments as:  
 
-    /**  
-    * @todo
-   
-or 
-    /**  
-    * @FIXME   
+```c
+/**  
+* @todo
+```
+
+or
+
+```c
+/**  
+* @FIXME
+```
+
+### Script files
+
+Script files such as .sh, .pl, and .awk should have the file relevant file extension or be symlinked as so.
+
+Doxygen comments should start each line with `##`, and each file should contain:
 
 
-For further documentation about doxygen see the [Doxygen Manual](https://www.doxygen.nl/index.html).  
+```sh
+## @file
+## @brief <one line description>
+## <contents description>
+##
+```
+
+### Markdown
+
+For a newline use two spaces (a backslash is not interpreted correctly by Doxygen).
+
+## Doxygen
+
+For further documentation about Doxygen see the [Doxygen Manual](https://www.doxygen.nl/index.html).  
 For the possible commands you may use, see [Doxygen Special Commands](https://www.doxygen.nl/manual/commands.html).
 
 The file `./scripts/doxygen-help.sh` may be used to integrate access to the Doxygen files into a code editor.
 
 For the possible commands you may use, see [Doxygen Special Commands](https://www.doxygen.nl/manual/commands.html).
 
 The file `./scripts/doxygen-help.sh` may be used to integrate access to the Doxygen files into a code editor.
 
-The following environment variables may be set to personalize the Doxygen output:  
-`DOCDIR=<output folder>`  
-`SRCDIR=<the folder above ./src>`  
-`PROJECT=`  
-`VERSION=`  
-`PLANTUML_JAR_PATH=`  
-`INLINE_SOURCES=<YES|NO>`  
-`STRIP_CODE_COMMENTS=<YES|NO>`  
+The following environment variables may be set to personalize the Doxygen output:
+
+```sh
+DOCDIR=<output folder>
+SRCDIR=<the top level directory of the project>
+PROJECT=
+VERSION=
+PLANTUML_JAR_PATH=
+INLINE_SOURCES=<YES|NO>
+STRIP_CODE_COMMENTS=<YES|NO>
+```
 
 Ref: [INLINE\_SOURCES](https://www.doxygen.nl/manual/config.html#cfg_inline_sources)  
 Ref: [STRIP\_CODE\_COMMENTS](https://www.doxygen.nl/manual/config.html#cfg_strip_code_comments)
 
 
 Ref: [INLINE\_SOURCES](https://www.doxygen.nl/manual/config.html#cfg_inline_sources)  
 Ref: [STRIP\_CODE\_COMMENTS](https://www.doxygen.nl/manual/config.html#cfg_strip_code_comments)
 
-To include diagrams (if any) in the Doxygen output, the following are required to be installed. The installation process will vary between distributions:  
-[The PlantUML jar](https://plantuml.com/download)  
-`sudo apt install default-jre`  
-`sudo apt install texlive-font-utils`
+For shell scripts to be documented, the file `doxygen-bash.sed` must be in the `$PATH` environment variable.  
+It can be download from here:
+
+```sh
+wget https://raw.githubusercontent.com/Anvil/bash-doxygen/master/doxygen-bash.sed
+chmod +x doxygen-bash.sed
+```
+
+To include diagrams in the Doxygen output, the following are required to be installed. The installation process will vary between distributions:
+
+[The PlantUML jar](https://plantuml.com/download)
+
+```sh
+sudo apt install default-jre
+sudo apt install texlive-font-utils
+```
 
 
--------------
+---
 
 But in case just think about that the documentation is for other developers not
 for the end user. So keep the focus.
 
 But in case just think about that the documentation is for other developers not
 for the end user. So keep the focus.