]> err.no Git - dpkg/commitdiff
Dpkg::IPC: new module to handle common IPC
authorRaphael Hertzog <hertzog@debian.org>
Fri, 15 Feb 2008 14:45:10 +0000 (15:45 +0100)
committerRaphael Hertzog <hertzog@debian.org>
Fri, 15 Feb 2008 14:45:10 +0000 (15:45 +0100)
* scripts/Dpkg/IPC.pm: New module handling IPC. Started with
fork_and_exec() and wait_child(). STDIN/STDOUT of the child
process can be easily redirected to a file or any other
filehandle.

debian/dpkg-dev.install
scripts/Dpkg/IPC.pm [new file with mode: 0644]
scripts/Makefile.am
scripts/po/POTFILES.in

index b6eeb462dca358d5ad75d30da40170a3962dc98e..db4d00d68fff60d26dbae4ffbf2fe5516f672e66 100644 (file)
@@ -71,6 +71,7 @@ usr/share/perl5/Dpkg/Changelog/Debian.pm
 usr/share/perl5/Dpkg/Deps.pm
 usr/share/perl5/Dpkg/ErrorHandling.pm
 usr/share/perl5/Dpkg/Fields.pm
+usr/share/perl5/Dpkg/IPC.pm
 usr/share/perl5/Dpkg/Path.pm
 usr/share/perl5/Dpkg/Shlibs
 usr/share/perl5/Dpkg/Shlibs.pm
diff --git a/scripts/Dpkg/IPC.pm b/scripts/Dpkg/IPC.pm
new file mode 100644 (file)
index 0000000..090ecc9
--- /dev/null
@@ -0,0 +1,80 @@
+# Copyright 2008 Raphaël Hertzog <hertzog@debian.org>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+package Dpkg::IPC;
+
+use strict;
+use warnings;
+
+use Dpkg::ErrorHandling qw(error syserr subprocerr);
+use Dpkg::Gettext;
+
+use Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT = qw(fork_and_exec wait_child);
+
+sub fork_and_exec {
+    my (%opts) = @_;
+    error("exec parameter is mandatory in fork_and_exec()") unless $opts{"exec"};
+    my @prog;
+    if (ref($opts{"exec"}) =~ /ARRAY/) {
+       push @prog, @{$opts{"exec"}};
+    } elsif (not ref($opts{"exec"})) {
+       push @prog, $opts{"exec"};
+    } else {
+       error(_g("invalid exec parameter in fork_and_exec()"));
+    }
+    # Fork and exec
+    my $pid = fork();
+    syserr(_g("fork for %s"), "@prog") unless defined $pid;
+    if (not $pid) {
+       # Redirect STDIN if needed
+       if ($opts{"from_file"}) {
+           open(STDIN, "<", $opts{"from_file"}) ||
+               syserr(_g("cannot open %s"), $opts{"from_file"});
+       } elsif ($opts{"from_handle"}) {
+           open(STDIN, "<&", $opts{"from_handle"}) || syserr(_g("reopen stdin"));
+           close($opts{"from_handle"}); # has been duped, can be closed
+       }
+       # Redirect STDOUT if needed
+       if ($opts{"to_file"}) {
+           open(STDOUT, ">", $opts{"to_file"}) ||
+               syserr(_g("cannot write %s"), $opts{"to_file"});
+       } elsif ($opts{"to_handle"}) {
+           open(STDOUT, ">&", $opts{"to_handle"}) || syserr(_g("reopen stdout"));
+           close($opts{"to_handle"}); # has been duped, can be closed
+       }
+       # Close some inherited filehandles
+        close($_) foreach (@{$opts{"close_in_child"}});
+       # Execute the program
+        exec(@prog) or syserr(_g("exec %s"), "@prog");
+    }
+    # Close handle that we can't use any more
+    close($opts{"from_handle"}) if exists $opts{"from_handle"};
+    close($opts{"to_handle"}) if exists $opts{"to_handle"};
+
+    return $pid;
+}
+
+sub wait_child {
+    my ($pid, %opts) = @_;
+    $opts{"cmdline"} ||= _g("child process");
+    error(_g("no PID set, cannot wait end of process")) unless $pid;
+    $pid == waitpid($pid, 0) or syserr(_g("wait for %s"), $opts{"cmdline"});
+    subprocerr($opts{"cmdline"}) if $?;
+}
+
+1;
index 8d91d9df7538874c705fd8ccb381e5972698a0eb..4d79817bc9dd58dcac5a0a5b9fcada3bd7856e63 100644 (file)
@@ -95,6 +95,7 @@ nobase_dist_perllib_DATA = \
        Dpkg/ErrorHandling.pm \
        Dpkg/Fields.pm \
        Dpkg/Gettext.pm \
+       Dpkg/IPC.pm \
        Dpkg/Path.pm \
        Dpkg/Shlibs.pm \
        Dpkg/Shlibs/Objdump.pm \
index 4a14b35f0edbef793336ee79a22a27b0ba6f4875..240ff28fd0d457eb73b3b4c34cdb7d8025dccd67 100644 (file)
@@ -22,6 +22,7 @@ scripts/Dpkg/Control.pm
 scripts/Dpkg/Deps.pm
 scripts/Dpkg/ErrorHandling.pm
 scripts/Dpkg/Fields.pm
+scripts/Dpkg/IPC.pm
 scripts/Dpkg/Shlibs.pm
 scripts/Dpkg/Shlibs/Objdump.pm
 scripts/Dpkg/Shlibs/SymbolFile.pm