What are the benefits of doing static code analysis on your source code? I was playing around with FxCop and I was wondering if there any benefits beyond making sure you are following the coding standards.
|
|
|
|
|
|
|
There are all kinds of benefits:
1) If there are anti-patterns in your code, you can be warned about it.
2) There are certain metrics (such as McCabe's Cyclomatic Complexity) that tell useful things about source code. Take a look at SourceMonitor: http://www.campwoodsw.com/sourcemonitor.html |
||
|
|
|
|
actually, fxcop doesn't particularly help you follow a coding standard. What it does help you with is designing a well-thought out framework/API. It's true that parts of the coding standard (such as casing of public members) will be caught by FxCop, but coding standards isn't the focus. coding standards can be checked with stylecop, which checks the source code instead of the MSIL like fxcop does. |
||
|
|
|
|
It can catch actual bugs, like forgetting to Dispose IDisposables. |
||
|
|
|
|
Many classes of memory leaks and common logic errors can be caught statically as well. You can also look at cyclomatic complexity and such, which may be part of the "coding standards" you mentioned, but may be a separate metric you use to evaluate the algorithmic "cleanliness" of your code. In any case, only a judicious combination of profiling (dynamic or run-time analysis) and static analysis/linting will ensure a consistent, reliable code base. Oh, that, and a little luck ;-) |
||
|
|
|
|
Depends on the rules, but many subtle defects can be avoided, code can be cleaned, potential performance problems can be detected etc. Put it one way...if it's cheap or free (in both time and financial costs) and doesn't break anything, why not use it? |
||
|
|
|
|
It's a trade-off. For an individual developer who wants to improve his understanding of the framework and guidelines, I would definitely encourage it. FxCop generates a lot of noise / false positives, but I've also found the following benefits:
However with a mixed-ability team, FxCop may well generate too many false positives to be useful. Junior developers will have difficulty appreciating whether some of the more esoteric violations thrown up by FxCop should concern them or are just noise. Bottom line:
|
|||
|
|
|
|
FxCopThere is a list of all warnings in FxCop. You can see that there are warnings from the following areas:
Depending on your application some of those areas might not be very interesting, but if you e.g. need COM interoperability, the tests can really help you to avoid the pitfalls. Other toolsOther static checking tools can help you to detect bugs like not disposing an IDisposable, memory leaks and other subtle bugs. For a extreme case see the not-yet-released NStatic tool.
|
||
|
|
