This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: Open3.pm tries to close unopened file handle
[perl5.git] / lib / IPC / Open2.pm
1 package IPC::Open2;
2
3 use strict;
4 use vars qw($VERSION @ISA @EXPORT);
5
6 require 5.000;
7 require Exporter;
8
9 $VERSION        = 1.01;
10 @ISA            = qw(Exporter);
11 @EXPORT         = qw(open2);
12
13 =head1 NAME
14
15 IPC::Open2, open2 - open a process for both reading and writing
16
17 =head1 SYNOPSIS
18
19     use IPC::Open2;
20     $pid = open2(\*RDR, \*WTR, 'some cmd and args');
21       # or
22     $pid = open2(\*RDR, \*WTR, 'some', 'cmd', 'and', 'args');
23
24 =head1 DESCRIPTION
25
26 The open2() function spawns the given $cmd and connects $rdr for
27 reading and $wtr for writing.  It's what you think should work 
28 when you try
29
30     open(HANDLE, "|cmd args|");
31
32 If $rdr is a string (that is, a bareword filehandle rather than a glob
33 or a reference) and it begins with ">&", then the child will send output
34 directly to that file handle.  If $wtr is a string that begins with
35 "<&", then WTR will be closed in the parent, and the child will read
36 from it directly.  In both cases, there will be a dup(2) instead of a
37 pipe(2) made.
38
39 open2() returns the process ID of the child process.  It doesn't return on
40 failure: it just raises an exception matching C</^open2:/>.
41
42 =head1 WARNING 
43
44 It will not create these file handles for you.  You have to do this yourself.
45 So don't pass it empty variables expecting them to get filled in for you.
46
47 Additionally, this is very dangerous as you may block forever.
48 It assumes it's going to talk to something like B<bc>, both writing to
49 it and reading from it.  This is presumably safe because you "know"
50 that commands like B<bc> will read a line at a time and output a line at
51 a time.  Programs like B<sort> that read their entire input stream first,
52 however, are quite apt to cause deadlock.  
53
54 The big problem with this approach is that if you don't have control 
55 over source code being run in the the child process, you can't control what it does 
56 with pipe buffering.  Thus you can't just open a pipe to C<cat -v> and continually
57 read and write a line from it.
58
59 =head1 SEE ALSO
60
61 See L<IPC::Open3> for an alternative that handles STDERR as well.  This
62 function is really just a wrapper around open3().
63
64 =cut
65
66 # &open2: tom christiansen, <tchrist@convex.com>
67 #
68 # usage: $pid = open2('rdr', 'wtr', 'some cmd and args');
69 #    or  $pid = open2('rdr', 'wtr', 'some', 'cmd', 'and', 'args');
70 #
71 # spawn the given $cmd and connect $rdr for
72 # reading and $wtr for writing.  return pid
73 # of child, or 0 on failure.  
74
75 # WARNING: this is dangerous, as you may block forever
76 # unless you are very careful.  
77
78 # $wtr is left unbuffered.
79
80 # abort program if
81 #       rdr or wtr are null
82 #       a system call fails
83
84 require IPC::Open3;
85
86 sub open2 {
87     my ($read, $write, @cmd) = @_;
88     local $Carp::CarpLevel = $Carp::CarpLevel + 1;
89     return IPC::Open3::_open3('open2', scalar caller,
90                                 $write, $read, '>&STDERR', @cmd);
91 }
92
93 1