|
| 1 | +# pymitter |
| 2 | + |
| 3 | +This is a fork of the [original pymitter project](https://pypi.org/project/pymitter/) by Marcel Rieger. |
| 4 | +Sources are from the legacy/py2 branch which is a frozen v0.3.2 of that project. |
| 5 | +At this state, the implementation is compatible to Python >= v2.7 including |
| 6 | +MicroPython with a language level v3.4. |
| 7 | + |
| 8 | +Later versions of that project make use of type hints, which were introduced |
| 9 | +in Python 3.5. Type hints are currently not supported by MicroPython. |
| 10 | + |
| 11 | + |
| 12 | +## Features |
| 13 | + |
| 14 | +- Namespaces with wildcards |
| 15 | +- Times to listen (TTL) |
| 16 | +- Usage via decorators or callbacks |
| 17 | +- Lightweight implementation, good performance |
| 18 | + |
| 19 | + |
| 20 | +## Installation |
| 21 | + |
| 22 | +*pymitter* is a registered [MicroPython module](https://github.com/olimaye/micropython-lib), |
| 23 | +so the installation with *mip* is quite easy: |
| 24 | + |
| 25 | +```console |
| 26 | +mpremote mip install pymitter |
| 27 | +``` |
| 28 | + |
| 29 | + |
| 30 | +## Examples |
| 31 | + |
| 32 | +### Basic usage |
| 33 | + |
| 34 | +```python |
| 35 | +from pymitter import EventEmitter |
| 36 | + |
| 37 | + |
| 38 | +ee = EventEmitter() |
| 39 | + |
| 40 | + |
| 41 | +# decorator usage |
| 42 | +@ee.on("myevent") |
| 43 | +def handler1(arg): |
| 44 | + print("handler1 called with", arg) |
| 45 | + |
| 46 | + |
| 47 | +# callback usage |
| 48 | +def handler2(arg): |
| 49 | + print("handler2 called with", arg) |
| 50 | + |
| 51 | + |
| 52 | +ee.on("myotherevent", handler2) |
| 53 | + |
| 54 | + |
| 55 | +# emit |
| 56 | +ee.emit("myevent", "foo") |
| 57 | +# -> "handler1 called with foo" |
| 58 | + |
| 59 | +ee.emit("myotherevent", "bar") |
| 60 | +# -> "handler2 called with bar" |
| 61 | +``` |
| 62 | + |
| 63 | + |
| 64 | +### TTL (times to listen) |
| 65 | + |
| 66 | +```python |
| 67 | +from pymitter import EventEmitter |
| 68 | + |
| 69 | + |
| 70 | +ee = EventEmitter() |
| 71 | + |
| 72 | + |
| 73 | +@ee.once("myevent") |
| 74 | +def handler1(): |
| 75 | + print("handler1 called") |
| 76 | + |
| 77 | + |
| 78 | +@ee.on("myevent", ttl=10) |
| 79 | +def handler2(): |
| 80 | + print("handler2 called") |
| 81 | + |
| 82 | + |
| 83 | +ee.emit("myevent") |
| 84 | +# -> "handler1 called" |
| 85 | +# -> "handler2 called" |
| 86 | + |
| 87 | +ee.emit("myevent") |
| 88 | +# -> "handler2 called" |
| 89 | +``` |
| 90 | + |
| 91 | + |
| 92 | +### Wildcards |
| 93 | + |
| 94 | +```python |
| 95 | +from pymitter import EventEmitter |
| 96 | + |
| 97 | + |
| 98 | +ee = EventEmitter(wildcard=True) |
| 99 | + |
| 100 | + |
| 101 | +@ee.on("myevent.foo") |
| 102 | +def handler1(): |
| 103 | + print("handler1 called") |
| 104 | + |
| 105 | + |
| 106 | +@ee.on("myevent.bar") |
| 107 | +def handler2(): |
| 108 | + print("handler2 called") |
| 109 | + |
| 110 | + |
| 111 | +@ee.on("myevent.*") |
| 112 | +def hander3(): |
| 113 | + print("handler3 called") |
| 114 | + |
| 115 | + |
| 116 | +ee.emit("myevent.foo") |
| 117 | +# -> "handler1 called" |
| 118 | +# -> "handler3 called" |
| 119 | + |
| 120 | +ee.emit("myevent.bar") |
| 121 | +# -> "handler2 called" |
| 122 | +# -> "handler3 called" |
| 123 | + |
| 124 | +ee.emit("myevent.*") |
| 125 | +# -> "handler1 called" |
| 126 | +# -> "handler2 called" |
| 127 | +# -> "handler3 called" |
| 128 | +``` |
| 129 | + |
| 130 | +## API |
| 131 | + |
| 132 | + |
| 133 | +### ``EventEmitter(wildcard=False, delimiter=".", new_listener=False, max_listeners=-1)`` |
| 134 | + |
| 135 | +EventEmitter constructor. **Note**: always use *kwargs* for configuration. When *wildcard* is |
| 136 | +*True*, wildcards are used as shown in [this example](#wildcards). *delimiter* is used to seperate |
| 137 | +namespaces within events. If *new_listener* is *True*, the *"new_listener"* event is emitted every |
| 138 | +time a new listener is registered. Functions listening to this event are passed |
| 139 | +``(func, event=None)``. *max_listeners* defines the maximum number of listeners per event. Negative |
| 140 | +values mean infinity. |
| 141 | + |
| 142 | +- #### ``on(event, func=None, ttl=-1)`` |
| 143 | + Registers a function to an event. When *func* is *None*, decorator usage is assumed. *ttl* |
| 144 | + defines the times to listen. Negative values mean infinity. Returns the function. |
| 145 | + |
| 146 | +- #### ``once(event, func=None)`` |
| 147 | + Registers a function to an event with ``ttl = 1``. When *func* is *None*, decorator usage is |
| 148 | + assumed. Returns the function. |
| 149 | + |
| 150 | +- #### ``on_any(func=None)`` |
| 151 | + Registers a function that is called every time an event is emitted. When *func* is *None*, |
| 152 | + decorator usage is assumed. Returns the function. |
| 153 | + |
| 154 | +- #### ``off(event, func=None)`` |
| 155 | + Removes a function that is registered to an event. When *func* is *None*, decorator usage is |
| 156 | + assumed. Returns the function. |
| 157 | + |
| 158 | +- #### ``off_any(func=None)`` |
| 159 | + Removes a function that was registered via ``on_any()``. When *func* is *None*, decorator usage |
| 160 | + is assumed. Returns the function. |
| 161 | + |
| 162 | +- #### ``off_all()`` |
| 163 | + Removes all functions of all events. |
| 164 | + |
| 165 | +- #### ``listeners(event)`` |
| 166 | + Returns all functions that are registered to an event. Wildcards are not applied. |
| 167 | + |
| 168 | +- #### ``listeners_any()`` |
| 169 | + Returns all functions that were registered using ``on_any()``. |
| 170 | + |
| 171 | +- #### ``listeners_all()`` |
| 172 | + Returns all registered functions. |
| 173 | + |
| 174 | +- #### ``emit(event, *args, **kwargs)`` |
| 175 | + Emits an event. All functions of events that match *event* are invoked with *args* and *kwargs* |
| 176 | + in the exact order of their registeration. Wildcards might be applied. |
| 177 | + |
| 178 | + |
| 179 | +## Development |
| 180 | + |
| 181 | +- Source hosted at [GitHub](https://github.com/riga/pymitter) |
| 182 | +- Python module hostet at [PyPI](https://pypi.python.org/pypi/pymitter) |
| 183 | +- Report issues, questions, feature requests on [GitHub Issues](https://github.com/riga/pymitter/issues) |
0 commit comments