forked from howard-chan/HSM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hsm.py
135 lines (121 loc) · 5.25 KB
/
hsm.py
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
"""
The MIT License (MIT)
Copyright (c) 2015-2018 Howard Chan
https://github.com/howard-chan/HSM
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
# HSM Class in Python
# H.Chan
class HSM_Event:
INIT, ENTRY, EXIT, FIRST = range(1, 5)
class HSM(object):
class State:
"""This is a state class used internally"""
def __init__(self, name, handler, parent=None):
"""Creates a state instance"""
self.level = 0 # depth level of the state
self.name = name # name of state
self.handler = handler # associated event handler for state
self.parent = parent # parent state
if isinstance(parent, HSM.State):
self.level = parent.level + 1
elif parent != None:
print "Raise exception here: The parent is not a State"
raise "Raise exception here: The parent is not a State"
def __RootHandler(self, event):
print "\tUnhandled event:%s %s[%s]" % (event, self.name, self.curState)
raise "Unhandled event"
return None
def __init__(self, name=""):
"""Creates the HSM instance"""
self.name = name
self.hsmDebug = False
self.stateRoot = self.State(":root:", self.__RootHandler)
self.curState = self.stateRoot
def CreateState(self, name, handler, parent=None):
"""This adds a state to the HSM"""
if parent == None:
parent = self.stateRoot
return self.State(name, handler, parent)
def SetInitState(self, initState):
"""This sets the initial HSM state"""
if isinstance(initState, self.State):
self.curState = initState
else:
print "This is not a HSM State"
def GetState(self):
"""This returns the current HSM state"""
return self.curState
def Run(self, event = None):
"""This runs the state's event handler and forwards unhandled events to
the parent state"""
state = self.curState
if self.hsmDebug:
pass
print "Run %s[%s](evt:%s)" % (self.name, state.name, event)
while event:
event = state.handler(event)
state = state.parent
if self.hsmDebug and event:
print " evt:%s unhandled, passing to %s[%s]" % (event, self.name, state.name)
def Tran(self, nextState, method = None):
"""This performs the state transition with calls of exit, entry and init
Bulk of the work handles the exit and entry event during transitions"""
if self.hsmDebug:
print "Tran %s[%s -> %s]" % (self.name, self.curState.name, nextState.name)
# 1) Find the lowest common parent state
src = self.curState
dst = nextState
list_exit = []
list_entry = []
# 1a) Equalize the levels
while (src.level != dst.level):
if (src.level > dst.level):
#source is deeper
list_exit = list_exit + [src]
src = src.parent
else:
#destination is deeper
list_entry = [dst] + list_entry
dst = dst.parent
# 1b) find the common parent
while (src != dst):
list_exit = list_exit + [src]
src = src.parent
list_entry = [dst] + list_entry
dst = dst.parent
# 2) Process all the exit events
#TODO: Add check to ensure "Tran()" not called on exit
for src in list_exit:
if self.hsmDebug:
print " %s[%s](%s)" % (self.name, src.name, "EXIT")
src.handler(HSM_Event.EXIT)
# 3) Call the transitional method
if method and hasattr(method, '__call__'):
method()
# 4) Process all the entry events
#TODO: Add check to ensure "Tran()" not called on entry
for dst in list_entry:
if self.hsmDebug:
print " %s[%s](%s)" % (self.name, dst.name, "ENTRY")
dst.handler(HSM_Event.ENTRY)
#5) Now we can set the destination state
self.curState = nextState
#6) Invoke INIT signal
if self.hsmDebug:
print " %s[%s](%s)" % (self.name, nextState.name, "INIT")
self.curState.handler(HSM_Event.INIT)