GithubHelp home page GithubHelp logo

daemons's Introduction

Daemons

Well behaved unix daemons for every occasion.

Project Status

Consider this project to be in maintenance mode.

This project went v1.0.0 in 2014. Since then it has only received two patches that contained code changes. All other patches have been maintenance updates to keep automated testing and static analysis running. I do not expect and am not entertaining new feature asks.

I will still respond to PRs and issues that address bugs or security issues. Please send these to https://github.com/kevinconway/daemons.

What Is Daemons?

Daemons is a resource library for Python developers that want to create daemon processes. The classes in this library provide the basic daemonization, signal handling, and pid management functionality while allowing for any implementation of behaviour and logic.

Example Custom Daemon

import time

from daemons.prefab import run

class SleepyDaemon(run.RunDaemon):

    def run(self):

        while True:

            time.sleep(1)

Now to create a simple init script which can launch the daemon.

#!/usr/bin/env python

import logging
import os
import sys
import time

from mypackage import SleepyDaemon


if __name__ == '__main__':

    action = sys.argv[1]
    logfile = os.path.join(os.getcwd(), "sleepy.log")
    pidfile = os.path.join(os.getcwd(), "sleepy.pid")

    logging.basicConfig(filename=logfile, level=logging.DEBUG)
    d = SleepyDaemon(pidfile=pidfile)

    if action == "start":

        d.start()

    elif action == "stop":

        d.stop()

    elif action == "restart":

        d.restart()

There are more daemon types than the simple RunDaemon. Check the docs for more.

Wrapping Existing Code

Daemons can also be used to daemonize an arbitrary Python function.

import time

from daemons import daemonizer

@daemonizer.run(pidfile="/tmp/sleepy.pid")
def sleepy(sleep_time):

    while True:

        time.sleep(sleep_time)

sleepy(20)  # Daemon started with 20 second sleep time.

The daemonizer also supports adding signal handlers. Check the docs for more.

Daemon Functionality

The daemons in the 'prefab' module come bundled with the following features:

  • pidfile management
  • signal handling
  • start/stop/restart functionality
  • unix process daemonization

The default implementation of these feature are all driven by Python standard library modules. Each component may be overridden or extended by adding another base class to your daemon that implements the component interface. Check the 'interfaces' package for items to implement.

The 'prefab' daemons come in three flavors. The 'RunDaemon' requires that you implement the 'run' method which should use some form of a loop. If the 'run' method completes the process will stop. The 'StepDaemon' requires that you implement the 'step' method. The process will call 'step' on an infinite loop. The eventlet and gevent message daemons require that you implement the 'get_message' and 'handle_message' methods. These will fetch and handle messages within green-threads.

License

Copyright 2013 Kevin Conway

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Contributing

All contributions to this project are protected under the agreement found in the CONTRIBUTING file. All contributors should read the agreement but, as a summary:

You give us the rights to maintain and distribute your code and we promise
to maintain an open source distribution of anything you contribute.

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.