-
Notifications
You must be signed in to change notification settings - Fork 9
/
tiny_hsm.h
128 lines (114 loc) · 4.58 KB
/
tiny_hsm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*!
* @file
* @brief Hierarchical version of a finite state machine.
*
* Differs from an FSM in that a state can have a parent state that can be used to share
* behavior via a mechanism similar to inheritance. The parent-child relationship between
* states impacts both signal handling and transitions.
*
* In order to explore how signal handling and transitions work in an HSM, consider the
* below state machine:
*
* +---------------------+ +---+
* | A | | F |
* | +-------+ +-------+ | +---+
* | | B | | D | |
* | | +---+ | | +---+ | |
* | | | C | | | | E | | |
* | | +---+ | | +---+ | |
* | +-------+ +-------+ |
* +---------------------+
*
* States B and D are children of A. States C and E are children of B and D, respectively.
* State F has no children and no parents.
*
* Signals are always sent first to the active state. The active state can choose whether
* to consume the signal or to defer to its parent. If the state chooses to consume the
* signal then signal handling ends with the state. If, however, the state chooses to
* defer then the signal will then be sent to the state's parent. At this point the parent
* must make the same decision. Signal handling ends when the state or one of its
* ancestors consumes the signal or the list of ancestors is exhausted.
*
* Assume that the state C shown above is active and a signal is sent to the state
* machine. State C will be the first state to receive this signal. If it chooses to
* defer then the signal will be sent to state B, its direct parent. If state B also
* chooses to defer then the signal will finally be sent to state A. If A chooses to defer
* then signal handling will end because it has no parent state.
*
* When transitioning, exit signals are sent up the ancestor chain until reaching the
* nearest common ancestor of the current and target states. Then, entry signals are sent
* down the ancestor chain to the target state. The nearest common ancestor does not
* receive an exit signal nor does it receive an entry signal. There is a special case
* when the current and target states match (a self-transition). In this scenario the
* current state will be sent an exit and then an entry signal.
*
* For example, if C is the current state and E is the target state, then the nearest
* common ancestor is state A. This means that exit signals are sent to C and B and then
* entry signals are sent to D and E.
*
* If B is the current state and F is the target state, then there is no nearest common
* ancestor, so exit signals are sent to B and A and then an entry signal is sent to F.
*
* If C is the current state and the target state, this exercises the special case of a
* self-transition so C will be sent an exit signal then an entry signal.
*
* @note Transitions can only be initiated when a transition is not active. This means
* that transitions can never be triggered from an exit signal handler and they can only
* be triggered from an entry signal handler if the current state is the target state
* (thus there are not more entry signals that are going to be sent).
*/
#ifndef tiny_hsm_h
#define tiny_hsm_h
#include <stddef.h>
#include <stdint.h>
#define tiny_hsm_no_parent NULL
enum {
tiny_hsm_signal_entry,
tiny_hsm_signal_exit,
tiny_hsm_signal_user_start
};
typedef uint8_t tiny_hsm_signal_t;
enum {
tiny_hsm_result_signal_deferred,
tiny_hsm_result_signal_consumed
};
typedef uint8_t tiny_hsm_result_t;
struct tiny_hsm_t;
typedef tiny_hsm_result_t (*tiny_hsm_state_t)(
struct tiny_hsm_t* hsm,
tiny_hsm_signal_t signal,
const void* data);
/*!
* Configures the parent of each state. Use NULL for the parent to indicate that a state
* has no parent.
*/
typedef struct {
tiny_hsm_state_t state;
tiny_hsm_state_t parent;
} tiny_hsm_state_descriptor_t;
typedef struct {
const tiny_hsm_state_descriptor_t* states;
uint8_t state_count;
} tiny_hsm_configuration_t;
typedef struct tiny_hsm_t {
const tiny_hsm_configuration_t* configuration;
tiny_hsm_state_t current;
} tiny_hsm_t;
/*!
* Initializes an HSM with the specified initial state. Sends entry signals down the
* ancestor chain to the initial state.
*/
void tiny_hsm_init(
tiny_hsm_t* self,
const tiny_hsm_configuration_t* configuration,
tiny_hsm_state_t initial);
/*!
* Sends a signal and optional signal data to the current state and, potentially, to
* all of the state's parents.
*/
void tiny_hsm_send_signal(tiny_hsm_t* self, tiny_hsm_signal_t signal, const void* data);
/*!
* Transitions the HSM to the target state.
*/
void tiny_hsm_transition(tiny_hsm_t* self, tiny_hsm_state_t target);
#endif