The Overview Pyramid is used to visualize a complete software system in a really compact manner. Therefor it collects a set of metrics from the categories Inheritance, Coupling and Size & Complexity, and puts them into relation. The following figure shows the base structure of the Overview Pyramid [1] .
The following three lists contain all the metrics, which the Overview Pyramid uses.
The category Size & Complexity contributes the greatest and mostly used set of software metrics.
This group of metrics informs about the coupling between different program parts in the analyzed application.
Both metrics in this group deal with the use of Inheritance and give a general overview of the use of Inheritance within the analyzed system.
Now that we know all metrics used for the Overview Pyramid, it is time to replace the placeholders with the measured informations. The figure below shows the filled Overview Pyramid.
In a second step, the previously independent metrics are set into relation. Therefor we calculate the average values of individual value pairs, these computed values provide us with new informations about the distributions within the application.
The following example figure of the Overview Pyramid contains a computed value for the measured LOC and NOM metric which shows us, that in the average each operation has 25 lines of code. This value can be described as very high, especially when you consider that most systems contain a variety of simple operation, like Getter and Setter, in addition to the main application logic.
To take reasonable conclusions from the computed values one important part is still missing, an adequate set of reference values. Without reference values, that say what values are low, average or high, it is not possible to classify these results. The current version of PHP_Depend supports a single set of reference values, this set was taken from [1] .
Reference values
Metric | Low | Average | High |
|---|---|---|---|
CYCLO/LOC | 0.16 | 0.20 | 0.24 |
LOC/NOM | 7 | 10 | 13 |
NOM/NOC | 4 | 7 | 10 |
NOC/NOP | 6 | 17 | 26 |
CALLS/NOM | 2.01 | 2.62 | 3.2 |
FANOUT/CALLS | 0.56 | 0.62 | 0.68 |
ANDC | 0.25 | 0.41 | 0.57 |
AHH | 0.09 | 0.21 | 0.32 |
With these reference values PHP_Depend can classify the computed results. PHP_Depend uses this information for the generation of colored backgrounds, so that the color already supports the categorization.
Of course, the final question is, which advantages offers the Overview Pyramid?
The Overview Pyramid provides a simple and size indipendent way to get a first impression of a software system, and this without an expensive source code analysis. Thus the Overview Pyramid is an effective tool for a first cost estimate for an unknown system. With the help of this tool and know-how, an experienced developer will quickly get a first impression and will know what can be expected from the analyzed application. And this knowledge could be a good help during the planning phase of a new project.