vote up 20 vote down star
22

I am crafting a small project in mixed C and C++. I building one small-ish state-machine at the heart of one of my worker threads.

I was wondering if you gurus on SO would share your state-machine design techniques.

NOTE: I am primarily after tried & tested implementation techniques.

UPDATED: Based on all the great input gathered on SO, I've settled with this structure:

alt text

flag

1  
The answers here are very good. Also look at this duplicate question that has several good answers, too: stackoverflow.com/questions/1371460/… – Michael Burr Oct 30 at 3:53
This is also interesting: stackoverflow.com/questions/133214/… – Daniel Daranas Oct 30 at 8:31
leaving a footprint so that i could found this thread later. – EffoStaff Effo Nov 1 at 14:50
1  
@Effo: you just have to add it to your "favorites", no? – jldupont Nov 1 at 16:05

13 Answers

vote up 27 vote down check

State machines that I've designed before (C, not C++) have all come down to a struct array and a loop. The structure basically consists of a state and event (for lookup) and a function that returns the new state, something like:

typedef struct {
    int st;
    int ev;
    int (*fn)(void);
} tTransition;

Then you define your states and events with simple defines (the ANY ones are special markers, see below):

#define ST_ANY              -1
#define ST_INIT              0
#define ST_ERROR             1
#define ST_TERM              2
: :
#define EV_ANY              -1
#define EV_KEYPRESS       5000
#define EV_MOUSEMOVE      5001

Then you define all the functions that are called by the transitions:

static int GotKey (void) { ... };
static int FsmError (void) { ... };

Because these all follow the same form and take no parameters, there's use made of global variables for information passing where necessary. This isn't as bad as it sounds since the FSM is usually locked up inside a single compilation unit and all variables are static to that unit. As with all globals, it requires care.

The transitions array then defines all possible transitions and the functions that get called for those transitions (including the catch-all last one):

tTransition trans[] = {
    { ST_INIT, EV_KEYPRESS, &GotKey},
    : :
    { ST_ANY, EV_ANY, &FsmError}
};
#define TRANS_COUNT (sizeof(trans)/sizeof(*trans))

The workings of the FSM then become a relatively simple loop:

state = ST_INIT;
while (state != ST_TERM) {
    event = GetNextEvent();
    for (i = 0; i < TRANS_COUNT; i++) {
        if ((state == trans[i].st) || (ST_ANY == trans[i].st)) {
            if ((event == trans[i].ev) || (EV_ANY == trans[i].ev)) {
                state = (trans[i].fn)();
                break;
            }
        }
    }
}

As alluded to above, note the use of ST_ANY and EV_ANY as wildcards, allowing an event to call a function no matter the current state, and guaranteeing that, if you reach the end of the transitions array, you get an error stating your FSM hasn't been built correctly.

I've used code similar for this on a great many communications projects, such as an early implementation of the OSI layered model and protocols for embedded systems. It's big advantage was its simplicity and relative ease in changing the transitions array.

I've no doubt there will be higher-level abstractions which may be more suitable nowadays but I suspect they'll all boil down to this same sort of structure.

link|flag
Nice... thanks for your contribution. – jldupont Oct 30 at 2:31
Yes, very nice. I may steal some ideas from this. – Michael Burr Oct 30 at 5:01
This looks nice, and practical. I would have expected you to use a giant switch statement instead of iterating through an array of transitions... I think I see a couple of advantages of doing it this way, but I would be grateful if you would explain why you do this instead of the giant switch. Also, a minor nit: all the compilers I use these days support enums, so I would prefer to use enums for things like states. I always define a first and last enum that are not valid states, so I can write a range check like: Assert(stateInvalid < state && state < stateMax); – steveha Oct 30 at 5:12
2  
A giant switch mixes code in with the FSM. Even if there's only a function call per transition, there's still some code, and it's easy for someone to abuse that by just adding a small 4-line transition inline. hen a ten-line one. Then it gets out of hand. With the struct array, the FSM stays clean - you can see every transition and the effect (function). And I started when enums were a twinkle in ISO's eye, writing code for 6809 embedded platforms with compilers that were, shall we say, less than perfect :-) – paxdiablo Oct 30 at 5:18
1  
You're right, enums would be better, but I still prefer having the FSM as a struct array. Then it's all run by data rather than code (well, there's some code but the chance of stuffing up that FSM loop I gave is slim). – paxdiablo Oct 30 at 5:19
show 2 more comments
vote up 11 vote down

The other answers are good, but a very "lightweight" implementation I've used when the state machine is very simple looks like:

enum state { ST_NEW, ST_OPEN, ST_SHIFT, ST_END };

enum state current_state = ST_NEW;

while (current_state != ST_END)
{
    input = get_input();

    switch (current_state)
    {
        case ST_NEW:
        /* Do something with input and set current_state */
        break;

        case ST_OPEN:
        /* Do something different and set current_state */
        break;

        /* ... etc ... */
    }
}

I would use this when the state machine is simple enough that the function pointer & state transition table approach is overkill. This is often useful for character-by-character or word-by-word parsing.

link|flag
+1. I have actually used this method for simple cases. – paxdiablo Oct 30 at 8:46
vote up 4 vote down

You might consider the State Machine Compiler http://smc.sourceforge.net/

This splendid open source utility accepts a description of a state machine in a simple language and compiles it to any one of a dozen or so languages - including C and C++. The utility itself is written in Java, and can be included as part of a build.

The reason to do this, rather than hand coding using GoF State pattern or any other approach, is that once your state machine is expressed as code, the underlying structure tends to disappear under the weight of boilerplate that needs to be generated to support it. Using this approach gives you an excellent separation of concerns, and you keep the structure of your state machine 'visible'. The auto-generated code goes into modules that you don't need to touch, so that you can go back and fiddle with the state machine's structure without impacting the supporting code that you have written.

Sorry, I am being over-enthusiastic, and doubtless putting everyone off. But it is a top notch utility, and well-documented too.

link|flag
1  
+1. There's nothing wrong with being enthusiastic about a tool that saves you time and effort. I still remember hand-crafting parsers for compilers in the early days then discovering lex/yacc. Never looked back after that. – paxdiablo Oct 30 at 22:25
vote up 3 vote down

Pardon me for breaking every rule in computer science, but a state machine is one of the few (I can count only two off hand) places where a goto statement is not only more efficent, but also makes your code cleaner and easier to read. Because goto statements are based on lables, you can name your states instead of having to keep track of a mess of numbers or use an enum. It also makes for much cleaner code since you don't need all the extra cruft of function pointers or huge switch statements and while loops. Did I mention it's more efficient too?

Here's what a state machine might look like:

void state_machine() {
first_state:
    // Do some stuff here
    switch(some_var) {
    case 0:
        goto first_state;
    case 1:
        goto second_state;
    default:
        return;
    }

second_state:
    // Do some stuff here
    switch(some_var) {
    case 0:
        goto first_state;
    case 1:
        goto second_state;
    default:
        return;
    }
}

You get the general idea. The point is that you can implement the state machine in an efficent way and one that is relatively easy to read and screams at the reader that they are looking at a state machine. Note that if you are using goto statements, you must still be careful as it is very easy to shoot yourself in the foot while doing so.

link|flag
vote up 2 vote down

I've done something similar to what paxdiablo describes, only instead of an array of state/event transitions, I set up a 2-dimensional array of function pointers, with the event value as the index of one axis and the current state value as the other. Then I just call state = state_table[event][state](params) and the right thing happens. Cells representing invalid state/event combinations get a pointer to a function that says so, of course.

Obviously, this only works if the state and event values are both contiguous ranges and start at 0 or close enough.

link|flag
Feels like this solution doesn't scale nicely: too much table filling, no? – jldupont Oct 30 at 17:19
+1. The scaling issue here is memory - my own solution has a scaling issue re time, i.e., time taken to scan the transitions table (though you can manually optimize for the most common transitions). This one sacrifices memory for speed - it's just a trade-off. You'd probably need checks for bounds but it's not a bad solution. – paxdiablo Oct 30 at 22:32
Guys - My comment didn't come out as intended: I meant it is much more laborious and error prone. If you add a state/event, lots of editing needs to be done. – jldupont Nov 1 at 22:42
Nobody said the 2D array was initialized by hand. Maybe there's something that reads a configuration file and creates it (or at least there certainly could be). – John Zwinck Nov 20 at 13:48
vote up 2 vote down

Be sure to check the work of Miro Samek (state-space blog, state-machine website, presentation, book. His articles at the C/C++ Users Journal were great.

link|flag
Your humor escapes me but your links are useful. – jldupont Oct 30 at 10:53
I modified the question's title according following your pun. – jldupont Oct 30 at 10:55
@jldupont: I just meant that it was better to clarify. I have deleted the irrelevant parts of my answer now. – Daniel Daranas Oct 30 at 13:37
@Daniel: :-) Cheers. – jldupont Oct 30 at 13:45
vote up 1 vote down

Your question is quite generic,
Here are two reference articles that might be useful,

  1. Embedded State Machine Implementation

    This article describes a simple approach to implementing a state machine for an embedded system. For purposes of this article, a state machine is defined as an algorithm that can be in one of a small number of states. A state is a condition that causes a prescribed relationship of inputs to outputs, and of inputs to next states.
    A savvy reader will quickly note that the state machines described in this article are Mealy machines. A Mealy machine is a state machine where the outputs are a function of both present state and input, as opposed to a Moore machine, in which the outputs are a function only of state.

  2. Coding State Machines in C and C++

    My preoccupation in this article is with state-machine fundamentals and some straightforward programming guidelines for coding state machines in C or C++. I hope that these simple techniques can become more common, so that you (and others) can readily see the state-machine structure right from the source code.

link|flag
vote up 1 vote down

This series of Ars OpenForum posts about a somewhat complicated bit of control logic includes a very easy-to-follow implementation as a state machine in C.

link|flag
vote up 1 vote down

Extremely untested, but fun to code:

smgen.h

#ifndef SMGEN_H
#define SMGEN_H

#define sm_init(...) \
    typedef void (*sm_transit_fn(__VA_ARGS__))(__VA_ARGS__); \
    typedef void (*sm_state)(__VA_ARGS__)

#define sm_def(STATE_NAME, TRANSIT_FN) \
    static sm_transit_fn TRANSIT_FN; \
    static const sm_state STATE_NAME = (sm_state)TRANSIT_FN

#define sm_transit(STATE) ((sm_transit_fn *)STATE)

#endif

example.c

#include <stdio.h>
#include "smgen.h"

sm_init(int *);
sm_def(EVEN, even);
sm_def(ODD, odd);

static sm_state even(int *i)
{
    printf("even %i\n", (*i)++);
    return ODD;
}

static sm_state odd(int *i)
{
    printf("odd  %i\n", (*i)++);
    return EVEN;
}

int main(void)
{
    int i = 0;
    sm_state state = EVEN;
    while(i < 10) state = sm_transit(state)(&i);
}
link|flag
1  
I love the "extremely untested" comment. Seems to indicate that there are degrees of untestedness and that you put quite a bit of effort into not testing it :-) – paxdiablo Nov 2 at 5:46
vote up 1 vote down

Coming to this late (as usual) but scanning the answers to date I thinks something important is missing;

I have found in my own projects that it can be very helpful to not have a function for every valid state/event combination. I do like the idea of effectively having a 2D table of states/events. But I like the table elements to be more than a simple function pointer. Instead I try to organize my design so at it's heart it comprises a bunch of simple atomic elements or actions. That way I can list those simple atomic elements at each intersection of my state/event table. The idea is that you don't have to define a mass of N squared (typically very simple) functions. Why have something so error-prone, time consuming, hard to write, hard to read, you name it ?

I also include an optional new state, and an optional function pointer for each cell in the table. The function pointer is there for those exceptional cases where you don't want to just fire off a list of atomic actions.

You know you are doing it right when you can express a lot of different functionality, just by editing your table, with no new code to write.

link|flag
Maybe an example would be nice, no? – jldupont 2 days ago
A realistic example that can be presented in isolation is a challenging task that would require more time than I am prepared to give just at the moment. Is there anything in my post that is particularly hard to understand ? Maybe I can express it more clearly. The idea is very simple; Don't define a state mechanism that requires a separate function for every event/state combination, you get way too many functions that way. Instead find another way to describe the functionality you want for that event/state combination, at least in the majority of cases. – Bill Forster 2 days ago
Understood: a pseudo-code example would have been good but your point is clear. – jldupont 2 days ago
vote up 0 vote down

It is has beed discussed here

link|flag
vote up 0 vote down

Saw this somewhere

#define FSM
#define STATE(x)      s_##x :
#define NEXTSTATE(x)  goto s_##x

FSM {
  STATE(x) {
    ...
    NEXTSTATE(y);
  }

  STATE(y) {
    ...
    if (x == 0)
      NEXTSTATE(y);
    else
      NEXTSTATE(x);
  }
}
link|flag
It is interesting, but no upvote until you give an example or two (and perhaps de-macro'ed result) or some discussion on why this may be more practical than another. Interesting use of orphaned brackets and macros. I imagine something similar could be done on a language that does some sort of tail recursion optimization; you could use straight up function calls and not worry about overloading the stack space with function call garbage (which I think is what the macros are essentially overcoming here) – Ape-inago Oct 30 at 22:58
vote up 0 vote down

The technique I like for state machines (at least ones for program control) is to use function pointers. Each state is represented by a different function. The function takes an input symbol and returns the function pointer for the next state. The central dispatch loop monitors takes the next input, feeds it to the current state, and processes the result.

The typing on it gets a little odd, since C doesn't have a way to indicate types of function pointers returning themselves, so the state functions return void*. But you can do something like this:

typedef void* (*state_handler)(input_symbol_t);
void dispatch_fsm()
{
    state_handler current = initial_handler;
    /* Let's assume returning null indicates end-of-machine */
    while (current) {
        current = current(get_input);
    }
 }

Then your individual state functions can switch on their input to process and return the appropriate value.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.