Log::Report::Dispatcher(3pm) | User Contributed Perl Documentation | Log::Report::Dispatcher(3pm) |
Log::Report::Dispatcher - manage message dispatching, display or logging
Log::Report::Dispatcher is extended by Log::Report::Dispatcher::Callback Log::Report::Dispatcher::File Log::Report::Dispatcher::Log4perl Log::Report::Dispatcher::LogDispatch Log::Report::Dispatcher::Perl Log::Report::Dispatcher::Syslog Log::Report::Dispatcher::Try
use Log::Report; # The following will be created for you automatically dispatcher 'PERL', 'default', accept => 'NOTICE-'; dispatcher close => 'default'; # after deamonize dispatcher 'FILE', 'log' , mode => 'DEBUG', to => '/var/log/mydir/myfile'; # Full package name is used, same as 'FILE' dispatcher Log::Report::Dispatch::File => 'stderr' , to => \*STDERR, accept => 'NOTICE-';
In Log::Report, dispatchers are used to handle (exception) messages which are created somewhere else. Those message were produced (thrown) by Log::Report::error() and friends.
This base-class handles the creation of dispatchers, plus the common filtering rules. See the "DETAILS" section, below.
The $name must be uniquely identifying this dispatcher. When a second dispatcher is created (via Log::Report::dispatcher()) with the name of an existing dispatcher, the existing one will get replaced.
All %options which are not consumed by this base constructor are passed to the wrapped back-end. Some of them will check whether all %options are understood, other ignore unknown %options.
-Option --Default accept depend on mode charset <undef> format_reason 'LOWERCASE' locale <system locale> mode 'NORMAL'
When the mode equals "NORMAL" (the default) then "accept"'s default is "NOTICE-". In case of "VERBOSE" it will be "INFO-", "ASSERT" results in "ASSERT-", and "DEBUG" in "ALL".
You are advised to use the symbolic mode names when the mode is changed within your program: the numerical values are available for smooth Getopt::Long integration.
[0.999] when only one $reason is specified, it is returned if in the list.
Warning: this logic is applied globally: on all dispatchers.
example:
By default, all lines in the Log::Report packages are skipped from display, with a simple CODE as this:
sub in_lr { $_[0][0] =~ m/^Log\:\:Report(?:\:\:|$)/ } Log::Report::Dispatcher->addSkipStack(\&in_lr);
The only parameter to in_lr is the return of caller(). The first element of that ARRAY is the package name of a stack line.
-Option --Default abstract 1 call <required> filename <required> linenr <required> max_line undef max_params 8 package <required> params <required>
When a dispatcher is created (via new() or Log::Report::dispatcher()), you must specify the TYPE of the dispatcher. This can either be a class name, which extends a Log::Report::Dispatcher, or a pre-defined abbreviation of a class name. Implemented are:
Addition information
The modules which use "Log::Report" will only specify the base of the message string. The base dispatcher and the back-ends will extend this message with additional information:
When the message is a translatable object (Log::Report::Message, for instance created with Log::Report::__()), then the added components will get translated as well. Otherwise, all will be in English.
Exactly what will be added depends on the actual mode of the dispatcher (change it with mode(), initiate it with new(mode)).
mode mode mode mode REASON SOURCE TE! NORM VERB ASSE DEBUG trace program ... S assert program ... SL SL info program T.. S S S notice program T.. S S S S mistake user T.. S S S SL warning program T.. S S SL SL error user TE. S S SL SC fault system TE! S S SL SC alert system T.! SL SL SC SC failure system TE! SL SL SC SC panic program .E. SC SC SC SC T - usually translated E - exception (execution interrupted) ! - will include $! text at display L - include filename and linenumber S - show/print when accepted C - stack trace (like Carp::confess())
Filters
With a filter, you can block or modify specific messages before translation. There may be a wish to change the REASON of a report or its content. It is not possible to avoid the exit which is related to the original message, because a module's flow depends on it to happen.
When there are filters defined, they will be called in order of definition. For each of the dispatchers which are called for a certain REASON (which "accept" that REASON), it is checked whether its name is listed for the filter (when no names where specified, then the filter is applied to all dispatchers).
When selected, the filter's CODE reference is called with four arguments: the dispatcher object (a Log::Report::Dispatcher), the HASH-of-OPTIONS passed as optional first argument to Log::Report::report(), the REASON, and the MESSAGE. Returned is the new REASON and MESSAGE. When the returned REASON is "undef", then the message will be ignored for that dispatcher.
Be warned about processing the MESSAGE: it is a Log::Report::Message object which may have a "prepend" string and "append" string or object. When the call to Log::Report::report() contained multiple comma-separated components, these will already have been joined together using concatenation (see Log::Report::Message::concat().
. Example: a filter on syslog
dispatcher filter => \&myfilter, 'syslog'; # ignore all translatable and non-translatable messages containing # the word "skip" sub myfilter($$$$) { my ($disp, $opts, $reason, $message) = @_; return () if $message->untranslated =~ m/\bskip\b/; ($reason, $message); }
. Example: take all mistakes and warnings serious
dispatch filter => \&take_warns_seriously; sub take_warns_seriously($$$$) { my ($disp, $opts, $reason, $message) = @_; $reason eq 'MISTAKE' ? (ERROR => $message) : $reason eq 'WARNING' ? (FAULT => $message) : ($reason => $message); }
This module is part of Log-Report distribution version 1.36, built on October 27, 2023. Website: http://perl.overmeer.net/CPAN/
Copyrights 2007-2023 by [Mark Overmeer <markov@cpan.org>]. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/
2023-10-29 | perl v5.36.0 |