/usr/share/perl5/File/ReadBackwards.pm is in libfile-readbackwards-perl 1.05-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | # File::ReadBackwards.pm
# Copyright (C) 2003 by Uri Guttman. All rights reserved.
# mail bugs, comments and feedback to uri@stemsystems.com
package File::ReadBackwards ;
use strict ;
use vars qw( $VERSION ) ;
$VERSION = '1.05' ;
use Symbol ;
use Fcntl qw( :seek O_RDONLY ) ;
use Carp ;
my $max_read_size = 1 << 13 ;
my $default_rec_sep ;
BEGIN {
# set the default record separator according to this OS
# this needs testing and expansion.
# look for CR/LF types
# then look for CR types
# else it's a LF type
if ( $^O =~ /win32/i || $^O =~ /vms/i ) {
$default_rec_sep = "\015\012" ;
}
elsif ( $^O =~ /mac/i ) {
$default_rec_sep = "\015" ;
}
else {
$default_rec_sep = "\012" ;
}
# the tied interface is exactly the same as the object one, so all we
# need to do is to alias the subs with typeglobs
*TIEHANDLE = \&new ;
*READLINE = \&readline ;
*EOF = \&eof ;
*CLOSE = \&close ;
*TELL = \&tell ;
# added getline alias for compatibility with IO::Handle
*getline = \&readline ;
}
# constructor for File::ReadBackwards
sub new {
my( $class, $filename, $rec_sep, $sep_is_regex ) = @_ ;
# check that we have a filename
defined( $filename ) || return ;
# see if this file uses the default of a cr/lf separator
# those files will get cr/lf converted to \n
$rec_sep ||= $default_rec_sep ;
my $is_crlf = $rec_sep eq "\015\012" ;
# get a handle and open the file
my $handle = gensym ;
sysopen( $handle, $filename, O_RDONLY ) || return ;
binmode $handle ;
# seek to the end of the file and get its size
my $seek_pos = sysseek( $handle, 0, SEEK_END ) or return ;
# get the size of the first block to read,
# either a trailing partial one (the % size) or full sized one (max read size)
my $read_size = $seek_pos % $max_read_size || $max_read_size ;
# create the object
my $self = bless {
'file_name' => $filename,
'handle' => $handle,
'read_size' => $read_size,
'seek_pos' => $seek_pos,
'lines' => [],
'is_crlf' => $is_crlf,
'rec_sep' => $rec_sep,
'sep_is_regex' => $sep_is_regex,
}, $class ;
return( $self ) ;
}
# read the previous record from the file
#
sub readline {
my( $self, $line_ref ) = @_ ;
my $read_buf ;
# get the buffer of lines
my $lines_ref = $self->{'lines'} ;
return unless $lines_ref ;
while( 1 ) {
# see if there is more than 1 line in the buffer
if ( @{$lines_ref} > 1 ) {
# we have a complete line so return it
# and convert those damned cr/lf lines to \n
$lines_ref->[-1] =~ s/\015\012/\n/
if $self->{'is_crlf'} ;
return( pop @{$lines_ref} ) ;
}
# we don't have a complete, so have to read blocks until we do
my $seek_pos = $self->{'seek_pos'} ;
# see if we are at the beginning of the file
if ( $seek_pos == 0 ) {
# the last read never made more lines, so return the last line in the buffer
# if no lines left then undef will be returned
# and convert those damned cr/lf lines to \n
$lines_ref->[-1] =~ s/\015\012/\n/
if @{$lines_ref} && $self->{'is_crlf'} ;
return( pop @{$lines_ref} ) ;
}
# we have to read more text so get the handle and the current read size
my $handle = $self->{'handle'} ;
my $read_size = $self->{'read_size'} ;
# after the first read, always read the maximum size
$self->{'read_size'} = $max_read_size ;
# seek to the beginning of this block and save the new seek position
$seek_pos -= $read_size ;
sysseek( $handle, $seek_pos, SEEK_SET ) ;
$self->{'seek_pos'} = $seek_pos ;
# read in the next (previous) block of text
my $read_cnt = sysread( $handle, $read_buf, $read_size ) ;
# prepend the read buffer to the leftover (possibly partial) line
my $text = $read_buf ;
$text .= shift @{$lines_ref} if @{$lines_ref} ;
# split the buffer into a list of lines
# this may want to be $/ but reading files backwards assumes plain text and
# newline separators
@{$lines_ref} = ( $self->{'sep_is_regex'} ) ?
$text =~ /(.*?$self->{'rec_sep'}|.+)/gs :
$text =~ /(.*?\Q$self->{'rec_sep'}\E|.+)/gs ;
#print "Lines \n=>", join( "<=\n=>", @{$lines_ref} ), "<=\n" ;
}
}
sub eof {
my ( $self ) = @_ ;
my $seek_pos = $self->{'seek_pos'} ;
my $lines_count = @{ $self->{'lines'} } ;
return( $seek_pos == 0 && $lines_count == 0 ) ;
}
sub tell {
my ( $self ) = @_ ;
my $seek_pos = $self->{'seek_pos'} ;
$seek_pos + length(join "", @{ $self->{'lines'} });
}
sub get_handle {
my ( $self ) = @_ ;
my $handle = $self->{handle} ;
seek( $handle, $self->tell, SEEK_SET ) ;
return $handle ;
}
sub close {
my ( $self ) = @_ ;
my $handle = delete( $self->{'handle'} ) ;
delete( $self->{'lines'} ) ;
CORE::close( $handle ) ;
}
__END__
=head1 NAME
File::ReadBackwards.pm -- Read a file backwards by lines.
=head1 SYNOPSIS
use File::ReadBackwards ;
# Object interface
$bw = File::ReadBackwards->new( 'log_file' ) or
die "can't read 'log_file' $!" ;
while( defined( $log_line = $bw->readline ) ) {
print $log_line ;
}
# ... or the alternative way of reading
until ( $bw->eof ) {
print $bw->readline ;
}
# Tied Handle Interface
tie *BW, 'File::ReadBackwards', 'log_file' or
die "can't read 'log_file' $!" ;
while( <BW> ) {
print ;
}
=head1 DESCRIPTION
This module reads a file backwards line by line. It is simple to use,
memory efficient and fast. It supports both an object and a tied handle
interface.
It is intended for processing log and other similar text files which
typically have their newest entries appended to them. By default files
are assumed to be plain text and have a line ending appropriate to the
OS. But you can set the input record separator string on a per file
basis.
=head1 OBJECT INTERFACE
These are the methods in C<File::ReadBackwards>' object interface:
=head2 new( $file, [$rec_sep], [$sep_is_regex] )
C<new> takes as arguments a filename, an optional record separator and
an optional flag that marks the record separator as a regular
expression. It either returns the object on a successful open or undef
upon failure. $! is set to the error code if any.
=head2 readline
C<readline> takes no arguments and it returns the previous line in the
file or undef when there are no more lines in the file. If the file is
a non-seekable file (e.g. a pipe), then undef is returned.
=head2 getline
C<getline> is an alias for the readline method. It is here for
compatibility with the IO::* classes which has a getline method.
=head2 eof
C<eof> takes no arguments and it returns true when readline() has
iterated through the whole file.
=head2 close
C<close> takes no arguments and it closes the handle
=head2 tell
C<tell> takes no arguments and it returns the current filehandle position.
This value may be used to seek() back to this position using a normal
file handle.
=head2 get_handle
C<get_handle> takes no arguments and it returns the internal Perl
filehandle used by the File::ReadBackwards object. This handle may be
used to read the file forward. Its seek position will be set to the
position that is returned by the tell() method. Note that
interleaving forward and reverse reads may produce unpredictable
results. The only use supported at present is to read a file backward
to a certain point, then use 'handle' to extract the handle, and read
forward from that point.
=head1 TIED HANDLE INTERFACE
=head2 tie( *HANDLE, 'File::ReadBackwards', $file, [$rec_sep], [$sep_is_regex] )
The TIEHANDLE, READLINE, EOF, CLOSE and TELL methods are aliased to
the new, readline, eof, close and tell methods respectively so refer
to them for their arguments and API. Once you have tied a handle to
File::ReadBackwards the only I/O operation permissible is <> which
will read the previous line. You can call eof() and close() on the
tied handle as well. All other tied handle operations will generate an
unknown method error. Do not seek, write or perform any other
unsupported operations on the tied handle.
=head1 LINE AND RECORD ENDINGS
Since this module needs to use low level I/O for efficiency, it can't
portably seek and do block I/O without managing line ending conversions.
This module supports the default record separators of normal line ending
strings used by the OS. You can also set the separator on a per file
basis.
The record separator is a regular expression by default, which differs
from the behavior of $/.
Only if the record separator is B<not> specified and it defaults to
CR/LF (e.g, VMS, redmondware) will it will be converted to a single
newline. Unix and MacOS files systems use only a single character for
line endings and the lines are left unchanged. This means that for
native text files, you should be able to process their lines backwards
without any problems with line endings. If you specify a record
separator, no conversions will be done and you will get the records as
if you read them in binary mode.
=head1 DESIGN
It works by reading a large (8kb) block of data from the end of the
file. It then splits them on the record separator and stores a list of
records in the object. Each call to readline returns the top record of
the list and if the list is empty it refills it by reading the previous
block from the file and splitting it. When the beginning of the file is
reached and there are no more lines, undef is returned. All boundary
conditions are handled correctly i.e. if there is a trailing partial
line (no newline) it will be the first line returned and lines larger
than the read buffer size are handled properly.
=head1 NOTES
There is no support for list context in either the object or tied
interfaces. If you want to slurp all of the lines into an array in
backwards order (and you don't care about memory usage) just do:
@back_lines = reverse <FH>.
This module is only intended to read one line at a time from the end of
a file to the beginning.
=head1 AUTHOR
Uri Guttman, uri@stemsystems.com
=head1 COPYRIGHT
Copyright (C) 2003 by Uri Guttman. All rights reserved. This program is
free software; you can redistribute it and/or modify it under the same
terms as Perl itself.
=cut
|