-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SDESK-7386] Support async app.on_ events
- Loading branch information
1 parent
d4b5288
commit 51593bc
Showing
10 changed files
with
174 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
Events | ||
~~~~~~ | ||
Implements C#-Style Events. | ||
Derived from the original work by Zoran Isailovski: | ||
http://code.activestate.com/recipes/410686/ - Copyright (c) 2005 | ||
Code copied from original Events library into this library, to support async | ||
https://github.com/pyeve/events | ||
:copyright: (c) 2014-2017 by Nicola Iarocci. | ||
:license: BSD, see LICENSE for more details. | ||
""" | ||
|
||
from inspect import iscoroutinefunction | ||
|
||
|
||
class EventsException(Exception): | ||
pass | ||
|
||
|
||
class Events: | ||
""" | ||
Encapsulates the core to event subscription and event firing, and feels | ||
like a "natural" part of the language. | ||
The class Events is there mainly for 3 reasons: | ||
- Events (Slots) are added automatically, so there is no need to | ||
declare/create them separately. This is great for prototyping. (Note | ||
that `__events__` is optional and should primarilly help detect | ||
misspelled event names.) | ||
- To provide (and encapsulate) some level of introspection. | ||
- To "steel the name" and hereby remove unneeded redundancy in a call | ||
like: | ||
xxx.OnChange = event('OnChange') | ||
""" | ||
def __init__(self, events=None): | ||
|
||
if events is not None: | ||
|
||
try: | ||
for _ in events: | ||
break | ||
except: | ||
raise AttributeError("type object %s is not iterable" % | ||
(type(events))) | ||
else: | ||
self.__events__ = events | ||
|
||
def __getattr__(self, name): | ||
if name.startswith('__'): | ||
raise AttributeError("type object '%s' has no attribute '%s'" % | ||
(self.__class__.__name__, name)) | ||
|
||
if hasattr(self, '__events__'): | ||
if name not in self.__events__: | ||
raise EventsException("Event '%s' is not declared" % name) | ||
|
||
elif hasattr(self.__class__, '__events__'): | ||
if name not in self.__class__.__events__: | ||
raise EventsException("Event '%s' is not declared" % name) | ||
|
||
self.__dict__[name] = ev = _EventSlot(name) | ||
return ev | ||
|
||
def __repr__(self): | ||
return '<%s.%s object at %s>' % (self.__class__.__module__, | ||
self.__class__.__name__, | ||
hex(id(self))) | ||
|
||
__str__ = __repr__ | ||
|
||
def __len__(self): | ||
return len(self.__dict__.items()) | ||
|
||
def __iter__(self): | ||
def gen(dictitems=self.__dict__.items()): | ||
for attr, val in dictitems: | ||
if isinstance(val, _EventSlot): | ||
yield val | ||
return gen() | ||
|
||
|
||
class _EventSlot: | ||
def __init__(self, name): | ||
self.targets = [] | ||
self.__name__ = name | ||
|
||
def __repr__(self): | ||
return "event '%s'" % self.__name__ | ||
|
||
def __call__(self, *a, **kw): | ||
for f in tuple(self.targets): | ||
f(*a, **kw) | ||
|
||
async def call_async(self, *a, **kw): | ||
for f in tuple(self.targets): | ||
if iscoroutinefunction(f): | ||
await f(*a, **kw) | ||
else: | ||
f(*a, **kw) | ||
|
||
def __iadd__(self, f): | ||
self.targets.append(f) | ||
return self | ||
|
||
def __isub__(self, f): | ||
while f in self.targets: | ||
self.targets.remove(f) | ||
return self | ||
|
||
def __len__(self): | ||
return len(self.targets) | ||
|
||
def __iter__(self): | ||
def gen(): | ||
for target in self.targets: | ||
yield target | ||
return gen() | ||
|
||
def __getitem__(self, key): | ||
return self.targets[key] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters