-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsmcpp.h
476 lines (397 loc) · 7.04 KB
/
smcpp.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
#ifndef __SMCPP_H__
#define __SMCPP_H__
#include <stddef.h>
#include <assert.h>
namespace SM
{
#define CONFIG_SM_DEBUG 1
#ifndef CONFIG_SM_FSM
#define CONFIG_SM_FSM 1
#endif
#ifndef CONFIG_SM_HSM
#define CONFIG_SM_HSM 1
#endif
#if ! (CONFIG_SM_FSM || CONFIG_SM_HSM)
#error "FSM and HSM must chose one!"
#endif
#ifndef SM_MAX_NEST_DEPTH
#define SM_MAX_NEST_DEPTH 8
#endif
#if CONFIG_SM_DEBUG
#define SM_ASSERT(cond) assert(cond)
#else
#define SM_ASSERT(cond) /* NULL */
#endif
typedef int Singal;
enum RESERVED_SIG
{
EMPTY_SIG = -4,
ENTRY_SIG = -3,
EXIT_SIG = -2,
INIT_SIG = -1,
USER_SIG = 0,
};
/**
* @brief 事件类
*/
class Event
{
public:
Event(Singal const s): sig(s){}
virtual ~Event(){}
Singal sig;
};
const Event RESERVED_EVENT[] =
{
Event(EMPTY_SIG),
Event(ENTRY_SIG),
Event(EXIT_SIG),
Event(INIT_SIG),
Event(USER_SIG),
};
/**
* @bref 状态处理函数的返回值类型
*
*/
enum
{
RET_HANDLED,
RET_IGNORE,
RET_UNHANDLED,
RET_TRAN,
RET_SUPER,
};
class Attr;
typedef int (*StateHander)(Attr &sm, Event &e);
class Attr
{
public:
Attr()
{
m_state = 0;
m_temp = 0;
m_last = m_state;
}
virtual ~Attr(){}
inline int handled(void)
{
return RET_HANDLED;
}
inline int ignore(void)
{
return RET_IGNORE;
}
inline int unhandled(void)
{
return RET_UNHANDLED;
}
inline int tran(const StateHander &target)
{
m_temp = target;
m_last = m_state;
return RET_TRAN;
}
inline int tranLast(void)
{
m_temp = m_last;
m_last = m_state;
return RET_TRAN;
}
inline int supper(const StateHander &target)
{
m_temp = target;
return RET_SUPER;
}
private:
StateHander m_state;
StateHander m_temp;
StateHander m_last;
inline int trig(const StateHander &state, Singal sig)
{
return state(*this, const_cast<Event &>(RESERVED_EVENT[4+sig]));
}
inline int entry(StateHander state)
{
return trig(state, ENTRY_SIG);
}
inline int exit(StateHander state)
{
return trig(state, EXIT_SIG);
}
friend class Fsm;
friend class Hsm;
};
#if CONFIG_SM_FSM
class Fsm: public Attr
{
public:
Fsm(const StateHander &init)
{
m_state = 0;
m_temp = init;
}
int start(Event &e = const_cast<Event &>(RESERVED_EVENT[4+USER_SIG]))
{
int ret;
ret = m_temp(*this, e);
if (RET_TRAN != ret)
{
return ret;
}
entry(m_temp);
m_state = m_temp;
return ret;
}
void dispatch(Event &e)
{
int ret;
SM_ASSERT(m_state == m_temp);
ret = m_temp(*this, e);
if (ret == RET_TRAN)
{
exit(m_state);
entry(m_temp);
m_state = m_temp;
}
}
static Fsm &fsm_entry(Attr &p)
{
return dynamic_cast<Fsm &>(p);
}
};
#endif
#if CONFIG_SM_HSM
class Hsm: public Attr
{
public:
Hsm(const StateHander &init)
{
m_state = hsm_top;
m_temp = init;
}
void start(Event &e = const_cast<Event &>(RESERVED_EVENT[4+USER_SIG]))
{
int ret;
int ip;
StateHander path[SM_MAX_NEST_DEPTH];
StateHander t = m_state;
ret = (m_temp)(*this, e);
SM_ASSERT(RET_TRAN == ret);
do
{
ip = 0;
path[0] = m_temp;
trig(m_temp, EMPTY_SIG);
while( t != m_temp )
{
path[++ip] = m_temp;
trig(m_temp, EMPTY_SIG);
}
m_temp = path[0];
SM_ASSERT(ip < SM_MAX_NEST_DEPTH);
do
{
entry(path[ip--]);
}while(ip >= 0);
t = path[0];
}while(RET_TRAN == trig(t, INIT_SIG));
m_temp = t;
m_state = m_temp;
}
void dispatch(Event &e)
{
StateHander t = m_state;
StateHander s;
int ret;
// 状态必须稳定
SM_ASSERT(m_state == m_temp);
/* process the event hierarchically... */
// 事件递归触发, 直到某个状态处理该事件
do
{
s = m_temp;
ret = s(*this, e); // 调用状态处理函数
if(RET_UNHANDLED == ret)
{
ret = trig(s, EMPTY_SIG);
}
}while(RET_SUPER == ret);
// 如果发生状态转换
if(RET_TRAN == ret)
{
StateHander path[SM_MAX_NEST_DEPTH];
signed char ip = -1;
path[0] = m_temp; // 状态转换的目的状态
path[1] = t; // 状态转换的源状态
/* exit current state to transition source s... */
for( ; s != t; t = m_temp)
{
ret = exit(t);
if(RET_HANDLED == ret)
{
trig(t, EMPTY_SIG);
}
}
ip = find_path(path[0], s, path);
for(; ip>=0; ip--)
{
entry(path[ip]);
}
t = path[0];
m_temp = t;
/* drill into the target hierarchy... */
while( RET_TRAN == trig(t, INIT_SIG) )
{
ip = 0;
path[0] = m_temp;
trig(m_temp, EMPTY_SIG);
while(t != m_temp)
{
path[++ip] = m_temp;
trig(m_temp, EMPTY_SIG);
}
m_temp = path[0];
SM_ASSERT(ip < SM_MAX_NEST_DEPTH);
do
{
entry(path[ip--]);
}while(ip >= 0);
t = path[0];
}// end: while( SM_RET_TRAN == SM_TRIG(me, t, SM_INIT_SIG) )
} // end: if(SM_RET_TRAN == ret)
m_temp = t;
m_state = t;
}
static Hsm &hsm_entry(Attr &p)
{
return dynamic_cast<Hsm &>(p);
}
//! 层次状态机根状态
static int hsm_top(Attr &hsm, Event &e)
{
(void)e;
return hsm.ignore();
}
private:
int find_path(StateHander t, StateHander s, StateHander path[SM_MAX_NEST_DEPTH])
{
int ip = -1;
int iq;
int ret;
/* (a) check source==target (transition to self) */
if( s == t)
{
exit(s);
ip = 0;
goto hsm_find_path_end;
}
trig(t, EMPTY_SIG);
t = m_temp;
/* (b) check source==target->super */
if( s == t )
{
ip = 0;
goto hsm_find_path_end;
}
trig(s, EMPTY_SIG);
/* (c) check source->super==target->super */
if(m_temp == t)
{
exit(s);
ip = 0;
goto hsm_find_path_end;
}
/* (d) check source->super==target */
if( m_temp == path[0] )
{
exit(s);
goto hsm_find_path_end;
}
/* (e) check rest of source==target->super->super..
* and store the entry path along the way
*/
ip = 1;
iq = 0;
path[1] = t;
t = m_temp;
/* find target->super->super... */
ret = trig(path[1], EMPTY_SIG);
while(RET_SUPER == ret)
{
path[++ip] = m_temp;
if(s == m_temp)
{
iq = 1;
SM_ASSERT(ip < SM_MAX_NEST_DEPTH);
ip--;
ret = RET_HANDLED;
}
else
{
ret = trig(m_temp, EMPTY_SIG);
}
}
/* the LCA not found yet? */
if(0 == iq)
{
SM_ASSERT(ip < SM_MAX_NEST_DEPTH);
exit(s);
/* (f) check the rest of source->super
* == target->super->super...
*/
iq = ip;
ret = RET_IGNORE; /* LCA NOT found */
do
{
s = path[iq];
/* is this the LCA? */
if(t == s)
{
ret = RET_HANDLED;
ip = iq - 1;
iq = -1;
}
else
{
iq--; /* try lower superstate of target */
}
}while(iq >= 0);
/* LCA not found? */
if( RET_HANDLED != ret )
{
/* (g) check each source->super->...
* for each target->super...
*/
ret = RET_IGNORE;
do
{
if(RET_HANDLED == exit(t))
{
trig(t, EMPTY_SIG);
}
t = m_temp;
iq = ip;
do
{
s = path[iq];
if( t == s)
{
ip = iq -1;
iq = -1;
ret = RET_HANDLED; /* break */
}
else
{
iq--;
}
}while(iq >= 0);
}while(RET_HANDLED != ret);
}
}
hsm_find_path_end:
return ip;
}
};
#endif // CONFIG_SM_HSM
} // end namespace
#endif