I have inherited a project that has some huge switch statement blocks, some with 20 cases, what is a good way to rewrite these?
feedback
|
|
Here's a great blog post on this that's just been posted: http://elegantcode.com/2009/01/10/refactoring-a-switch-statement/ | |||
|
feedback
|
|
Why would you want to rewrite them in a different structure? If you really have 20 cases that have to be handled individually, a switch/case is the way to go. A big chain of if/then logic would be horrible to maintain. Polymorphism is another option if you are using an object-oriented language. Each subclass would implement it's own functionality in the method. | |||||||||||
feedback
|
|
Polymorphism. But it may not be a trivial refactoring. Some examples and refs: | |||
|
feedback
|
|
As others have pointed out, it depends on the switch statement. However, in the past I have refactored switch statements by proceeding in the following way. Suppose we have a switch statement like this, with a lot of repeating code
the first thing to do is to recognize the parts that are common (in the real world, this will probably be a little more substantial)
and turn that into a function
then for the parts that change in each case, use a hash or an array;
from here we can do this:
And with tvals factored out of the switch statement, it could even be provided externally to expand the number of cases you can handle. Or you could build it dynamically. In the real world, the switch statement will often have special cases, however. I leave that as an excercise for the reader. | ||||
|
feedback
|
|
Three suggestions (echoing some already given):
| |||
|
feedback
|
|
You could always use a lookup table. | |||
|
feedback
|
|
There's nothing wrong with having 20 cases in a switch statement. You can tidy the code by refactoring and, at the very least, move the case processing into methods/functions. | |||
|
feedback
|
|
Depending on what the switch statement is evaluating, you may want to refactor it using the Strategy Pattern. Take a look at this post for an example of replacing a switch on enum values with separate classes to handle each function. It also may be that using the switch with 20 cases may actually be the best course of action for it. As long as it's readable and each result clearly conveys what the action is there's no need to really refactor it. | |||
|
feedback
|
|
It depends what the switch statement is doing. If it's matching characters or strings, say in a parser, and you don't have the same set of patterns repeated everywhere in the code, then a switch statement might be ok. If it's matching (say) an integer against a list of allowed values, you can create a base class and a set of derived classes for each value. Then, whatever generates the integer data in the first place can create an instance of the derived class with all of the switch statement "answers" instead. A third option is to create a data structure that maps patterns to actions (i.e., functions or objects with virtual methods). You can look up the switch value in this data strucutre, and execute the appropriate action. | |||
|
feedback
|
|
if it's working without major bugs (by not major I mean they don't make you pull your hair out) why bother refactor it? Don't refactor everything. If you want, you can change it to polymorphism, but this will be a shotgun surgery, you'll probably have to refactor a whole lot more than just this switch block. | |||
|
feedback
|
|
In general, I think you should refactor only when you need to, such as when you want to add more features, but the current design isn't up for the task. You should then refactor without adding the new functionality, and only then add the new feature. In other circumstances, don't bother with refactoring. Do it when you need to, otherwise there are probably more important things to do. If you really really need to, then the Visitor Design Pattern is a common switch-case replacement, though you should note it does have drawbacks. (i.e., check out www.objectmentor.com/resources/articles/acv.pdf) | |||
|
feedback
|