NAME
Venus::Process - Process Class
ABSTRACT
Process Class for Perl 5
SYNOPSIS
package main;
use Venus::Process;
my $parent = Venus::Process->new;
my $process = $parent->fork;
if ($process) {
# do something in child process ...
$process->exit;
}
else {
# do something in parent process ...
$parent->wait(-1);
}
# $parent->exit;
DESCRIPTION
This package provides methods for handling and forking processes.
INHERITS
This package inherits behaviors from:
INTEGRATES
This package integrates behaviors from:
METHODS
This package provides the following methods:
chdir
chdir(Str $path) (Process)
The chdir method changes the working directory the current process is operating within.
Since 0.06
- chdir example 2
-
# given: synopsis; $parent = $parent->chdir('/tmp'); # bless({...}, 'Venus::Process')
- chdir example 3
-
# given: synopsis; $parent = $parent->chdir('/xyz'); # Exception! Venus::Process::Error (isa Venus::Error)
check
check(Int $pid) (Int, Int)
The check method does a non-blocking "waitpid" in perlfunc operation and returns the wait status. In list context, returns the specified process' exit code (if terminated).
Since 0.06
- check example 1
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork; if ($process) { # in forked process ... $process->exit; } my $check = $parent->check($pid); # 0
- check example 2
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork; if ($process) { # in forked process ... $process->exit; } my ($check, $status) = $parent->check('00000'); # (-1, -1)
- check example 3
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork(sub{ $_->exit(1) }); if ($process) { # in forked process ... $process->exit; } my ($check, $status) = $parent->check($pid); # ($pid, 1)
daemon
daemon() (Process)
The daemon method detaches the process from controlling terminal and runs it in the background as system daemon. This method internally calls "disengage" and "setsid" and attempts to change the working directory to the root directory.
Since 0.06
- daemon example 1
-
# given: synopsis; my $daemon = $parent->daemon; # exits parent immediately # in forked process ... # $daemon->exit;
disengage
disengage() (Process)
The disengage method limits the interactivity of the process by changing the working directory to the root directory and redirecting its standard file descriptors from and to /dev/null
, or the OS' equivalent. These state changes can be undone by calling the "engage" method.
Since 0.06
- disengage example 1
-
# given: synopsis; $parent = $parent->disengage; # bless({...}, 'Venus::Process')
engage
engage() (Process)
The engage method ensures the interactivity of the process by changing the working directory to the directory used to launch the process, and by redirecting/returning its standard file descriptors from and to their defaults. This method effectively does the opposite of the "disengage" method.
Since 0.06
exit
exit(Int $status) (Int)
The exit method exits the program immediately.
Since 0.06
fork
fork(Str | CodeRef $code, Any @args) (Process, Int)
The fork method calls the system "fork" in perlfunc function and creates a new process running the same program at the same point (or call site). This method returns a new Venus::Process object representing the child process (from within the execution of the child process (or fork)), and returns undef
to the parent (or originating) process. In list context, this method returns both the process and PID (or process ID) of the child process. If a callback or argument is provided it will be executed in the child process.
Since 0.06
- fork example 1
-
# given: synopsis; $process = $parent->fork; # if ($process) { # # in forked process ... # $process->exit; # } # else { # # in parent process ... # $parent->wait(-1); # } # in child process # bless({...}, 'Venus::Process')
- fork example 2
-
# given: synopsis; my $pid; ($process, $pid) = $parent->fork; # if ($process) { # # in forked process ... # $process->exit; # } # else { # # in parent process ... # $parent->wait($pid); # } # in parent process # (undef, $pid)
- fork example 3
-
# given: synopsis; my $pid; ($process, $pid) = $parent->fork(sub{ $$_{started} = time; }); # if ($process) { # # in forked process ... # $process->exit; # } # else { # # in parent process ... # $parent->wait($pid); # } # in parent process # (undef, $pid)
- fork example 4
-
# given: synopsis; $process = $parent->fork(sub{}); # simulate fork failure # no forking attempted if NOT supported # Exception! Venus::Process:Error (isa Venus::Error)
forks
forks(Str | CodeRef $code, Any @args) (Process, ArrayRef[Int])
The forks method creates multiple forks by calling the "fork" method n
times, based on the count specified. As with the "fork" method, this method returns a new Venus::Process object representing the child process (from within the execution of the child process (or fork)), and returns undef
to the parent (or originating) process. In list context, this method returns both the process and an arrayref of PID values (or process IDs) for each of the child processes created. If a callback or argument is provided it will be executed in each child process.
Since 0.06
- forks example 1
-
# given: synopsis; $process = $parent->forks(5); # if ($process) { # # do something in (each) forked process ... # $process->exit; # } # else { # # do something in parent process ... # $parent->wait(-1); # } # bless({...}, 'Venus::Process')
- forks example 2
-
# given: synopsis; my $pids; ($process, $pids) = $parent->forks(5); # if ($process) { # # do something in (each) forked process ... # $process->exit; # } # else { # # do something in parent process ... # $parent->wait($_) for @$pids; # } # in parent process # (undef, $pids)
- forks example 3
-
# given: synopsis; my $pids; ($process, $pids) = $parent->forks(5, sub{ my ($fork, $pid, $iteration) = @_; # $iteration is the fork iteration index $fork->exit; }); # if ($process) { # # do something in (each) forked process ... # $process->exit; # } # else { # # do something in parent process ... # $parent->wait($_) for @$pids; # } # in child process # bless({...}, 'Venus::Process')
kill
kill(Str $signal, Int @pids) (Int)
The kill method calls the system "kill" in perlfunc function which sends a signal to a list of processes and returns truthy or falsy. Note: A truthy result doesn't necessarily mean all processes were successfully signalled.
Since 0.06
- kill example 1
-
# given: synopsis; if ($process = $parent->fork) { # in forked process ... $process->exit; } my $kill = $parent->kill('term', int$process); # 1
setsid
setsid() (Int)
The setsid method calls the "setsid" in POSIX function and sets the process group identifier of the current process.
Since 0.06
- setsid example 2
-
# given: synopsis; my $setsid = $parent->setsid; # Exception! Venus::Process::Error (isa Venus::Error)
stderr
stderr(Str $path) (Process)
The stderr method redirects STDERR
to the path provided, typically /dev/null
or some equivalent. If called with no arguments STDERR
will be restored to its default.
Since 0.06
- stderr example 2
-
# given: synopsis; $parent = $parent->stderr('/nowhere'); # Exception! Venus::Process:Error (isa Venus::Error)
stdin
stdin(Str $path) (Process)
The stdin method redirects STDIN
to the path provided, typically /dev/null
or some equivalent. If called with no arguments STDIN
will be restored to its default.
Since 0.06
- stdin example 2
-
# given: synopsis; $parent = $parent->stdin('/nowhere'); # Exception! Venus::Process::Error (isa Venus::Error)
stdout
stdout(Str $path) (Process)
The stdout method redirects STDOUT
to the path provided, typically /dev/null
or some equivalent. If called with no arguments STDOUT
will be restored to its default.
Since 0.06
- stdout example 2
-
# given: synopsis; $parent = $parent->stdout('/nowhere'); # Exception! Venus::Process::Error (isa Venus::Process)
trap
trap(Str $name, Str | CodeRef $expr) (Process)
The trap method registers a process signal trap (or callback) which will be invoked whenever the current process receives that matching signal. The signal traps are globally installed and will overwrite any preexisting behavior. Signal traps are inherited by child processes (or forks) but can be overwritten using this method, or reverted to the default behavior by using the "untrap" method.
Since 0.06
- trap example 1
-
# given: synopsis; $parent = $parent->trap(term => sub{ die 'Something failed!'; }); # bless({...}, 'Venus::Process')
untrap
untrap(Str $name) (Process)
The untrap method restores the process signal trap specified to its default behavior. If called with no arguments, it restores all signal traps overwriting any user-defined signal traps in the current process.
Since 0.06
- untrap example 1
-
# given: synopsis; $parent->trap(chld => 'ignore')->trap(term => sub{ die 'Something failed!'; }); $parent = $parent->untrap('term'); # bless({...}, 'Venus::Process')
- untrap example 2
-
# given: synopsis; $parent->trap(chld => 'ignore')->trap(term => sub{ die 'Something failed!'; }); $parent = $parent->untrap; # bless({...}, 'Venus::Process')
wait
wait(Int $pid) (Int, Int)
The wait method does a blocking "waitpid" in perlfunc operation and returns the wait status. In list context, returns the specified process' exit code (if terminated).
Since 0.06
- wait example 1
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork; if ($process) { # in forked process ... $process->exit; } my $wait = $parent->wait($pid); # 0
- wait example 2
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork; if ($process) { # in forked process ... $process->exit; } my ($wait, $status) = $parent->wait('00000'); # (-1, -1)
- wait example 3
-
package main; use Venus::Process; my $parent = Venus::Process->new; my ($process, $pid) = $parent->fork(sub{ $_->exit(1) }); if ($process) { # in forked process ... $process->exit; } my ($wait, $status) = $parent->wait($pid); # ($pid, 1)
work
work(Str | CodeRef $code, Any @args) (Int)
The work method forks the current process, runs the callback provided in the child process, and immediately exits after. This method returns the PID of the child process. It is recommended to install an "alarm" in perlfunc in the child process (i.e. callback) to avoid creating zombie processes in situations where the parent process might exit before the child process is done working.
Since 0.06
- work example 1
-
# given: synopsis; my $pid = $parent->work(sub{ my ($process) = @_; # in forked process ... $process->exit; }); # $pid
OPERATORS
This package overloads the following operators: