Skip to content

Coding Style

This chapter documents the coding style used in live systems.

15.1 Compatibility

  • Avoid "bashisms", the codebase must be POSIX compliant and thus universally compatible.

  • Furthermore it must comply with the version of the POSIX specification chosen by the current Debian Policy.

  • You can check your scripts with 'sh -n' and 'checkbashisms'.

  • Make sure all shell code runs with 'set -e'.

15.2 Indenting

  • Always use tabs over spaces.

  • Keep case branch terminators (";;") aligned with the "content" of the branch, rather than the branch "entry".

Good:

text
case "${1}" in
         foo)
                 foobar
                 ;;
         bar)
                 foobar
                 ;;
esac

15.3 Wrapping

  • Generally, lines should be 80 chars at maximum.

  • Placement of keywords like then and do should be chosen with good judgement with respect to clutter and readability. For small bits of code in particular it should be preferred to have them on the same line as the prior keyword they relate to (if; for; etc). Only place on the next line where it makes good sense to do so; typically this might only be to comply with maximum line length restrictions. One situation where they should always be placed on the next line is where what they follow is broken up onto multiple lines, and thus it being on a new line creates clear separation between that and the body of code following it. I.e. :

Preferred:

text
if foo; then
         bar
fi
for FOO in $ITEMS; do
         bar
done
if [ "${MY_LOCATION_VARIABLE}" = "something" ] && [ -e "${MY_OUTPUT_FILE}" ]
then
         MY_OTHER_VARIABLE="$(some_bin ${FOOBAR} | awk -F_ '{ print $1 }')"
fi
if [ "${MY_FOO}" = "something" ] && [ -e "path/${FILE_1}" ] ||
   [ "${MY_BAR}" = "something_else" ] && [ ${ALLOW} = "true" ]
then
         foobar
fi

Less ideal:

text
if [ "${MY_LOCATION_VARIABLE}" = "something" ] && [ -e "${MY_OUTPUT_FILE}" ]; then
         MY_OTHER_VARIABLE="$(some_bin ${FOOBAR} | awk -F_ '{ print $1 }')"
fi

Horrible:

text
if [ "${MY_LOCATION_VARIABLE}" = "something" ] && [ -e "${MY_OUTPUT_FILE}" ] || [ "${MY_LOCATION_VARIABLE}" = "something-else" ] && [ -e "${MY_OUTPUT_FILE_2}" ]; then
         MY_OTHER_VARIABLE="$(some_bin ${FOOBAR} | awk -F_ '{ print $1 }')"
fi
  • Prefer placing the opening brace of a function on a new line (for consistency with established style), and keep the braces aligned with the function name:

Good:

text
Foo ()
{
         bar
}

Bad (inconsistent with existing style):

text
Foo () {
         bar
}

Awful:

text
Foo ()
         {
         bar
         }

15.4 Variables

  • Variables are always in capital letters.

  • Config variables used in live-build should start with an LB_ prefix.

  • Local function variables should be restricted to local scope.

  • Variables in connection to a boot parameter in live-config start with LIVE_.

  • All other variables in live-config start with _ prefix.

  • Use braces around variables; e.g. write ${FOO} instead of $FOO.

  • Always protect variables with quotes to respect potential whitespaces (except where necessary to achieve correct word splitting): write "${FOO}" not ${FOO}.

  • For consistency reasons, always use quotes when assigning values to variables:

Bad:

text
FOO=bar

Good:

text
FOO="bar"
  • If multiple variables are used, prefer quoting the full expression:

Typically bad:

text
if [ -f "${FOO}"/foo/"${BAR}"/bar ]; then
         foobar
fi

Good:

text
if [ -f "${FOO}/foo/${BAR}/bar" ]; then
         foobar
fi

15.5 Miscellaneous

  • Prefer "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without "").

  • Don't use the test command for comparisons or tests, use "[" and "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...".

  • Use case wherever it makes code more readable than conditional checks (if foo; ... and tests without the actual if keyword, e.g. [ -e "${FILE}" ] || exit 0).

  • Use "Foo_bar" style names for functions, i.e. a capital first letter, then all lowercase, with sensible use of underscores for better readability.

Debian Live Manual — Released under GPL-3+. Debian is a registered trademark of Software in the Public Interest, Inc.