I've searched for a number of articles on refactoring a large switch statement.
But they don't do what I want to do. The problem I'm going to to run in to is having a gigantic switch statement which calls a different method depending on two different values, lets say a type and a code.
Currently, I would handle the situation like this:
switch (type)
{
case Types.Type1:
handleType1(code);
break;
case Types.Type2:
handleType2(code);
break;
}
void handleTypeN(code)
{
switch (code)
{
...
}
}
Maybe something which combines the factory and command pattern would help me out? I must be missing something obvious.
How would you refactor this code?
I might need to get a little more specific as to what scenario I'm facing.
I'm receiving packets from a server. A packet contains a type and a code and some specific information.
As soon as data arrives I retrieve the type and the code of the packet and it goes in to the switch statement for the type, after figuring out the type a specific method is called to perform a switch on the code of the packet.
The method that handles the code now decodes the packet further and the process is done.
+----------+ +----------+
| | Packet | |
| Server | -------------> | Client |
| | | |
+----------+ +----------+
|
|
(Switch on the type of the packet and call a specific method)
|
|
(Switch on the code of the packet and call a specific method)
|
|
(Respond to the server or not)
switchstatement is being applied to? – jerluc Jul 5 '11 at 10:45