Server IP : 103.119.228.120 / Your IP : 3.149.29.98 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/local/ssl/local/ssl/local/ssl/local/ssl/local/share/perl5/IPC/ |
Upload File : |
package IPC::Pipeline; # Copyright (c) 2014, cPanel, Inc. # All rights reserved. # http://cpanel.net/ # # This is free software; you can redistribute it and/or modify it under the same # terms as Perl itself. See the LICENSE file for further details. use strict; use warnings; use POSIX (); BEGIN { use Exporter (); use vars qw( $VERSION @ISA @EXPORT ); our $VERSION = '1.0'; our @ISA = ('Exporter'); our @EXPORT = ('pipeline'); } sub exec_filter { my ($filter) = @_; if ( ref($filter) eq 'CODE' ) { exit $filter->(); } elsif ( ref($filter) eq 'ARRAY' ) { exec(@$filter) or die("Cannot exec(): $!"); } die('Invalid filter'); } sub pipeline { my @filters = @_[ 3 .. $#_ ]; die('Not enough arguments') unless @_ >= 4; # # Validate the filters and die early. # foreach my $filter (@filters) { next if ref($filter) =~ /^CODE|ARRAY$/; die('Filter passed is not a CODE reference or ARRAY containing command and arguments'); } # # Create the initial pipe for passing data into standard input to the first # filter passed. Share a single pipe for standard error use for each # process. # pipe my ( $child_out, $in ) or die("Cannot create a file handle pair for standard input piping: $!"); pipe my ( $error_out, $error_in ) or die("Cannot create a file handle pair for standard error piping: $!"); my @pids; foreach my $filter (@filters) { pipe my ( $out, $child_in ) or die("Cannot create a file handle pair for standard output piping: $!"); my $pid = fork(); if ( !defined($pid) ) { die("Cannot fork(): $!"); } elsif ( $pid == 0 ) { open( STDIN, '<&=' . fileno($child_out) ) or die("Cannot dup2() last output fd to current child stdin: $!"); open( STDOUT, '>&=' . fileno($child_in) ) or die("Cannot dup2() last input fd to current child stdout: $!"); open( STDERR, '>&=' . fileno($error_in) ) or die("Cannot dup2() error pipe input to current child stderr: $!"); exec_filter($filter); } # # This last child STDOUT file handle should be duplicated onto the next # process' standard input reader, or will be passed as the last child # output file descriptor if no other subsequent commands are left # to be run. # $child_out = $out; push @pids, $pid; } # # Substitute the first three arguments passed by the user with the file # handle on the parent's writing end of the initial pipe created for # writing to the first command, the last output file handle for the # last command, and the standard error handle. If typeglobs or numeric # file descriptors for existing file handles are passed, an attempt will # be made to dup2() them as appropriate. # # The evals around the assignments are present so that we don't die when the # argument passed in is undef. Perl 5.19 and newer don't like that. # [perl #7508, #109726] if ( !defined $_[0] ) { eval { $_[0] = $in }; } elsif ( ref( $_[0] ) eq 'GLOB' ) { open( $_[0], '>&=' . fileno($in) ); } else { POSIX::dup2( fileno($in), $_[0] ); } if ( !defined $_[1] ) { eval { $_[1] = $child_out }; } elsif ( ref( $_[1] ) eq 'GLOB' ) { open( $_[1], '<&=' . fileno($child_out) ); } else { POSIX::dup2( fileno($child_out), $_[1] ); } if ( !defined $_[2] ) { eval { $_[2] = $error_out }; } elsif ( ref( $_[2] ) eq 'GLOB' ) { open( $_[2], '<&=' . fileno($error_out) ); } else { POSIX::dup2( fileno($error_out), $_[2] ); } return wantarray ? @pids : \@pids; } 1; __END__ =head1 NAME IPC::Pipeline - Create a shell-like pipeline of many running commands =head1 SYNOPSIS use IPC::Pipeline; my @pids = pipeline( my $first_child_in, my $last_child_out, my $err, [qw(filter1 args)], sub { filter2(); return 0 }, [qw(filter3 args)], ... [qw(commandN args)] ); ... do stuff ... my %statuses = map { waitpid($_, 0); $_ => ($? >> 8); } @pids; =head1 DESCRIPTION B<IPC::Pipeline> exports a single function C<pipeline()>. Similar in calling convention to L<IPC::Open3>, C<pipeline()> spawns N children, connecting the first child to the C<$first_child_in> handle, the final child to C<$last_child_out>, and each child to a shared standard error handle, C<$err>. Each subsequent filter specified causes a new process to be C<fork()>ed. Each process is linked to the last with a file descriptor pair created by C<pipe()>, using C<dup2()> to chain each process' standard input to the last standard output. B<IPC::Pipeline> does not work on B<MSWin32>, but it works on B<cygwin>. =head2 FEATURES B<IPC::Pipeline> accepts external commands to be executed in the form of ARRAY references containing the command name and each argument, as well as CODE references that are executed within their own processes as well, each as independent parts of a pipeline. =head3 ARRAY REFS When a filter is passed in the form of an ARRAY containing an external system command, each such item is executed in its own subprocess in the following manner. exec(@$filter) or die("Cannot exec(): $!"); =head3 CODE REFS When a filter is passed in the form of a CODE ref, each such item is executed in its own subprocess in the following way. exit $filter->(); =head2 BEHAVIOR If fileglobs or numeric file descriptors are passed in any of the three positional parameters, then they will be duplicated onto the file handles allocated as a result of the process pipelining. Otherwise, simple scalar assignment will be performed. Like L<IPC::Open3>, C<pipeline()> returns immediately after spawning the process chain, though differing slightly in that the IDs of each process is returned in order of specification in a list when called in array context. When called in scalar context, an ARRAY reference of the process IDs will be returned. Also like L<IPC::Open3>, one may use C<select()> to multiplex reading and writing to each of the handles returned by C<pipeline()>, preferably with non-buffered L<sysread()|perlfunc/sysread> and L<syswrite()|perlfunc/syswrite> calls. Using this to handle reading standard output and error from the children is ideal, as blocking and buffering considerations are alleviated. =head2 CAVEATS If any child process dies prematurely, or any of the piped file handles are closed for any reason, the calling process inherits the kernel behavior of receiving a C<SIGPIPE>, which requires the installation of a signal handler for appropriate recovery. Unlike L<IPC::Open3>, B<IPC::Pipeline> will NOT redirect child process stderr to stdout if no file handle for stderr is specified. As of version 0.6, the caller will always need to handle standard error, to prevent any children from blocking; it would make little sense to pass one process' standard error as an input to the next process. =head1 EXAMPLE ONE - OUTPUT ONLY The following example implements a quick and dirty, but relatively sane tar and gzip solution. For proper error handling from any of the children, use C<select()> to multiplex the output and error streams. use IPC::Pipeline; my @paths = qw(/some /random /locations); open(my $err, '<', '/dev/null'); my @pids = pipeline(my ($in, $out), $err, [qw(tar pcf -), @paths], ['gzip'] ); open(my $fh, '>', 'file.tar.gz'); close $in; while (my $len = sysread($out, my $buf, 512)) { syswrite($fh, $buf, $len); } close $fh; close $out; # # We may need to wait for the children to die in some extraordinary # circumstances. # foreach my $pid (@pids) { waitpid($pid, 1); } =head1 EXAMPLE TWO - INPUT AND OUTPUT The following solution implements a true I/O stream filter as provided by any Unix-style shell. use IPC::Pipeline; open(my $err, '<', '/dev/null'); my @pids = pipeline(my ($in, $out), $err, [qw(tr A-Ma-mN-Zn-z N-Zn-zA-Ma-m)], [qw(cut -d), ':', qw(-f 2)] ); my @records = qw( foo:bar:baz eins:zwei:drei cats:dogs:rabbits ); foreach my $record (@records) { print $in $record ."\n"; } close $in; while (my $len = sysread($out, my $buf, 512)) { syswrite(STDOUT, $buf, $len); } close $out; foreach my $pid (@pids) { waitpid($pid, 1); } =head1 EXAMPLE THREE - MIXING COMMANDS AND CODEREFS The following solution demonstrates the ability of IPC::Pipeline to execute CODE references in the midst of a pipeline. use IPC::Pipeline; open(my $err, '<', '/dev/null'); my @pids = pipeline(my ($in, $out), $err, sub { print 'cats'; return 0 }, [qw(tr acst lbhe)] ); close $in; while (my $line = readline($out)) { chomp $line; print "Got '$line'\n"; } close $out; =head1 SEE ALSO =over =item L<IPC::Open3> =item L<IPC::Run>, for a Swiss Army knife of Unix I/O gizmos It should be mentioned that mst's L<IO::Pipeline> has very little in common with B<IPC::Pipeline>. =back =head1 AUTHOR Written by Xan Tronix <xan@cpan.org> =head1 COPYRIGHT Copyright (c) 2014, cPanel, Inc. All rights reserved. http://cpanel.net/ This is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See the LICENSE file for further details.