diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 00000000..c7418817 --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-slate \ No newline at end of file diff --git a/docs/img/code_metrics.png b/docs/img/code_metrics.png new file mode 100644 index 00000000..07b041f6 Binary files /dev/null and b/docs/img/code_metrics.png differ diff --git a/docs/index.md b/docs/index.md index f1e17c07..e2b5ecab 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,4 +2,5 @@ #### Options +* [Code metrics](options_code_metrics) * [Compiler paths](options_compilers_paths.html) \ No newline at end of file diff --git a/docs/options_code_metrics.md b/docs/options_code_metrics.md new file mode 100644 index 00000000..f6a6bcd6 --- /dev/null +++ b/docs/options_code_metrics.md @@ -0,0 +1,56 @@ +### Code metrics + +The quality of the D code is verifiable using code metrics. +In general several metrics exist: + +* simple Source Line of Code (SLOC), white lines and comment counter. +* [Halstead complexity](https://en.wikipedia.org/wiki/Halstead_complexity_measures): quality indicator based on the count of operators and operands. +* [Cyclomatic complexity](https://en.wikipedia.org/wiki/Cyclomatic_complexity): quality indicator based on the program execution flow. + +Coedit implements the Halstead metric. The other may be added in a further version. + +#### Halstead complexity + +The metric uses the count and the sum of the functions operands and operators to compute several indexes. Even it's clearly related to the SLOC it's more accurate. For example: + +```D +void foo() +{ + int a = 1, b; + a = a + a; +} +``` + +Is seen as less complex than + +```D +void foo() +{ + int a = 1, b; + a = a + b++; +} +``` + +Even if the SLOC count is the same. + +The verification is launched from the _File_ menu, _View Halstead metrics_. +Each free function and member function of the module that has the focus is measured. +When thresholds are crossed warnings are emitted. There is 3 possible warnings: + +* the maximal estimated number of bugs per function is reached, by default 0.5. +* the maximal estimated number of bugs per module is reached, by default 2. +* the maximal volume of a function is reached, by default 2000. + +Warnings are informative. They should simply be interpreted as an indicator that a function must be more tested or refactorized. + +It's important to note that the limits of the measure: + +* even with D embedded unit test, the measure is not able to detect that a complex function is well tested. +* the evolution of the quality over the time is not followed-up. +* results are only relevant with the _imperative_ and _object oriented_ programming paradigm. Template Meta Programming will give wrong results. UFCS chain are not detected as consecutive calls. + +Default values can be modified in the option editor: + +![](img/code_metrics.png) + +The maximal volume of a module is not verified, simply because it's possible to have huge modules with many high quality small functions. \ No newline at end of file diff --git a/docs/options_compilers_paths.md b/docs/options_compilers_paths.md index ad175f04..521bcf4e 100644 --- a/docs/options_compilers_paths.md +++ b/docs/options_compilers_paths.md @@ -8,17 +8,17 @@ These settings are important and should be verified after the installation. Up to five D compilers can be defined. -* DMD: should be set to the stable DMD version. The paths are normally detected when _Coedit_ is launched for hte first time. -* GDC: should be set to the stable GDC version. The _runtime_ and _Phobos_ sources stand in the same folder so the third field can be left empty. -* LDC: should be set to the stable GDC version. The _runtime_ and _Phobos_ sources stand in the same folder so the third field can be left empty. -* User1: can be set to any compiler, for the example the development version of DMD. -* User2: same as _User1_. +* __DMD__: should be set to the stable DMD version. The paths are normally detected when _Coedit_ is launched for hte first time. +* __GDC__: should be set to the stable GDC version. The _runtime_ and _Phobos_ sources stand in the same folder so the third field can be left empty. +* __LDC__: should be set to the stable LDC version. The _runtime_ and _Phobos_ sources stand in the same folder so the third field can be left empty. +* __User1__: can be set to any compiler, for the example the development version of DMD. +* __User2__: a second user-defined compiler. The combo box at the top is used to select which are the paths passed to the completion daemon. When the completion daemon is launched by _Coedit_ the change is applied directly after the validation, otherwise it has to be restarted manually. -In other categories of the options one of these compilers can be selected. +In other options categories one of these compilers can be selected. -* Category _Application_, __nativeProjectCompiler_: defines the compiler used to compile a project that has the native format. +* Category _Application_, _nativeProjectCompiler_: defines the compiler used to compile a project that has the native format. * Category _Runnable modules_, _compiler_: defines the compiler used to compile a _runnable module_ or a DUB script. * Category _DUB build_, _compiler_: defines the compiler used to compile a project that has the DUB format. \ No newline at end of file