37
37
urwid.curses_display.curses.A_UNDERLINE |= (
38
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
56
40
class MandosClientPropertyCache(object):
57
41
"""This wraps a Mandos Client D-Bus proxy object, caches the
58
42
properties and calls a hook function when any of them are
97
81
self.logger = logger
99
self._update_timer_callback_tag = None
100
self.last_checker_failed = False
102
83
# The widget shown normally
103
84
self._text_widget = urwid.Text(u"")
104
85
# The widget shown when we have focus
125
106
client_interface,
126
107
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
142
109
def checker_completed(self, exitstatus, condition, command):
143
110
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
148
111
self.logger(u'Checker for client %s (command "%s")'
149
112
u' was successful'
150
113
% (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
159
115
if os.WIFEXITED(condition):
160
116
self.logger(u'Checker for client %s (command "%s")'
161
117
u' failed with exit code %s'
162
118
% (self.properties[u"name"], command,
163
119
os.WEXITSTATUS(condition)))
164
elif os.WIFSIGNALED(condition):
121
if os.WIFSIGNALED(condition):
165
122
self.logger(u'Checker for client %s (command "%s")'
166
123
u' was killed by signal %s'
167
124
% (self.properties[u"name"], command,
168
125
os.WTERMSIG(condition)))
169
elif os.WCOREDUMP(condition):
127
if os.WCOREDUMP(condition):
170
128
self.logger(u'Checker for client %s (command "%s")'
172
130
% (self.properties[u"name"], command))
174
self.logger(u'Checker for client %s completed mysteriously')
131
self.logger(u'Checker for client %s completed mysteriously')
177
133
def checker_started(self, command):
178
134
self.logger(u'Client %s started checker "%s"'
216
172
# Rebuild focus and non-focus widgets using current properties
217
self._text = (u'%(name)s: %(enabled)s%(timer)s'
173
self._text = (u'%(name)s: %(enabled)s'
218
174
% { u"name": self.properties[u"name"],
221
177
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
240
179
if not urwid.supports_unicode():
241
180
self._text = self._text.encode("ascii", "replace")
242
181
textlist = [(u"normal", self._text)]
253
192
if self.update_hook is not None:
254
193
self.update_hook()
256
def update_timer(self):
259
return True # Keep calling this
261
195
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
265
196
if self.delete_hook is not None:
266
197
self.delete_hook(self)