Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Apologies. Here's a version that eliminates much of the extra stuff, and adds a bunch of comments:

#!/usr/bin/env perl use strict; use warnings; use Time::HiRes qw(usleep); use IO::Select; use File::Spec::Functions qw(catfile); use constant USLEEP_TIME => 25_000; # Microseconds use constant RUN_TIME => 30; # Seconds my $cmd = catfile((getpwnam($ENV{USER}))[7],'scripts','outputter'); # +This just sets up the path to the external script. print "Our command is >>>$cmd<<<\n"; open my $r, '-|', $cmd or die $!; # Open a pipe to read output f +rom a command. my $s = IO::Select->new($r); # Create an IO::Select object +on our pipe's filehandle, $r. my $pinged = 0; # Poor-man's messaging: We hav +en't received a ping yet. my $start = time(); # Record our start time so we +can calculate when to exit. while(time() < $start + RUN_TIME) { # Iterate until we run out of +time. if ($r->eof) { # Finish if the target command + has finished all output and termianted. last; } elsif ($s->can_read(0)) { # See if there's something + available to read. chomp(my $i = <$r>); # Read from our pipe and c +homp. print "\n<$i>\n"; # Print what we read. $pinged = 1 if $i eq 'ping'; # Send a message that we r +ead something. } elsif ($pinged) { # If we have a ping messag +e, print a pong. print "(pong)\n"; $pinged = 0; # And unset the message. } else { usleep USLEEP_TIME; # If there's nothing to do +, sleep briefly. print '.'; # Print something to let e +veryone know we're thinking of them. STDOUT->flush; } } # lather, rinse, repeat.

Again, the "outputter" script (terribly named) should be:

#!/usr/bin/env perl use strict; use warnings; use IO::Handle; STDOUT->autoflush(1); while (1) { print STDOUT "ping\n"; sleep 2; }

The output is going to look approximately like this:

Our command is >>>/home/......./scripts/outputter<<< ...................................................................... +.......... <ping> (pong) ...................................................................... +.......... <ping> (pong) .................................^C Command terminated

If I had let it run long enough it would time out and exit cleanly.


Dave


In reply to Re^3: Run and kill external programm after x seconds by davido
in thread Run and kill external programm after x seconds by demichi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-18 18:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found