Handle coroutines from synchronous functions or methods (like special methods)
Project description
- author:
Alberto Berti
- contact:
- license:
GNU General Public License version 3 or later
Handle coroutines from synchronous functions or methods (like special methods)
Goal
This package helps handling such cases when there is a side effect that is coded as a coroutine and the code block that needs it cannot be run as a coroutine.
The case is e. g. when a coroutine is called from an external package or a Python special method.
This package will give you the tools to ensure that even if the computation is not immediate, the execution of the coroutine(s) is guaranteed to happen in the context of the coroutine that is calling the special method.
A package that works in tandem with this is metapensiero.signal
Installation
To install the package execute the following command:
$ pip install metapensiero.asyncio.transaction
Usage
Given a scenario where a coroutine is called from the __setattr___ method, this is how to deal with the situation:
import asyncio
from metapensiero.async import transaction
@asyncio.coroutine
def publish(value):
# do something async
class Example:
def __setattr__(self, name, value):
trans = transaction.get()
trans.add(publish(value))
super().__setattr__(name, value)
@asyncio.coroutine
def external_coro():
inst = Example()
trans = transaction.begin()
inst.foo = 'bar'
yield from trans.end()
In python 3.5, the external_coro can be written as:
async def external_coro():
inst = Example()
async with transaction.begin():
inst.foo = 'bar'
So by taking advantage of the new __aenter__ and __aexit__ methods and awaitable classes.
The coroutines will be scheduled in the order they have been created.
At a certain point, you may want to ensure that all the remaining coroutines are executed you may use the coroutine transaction.wait_all(), doing so will end all the remaining open transactions.
When your code add a coro to the transaction it can also pass a callback as the cback keyword parameter, so it will be called when the stashed coro completes (or is cancelled). This way you can use the return value of the coro like:
import asyncio
from metapensiero.asyncio import transaction
results = []
@asyncio.coroutine
def stashed_coro():
nonlocal results
results.append('called stashed_coro')
return 'result from stashed coro'
class A:
def __init__(self):
tran = transaction.get()
c = stashed_coro()
tran.add(c, cback=self._init)
def _init(self, stashed_task):
nonlocal results
results.append(stashed_task.result())
@asyncio.coroutine
def external_coro():
tran = transaction.begin()
# in py3.5
# async with tran:
# a = A()
a = A()
yield from tran.end()
yield from asyncio.gather(
external_coro()
)
assert len(results) == 2
assert results == ['called stashed_coro', 'result from stashed coro']
Testing
To run the tests you should run the following at the package root:
python setup.py test
Build status
Changes
0.1 (2015-12-15)
Adaptation from the rocky sources.
First draft documentation.
0.2 (2015-12-16)
Document some details about testing.
Add some checks on end().
0.3 (2015-12-26)
Fix packaging.
0.4 (2015-12-27)
Documentation fixes.
0.5 (2016-01-22)
Fix behavior when transaction.begin() is called from code not already running in a task.
0.6 (2016-01-27)
support a callback function when adding coros to the transaction.
0.7 (2016-02-18)
Add a wait() method to suspend the current task while the coros complete without closing the current transaction.
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
File details
Details for the file metapensiero.asyncio.transaction-0.7.tar.gz
.
File metadata
- Download URL: metapensiero.asyncio.transaction-0.7.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e24f6c2ba032687eb867501e3557c9c19f936cf5579e8030b274d5bd5dbc0385 |
|
MD5 | 2eb4de1179e8b774bad5a6d238d121f6 |
|
BLAKE2b-256 | cde0b6cee072f0a6fb2ebfedb7730ce7a1354e2969249ba35f9655d39033d6b1 |