zc.lockfile


Namezc.lockfile JSON
Version 3.0.post1 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zc.lockfile
SummaryBasic inter-process locks
upload_time2023-02-28 07:30:13
maintainer
docs_urlNone
authorZope Foundation
requires_python>=3.7
licenseZPL 2.1
keywords lock
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            *************************
Basic inter-process locks
*************************

The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files.  The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives.  Of course, these locks could be
used to mediate access to *other* files.  For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files.  The database files and lock file files
are separate files.

.. contents::

Detailed Documentation
**********************

Lock file support
=================

The ZODB lock_file module provides support for creating file system
locks.  These are locks that are implemented with lock files and
OS-provided locking facilities.  To create a lock, instantiate a
LockFile object with a file name:

    >>> import zc.lockfile
    >>> lock = zc.lockfile.LockFile('lock')

If we try to lock the same name, we'll get a lock error:

    >>> import zope.testing.loggingsupport
    >>> handler = zope.testing.loggingsupport.InstalledHandler('zc.lockfile')
    >>> try:
    ...     zc.lockfile.LockFile('lock')
    ... except zc.lockfile.LockError:
    ...     print("Can't lock file")
    Can't lock file

.. We don't log failure to acquire.

    >>> for record in handler.records: # doctest: +ELLIPSIS
    ...     print(record.levelname+' '+record.getMessage())

To release the lock, use it's close method:

    >>> lock.close()

The lock file is not removed.  It is left behind:

    >>> import os
    >>> os.path.exists('lock')
    True

Of course, now that we've released the lock, we can create it again:

    >>> lock = zc.lockfile.LockFile('lock')
    >>> lock.close()

.. Cleanup

    >>> import os
    >>> os.remove('lock')

Hostname in lock file
=====================

In a container environment (e.g. Docker), the PID is typically always
identical even if multiple containers are running under the same operating
system instance.

Clearly, inspecting lock files doesn't then help much in debugging. To identify
the container which created the lock file, we need information about the
container in the lock file. Since Docker uses the container identifier or name
as the hostname, this information can be stored in the lock file in addition to
or instead of the PID.

Use the ``content_template`` keyword argument to ``LockFile`` to specify a
custom lock file content format:

    >>> lock = zc.lockfile.LockFile('lock', content_template='{pid};{hostname}')
    >>> lock.close()

If you now inspected the lock file, you would see e.g.:

    $ cat lock
     123;myhostname


Change History
***************

3.0.post1 (2023-02-28)
======================

- Add ``python_requires`` to ``setup.py`` to prevent installing on not
  supported old Python versions.


3.0 (2023-02-23)
================

- Add support for Python 3.9, 3.10, 3.11.

- Drop support for Python 2.7, 3.5, 3.6.

- Drop support for deprecated ``python setup.py test``.


2.0 (2019-08-08)
================

- Extracted new ``SimpleLockFile`` that removes implicit behavior
  writing to the lock file, and instead allows a subclass to define
  that behavior.
  (`#15 <https://github.com/zopefoundation/zc.lockfile/issues/15>`_)

- ``SimpleLockFile`` and thus ``LockFile`` are now new-style classes.
  Any clients relying on ``LockFile`` being an old-style class will
  need to be adapted.

- Drop support for Python 3.4.

- Add support for Python 3.8b3.


1.4 (2018-11-12)
================

- Claim support for Python 3.6 and 3.7.

- Drop Python 2.6 and 3.3.


1.3.0 (2018-04-23)
==================

- Stop logging failure to acquire locks. Clients can do that if they wish.

- Claim support for Python 3.4 and 3.5.

- Drop Python 3.2 support because pip no longer supports it.

1.2.1 (2016-06-19)
==================

- Fixed: unlocking and locking didn't work when a multiprocessing
  process was running (and presumably other conditions).

1.2.0 (2016-06-09)
==================

- Added the ability to include the hostname in the lock file content.

- Code and ReST markup cosmetics.
  [alecghica]

1.1.0 (2013-02-12)
==================

- Added Trove classifiers and made setup.py zest.releaser friendly.

- Added Python 3.2, 3.3 and PyPy 1.9 support.

- Removed Python 2.4 and Python 2.5 support.

1.0.2 (2012-12-02)
==================

- Fixed: the fix included in 1.0.1 caused multiple pids to be written
  to the lock file

1.0.1 (2012-11-30)
==================

- Fixed: when there was lock contention, the pid in the lock file was
  lost.

  Thanks to Daniel Moisset reporting the problem and providing a fix
  with tests.

- Added test extra to declare test dependency on ``zope.testing``.

- Using Python's ``doctest`` module instead of depreacted
  ``zope.testing.doctest``.

1.0.0 (2008-10-18)
==================

- Fixed a small bug in error logging.

1.0.0b1 (2007-07-18)
====================

- Initial release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zc.lockfile",
    "name": "zc.lockfile",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "lock",
    "author": "Zope Foundation",
    "author_email": "zope-dev@zope.dev",
    "download_url": "https://files.pythonhosted.org/packages/5b/83/a5432aa08312fc834ea594473385c005525e6a80d768a2ad246e78877afd/zc.lockfile-3.0.post1.tar.gz",
    "platform": null,
    "description": "*************************\nBasic inter-process locks\n*************************\n\nThe zc.lockfile package provides a basic portable implementation of\ninterprocess locks using lock files.  The purpose if not specifically\nto lock files, but to simply provide locks with an implementation\nbased on file-locking primitives.  Of course, these locks could be\nused to mediate access to *other* files.  For example, the ZODB file\nstorage implementation uses file locks to mediate access to\nfile-storage database files.  The database files and lock file files\nare separate files.\n\n.. contents::\n\nDetailed Documentation\n**********************\n\nLock file support\n=================\n\nThe ZODB lock_file module provides support for creating file system\nlocks.  These are locks that are implemented with lock files and\nOS-provided locking facilities.  To create a lock, instantiate a\nLockFile object with a file name:\n\n    >>> import zc.lockfile\n    >>> lock = zc.lockfile.LockFile('lock')\n\nIf we try to lock the same name, we'll get a lock error:\n\n    >>> import zope.testing.loggingsupport\n    >>> handler = zope.testing.loggingsupport.InstalledHandler('zc.lockfile')\n    >>> try:\n    ...     zc.lockfile.LockFile('lock')\n    ... except zc.lockfile.LockError:\n    ...     print(\"Can't lock file\")\n    Can't lock file\n\n.. We don't log failure to acquire.\n\n    >>> for record in handler.records: # doctest: +ELLIPSIS\n    ...     print(record.levelname+' '+record.getMessage())\n\nTo release the lock, use it's close method:\n\n    >>> lock.close()\n\nThe lock file is not removed.  It is left behind:\n\n    >>> import os\n    >>> os.path.exists('lock')\n    True\n\nOf course, now that we've released the lock, we can create it again:\n\n    >>> lock = zc.lockfile.LockFile('lock')\n    >>> lock.close()\n\n.. Cleanup\n\n    >>> import os\n    >>> os.remove('lock')\n\nHostname in lock file\n=====================\n\nIn a container environment (e.g. Docker), the PID is typically always\nidentical even if multiple containers are running under the same operating\nsystem instance.\n\nClearly, inspecting lock files doesn't then help much in debugging. To identify\nthe container which created the lock file, we need information about the\ncontainer in the lock file. Since Docker uses the container identifier or name\nas the hostname, this information can be stored in the lock file in addition to\nor instead of the PID.\n\nUse the ``content_template`` keyword argument to ``LockFile`` to specify a\ncustom lock file content format:\n\n    >>> lock = zc.lockfile.LockFile('lock', content_template='{pid};{hostname}')\n    >>> lock.close()\n\nIf you now inspected the lock file, you would see e.g.:\n\n    $ cat lock\n     123;myhostname\n\n\nChange History\n***************\n\n3.0.post1 (2023-02-28)\n======================\n\n- Add ``python_requires`` to ``setup.py`` to prevent installing on not\n  supported old Python versions.\n\n\n3.0 (2023-02-23)\n================\n\n- Add support for Python 3.9, 3.10, 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Drop support for deprecated ``python setup.py test``.\n\n\n2.0 (2019-08-08)\n================\n\n- Extracted new ``SimpleLockFile`` that removes implicit behavior\n  writing to the lock file, and instead allows a subclass to define\n  that behavior.\n  (`#15 <https://github.com/zopefoundation/zc.lockfile/issues/15>`_)\n\n- ``SimpleLockFile`` and thus ``LockFile`` are now new-style classes.\n  Any clients relying on ``LockFile`` being an old-style class will\n  need to be adapted.\n\n- Drop support for Python 3.4.\n\n- Add support for Python 3.8b3.\n\n\n1.4 (2018-11-12)\n================\n\n- Claim support for Python 3.6 and 3.7.\n\n- Drop Python 2.6 and 3.3.\n\n\n1.3.0 (2018-04-23)\n==================\n\n- Stop logging failure to acquire locks. Clients can do that if they wish.\n\n- Claim support for Python 3.4 and 3.5.\n\n- Drop Python 3.2 support because pip no longer supports it.\n\n1.2.1 (2016-06-19)\n==================\n\n- Fixed: unlocking and locking didn't work when a multiprocessing\n  process was running (and presumably other conditions).\n\n1.2.0 (2016-06-09)\n==================\n\n- Added the ability to include the hostname in the lock file content.\n\n- Code and ReST markup cosmetics.\n  [alecghica]\n\n1.1.0 (2013-02-12)\n==================\n\n- Added Trove classifiers and made setup.py zest.releaser friendly.\n\n- Added Python 3.2, 3.3 and PyPy 1.9 support.\n\n- Removed Python 2.4 and Python 2.5 support.\n\n1.0.2 (2012-12-02)\n==================\n\n- Fixed: the fix included in 1.0.1 caused multiple pids to be written\n  to the lock file\n\n1.0.1 (2012-11-30)\n==================\n\n- Fixed: when there was lock contention, the pid in the lock file was\n  lost.\n\n  Thanks to Daniel Moisset reporting the problem and providing a fix\n  with tests.\n\n- Added test extra to declare test dependency on ``zope.testing``.\n\n- Using Python's ``doctest`` module instead of depreacted\n  ``zope.testing.doctest``.\n\n1.0.0 (2008-10-18)\n==================\n\n- Fixed a small bug in error logging.\n\n1.0.0b1 (2007-07-18)\n====================\n\n- Initial release\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Basic inter-process locks",
    "version": "3.0.post1",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/zc.lockfile"
    },
    "split_keywords": [
        "lock"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7aa47f00f32605177a945f3a1b36a1b2bb9a39260566541280fcee27cbff5cf",
                "md5": "2c9c46e3c55c1148c49e551b87ee1706",
                "sha256": "ddb2d71088c061dc8a5edbaa346b637d742ca1e1564be75cb98e7dcae715de19"
            },
            "downloads": -1,
            "filename": "zc.lockfile-3.0.post1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2c9c46e3c55c1148c49e551b87ee1706",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9770,
            "upload_time": "2023-02-28T07:30:12",
            "upload_time_iso_8601": "2023-02-28T07:30:12.145213Z",
            "url": "https://files.pythonhosted.org/packages/a7/aa/47f00f32605177a945f3a1b36a1b2bb9a39260566541280fcee27cbff5cf/zc.lockfile-3.0.post1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b83a5432aa08312fc834ea594473385c005525e6a80d768a2ad246e78877afd",
                "md5": "5e902492de505a0f98e49b1e31cf2bc2",
                "sha256": "adb2ee6d9e6a2333c91178dcb2c9b96a5744c78edb7712dc784a7d75648e81ec"
            },
            "downloads": -1,
            "filename": "zc.lockfile-3.0.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "5e902492de505a0f98e49b1e31cf2bc2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 10190,
            "upload_time": "2023-02-28T07:30:13",
            "upload_time_iso_8601": "2023-02-28T07:30:13.994881Z",
            "url": "https://files.pythonhosted.org/packages/5b/83/a5432aa08312fc834ea594473385c005525e6a80d768a2ad246e78877afd/zc.lockfile-3.0.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-28 07:30:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zc.lockfile",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zc.lockfile"
}
        
Elapsed time: 0.26200s