Giter Site home page Giter Site logo

daemond-lite's Introduction

NAME
    Daemond::Lite - Lightweight version of daemonization toolkit

SYNOPSIS
        package main;
        use Daemond::Lite;

        name 'sample';
        config 'daemon.conf';
        children 1;
        pid '/tmp/%n.%u.pid';

        nocli; # start without commands (start/stop)

        getopt {
        {
            desc   => "My custom option",
            eqdesc => "=myvalue",
            getopt => "option|o=s",
            setto  => sub { $_[0]{myopt1} = 1 }, # will be accessible via $self->{opt}{myopt1}
        },
        {
            desc   => "My custom option 2",
            eqdesc => "=mynumber",
            getopt => "option|o=i",
            setto  => sub { $_[0]{myopt2} = 1 }, # will be accessible via $self->{opt}{myopt2}
        },
        };

        logging { # optional
        my ($self,$detach) = @_;
        Log::Any::Adapter->set('Easy',
            $detach ? (
            syslog => { ident => $self->name, facility => 'daemon' },
            ):(
            syslog => { ident => $self->name, facility => 'daemon' },
            screen => 1
            )
        );
        my $newlog = Log::Any->get_logger();
        warn "setup logging $newlog";
        $newlog;
        };

        sub check { # before detach, but after all configuration
        warn "$$ checking";
        }

        sub start { # before fork
        warn "$$ starting";
        }

        sub run { # inside forked child
        warn "$$ run";
        my $self = shift;
        $self->{run} = 1;
        while($self->{run}) {
            sleep 1;
        }
        }

        sub stop {
        warn "$$ stop";
        my $self = shift;
        $self->{run} = 0;
        }

        runit();

DESCRIPTION
        Easy tool for creating daemons

    source: name, pid, conffile, ... config: name, pid, ... getopt:
    conffile, pid, ...

AUTHOR
    Mons Anderson, "<[email protected]>"

COPYRIGHT & LICENSE
    Copyright 2012 Mons Anderson, all rights reserved.

    This program is free software; you can redistribute it and/or modify it
    under the terms of either: the GNU General Public License as published
    by the Free Software Foundation; or the Artistic License.

daemond-lite's People

Contributors

mons avatar

Watchers

Sveta 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.