Can you recommend free tools for calculating cyclomatic complexity. Looking for all languages.
One tool/language per answer please.
|
Can you recommend free tools for calculating cyclomatic complexity. Looking for all languages. One tool/language per answer please. |
|||||
|
|
I use the metrics plugin for eclipse which calculates the complexity of your code. besides the cyclomatic complexity it can handle:
|
|||||||
|
|
For both C++ and C#, I use http://www.blunck.info/ccm.html. Can run either from the command prompt or integrated with Visual Studio 2008/2010. |
|||
|
Checkstyle plugin for Eclipse (Java) |
|||
|
|
|
A very good tool for .NET platform is NDepend and you also have an option in Visual Studio Team Systems (Under the Analyze menu in VS.NET) |
||||
|
|
|
For C# I use SourceMonitor. It's not as elegant as I would like (it doesn't look at project files; it only looks at directories so if you've got old unused files lying there SourceMonitor will still pick it up and measure its CC) but it's free! |
|||
|
|
|
Sounds like you're asking for the Wikipedia link ;) |
|||||
|
|
A rather old free command line tool for C++ is cyclo I have used it succesfully on Linux and Windows for listing up the complexity of source files. |
|||||||
|
|
David Dibben suggested Cyclo but his links don't work anymore. Here is a working link to a site referencing cyclo and a bunch of other c/c++ metrics tools. |
|||
|
|
|
Sonar is a continuous inspection tool that sits on a server looking at the repo and will calculate complexity in addition to pointing out code problems, test coverage, and other important metrics. It supports many languages out of the box and many more via plugins. And it's opensource. A stack question discussing some of the complexity metrics in sonar can be found here: Difference between "complexity" metric and "complexity / method" metric |
|||
|
|
|
PHP has PHP Depend and PHP Mess Detector. Perl has Perl::Metrics::Simple. Strangely enough, I was just looking into this for PHP today. |
|||
|
|
|
As stated in this answer, two more open source tools for .Net |
|||
|
|
|
Commercial tools for Java: CMTJava by Testwell, and Understand by SciTools. Freeware (for Java): Source Monitor. |
|||
|
|
|
For C# I use Dev Metrics. |
|||||||||
|
|
I found this on https://github.com/terryyin/hfcca:
Install:
|
|||
|
|