POE::Wheel::FollowTail - follow the tail of an ever-growing file


NAME

POE::Wheel::FollowTail - follow the tail of an ever-growing file


SYNOPSIS

  $wheel = POE::Wheel::FollowTail->new(
    Filename     => $file_name,                    # File to tail
    Driver       => POE::Driver::Something->new(), # How to read it
    Filter       => POE::Filter::Something->new(), # How to parse it
    PollInterval => 1,                  # How often to check it
    InputEvent   => $input_event_name,  # Event to emit upon input
    ErrorEvent   => $error_event_name,  # Event to emit upon error
    ResetEvent   => $reset_event_name,  # Event to emit on file reset
    SeekBack     => $offset,            # How far from EOF to start
    Seek         => $offset,            # How far from BOF to start
  );
  $wheel = POE::Wheel::FollowTail->new(
    Handle       => $open_file_handle,             # File to tail
    Driver       => POE::Driver::Something->new(), # How to read it
    Filter       => POE::Filter::Something->new(), # How to parse it
    PollInterval => 1,                  # How often to check it
    InputEvent   => $input_event_name,  # Event to emit upon input
    ErrorEvent   => $error_event_name,  # Event to emit upon error
    # No reset event available.
    SeekBack     => $offset,            # How far from EOF to start
    Seek         => $offset,            # How far from BOF to start
  );
  $pos = $wheel->tell();  # Get the current log position.


DESCRIPTION

FollowTail follows the end of an ever-growing file, such as a log of system events. It generates events for each new record that is appended to its file.

This is a read-only wheel so it does not include a put() method.


CONSTRUCTOR

new
new() creates a new wheel, returning the wheels reference.


PUBLIC METHODS

event EVENT_TYPE => EVENT_NAME, ...
event() is covered in the POE::Wheel manpage.

FollowTail's event types are InputEvent, ResetEvent, and ErrorEvent.

ID
The ID method returns a FollowTail wheel's unique ID. This ID will be included in every event the wheel generates, and it can be used to match events with the wheels which generated them.

tell
Returns where POE::Wheel::FollowTail is currently in the log file. tell() may be useful for seeking back into a file when resuming tailing.
  my $pos = $wheel->tell();

FollowTail generally reads ahead of the data it returns, so the file position is not necessarily the point after the last record you have received.


EVENTS AND PARAMETERS

Driver
Driver is a POE::Driver subclass that is used to read from and write to FollowTail's filehandle. It encapsulates the low-level I/O operations needed to access a file so in theory FollowTail never needs to know about them.

POE::Wheel::FollowTail uses POE::Driver::SysRW if one is not specified.

Filter
Filter is a POE::Filter subclass that is used to parse input from the tailed file. It encapsulates the lowest level of a protocol so that in theory FollowTail never needs to know about file formats.

POE::Wheel::FollowTail uses POE::Filter::Line if one is not specified.

PollInterval
PollInterval is the amount of time, in seconds, the wheel will wait before retrying after it has reached the end of the file. This delay prevents the wheel from going into a CPU-sucking loop.

Seek
The Seek parameter tells FollowTail how far from the start of the file to start reading. Its value is specified in bytes, and values greater than the file's current size will quietly cause FollowTail to start from the file's end.

A Seek parameter of 0 starts FollowTail at the beginning of the file. A negative Seek parameter emulates SeekBack: it seeks backwards from the end of the file.

Seek and SeekBack are mutually exclusive. If Seek and SeekBack are not specified, FollowTail seeks 4096 bytes back from the end of the file and discards everything until the end of the file. This helps ensure that FollowTail returns only complete records.

When either Seek or SeekBack is specified, FollowTail begins returning records from that position in the file. It is possible that the first record returned may be incomplete. In files with fixed-length records, it's possible to return entirely the wrong thing, all the time. Please be careful.

SeekBack
The SeekBack parameter tells FollowTail how far back from the end of the file to start reading. Its value is specified in bytes, and values greater than the file's current size will quietly cause FollowTail to start from the file's beginning.

A SeekBack parameter of 0 starts FollowTail at the end of the file. It's recommended to omit Seek and SeekBack to start from the end of a file.

A negative SeekBack parameter emulates Seek: it seeks forwards from the start of the file.

Seek and SeekBack are mutually exclusive. If Seek and SeekBack are not specified, FollowTail seeks 4096 bytes back from the end of the file and discards everything until the end of the file. This helps ensure that FollowTail returns only complete records.

When either Seek or SeekBack is specified, FollowTail begins returning records from that position in the file. It is possible that the first record returned may be incomplete. In files with fixed-length records, it's possible to return entirely the wrong thing, all the time. Please be careful.

Handle
Filename
Either the Handle or Filename constructor parameter is required, but you cannot supply both.

FollowTail can watch a file or device that's already open. Give it the open filehandle with its Handle parameter.

FollowTail can watch a file by name, given as the Filename parameter. The named file does not need to exist. FollowTail will wait for it to appear.

This wheel can detect files that have been ``reset''. That is, it can tell when log files have been restarted due to a rotation or purge. For FollowTail to do this, though, it requires a Filename parameter. This is so FollowTail can reopen the file after it has reset. See ResetEvent elsewhere in this document.

InputEvent
InputEvent contains the name of an event which is emitted for every complete record read. Every InputEvent event is accompanied by two parameters. ARG0 contains the record which was read. ARG1 contains the wheel's unique ID.

A sample InputEvent event handler:

  sub input_state {
    my ($heap, $input, $wheel_id) = @_[HEAP, ARG0, ARG1];
    print "Wheel $wheel_id received input: $input\n";
  }

ResetEvent
ResetEvent contains the name of an event that's emitted every time a file is reset.

It's only available when watching files by name. This is because FollowTail must reopen the file after it has been reset.

ARG0 contains the FollowTail wheel's unique ID.

ErrorEvent
ErrorEvent contains the event which is emitted whenever an error occurs. Every ErrorEvent comes with four parameters:

ARG0 contains the name of the operation that failed. This usually is 'read'. Note: This is not necessarily a function name. The wheel doesn't know which function its Driver is using.

ARG1 and ARG2 hold numeric and string values for $!, respectively. Note: FollowTail knows how to handle EAGAIN, so it will never return that error.

ARG3 contains the wheel's unique ID.

A sample ErrorEvent event handler:

  sub error_state {
    my ($operation, $errnum, $errstr, $wheel_id) = @_[ARG0..ARG3];
    warn "Wheel $wheel_id generated $operation error $errnum: $errstr\n";
  }


SEE ALSO

POE::Wheel.

The SEE ALSO section in POE contains a table of contents covering the entire POE distribution.


BUGS

This wheel can't tail pipes and consoles on some systems.


AUTHORS & COPYRIGHTS

Please see POE for more information about authors and contributors.

 POE::Wheel::FollowTail - follow the tail of an ever-growing file