3 changed files with 87 additions and 65 deletions
@ -0,0 +1,67 @@ |
|||||
|
from collections import defaultdict |
||||
|
import gevent |
||||
|
from gevent.event import AsyncResult |
||||
|
|
||||
|
|
||||
|
class EventEmitter(object): |
||||
|
""" |
||||
|
Implements event emitter using gevent library |
||||
|
""" |
||||
|
|
||||
|
def emit(self, event, *args): |
||||
|
""" |
||||
|
Emit event with some arguments |
||||
|
""" |
||||
|
|
||||
|
if not hasattr(self, '_event_callbacks'): |
||||
|
return |
||||
|
|
||||
|
for callback in list(self._event_callbacks[event]): |
||||
|
if isinstance(callback, AsyncResult): |
||||
|
self.remove_listener(event, callback) |
||||
|
|
||||
|
if len(args) == 1: |
||||
|
args = args[0] |
||||
|
|
||||
|
callback.set(args) |
||||
|
else: |
||||
|
gevent.spawn(callback, *args) |
||||
|
|
||||
|
def remove_listener(self, event, callback): |
||||
|
""" |
||||
|
Removes a callback for the specified event |
||||
|
""" |
||||
|
|
||||
|
if not hasattr(self, '_event_callbacks'): |
||||
|
return |
||||
|
|
||||
|
self._event_callbacks[event].pop(callback, None) |
||||
|
|
||||
|
def wait_event(self, event, timeout=None): |
||||
|
""" |
||||
|
Blocks until an event and returns the results |
||||
|
""" |
||||
|
result = AsyncResult() |
||||
|
self.on(event, result) |
||||
|
return result.get(True, timeout) |
||||
|
|
||||
|
def on(self, event, callback=None): |
||||
|
""" |
||||
|
Registers a callback for the specified event |
||||
|
|
||||
|
Can be as function decorator if only event is specified. |
||||
|
""" |
||||
|
|
||||
|
if not hasattr(self, '_event_callbacks'): |
||||
|
self._event_callbacks = defaultdict(dict) |
||||
|
|
||||
|
# when used function |
||||
|
if callback: |
||||
|
self._event_callbacks[event][callback] = None |
||||
|
return |
||||
|
|
||||
|
# as decorator |
||||
|
def wrapper(callback): |
||||
|
self._event_callbacks[event][callback] = None |
||||
|
return callback |
||||
|
return wrapper |
Loading…
Reference in new issue