Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to ask whether you know about some free C# libraries (dlls) that calculate CK metrics (mainly Cyclomatic Complexity).

I would need that for a project I'm planning to do. I know that there are already some finished solutions that calculate CK metrics and display it to you in various forms, but what I would need is one that I could use from within my application. So before starting and writing one myself I first wanted to ask you.

Thanks

share|improve this question
Have you ever found a library? Or how have you solved this problem? – RoflcoptrException Oct 21 '10 at 21:41
No, this was part of a program idea I had, but unfortunately my current time doesn't allow me to continue and create the app. Therefore I also didn't investigate any further search for an appropriate library – Juri Oct 22 '10 at 5:46
ok thanks. so i have to search further ;) – RoflcoptrException Oct 22 '10 at 9:02
You want metrics for C# code, or for some other language? Whatever that library does, it will at least have to break the target language text into lexemes. – Ira Baxter Oct 24 '10 at 10:11
I'd like metrics for C#. And if possible also for C++. – RoflcoptrException Oct 31 '10 at 15:41
show 1 more comment

5 Answers

up vote 13 down vote accepted
+50

DrivenMetrics is a open source C# command line tool. The core functionalities are isolated from the command line console client as a library (Core project is available here).

Even if quite simple, it may fit your need: it's free, counts the the number of lines and calculates the cyclomatic complexity (number of potential code paths) of methods.

This is performed through direct analysis of the IL thanks to Mono.Cecil (the same library NDepend relies on). This allows the analysis to be performed on assemblies built from code written in C#, VB.Net,...

  • The project has been announced here.
  • The code source is available on github.
  • A packaged release is also available.
  • It works both on Windows and Mono.

UPDATE:

Another option would be the amazing Gendarme, a static analysis tool from the Mono project.

As a sample of usage, the code below display the cyclomatic complexity of every method in an assembly.

ModuleDefinition module = ModuleDefinition.ReadModule(fullPathToTheAssembly);

foreach (var type in module.Types)
{
    foreach (var me in type.Methods)
    {
        if (!me.HasBody || me.IsGeneratedCode() || me.IsCompilerControlled)
            continue;
        var r = AvoidComplexMethodsRule.GetCyclomaticComplexity(me);

        Console.WriteLine("{0}: {1}", me.ToString(), r);
    }
}
  • The project is described here
  • The code source is available on github
  • Packaged releases are also available
  • It works both on Windows and Mono
share|improve this answer
Thanks! This looks really great! But where you able to run it? I checked out the core source, build it and then got 3 ddls. Then i referenced this 3 DDLs in my project. But then what to do? I can't see any documentation on this. – RoflcoptrException Oct 31 '10 at 16:08
@Roflcoptr: Take a look at the Driven.Metrics.Tests.Core.Metrics.ILCyclomicComplexityTests class in the DrivenMetrics.Tests projects. This test class will show you how to load an assembly (in the Setup() method), how to select a method to analyze, and how to apply an ILCyclomicComplextityCalculator to it to calculate the CC of the method (see method ShouldDetermineCyclomicComplexityForFooSecond() for instance). – nulltoken Oct 31 '10 at 20:44
sorry i misformed my question i think :D i was wondering how I can use this. I included the file DrivenMetrics.dll in the references of my project. This should do the trikc right? – RoflcoptrException Oct 31 '10 at 23:04
According to the build file (github.com/garrensmith/DrivenMetrics/blob/master/RakeFile.rb) and the commit history (github.com/garrensmith/DrivenMetrics/commit/…), you'd need those 5 dlls: DrivenMetrics.dll, Mono.Cecil.Extensions.dll, Mono.Cecil.dll, Mono.Cecil.Pdb.dll and Mono.Cecil.Mdb.dll. – nulltoken Nov 1 '10 at 15:28
@Roflcoptr: Garren Smith, the author of the library has just uploaded a packaged release of DrivenMetrics which contains the binaries you need. You can download it at github.com/garrensmith/DrivenMetrics/downloads – nulltoken Nov 1 '10 at 19:39
show 2 more comments

I am using SourceMonitor, which is a nice freeware app that measures code complexity and other metrics for a variety of languages including C#. We drive it from the command line to produce XML output, then we use LINQ to XML to extract and sort the data we are interested in. We then use NVelocity to create HTML reports.

I know its not a managed library, but you might find it can do what you need.

share|improve this answer
thx for the info. But the problem is that my app is not just considered for personal use, but potentially for others and so it's a bit inconvenient if they have to install it in order to use my app. But I'll take it into consideration, thx – Juri Jun 27 '09 at 9:22

There is a tool from Microsoft I am using to compute code metrics for C# assemblies.

It includes cyclo complex, maintainability index and more.

Details here:

http://blogs.msdn.com/b/camerons/archive/2011/01/28/code-metrics-from-the-command-line.aspx

Download here:

http://www.microsoft.com/en-us/download/details.aspx?id=9422

share|improve this answer

It isn't free but I've had good experiences with NCover for this sort of thing. They also integrate pretty well with a lot of CI tools out there.

share|improve this answer

With 82 code metrics supported NDepend is the code metrics Roll's Royce tooling for .NET developers (however it is a commercial tool).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.