Fixing stopping before starting of state machine
[theonering] / src / gvoice / state_machine.py
1 #!/usr/bin/env python
2
3 """
4 @todo Look into switching from POLL_TIME = min(F * 2^n, MAX) to POLL_TIME = min(CONST + F * 2^n, MAX)
5 @todo Look into supporting more states that have a different F and MAX
6 """
7
8 import logging
9
10 import gobject
11
12 import util.go_utils as gobject_utils
13 import util.coroutines as coroutines
14 import gtk_toolbox
15
16
17 _moduleLogger = logging.getLogger("gvoice.state_machine")
18
19
20 def _to_milliseconds(**kwd):
21         if "milliseconds" in kwd:
22                 return kwd["milliseconds"]
23         elif "seconds" in kwd:
24                 return kwd["seconds"] * 1000
25         elif "minutes" in kwd:
26                 return kwd["minutes"] * 1000 * 60
27         raise KeyError("Unknown arg: %r" % kwd)
28
29
30 class StateMachine(object):
31
32         STATE_ACTIVE = 0, "active"
33         STATE_IDLE = 1, "idle"
34         STATE_DND = 2, "dnd"
35
36         _ACTION_UPDATE = "update"
37         _ACTION_RESET = "reset"
38         _ACTION_STOP = "stop"
39
40         _INITIAL_ACTIVE_PERIOD = int(_to_milliseconds(seconds=10))
41         _FINAL_ACTIVE_PERIOD = int(_to_milliseconds(minutes=10))
42         _IDLE_PERIOD = int(_to_milliseconds(minutes=30))
43         _INFINITE_PERIOD = -1
44
45         _IS_DAEMON = True
46
47         def __init__(self, initItems, updateItems):
48                 self._initItems = initItems
49                 self._updateItems = updateItems
50
51                 self._state = self.STATE_ACTIVE
52                 self._startId = None
53                 self._timeoutId = None
54                 self._currentPeriod = self._INITIAL_ACTIVE_PERIOD
55                 self._set_initial_period()
56
57                 self._callback = coroutines.func_sink(
58                         coroutines.expand_positional(
59                                 self._request_reset_timers
60                         )
61                 )
62
63         def close(self):
64                 self._callback = None
65
66         def start(self):
67                 assert self._startId is None
68                 self._startId = gobject.idle_add(self._start)
69
70         def stop(self):
71                 if self._startId is not None:
72                         _moduleLogger.info("Stopping state machine before it even had a chance to start")
73                         gobject.source_remove(self._startId)
74                         self._startId = None
75                 self._stop_update()
76
77         def set_state(self, newState):
78                 oldState = self._state
79                 _moduleLogger.info("Transitioning from %s to %s" % (oldState, newState))
80
81                 self._state = newState
82                 self.reset_timers()
83
84         def get_state(self):
85                 return self._state
86
87         def reset_timers(self):
88                 self._reset_timers()
89
90         @property
91         def request_reset_timers(self):
92                 return self._callback
93
94         @gobject_utils.async
95         @gtk_toolbox.log_exception(_moduleLogger)
96         def _request_reset_timers(self, *args):
97                 self.reset_timers()
98
99         def _set_initial_period(self):
100                 self._currentPeriod = self._INITIAL_ACTIVE_PERIOD / 2 # We will double it later
101
102         def _schedule_update(self):
103                 assert self._timeoutId is None
104                 nextTimeout = self._calculate_step(self._state, self._currentPeriod)
105                 nextTimeout = int(nextTimeout)
106                 if nextTimeout != self._INFINITE_PERIOD:
107                         self._timeoutId = gobject.timeout_add(nextTimeout, self._on_timeout)
108                 _moduleLogger.info("Next update in %s ms" % (nextTimeout, ))
109                 self._currentPeriod = nextTimeout
110
111         def _start(self):
112                 _moduleLogger.info("Starting State Machine")
113                 for item in self._initItems:
114                         try:
115                                 item.update()
116                         except Exception:
117                                 _moduleLogger.exception("Initial update failed for %r" % item)
118                 self._schedule_update()
119                 self._startId = None
120                 return False # do not continue
121
122         def _stop_update(self):
123                 if self._timeoutId is None:
124                         _moduleLogger.info("Stopping an already stopped state machine")
125                         return
126                 gobject.source_remove(self._timeoutId)
127                 self._timeoutId = None
128
129         def _reset_timers(self):
130                 if self._timeoutId is None:
131                         return # not started yet
132                 self._stop_update()
133                 self._set_initial_period()
134                 self._schedule_update()
135
136         def _on_timeout(self):
137                 _moduleLogger.info("Update")
138                 for item in self._updateItems:
139                         try:
140                                 item.update(force=True)
141                         except Exception:
142                                 _moduleLogger.exception("Update failed for %r" % item)
143                 self._timeoutId = None
144                 self._schedule_update()
145                 return False # do not continue
146
147         @classmethod
148         def _calculate_step(cls, state, period):
149                 if state == cls.STATE_ACTIVE:
150                         return min(period * 2, cls._FINAL_ACTIVE_PERIOD)
151                 elif state == cls.STATE_IDLE:
152                         return cls._IDLE_PERIOD
153                 elif state == cls.STATE_DND:
154                         return cls._INFINITE_PERIOD
155                 else:
156                         raise RuntimeError("Unknown state: %r" % (state, ))