vote up 4 vote down star
2

I have a large code base and there is lots of repeated, or nearly repeated code all over the place, it's about as unDRY as code can get, but tracking the "duplicates" is hard, so I was wondering if there are any tools for finding potential DRYable code, something like a diff tool or a Hamming distance analizer, don't need language specific knowledge or anything like that.

So any clues as too a tool like this?

flag

What language are you looking for? – Brian Mar 26 at 15:56
About 5 languages :) – Robert Gould Mar 26 at 16:19

5 Answers

vote up 1 vote down check

Duplo (open source) works in C, C++, Java, C# and VB.Net. I tried it once, and it found enough duplicated code to keep me employed for a long time.

I've heard of Simian (commercial) but have not tried it.

link|flag
Duplo looks great, thats more or less what I was looking for – Robert Gould Mar 26 at 15:31
vote up 1 vote down

Clone Dr from Semantic Designs is a commercial product that finds duplicate code in a large number of different programming languages. http://www.semdesigns.com/Products/Clone/index.html

Large companies can afford this product. Individuals ... not so much. I wish there were some open source projects out there like this. Might be a fun project to work on. If we only knew of a community of programmers with some time on their hands ...

link|flag
vote up 1 vote down

I use Simian in VS. It's pretty good, not great.

link|flag
vote up 2 vote down

Clone Detective for Visual Studio

link|flag
Nice tool for C# it seems actually rather intelligent, didn't have my expectations high (purely lexical was ok), but thats nice – Robert Gould Mar 26 at 15:38
vote up 2 vote down

If you're working in ruby, then you can try this.

link|flag
Those are some nifty tools, I'd long considered something like them but never got around to it – Robert Gould Mar 26 at 15:39

Your Answer

Get an OpenID
or

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