SYNOPSIS

    use App::Control;
    my $ctl = App::Control->new(
        EXEC => $exec,
        ARGS => \@args,
        PIDFILE => $pidfile,
        SLEEP => 1,
        VERBOSE => 1,
    );
    my $pid = $ctl->pid;
    if ( $ctl->running )
    {
        print "$pid is running\n";
    }
    else
    {
        print "$pid is not running\n";
    }
    # or alternatively ...
    print $ctl->status;
    $ctl->start;
    # or alternatively ...
    $ctl->cmd( 'start' );
    $ctl->stop;
    $ctl->hup;
    $ctl->restart;

DESCRIPTION

App::Control is a simple module to replicate the kind of functionality you get with apachectl to control apache, but for any script or executable. There is a very simple \s-1OO\s0 interface, where the constructor is used to specify the executable, command line arguments, and pidfile, and various methods (start, stop, etc.) are used to control the executable in the obvious way.

The module is intended to be used in a simple wrapper control script. Currently the module does a fork and exec to start the executable, and sets the signal handler for \s-1SIGCHLD\s0 to '\s-1IGNORE\s0' to avoid zombie processes.

CONSTRUCTOR

The constructor is called with a hash of options in the standard way. The options are as follows:

\$1

Path to the executable to be controlled. This option is \s-1REQUIRED\s0. Command line arguments for the executable. This option is \s-1OPTIONAL\s0, but if set, should be an \s-1ARRAY\s0 reference. Path to the pidfile for the executable. This need not exists, but the constructor will die if it thinks it can't create it. If the path where the pidfile lives doesn't exist the constructor will try to create it. This option is \s-1REQUIRED\s0. The ignore file allows you to temporarily disable the control functionality. Suppose you have a chkdaemon / crontab entry that restarts a service; specifying an \s-1IGNOREFILE\s0 means that you can disable this wihtout having to edit the relevant config files. By default, App::Control depends on the application to manage the pid file. This is consistent will analogous utilities (apachectl, chkdaemon, etc.), but if you would like App::Control to create and remove pid files for you, then set this option to a true value. Number of seconds to sleep before checking that the process has been started. If the start fails, the control script will loop with a \s-1SLEEP\s0 delay per iteration until it has (see <\*(L"\s-1LOOP\s0\*(R">). Default is 1 second.

head2 \s-1LOOP\s0

Number of times to loop before giving up on starting the process. If set to a true value, the module will output verbose messages to \s-1STDERR\s0.

METHODS

Start the executable specified in the constructor. This method waits until it is convinced that the executable has started. It then writes the new pid to the pidfile. Stop the executable specified in the constructor. It assumes that the pid listed in the pidfile specified in the constructor is the process to kill. This method waits until it is convinced that the executable has stopped. Send a \s-1SIGHUP\s0 to the executable. Basically; stop if running, and then start. Returns a status message along the lines of \*(L"$exec ($pid) is / is not running\*(R". All of the above methods can also be invoked using cmd; i.e.:

$ctl->start;

is equivilent to:

$ctl->cmd( 'start' );

give or take a call to \s-1AUTOLOAD\s0! Returns the current value of the pid in the pidfile. returns true if the pid in the pidfile is running.

AUTHOR

Ave Wrigley <[email protected]>

COPYRIGHT

Copyright (c) 2001 Ave Wrigley. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.