Calculate code metrics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:00:43Z http://stackoverflow.com/feeds/question/60394 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/60394/calculate-code-metrics 13 Calculate code metrics Bjorn Reppen 2008-09-13T07:53:06Z 2009-03-06T17:28:02Z <p>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? </p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60395#60395 5 Answer by IainMH for Calculate code metrics IainMH 2008-09-13T07:54:10Z 2008-09-13T07:54:10Z <p><a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> for .net</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60400#60400 16 Answer by aku for Calculate code metrics aku 2008-09-13T08:01:47Z 2008-09-13T10:08:26Z <p>On my latest project I used <a href="http://www.campwoodsw.com/sm20.html" rel="nofollow">SourceMonitor</a>. It' very nice free tool for code metrics analysis.<br /> Here is an excerpt from SourceMonitor official site:</p> <ul> <li>Collects metrics in a fast, single pass through source files.</li> <li>Measures metrics for source code written in C++, C, C#, VB.NET, Java, Delphi, Visual Basic (VB6) or HTML.</li> <li>Includes method and function level metrics for C++, C, C#, VB.NET, Java, and Delphi.</li> <li><strong>Saves metrics in checkpoints for comparison during software development projects.</strong></li> <li>Displays and prints metrics in tables and charts.</li> <li>Operates within a standard Windows GUI or inside your scripts using XML command files.</li> <li>Exports metrics to XML or CSV (comma-separated-value) files for further processing with other tools.</li> </ul> <p>For .NET beside <a href="http://www.ndepend.com" rel="nofollow">NDepend</a> which is simply the best tool, I can recommend <a href="http://www.1bot.com/index.html" rel="nofollow">vil</a></p> <p>Following tools can perform trend analysis:</p> <ul> <li><a href="http://www.castsoftware.com/Product/Application-Intelligence-Platform.aspx" rel="nofollow">CAST</a></li> <li><a href="http://www.klocwork.com/products/insight.asp" rel="nofollow">Klocwork Insight</a></li> </ul> http://stackoverflow.com/questions/60394/calculate-code-metrics/60402#60402 2 Answer by moobaa for Calculate code metrics moobaa 2008-09-13T08:07:55Z 2008-09-13T08:07:55Z <p>If you're in the .NET space, Developer Express' <a href="http://devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">CodeRush</a> provides LOC, Cyclomatic Complexity and the (rather excellent, IMHO) <a href="http://74.125.95.104/search?q=cache:www.doitwith.net/2005/03/02/Here%27sYourNewMetric.aspx" rel="nofollow">Maintenance Complexity</a> analysis of code in real-time.</p> <p>(Sorry about the Maintenance Complexity link; it's going to Google's cache. The original seems to be offline ATM).</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60410#60410 5 Answer by Sven for Calculate code metrics Sven 2008-09-13T08:26:36Z 2008-09-13T08:26:36Z <p>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 <a href="http://eclipse-metrics.sourceforge.net/" rel="nofollow">eclipse metrics plugin</a>, it can handle:</p> <ul> <li>McCabe's Cyclomatic Complexity</li> <li>Efferent Couplings</li> <li>Lack of Cohesion in Methods</li> <li>Lines Of Code in Method</li> <li>Number Of Fields</li> <li>Number Of Levels</li> <li>Number Of Locals In Scope</li> <li>Number Of Parameters</li> <li>Number Of Statements</li> <li>Weighted Methods Per Class</li> </ul> <p>And while using it, I didn't miss the graphing option you are seeking as well.<br /> I think that, if you don't find any plugins/tools that can handle the graphing over time, you should look at the tool that suits you most and offers you all the information you need; even if the given information is only for the current build of your project.</p> <p>As a side note, the <em>eclipse metrics plugin</em> allows you to <a href="http://eclipse-metrics.sourceforge.net/example/index.html" rel="nofollow">export the data to an external file</a> (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.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60412#60412 0 Answer by Readonly for Calculate code metrics Readonly 2008-09-13T08:30:16Z 2008-09-13T08:30:16Z <p>For Python, <a href="http://www.logilab.org/857" rel="nofollow">pylint</a> can provide some code quality metrics.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60429#60429 0 Answer by Till for Calculate code metrics Till 2008-09-13T09:15:08Z 2008-09-13T09:15:08Z <p>On the PHP front, I believe for example <a href="http://phpundercontrol.org" rel="nofollow">phpUnderControl</a> includes metrics through <a href="http://www.phpunit.de/" rel="nofollow">phpUnit</a> (if I am not mistaken).</p> <p>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.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60450#60450 1 Answer by Tobi for Calculate code metrics Tobi 2008-09-13T10:05:21Z 2008-09-13T10:05:21Z <p>There's also a <a href="http://www.codeplex.com/reflectoraddins/Wiki/View.aspx?title=CodeMetrics&amp;referringTitle=Home" rel="nofollow">code metrics plugin</a> for <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">reflector</a>, in case you are using .NET.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/60467#60467 0 Answer by Rob Wells for Calculate code metrics Rob Wells 2008-09-13T10:40:44Z 2008-09-13T10:46:15Z <p>If you're after some trend analysis, does it really mean anything to measure beyond SLOC?</p> <p>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.</p> <p>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.</p> <p>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!"</p> <p>HTH.</p> <p>cheers,</p> <p>Rob</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/100173#100173 1 Answer by Prakash for Calculate code metrics Prakash 2008-09-19T07:09:37Z 2008-09-19T07:09:37Z <p><a href="http://sourceforge.net/projects/codeanalyze-gpl/" rel="nofollow">Code Analyzer</a> is simple tool which generates this kind of metrics.</p> <p><img src="http://www.codeanalyzer.teel.ws/docs/post-analysis-shot.png" alt="alt text" /></p> http://stackoverflow.com/questions/60394/calculate-code-metrics/105338#105338 0 Answer by Andreas Petersson for Calculate code metrics Andreas Petersson 2008-09-19T20:31:32Z 2008-09-19T20:31:32Z <p>keep in mind, What you measure is what you get. loc says nothing about productivity or efficency. </p> <p>rate a programmer by lines of code and you will get.. lines of code. the same argument goes for other metrics.</p> <p>otoh.. <a href="http://www.crap4j.org/" rel="nofollow">http://www.crap4j.org/</a> is a very conservative and useful metric. it sets complexity in relation with coverage.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/238427#238427 2 Answer by Patrick Smacchia for Calculate code metrics Patrick Smacchia 2008-10-26T18:44:36Z 2008-10-26T18:44:36Z <p>Concerning the tool <a href="http://www.NDepend.com" rel="nofollow">NDepend</a> 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...</p> <p>All these metrics are detailled <a href="http://www.ndepend.com/Metrics.aspx" rel="nofollow">here</a>. </p> http://stackoverflow.com/questions/60394/calculate-code-metrics/238436#238436 0 Answer by andreas buykx for Calculate code metrics andreas buykx 2008-10-26T18:50:20Z 2008-10-26T18:50:20Z <p><a href="http://www.scitools.com/products/understand/" rel="nofollow">Scitools' Understand</a> 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.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/238446#238446 1 Answer by Jack Leow for Calculate code metrics Jack Leow 2008-10-26T18:56:07Z 2008-10-26T18:56:07Z <p>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).</p> <p>You can also get an add-on for it called Crucible that facilitates peer code reviews.</p> http://stackoverflow.com/questions/60394/calculate-code-metrics/619695#619695 0 Answer by Selcuk for Calculate code metrics Selcuk 2009-03-06T17:28:02Z 2009-03-06T17:28:02Z <p>check out <a href="http://www.devefor.com" rel="nofollow">dev \ efor</a> i guess it's exactly what you need</p>