coding-conventions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
coding-conventions [2009/06/17 13:37] – added link to doc++ bp | coding-conventions [2017/11/24 16:45] (current) – Add4d Documentation & Testing, updated Checks before commiting bp | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | =====Coding standard===== | ||
==== Naming conventions ==== | ==== Naming conventions ==== | ||
Line 40: | Line 41: | ||
==== Using comments to document the code ==== | ==== Using comments to document the code ==== | ||
+ | OOFEM uses [[http:// | ||
- | OOFEM uses [[http:// | + | If you are overloading methods from another class, you should **leave the documentation |
- | In general, a special comments should be added straigh | + | In general, a special comments should be added straight |
+ | < | ||
+ | /// Array storing nodal coordinates. | ||
+ | FloatArray coordinates; | ||
- | /// Array storing nodal coordinates. | + | /// Description of enumeration |
- | | + | enum SomeEnum { |
+ | SE_First, | ||
+ | | ||
+ | SE_Third, | ||
+ | } | ||
+ | </ | ||
- | If you intend to write more than one line of documentation, | + | If you intend to write more than one line of documentation, |
- | + | ||
- | /** | + | |
- | * Triplet defining the local coordinate system in node. | + | |
- | * Value at position (i,j) represents angle between e'(i) and e(j), | + | |
- | * where e' is base vector of local coordinate system and e is | + | |
- | * base vector of global c.s. | + | |
- | */ | + | |
- | | + | |
+ | < | ||
+ | /** | ||
+ | * Triplet defining the local coordinate system in node. | ||
+ | * Value at position (i,j) represents angle between e'(i) and e(j), | ||
+ | * where e' is base vector of local coordinate system and e is | ||
+ | * base vector of global c.s. | ||
+ | */ | ||
+ | | ||
+ | </ | ||
- | DOC++ automatically imposes a hierarchical stucture to the manual entries for classes, structs, unions, enums and interfaces, in that it organizes members of such as sub-entries. If you need to group manual entries, you may do so with the construction: | + | Doxygen |
- | | + | < |
- | | + | /** |
- | | + | * @name <name for the group> |
- | //@{ | + | * < |
+ | */ | ||
+ | ///@{ | ||
<other manual entries> | <other manual entries> | ||
- | | + | ///@} |
+ | </ | ||
This will create an entry with the specified name, that contains all <other manual entries> as sub entries. Note, however, that class members are automatically set as sub entries of the class' | This will create an entry with the specified name, that contains all <other manual entries> as sub entries. Note, however, that class members are automatically set as sub entries of the class' | ||
Line 72: | Line 86: | ||
To document a function or a method of a class, describe the working and usage of the member function, as well as the individual parameters and return values. For example: | To document a function or a method of a class, describe the working and usage of the member function, as well as the individual parameters and return values. For example: | ||
< | < | ||
- | /** | + | /** |
- | * Class implementing node in finite element mesh. Node posses degrees of freedom. | + | * Class implementing node in finite element mesh. Node posses degrees of freedom. |
- | * Node is atribute of few elements and it is managed by domain. | + | * Node is atribute of few elements and it is managed by domain. |
- | * Node manages its positon in space, and optional local coordinate system. | + | * Node manages its positon in space, and optional local coordinate system. |
- | * By default, global coordinate system is assumed in each node. | + | * By default, global coordinate system is assumed in each node. |
- | */ | + | */ |
- | class Node : public DofManager { | + | class Node : public DofManager |
- | + | { | |
- | + | public: | |
- | /** Computes the load vector of receiver in given time. | + | /** |
- | | + | * Computes the load vector of receiver in given time. |
- | | + | * @param answer |
- | | + | * @param stepN Time step when answer is computed. |
+ | * @param mode Determines | ||
*/ | */ | ||
- | virtual void | + | virtual void computeLoadVectorAt(FloatArray & |
- | } | + | } |
</ | </ | ||
- | ==== Source file layout ==== | + | Again, Doxygen will inherit documentation from super classes, so do not add comments unless something specific needs to be said for the implementing routine. Be sure to document all variables |
- | + | < | |
- | Each source file, header or implementation file starts with a Subversion identification line and an author line, e.g.: | + | doxygen doc/refman/ |
- | + | </code> | |
- | /* $Id$ */ | + | |
=== Header file layout === | === Header file layout === | ||
Line 100: | Line 114: | ||
Each header file has the following layout: | Each header file has the following layout: | ||
- | * Subversion identification line | ||
* Copyright notice | * Copyright notice | ||
* Inclusion protection macro | * Inclusion protection macro | ||
* Headers file includes | * Headers file includes | ||
* Forward declarations | * Forward declarations | ||
- | * Actual class definition with DOC++ comments | + | * Actual class definition with doxygen |
For a typical example see element.h. | For a typical example see element.h. | ||
Line 111: | Line 124: | ||
Each implementation file has the following layout: | Each implementation file has the following layout: | ||
- | * Subversion identification line | ||
* Copyright notice | * Copyright notice | ||
* Header file includes | * Header file includes | ||
Line 124: | Line 136: | ||
uncrustify -c oofem_dir/ | uncrustify -c oofem_dir/ | ||
</ | </ | ||
+ | ===== Documentation and Testing ===== | ||
+ | OOFEM aims to be high quality software and as a such it must be accompanied by high quality, up to date documentation. Also internal tests and benchmarks are absolutely necessary to ensure continuous software quality | ||
+ | * The new functionality (elements, material models, etc.) will be only accepted if relevant documentation will be provided, in particular the oofem manuals should describe the new functionality | ||
+ | * The new functionality will be only accepted if internal tests will be developed and documented. See existing tests in oofem distribution (tests directory), and [[http:// | ||
+ | |||
+ | ===== Checks before committing ===== | ||
+ | * For new work, commit only when some stage of implementation is reached and code is already useful. Do not use svn repository as daily backup tool for your files, that you are developing for several weeks. | ||
+ | * Test your implementation before committing. Run at least oofem basic tests and check the results: < | ||
+ | cd targets/ | ||
+ | less test_results | ||
+ | </ | ||
+ | * Check if documentation is updated as well (includes not only doc++ comments, but also oofem documentation, | ||
+ | * Make sure that new functionality comes with internal tests. | ||
+ | * Please compile your sources with " | ||
+ | * Reformat your code using uncrustify tool | ||
+ | |||
+ | |||
+ | |||
coding-conventions.1245238623.txt.gz · Last modified: 2009/06/17 13:37 by bp