summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-10-31 11:04:31 +0100
committerBenny Baumann <BenBE@geshi.org>2020-10-31 11:11:40 +0100
commitde884d17bb568bbce8881a1f4a937a2edcdb0e5a (patch)
tree90a36706f3269483f074a3bd98e1f7d8477ecb09 /docs
parentbbf01054bf943db4394027d77915f9625ebde81e (diff)
Documentation on the repository style guide
Diffstat (limited to 'docs')
-rw-r--r--docs/styleguide.md185
1 files changed, 185 insertions, 0 deletions
diff --git a/docs/styleguide.md b/docs/styleguide.md
new file mode 100644
index 00000000..4c0ac1f5
--- /dev/null
+++ b/docs/styleguide.md
@@ -0,0 +1,185 @@
+htop coding style guide
+=======================
+
+Naming conventions
+------------------
+
+Names are important to convey what all those things inside the project are for.
+Filenames for source code traditionally used camel-case naming with the first letter written in uppercase.
+The file extension is always lowercase.
+
+The only exception here is `htop.c` which is the main entrance point into the code.
+
+Folders for e.g. platform-specific code or complex features spawning multiple files are written in lowercase, e.g. `linux`, `freebsd`, `zfs`.
+
+Inside files, the naming somewhat depends on the context.
+For functions names should include a camel-case prefix before the actual name, separated by an underscore.
+While this prefix usually coincides with the module name, this is not required, yet strongly advised.
+One important exception to this rule are the memory management and the string utility functions from `XUtils.h`.
+
+Variable names inside functions should be short and precise.
+Using `i` for some loop counter is totally fine, using `someCounterValueForThisSimpleLoop` is not.
+On the other hand, when you need to hold global storage try to keep this local to your module, i.e. declare such variables `static` within the C source file.
+Only if your variable really needs to be visible for the whole project (which is really rare) it deserves a declaration in the header, marked `extern`.
+
+File content structure
+----------------------
+
+The content within each file is usually structured according to the following loose template:
+
+* Copyright declaration
+* Inclusion of used headers
+* Necessary data structures and forward declarations
+* Static module-private function implementations
+* Externally visible function implementations
+* Externally visible constant structures (pseudo-OOP definitions)
+
+For header files header guards based on `#ifdef` should be used.
+These header guards are historically placed **before** the Copyright declaration.
+Stick to that for consistency please.
+
+Example:
+
+```c
+#ifndef HEADER_FILENAME
+#define HEADER_FILENAME
+/*
+htop - Filename.h
+(C) 2020 htop dev team
+Released under the GNU GPLv2, see the COPYING file
+in the source distribution for its full text.
+*/
+```
+
+Import and use of headers
+-------------------------
+
+Every file should import headers for all symbols it's using.
+Thus when using a symbol from a header, even if that symbol is already imported by something else you use, you should declare an import for that header.
+Doing so allows for easier restructuring of the code when things need to be moved around.
+If you are unsure if all necessary headers are included you might use IWYU to tell you.
+
+The list of includes should be the first thing in the file, after the copyright comment and be followed by two blank lines.
+The include list should be in the following order, with each group separated by one blank line:
+
+1. `include "config.h" // IWYU pragma: keep` if the global configuration
+ from automake&autoconfigure or any of the feature guards for C library headers
+ (like `__GNU_SOURCE`) are required, optional otherwise. Beware of the IWYU comment.
+2. Accompanying module header file (for C source files only, missing inside headers)
+3. List of used system headers (non-conditional includes)
+4. List of used program headers
+5. Conditionally included header files, system headers first
+
+The list of headers should be sorted with includes from subdirectories following after files inside their parent directory.
+Thus `unistd.h` sorts before `sys/time.h`.
+
+Symbol Exports
+--------------
+
+Exports of symbols should be used sparingly.
+Thus unless a function you write is intended to become public API of a module you should mark it as `static`.
+If a function should be public API an appropriate declaration for that function has to be placed in the accompaying header file.
+
+Please avoid function-like macros, in particular when exporting them in a header file.
+They have several downsides (re-evaluation of arguments, syntactic escapes, weak typing) for which usually a better alternative like an actual function exists.
+Furthermore when using function-like `define`s you may need to mark certain headers for IWYU so tracking of used symbols works.
+
+Memory Management
+-----------------
+
+When allocating memory make sure to free resources properly.
+For allocation this project uses a set of tiny wrappers around the common functions `malloc`, `calloc` and `realloc` named `xMalloc`, `xCalloc` and `xRealloc`.
+These functions check that memory allocation worked and error out on failure.
+
+Allocation functions assert the amount of memory requested is non-zero.
+Trying to allocate 0 bytes of memory is an error.
+Please use the explicit value `NULL` in this case and handle it in your code accordingly.
+
+Working with Strings
+--------------------
+
+It is strongly encouraged to use the functions starting with `String_` from `XUtils.h` for working with zero-terminated strings as these make the API easier to use and are intended to make the intent of your code easier to grasp.
+
+Thus instead of `!strcmp(foo, "foo")` it's preferred to use `String_eq(foo, "foo")` instead.
+While sometimes a bit more to type, this helps a lot with making the code easier to follow.
+
+Styling the code
+----------------
+
+Now for the style details that can mostly be automated: Indentation, spacing and bracing.
+While there is no definitve code style we use, a set of rules loosely enforced has evolved.
+
+Indentation in the code is done by three (3) spaces. No tabs are used. Ever.
+
+Before and after keywords should be a space, e.g. `if (condition)` and `do { … } while (condition);`.
+
+After opening and before closing braces a new line should be started.
+Content of such encoded blocks should be indented one level further than their enclosing block.
+
+If a line of source code becomes too long, or when structuring it into multiple parts for clarity, the continuation line should be indented one more level than the first line it continues:
+
+```c
+if (very_long_condition &&
+ another_very_complex_expression &&
+ something_else_to_check) {
+ // Code follows as normal ...
+} else {
+
+}
+```
+
+While braces around single code statements are strongly encouraged, they are usually left out for single statements when only redirecting code flow:
+
+```c
+if (termination condition)
+ return 42;
+```
+
+Control flow statements and the instruction making up their body should not be put on a single line, i.e. after the condition of an if statement a new line should be inserted and the body indented accordingly.
+When an if statement uses more than just the true branch it should use braces for all statements that follow:
+
+```c
+if (condition1) {
+ // Some code
+} else if (condition2) {
+ // Some more code
+} else {
+ // something else
+}
+```
+
+While this code style isn't fully consistent in the existing code base it is strongly recommended that new code follows these rules.
+Adapting surrounding code near places you need to touch is encouraged.
+Try to separate such changes into a single, clean-up only commit to reduce noise while reviewing your changes.
+
+If you want to automate formatting your code, the following command gives you a good baseline of how it should look:
+
+```bash
+astyle -r -j -xb -s3 -p -xg -c -k1 -W1 \*.c \*.h
+```
+
+Working with System APIs
+------------------------
+
+Please try to be considerate when using modern platform features.
+While they usually provide quite a performance gain or make your life easier, it is benefitial if `htop` runs on rather ancient systems.
+Thus when you want to use such features you should try to have an alternative available that works as a fallback.
+
+An example for this are functions like `fstatat` on Linux that extend the kernel API on modern systems.
+But even though it has been around for over a decade you are asked to provide a POSIX alternative like emulating such calls by `fstat` if this is doable.
+If an alternative can not be provided you should gracefully downgrade. That could make a feature that requires this shiny API unavailable on systems that lack support for that API. Make this case visually clear to the user.
+
+In general, code written for the project should be able to compile on any C99-compliant compiler.
+
+Writing documentation
+---------------------
+
+The primary user documentation should be the man file which you can find in `htop.1.in`.
+
+Additional documentation, like this file, should be written in gh-style markdown.
+Make each sentence one line.
+Markdown will combined these in output formats.
+It does only insert a paragraph if you insert a blank line into the source file.
+This way git can better diff and present the changes when documentation is altered.
+
+Documentation files reside in the `docs/` directory and have a `.md` extension.

© 2014-2024 Faster IT GmbH | imprint | privacy policy