Beefy Boxes and Bandwidth Generously Provided by pair Networks Ovid
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Pipes (for interprocess communication)

by penguin_asylum (Sexton)
on Dec 09, 2005 at 14:36 UTC ( [id://515636]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Pipes (for interprocess communication)
in thread Pipes (for interprocess communication)

Sorry, one more question.
Why is it that "print ''.<$reader>" works, but not just "print <$reader>" ?
  • Comment on Re^2: Pipes (for interprocess communication)

Replies are listed 'Best First'.
Re^3: Pipes (for interprocess communication)
by Celada (Monk) on Dec 09, 2005 at 16:06 UTC

    .<$reader> forces scalar context while <$reader> uses the context supplied by the print, which is array context. In array context, the <> operator sucks in the whole rest of the file.

    Why does this not work? Because it is going to wait indefinately the the end of the file to come. On pipes, the end of file comes when the other end of the pipe is closed. In robin's example, the pipe is never closed.

    Mostly for this reason, the usual paradigm is this:

    1. Create the pipe
    2. fork
    3. in the parent, close the reader and use only the writer
    4. in the child, close the writer and use only the reader.
    or, of course,
    1. Create the pipe
    2. fork
    3. in the parent, close the writer and use only the reader
    4. in the child, close the reader and use only the writer.

    Trying to use both the reader and the writer end of the same pipe in the same process leads to deadlock. See the documentation of things like IPC::Open2 for how this can occur with a longer chain of pipes too.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://515636]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.