Here's a self-contained version of that code.
use Gtk2 '-init';
use Gtk2::Helper;
use Glib qw/TRUE FALSE/;
use IO::Handle;
my $cmd = [perl => -e => '$|++; for my $i (0..4) { $sum+= $i; print
+"Line $i: sum = $sum\r"; sleep 1;}'];
my $cb = sub {print "CB: >>" . shift() . "<<\n";};
open(my $fh, '-|', @$cmd) or die "failed to launch external command:
+ $!";
$fh->blocking(0);
$tag = Gtk2::Helper->add_watch($fh->fileno, in => sub {
if ($fh->eof) {
print "pipe EOF\n";
Gtk2::Helper->remove_watch($tag);
close $fh;
return;
}
while (1) {
my $buf;
$fh->sysread($buf, 4095);
print "READ: >>$buf<<\n";
last unless $buf;
for (split(/[\r\n]/, $buf)) {
$cb->($_);
}
}
# keep watch active
return TRUE;
});
Gtk2->main;
It goes into EOF-loop if it says last unless $buf, and into slurp mode if it says return FALSE unless $buf
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|