Readers/Writer Lock for Twisted
Project description
Readers/Writer Lock for Twisted
Free software: MIT
Documentation: http://txrwlock.readthedocs.io/en/latest/
Presentation: http://www.great-a-blog.co/readerswriter-lock-for-twisted/
Features
Twisted implementation of a Readers/Writer Lock. This synchronization primitive allows to lock a share depending on two access roles: “reader” which only access to the data without modifying it, and “writer” which may want to change the data in the share.
Multiple readers can access to the data at the same time. There is no locking at all when only readers require access to the share
When a write requires access to the share, it prevents any new reader request to fullfil and put these requests into a waiting queue. It will wait for all ongoing reads to finish
Only one writer can act at the same time
This Lock is well suited for share with more readers than writer. Write requests must be at least an order of magnitude less often that read requests
This implementation brings this mechanism to the Twisted’s deferred. Please note they are independent with other multithreading RW lock.
For example, a data structure is shared by a different deferreds, triggered on different contexts. Obviously, only one deferred can be writing to the data structure at a time. If more than one was writing, then they could potentially overwrite each other’s data. To prevent this from happening, the writing deferred obtain a “writer” lock in an exclusive manner, meaning that it and only it has access to the data structure. Note that the exclusivity of the access is controlled strictly by voluntary means. The opposite occurs with readers; since reading a data area is a non-destructive operation, any number of concurent deferred can be reading the data.
However, you should protect all parts that will read data in a coherence way. For example, the reading deferred may be confused by reading a part of the data, getting preempted by a writing deferred, and then, when the reading deferred “resumes”, continue reading data, but from a newer “update” of the data. A data inconsistency would then result.
Heavily inspirated by this example.
Usage
An Inlinecallbacks deferred that needs “read” access to a share use the following pattern:
from twisted.internet import defer
from txrwlock import TxReadersWriterLock
...
class MySharedObject(object):
def __init__(self):
self._readWriteLock = TxReadersWriterLock()
@defer.inlineCallbacks
def aReaderMethod(...):
try:
yield rwlocker.readerAcquire()
# ... any treatment ...
finally:
yield rwlocker.readerRelease()
An Inlinecallbacks deferred that needs “write” access to a share uses the following pattern:
@defer.inlineCallbacks
def aWriterMethod(...):
try:
yield rwlocker.writerAcquire()
# ... any treatment ...
finally:
yield rwlocker.writerRelease()
Development
Please note the following magical feature of this repository:
This package use PBR to compute automatically the version number, generate ChangeLog and AUTHORS.
Deployment to Pypi is automatically made by Travis on successful tag build. Dependencies declared on
requirements.txt declares the strict minimum of dependencies for external modules that want to use txrwlock. These dependencies are not version frozen.
For development, unit test, style checks, you need to install requirements-dev.txt as well.
Travis validates txrwlock on Linux and AppVeyor on Windows
Setup for development and unit tests
$ make dev
Build source package, binary package and wheel:
make dists
These builds automatically generate ChangeLog and AUTHOR files from the git commit history, thanks PBR.
Execute unit test:
make test
Execute coverage:
make coverage
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 txrwlock-1.1.4.tar.gz
.
File metadata
- Download URL: txrwlock-1.1.4.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d7923689014ed39f0663a6f33944166e34b044bcf288c0b6029f6642fe070b1 |
|
MD5 | 383542c852bbe62d674131a376db6baf |
|
BLAKE2b-256 | 1d7e85bf379a1c4241b9837b9e1b9ef7e73ed008bca26dc328590dbb532a7d2c |