Except that this doesn't work. Try reading the last N lines from a file with N-5 lines, or a file with < $bufsiz bytes. :)
I had a version that used buffers and was a virtual clone of the algorithm in tail.c, except that I got lost and frustrated in the boundary conditions and really didn't care anymore. Laziness and impatience.
If you want to take a stab at doing this right, be my guest. I just don't want to do the requisite testing, because the test conditions are yucky:
- File of L lines reading:
- L lines
- L+l lines
- L-l lines
- 0 lines
- Where bufsiz:
- < size of the file
- > size of the file
- Some even multiple of the size of the file
- Some even multiple of the size of the file less some portion of bufsz
- == size of the file
Basically all of the combinations of these. I got all but the last two coded with nice buffering action.
After consideration, I figured I'd let the OS worry about buffering and JFDI. As a matter of fact, if you use getc()instead of sysread() (and seek instead of sysseek, etc..) the STDIO package would take care of most of this buffering nonsense anyway.
sub lastn {
my($file, $lines)=@_;
my $fh;
$lines++;
if (! open($fh, $file) ) {
print "Can't open $file: $!";
return;
}
binmode($fh);
seek($fh, 0, 2); # Seek to end
my $nlcount=0;
while($nlcount<$lines) {
last unless seek($fh, -1, 1);
$_=getc($fh);
die unless defined $_;
$nlcount++ if ( $_ eq "\n");
last if $nlcount==$lines;
last unless (seek($fh, -1, 1));
}
$fh;
}
There is such as thing as too much optimizing. :)
Update: with example.
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.