Are there any tools available that will calculate code metrics (for example number of code lines, cyclomatic complexity, coupling, cohesion) for your project and over time produce a graph showing the trends?
|
|
On my latest project I used SourceMonitor. It' very nice free tool for code metrics analysis.
For .NET beside NDepend which is simply the best tool, I can recommend vil Following tools can perform trend analysis: |
||||||
|
|
|
NDepend for .net |
||
|
|
|
|
If you're in the .NET space, Developer Express' CodeRush provides LOC, Cyclomatic Complexity and the (rather excellent, IMHO) Maintenance Complexity analysis of code in real-time. (Sorry about the Maintenance Complexity link; it's going to Google's cache. The original seems to be offline ATM). |
||
|
|
|
|
I was also looking for a code metrics tool/plugin for my IDE but as far as I know there are none (for eclipse that is) that also show a graph of the complexity over a specified time period. However, I did find the eclipse metrics plugin, it can handle:
And while using it, I didn't miss the graphing option you are seeking as well. As a side note, the eclipse metrics plugin allows you to export the data to an external file (link goes to an example), so if you use a source control tool, and you should!, you can always export the data for the specific build and store the file along with the source code, that way you still have a (basic) way to go back in time and check the differences. |
||
|
|
|
|
For Python, pylint can provide some code quality metrics. |
||
|
|
|
|
On the PHP front, I believe for example phpUnderControl includes metrics through phpUnit (if I am not mistaken). Keep in mind that metrics are often flawed. For example, a coder who's working on trivial problems will produce more code and there for look better on your graphs, than a coder who's cracking the complex issues. |
||
|
|
|
|
There's also a code metrics plugin for reflector, in case you are using .NET. |
||
|
|
|
|
If you're after some trend analysis, does it really mean anything to measure beyond SLOC? Even if you just doing a grep for trailing semi-colons and counting the number of lines returned, what you are after is consistency in the SLOC measurement technique. In this way today's measurement can be compared with last month's measurement in a meaningful way. I can't really see what would a trend of McCabe Cyclometric Complexity give? I think that CC should be used more for a snapshot of quality to provide feedback to the developers. Edit: Ooh. Just thought of a couple of other measurements that might be useful. Comments as a percentage of SLOC and test coverage. Neither of which you want to let slip. Coming back to retrofit either of these is never as god as doing them "in the heat of the moment!" HTH. cheers, Rob |
|||
|
|
|
|
Code Analyzer is simple tool which generates this kind of metrics.
|
||
|
|
|
|
keep in mind, What you measure is what you get. loc says nothing about productivity or efficency. rate a programmer by lines of code and you will get.. lines of code. the same argument goes for other metrics. otoh.. http://www.crap4j.org/ is a very conservative and useful metric. it sets complexity in relation with coverage. |
||
|
|
|
|
Concerning the tool NDepend it comes with 82 different code metric, from Number of Lines of Code, to Method Rank (popularity), Cyclomatic Complexity, Lack of Cohesion of Methods, Percentage Coverage (extracted from NCover or VSTS), Depth of Inheritance... All these metrics are detailled here. |
||
|
|
|
|
Scitools' Understand does have the capability to generate a lot of code metrics for you. I don't have a lot of experience with the code metrics features, but the static analysis features in general were nice and the price was very reasonable. The support was excellent. |
||
|
|
|
|
Atlassian FishEye is another excellent tool for the job. It integrates with your source control system (currently supports CVS, SVN and Perforce), and analyzes all your files that way. The analysis is rather basic though, and the product itself is commercial (but very reasonably priced, IMO). You can also get an add-on for it called Crucible that facilitates peer code reviews. |
||
|
|
|
|
check out dev \ efor i guess it's exactly what you need |
||
|
|

