File::Tail - Perl extension for reading from continously updated files
use File::Tail; $file=File::Tail->new("/some/log/file"); while (defined($line=$file->read)) { print "$line"; }
use File::Tail; $file=File::Tail->new(name=>$name, maxinterval=>300, adjustafter=>7); while (defined($line=$file->read)) { print "$line"; }
OR, you could use tie (additional parameters can be passed with the name, or can be set using $ref):
use File::Tail; my $ref=tie *FH,"File::Tail",(name=>$name); while (<FH>) { print "$_"; } }
Note that the above script will never exit. If there is nothing being written to the file, it will simply block.
You can find more synopsii in the file logwatch, which is included in the distribution.
Note: Select functionality was added in version 0.9, and it required some reworking of all routines. ***PLEASE*** let me know if you see anything strange happening.
You can find two way of using select in the file select_demo which is included in the ditribution.
The module tries very hard NOT to ``busy-wait'' on a file that has little traffic. Any time it reads new data from the file, it counts the number of new lines, and divides that number by the time that passed since data were last written to the file before that. That is considered the average time before new data will be written. When there is no new data to read, "File::Tail" sleeps for that number of seconds. Thereafter, the waiting time is recomputed dynamicaly. Note that "File::Tail" never sleeps for more than the number of seconds set by "maxinterval".
If the file does not get altered for a while, "File::Tail" gets suspicious and startschecking if the file was truncated, or moved and recreated. If anything like that had happened, "File::Tail" will quietly reopen the file, and continue reading. The only way to affect what happens on reopen is by setting the reset_tail parameter (see below). The effect of this is that the scripts need not be aware when the logfiles were rotated, they will just quietly work on.
Note that the sleep and time used are from Time::HiRes, so this module should do the right thing even if the time to sleep is less than one second.
The logwatch script (also included) demonstrates several ways of calling the methods.
You can pass several parameters to new:
Default value is 16384 (bytes).
A large internal buffer may result in worse performance (as well as increased memory usage), since File::Tail will have to do more work processing the internal buffer.
Do not complain if the file doesn't exist when it is first opened or when it is to be reopened. (File may be reopened after resetafter seconds have passed since last data was found.)
When first started, read and return C<n> lines from the file. If C<n> is zero, start at the end of file. If C<n> is negative, return the whole file.
Default is C<0>.
Same as tail, but applies after reset. (i.e. after the file has been automaticaly closed and reopened). Defaults to C<-1>, i.e. does not skip any information present in the file when it first checks it.
Why would you want it otherwise? I've seen files which have been cycled like this:
grep -v lastmonth log >newlog mv log archive/lastmonth mv newlog log kill -HUP logger
Obviously, if this happens and you have reset_tail set to c<-1>, you will suddenly get a whole bunch of lines - lines you already saw. So in this case, reset_tail should probably be set to a small positive number or even 0.
return - ignore any error (just put error message in errmsg). warn - output the error message but continue die - display error message and exit
Default is die.
For an example of usage, look at the script select_demo.
Basicaly, you call File::Tail::select just as you would normal select, with fields for rbits, wbits and ebits, as well as a timeout, however, you can tack any number of File::Tail objects (not File::Tail filehandles!) to the end.
When you do this, File::Tail's select emulates normal select, with two exceptions:
a) it will return if there is input on any of the parameters (i.e. normal filehandles) _or_ File::Tails.
b) In addition to "($nfound, $timeleft)", the return array will also contain a list of File::Tail objects which are ready for reading. $nfound will contain the correct number of filehandles to be read (i.e. both normal and File::Tails).
Once select returns, when you want to determine which File::Tail objects have input ready, you can either use the list of objects select returned, or you can check each individual object with $object->predict. This returns the ammount of time (in fractional seconds) after which the handle expects input. If it returns 0, there is input waiting. There is no guarantee that there will be input waiting after the returned number of seconds has passed. However, File::Tail won't do any I/O on the file until that time has passed.
Also note, if you are determining which files are ready for input by calling each individual predict, the $nfound value may be invalid, because one or more of File::Tail object may have become ready between the time select has returned and the time when you checked it.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |