trbs / pid

Pidfile featuring stale detection and file-locking, can also be used as context-manager or decorator
https://pypi.python.org/pypi/pid/
Apache License 2.0
102 stars 26 forks source link

pid

.. image:: https://travis-ci.org/trbs/pid.svg?branch=master :target: https://travis-ci.org/trbs/pid

.. image:: https://coveralls.io/repos/trbs/pid/badge.png :target: https://coveralls.io/r/trbs/pid

.. image:: https://img.shields.io/pypi/v/pid.svg :target: https://pypi.python.org/pypi/pid/ :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/dm/pid.svg :target: https://pypi.python.org/pypi/pid/ :alt: Number of PyPI downloads

PidFile class featuring:

Context Manager, Daemons and Logging

PidFile can be used as a context manager::

from pid import PidFile import os

with PidFile('foo') as p: print(p.pidname) # -> 'foo' print(p.piddir) # -> '/var/run' But you can modify it when initialize PidFile. print(os.listdir('/var/run')) # -> ['foo.pid']

pid file will delete after 'with' literal.

|

Logging to file is also possible when using PidFile with a daemon context manager (e.g. python-daemon <https://pypi.python.org/pypi/python-daemon/>_). This requires some care in handling the open files when the daemon starts to avoid closing them, which causes problems with the logging. In particular, the open handlers should be preserved::

import sys import logging import logging.config

import daemon from pid impor PidFile

logging.config.fileConfig(fname="logging.conf", disable_existing_loggers=False) log = logging.getLogger(name)

PIDNAME = "/tmp/mydaemon.pid"

def get_logging_handles(logger): handles = [] for handler in logger.handlers: handles.append(handler.stream.fileno()) if logger.parent: handles += get_logging_handles(logger.parent) return handles

def daemonize(): file_preserve = get_logging_handles(logging.root) pid_file = PidFile(pidname=PIDNAME)

with daemon.DaemonContext(stdout=sys.stdout,
                          stderr=sys.stderr,
                          stdin=sys.stdin,
                          pidfile=_pid_file,
                          files_preserve=files_preserve):

  run_daemon_job()
print("DONE!")

if name == "main": daemonize()

This assumes a logging.conf file has been created, see e.g. basic tutorial <https://docs.python.org/3/howto/logging.html#logging-basic-tutorial>_ for logging.

Decorator

PidFile can also be used a a decorator::

from pid.decorator import pidfile

@pidfile() def main(): pass

if name == "main": main()

Exception Order

In default mode PidFile will try to acquire a file lock before anything else. This means that normally you get a PidFileAlreadyLockedError instead of the PidFileAlreadyRunningError when running a program twice.

If you just want to know if a program is already running its easiest to catch just PidFileError since it will capture all possible PidFile exceptions.

Behaviour

Changes in version 2.0.0 and going forward:

\