Giter Site home page Giter Site logo

unix_daemon's Introduction

unix_daemon

unix_daemon is a python module emulating BSD daemon(3).
This module provides a function named daemon.
If this function is called, the process become a daemon and start to run
background.

Requirements

  • Python 2.6 or later, or Python 3.x
  • Unix or Linux platform.

Test

  • Python 2.6.9
  • Python 2.7.8
  • Python 3.1.5
  • Python 3.2.5
  • Python 3.3.5
  • Python 3.4.1

Setup

  • Install using pip

    $ sudo pip install unix_daemon
    
  • Install from git.

    $ git clone https://github.com/wbcchsyn/unix_daemon.git
    $ cd unix_daemon
    $ sudo python setup.py install
    

Usage

unix_daemon.daemon(nochdir=False, noclose=False)

Make process daemon and start to run in the background.

Arguments
If argument 1 'nochdir' is False, the process changes the calling
process's current working directory to the root directory ("/");
otherwise, the current working directory is left unchanged.
The default value of the nochdir is False.
If argument 2 'noclose' is False, this function close file descriptors 0,
1 and 2 and redirect them to /dev/null. Even if some of them have been
closed, this function open these file descriptors and redirect to
/dev/null if noclose is False.
The defult value of noclose is False.
Return Value
daemon returns the pid of new process.
Note
This function calls os.fork() internally to detach tty safely.
Be careful to call this function when two or more than two python threads
are running.
Normary, file descriptors 0, 1 and 2 are correspond to stdin, stdout and
stderr. However, even if any of these file discriptors refer to something
else, they will still be closed when argument 'noclose' is False.
It is a good idea to call this function before creating any threads and
before opening any files or sockets.
Example

Call unix_daemon.daemon(), then the process starts to run in the backgrond.

import unix_daemon
import os

print('pid: %s\n' % os.getpid())

pid = unix_daemon.daemon()
with open('/tmp/foo', 'a') as f:
    print('pid: %s\n' % os.getpid())
    f.write('new pid: %s\n' % pid)

You can see the process id changes and the 2nd print is not displayed.

Development

Install requirements to developing copy pre-commit hook from repository.

$ git clone https://github.com/wbcchsyn/unix_daemon.git
$ cd unix_daemon
$ pip install -r dev_utils/requirements.txt
$ ln -s ../../dev_utils/pre-commit .git/hooks/pre-commit

unix_daemon's People

Contributors

mkouhei avatar wbcchsyn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.