33
37
urwid.curses_display.curses.A_UNDERLINE |= (
34
38
urwid.curses_display.curses.A_BLINK)
40
def isoformat_to_datetime(iso):
41
"Parse an ISO 8601 date string to a datetime.datetime()"
44
d, t = iso.split(u"T", 1)
45
year, month, day = d.split(u"-", 2)
46
hour, minute, second = t.split(u":", 2)
47
second, fraction = divmod(float(second), 1)
48
return datetime.datetime(int(year),
53
int(second), # Whole seconds
54
int(fraction*1000000)) # Microseconds
36
56
class MandosClientPropertyCache(object):
37
57
"""This wraps a Mandos Client D-Bus proxy object, caches the
38
58
properties and calls a hook function when any of them are
41
def __init__(self, proxy_object=None, properties=None, *args,
61
def __init__(self, proxy_object=None, *args, **kwargs):
43
62
self.proxy = proxy_object # Mandos Client proxy object
45
if properties is None:
46
self.properties = dict()
48
self.properties = properties
64
self.properties = dict()
49
65
self.proxy.connect_to_signal(u"PropertyChanged",
50
66
self.property_changed,
54
if properties is None:
55
self.properties.update(self.proxy.GetAll(client_interface,
57
dbus.PROPERTIES_IFACE))
70
self.properties.update(
71
self.proxy.GetAll(client_interface,
72
dbus_interface = dbus.PROPERTIES_IFACE))
58
73
super(MandosClientPropertyCache, self).__init__(
59
proxy_object=proxy_object,
60
properties=properties, *args, **kwargs)
74
proxy_object=proxy_object, *args, **kwargs)
62
76
def property_changed(self, property=None, value=None):
63
77
"""This is called whenever we get a PropertyChanged signal
108
125
client_interface,
109
126
byte_arrays=True)
127
last_checked_ok = isoformat_to_datetime(self.properties
129
if last_checked_ok is None:
130
self.last_checker_failed = True
132
self.last_checker_failed = ((datetime.datetime.utcnow()
136
self.properties["interval"]))
137
if self.last_checker_failed:
138
self._update_timer_callback_tag = (gobject.timeout_add
111
142
def checker_completed(self, exitstatus, condition, command):
112
143
if exitstatus == 0:
144
if self.last_checker_failed:
145
self.last_checker_failed = False
146
gobject.source_remove(self._update_timer_callback_tag)
147
self._update_timer_callback_tag = None
113
148
self.logger(u'Checker for client %s (command "%s")'
114
149
u' was successful'
115
150
% (self.properties[u"name"], command))
154
if not self.last_checker_failed:
155
self.last_checker_failed = True
156
self._update_timer_callback_tag = (gobject.timeout_add
117
159
if os.WIFEXITED(condition):
118
160
self.logger(u'Checker for client %s (command "%s")'
119
161
u' failed with exit code %s'
120
162
% (self.properties[u"name"], command,
121
163
os.WEXITSTATUS(condition)))
123
if os.WIFSIGNALED(condition):
164
elif os.WIFSIGNALED(condition):
124
165
self.logger(u'Checker for client %s (command "%s")'
125
166
u' was killed by signal %s'
126
167
% (self.properties[u"name"], command,
127
168
os.WTERMSIG(condition)))
129
if os.WCOREDUMP(condition):
169
elif os.WCOREDUMP(condition):
130
170
self.logger(u'Checker for client %s (command "%s")'
132
172
% (self.properties[u"name"], command))
133
self.logger(u'Checker for client %s completed mysteriously')
174
self.logger(u'Checker for client %s completed mysteriously')
135
177
def checker_started(self, command):
136
178
self.logger(u'Client %s started checker "%s"'
174
216
# Rebuild focus and non-focus widgets using current properties
175
self._text = (u'%(name)s: %(enabled)s'
217
self._text = (u'%(name)s: %(enabled)s%(timer)s'
176
218
% { u"name": self.properties[u"name"],
179
221
if self.properties[u"enabled"]
223
u"timer": (unicode(datetime.timedelta
229
- isoformat_to_datetime
230
(max((self.properties
235
self.properties[u"last_enabled"]))))
236
if (self.last_checker_failed
181
240
if not urwid.supports_unicode():
182
241
self._text = self._text.encode("ascii", "replace")
183
242
textlist = [(u"normal", self._text)]
194
253
if self.update_hook is not None:
195
254
self.update_hook()
256
def update_timer(self):
259
return True # Keep calling this
197
261
def delete(self):
262
if self._update_timer_callback_tag is not None:
263
gobject.source_remove(self._update_timer_callback_tag)
264
self._update_timer_callback_tag = None
198
265
if self.delete_hook is not None:
199
266
self.delete_hook(self)
425
492
self.remove_client(client, path)
427
def add_new_client(self, path, properties):
494
def add_new_client(self, path):
428
495
client_proxy_object = self.bus.get_object(self.busname, path)
429
496
self.add_client(MandosClientWidget(server_proxy_object
430
497
=self.mandos_serv,
432
499
=client_proxy_object,
433
properties=properties,
437
=self.remove_client),
440
508
def add_client(self, client, path=None):