| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
""" |
|---|
| 7 |
Event Dispatching and Callback utilities. |
|---|
| 8 |
""" |
|---|
| 9 |
|
|---|
| 10 |
from twisted.python import log |
|---|
| 11 |
from twisted.words.xish import xpath |
|---|
| 12 |
|
|---|
| 13 |
class _MethodWrapper(object): |
|---|
| 14 |
""" |
|---|
| 15 |
Internal class for tracking method calls. |
|---|
| 16 |
""" |
|---|
| 17 |
def __init__(self, method, *args, **kwargs): |
|---|
| 18 |
self.method = method |
|---|
| 19 |
self.args = args |
|---|
| 20 |
self.kwargs = kwargs |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
def __call__(self, *args, **kwargs): |
|---|
| 24 |
nargs = self.args + args |
|---|
| 25 |
nkwargs = self.kwargs.copy() |
|---|
| 26 |
nkwargs.update(kwargs) |
|---|
| 27 |
self.method(*nargs, **nkwargs) |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
class CallbackList: |
|---|
| 32 |
""" |
|---|
| 33 |
Container for callbacks. |
|---|
| 34 |
|
|---|
| 35 |
Event queries are linked to lists of callables. When a matching event |
|---|
| 36 |
occurs, these callables are called in sequence. One-time callbacks |
|---|
| 37 |
are removed from the list after the first time the event was triggered. |
|---|
| 38 |
|
|---|
| 39 |
Arguments to callbacks are split spread across two sets. The first set, |
|---|
| 40 |
callback specific, is passed to C{addCallback} and is used for all |
|---|
| 41 |
subsequent event triggers. The second set is passed to C{callback} and is |
|---|
| 42 |
event specific. Positional arguments in the second set come after the |
|---|
| 43 |
positional arguments of the first set. Keyword arguments in the second set |
|---|
| 44 |
override those in the first set. |
|---|
| 45 |
|
|---|
| 46 |
@ivar callbacks: The registered callbacks as mapping from the callable to a |
|---|
| 47 |
tuple of a wrapper for that callable that keeps the |
|---|
| 48 |
callback specific arguments and a boolean that signifies |
|---|
| 49 |
if it is to be called only once. |
|---|
| 50 |
@type callbacks: C{dict} |
|---|
| 51 |
""" |
|---|
| 52 |
|
|---|
| 53 |
def __init__(self): |
|---|
| 54 |
self.callbacks = {} |
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 |
def addCallback(self, onetime, method, *args, **kwargs): |
|---|
| 58 |
""" |
|---|
| 59 |
Add callback. |
|---|
| 60 |
|
|---|
| 61 |
The arguments passed are used as callback specific arguments. |
|---|
| 62 |
|
|---|
| 63 |
@param onetime: If C{True}, this callback is called at most once. |
|---|
| 64 |
@type onetime: C{bool} |
|---|
| 65 |
@param method: The callback callable to be added. |
|---|
| 66 |
@param args: Positional arguments to the callable. |
|---|
| 67 |
@type args: C{list} |
|---|
| 68 |
@param kwargs: Keyword arguments to the callable. |
|---|
| 69 |
@type kwargs: C{dict} |
|---|
| 70 |
""" |
|---|
| 71 |
|
|---|
| 72 |
if not method in self.callbacks: |
|---|
| 73 |
self.callbacks[method] = (_MethodWrapper(method, *args, **kwargs), |
|---|
| 74 |
onetime) |
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
def removeCallback(self, method): |
|---|
| 78 |
""" |
|---|
| 79 |
Remove callback. |
|---|
| 80 |
|
|---|
| 81 |
@param method: The callable to be removed. |
|---|
| 82 |
""" |
|---|
| 83 |
|
|---|
| 84 |
if method in self.callbacks: |
|---|
| 85 |
del self.callbacks[method] |
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
def callback(self, *args, **kwargs): |
|---|
| 89 |
""" |
|---|
| 90 |
Call all registered callbacks. |
|---|
| 91 |
|
|---|
| 92 |
The passed arguments are event specific and augment and override |
|---|
| 93 |
the callback specific arguments as described above. |
|---|
| 94 |
|
|---|
| 95 |
@note: Exceptions raised by callbacks are trapped and logged. They will |
|---|
| 96 |
not propagate up to make sure other callbacks will still be |
|---|
| 97 |
called, and the event dispatching allways succeeds. |
|---|
| 98 |
|
|---|
| 99 |
@param args: Positional arguments to the callable. |
|---|
| 100 |
@type args: C{list} |
|---|
| 101 |
@param kwargs: Keyword arguments to the callable. |
|---|
| 102 |
@type kwargs: C{dict} |
|---|
| 103 |
""" |
|---|
| 104 |
|
|---|
| 105 |
for key, (methodwrapper, onetime) in self.callbacks.items(): |
|---|
| 106 |
try: |
|---|
| 107 |
methodwrapper(*args, **kwargs) |
|---|
| 108 |
except: |
|---|
| 109 |
log.err() |
|---|
| 110 |
|
|---|
| 111 |
if onetime: |
|---|
| 112 |
del self.callbacks[key] |
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
def isEmpty(self): |
|---|
| 116 |
""" |
|---|
| 117 |
Return if list of registered callbacks is empty. |
|---|
| 118 |
|
|---|
| 119 |
@rtype: C{bool} |
|---|
| 120 |
""" |
|---|
| 121 |
|
|---|
| 122 |
return len(self.callbacks) == 0 |
|---|
| 123 |
|
|---|
| 124 |
|
|---|
| 125 |
|
|---|
| 126 |
class EventDispatcher: |
|---|
| 127 |
""" |
|---|
| 128 |
Event dispatching service. |
|---|
| 129 |
|
|---|
| 130 |
The C{EventDispatcher} allows observers to be registered for certain events |
|---|
| 131 |
that are dispatched. There are two types of events: XPath events and Named |
|---|
| 132 |
events. |
|---|
| 133 |
|
|---|
| 134 |
Every dispatch is triggered by calling L{dispatch} with a data object and, |
|---|
| 135 |
for named events, the name of the event. |
|---|
| 136 |
|
|---|
| 137 |
When an XPath type event is dispatched, the associated object is assumed to |
|---|
| 138 |
be an L{Element<twisted.words.xish.domish.Element>} instance, which is |
|---|
| 139 |
matched against all registered XPath queries. For every match, the |
|---|
| 140 |
respective observer will be called with the data object. |
|---|
| 141 |
|
|---|
| 142 |
A named event will simply call each registered observer for that particular |
|---|
| 143 |
event name, with the data object. Unlike XPath type events, the data object |
|---|
| 144 |
is not restricted to L{Element<twisted.words.xish.domish.Element>}, but can |
|---|
| 145 |
be anything. |
|---|
| 146 |
|
|---|
| 147 |
When registering observers, the event that is to be observed is specified |
|---|
| 148 |
using an L{xpath.XPathQuery} instance or a string. In the latter case, the |
|---|
| 149 |
string can also contain the string representation of an XPath expression. |
|---|
| 150 |
To distinguish these from named events, each named event should start with |
|---|
| 151 |
a special prefix that is stored in C{self.prefix}. It defaults to |
|---|
| 152 |
C{//event/}. |
|---|
| 153 |
|
|---|
| 154 |
Observers registered using L{addObserver} are persistent: after the |
|---|
| 155 |
observer has been triggered by a dispatch, it remains registered for a |
|---|
| 156 |
possible next dispatch. If instead L{addOnetimeObserver} was used to |
|---|
| 157 |
observe an event, the observer is removed from the list of observers after |
|---|
| 158 |
the first observed event. |
|---|
| 159 |
|
|---|
| 160 |
Obsevers can also prioritized, by providing an optional C{priority} |
|---|
| 161 |
parameter to the L{addObserver} and L{addOnetimeObserver} methods. Higher |
|---|
| 162 |
priority observers are then called before lower priority observers. |
|---|
| 163 |
|
|---|
| 164 |
Finally, observers can be unregistered by using L{removeObserver}. |
|---|
| 165 |
""" |
|---|
| 166 |
|
|---|
| 167 |
def __init__(self, eventprefix="//event/"): |
|---|
| 168 |
self.prefix = eventprefix |
|---|
| 169 |
self._eventObservers = {} |
|---|
| 170 |
self._xpathObservers = {} |
|---|
| 171 |
self._dispatchDepth = 0 |
|---|
| 172 |
|
|---|
| 173 |
self._updateQueue = [] |
|---|
| 174 |
|
|---|
| 175 |
|
|---|
| 176 |
def _getEventAndObservers(self, event): |
|---|
| 177 |
if isinstance(event, xpath.XPathQuery): |
|---|
| 178 |
|
|---|
| 179 |
observers = self._xpathObservers |
|---|
| 180 |
else: |
|---|
| 181 |
if self.prefix == event[:len(self.prefix)]: |
|---|
| 182 |
|
|---|
| 183 |
observers = self._eventObservers |
|---|
| 184 |
else: |
|---|
| 185 |
|
|---|
| 186 |
event = xpath.internQuery(event) |
|---|
| 187 |
observers = self._xpathObservers |
|---|
| 188 |
|
|---|
| 189 |
return event, observers |
|---|
| 190 |
|
|---|
| 191 |
|
|---|
| 192 |
def addOnetimeObserver(self, event, observerfn, priority=0, *args, **kwargs): |
|---|
| 193 |
""" |
|---|
| 194 |
Register a one-time observer for an event. |
|---|
| 195 |
|
|---|
| 196 |
Like L{addObserver}, but is only triggered at most once. See there |
|---|
| 197 |
for a description of the parameters. |
|---|
| 198 |
""" |
|---|
| 199 |
self._addObserver(True, event, observerfn, priority, *args, **kwargs) |
|---|
| 200 |
|
|---|
| 201 |
|
|---|
| 202 |
def addObserver(self, event, observerfn, priority=0, *args, **kwargs): |
|---|
| 203 |
""" |
|---|
| 204 |
Register an observer for an event. |
|---|
| 205 |
|
|---|
| 206 |
Each observer will be registered with a certain priority. Higher |
|---|
| 207 |
priority observers get called before lower priority observers. |
|---|
| 208 |
|
|---|
| 209 |
@param event: Name or XPath query for the event to be monitored. |
|---|
| 210 |
@type event: C{str} or L{xpath.XPathQuery}. |
|---|
| 211 |
@param observerfn: Function to be called when the specified event |
|---|
| 212 |
has been triggered. This callable takes |
|---|
| 213 |
one parameter: the data object that triggered |
|---|
| 214 |
the event. When specified, the C{*args} and |
|---|
| 215 |
C{**kwargs} parameters to addObserver are being used |
|---|
| 216 |
as additional parameters to the registered observer |
|---|
| 217 |
callable. |
|---|
| 218 |
@param priority: (Optional) priority of this observer in relation to |
|---|
| 219 |
other observer that match the same event. Defaults to |
|---|
| 220 |
C{0}. |
|---|
| 221 |
@type priority: C{int} |
|---|
| 222 |
""" |
|---|
| 223 |
self._addObserver(False, event, observerfn, priority, *args, **kwargs) |
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 |
def _addObserver(self, onetime, event, observerfn, priority, *args, **kwargs): |
|---|
| 227 |
|
|---|
| 228 |
|
|---|
| 229 |
if self._dispatchDepth > 0: |
|---|
| 230 |
self._updateQueue.append(lambda:self._addObserver(onetime, event, observerfn, priority, *args, **kwargs)) |
|---|
| 231 |
return |
|---|
| 232 |
|
|---|
| 233 |
event, observers = self._getEventAndObservers(event) |
|---|
| 234 |
|
|---|
| 235 |
if priority not in observers: |
|---|
| 236 |
cbl = CallbackList() |
|---|
| 237 |
observers[priority] = {event: cbl} |
|---|
| 238 |
else: |
|---|
| 239 |
priorityObservers = observers[priority] |
|---|
| 240 |
if event not in priorityObservers: |
|---|
| 241 |
cbl = CallbackList() |
|---|
| 242 |
observers[priority][event] = cbl |
|---|
| 243 |
else: |
|---|
| 244 |
cbl = priorityObservers[event] |
|---|
| 245 |
|
|---|
| 246 |
cbl.addCallback(onetime, observerfn, *args, **kwargs) |
|---|
| 247 |
|
|---|
| 248 |
|
|---|
| 249 |
def removeObserver(self, event, observerfn): |
|---|
| 250 |
""" |
|---|
| 251 |
Remove callable as observer for an event. |
|---|
| 252 |
|
|---|
| 253 |
The observer callable is removed for all priority levels for the |
|---|
| 254 |
specified event. |
|---|
| 255 |
|
|---|
| 256 |
@param event: Event for which the observer callable was registered. |
|---|
| 257 |
@type event: C{str} or L{xpath.XPathQuery} |
|---|
| 258 |
@param observerfn: Observer callable to be unregistered. |
|---|
| 259 |
""" |
|---|
| 260 |
|
|---|
| 261 |
|
|---|
| 262 |
|
|---|
| 263 |
if self._dispatchDepth > 0: |
|---|
| 264 |
self._updateQueue.append(lambda:self.removeObserver(event, observerfn)) |
|---|
| 265 |
return |
|---|
| 266 |
|
|---|
| 267 |
event, observers = self._getEventAndObservers(event) |
|---|
| 268 |
|
|---|
| 269 |
emptyLists = [] |
|---|
| 270 |
for priority, priorityObservers in observers.iteritems(): |
|---|
| 271 |
for query, callbacklist in priorityObservers.iteritems(): |
|---|
| 272 |
if event == query: |
|---|
| 273 |
callbacklist.removeCallback(observerfn) |
|---|
| 274 |
if callbacklist.isEmpty(): |
|---|
| 275 |
emptyLists.append((priority, query)) |
|---|
| 276 |
|
|---|
| 277 |
for priority, query in emptyLists: |
|---|
| 278 |
del observers[priority][query] |
|---|
| 279 |
|
|---|
| 280 |
|
|---|
| 281 |
def dispatch(self, obj, event=None): |
|---|
| 282 |
""" |
|---|
| 283 |
Dispatch an event. |
|---|
| 284 |
|
|---|
| 285 |
When C{event} is C{None}, an XPath type event is triggered, and |
|---|
| 286 |
C{obj} is assumed to be an instance of |
|---|
| 287 |
L{Element<twisted.words.xish.domish.Element>}. Otherwise, C{event} |
|---|
| 288 |
holds the name of the named event being triggered. In the latter case, |
|---|
| 289 |
C{obj} can be anything. |
|---|
| 290 |
|
|---|
| 291 |
@param obj: The object to be dispatched. |
|---|
| 292 |
@param event: Optional event name. |
|---|
| 293 |
@type event: C{str} |
|---|
| 294 |
""" |
|---|
| 295 |
|
|---|
| 296 |
foundTarget = False |
|---|
| 297 |
|
|---|
| 298 |
self._dispatchDepth += 1 |
|---|
| 299 |
|
|---|
| 300 |
if event != None: |
|---|
| 301 |
|
|---|
| 302 |
observers = self._eventObservers |
|---|
| 303 |
match = lambda query, obj: query == event |
|---|
| 304 |
else: |
|---|
| 305 |
|
|---|
| 306 |
observers = self._xpathObservers |
|---|
| 307 |
match = lambda query, obj: query.matches(obj) |
|---|
| 308 |
|
|---|
| 309 |
priorities = observers.keys() |
|---|
| 310 |
priorities.sort() |
|---|
| 311 |
priorities.reverse() |
|---|
| 312 |
|
|---|
| 313 |
emptyLists = [] |
|---|
| 314 |
for priority in priorities: |
|---|
| 315 |
for query, callbacklist in observers[priority].iteritems(): |
|---|
| 316 |
if match(query, obj): |
|---|
| 317 |
callbacklist.callback(obj) |
|---|
| 318 |
foundTarget = True |
|---|
| 319 |
if callbacklist.isEmpty(): |
|---|
| 320 |
emptyLists.append((priority, query)) |
|---|
| 321 |
|
|---|
| 322 |
for priority, query in emptyLists: |
|---|
| 323 |
del observers[priority][query] |
|---|
| 324 |
|
|---|
| 325 |
self._dispatchDepth -= 1 |
|---|
| 326 |
|
|---|
| 327 |
|
|---|
| 328 |
|
|---|
| 329 |
|
|---|
| 330 |
if self._dispatchDepth == 0: |
|---|
| 331 |
|
|---|
| 332 |
for f in self._updateQueue: |
|---|
| 333 |
f() |
|---|
| 334 |
self._updateQueue = [] |
|---|
| 335 |
|
|---|
| 336 |
return foundTarget |
|---|
| 337 |
|
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
class XmlPipe(object): |
|---|
| 341 |
""" |
|---|
| 342 |
XML stream pipe. |
|---|
| 343 |
|
|---|
| 344 |
Connects two objects that communicate stanzas through an XML stream like |
|---|
| 345 |
interface. Each of the ends of the pipe (sink and source) can be used to |
|---|
| 346 |
send XML stanzas to the other side, or add observers to process XML stanzas |
|---|
| 347 |
that were sent from the other side. |
|---|
| 348 |
|
|---|
| 349 |
XML pipes are usually used in place of regular XML streams that are |
|---|
| 350 |
transported over TCP. This is the reason for the use of the names source |
|---|
| 351 |
and sink for both ends of the pipe. The source side corresponds with the |
|---|
| 352 |
entity that initiated the TCP connection, whereas the sink corresponds with |
|---|
| 353 |
the entity that accepts that connection. In this object, though, the source |
|---|
| 354 |
and sink are treated equally. |
|---|
| 355 |
|
|---|
| 356 |
Unlike Jabber |
|---|
| 357 |
L{XmlStream<twisted.words.protocols.jabber.xmlstream.XmlStream>}s, the sink |
|---|
| 358 |
and source objects are assumed to represent an eternal connected and |
|---|
| 359 |
initialized XML stream. As such, events corresponding to connection, |
|---|
| 360 |
disconnection, initialization and stream errors are not dispatched or |
|---|
| 361 |
processed. |
|---|
| 362 |
|
|---|
| 363 |
@since: 8.2 |
|---|
| 364 |
@ivar source: Source XML stream. |
|---|
| 365 |
@ivar sink: Sink XML stream. |
|---|
| 366 |
""" |
|---|
| 367 |
|
|---|
| 368 |
def __init__(self): |
|---|
| 369 |
self.source = EventDispatcher() |
|---|
| 370 |
self.sink = EventDispatcher() |
|---|
| 371 |
self.source.send = lambda obj: self.sink.dispatch(obj) |
|---|
| 372 |
self.sink.send = lambda obj: self.source.dispatch(obj) |
|---|