I have being reading and tracking some questions on code reuse and I have this question:
Are there any tools to identify duplicate or similar code?
I have googled this a while ago and found nothing good.
|
9
|
I have being reading and tracking some questions on code reuse and I have this question: Are there any tools to identify duplicate or similar code? I have googled this a while ago and found nothing good.
|
|||
|
|
|
For .NET, you can get CloneDetective, it's a free plugin for VS. C# only, but the underlying technology supports various languages. |
|||
|
|
Check out CCFinder. It has an interesting graphical user interface. It shows you your duplicate code in an interactive scatter plot. |
||
|
|
|
|
A good complement to PMD is CheckStyle and JDepend. |
||
|
|
|
|
I have written a duplication detector. It is written in Python and based on "pygments lexer". Hence works on all languages supported by pygments. Check Thinking Craftsman Toolkit. Setup/install is not available yet you have to get the source from svn. See if it works for you. |
||
|
|
|
|
Same (http://sourceforge.net/projects/same/) is extremely plain, but it works on text lines instead of tokens, which is useful if you're using a language that isn't supported by one of the fancier clone finders. |
||||||
|
|
|
See a clone detector that works for C, C++, C#, Java, COBOL, VB6, PHP and many other languages can be seen at: http://www.semdesigns.com/Products/Clone/index.html It finds exact and near-miss clones, so it will detect clones that have been parameterized by editing. It works by matching language structures, not text lines or tokens, so the reported clones look like code structures. Line-based clone detection can't match clones that that have been reformatted, have white space changes, or in which the comments have changed. Token based detectors often find clones which make no sense, such as
which occur huge numbers of times in the text, but clones only in the dumbest sense of the word. See an example of detected clones. |
|||
|
|
|
|
There is tool for Python and Java: http://clonedigger.sourceforge.net/ |
||
|
|
|
|
Code Coverage, Inspections and Duplicates Search is a feature of TeamCity's Code Quality features. I use TeamCity personally and I really like it. It does support .NET and Java. |
|||
|
|
|
|
For Java, there is JTest which can do code duplication detection. |
|||
|
|
|
|
PMD can find duplicate code to a certain degree. Finding code that's been copied and pasted is fairly easy to do, but finding duplicates that are unintentional (two developers independently write a function to do the same thing) can be tricky. Often what you would call a duplicate isn't exactly the same, but the logic is similar enough that you would want to refactor it. |
||||
|
|
|
|
||
|