Class-Usul
view release on metacpan or search on metacpan
lib/Class/Usul/IPC/Cmd.pm view on Meta::CPAN
package Class::Usul::IPC::Cmd;
use namespace::autoclean;
use Class::Null;
use Class::Usul::Constants qw( EXCEPTION_CLASS FALSE NUL
OK SPC TRUE UNDEFINED_RV );
use Class::Usul::Functions qw( arg_list emit_to io is_arrayref
is_coderef is_hashref is_member is_win32
nonblocking_write_pipe_pair
strip_leader throw );
use Class::Usul::Time qw( nap );
use Class::Usul::Types qw( ArrayRef Bool LoadableClass Logger
NonEmptySimpleStr Num Object PositiveInt
SimpleStr Str Undef );
use English qw( -no_match_vars );
use File::Basename qw( basename );
use File::DataClass::Types qw( Directory Path );
use File::Spec::Functions qw( devnull rootdir tmpdir );
use IO::Handle;
use IO::Select;
use IPC::Open3;
use Module::Load::Conditional qw( can_load );
use POSIX qw( _exit setsid sysconf WIFEXITED WNOHANG );
use Scalar::Util qw( blessed openhandle weaken );
use Socket qw( AF_UNIX SOCK_STREAM PF_UNSPEC );
use Sub::Install qw( install_sub );
use Try::Tiny;
use Unexpected::Functions qw( TimeOut Unspecified );
use Moo; use warnings NONFATAL => 'all';
our ($CHILD_ENUM, $CHILD_PID);
# Public attributes
has 'async' => is => 'ro', isa => Bool, default => FALSE;
has 'close_all_files' => is => 'ro', isa => Bool, default => FALSE;
has 'cmd' => is => 'ro', isa => ArrayRef | Str,
required => TRUE;
has 'detach' => is => 'ro', isa => Bool, default => FALSE;
has 'err' => is => 'ro', isa => Path | SimpleStr, default => NUL;
has 'expected_rv' => is => 'ro', isa => PositiveInt, default => 0;
has 'ignore_zombies' => is => 'lazy', isa => Bool, builder => sub {
($_[ 0 ]->async || $_[ 0 ]->detach) ? TRUE : FALSE };
has 'in' => is => 'ro', isa => Path | SimpleStr, coerce => sub {
(is_arrayref $_[ 0 ]) ? join $RS, @{ $_[ 0 ] } : $_[ 0 ] },
default => NUL;
has 'log' => is => 'lazy', isa => Logger,
builder => sub { Class::Null->new };
has 'keep_fhs' => is => 'lazy', isa => ArrayRef,
builder => sub {
$_[ 0 ]->log->can( 'filehandle' ) ? [ $_[ 0 ]->log->filehandle ] : [] };
has 'max_pidfile_wait' => is => 'ro', isa => PositiveInt, default => 15;
has 'nap_time' => is => 'ro', isa => Num, default => 0.3;
has 'out' => is => 'ro', isa => Path | SimpleStr, default => NUL;
has 'partition_cmd' => is => 'ro', isa => Bool, default => TRUE;
has 'pidfile' => is => 'lazy', isa => Path, coerce => TRUE,
builder => sub { $_[ 0 ]->rundir->tempfile };
has 'response_class' => is => 'lazy', isa => LoadableClass, coerce => TRUE,
default => 'Class::Usul::Response::IPC';
has 'rundir' => is => 'lazy', isa => Directory, coerce => TRUE,
builder => sub { $_[ 0 ]->tempdir };
has 'tempdir' => is => 'lazy', isa => Directory,
builder => sub { tmpdir }, coerce => TRUE,
handles => { _tempfile => 'tempfile' };
has 'timeout' => is => 'ro', isa => PositiveInt, default => 0;
has 'use_ipc_run' => is => 'ro', isa => Bool, default => FALSE;
has 'use_system' => is => 'ro', isa => Bool, default => FALSE;
lib/Class/Usul/IPC/Cmd.pm view on Meta::CPAN
Boolean defaults to false. If true forces the use of the C<system>
implementation
=item C<working_dir>
A L<File::DataClass::IO> object reference. Defaults to null. If set the child
will C<chdir> to this directory before executing the external command
=back
=head1 Subroutines/Methods
=head2 C<BUILDARGS>
$obj_ref = Class::Usul::IPC::Cmd->new( cmd => ..., out => ... );
$obj_ref = Class::Usul::IPC::Cmd->new( { cmd => ..., out => ... } );
$obj_ref = Class::Usul::IPC::Cmd->new( $cmd, out => ... );
$obj_ref = Class::Usul::IPC::Cmd->new( $cmd, { out => ... } );
$obj_ref = Class::Usul::IPC::Cmd->new( $cmd );
The constructor accepts a list of keys and values, a hash reference, the
command followed by a list of keys and values, the command followed by a
hash reference
=head2 C<BUILD>
Set chomp and lock on the C<pidfile>
=head2 C<run_cmd>
$response_object = Class::Usul::IPC::Cmd->run_cmd( $cmd, @args );
Can be called as a class method or an object method
Runs a given external command. If the command argument is an array reference
the internal C<fork> and C<exec> implementation will be used, if a string is
passed the L<IPC::Open3> implementation will be use instead
Returns a L<Class::Ususl::Response::IPC> object reference
=head1 Diagnostics
Passing a logger object reference in with the C<log> attribute will cause
the C<run_cmd> method to log at the debug level
=head1 Dependencies
=over 3
=item L<Class::Null>
=item L<File::DataClass>
=item L<Module::Load::Conditional>
=item L<Moo>
=item L<Sub::Install>
=item L<Try::Tiny>
=item L<Unexpected>
=back
=head1 Incompatibilities
There are no known incompatibilities in this module
=head1 Bugs and Limitations
There are no known bugs in this module. Please report problems to
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Class-Usul.
Patches are welcome
=head1 Acknowledgements
Larry Wall - For the Perl programming language
L<MooseX::Daemonize> - Stole some code from that module
=head1 Author
Peter Flanigan, C<< <pjfl@cpan.org> >>
=head1 License and Copyright
Copyright (c) 2018 Peter Flanigan. All rights reserved
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself. See L<perlartistic>
This program is distributed in the hope that it will be useful,
but WITHOUT WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE
=cut
# Local Variables:
# mode: perl
# tab-width: 3
# End:
# vim: expandtab shiftwidth=3:
( run in 1.621 second using v1.01-cache-2.11-cpan-39bf76dae61 )