2
votes
1answer
56 views

Best way to change an existing Interface api method to return an Object instead of void?

I have an existing design based on an Interface which exposes an API method, which currently returns void. And there are many different implementation classes which implements this interface. But, now ...
0
votes
0answers
39 views

Having trouble abstracting code

So I'm trying to learn game programming and i was following along with this website. I've been expanding on the code here and I find that the ActionScene class is getting pretty bloated and would like ...
1
vote
2answers
73 views

Big code refactoring : create a new project or refactor package per package [closed]

We are a little team working on a Rails 2.3 project. A short description: this project has currently 460 000 lines of Ruby, CSS, JS and YML (including some plugins and libraries) 350 ActiveRecord ...
1
vote
1answer
34 views

refactor legacy code, extracting small interface from a giant one with a small implementation

I have a large piece of code (legacy) which knows to connect to an external service lets say connects to skype and bring its availability, the way its doing this (this is how it works its for the sake ...
1
vote
1answer
42 views

Refactoring code with static listeners

After some debugging I found the following thing in existing production code: public class SomeTTS { private static TTSSpeechListener mSpeechListener; private static TTSBreakListener ...
1
vote
4answers
74 views

Refactoring buggy code [closed]

I have recently been assigned the task of refactoring a large code-base which has been inherited from an old dev team. My task is to clean up the code and refactor it. However, I have been able to ...
0
votes
1answer
44 views

alternate to sesssion variable is it serialization

This is a question I always wanted to ask. We always read that it is better to use request object when we have to carry data from one page to other. Now let's say I have about 10 different data items ...
2
votes
0answers
122 views

how to refactor gui and business logic in C++

I would like to refactor some GUI app, written in C++ and some GUI framework. There are some dialog classes: Class MyDialogX : public LibraryBaseDialog { }; Class MyDialogY : public ...
1
vote
1answer
73 views

How to organize code to build applet and application easily?

I have being implementing a client in Java as application with Swing. But now I want to build also Applet from it. What is the best way to redesign/refactor in order to be able to build both of them ...
-1
votes
2answers
117 views

Dependency injection between compile-time and run-time

Generally speaking, should one strive to align a class's dependencies with its imports? For example, should one generally avoid doing something like this: Bar.java: import com.somepackage.Foo; ...
7
votes
4answers
170 views

Python: How to refactor circular imports

I've got a thing that you can do engine.setState(<state class>) and it will instantiate the class type you give it and start running on the new state. In SelectFileState there is a button to go ...
0
votes
0answers
30 views

Music Notation Editor - Refactoring View Creation

I'm currently building a Music Notation and Tablature Editor (in Javascript). But I've come to a point where the core parts of the program are more or less there. All functionality I plan to add at ...
0
votes
2answers
37 views

From enumerations to polymorphic classes [closed]

I have heard that Martin Fowler said in his book [Refactoring, Improving the design of existing code] (which i haven't read personally), that Enumerations are generally bad choice and they should be ...
7
votes
1answer
171 views

C++ Help on refactoring a monster class

I have a C background and am a newb on C++. I have a basic design question. I have a class (I'll call it "chef" b/c the problem I have seems very analogous to this, both in terms of complexity and ...
2
votes
3answers
176 views

How to refactor procedural code?

I am creating a password reset feature for web site. First step for password reset have to be implemented: User enters his email in password reset form. System checks if user with email is ...
2
votes
1answer
69 views

Yet another “Is this a pattern and if yes, what's the name”?

Create an instance from another one of different kind/class. Quick example: you are using an ORM and you store an email queue in your database. Then at some point you have to send bulk emails, ...
2
votes
3answers
149 views

Refactoring code/consolidating functions (e.g. nested for-loop order)

Just a little background: I'm making a program where a user inputs a skeleton text, two numbers (lower and upper limit), and a list of words. The outputs are a series of modifications on the skeleton ...
3
votes
3answers
304 views

Refactoring a static class to separate its interface from implementation

I am working on a .NET based application, where some of the core application classes were designed with only static methods. Example usage: // static access. Parameters.GetValue("DefaultTimeout"); ...
1
vote
1answer
141 views

Preserve Whole Object VS Don't Look For Things

I was reading Fowler's Refactoring Book and saw Preserve Whole Object. A different, newer opinion says that this refactoring is the exact opposite of what you should do: The Clean Code Talks - Don't ...
4
votes
1answer
70 views

How to refactor test application?

I have a test application, with a class TestSeq and a method Go(), which consist of such blocks: _writer.WriteLine("Doing foo action..."); var stopwatch = ...
1
vote
3answers
217 views

How to serialize a dictionary to an XML file?

I'm trying to maintain a dictionary of configurations. Here is my abstract class. [Serializable] public abstract class Configuration { } And here is a concrete class (for the moment, I just have ...
-3
votes
3answers
519 views

Must Read Books on Java? [closed]

Just wanted to know if anyone has a reading list of the books that all java programmers must read for both refactoring and Design of applications? Any inputs on the same would be of real help. TIA
0
votes
3answers
65 views

Should I create an exception object in an initializer or code it in every method?

In my Service classes I create an exception instance like this: protected ServiceException _ex; protected void Initialize() { _ex = new ServiceException(); } Later in these classes I call this ...
4
votes
2answers
95 views

Refactor - UnitTest - Design Trilemma in Legacy Code

How do you tackle this problem when you are dealing with legacy code Classes you deal with is not well designed, requires some serious design changes Classes you deal with mostly tightly coupled ...
1
vote
4answers
197 views

REFACTOR: Clean dao code for a query with multiple optional params

Is there a possiblity to clean up such a dao method? I don't like the 2 if's for each param, but there isn't something like "query.setSql()" so i could update the sql after adding the params and ...
1
vote
3answers
142 views

How to refactor and discover dependencies when doing BDD

Doing BDD means going from top to bottom, so we write test for top level feature first. Now to setup a test you usually need to set up some mocks instead of real deps. How do you know what ...
6
votes
2answers
243 views

Trying to shy away from a singleton/god/manager class. Not sure how I am supposed to sustain functionality, though

I have a class which has been steadily growing over time. It's called LayoutManager. It started as a way for me to keep track of which dynamically created controls were on my page. So, for instance, ...
3
votes
2answers
118 views

Want to make this permissioning system generic to reduce duplicate code etc

I have a bunch of enumerations that represent permissions for various parts of the application. public enum PermissionGroup1 { CanDo11, CanDo12, CanDo13, } public enum PermissionGroup2 ...
2
votes
4answers
99 views

Recommend a strategy ? (basically, for large scale re-factoring)

Might anyone be able to recommend a strategy for the following? There's a large organization which refers to customers by an id, or reference like ‘1234A’ (four numbers and a letter). These id’s are ...
1
vote
1answer
35 views

How to Remove Duplicated Codes in This Design?

I have about 30 data access classes and all of them contain a GetAll method with some parameters. My code in all of them looks like below: public IEnumerable<IHierarchyDivisionDailyResult> ...
0
votes
2answers
163 views

Removing Duplicated Java Code

I have a class written in ~1000 lines of Java code that migrates one database over to another. It has 19 methods for each table being copied over, and 1 which load's the special JDBC driver for ...
6
votes
3answers
525 views

Code smells “Message Chains” vs “Middle Man”

I'm reading through Fowler's refactoring book and am a bit confused about those two code smells. "Message Chains" are calls like a.getB().getC().getValue(). "Middle Man" is a method like class A { ...
3
votes
4answers
51 views

Cleanest way to write 2-boolean conditional (4 branches)

I've got this code. true_var and other_true_var are boolean values. The four conditional branches are distinct. if true_var && other_true_var: # do something 0 else if true_var && ...
2
votes
3answers
147 views

How can I improve the readability of these linq statements?

I have a hierarchical data tree containing objects of a class called DataNode. Each DataNode contains a collection of Attribute objects. Each Attribute is essentially a key/value pair, with some ...
0
votes
2answers
86 views

Understanding the scope of refactoring

I've always thought of code refactoring as only improving implementation details. I want to make sure I have the appropriate understanding of the scope to which refactoring applies (Wikipedia didn't ...
2
votes
1answer
191 views

DDD modeling question - help come up with some good names

I believe names are pretty important to get right. It helps make things clear, and I find the logic goes in the right spots when you have a clear idea as to what the abstractions are and what they are ...
2
votes
4answers
99 views

Design approach for interface with many input widgets

I have an interface that has ~16 input field boxes. They are all declared as public pointers within a class, initialized, etc. However, as my code has grown more and more with private functions ...
2
votes
4answers
176 views

Why and how implementing initial unit tests in legacy application code

I’m in the process of integrating unit tests in an existing legacy application. In the book “Working with legacy application” and many other books that I read, it was written that you always should ...
4
votes
4answers
381 views

Converting all functions into classes

I was reading the book Refactoring: Improving the Design of Existing Code by Fowler, where it says to replace function calls with same names classes and call constructors of that class in place of ...
3
votes
3answers
193 views

Can we refactor these methods?

I have classes with methods implemented as follow: void methodOne() { try { getHelper().doActionOne(); } catch ( Exception ex ) { throw new CustomException( ex ); } } ...
0
votes
3answers
182 views

OOD: Code refactoring and best design (protected or getter/setter)

Reading the code for a project, I noticed this situation, there are two classes as the following example: class A { private class E aE; private class F aF; public A(){ aE = new ...
0
votes
1answer
263 views

Avoiding boilerplate code in a one-to-one association relationship

Although I'm programming in C++, this is more of a general question about design. I noticed that when I have objects in a one-to-one association relationship, there tend to be a lot of common methods ...
2
votes
4answers
419 views

Alternative Pattern to Strategy

I have a piece of code where I started to put the strategy pattern in place, say as follows: IStrategy StrategyA : IStrategy StrategyB : IStrategy StrategyC : IStrategy The interface just has a ...
3
votes
3answers
86 views

Is it better create a library with several functions or create classes?

I'm developing a software to comunicate with a device. The software will send commands for the device. The device has to answer using the protocol below: ...
9
votes
7answers
393 views

How to make refactoring less “destructive”?

Currently performing a fairly major refactoring of an application due to a very late major requirement change. I always feel when I'm doing this sort of thing that I'm not approaching it in a very ...
1
vote
2answers
240 views

Refactoring a huge class to lots of tiny classes

I have a wonderful opportunity to refactor out old and "smelly" code into a much better designed class family. I have the basic design skeleton figured out, implemented and tested. However, I ...
1
vote
5answers
535 views

Refactoring to avoid duplicate code

I'm trying to factor out some repetitive code, but it starts to smell funky now. Say I start out with this not quite right, but you catch my drift: public virtual OrganisationEntity Get(int id) ...
2
votes
2answers
348 views

Refactoring switch statement for Data to different types of data

My mission is to refactor a switch statement that was poorly written (it makes the cyclomatic complexity spike). In short, there is a class that parses a file for various values. class foo { ...
2
votes
2answers
105 views

Finding Implicit Communication in Classes

I am currently refactoring a very useful but poorly designed class in C++, and I'm running into a problem with the design: rather passing data around using arguments to methods, the data is passed ...
3
votes
7answers
164 views

Method refactoring

How many lines of code can a method have with a good design before you need to make the design better?

1 2