NAME
Log::Agent::Driver - ancestor class for all Log::Agent drivers
SYNOPSIS
@Log::Agent::Driver::XXX::ISA = qw(Log::Agent::Driver);
DESCRIPTION
The Log::Agent::Driver class is the root class from which all Log::Agent drivers inherit. It is a deferred class, meaning that it cannot be instantiated directly. All the deferred routines need to be implemented by its heirs to form a valid driver.
A deferred routine is a routine whose signature and semantics (pre and post conditions, formally) are specified, but not implemented. It allows specification of high-level processings in terms of them, thereby factorizing common code in the ancestors without loosing specialization benefits.
DRIVER LIST
The following drivers are currently fully implemented:
- Log::Agent::Driver::Default
-
This is the default driver which remaps to simple print(), warn() and die() Perl calls.
- Log::Agent::Driver::File
-
This driver redirects logs to files. Each logging channel may go to a dedicated file.
- Log::Agent::Driver::Silent
-
Silence all the logxxx() routines.
- Log::Agent::Driver::Syslog
-
This driver redirects logs to the syslogd(8) daemon, which will then handle the dispatching to various logfiles, based on its own configuration.
INTERFACE
The following routines are deferred and therefore need to be defined by the heir:
- emit($channel, $priority, $logstring)
-
Emit the log entry held in $logstring, at priority $priority and through the specfied $channel name. A trailing "\n" is to be added if needed, but the $logstring should not already have one.
The $channel name is just a string, and it is up to the driver to map that name to an output device using its own configuration information. The generic logxxx() routines use only
error
,output
ordebug
for channel names.The $priority entry is assumed to have passed through the map_pri() routine, which by default returns an empty string (only the Log::Agent::Driver::Syslog driver needs a priority, for now). Ignore if you don't need that, or redefine map_pri().
The $logstring may not really be a plain string. It can actually be a Log::Agent::Message object with an overloaded stringification routine, so the illusion should be complete.
- make
-
This is the creation routine. Its signature varies for each driver, naturally.
- prefix_msg($str)
-
Prefix the log message string (a Log::Agent::Message object) with driver-specific information (like the configured prefix, the PID of the process, etc...).
Must return the prefixed string, either as a Log::Agent::Message object or as a plain string. This means you may use normal string operations on the $str variable and let the overloaded stringification perform its magic. Or you may return the $str parameter without modification.
There is no default implementation here because this is too driver-specific to choose one good default. And I like making things explicit sometimes.
The following routines are implemented in terms of emit(), map_pri() and prefix_msg(). The default implementation may need to be redefined for performance or tuning reasons, but simply defining the two deferred routines above should bring a reasonable behaviour nonetheless.
As an example, here is the default logdbg() implementation:
sub logdbg {
my $self = shift;
my ($prio, $level, $str) = @_;
$self->emit(
'debug',
$self->map_pri($prio, $level),
$self->prefix_msg($str)
);
}
Yes, we do show the gory details in a manpage, but inheriting from a class is not for the faint of heart, and requires getting acquainted with the implementation, most of the time.
The order is not alphabetical here but by increased level of severity (as expected, anyway):
- logwrite($channel, $priority, $level, $str)
-
Log message to the given channel, at the specified priority/level, obtained through a call to map_pri().
- logsay($str)
-
Log message to the
output
channel, at thenotice
priority. - logwarn($str)
-
Log warning to the
error
channel at thewarning
priority. - logerr($str)
-
Log error to the
error
channel at theerror
priority. - logdie($str)
-
Log fatal error to the
error
channel at thecritical
priority and then call die() with "$str\n" as argument. - logcroak($str)
-
Log a fatal error, from the perspective of the caller. The error is logged to the
error
channel at thecritical
priority and then Carp::croak() is called with "$str\n" as argument. - logconfess($str)
-
Confess a fatal error. The error is logged to the
error
channel at thecritical
priority and then Carp::confess() is called with "$str\n" as argument.
The following routine has a default implementation but may be redefined for specific drivers:
- map_pri($priority, $level)
-
Converts a ("priority", level) tupple to a single priority token suitable for emit(). By default, returns an empty string, which is OK only when emit() does not care!
The following routine is frozen. There is no way in Perl to freeze a routine, i.e. to explicitely forbid any redefinition, so this is an informal notification:
- priority($priority)
-
This routine returns the proper priority for emit() for each of the following strings: "critical", "error", "warning" and "notice", which are the hardwired priority strings, as documented above.
It derives a logging level from the $priority given and then returns the result of:
map_pri($priority, $level);
Therefore, only map_pri() should be redefined.
Finally, the following initialization routine is provided, to record the prefix
attribute:
- _init($prefix)
-
Records the
prefix
attribute. Should be called in the constructor of all the drivers that need to know about a prefix string to prepend to logged messages.
AUTHOR
Raphael Manfredi <Raphael_Manfredi@pobox.com>
SEE ALSO
Log::Agent(3), Log::Agent::Driver::Default(3), Log::Agent::Driver::File(3), Log::Agent::Driver::Silent(3), Log::Agent::Driver::Syslog(3).