vote up 3 vote down star

I am looking for a way to programmatically inspect a .NET (C#, VB.NET,..) source code to perform static code analysis.

I'd like to perform queries on the code such as: - list classes whose name begin by x - list all the subclasses of x - list methods which instanciate an object of class x - determine if method x contains a variable named y - list methods calling the method y - ...

What I am looking for is an API or something else allowing me to write programs able to examine a source code.

flag

6 Answers

vote up 3 vote down

You can use System.Reflection, that should do the trick nicely for some of the things you want. As far as getting into the IL itself, check out Mono's Cecil.

link|flag
Unless, @monkeyget is looking at the source code. Then they'll probably want a parser. – Kenny Oct 26 at 9:43
Or a compiler :). Yea I uh missed that he said "source code". I guess NDepend and some of the IDE plugins might be of assistance then. Sorry! – MichaelGG Oct 26 at 10:11
System.Reflection is indeed an option which i'll look into but it seems limited and i'm sure there must exist more powerful and simple tools for what I want to do. I mentioned source code in the question but a tool working on IL would be ok too. – Monkeyget Oct 26 at 19:18
vote up 1 vote down

Why not use FxCop for static code analysis?

link|flag
Because he wants to WRITE software that will allow him to do what FxCop does. – Mike Hofer Oct 26 at 18:50
vote up 7 vote down

NDepend gives a SQL-like query language for querying .NET code structure.

link|flag
Brilliant tool. +1 for NDepend recommendation. – this.__curious_geek Oct 26 at 9:45
vote up 2 vote down

See the DMS Software Reengineering Toolkit.

DMS provides parsers that automatically build ASTs for many languages (C, C++, Java, C# [1.2, 2.0, 3.0 and 4.0], COBOL, ECMAScript, PHP, Verilog, ..) as well as symbol tables and control and data flow analysis for several of these.

DMS's pattern language can be used to match surface-syntax patterns, and combined with procedural analysis to ties code elements together with symbol table entries and various data flow relations. It has been used to implement a wide variety of program analysis tools, and is designed to be a foundation for you to build you own tool, without wasting a vast amount of time building basic program analysis infrastructure.

link|flag
vote up 0 vote down

What about using the code model in Reflector? With the code model view add-in you should be able to get the idea of how to interrogate the structure of the code.

link|flag
vote up 0 vote down

What about StyleCop? http://code.msdn.microsoft.com/sourceanalysis. But it doesn't support APIs.

link|flag

Your Answer

Get an OpenID
or

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