This repository was archived by the owner on Mar 26, 2025. It is now read-only.
forked from aosabook/500lines
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathmember.py
48 lines (34 loc) · 1.38 KB
/
member.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
import logging
class Member(object): # TODO: rename
def __init__(self, node):
self.node = node
self.address = self.node.address
self.components = []
def register(self, component):
self.components.append(component)
self.node.register(component)
def unregister(self, component):
self.components.remove(component)
self.node.unregister(component)
def event(self, message, **kwargs):
method = 'on_' + message + '_event'
for comp in self.components:
if hasattr(comp, method):
getattr(comp, method)(**kwargs)
class Component(object): # TODO: rename
def __init__(self, member):
self.member = member
self.member.register(self)
self.address = member.address
self.logger = logging.getLogger("%s.%s" % (self.address, self.__class__.__name__))
def event(self, message, **kwargs):
self.member.event(message, **kwargs)
def send(self, destinations, action, **kwargs):
self.member.node.send(destinations, action, **kwargs)
def set_timer(self, seconds, callable):
# TODO: refactor to attach timer to this component, not address
return self.member.node.set_timer(seconds, callable)
def cancel_timer(self, timer):
self.member.node.cancel_timer(timer)
def stop(self):
self.member.unregister(self)