man IO::Pipe () - supply object methods for pipes

NAME

IO::Pipe - supply object methods for pipes

SYNOPSIS

        use IO::Pipe;

        $pipe = new IO::Pipe;

        if($pid = fork()) { # Parent
            $pipe->reader();

            while(<$pipe>) {
                ...
            }

        }
        elsif(defined $pid) { # Child
            $pipe->writer();

            print $pipe ...
        }

        or

        $pipe = new IO::Pipe;

        $pipe->reader(qw(ls -l));

        while(<$pipe>) {
            ...
        }

DESCRIPTION

CWIO::Pipe provides an interface to creating pipes between processes.

CONSTRUCTOR

new ( [READER, WRITER] )
Creates an CWIO::Pipe, which is a reference to a newly created symbol (see the CWSymbol package). CWIO::Pipe::new optionally takes two arguments, which should be objects blessed into CWIO::Handle, or a subclass thereof. These two objects will be used for the system call to CWpipe. If no arguments are given then method CWhandles is called on the new CWIO::Pipe object. These two handles are held in the array part of the GLOB until either CWreader or CWwriter is called.

METHODS

reader ([ARGS])
The object is re-blessed into a sub-class of CWIO::Handle, and becomes a handle at the reading end of the pipe. If CWARGS are given then CWfork is called and CWARGS are passed to exec.
writer ([ARGS])
The object is re-blessed into a sub-class of CWIO::Handle, and becomes a handle at the writing end of the pipe. If CWARGS are given then CWfork is called and CWARGS are passed to exec.
handles ()
This method is called during construction by CWIO::Pipe::new on the newly created CWIO::Pipe object. It returns an array of two objects blessed into CWIO::Pipe::End, or a subclass thereof.

SEE ALSO

IO::Handle

AUTHOR

Graham Barr. Currently maintained by the Perl Porters. Please report all bugs to <perl5-porters@perl.org>.

COPYRIGHT

Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.