Hi, here's something that does not require threads, powered by the Perl Many-Core Engine:
use strict;
use warnings;
use MCE::Flow chunk_size => 1;
mce_flow sub {
chomp;
printf("%s processing %s\n", $$, $_);
if (/(\w.+\w\d+.+net),(\w+)/) {
my $host = $1;
my $type = $2;
printf "%s connecting to %s\n", $$, $host;
}
printf "%s finished %s\n", $$, $_;
}, [(<DATA>)];
__DATA__
server1.net,value
server2.net,value
server3.net,value
server4.net,value
Output:
perl 11124156.pl
597 processing server3.net,value
605 processing server2.net,value
595 processing server1.net,value
600 processing server4.net,value
605 connecting to server2.net
595 connecting to server1.net
600 connecting to server4.net
605 finished server2.net,value
595 finished server1.net,value
600 finished server4.net,value
597 connecting to server3.net
597 finished server3.net,value
Hope this helps!
The way forward always starts with a minimal test.
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, 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
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.
|
|