vote up 40 vote down star
17

I have this problem. I can't stop myself from refactoring existing code that works but is, in my opinion (and perhaps objectively), badly designed or contains other "code smells". This can have a significant negative effect on my immediate productivity. But ultimately will be a big maintenance boon.

If you also suffer from this "affliction", how do you restrain yourself? Or at least manage the refactoring to avoid having to alter large chunks of existing code in order to make it maintainable for the long term.

flag

36 Answers

prev 1 2
vote up 0 vote down

I find that there is an internal struggle between my idealist and my pragmatist. The idealist wishes to refactor, and refactor often, even at the expense of actual progress, while my pragmatist knows that often the code is is "good enough" and the focus should be on moving forward.

Here the problem is the defining the term "good enough", and the definition varies based on your type of project and constraints (time and money for example) placed on you.

I place a lot of weight on fixing things that are going to make supporting an upgrade path for the product difficult. For example, if a database schema is less than ideal, it should be fixed before release to avoid complicated schema evolution tools that have to operate on you clients production data.

Above all, refactoring should not be a dirty word in your work place. Refactoring should be a part of your process and you should not feel like refactoring efforts need to be done on the sly.

link|flag
vote up 0 vote down

I have suffered from this in the past, and I micromanage my 'bad' good habit.

Basically, I do the following:

  • I have two separate instances of our source tree at any given time.
  • If I have a massive refactor that's not really top priority, I hack away at it in the second branch.
  • I'll then keep working away in my first branch, and just maintain the second branch, doing little tests as I think about it to make sure I haven't broken anything.
  • I'll then check it in once I'm confident, and I can time it with a slow-down in our production cycle (i.e., don't check in right before milestone!).

In all honesty, that 'major' refactoring never really happens often -- usually if I need to do that, it's already been tasked anyhow. Still, the few times I've done that, it's come in handy. Ideal if you can do a branch for it, and just keep integrating changes.

For the smaller stuff, I'll often keep those changes local in my 'main' branch, and run with them locally for a while. The moment that anything I'm working on touches those files, I then check the whole change in -- our process currently includes a 'buddy check' system before check-ins, so usually it's stuff that'd clear peer review anyhow.

Anyways. Might be more of a brain dump than you cared for, but hopefully it helps.

link|flag
vote up 0 vote down

Oftentimes refactoring can reduce or eliminate the need to do the real work assigned. If you're fixing a bug then refactoring is a good place - assuming there's tests in place. To a lesser extent adding new features can be achieved with a simple refactoring of the code to make it a bit cleaner or more efficient and then you see that the feature was already there and how to get the user to enable it.

The short answer, however, is that you don't refactor code that works unless there's a pressing need. A good checklist is:

  • Am I going to be working with this code daily for an extended period AND am I the ONLY person who will be.
  • Is the code so bad that it can't be properly understood. Usually I find I'm just suffering from a case of not invented here syndrome (the thing where someone else's perfectly good solution isn't how I would have done it so I want to do it again for no real gain except pride).
  • Is the architecture not capable of supporting said new work (feature, bug fix, etc).
  • Is the code so incestuous that changing a few small things has a massive ripple effect of follow-on bugs.

If you answer yes to any one of those then it might be time to refactor.

link|flag
vote up 0 vote down

I prioritize.

When I have some cycles available (ha),

I generally try to re-factor code that:

  • would be sensitive for anyone else to work on,
  • would actually need to be worked on, meaning it is touched regularly
  • that is in poor shape for performance reasons or documentation reasons, in that order.

Where re-factoring adds value, I do it. Trying to line up future new features to overlap with re-factoring makes it easier to do while under the hood.

Reasons not to touch anything we feel like touching?

  • Often old code has been hardened for input/output, as clumsy as it may be, it works.
  • If it ain't broke, don't make it that way.
  • There should always be something new and neat to work on, and code the right way. Old stuff will get re-factored over time as it is extended.
link|flag
vote up 0 vote down

If I'm ever in a situation where some code needs refinement (and I usually only worry about this for my own code) I immediately add comments in the header of the function/file. Even if I have time to work on the refactoring right then, I still take the time to write comments to organize my thoughts first. As I make the improvements, I remove the comments. That way, even if I have to put the refactoring off until later, I have some kind of guidelines to remind of what the hell I was doing.

link|flag
vote up 0 vote down

I stop myself by thinking: "Is this going to actually accomplish anything?" "What are the benefits of taking this action, now, tomorrow, next week, a month or a year down the line?"

If there's little to no benefit-to-time-spent ratio, then I dont' do it.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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