Difference between revisions of "Coding style"

From collectd Wiki
Jump to: navigation, search
(Function and variable names: There's a name for "snake_case" ;))
(Strings)
Line 40: Line 40:
 
* Many convenience functions are available from '''<code>"common.h"</code>'''.
 
* Many convenience functions are available from '''<code>"common.h"</code>'''.
 
* The functions <code>strcpy</code>, <code>strcat</code>, <code>strtok</code> and <code>sprintf</code> don't take a buffer size and must not be used. If possible, use an alternative from <code>"common.h"</code>.
 
* The functions <code>strcpy</code>, <code>strcat</code>, <code>strtok</code> and <code>sprintf</code> don't take a buffer size and must not be used. If possible, use an alternative from <code>"common.h"</code>.
* Instead of <code>strncpy</code> and <code>snprintf</code> use <code>sstrncpy</code> and <code>ssnprintf</code>. These functions assure a null byte at the end of the buffer.
+
* Instead of <code>strncpy</code> use <code>sstrncpy</code> . This function assures a null byte at the end of the buffer.
 
* Only explicitly give the size of the buffer when declaring it. Later, use <code>sizeof</code> to get its size in bytes and the <code>STATIC_ARRAY_SIZE</code> macro to get the number of elements. For example:<br /><code>memset (buffer, 0, '''sizeof''' (buffer));</code><br /><code>size_t keys_num = '''STATIC_ARRAY_SIZE''' (keys);</code>
 
* Only explicitly give the size of the buffer when declaring it. Later, use <code>sizeof</code> to get its size in bytes and the <code>STATIC_ARRAY_SIZE</code> macro to get the number of elements. For example:<br /><code>memset (buffer, 0, '''sizeof''' (buffer));</code><br /><code>size_t keys_num = '''STATIC_ARRAY_SIZE''' (keys);</code>
  

Revision as of 11:22, 14 May 2018

While we're very liberal when it comes to coding style, there are a few rules you ought to stick to. They're mostly obvious, but I don't write this down because I'm bored either..

Please note that these are more guidelines than a fixed set of rules. If you have a good reason for breaking one of these points, go ahead. But you may be bothered to explain why you did so.

There is one absolutely unbreakable rule though:

Programs must be written for people to read, and only incidentally for machines to execute.

— Abelson / Sussman

Indentation

  • If you're starting a new file, we recommend to indent with two spaces.
  • If you're writing a patch, please use the indentation of the surrounding code.
  • If you can comfortably stay within a 80 characters line limit, do so, but don't introduce interrupting / ugly line breaks just to meet this limit.
  • If a block, e.g. the inside of a *for* loop, exceeds ~50 lines, consider moving that logic into its own function.
  • Try to keep indentation levels down. Normally, three or four levels of indentation should be enough.

Function and variable names

  • Names should follow the snake_case (lowercase with underscores) naming scheme, e.g.: "submit_value", "temperature_current". Mixed-case names, as popular with Java developers, should not be used, i.e. don't use "submitValue".
  • Do not use non-ASCII characters in variable and function names.
  • Names should be as long as necessary – not longer, but not shorter either. If in doubt, use the more descriptive (longer) name.
  • All-capital names are reserved for, and should be used by, defines, macros and enum-members.
  • If several variables or functions with similar meaning exist, such as minimum, average and maximum temperature, the common part should be in front, e.g. "temp_max", "temp_min" and so on.
  • Non-static functions must be declared in a header file that has the same base name as the .c file defining the function. static functions should not have a forward declaration.

Plugins

  • All functions within a plugin should be declared static. The obvious exception is the "module_register" function (see plugin architecture).
  • The behavior of a plugin should not depend on compile time settings. If this cannot be guaranteed, for example because the library a plugin uses must be a certain version for an optional feature, this has to be documented in the collectd.conf(5) manual page.

Standard functions

  • Only reentrant- and thread-safe functions and libraries may be used.

Strings

  • Many convenience functions are available from "common.h".
  • The functions strcpy, strcat, strtok and sprintf don't take a buffer size and must not be used. If possible, use an alternative from "common.h".
  • Instead of strncpy use sstrncpy . This function assures a null byte at the end of the buffer.
  • Only explicitly give the size of the buffer when declaring it. Later, use sizeof to get its size in bytes and the STATIC_ARRAY_SIZE macro to get the number of elements. For example:
    memset (buffer, 0, sizeof (buffer));
    size_t keys_num = STATIC_ARRAY_SIZE (keys);

C99 features

  • Either declare all variables at the beginning of a block (pre-C99) or declare variables on initialization. Do not mix the two styles.
  • Please do not mix the // … and /* … */ comment styles. Using /* … */ for the license header and // … for everything else is okay.
  • Please do not use flexible array members (FAM).
  • Please use the integer types found in <stdint.h> if you need a fixed size integer, e.g. for parsing binary network packets and the like. If you need to print such a variable, please use the printing macros provided by <inttypes.h>.
  • Feel free to use the _Bool type. Assign only the numeric values 1 (true) and 0 (false) to these variables (i.e. don't use any defines, such as true from <stdbool.h>.
  • Feel free to use variable length arrays (VLA).

Miscellaneous

  • Do not compare int and size_t without a cast. Those two types cannot be cast to one another automatically on many platforms.
  • Use the %zu format when printing size_t.

License information and copyright notice

  • All source files must begin with a short license note including a copyright statement. We recommended to copy and adapt the comment from another file.
  • Any GPLv2 compatible, OSI approved, free / open-source license is acceptable.
  • For new files, we recommend to use the MIT license.
  • GPL: Please note that most files in collectd are licensed under the terms of the GPLv2 only, not the otherwise widely used "GPLv2 or later" schema. If you want to permit the use of your code under the terms of the GPLv3, please adapt the header.
  • Please spell your name in the copyright notice as it should be written according to your native language. If you need non-ASCII characters for this, make sure the file is encoded using the UTF-8 character set.