Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
... This worked for me.

Really?  It doesn't for me — at least not with the file handles being opened to regular text files.

Buffering is only one of the problems here. The deeper issue is that with respect to select, regular disk files are defined to always be readable (even though the operation might block for a few milliseconds until the read head of the disk is positioned). In other words, if the file pointer is at the end of the file, select would still indicate that the file is readable. And because ->getline() reads until the next newline or eof, you could get partial lines (not terminated by a newline).

So, while the following sort of works, it doesn't fulfill the OP's requirement to read entire lines.

#!/usr/bin/perl use strict; use warnings; use IO::Handle; use IO::Select; my ($fname1, $fname2) = qw(1.txt 2.txt); open my $fh1, $fname1 or die $!; open my $fh2, $fname2 or die $!; my $slct = IO::Select->new(); $slct->add($fh1, $fh2); while (1) { my @canBeRead = $slct->can_read(); foreach my $fh (@canBeRead) { my $line = $fh->getline(); if (defined $line) { my $fname = $fh == $fh1 ? $fname1 : $fname2; print "$fname: $line\n" } else { sleep 1; # be nice } } }

It's effectively the same as

use IO::Handle; my ($fname1, $fname2) = qw(1.txt 2.txt); open my $fh1, $fname1 or die $!; open my $fh2, $fname2 or die $!; while (1) { foreach my $fh ($fh1, $fh2) { my $line = $fh->getline(); if (defined $line) { my $fname = $fh == $fh1 ? $fname1 : $fname2; print "$fname: $line\n" } else { sleep 1; # be nice } } }

In reply to Re^2: selecting from a number of different input sources. by almut
in thread selecting from a number of different input sources. by jasoncollins

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 exploiting the Monastery: (4)
As of 2024-04-25 12:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found