X-Git-Url: https://git.ralfj.de/saartuer.git/blobdiff_plain/9a0250c32f71db043dc1690be985d92459a3dbff..56645e3cebe9fd8a49c60d1e7969fe6754625dfd:/waker.py diff --git a/waker.py b/waker.py index 7b212a1..79eff81 100644 --- a/waker.py +++ b/waker.py @@ -1,13 +1,43 @@ from libtuer import ThreadRepeater -from statemachine import StateMachine +from threading import Lock + +SLEEP_TIME = 0.5 + +class ToBeWoken: + '''a simple struct storing information about a to-be-woken function''' + def __init__(self, f, period, one_shot): + self.f = f + self.period = period + self.time_since_call = 0 + self.one_shot = one_shot class Waker(): - def __init__(self, sm): - self._sm = sm - self._t = ThreadRepeater(self._wake, 0.5, name="Waker") + def __init__(self): + self._tobewokens = [] + self._tobewokens_lock = Lock() + self._t = ThreadRepeater(self._wake, SLEEP_TIME, name="Waker") + + def register(self, f, time, one_shot = False): + '''Register a function which is called approximately every