forked from nrodofile/ScapyDNP3_lib
-
Notifications
You must be signed in to change notification settings - Fork 6
/
FSM.py
74 lines (50 loc) · 1.49 KB
/
FSM.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
__author__ = "David Olano"
''' Finite State Machine used in the alarm system '''
import datetime
def alarm_FSM(previous_state, alarm):
if previous_state == "Low":
current_state = low_transition(alarm)
elif previous_state == "Medium":
current_state = medium_transition(alarm)
elif previous_state == "High":
current_state = high_transition(alarm)
elif previous_state == "Critical":
current_state = critical_transition(alarm)
else:
print 'Critical error. Not valid alarm status!'
sys.exit()
print 'EVENT:\tCurrent alarm status is:', \
current_state, '\t', datetime.datetime.now()
return current_state
def low_transition(alarm):
if alarm == 'rise':
newState = "Medium"
elif alarm == 'decrease':
newState = "Low"
else:
newState = "error_state"
return newState
def medium_transition(alarm):
if alarm == 'rise':
newState = "High"
elif alarm == 'decrease':
newState = "Low"
else:
newState = "error_state"
return newState
def high_transition(alarm):
if alarm == 'rise':
newState = "Critical"
elif alarm == 'decrease':
newState = "Medium"
else:
newState = "error_state"
return newState
def critical_transition(alarm):
if alarm == 'rise':
newState = "Critical"
elif alarm == 'decrease':
newState = "High"
else:
newState = "error_state"
return newState