NDepend Count,Average等。报告...聚合。可能?干净的工作?

时间:2010-09-30 18:11:20

标签: code-analysis ndepend trending cqlinq

我们有一个庞大的代码库,其中只有太多局部变量的方法会返回226个方法。我不希望这个巨大的表被转储到xml输出中以使其混乱,如果可能的话,我想要前十名,但我真正想要的是计数,所以我们可以做趋势和执行摘要。有没有干净/高效/可扩展的非hacky方式来做到这一点?

我想我可以使用可执行任务,而不是ndepend任务(这样合并不是自动的),并且杂乱不会被合并。然后手动操作这些文件以获得摘要,但我想知道是否有更短的路径?

1 个答案:

答案 0 :(得分:1)

defining a base line to only take account of new flaws怎么办?

  

我真正想要的是计数,所以我们可以做趋势和执行摘要

使用LINQ(CQLinq)上的代码查询和规则可以轻松实现趋势,例如:Avoid making complex methods even more complex (Source CC)

// <Name>Avoid making complex methods even more complex (Source CC)</Name>
// To visualize changes in code, right-click a matched method and select:
//  - Compare older and newer versions of source file
//  - Compare older and newer versions disassembled with Reflector

warnif count > 0 
from m in JustMyCode.Methods where
 !m.IsAbstract &&
  m.IsPresentInBothBuilds() &&
  m.CodeWasChanged()

let oldCC = m.OlderVersion().CyclomaticComplexity
where oldCC > 6 && m.CyclomaticComplexity > oldCC 

select new { m,
    oldCC ,
    newCC = m.CyclomaticComplexity ,
    oldLoc = m.OlderVersion().NbLinesOfCode,
    newLoc = m.NbLinesOfCode,
}

Avoid transforming an immutable type into a mutable one