Multimethods implementation in Python
Project description
pymultimethods
Provides multiple dispatch or multimethods as described in https://en.wikipedia.org/wiki/Multiple_dispatch
multimethods can be used to effectively solve the Expression Problem described in https://en.wikipedia.org/wiki/Expression_problem
It can find uses in a lot of cases. Some examples are given below, but the uses are not limited to only those
- Functions where we process inputs differently based on isinstance checks of one or more input arguments
- The basic case of processing differently based on the type of one instance is what is used in Object oriented programming based on the self parameter. This basic methodology is what is called Single Dispatch
- Functions where we process inputs differently based on the type of a field.
- Example: Different handler for different versions of payload based on a "version" field in a dict, etc
More important than those is the ability that multimethods provide of NOT having to change the dispatcher for every single type of 'new' type that we come up with.
Usage is best described with an example:
Let's say we handle a payload based on a version number and type in the dict.
payload = {
"type": "init"
"version": 3,
...
}
In the payload above we want to dispatch to a handler based on "type" and "version"
Typical two ways to do this are:
def handle(payload):
type, version = payload["type"], payload["version"]
if ("init", 3) == (type, version):
return handle_init_v3(payload)
elif ...
def handle_init_v3(payload):
...
Better that above
HANDLERS = {
("init", 3): handle_init_v3
...
}
def handle(payload):
type, version = payload["type"], payload["version"]
return HANDLERS[(type, version)](payload)
The above two suffer from the problem of having to change existing files when a new version or handler is added. What if we could do this?
# Register a handler function using a @multimethod decorator. Arg to the decorator
# is the dispatch key generation function. Body of the function decorated is
# the default handler to be called if a handler wasn't registered for the
# dispatch key generated by the dispatch key generation function
from pymultidispatch.multimethods import multimethod
@multimethod(lambda payload: (payload["type"], payload["version"]))
def handle_message(payload):
# A optional default handler function to be called if a handler wasn't registered for the
# dispatch key generated by the above dispatch key generation function
pass
# In the same file, or any other file
@handle_message.register(("init", 3))
def _(payload): # Can be of any name, but leave out a name and use _ as convention
# payload handler for init v3
...
# In the same file or any other file
@handle_message.register(("init", 4))
def _(payload):
# payload handler for init v4
...
As can be seen from above, there is no need to change the dispatcher function or any other existing file
This implementation of multimethods is inspired by the Clojure language's implementation of the concept
Usage:
The same as mentioned above
The @multimethod(<dispatch_key_gen_fn>) decorator is used to define a multimethod dispatch function.
In the example above, the dispatcher is based on the payload type and payload version.
It should be noted that the assumptions is that whatever input is given
to this function is the same that is given to the dispatched functions.
The dispatched functions are defined on this multimethod using the <fn>.register(<key>) decorator, where <fn> is
the function decorated using @multimethod() decorator and <key> is the key for which we are registering <fn> as a
handler.
The dispatch_key is the result of calling <dispatch_key_gen_fn> of the @multimethod decorator
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymultidispatch-1.0.0.tar.gz.
File metadata
- Download URL: pymultidispatch-1.0.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2909d93ce21b6f797191e4f46051213053c65933642d357b06c71afc5f2976
|
|
| MD5 |
3ab266eb8a346bb3aeb68eefa6b470be
|
|
| BLAKE2b-256 |
8494048079b5d36542c56af814944f3956690e12840afa1f8a7010510997a5ba
|
File details
Details for the file pymultidispatch-1.0.0-py3-none-any.whl.
File metadata
- Download URL: pymultidispatch-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54bea778a317d17cb63a53bbddd38dc5716a25d26ce9cd61b07dfb6cae061536
|
|
| MD5 |
743ff6a6c2f282cf22ae9d98eaba8a17
|
|
| BLAKE2b-256 |
755715b280c19240c48e8fb54382f7471cb7de0feda3b1b7dd8c4a0f796184bb
|