Event notifier with many subscribers support
Project description
event-notifier
Library providing event registration and routing infrastructure.
Contents
Background
This is an implementation of event notifier (also known as emitter or dispatcher) allowing to notify one or more subscribers of an event that just occurred.
Any python object inheriting from or containing a notifier can act as event sender and any callable object can act as event receiver. Allows to register receivers having variable number of arguments.
Installation
pip install -U event-notifier
Example
from EventNotifier import Notifier
# Imagine we have a piece of code which is interested in some events
# occurring in other pieces of the code...
class FileWatchDog():
def onOpen(self, fileName, openMode):
print(f"File {fileName} opened with {openMode} mode")
def onClose(self, fileName):
print(f"File {fileName} closed")
watchDog = FileWatchDog()
# Create Notifier object by providing a list of events other components might be interesting in
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
# From now other objects are able to subscribe to events we've declared above
# Its important to use the same name as it was declared while creating Notifier object
# Consider using constant declarations or enums in order to avoid typos here
notifier.subscribe("onOpen", watchDog.onOpen)
notifier.subscribe("onClose", watchDog.onClose)
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt") # order of named parameters is not important
notifier.raise_event("onClose", fileName="test_file.txt")
Will produce:
$ python test.py
File test_file.txt opened with w+ mode
File test_file.txt closed
Constructor
Notifier(eventNames: list, logger=None)
Parameters
eventNames
-list of any
- mandatory, provides list of all supported events. Values provided here can be used for raising events later. Values provided in this list can be of any type.logger
-object
- optional, logger supporting standard logging methods (info, warning error, etc..), default:None
. If None is provided, then internal logger outputting warnings and errors to console will be created.
Example
Any object can be used as event name. Example below illustrates that:
from EventNotifier import Notifier
class Box:
def __init__(self, name):
self.name = name
a = Box("name_BoxA")
b = Box("name_BoxB")
notifier = Notifier(["onCreate", 5, 22.58, "onDelete", a, b])
notifier.subscribe("onCreate", onCreateCallback)
notifier.subscribe(5, on5Callback)
notifier.subscribe(22.58, onFloatCallback)
notifier.subscribe(a, onBoxACallback)
notifier.subscribe(b, onBoxBCallback)
notifier.raise_event(5, "event: ! 5 !") # on5Callback will be called with "event: ! 5 !" as parameter
notifier.raise_event(22.58, "event: ! 22.58 !") # onFloatCallback will be called with "event: ! 22.58 !" as parameter
notifier.raise_event(b, "event: Box b") # onBoxBCallback will be called with "event: Box b" as parameter
API Overview
subscribe(eventName, subscriber)
Description
Adds callable subscribers interested in some particular event.
Parameters
eventName
-any
- mandatory, specifies name of the event, subscriber will be interested in.subscriber
-any
- mandatory, callable subscriber (function, class method or class with call implemented)
Example
from EventNotifier import Notifier
class CallableFileWatchdog:
def __init__(self, pathToWatch):
self.pathToWatch = pathToWatch
def __call__(self, *args, **kwargs):
if len(args) > 0:
print(f"Event {args[0]} at path {self.pathToWatch} is called with following simple args: {[*args]} and with following keyword args: { {**kwargs} }")
callableWatchdog = CallableFileWatchdog("some\path\here")
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
notifier.subscribe("onCreate", callableWatchdog)
notifier.subscribe("onOpen", callableWatchdog)
notifier.raise_event("onCreate", "onCreate", fileName="test_file.txt")
notifier.raise_event("onOpen", "onOpen", openMode="w+", fileName="test_file.txt")
gives:
Event onCreate at path some\path\here is called with following simple args: ['onCreate'] and with following keyword args: {'fileName': 'test_file.txt'}
Event onOpen at path some\path\here is called with following simple args: ['onOpen'] and with following keyword args: {'openMode': 'w+', 'fileName': 'test_file.txt'}
subscribe_to_all(subscriber):
Description
Method allows to register one callable for all events supported by notifier.
Parameters
subscriber
-callable
- mandatory, will be called when event rises.
Example
from EventNotifier import Notifier
class CallableFileWatchdog:
def __init__(self, pathToWatch):
self.pathToWatch = pathToWatch
def __call__(self, *args, **kwargs):
if len(args) > 0:
print \
(f"Event {args[0]} at path {self.pathToWatch} is called with following simple args: {[*args]} and with following keyword args: { {**kwargs} }")
callable_watchog = CallableFileWatchdog("some\\path\\here")
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
notifier.subscribe_to_all(callable_watchog)
notifier.raise_event("onCreate", "onCreate", fileName="test_file.txt")
notifier.raise_event("onOpen", "onOpen", openMode="w+", fileName="test_file.txt")
Console output:
Event onCreate at path some\path\here is called with following simple args: ['onCreate'] and with following keyword args: {'fileName': 'test_file.txt'}
Event onOpen at path some\path\here is called with following simple args: ['onOpen'] and with following keyword args: {'openMode': 'w+', 'fileName': 'test_file.txt'}
get_registered_events():
Description
Returns all supported events as a list.
Example
from EventNotifier import Notifier
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
print(notifier.get_registered_events())
will output:
['onCreate', 'onOpen', 'onModify', 'onClose', 'onDelete']
raise_event(eventName, *args, **kwargs)
Description
Rises specific event registered during initialization.
Parameters
eventName
-any
- mandatory, name of the event to be raised.*args
-list
- optional, all simple parameters we want to pass to our subscribers (param1, param2, param3...).**kwargs
-dictionary
- optional, all named parameters we want to pass (param1=value1, param2=value2, param3=value3)
Example
Check subscribe method's example link above.
remove_subscribers_by_event_name(event_name)
Description
Removes all subscribers for the specified event_name
Parameters
eventName
-any
- mandatory, name of the event we want to remove subscribers for.
Example
from EventNotifier import Notifier
class FileWatchDog():
def onOpen(self, fileName, openMode):
print(f"File {fileName} opened with {openMode} mode")
def onClose(self, fileName):
print(f"File {fileName} closed")
def onOpenStandaloneMethod(fileName, openMode):
print(f"StandaloneMethod: File {fileName} opened with {openMode} mode")
watchDog = FileWatchDog()
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
notifier.subscribe("onOpen", watchDog.onOpen)
notifier.subscribe("onOpen", onOpenStandaloneMethod)
notifier.subscribe("onClose", watchDog.onClose)
print("\nAfter subscription:")
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt") # order of named parameters is not important
notifier.raise_event("onClose", fileName="test_file.txt")
notifier.remove_subscribers_by_event_name("onOpen")
print("\nAfter removal of onOpen subscribers:")
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt") # order of named parameters is not important
notifier.raise_event("onClose", fileName="test_file.txt")
notifier.remove_subscribers_by_event_name("onClose")
print("\nAfter removal of onClose subscribers:")
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt") # order of named parameters is not important
notifier.raise_event("onClose", fileName="test_file.txt")
will output:
After subscription:
File test_file.txt opened with w+ mode
StandaloneMethod: File test_file.txt opened with w+ mode
File test_file.txt closed
After removal of onOpen subscribers:
File test_file.txt closed
After removal of onClose subscribers:
remove_all_subscribers()
Description
Removes all subscribers for all events
Example
from EventNotifier import Notifier
class FileWatchDog():
def onOpen(self, fileName, openMode):
print(f"File {fileName} opened with {openMode} mode")
def onClose(self, fileName):
print(f"File {fileName} closed")
def onOpenStandaloneMethod(fileName, openMode):
print(f"StandaloneMethod: File {fileName} opened with {openMode} mode")
watchDog = FileWatchDog()
notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])
notifier.subscribe("onOpen", watchDog.onOpen)
notifier.subscribe("onOpen", onOpenStandaloneMethod)
notifier.subscribe("onClose", watchDog.onClose)
print("\nAfter subscription:")
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt")
notifier.raise_event("onClose", fileName="test_file.txt")
notifier.remove_all_subscribers()
print("\nAfter removal of all subscribers:")
notifier.raise_event("onOpen", openMode="w+", fileName="test_file.txt")
notifier.raise_event("onClose", fileName="test_file.txt")
will give:
After subscription:
File test_file.txt opened with w+ mode
StandaloneMethod: File test_file.txt opened with w+ mode
File test_file.txt closed
After removal of all subscribers:
Tests
PyTest is used for tests. Python 2 is not supported.
Install PyTest
$ pip install pytest
Run tests
$ pytest test/*
Check test coverage
In order to generate test coverage report install pytest-cov:
$ pip install pytest-cov
Then inside test subdirectory call:
pytest --cov=../EventNotifier --cov-report=html
License
License Copyright (C) 2020 Vitalij Gotovskij
event-notifier binaries and source code can be used according to the MIT License
Contribute
TBD
Project details
Release history Release notifications | RSS feed
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 event-notifier-1.0.13.tar.gz
.
File metadata
- Download URL: event-notifier-1.0.13.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 048b89ae5c0282e237f10a5c31fa7fa43bed6e04183924e46a306ac9fc241a70 |
|
MD5 | d2824ff0caa9f67c047690ff689e1cc7 |
|
BLAKE2b-256 | 6c964f90e7665ccf61d8a78edfde0a85ba7b3149c08893e2612c2579a8144097 |
File details
Details for the file event_notifier-1.0.13-py3-none-any.whl
.
File metadata
- Download URL: event_notifier-1.0.13-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b70841061b8e41d6d1b440a19ba7157c3b0758dd467576e487c0cf80b23cdce |
|
MD5 | 5ce8f6d1840871ba137866edbafc0572 |
|
BLAKE2b-256 | df6d184be2c907e034fb8b51bcee0a04b9ba2c5c1b743203c4cfb6351ad11123 |