-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobserver.py
126 lines (87 loc) · 3.42 KB
/
observer.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
#!/usr/bin/env python3
# Copyright © 2012-13 Qtrac Ltd. All rights reserved.
# This program or module is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version. It is provided for
# educational purposes and is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
import datetime
import itertools
import sys
import time
def main():
historyView = HistoryView()
liveView = LiveView()
model = SliderModel(0, 0, 40) # minimum, value, maximum
model.observers_add(historyView, liveView) # liveView produces output
for value in (7, 23, 37):
model.value = value # liveView produces output
for value, timestamp in historyView.data:
print("{:3} {}".format(value, datetime.datetime.fromtimestamp(
timestamp)), file=sys.stderr)
class Observed:
def __init__(self):
self.__observers = set()
def observers_add(self, observer, *observers):
for observer in itertools.chain((observer,), observers):
self.__observers.add(observer)
observer.update(self)
def observer_discard(self, observer):
self.__observers.discard(observer)
def observers_notify(self):
for observer in self.__observers:
observer.update(self)
class SliderModel(Observed):
def __init__(self, minimum, value, maximum):
super().__init__()
# These must exist before using their property setters
self.__minimum = self.__value = self.__maximum = None
self.minimum = minimum
self.value = value
self.maximum = maximum
@property
def value(self):
return self.__value
@value.setter
def value(self, value):
if self.__value != value:
self.__value = value
self.observers_notify()
@property
def minimum(self):
return self.__minimum
@minimum.setter
def minimum(self, value):
if self.__minimum != value:
self.__minimum = value
self.observers_notify()
@property
def maximum(self):
return self.__maximum
@maximum.setter
def maximum(self, value):
if self.__maximum != value:
self.__maximum = value
self.observers_notify()
class HistoryView:
def __init__(self):
self.data = []
def update(self, model):
self.data.append((model.value, time.time()))
class LiveView:
def __init__(self, length=40):
self.length = length
def update(self, model):
tippingPoint = round(model.value * self.length /
(model.maximum - model.minimum))
td = '<td style="background-color: {}"> </td>'
html = ['<table style="font-family: monospace" border="0"><tr>']
html.extend(td.format("darkblue") * tippingPoint)
html.extend(td.format("cyan") * (self.length - tippingPoint))
html.append("<td>{}</td></tr></table>".format(model.value))
print("".join(html))
if __name__ == "__main__":
main()