Jump to content

Loop-switch sequence

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 146.180.106.231 (talk) at 14:24, 12 July 2007 (Refactored solution (pseudocode)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

A loop-switch sequence is a specific derivative of the spaghetti code programming antipattern which describes the obfuscating of a clear process of steps with a byzantine switch-within-a-loop idiom. However, it is not necessarily an anti-pattern to use a switch within a loop to build a coroutine that handles events using a finite state machine.

Example of antipattern (pseudocode)


  // parse a key, a value, then three parameters 

  String key;
  String value;
  List<String> args;
  
  for ( int i = 0; i < 5; ++i )
  {
    switch( i )
    {
      case 0 :
        key = stream.parse();
        break;
  
      case 1 :
        value = stream.parse();
        break;
  
      default:
        args.add( stream.parse() );
    }
  }

Refactored solution (pseudocode)

  // parse a key and value
  
  String key = stream.parse();
  String value = stream.parse();
  
  // parse 3 parameters

  List<String> args;
  
  for ( int i = 0; i < 3; ++i )
  {
    args.add( stream.parse() );
  }