vote up 4 vote down star

I've got an application that just shipped. Since I wrote it, I've learned about amfphp and propel. Both would be 'nice' to be used in the application but I can't say that it would be required at this point.

What types of things do you consider before you refactor code?

G-Man

flag

9 Answers

vote up 4 vote down check

Should I?

Just be cause I can refactor the code does not mean that I should refactor the code. In many, many cases, there are far more important things that need to be done. Like fixing defects.

Now, if we're talking about refactoring the code because I am already in that particular block of code and working on it as a part of defect resolution or code maintenance, that's a different story altogether. But refactoring just for the sake of refactoring? That sounds like busywork born out of boredom. Surely you don't have an empty defect list.

link|flag
I agree refactoring is best done when you're making changes to the code anyway. – tjjjohnson Dec 19 '08 at 0:00
What about coping with design? If you "never" refactor, just because things work, then you'll surely end up in a big ball of mud... – Hugo S Ferreira Dec 19 '08 at 0:26
In this particular case there was no mention of design problems - simply that there are some new goodies out there that could be used. – Brian B. Dec 19 '08 at 0:43
Regarding Hugo's question: There is no silver bullet. The question is, "Should I?" If the design would significantly benefit from the refactoring (perhaps performance or maintainability), by all means, do so. But don't take such an operation lightly. Each refactoring opens the code up to defects. – Mike Hofer Dec 19 '08 at 4:44
vote up 9 vote down

Have unit tests to check the code after refactoring.

link|flag
Good point - by definition you need a way to verify functionality hasn't been broken. I don't think this is the only consideration though. – Jim Anderson Dec 18 '08 at 22:31
Of course not, but in my opinion this is the most important one. – Drejc Dec 18 '08 at 22:58
I don't know - if a program needed rework but had no unit tests, I wouldn't skip refactoring, I'd just be careful. I look at them as a safety net, but I would never refactor just cause I had them, or not refactor cause I didn't. – Brian B. Dec 19 '08 at 1:05
If there is no automated testing then the whole application must be retested by hand (again), which is considerably higher effort than with tests. Of course a final integration test can never be skipped. – Drejc Dec 19 '08 at 7:02
@Brian B. - Be definition, refactoring requires code to continue to behave the same (despite other changes). If you don't have unit tests, how do you verify the behavior has not changed. What is worse? Poorly written code that works or clean code that does not? – Jim Anderson Dec 29 '08 at 18:26
vote up 6 vote down

Effort required versus benefit received and where it fits prioritywise with other work.

link|flag
vote up 1 vote down

How maintainable the refactored code will be. Hindsight is 20/20 but with a shipped product, elegant but cryptic design can be a nightmare to maintain. Also, flexibility in the refactored design to allow for feature enhancements is very important.

link|flag
vote up 1 vote down

How likely am I to break existing functionality? Unit Tests are a great safety net here as are automated refactoring tools.

Will the code really be easier to understand and maintain afterwards? This can be a difficult question to answer and it takes experience to get better at answering it.

link|flag
vote up 0 vote down

Create a fork for the current production code base in your source control and do all the refactoring in the experimental branch of the source control.

link|flag
vote up 0 vote down

Unit test would be very nice, but if the code is not covered by unit tests you should have some other means to ensure that you don't break the code. If you can your hands on a copy of production databases, perhaps even some live prod input, you should have a fair chance.

In a privious project we actually recorded all ingoing data for 14 days and saved a snapshot of the prod db at the start and end of those 14 days and we were then able to compare the state of the db using the old code and the new code. But Unit tests sure would remove some of the fear :-)

link|flag
vote up 0 vote down

I sniff the code. If I don't like the smell (in other words, it doesn't smell like me) then I pee all over it until I like it.

Since software techniques need cool names like Agile or Design Patterns, I call this Canine Refactoring.

After rewriting the code I use it for a while myself, Eating My Own Dogfood.

link|flag
So you pee on it, then eat it? It's really hard for me not to down-vote that. – Jim Anderson Dec 19 '08 at 0:08
vote up 0 vote down

I have to give a +1 to Drejc. The single most reason why not to refactor is if you don't have unit tests. But even that doesn't mean you should not refactor. I should say that my modus operandus is code functionality first and then always refactor to deal with design-debt. Repeat ad-nauseaum.

The "good enough" pattern is probably the most used programming methodology on earth, and that's one reason why our software is buggy and messy. Instead of chosing the least energy "path", we always choose the least energy "step".

But, beware! Refactoring without the proper tools (and this will depend on the language and IDE) is like hammering a screw: you can get there, but it won't be effective (and you can get in trouble).

link|flag

Your Answer

Get an OpenID
or

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