vote up 13 vote down star
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.

flag

50% accept rate
"Nice question". +1 – Moayad Mardini Nov 9 at 18:55

11 Answers

vote up 8 vote down check

For .NET, you can get CloneDetective, it's a free plugin for VS. C# only, but the underlying technology supports various languages.

link|flag
1  
Thanks Shog :) Corporate internet too slow to Google! – leppie Feb 13 at 16:37
1  
Not a problem. Thanks for posting this, ConQAT looks interesting... – Shog9 Feb 13 at 16:41
vote up 0 vote down

Check out CCFinder. It has an interesting graphical user interface. It shows you your duplicate code in an interactive scatter plot.

link|flag
vote up 0 vote down

A good complement to PMD is CheckStyle and JDepend.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
True, but this will only find at best exact clones. Most of the interesting ones are those that have been edited ("copy-paste-edit"). – Ira Baxter Aug 29 at 3:18
Well, sure. But in my experience, copy-paste-edit is copy-paste 20 lines, and edit 1. Same will point you in the right direction there. Certainly, use a tokenizing tool of you've got one, but it's a heck of a lot better than moaning that pmd/cpd doesn't parse visual basic. – Sean McMillan Aug 31 at 12:17
When you run clone detection on a million lines, you end with 5000 detected sets of parameterized (near-miss) clones with small number of "edits" in the middle. For the sake of argument, lets agree to limit this to one. Then each clone detected by parameterized detector will show up as two identical clones in an exact detector very near each other. You'll end up looking at 10,000 clones. So yes, an exact matcher is better than none, but if you want to minimize the spent analyzing them, find one that does parameters. – Ira Baxter Oct 4 at 20:58
vote up 1 vote down

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.

link|flag
vote up 0 vote down

There is tool for Python and Java: http://clonedigger.sourceforge.net/

link|flag
vote up 3 vote down

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.

link|flag
vote up 0 vote down

For Java, there is JTest which can do code duplication detection.

link|flag
vote up 0 vote down

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.

link|flag
1  
In practice, you don't find code with identical function written by two different developers, for anything but the tiniest bits of such code. First, you in general need a theorem prover to demonstrate that two different bits of code have equivalent functionality, secondly, if you could do this reliably you'd solve the halting problem. What you can do as a practical matter is find code that has been cloned by copy/paste/edit. – Ira Baxter Aug 24 at 4:41
vote up 4 vote down

Simian

Simian - Similarity Analyser

Purpose

Simian (Similarity Analyser) identifies duplication in Java, C#, C, C++, COBOL, Ruby, JSP, ASP, HTML, XML, Visual Basic, Groovy source code and even plain text files. In fact, simian can be used on any human readable files such as ini files, deployment descriptors, you name it.

Especially on large enterprise projects, it can be difficult for any one developer to keep track of all the features (classes, methods, etc.) of the system.

link|flag
holy cow they want a lot of money! – Malfist Feb 13 at 16:05

Your Answer

Get an OpenID
or

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