up vote 6 down vote favorite
2
share [g+] share [fb]

I'm trying to get NDepend to identify long methods using a modified version of the standard "Methods too big" query.

I don't want to report long methods that the developers have little control over, so I filter out generated code using the DebuggerNonUserCode attribute and InitializeComponent().

Unfortunately, I still get a few false positives as methods in generated types are reported as well. The problem is that while the type itself has the DebuggerNonUserCode attribute, the methods do not, so they are included in the output despite the fact that they are generated.

I am looking for something like a join between types and methods: Give me all types that do not have the DebuggerNonUserCode attribute and run the query on those, but I can't figure out how to express this in CQL.

For some of the assemblies, I can simply filter on the full name, but unfortunately some of our assemblies mix developer made and generated types. Unfortunately the IsGeneratedByCompiler can't be used either in this case.

My query

WARN IF Count > 0 IN SELECT METHODS WHERE 
   NbLinesOfCode > 30 AND
   !HasAttribute "System.Diagnostics.DebuggerNonUserCodeAttribute" AND
   !NameIs "InitializeComponent()"
   ORDER BY NbLinesOfCode DESC
link|improve this question

I could not find either a way to join methods and type info and even the release notes of V3 don't mention this. – Timores Mar 4 '10 at 13:02
1  
Have you tried the IsGeneratedByCompiler method attribute ? – Timores Mar 4 '10 at 13:16
@Timores: Exactly, I wish I could make a join between the two. I haven't looked at IsGeneratedByCompiler. From the documentation it doesn't seem to do the trick. but I'll give it a shot anyway and update the question. – Brian Rasmussen Mar 4 '10 at 13:31
I have sent a request to NDepend's support. I'll update the comment or post an answer when I get something. – Timores Mar 4 '10 at 13:44
feedback

3 Answers

up vote 1 down vote accepted

I asked NDepend's support about joining methods and type info; the answer is that it is a planned feature for the next 12 months.

link|improve this answer
Thanks for the effort. – Brian Rasmussen Mar 5 '10 at 11:05
feedback

NDepend Lead Developer writing. We are well aware of current CQL limitations and be sure that we are working hard to release NDepend v4 scheduled for 2012 Q1 or Q2. v4 is designed to address all current CQL shortcomings, or in other words the tool code querying will be 100% flexible. For confidentiality reasons I unfortunately cannot unveil more for now.

link|improve this answer
feedback

I quite like NDepend, but it's still the biggest single shortcoming that namespace/type/method info cannot be joined into a single query. That feature would make CQL really powerful stuff.

Apart from that the checks 'IsGeneratedByCompiler' and 'IsInFrameworkAssembly' may be helpful. You can also remover certain namespaces from the query (OUT OF NAMESPACES "...")

link|improve this answer
It certainly would! I'm aware of the OUT OF feature, but unfortunately the relevant assemblies lump both dev made code and generate code in the same namespace :( – Brian Rasmussen Mar 4 '10 at 14:35
feedback

Your Answer

 
or
required, but never shown

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