Convenient Event System
Project description
Convenient Event System
Create, subscribe and fire events with one line of code. Unlike alternative packages this one provide static typed predefined events with documented signature of event handlers.
Usage examples
Briefly, you need to performe two steps:
- decide between two things: group events in class derived from
EventDispatcher
or just define functions, - then decorate each event with
@event
.
Let's see how to use the library in more details. Imagine we write some user interface stuff for our super-duper program.
Single event example
Step 1: define click event.
@event
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
... # no implementation required
Step 2: subscribe click event.
@click
def on_click(x: int, y: int)->None:
"""
Process mouse click.
"""
print(f'You have clicked at ({x}; {y}).')
Step 3: fire click event.
click.trigger(12, 34) # You have clicked at (12; 34).
Events group example
Step 1: define mouse events group.
class Mouse(EventDispatcher):
@event
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
... # no implementation required
@event
def move(x: int, y: int)->None:
"""
Occures when user moves cursor over our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
...
Step 2: subscribe click event.
mouse = Mouse()
@mouse.click
def on_click(x: int, y: int)->None:
"""
Process mouse click.
"""
print(f'You have clicked at ({x}; {y}).')
Step 3: fire click event.
mouse.click.trigger(12, 34) # You have clicked at (12; 34).
How to create events?
Event are created by using event
decorator. It can be used with or without parameters.
The event can have arbitrary body that is not actually called. The main feature is to defined event signature hence during subscribing developer can see help message and type hints with intended event handler signature.
Single event bound to default event emitter
The simplest case is to just create an event. So default event emitter is used to manage this event.
@event
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
...
Single event bound to custom event emitter
Otherwise, you can specify different event emitter passing as argument.
my_event_emitter = EventEmitter()
@event(my_event_emitter)
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
...
Events group bound to dedicated event emitter
Moreover, you can combine events in group by using classes. There are two different approaches: using default event emitter or dedicate one per each class.
Creating dedicated event emitter per each event group is recommended.
Considering the preferred approach you can group event in class derived from EventDispatcher
. This ensures creation of new event emitter per each class instance.
Notice that using event
decorator stays the same way as for non-class functions.
class Mouse(EventDispatcher):
@event
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
... # no implementation required
@event(my_event_emitter) # given event emitter is prior to Mouse one
def move(x: int, y: int)->None:
"""
Occures when user moves cursor over our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
...
Then you can instantiate Mouse
class and access dedicated event emitter for e.g. further low-level tuning.
mouse = Mouse()
mouse.emitter.max_listeners = 2 # allow up to two handlers
When using event
decorator on EventDispatcher
subclass method with specified event emitter it takes priority over the one dedicated per class instance.
Events group bound to default event emitter
In case you do not want to create dedicated event emitter per class instance (not recommended) you can just omit deriving from EventDispatcher
.
In following code default event emitter is used for all events in group.
class Mouse:
@event
def click(x: int, y: int)->None:
"""
Occures when user clicks on our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
... # no implementation required
@event(my_event_emitter) # given event emitter is prior to default one
def move(x: int, y: int)->None:
"""
Occures when user moves cursor over our interface.
:param x: mouse horizontal position relative to top left corner.
:param y: mouse vertical position relative to top left corner.
"""
...
How to subscribe events?
Event are subscribed by using them as decorator on handlers. Decorator also can be used with or without parameters.
Notice, when using event your IDE can show help message and type hints of intended handler signature.
Unlimited event handler
The simplest case is to just decorate handler with event. So handler will be called when event triggers.
@click
def on_click(x: int, y: int)->None:
"""
Process mouse click.
"""
print(f'You have clicked at ({x}; {y}).')
There is no difference between usage of single events or ones from event groups. Hence, according to Mouse
class example the above code can be rewritten in:
@mouse.click
def on_click(x: int, y: int)->None:
"""
Process mouse click.
"""
print(f'You have clicked at ({x}; {y}).')
Event handler with executions limit
Otherwise, you can specify number of times to handle event. When event fires more times, no further calls will be made on the handler.
@click(2)
def on_click(x: int, y: int)->None:
"""
Process mouse click two first times.
"""
print(f'You have clicked at ({x}; {y}).')
In above case on_click
will be called only for the first two times.
How to fire events?
To fire, emit, trigger event you can use .trigger(...)
method where should pass exactly the same arguments that are defined in event signature.
Notice, when using event your IDE can show help message and type hints of intended arguments.
Basically, to trigger an event you can just call trigger
method. Each active handler will be called with given arguments. You can use any set of arguments, including positional, universal, named, packed and even named packed.
click.trigger(12, 34)
Alternatively considering Mouse
class example:
mouse.click.trigger(12, 34)
Reference
eventsystem.event(...)
Event descriptor decorator. Can be used on functions or class methods. Can be used with or without parameters.
When used with single parameter emitter:EventEmitter
binds given event emitter to decorated event.
When used without parameters (brackets): if method belongs to EventDispatcher
derived class instance then uses its event emitter, else uses default emitter.
eventsystem.EventDispatcher(emitter: EventEmitter | None = None)
Base class to provide event group. Events are described as methods. Each event should have signature of EventHandler
and decorated with @event
.
Constructor parameters:
- emitter - event emitter to use. If not given creates a new one.
Fields:
- emitter - event emitter bound to dispatcher subclass instance.
eventsystem.Event
Event interface. Intended to be used as decorator or parametrized decorator for handlers.
Fields:
- name - read only property of event name
Methods:
-
get_emitter() → EventEmitter | None - get bound event emitter. In most situations, event will have event emitter bound. But in rare cases it can be None when no handler descriptor has been decorated yet.
-
trigger(...) → None - fire the event. All arguments are passed to each handler. Signature must match handler descriptor.
eventsystem.emitter
Default event emitter.
eventsystem.dispatcher
Default event dispatcher that is bound to default event emitter.
eventsystem.EventHandler
Base event and event handler signature (type annotations). Signature of handler must copy signature of event.
What event emitter is?
This library uses another library called pymitter under the hood. EventEmitter
- is a basic building block of that library which actually dispatches events, manages priority, limitations and queues.
Using EventEmitter
directly you can unsubscribe handlers, get all active handlers or limit them. For detailed tuning read pymitter documentation.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eventsystem-0.1.1.tar.gz
.
File metadata
- Download URL: eventsystem-0.1.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d1ca7c31a0bbe4d8441beb561db49e7d44097f96c8d1b3031be295c0098e13d |
|
MD5 | e0ef3cd2b5e68500ea4e69e00c999da6 |
|
BLAKE2b-256 | f86d53c32217818b75ebee40ccbebd19dba40091e2dcfb22ebebdee38dd0d49b |
File details
Details for the file eventsystem-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: eventsystem-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c099b404493fc1887f0a42363fa7cb2c9315fdded9f159a4ba646e02be999b |
|
MD5 | c5a8cce765b8f37b4258580c1757e7ad |
|
BLAKE2b-256 | df007c467a185bc893cdf2773b310f65fb0ea9d3e66c8e7e47fe204da7b4befc |