Is there a typical state machine implementation pattern? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:38:08Z http://stackoverflow.com/feeds/question/133214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern 16 Is there a typical state machine implementation pattern? Benoit 2008-09-25T13:08:33Z 2008-09-26T14:07:19Z <p>We need to implement a simple state machine in <strong>C</strong>.<br /> Is a standard switch statement the best way to go?<br /> We have a current state (state) and a trigger for the transition.</p> <pre><code> switch(state) { case STATE_1: state = DoState1(transition); break; case STATE_2: state = DoState2(transition); break; } ... DoState2(int transition) { // Do State Work ... if(transition == FROM_STATE_2) { // New state when doing STATE 2 -> STATE 2 } if(transition == FROM_STATE_1) { // New State when moving STATE 1 -> STATE 2 } return new_state; } </code></pre> <p>Is there a better way <strong>for simple state machines</strong></p> <p>EDIT: For C++, I think the Boost <a href="http://www.boost.org/doc/libs/1_36_0/libs/statechart/doc/index.html" rel="nofollow">Statechart</a> library might be the way to go. However, it does <strong>not</strong> help with C. Lets concentrate on the C use case.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133228#133228 0 Answer by jdt141 for Is there a typical state machine implementation pattern? jdt141 2008-09-25T13:11:48Z 2008-09-25T13:11:48Z <p>Boost has the statechart library. <a href="http://www.boost.org/doc/libs/1_36_0/libs/statechart/doc/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_36_0/libs/statechart/doc/index.html</a></p> <p>I can't speak to the use of it, though. Not used it myself (yet)</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133233#133233 1 Answer by Phil Wright for Is there a typical state machine implementation pattern? Phil Wright 2008-09-25T13:13:05Z 2008-09-25T13:13:05Z <p>In my experience using the 'switch' statement is the standard way to handle multiple possible states. Although I am surpirsed that you are passing in a transition value to the per-state processing. I thought the whole point of a state machine was that each state performed a single action. Then the next action/input determines which new state to transition into. So I would have expected each state processing function to immediately perform whatever is fixed for entering state and then afterwards decide if transition is needed to another state.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133285#133285 1 Answer by Bruno De Fraine for Is there a typical state machine implementation pattern? Bruno De Fraine 2008-09-25T13:23:27Z 2008-09-25T13:23:27Z <p>In C++, consider the <a href="http://en.wikipedia.org/wiki/State_pattern" rel="nofollow">State pattern</a>.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133292#133292 3 Answer by geocoin for Is there a typical state machine implementation pattern? geocoin 2008-09-25T13:24:00Z 2008-09-25T13:24:00Z <p>there is also the <a href="http://www.codeguru.com/Cpp/misc/misc/math/article.php/c9629" rel="nofollow">logic grid</a> which is more maintainable as the state machine gets bigger</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133301#133301 1 Answer by Mark for Is there a typical state machine implementation pattern? Mark 2008-09-25T13:25:30Z 2008-09-25T13:25:30Z <p>For simple cases, you can you your switch style method. What I have found that works well in the past is to deal with transitions too:</p> <pre><code>static int current_state; // should always hold current state -- and probably be an enum or something void state_leave(int new_state) { // do processing on what it means to enter the new state // which might be dependent on the current state } void state_enter(int new_state) { // do processing on what is means to leave the current atate // might be dependent on the new state current_state = new_state; } void state_process() { // switch statement to handle current state } </code></pre> <p>I don't know anything about the boost library, but this type of approach is dead simple, doesn't require any external dependencies, and is easy to implement.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133309#133309 1 Answer by pmlarocque for Is there a typical state machine implementation pattern? pmlarocque 2008-09-25T13:26:37Z 2008-09-25T13:26:37Z <p>The state pattern as previously state :</p> <p>[<a href="http://www.codeproject.com/Kb/architecture/StatePatternBy_Sarath._.aspx" rel="nofollow">http://www.codeproject.com/Kb/architecture/StatePatternBy_Sarath._.aspx</a>][1]</p> <p>I you can put your hands on the book "head first design pattern", the explanation and example are very clear.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133352#133352 0 Answer by Benoit for Is there a typical state machine implementation pattern? Benoit 2008-09-25T13:34:21Z 2008-09-25T13:34:21Z <p>There is a book titled <a href="http://rads.stackoverflow.com/amzn/click/1578201101" rel="nofollow">Practical Statecharts in C/C++</a>. However, it is <strong>way</strong> too heavyweight for what we need.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133361#133361 9 Answer by Frank Szczerba for Is there a typical state machine implementation pattern? Frank Szczerba 2008-09-25T13:35:31Z 2008-09-25T13:35:31Z <p>I prefer to use a table driven approach for most state machines:</p> <pre><code>typedef enum { STATE_INITIAL, STATE_FOO, STATE_BAR, NUM_STATES } state_t; typedef struct instance_data instance_data_t; typedef state_t state_func_t( instance_data_t *data ); state_t do_state_initial( instance_data_t *data ); state_t do_state_foo( instance_data_t *data ); state_t do_state_bar( instance_data_t *data ); state_func_t* const state_table[ NUM_STATES ] = { do_state_initial, do_state_foo, do_state_bar }; state_t run_state( state_t cur_state, instance_data_t *data ) { return state_table[ cur_state ].( data ); }; int main( void ) { state_t cur_state = STATE_INITIAL; instance_data_t data; while ( 1 ) { cur_state = run_state( cur_state, &amp;data ); // do other program logic, run other state machines, etc } } </code></pre> <p>This can of course be extended to support multiple state machines, etc. Transition actions can be accommodated as well:</p> <pre><code>typedef void transition_func_t( instance_data_t *data ); void do_initial_to_foo( instance_data_t *data ); void do_foo_to_bar( instance_data_t *data ); void do_bar_to_initial( instance_data_t *data ); void do_bar_to_foo( instance_data_t *data ); void do_bar_to_bar( instance_data_t *data ); transition_func_t * const transition_table[ NUM_STATES ][ NUM_STATES ] = { { NULL, do_initial_to_foo, NULL }, { NULL, NULL, do_foo_to_bar }, { do_bar_to_initial, do_bar_to_foo, do_bar_to_bar } }; state_t run_state( state_t cur_state, instance_data_t *data ) { state_t new_state = state_table[ cur_state ].( data ); transition_func_t *transition = transition_table[ cur_state ][ new_state ]; if ( transition ) { transition( data ); } return new_state; }; </code></pre> <p>The table driven approach is easier to maintain and extend and simpler to map to state diagrams.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133363#133363 5 Answer by Remo.D for Is there a typical state machine implementation pattern? Remo.D 2008-09-25T13:35:49Z 2008-09-25T14:07:17Z <p>You might have seen my answer to another C question where I mentioned FSM! Here is how I do it:</p> <pre><code>FSM { STATE(x) { ... NEXTSTATE(y); } STATE(y) { ... if (x == 0) NEXTSTATE(y); else NEXTSTATE(x); } } </code></pre> <p>With the following macros defined</p> <pre><code>#define FSM #define STATE(x) s_##x : #define NEXTSTATE(x) goto s_##x </code></pre> <p>This can be modified to suit the specific case. For example, you may have a file <code>FSMFILE</code> that you want to drive your FSM, so you could incorporate the action of reading next char into the the macro itself:</p> <pre><code>#define FSM #define STATE(x) s_##x : FSMCHR = fgetc(FSMFILE); sn_##x : #define NEXTSTATE(x) goto s_##x #define NEXTSTATE_NR(x) goto sn_##x </code></pre> <p>now you have two types of transitions: one goes to a state and read a new character, the other goes to a state without consuming any input.</p> <p>You can also automate the handling of EOF with something like:</p> <pre><code>#define STATE(x) s_##x : if ((FSMCHR = fgetc(FSMFILE) == EOF)\ goto sx_endfsm;\ sn_##x : #define ENDFSM sx_endfsm: </code></pre> <p>The good thing of this approach is that you can directly translate a state diagram you draw into working code and, conversely, you can easily draw a state diagram from the code.</p> <p>In other techniques for implementing FSM the structure of the transitions is buried in control structures (while, if, switch ...) and controlled by variables value (tipically a <code>state</code> variable) and it may be a complex task to relate the nice diagram to a convoluted code.</p> <p>I learned this technique from an article appeared on the great "Computer Language" magazine that, unfortunately, is no longer published.</p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/133445#133445 1 Answer by Kenny for Is there a typical state machine implementation pattern? Kenny 2008-09-25T13:46:56Z 2008-09-25T13:46:56Z <p>Also consider the work of <a href="http://rads.stackoverflow.com/amzn/click/1578201101" rel="nofollow">Miro Samek</a> and his <a href="http://www.state-machine.com/" rel="nofollow">website</a>. </p> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/135505#135505 1 Answer by jsl4980 for Is there a typical state machine implementation pattern? jsl4980 2008-09-25T19:36:45Z 2008-09-25T19:36:45Z <p>For a simple state machine just use a switch statement and an enum type for your state. Do your transitions inside the switch statement based on your input. In a real program you would obviously change the "if(input)" to check for your transition points. Hope this helps.</p> <pre><code>typedef enum { STATE_1 = 0, STATE_2, STATE_3 } my_state_t; my_state_t state = STATE_1; void foo(char input) { ... switch(state) { case STATE_1: if(input) state = STATE_2; break; case STATE_2: if(input) state = STATE_3; else state = STATE_1; break; case STATE_3: ... break; } ... } </code></pre> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/136055#136055 1 Answer by Commodore Jaeger for Is there a typical state machine implementation pattern? Commodore Jaeger 2008-09-25T20:58:42Z 2008-09-25T20:58:42Z <p>switch() is a powerful and standard way of implementing state machines in C, but it can decrease maintainability down if you have a large number of states. Another common method is to use function pointers to store the next state. This simple example implements a set/reset flip-flop:</p> <pre><code>/* Implement each state as a function with the same prototype */ void state_one(int set, int reset); void state_two(int set, int reset); /* Store a pointer to the next state */ void (*next_state)(int set, int reset) = state_one; /* Users should call next_state(set, reset). This could also be wrapped by a real function that validated input and dealt with output rather than calling the function pointer directly. */ /* State one transitions to state one if set is true */ void state_one(int set, int reset) { if(set) next_state = state_two; } /* State two transitions to state one if reset is true */ void state_two(int set, int reset) { if(reset) next_state = state_one; } </code></pre> http://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern/139724#139724 1 Answer by pklausner for Is there a typical state machine implementation pattern? pklausner 2008-09-26T14:07:19Z 2008-09-26T14:07:19Z <p>You might want to look into the <strong>libero</strong> FSM generator software. From a state description language and/or a (windows) state diagram editor you may generate code for C, C++, java and many others ... plus nice documentation and diagrams. Source and binaries from <a href="http://www.imatix.com/technologies" rel="nofollow">iMatix</a></p>