Google style from https://google.github.io/styleguide/cppguide.html with a few minor alterations:
- Max line length 120
- Aim for 80, but up to 120 is fine.
- Exceptions
- Allowed to throw fatal errors that are expected to result in a top level handler catching them, logging them and terminating the program.
- Non-const references
- Allowed
- Use a non-const reference for arguments that are modifiable but cannot be nullptr so the API clearly advertises the intent
- Const correctness and usage of smart pointers (shared_ptr and unique_ptr) is expected. A non-const reference equates to “this is a non-null object that you can change but are not being given ownership of”.
- 'using namespace' permitted with limited scope
- Not allowing 'using namespace' at all is overly restrictive. Follow the C++ Core Guidelines:
Other
- Qualify usages of 'auto' with 'const', '*', '&' and '&&' where applicable to more clearly express the intent
- When adding a new class, disable copy/assignment/move until you have a proven need for these capabilities. If a need arises, enable copy/assignment/move selectively, and when doing so validate that the implementation of the class supports what is being enabled.
- Use ORT_DISALLOW_COPY_ASSIGNMENT_AND_MOVE initially
- See the other ORT_DISALLOW_* macros in https://github.com/microsoft/onnxruntime/blob/master/include/onnxruntime/core/common/common.h
- Don't use else after return. see: https://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return
- Don't overuse std::shared_ptr. Use std::shared_ptr only if it's not clear when and where the object will be deallocated. See also: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-shared_ptr
- Avoid using the 'long' type, which could be either 32 bits or 64 bits.
- If there is a legitimate need to allocate objects on the heap, prefer using onnxruntime::make_unique(). References for the reasoning:
- Use SafeInt when calculating the size of memory to allocate to protect against overflow errors
#include "core/common/safeint.h"
- search for
SafeInt<size_t>
in the code for examples
Clang-format will handle automatically formatting code to these rules. There’s a Visual Studio plugin that can format on save at https://marketplace.visualstudio.com/items?itemName=LLVMExtensions.ClangFormat, or alternatively the latest versions of Visual Studio 2017 include clang-format support.
There is a .clang-format file in the root directory that has the max line length override and defaults to the google rules. This should be automatically discovered by the clang-format tools.
Visual Studio Code Analysis with C++ Core guidelines rules enabled is configured to run on build for the onnxruntime_common, onnxruntime_graph and onnxruntime_util libraries. Updating the onnxruntime_framework and onnxruntime_provider libraries to enable Code Analysis and build warning free is pending.
Code changes should build with no Code Analysis warnings, however this is somewhat difficult to achieve consistently as the Code Analysis implementation is in fairly constant flux. Different minor releases may have less false positives (a build with the latest version may be warning free, and a build with an earlier version may not), or detect additional problems (an earlier version builds warning free and a later version doesn't).
There should be unit tests that cover the core functionality of the product, expected edge cases, and expected errors. Code coverage from these tests should aim at maintaining over 80% coverage.
All changes should be covered by new or existing unit tests.
In order to check that all the code you expect to be covered by testing is covered, run code coverage in Visual Studio using 'Analyze Code Coverage' under the Test menu.
There is a configuration file in onnxruntime\VSCodeCoverage.runsettings that can be used to configure code coverage so that it reports numbers for just the onnxruntime code. Select that file in Visual Studio via the Test menu: 'Test' -> 'Test Settings' -> 'Select Test Settings File'.
Using 'Show Code Coverage Coloring' will allow you to visually inspect which lines were hit by the tests. See https://docs.microsoft.com/en-us/visualstudio/test/using-code-coverage-to-determine-how-much-code-is-being-tested?view=vs-2017.
Please adhere to the PEP8 Style Guide. A maximum line length of 120 characters is allowed for consistency with the C++ code.
Code can be validated with flake8 using the configuration file in the root directory called .flake8.
The autopep8 tool can be used to automatically fix a range of PEP8 issues, as can yapf. There's a yapf configuration file here.
Editors such as PyCharm (see here) and Visual Studio Code (see here) can be configured to check for PEP8 issues.