Question

Say you got an old codebase that you need to maintain and it's clearly not compliant with current standards. How would you distribute your efforts to keep the codebase backwards compatible while gaining standards compliance? What is important to you?

Was it helpful?

Solution

At my workplace we don't get any time to refactor things just because it makes the code better. There has to be a bug or a feature request from the customer.

Given that rule I do the following:

When I refactor:

If I have to make changes to an old project, I cleanup, refactor or rewrite the part that I'm changing.

Because I always have to understand the code to make the change in the first place, that's the best time to make other changes.

Also this is a good time to add missing unit tests, for your change and the existing code.

I always do the refactoring first and then make my changes, so that way I'm much more confident my changes didn't break anything.

Priorities:

The code parts which need refactoring the most, often contain the most bugs. Also we don't get any bug reports or feature requests for parts which are of no interest to the customer. Hence with this method prioritization comes automatically.

Circumenventing bad designs:

I guess there are tons of books about this, but here's what helped me the most:

I build facades:

  1. Facades with a new good design which "quarantine" the existing bad code. I use this if I have to write new code and I have to reuse badly structured existing code, which I can't change due to time constraints.
  2. Facades with the original bad design, which hide the new good code. I use this if I have to write new code which is used by the existing code.

The main purpose of those facades is dividing good from bad code and thus limiting dependencies and cascading effects.

OTHER TIPS

I'd factor in time to fix up modules as I needed to work with them. An up-front rewrite/refactor isn't going to fly in any reasonable company, but it'll almost definitely be a nightmare to maintain a bodgy codebase without cleaning it up somewhat.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top