The parent pid sends a string to the child pid, which the child prints out. The child then sleeps for 2 seconds before sending a string to the parent. Instead of locking up completaly the parent prints "Waiting...\n" until there is input for it to read.
I wrote this to encorperate it into a larger Tk script which I don't want freezing when it forks off to download information.
NOTE: This does not work on Windows (hence the name "Unix Sockets")!
The code is a based on of "pipe2" from perlipc. See also: IO::Socket, IO::Select, and perlipc.
#!/usr/bin/perl -w
use strict;
use Socket;
use IO::Socket;
use IO::Select;
socketpair(CHILD, PARENT, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
or die "socketpair: $!";
CHILD->autoflush(1);
PARENT->autoflush(1);
my $pid;
my $s = IO::Select->new();
$s->add(\*CHILD);
if ( $pid = fork ) {
close PARENT;
print CHILD "Parent Pid $$ is sending this\n";
#chomp(my $line = <CHILD>);
my $line;
while ( 1 ) {
if ( $s->can_read(0) ) {
foreach my $handle ( $s->can_read(0) ) {
recv($handle, $line, 1024, 0);
}
last;
}
print "Waiting...\n";
}
chomp $line;
print "Parent Pid $$ just read this: '$line'\n";
close CHILD;
waitpid($pid, 0);
} else {
die "cannot fork: $!" unless defined $pid;
close CHILD;
chomp(my $line = <PARENT>);
print "Child Pid $$ just read this: '$line'\n";
sleep 2;
print PARENT "Child Pid $$ is sending this\n";
close PARENT;
exit;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.