forked from kmarkus/rFSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rfsm_emem.lua
87 lines (74 loc) · 2.48 KB
/
rfsm_emem.lua
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
--- rFSM event memory extension.
--
-- (C) 2010-2013 Markus Klotzbuecher <[email protected]>
-- (C) 2014-2020 Markus Klotzbuecher <[email protected]>
--
-- SPDX-License-Identifier: BSD-3-Clause
--
--
-- This extension adds "memory" of occured events to an rFSM
-- chart. This is done maintaining a table <code>emem</code> for every
-- state. The <code>emem</code> table is cleared when a state is
-- exited by setting all values to 0.
--
-- Implementationwise a pre_step handler is installed that runs
-- through the current active list and for each state sets
-- emem[event]+=1. Moreover, the exit function is extended to clear
-- the emem table of the state that is left. Event memory will
-- automatically be used when this module is loaded. The only public
-- function is <code>rfsm_emem.emem_reset>, which can be used to
-- manually reset the event counters of the given state.
--
local rfsm = require("rfsm")
local print, ipairs, pairs = print, ipairs, pairs
module 'rfsm_emem'
--- Reset the event memory of a state
-- @param state the state of which memory shall be cleared.
function emem_reset(s)
local et = s.emem
if et then
for e,x in pairs(et) do et[e] = 0 end
end
end
--- Update all emem tables with the current events.
-- This function expects to be called from pre_step_hook.
-- @param fsm initialized root fsm
-- @param events table of events
local function update_emem_tabs(fsm, events)
local function update_emem_tab(fsm, s)
local et = s.emem
for i,e in ipairs(events) do
if not et[e] then et[e] = 1
else et[e]=et[e] + 1 end
end
end
if fsm._act_leaf then
rfsm.map_from_to(fsm, update_emem_tab, fsm._act_leaf, fsm)
end
end
--- Setup event memory for the given fsm.
-- @param fsm initialized root fsm.
local function setup_emem(fsm)
fsm.info("rfsm_emem: event memory extension loaded")
-- create emem tables
rfsm.mapfsm(function (s, p)
s.emem={}
end, fsm, rfsm.is_state)
-- install pre_step_hook
rfsm.pre_step_hook_add(fsm, update_emem_tabs)
-- clear emem counters in exit hooks
-- todo: this should also happen for root!
rfsm.mapfsm(function (s, p)
if s.exit then
local oldexit = s.exit
s.exit = function (fsm, state, type)
oldexit(fsm, state, type)
emem_reset(state)
end
else
s.exit = function (fsm, state, type) emem_reset(state) end
end
end, fsm, rfsm.is_state)
end
-- install setup_emem as preproc hook
rfsm.preproc[#rfsm.preproc+1] = setup_emem