]> err.no Git - dpkg/commitdiff
Dpkg::IPC: extend fork_and_exec() to create pipes on request
authorRaphael Hertzog <hertzog@debian.org>
Fri, 15 Feb 2008 18:30:21 +0000 (19:30 +0100)
committerRaphael Hertzog <hertzog@debian.org>
Fri, 15 Feb 2008 18:30:21 +0000 (19:30 +0100)
* scripts/Dpkg/IPC.pm (fork_and_exec): Now accept from_pipe and
to_pipe parameters that should point to a scalar reference. The
scalar will be set with the filehandle of the other side of the
created pipe.

scripts/Dpkg/IPC.pm

index 090ecc976c00a5b1f54762982fee2d02cf12ec79..b3937cd6b2ba7fd3eaec1d2dcb5f588ca3165784 100644 (file)
@@ -28,6 +28,7 @@ our @EXPORT = qw(fork_and_exec wait_child);
 
 sub fork_and_exec {
     my (%opts) = @_;
+    $opts{"close_in_child"} ||= [];
     error("exec parameter is mandatory in fork_and_exec()") unless $opts{"exec"};
     my @prog;
     if (ref($opts{"exec"}) =~ /ARRAY/) {
@@ -37,6 +38,20 @@ sub fork_and_exec {
     } else {
        error(_g("invalid exec parameter in fork_and_exec()"));
     }
+    # Create pipes if needed
+    my ($input_pipe, $output_pipe);
+    if ($opts{"from_pipe"}) {
+       pipe($opts{"from_handle"}, $input_pipe) ||
+               syserr(_g("pipe for %s"), "@prog");
+       ${$opts{"from_pipe"}} = $input_pipe;
+       push @{$opts{"close_in_child"}}, $input_pipe;
+    }
+    if ($opts{"to_pipe"}) {
+       pipe($output_pipe, $opts{"to_handle"}) ||
+               syserr(_g("pipe for %s"), "@prog");
+       ${$opts{"to_pipe"}} = $output_pipe;
+       push @{$opts{"close_in_child"}}, $output_pipe;
+    }
     # Fork and exec
     my $pid = fork();
     syserr(_g("fork for %s"), "@prog") unless defined $pid;