vote up 3 vote down star
4

Does anyone has some tool or some recommended practice how to find a piece of code which is similar to some other code?

Often I write a function or a code fragment and I remember I have already written something like that before, and I would like to reuse previous implementation, however using plain text search does not reveal anything, as I did not use the variable names which would be exactly the same.

Having similar code fragments leads to unnecessary code duplication, however with a large code base it is impossible to keep all code in memory. Are there any tools which would perform some analysis of the code and marked fragments or functions which are "similar" in terms of functionality?

Consider following examples:

  float xDistance = 0, zDistance = 0;
  if (camPos.X()<xgMin) xDistance = xgMin-camPos.X();
  if (camPos.X()>xgMax) xDistance = camPos.X()-xgMax;
  if (camPos.Z()<zgMin) zDistance = zgMin-camPos.Z();
  if (camPos.Z()>zgMax) zDistance = camPos.Z()-zgMax;
  float dist = sqrt(xDistance*xDistance+zDistance*zDistance);

and

  float distX = 0, distZ = 0;
  if (cPos.X()<xgMin) distX = xgMin-cPos.X();
  if (cPos.X()>xgMax) distX = cPos.X()-xgMax;
  if (cPos.Z()<zgMin) distZ = zgMin-cPos.Z();
  if (cPos.Z()>zgMax) distZ = cPos.Z()-zgMax;
  float dist = sqrt(distX*distX +distZ*distZ);
flag

6 Answers

vote up 3 vote down check

You can use Simian. It is a tool that detects duplicate code in Java, C#, C++, XML, and many more (even plain txt files). It even integrates nicely in a tool like CruiseControl.

link|flag
vote up 1 vote down

The CloneDR finds duplicate code, both exact copies and near-misses, across large source systems, parameterized by langauge syntax. It supports Java, C#, COBOL, C++, PHP and many other languages.

It accepts a number of parameters to define "What is a clone?", including: a) Similarilty threshold, controlling how similar two blocks of code must be to be declaraed clones (typically 95% is good) b) number of lines minimum clone size (3 tends to be a good choice) c) number of parameters (distinct changes to the text; 5 tends to be a good choice) With these settings, it tends to find 10-15% redundant code in virturally everything it processes.

Based on your example, I'd expect it to find those two fragments (you don't have have point to either one) and note that they are similar if you abstract away the variable names.

link|flag
vote up 0 vote down

Cannot offer you any help in the way of searching through your existing code, but for changing your practice you could always use one of the many 'Code Snippets' repositories already available.

Have a look at snippets.dzone.com for instance. If you dont want an online one there are also desktop applications available.

link|flag
vote up 0 vote down

It seems to me this has been already asked and answered several times:

http://stackoverflow.com/questions/204177/what-tool-to-find-code-duplicates-in-c-projects

http://stackoverflow.com/questions/191614/how-to-detect-code-duplication-during-development

I suggest closing as duplicate here.


Actually I think it is a more general search problem, like: How do I search if the question was already asked on StackOverflow?

link|flag
You have the same question listed twice, there. – Sebastian Krog Apr 2 at 13:45
@Sebastian Removed! – Shoban Apr 2 at 13:48
2  
So this question, "How to find similar code", is an example of the meta question, "How to find similar questions" :-? – Ira Baxter Aug 24 at 4:37
vote up -1 vote down

You can use regex searchs, available in every good text editor and modern IDEs.

link|flag
What regex would you suggest to match the two codes I have provided? – Suma Apr 2 at 13:40
It depends on the editor that you are using. Usually it´s something like: float <letter or digit group> = 0, <letter or digit group> = 0; <new line>, etc. – fbinder Apr 2 at 13:44
vote up -1 vote down

It is possible to detect similar peaces of code automatically, altough I don't know about products that do this. One could definitely write an algorithm to do this.

It would have to break up code into their elemental objects and compare structures.

link|flag

Your Answer

Get an OpenID
or

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