Description / Features
This Sonar Plugin is an implementation of Toxicity Chart visualization technique presented by Erik Dörnenburg on his blog. This technique is very useful to quickly get an idea about the general quality of the large existing code base. Toxicity Charts stack multiple static analysis metrics for classes, methods, or components within an application, providing a combined "toxicity" score for each area of the code base. This can be extremely useful in helping managers and non-developers understand the internal quality of the code

In a Toxicity Chart each bar represents a class and the height of the bar shows the toxicity score for that class. The score is based on 11 rules (see Usage & Installation section) and different colours are used to represent each one. This makes it possible to easily spot not only how toxic a code base is, but also how the problems are distributed and what the preponderant "code smell" is. The classes that score zero points are left off the chart. The metrics are computed using the threshold value set for corresponding Checkstyle rule.

For example if the Method Length metric has a threshold of 30 and a class comprises three methods, one that is 25 lines, one that is 45 lines and another that is 60 lines long, then the score is calculated to be proportional to the length of the method in relation to the threshold and for the given scenario the class gets 1.5 + 2 = 3.5 points.
Axes of quality
All the metrics are computed using the approach presented above.
File Length
Total of points accumulated due to the violation of Checkstyle File Length rule. The possible associated technical debts are: Understandability, Maintainability and Single Responsibility Principle violation.
Method Length
Total of points accumulated due to the violation of Checkstyle Method Length rule. The possible associated technical debts are: Understandability, Maintainability and Single Responsibility Principle violation.
Cyclomatic Complexity
Total of points accumulated due to the violation of Checkstyle Cyclomatic Complexity rule. The possible associated technical debts are: Understandability, Maintainability and Testability.
Parameter Number
Total of points accumulated due to the violation of Checkstyle Parameter Number rule. The possible associated technical debts are: Understandability, Maintainability and Testability.
Boolean Expression Complexity
Total of points accumulated due to the violation of Checkstyle Boolean Expression Complexity rule. The possible associated technical debts are: Understandability, Maintainability and Testability.
Nested If Depth
Total of points accumulated due to the violation of Checkstyle Nested If Depth rule. The possible associated technical debts are: Understandability, Maintainability and Testability.
Nested Try Depth
Total of points accumulated due to the violation of Checkstyle Nested Try Depth rule. The possible associated technical debts are: Understandability, Maintainability and Testability.
Missing Switch Default
Total of points accumulated due to the violation of Checkstyle Missing Switch Default rule. The possible associated technical debt is: Correctness.
Class Fan Out Complexity
Total of points accumulated due to the violation of Checkstyle Class Fan out Complexity rule. The possible associated technical debts are: Understandability, Maintainability, Testability and High Coupling.
Class Data Abstraction Coupling
Total of points accumulated due to the violation of Checkstyle Class Data Abstraction Coupling rule. The possible associated technical debts are: Understandability, Maintainability, Testability and High Coupling.
Anon Inner Length
Total of points accumulated due to the violation of Checkstyle Anon Inner Length rule. The possible associated technical debt is: Maintainability.
Average value
Total of points accumulated due violation of all above rules divided by the number of classes that score more than one point.
Usage & Installation
- Copy the jar into /extensions/plugins/ directory
- Restart Sonar Web server
- Check on Quality Profile page if the below Checkstyle Rules are enabled and the threshold values are set appropriate
- Launch a new quality analysis and the metrics will be fed
The table below lists the Checkstyle rules that should be enabled in order to generate the Toxicity Chart. The threshold values are just suggestions and they can be modified to fit the desired Quality Profile.
| Checkstyle Rule | Level | Threshold |
|---|---|---|
| File Length | file | 500 |
| Method Length | method | 30 |
| Cyclomatic Complexity | method | 10 |
| Parameter Number | method | 7 |
| Boolean Expression Complexity | statement | 3 |
| Nested If Depth | statement | 3 |
| Nested Try Depth | statement | 2 |
| Missing Switch Default | statement | - |
| Class Fan Out Complexity | class | 30 |
| Class Data Abstraction Coupling | class | 10 |
| Anon Inner Length | inner class | 35 |


