Start anew
[msysgit.git] / lib / perl5 / 5.6.1 / msys / IO / Pipe.pm
blob27b5ad03e1ad1bf29d846c05448f93452aa2a585
1 # IO::Pipe.pm
3 # Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
4 # This program is free software; you can redistribute it and/or
5 # modify it under the same terms as Perl itself.
7 package IO::Pipe;
9 require 5.005_64;
11 use IO::Handle;
12 use strict;
13 our($VERSION);
14 use Carp;
15 use Symbol;
17 $VERSION = "1.121";
19 sub new {
20 my $type = shift;
21 my $class = ref($type) || $type || "IO::Pipe";
22 @_ == 0 || @_ == 2 or croak "usage: new $class [READFH, WRITEFH]";
24 my $me = bless gensym(), $class;
26 my($readfh,$writefh) = @_ ? @_ : $me->handles;
28 pipe($readfh, $writefh)
29 or return undef;
31 @{*$me} = ($readfh, $writefh);
33 $me;
36 sub handles {
37 @_ == 1 or croak 'usage: $pipe->handles()';
38 (IO::Pipe::End->new(), IO::Pipe::End->new());
41 my $do_spawn = $^O eq 'os2';
43 sub _doit {
44 my $me = shift;
45 my $rw = shift;
47 my $pid = $do_spawn ? 0 : fork();
49 if($pid) { # Parent
50 return $pid;
52 elsif(defined $pid) { # Child or spawn
53 my $fh;
54 my $io = $rw ? \*STDIN : \*STDOUT;
55 my ($mode, $save) = $rw ? "r" : "w";
56 if ($do_spawn) {
57 require Fcntl;
58 $save = IO::Handle->new_from_fd($io, $mode);
59 # Close in child:
60 fcntl(shift, Fcntl::F_SETFD(), 1) or croak "fcntl: $!";
61 $fh = $rw ? ${*$me}[0] : ${*$me}[1];
62 } else {
63 shift;
64 $fh = $rw ? $me->reader() : $me->writer(); # close the other end
66 bless $io, "IO::Handle";
67 $io->fdopen($fh, $mode);
68 $fh->close;
70 if ($do_spawn) {
71 $pid = eval { system 1, @_ }; # 1 == P_NOWAIT
72 my $err = $!;
74 $io->fdopen($save, $mode);
75 $save->close or croak "Cannot close $!";
76 croak "IO::Pipe: Cannot spawn-NOWAIT: $err" if not $pid or $pid < 0;
77 return $pid;
78 } else {
79 exec @_ or
80 croak "IO::Pipe: Cannot exec: $!";
83 else {
84 croak "IO::Pipe: Cannot fork: $!";
87 # NOT Reached
90 sub reader {
91 @_ >= 1 or croak 'usage: $pipe->reader( [SUB_COMMAND_ARGS] )';
92 my $me = shift;
94 return undef
95 unless(ref($me) || ref($me = $me->new));
97 my $fh = ${*$me}[0];
98 my $pid = $me->_doit(0, $fh, @_)
99 if(@_);
101 close ${*$me}[1];
102 bless $me, ref($fh);
103 *$me = *$fh; # Alias self to handle
104 $me->fdopen($fh->fileno,"r")
105 unless defined($me->fileno);
106 bless $fh; # Really wan't un-bless here
107 ${*$me}{'io_pipe_pid'} = $pid
108 if defined $pid;
110 $me;
113 sub writer {
114 @_ >= 1 or croak 'usage: $pipe->writer( [SUB_COMMAND_ARGS] )';
115 my $me = shift;
117 return undef
118 unless(ref($me) || ref($me = $me->new));
120 my $fh = ${*$me}[1];
121 my $pid = $me->_doit(1, $fh, @_)
122 if(@_);
124 close ${*$me}[0];
125 bless $me, ref($fh);
126 *$me = *$fh; # Alias self to handle
127 $me->fdopen($fh->fileno,"w")
128 unless defined($me->fileno);
129 bless $fh; # Really wan't un-bless here
130 ${*$me}{'io_pipe_pid'} = $pid
131 if defined $pid;
133 $me;
136 package IO::Pipe::End;
138 our(@ISA);
140 @ISA = qw(IO::Handle);
142 sub close {
143 my $fh = shift;
144 my $r = $fh->SUPER::close(@_);
146 waitpid(${*$fh}{'io_pipe_pid'},0)
147 if(defined ${*$fh}{'io_pipe_pid'});
154 __END__
156 =head1 NAME
158 IO::Pipe - supply object methods for pipes
160 =head1 SYNOPSIS
162 use IO::Pipe;
164 $pipe = new IO::Pipe;
166 if($pid = fork()) { # Parent
167 $pipe->reader();
169 while(<$pipe> {
170 ....
174 elsif(defined $pid) { # Child
175 $pipe->writer();
177 print $pipe ....
182 $pipe = new IO::Pipe;
184 $pipe->reader(qw(ls -l));
186 while(<$pipe>) {
187 ....
190 =head1 DESCRIPTION
192 C<IO::Pipe> provides an interface to creating pipes between
193 processes.
195 =head1 CONSTRUCTOR
197 =over 4
199 =item new ( [READER, WRITER] )
201 Creates a C<IO::Pipe>, which is a reference to a newly created symbol
202 (see the C<Symbol> package). C<IO::Pipe::new> optionally takes two
203 arguments, which should be objects blessed into C<IO::Handle>, or a
204 subclass thereof. These two objects will be used for the system call
205 to C<pipe>. If no arguments are given then method C<handles> is called
206 on the new C<IO::Pipe> object.
208 These two handles are held in the array part of the GLOB until either
209 C<reader> or C<writer> is called.
211 =back
213 =head1 METHODS
215 =over 4
217 =item reader ([ARGS])
219 The object is re-blessed into a sub-class of C<IO::Handle>, and becomes a
220 handle at the reading end of the pipe. If C<ARGS> are given then C<fork>
221 is called and C<ARGS> are passed to exec.
223 =item writer ([ARGS])
225 The object is re-blessed into a sub-class of C<IO::Handle>, and becomes a
226 handle at the writing end of the pipe. If C<ARGS> are given then C<fork>
227 is called and C<ARGS> are passed to exec.
229 =item handles ()
231 This method is called during construction by C<IO::Pipe::new>
232 on the newly created C<IO::Pipe> object. It returns an array of two objects
233 blessed into C<IO::Pipe::End>, or a subclass thereof.
235 =back
237 =head1 SEE ALSO
239 L<IO::Handle>
241 =head1 AUTHOR
243 Graham Barr. Currently maintained by the Perl Porters. Please report all
244 bugs to <perl5-porters@perl.org>.
246 =head1 COPYRIGHT
248 Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
249 This program is free software; you can redistribute it and/or
250 modify it under the same terms as Perl itself.
252 =cut