Documentation/4.10/Developers/Style Guide

From Slicer Wiki
Jump to: navigation, search
Home < Documentation < 4.10 < Developers < Style Guide


For the latest Slicer documentation, visit the read-the-docs.


Code style

Code that inherits from VTK classes should follow VTK coding conventions for naming, indentation, etc. See http://www.vtk.org/Wiki/VTK_Coding_Standards for details.

Naming

  1. Acronyms should be written with the same case for each letter (all uppercase or all lowercase).
    RASToSlice not RasToSlice
    vtkMRML not vtkMrml
    vtkSlicer not vTKSlicer
  2. Words should be spelled out and not abreviated
    GetWindow not GetWin
  3. File names must follow the Camel case convention
    TestMyFeature.cxx not Test-My_Feature.cxx
  4. Use US English words and spelling
    "Millimeter" not "Millimetre"
    "Color" not "Colour"

Comments

  1. include extensive comments in the header files
  2. keep the comments up to date as the code changes
  3. use the keyword \todo to flag spots in the code that need to be revisited
  4. do not leave blocks of commented out code in the source file -- if needed insert links to prior svn versions as comments

Functions

  1. Don't mix different levels of abstraction
    Examples:
    When dealing with files names and path, use kwsys::SystemTools in VTK classes, QFileInfo/QDir in Qt classes or os.path in python. Instead of doing string manipulation manually:
    QString filePath = directoryPath + "/" + fileName + ".exe")
    prefer instead:
    SystemTools::JoinPath(), SystemTools::GetFilenameName()...
    QFileInfo(QDir directory, QString fileName), QFileInfo::suffix(), QFileInfo::absoluteFilePath()...
    os.path.join(), os.path.splitext(), os.path.abspath()...
    References:
    • Clean Code from Robert C. Martin: Mixing levels of abstraction within a function is always confusing. Readers may not be able to tell whether a particular expression is an essential concept or a detail. Worse, like broken windows, once details are mixed with essential concepts, more and more details tend to accrete within the functions.
    • http://zuskin.com/coding_habits__functions.htm#Abstraction_levels
  2. Use STL where you can, but follow the VTK guidelines
    1. However, prefer Qt Container classes to STL classes in Qt files
    2. Note that a vtkCollection is somewhat equivalent to std::list<vtkSmartPointer<vtkObject*> >

Layout

Includes

  1. Only include the necessary files, no more.
  2. Group includes per library
  3. Alphabetically sort files within groups
  4. Order groups from local to global
    e.g. Module then MRML then CTK then Qt then VTK then ITK then STL
  5. Implementation files should include the header files first

For example:

// header
// ...
// end header

#include "qSlicerMyModule.h"

// MyModule includes
#include "qSlicerMyModuleWidget.h"
#include "vtkSlicerMyModuleLogic.h"

// MRML includes
#include "vtkMRMLScene.h"

// Qt includes
#include <QDialog>

// VTK includes
#include <vtkSmartPointer.h>

// STD includes
#include <vector>

Language Specific

  1. C++
  2. Python
  3. CMake

Library Dependencies

  1. MRML classes should only depend on vtk and itk (not Slicer Logic or Qt)
  2. Logic classes depend on MRML to store state
  3. Logic classes should encapsulate vtk and itk pipelines to accomplish specific slicer tasks (such as resampling volumes for display)
  4. GUI classes can depend on MRML and Logic and Qt

Development Practices

  1. While developing code, enable VTK_DEBUG_LEAKS (ON by default) in your vtk build and be sure to clean up any leaks that arise from your contributions.

Coordinate Systems

  1. World space for 3D Views is in RAS (Right Anterior Superior) space. See Coordinate systems.
  2. All units are expressed in Millimeters (mm)

Error and warning messages

The ITK, VTK, Qt, std::cout, std::cerr .. all appear in the error log and can easily be filtered according to their type (debug/warning/error).

  • Errors: Error should be used to signal something that should not happen. They usually mean that the execution of the current function/code should be stopped.
  • Warnings: Warning should be used to signal potentially dangerous behavior. Also consider using these in deprecated methods to warn your fellow developers.
  • Debugs: For general debug and developer aimed information, one can use the debug messages.
Error log in Slicer 4
  • In Qt-based classes:
 if (somethingWrongHappened)
   {
   qCritical() << "I encountered an error";
   return;
   }
 qWarning() << "Be careful here, this is dangerous";
 qDebug() << "This variable has the value: "<< value;
 if (somethingWrongHappened)
   {
   vtkErrorMacro("I encountered an error");
   return;
   }
 vtkWarningMacro("Be careful here, this is dangerous");
 vtkDebugMacro("This variable has the value: "<< value);

Misc.

  1. Ideally, no more than 80 characters per line. Keep line length under 120 characters.

Commits

Summary

  • Separate the subject from body with a blank line
  • Limit the subject line to 50 characters
  • Capitalize the subject line
  • Do not end the subject line with a period
  • Use the imperative mood in the subject line
  • Wrap the body at 72 characters
  • Use the body to explain what and why vs. how
    • If there was important/useful/essential conversation or information, copy or include a reference
  • Prefix the commit message title with "BUG:","ENH:","COMP:", "STYLE:". Note the ':' (colon) character.
  • When possible, one keyword to scope the change in the subject (i.e. "STYLE: README: ...", "BUG: vtkMRMLSliceLogic: ...")

Commit message prefix

Subversion Commits to Slicer require commit type in the comment.

Valid commit types are:

  BUG:   - a change made to fix a runtime issue
           (crash, segmentation fault, exception, or incorrect result,
  COMP:  - a fix for a compilation issue, error or warning,
  ENH:   - new functionality added to the project,
  PERF:  - a performance improvement,
  STYLE: - a change that does not impact the logic or execution of the code.
           (improve coding style, comments, documentation).

Note that the ':'(colon) directly follows the commit tag. For example, it is: "STYLE:" not "STYLE :"

The Subversion command to commit the change is:

 svn commit -m "BUG: fixed core dump when passed float data" filename1[, filename2, ...]

By using the -m command line option, it's not possible to submit a message having multiple line. Submitting a mutli-line message can be achieved using the -f option:

 svn commit -f /path/to/message filename1[, filename2, ...]

It's also possible to set the environment variable SVN_EDITOR

Message content

  1. A good commit message title (first line) should explain what the commit does for the user, not how it is done. How can be explained in the body of the commit message (if looking at the code of the commit is not self explanatory enough).
    Examples:
    • Bad: BUG: Check pointer validity before dereferencing -> implementation detail, self-explanatory (by looking at the code)
    • Good: BUG: Fix crash in Module X when clicking Apply button
    • Bad: ENH: More work in qSlicerXModuleWidget -> more work is too vague, qSlicerXModuleWidget is too low level
    • Good: ENH: Add float image outputs in module X
    • Bad: COMP: Typo in cmake variable -> implementation detail, self-explanatory
    • Good: COMP: Fix compilation error with Numpy on Visual Studio
  2. If the commit is related to a mantis issue (bug or feature request), you can mention it in the commit message body by preceding the issue number with a #(pound) character:
BUG: Fix crash in Volume Rendering module when switching view layout

vtkSetAndObserveMRMLNodeEventsMacro can't be used for observing all types of vtkObjects,
only vtkMRMLNode is expected by vtkMRMLAbstractLogic::OnMRMLNodeModified(...) 
Closes #1641

Where 1641 refers to the issue number in mantis.

  1. Notice the empty 2nd line.

Importing changes from external project/repository

When you update the git tag or svn revision of any external project, explain in the commit message what the update does instead of just mentioning that an update in made.

This will avoid having a Slicer commit history made of unintelligible messages:

r19180 - ENH: Update git tag
r19181 - BUG: Update svn revision
r19182 - ENH: revision updated
...

Ideally it should be the same message than the commit(s) in the external repository.

Read Documentation/4.10/Developers/Versioning#Project_fork for an exhaustive list of recommendations.

Example:

COMP: Update MultiVolumeExplorer to fix unused-local-typedefs warnings

$ git shortlog 17a9095..d68663f --no-merges
Jean-Christophe Fillion-Robin (1):
      COMP: Fix unused-local-typedefs warnings

See r23377

Resources


UI Design Guidelines

General guidelines

Panels

Section

Volume Rendering sections

A section is used in a panel to categorize parameters by visually grouping them. In the Volume Rendering module, there are 3 sections: 'Inputs', 'Display', and 'Advanced...'. By default, the 'Inputs' and 'Advanced...' sections are collapsed. This reduces visual cluttering by hiding advanced and rarely used parameters. Sections should be organized in such a way that the workflow takes the user from top to bottom:

  1. The 'Inputs' section is first as it controls the inputs of the volume rendering.
  2. then the 'Display' section controls important display properties
  3. finally, if the previous parameters are not enough to obtain the desired result, the Advanced.. section offers fine tuning of the volume rendering.

Please note that the Advanced-ness of a section doesn't necessarily impacts its position in the section ordering. To create a section you must use a ctkCollapsibleButton [1] with no panel frame. Typically, the main node selector (Volume: in Volume Rendering) is the first GUI element and is outside any section.

Parameters

Justify elements in panel

Elements in panels should be justified (use of a QFormLayout can simplify the task)

Text

  1. Capitalize the first letter in any text specified for a label or button:
    "Load volumes" instead of "Load Volumes"
    More capitalization rules
  2. Try to use brief phrases when specifying text for a label or button rather than using sentences or sentence fragments ( use "Load volumes" instead of "Choose a volume to load")
  3. Provide fully descriptive tool tips with each widget defined
  4. Don't use colon after each parameter labels:
    "Load volumes" instead of "Load volumes:"
  5. Use US English and avoid abbreviations (see the Naming section above.)

Layouts

  1. Use the default values for the margins or 0. Default margins are automatically controlled by the Slicer custom style (see QStyle::PM_LayoutLeftMargin)
  2. The minimum size hint of the top level module widget is used to determine the minimum width of the module. The minimum width of a module must not be larger than 500px (subject to change). This is enforced by the automatic test qSlicerMY_MODULE_NAMEModuleGenericTest. If the width is too large, you have multiple ways of narrowing the module panel:
    1. In Qt Designer, you can ensure the sizing is correct by changing the QLayout::SizeConstraint to QLayout::SetMinimumSize. When you preview the module (Ctrl-R), it appears with the same size as it would in Slicer.
    2. Ideally the minimum size hint of each wide GUI element should be fixed, it is unlikely that a large size hint is "ideal".
    3. Alternatively, you might want to investigate the following:
      1. Consider setting the horizontal size policy of such element to QSizePolicy::Ignored
      2. If the element is in a form layout, QFormLayout::layoutFieldGrowthPolicy might need to be set to AllNonFixedFieldsGrow.
      3. All those changes can be set from Qt Designer.

Links

Logging

The following log levels are used in Slicer:

  • Error: detected errors, conditions that should never occur
  • Warning: potential errors, possible computation inaccuracies
  • Info: important events, application state changes (helps to determine what the steps lead to a certain error or warning); one user action should not generate more than 1-2 info level messages
  • Debug: any information that may be useful for debugging and troubleshooting

In VTK classes:

  • vtkErrorMacro("vtkMRMLClipModelsNode:: Invalid Clip Type");
  • vtkWarningMacro("Model " << modelNode->GetName() << "'s display node is null\n");
  • vtkDebugMacro("CreateWidget: found a glyph type already defined for this node: " << iter->second);

In QT classes:

  • qCritical() << "qSlicerUtils::setPermissionsRecursively: Failed to set permissions on file" << info.filePath();
  • qWarning() << "qSlicerIOManager::openScreenshotDialog: Unable to get Annotations module (annotations), using the CTK screen shot dialog.";
  • qDebug() << "qMRMLSceneFactoryWidget::deleteNode(" <<className <<") no node";

In Python:

  • logging.error("This is an error message. It is printed on the console (to standard error) and to the application log.")
  • logging.warning("This is a warning message. It is printed on the console (to standard error) and to the application log.")
  • logging.info("This is an information message. It is printed on the console (to standard output) and to the application log.")
  • logging.debug("This is a debug message. It is only recorded in the application log but not displayed in the console. File name and line number is added to the log record.")

Wiki

  • Prefer to follow Wikipedia conventions for page naming: For multiword page titles, leave the second and subsequent words in lowercase unless the title phrase is a proper noun that would always occur capitalized, even in the middle of a sentence.
  • Versioned pages should include '<noinclude>{{documentation/versioncheck}}</noinclude>' at the very beginning.
    • FAQ pages should also have (immediately after the above): '<noinclude>__TOC__={{#titleparts: {{PAGENAME}} | | -1 }}=</noinclude><includeonly>='''name of parent FAQ: {{{1}}}'''=</includeonly> (be sure to replace "name of parent FAQ").