ALICE O² C++ Comments Guidelines

Vasco Barroso
Alina GrigoraȘ
Ivana Hřivnáčová
Matthias Kretz
Adriana Telesca
Barthélémy von Haller

This document is based on the work of
B. Weinberger, C. Silverstein,
G. Eitzmann, M. Mentovai
and T.Landray
at http://google-styleguide.googlecode.com,
C++ Google Style guide, Revision 3.274
under the CC-By 3.0 License

Each style point has a summary for which additional information is available by toggling the accompanying arrow button that looks this way: . You may toggle all summaries with the big arrow button:

Toggle all summaries
Table of Contents

Important Note

Displaying Hidden Details in this Guide

link
This style guide contains many details that are initially hidden from view. They are marked by the triangle icon, which you see here on your left. Click it now. You should see "Hooray" appear below.

General

General Guidelines

link

Though a pain to write, comments are absolutely vital to keeping our code readable. The following rules describe what you should comment and where. But remember: while comments are very important, the best code is self-documenting. Giving sensible names to types and variables is much better than using obscure names that you must then explain through comments.

When writing your comments, write for your audience: the next contributor who will need to understand your code. Be generous — the next one may be you!

Doxygen

link
Following an evaluation of different code documentation tools, Doxygen has been selected. Doxygen [1] allows different comments style. We recommend to use a block of C++ comment lines, where each line starts with an additional slash.
/// ... text ...
/// ... text ...

Mandatory Documentation

link
There are a certain number of items that must be documented. They are:
  • Files.
  • Classes.
  • Functions.
  • Data members.
  • Namespaces.
  • Enumerations and enumerators.
  • Macros.
The following sections show how to document each one of these items. First of all, we will go through general guidelines that will help you to document your code.

Comments Style

link
Use the /// syntax for the comments going in the Web documentation, the // syntax for explicative comments in the code and the /* */ syntax only for the comments within one line.

Punctuation, Spelling and Grammar

link
Pay attention to punctuation, spelling, and grammar; it is easier to read well-written comments than badly written ones.

Special Characters

link
While non-ASCII characters are not allowed in names used in the code, use of Unicode e.g. for proper math formulas in comments is encouraged.

How to Document Your Code

Files

link
Start each file with copyright boilerplate, followed by a description of its contents.

Classes

link
Every class definition should have an accompanying comment that describes what it is for and how it should be used. The comment should be placed just before class keyword.

Functions

link
Declaration comments describe use of the function; comments at the definition of a function describe operation.

Class Data Members

link
Each class data member (also called an instance variable or member variable) should have a comment describing what it is used for. If the variable can take sentinel values with special meanings, such as a null pointer or -1, document this.

Namespaces

link
Every namespace definition should have an accompanying comment that describes what it is for. The comment should be placed just before namespace keyword.

Enumerations

link
Always provide a description of the enumerations and their enumerators values.

Macros

link
Always provide an explanation of what the macro is used for and how.

Other

link
Complex code blocks/lines, To do comments, etc.

Complex Code Blocks/Lines

Tricky or complicated code blocks can have comments before them. Note that such comments should be preceded with //, as they are not supposed to go to the Web documentation. Example:

// Divide result by two, taking into account that x
// contains the carry from the add.
for (int i = 0; i < result->size(); i++) {
  x = (x << 8) + (*result)[i];
  (*result)[i] = x >> 1;
  x &= 1;
}

Also, lines that are non-obvious can get a comment at the end of the line. These end-of-line comments should be separated from the code by 2 spaces. Example:

// If we have enough memory, mmap the data portion too.
mmapBudget = max<int64>(0, mmapBudget - index_->length());
if (mmapBudget >= mDataSize && !MmapData(mmapChunkBytes, mlock))
  return;  // Error already logged.

Note that there are both comments that describe what the code is doing, and comments that mention that an error has already been logged when the function returns.

If you have several comments on subsequent lines, it can often be more readable to line them up:

doSomething();                  // Comment here so the comments line up.
doSomethingElseThatIsLonger();  // Comment here so there are two spaces between
                                // the code and the comment.

To Do Comments

Precede comments with \todo keyword for code that is temporary, a short-term solution, or good-enough but not perfect. A list of these items will be then automatically included in the generated Web documentation.

/// \todo Use a "*" here for concatenation operator.
/// \todo Zeke change this to use relations.

If your comment is of the form "At a future date do something" make sure that you either include a very specific date ("Fix by November 2005") or a very specific event ("Remove this code when all clients can handle XML responses.").

References

[1] Doxygen [http://www.doxygen.org]