A Python locking library not depending on inter-process locking primitives in the OS
Project description
openlock
A locking library not depending on inter-process locking primitives in the OS.
API
FileLock(lock_file="openlock.lock", timeout=None)
. Constructor. The optionaltimeout
argument is the default for the corresponding argument ofacquire()
(see below). AFileLock
object supports the context manager protocol.FileLock.acquire(timeout=None)
. Attempts to acquire the lock. The optionaltimeout
argument specifies the maximum waiting time in seconds before aTimeout
exception is raised.FileLock.release()
. Releases the lock. May raise anInvalidRelease
exception.FileLock.locked()
. Indicates if the lock is held by a process.FileLock.getpid()
. The PID of the process that holds the lock, if any. Otherwise returnsNone
.FileLock.lock_file
. The name of the lock file.FileLock.timeout
. The value of the timeout parameter.openlock.set_defaults(**kw)
. Sets default values for the internal parameters. Currentlytries
,retry_period
,race_delay
with values of2
,0.3s
and0.2s
respectively.openlock.get_defaults()
. Returns a dictionary with the default values for the internal parameters.
How does it work
A valid lock file has two lines of text containing respectively:
pid
: the PID of the process holding the lock;name
: the content ofargv[0]
of the process holding the lock.
A lock file is considered stale if the pair (pid, name)
does not belong to a Python process in the process table.
A process that seeks to acquire a lock first atomically tries to create a new lock file. If this succeeds then it has acquired the lock. If it fails then this means that a lock file exists. If it is valid, i.e. not stale and syntactically valid, then this implies that the lock has already been acquired and the process will periodically retry to acquire it - subject to the timeout
parameter. If the lock file is invalid, then the process atomically overwrites it with its own data. It sleeps race_delay
seconds and then checks if the lock file has again been overwritten (necessarily by a different process). If not then it has acquired the lock.
Once the lock is acquired the process installs an exit handler to remove the lock file on exit.
To release the lock, the process deletes the lock file and uninstall the exit handler.
In follows from this description that the algorithm is latency free in the common use case where there are no invalid lock files.
Issues
There are no known issues in the common use case where there are no invalid lock files. In general the following is true:
-
The algorithm for dealing with invalid lock files fails if a process needs more time than indicated by the
race_delay
parameter to create a new lock file after detecting the absence of a valid one. The library will issue a warning if it thinks the system is too slow for the algorithm to work correctly and it will recommend to increase the value of therace_delay
parameter. -
Since PIDs are only unique over the lifetime of a process, it may be, although it is very unlikely, that the data
(pid, name)
matches a Python process different from the one that created the lock file. In that case the algorithm fails to recognize the lock file as stale.
History
This is a refactored version of the locking algorithm used by the worker for the Fishtest web application https://tests.stockfishchess.org/tests.
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 openlock-1.1.5.tar.gz
.
File metadata
- Download URL: openlock-1.1.5.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2212d15e3b9957d083c9a4adb3528c0fcc86e23cacf9eda0bbc01135aae4805 |
|
MD5 | a956c06863f840be22c2916fec64ce3c |
|
BLAKE2b-256 | 51a90d49722a1cf6093568f19398df6594c886fffe7f9722e1d5ea6a0da4da13 |
File details
Details for the file openlock-1.1.5-py3-none-any.whl
.
File metadata
- Download URL: openlock-1.1.5-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd54814df2ceb75d74aeade192bde590c72b83182bbfe026e6a19d1825abe1b1 |
|
MD5 | 4574c6ef3859248a2ba0a92cfe67be0c |
|
BLAKE2b-256 | 9bf3550399e49a5f5c952bc79f715386beb4eef50b4b34ef1e38eed96a1aa016 |