Tagged Questions
The code-duplication tag has no wiki summary.
40
votes
17answers
2k views
Tools to identify code duplications
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 ...
32
votes
9answers
6k views
What tool to find code duplicates in C# projects?
What tool would you recommend for finding code duplicates in C# code?
24
votes
10answers
3k views
How to detect code duplication during development?
We have a fairly large code base, 400K LOC of C++, and code duplication is something of a problem. Are there any tools which can effectively detect duplicated blocks of code?
Ideally this would be ...
20
votes
11answers
903 views
Is duplicated code more tolerable in unit tests?
I ruined several unit tests some time ago when I went through and refactored them to make them more DRY--the intent of each test was no longer clear. It seems there is a trade-off between tests' ...
17
votes
13answers
995 views
How much duplicated code do you tolerate?
In a recent code review I spotted a few lines of duplicated logic in a class (less than 15 lines). When I suggested that the author refactor the code, he argued that the code is simpler to understand ...
17
votes
20answers
1k views
Any valid reason for code duplication?
I'm currently reviewing a very old C++ project and see lots of code duplication there.
For example, there is a class with 5 MFC message handlers each holding 10 identical lines of code. Or there is a ...
17
votes
17answers
1k views
How fanatically do you eliminate Code Duplication?
How fanatic are you about elimination of duplicate code?
Personally, whenever I see duplicate code, either in testing code or production, I tend to refactor the duplication away. The only exception I ...
14
votes
8answers
286 views
Keeping track of utility classes
I've recently been more and more frustrated with a problem I see emerging in my projects code-base.
I'm working on a large scale java project that has >1M lines of code. The interfaces and class ...
13
votes
14answers
627 views
How to convince a colleague that code duplication is bad?
A colleague of mine was implementing a new feature in a project we work on together and he did it by taking a file containing the implementation of a similar feature from the same project, creating a ...
11
votes
4answers
222 views
Identifying repeated code within PHP project
I have a single PHP file within a legacy project that is at least a few thousand lines long. It is predominantly separated up into a number of different conditional blocks by a switch statement with ...
11
votes
6answers
858 views
How can I find copy/paste (duplicate, clone) code in Perl?
I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) and flag duplicate or ...
10
votes
8answers
1k views
Any tools to check for duplicate VB.NET code?
I wish to get a quick feeling for how much “copy and paste” coding we have, there are many tools for C# / Java to check for this type of thing. Are there any such tools that work well with VB.NET?
...
10
votes
5answers
795 views
How to find a similar code fragment?
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 ...
8
votes
2answers
154 views
Tools to identify code duplications *for JavaScript*
No answer to Tools to identify code duplications deal with JavaScript.
Are there tools to identify code duplication for JavaScript?
8
votes
4answers
297 views
Avoiding code duplication in F#
I have two snippets of code that tries to convert a float list to a Vector3 or Vector2 list. The idea is to take 2/3 elements at a time from the list and combine them as a vector. The end result is a ...
8
votes
8answers
323 views
Eliminating code duplication in a single file
Sadly, a project that I have been working on lately has a large amount of copy-and-paste code, even within single files. Are there any tools or techniques that can detect duplication or ...
8
votes
3answers
656 views
How to avoid code duplication implementing const and non-const iterators?
I'm implementing a custom container with an STL-like interface. I have to provide a regular iterator and a const iterator. Most of the code for the two versions of the iterators is identical . How ...
7
votes
3answers
474 views
any ideas for avoiding duplicate code in C# and javascript
i have an asp.net mvc website where i build up most of the page using C# for example building up html tables given a set of data from my viewmodel
i also have a lot of javascript that then ...
6
votes
5answers
223 views
How to automate detection of copied code in large code base?
I am looking for an automated way to detect when code is being copied and pasted as part of development on a large code base. We are primarily working in C++. The intention is to detect this with ...
6
votes
5answers
214 views
To DRY or not to DRY? On avoiding code duplication and retaining cohesion
I've got a question concerning code duplication and refactoring, hope it's not too general. Say you've got a rather small piece of code (~5 lines) which is a sequence of function invocations that is - ...
6
votes
15answers
390 views
Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated?
In general I come across this a lot. Some of my co-workers prefer very simple, easy to read classes even if that means that there is some code duplication, whereas I do everything in my power to avoid ...
6
votes
0answers
973 views
What is the best way to find duplicate code? [closed]
Possible Duplicate:
Tools to identify code duplications
What tools can I use to find duplicate code that is a good candiate for refactoring?
Update:
Any language, any IDE.
6
votes
11answers
617 views
How to avoid duplicate logic with Mocks
I have the following challenge, and I haven't found a good answer. I am using a Mocking framework (JMock in this case) to allow unit tests to be isolated from database code. I'm mocking the access to ...
6
votes
9answers
490 views
How to refactor rapidly evolving code?
I have some research code that's a real rat's nest, with code duplication everywhere, and clearly needs to be refactored. However, the code base is evolving as I come up with new variations on the ...
5
votes
6answers
160 views
How to avoid code duplication?
Is it possible to avoid code duplication in such cases? (Java code)
void f()
{
int r;
boolean condition = true;
while(condition)
{
// some code here (1)
r = check();
...
5
votes
1answer
132 views
Avoiding duplicate code (PHP)
As a sysadmin, I end up doing some simple ad-hoc programming every once in a while. I'm trying to learn as I go along, so in general, is there anything in the code below that jumps out at you as being ...
5
votes
4answers
206 views
template parameters, #define and code duplication
I have a lot of code like this:
#define WITH_FEATURE_X
struct A {
#ifdef WITH_FEATURE_X
// ... declare some variables Y
#endif
void f ();
};
void A::f () {
// ... do something
#ifdef ...
5
votes
4answers
737 views
Remove redundant SQL code
Code
The following code calculates the slope and intercept for a linear regression against a slathering of data. It then applies the equation y = mx + b against the same result set to calculate the ...
5
votes
3answers
127 views
is there a way to remove duplication in this code
i have a method that looks like this:
private double GetX()
{
if (Servings.Count > 0)
{
return Servings[0].X;
}
if ...
5
votes
6answers
126 views
Is it possible to add a reference to some source code to include in a source file in vb.net, winforms?
I don't know what this is called so I've struggled to find an answer from google but I have a vague memory of it from t'old days.
I've sub-classed (* see below) about 8 framework controls, overriden ...
5
votes
15answers
556 views
Does “open-source” translate to “anyone can take my work and host it wherever and however they like”?
When drawing the line between "relevant to programmers" and "plainly answerable", I typically lean toward the latter, but I'm really curious to hear what the community has to say about this. I have a ...
5
votes
4answers
359 views
How to deal with duplicate code under Linux?
I'm looking for the best approach to dealing with duplicate code in a legacy PHP project with about 150k lines of code.
Is this something best approached manually or are there standalone duplicate ...
4
votes
3answers
101 views
Refactoring duplicate code when the only difference is the type of one variable?
I have to be able to connect to two different versions of the an API (1.4 and 1.5), lets call it the Foo API. And my code that connects to the API and processes the results is substantially duplicated ...
4
votes
4answers
126 views
Deduplicate this java code duplication
I have about 10+ classes, and each one has a LUMP_INDEX and SIZE static constant.
I want an array of each of these classes, where the size of the array is calculated using those two constants.
At the ...
4
votes
3answers
218 views
C++ symbol mangling and exporting => Allow code duplication?
In our project we have something like this:
struct PointI
{
// methods for getting, setting and calculating some point stuff
private:
int x;
int y;
};
struct PointD
{
// methods for ...
4
votes
4answers
158 views
How to refactor duplicate event handling code
I have the following class that lets certain objects subscribe to a change event. The problem is that I also have classes B, and C that need this functionality that allow objects to subscribe to the ...
4
votes
4answers
161 views
How to reduce code duplication in this example
I need to loop through a number (xx). xx always starts at zero. My problem is that if the moveDirection variable is +1 then xx increases until it reaches the positive of range. If moveDirection is -1, ...
4
votes
4answers
241 views
Need help avoiding code duplication across multiple method signatures
I have a need to restrict certain numbers to valid ranges in my application. I created delegates to handle this. I don't know if this is the right way to do it; I'm running into something that feels ...
4
votes
1answer
201 views
Why I see so much code duplication in Linq in Reflector?
Edit: I made a mistake in my original question. It should be about methods Last and LastOrDefault (or Single and SingleOrDefault, or First and FirstOrDefault - plenty of them!).
Inspired by this ...
3
votes
4answers
51 views
How can I prevent duplication of the content in itemtamplate for the alternating template in repeater?
Is there a way to prevent duplication ot an itemtemplate content which will just appear with a different css class for the alternating template block?
<asp:Repeater ID="rptCommentHistory" ...
3
votes
4answers
111 views
avoiding code duplication in Python code redux
This is a followup to an earlier question. I got some good suggestions for that, so I thought I would try my luck again.
from itertools import takewhile
if K is None:
illuminacond = lambda x: ...
3
votes
1answer
139 views
Tool for helping with deduplication of Perl code?
I'm looking for some tool/library that would scan given project tree, and report on code duplicates - i.e. blocks of code that are repeated in various files.
Is there anything like this?
As it is ...
3
votes
4answers
173 views
Can my tortoise vs. hare race be improved?
Here is my code for detecting cycles in a linked list:
do
{
hare = hare.next();
if (hare == back) return;
hare = hare.next();
if (hare == back) return;
tortoise = ...
3
votes
3answers
187 views
in C++, How can I give a class copy constructor and assignment operator the same functionality without making duplicate code [closed]
Possible Duplicates:
What is the copy-and-swap idiom?
Copy constructor and = operator overload in C++: is a common function possible?
Is there a way that I can make the body of the copy ...
3
votes
1answer
1k views
Detect duplicate code in Visual Studio 2010
Clone Detective was a great tool for finding duplicate code in VS 2008.
Are there any tools for finding duplicate code which integrate into VS 2010?
*Clone Detective doesn't look like its being ...
3
votes
2answers
83 views
How to Decide when to Implement a DLL?
At which point do you decide that some of your subroutines and common code should be placed in a class library or DLL? In one of my applications, I would like to share some of my common code between ...
3
votes
2answers
166 views
Many WebReferences Using Same Class
I have a C# project which has many web references to a third party product. All of these web service calls use a 'user context' class. So each web service accepts the exact same XML snippet.
...
3
votes
6answers
385 views
Java Prevent code duplication when getting a list of a property in each Object from a list of Objects
I have several objects that look like this:
class PhoneNumber
{
String getNumber();
String getExtension();
DateTime getLastCalled();
}
class Address
{
String getCity();
string ...
3
votes
2answers
639 views
Static code analysis tool to detect code duplication in Maven projects
After I found out that there's no plugin for Simian in Maven 2, we turned to CPD, but it doesn't perform as well as Simian (observed in our Ant projects that use both Simian and CPD). I know that ...
3
votes
6answers
445 views
What duplication detection threshold do you use?
We all agree that duplication is evil and should be avoid (Don't Repeat Yourself principle).
To ensure that, static analysis code should be used like Simian (Multi Language) or Clone Detective ...