Algorithm-Genetic-Diploid
view release on metacpan or search on metacpan
lib/Algorithm/Genetic/Diploid/Logger.pm view on Meta::CPAN
our %VERBOSE;
my $formatter = \&_simple_formatter;
=head1 NAME
Algorithm::Genetic::Diploid::Logger - reports on progress of the experiment
=head1 METHODS
=over
=item new
This singleton constructor always returns reference to same object
=cut
my $SINGLETON;
sub new {
my $class = shift;
if ( not $SINGLETON ) {
$SINGLETON = bless \$class, $class;
}
$SINGLETON->level(@_) if @_;
return $SINGLETON;
}
=item level
Alters log level. Takes named arguments: C<method> provides a scalar or array of fully
qualified method names whose verbosity to alter. C<class> provides a scalar or array of
package names whose verbosity to alter. C<level> sets the verbosity to one of the levels
described below.
=cut
sub level {
my $self = shift;
my %args = @_;
# set verbosity at the level of methods
if ( $args{'method'} ) {
if ( ref $args{'method'} eq 'ARRAY' ) {
$VERBOSE{$_} = $args{'level'} for @{ $args{'method'} };
}
else {
$VERBOSE{$args{'method'}} = $args{'level'};
}
}
# set verbosity at the level of classes
elsif ( $args{'class'} ) {
if ( ref $args{'class'} eq 'ARRAY' ) {
$VERBOSE{$_} = $args{'level'} for @{ $args{'class'} };
}
else {
$VERBOSE{$args{'class'}} = $args{'level'};
}
}
# set verbosity globally
else {
$VERBOSE = $args{'level'};
}
return $self;
}
=item formatter
Alters log string formatter. When argument is 'simple' the log string is just
the logging level and message, when argument is 'verbose', the log string has
the calling subroutine name and location in it. 'medium' omits the file location.
When the argument is a code reference, this reference is executed for every
log message, with the following named arguments:
'level' => (DEBUG|INFO|WARN|ERROR|FATAL)
'sub' => fully qualified name of the calling subroutine
'file' => path to the calling file
'line' => line number from whence the call was made
'msg' => the log message
=cut
sub formatter {
my ( $self, $arg ) = @_;
if ( ref $arg and ref $arg eq 'CODE' ) {
$formatter = $arg;
}
else {
if ( 'simple' eq lc $arg ) {
$formatter = \&_simple_formatter;
}
elsif ( 'medium' eq lc $arg ) {
$formatter = \&_medium_formatter;
}
elsif ( 'verbose' eq lc $arg ) {
$formatter = \&_verbose_formatter;
}
}
}
# destructor does nothing
sub DESTROY {}
=back
=head1 VERBOSITY LEVELS
The following constants are available when using this package with the use qualifier
':levels', i.e. C<use Algorithm::Genetic::Diploid::Logger ':levels';>. They represent
different verbosity levels that can be set globally, and/or at package level, and/or
at method level.
=over
=item FATAL
Only most severe messages are transmitted.
=cut
sub FATAL () { 0 }
=item ERROR
Possibly unrecoverable errors are transmitted.
=cut
sub ERROR () { 1 }
=item WARN
Warnings are transmitted. This is the default.
=cut
sub WARN () { 2 }
=item INFO
Informational messages are transmitted.
=cut
sub INFO () { 3 }
=item DEBUG
Everything is transmitted, including debugging messages.
=cut
sub DEBUG () { 4 }
# constants mapped to string for AUTOLOAD
my %levels = (
'fatal' => FATAL,
'error' => ERROR,
'warn' => WARN,
'info' => INFO,
'debug' => DEBUG,
);
sub _simple_formatter {
my %args = @_;
my ( $level, $sub, $file, $line, $msg ) = @args{('level','sub','file','line','msg')};
return sprintf "%s %s\n", $level, $msg;
}
sub _verbose_formatter {
my %args = @_;
my ( $level, $sub, $file, $line, $msg ) = @args{('level','sub','file','line','msg')};
return sprintf "%s %s [%s, %s] - %s\n", $level, $sub, $file, $line, $msg;
}
sub _medium_formatter {
my %args = @_;
my ( $level, $sub, $file, $line, $msg ) = @args{('level','sub','file','line','msg')};
return sprintf "%s %s [%s] - %s\n", $level, $sub, $line, $msg;
}
# this is where methods such as $log->info ultimately are routed to
sub AUTOLOAD {
my ( $self, $msg ) = @_;
my $method = $AUTOLOAD;
$method =~ s/.+://;
# only proceed if method was one of fatal..debug
if ( exists $levels{$method} ) {
my ( $package, $file1up, $line1up, $subroutine ) = caller( 1 );
my ( $pack0up, $filename, $line, $sub0up ) = caller( 0 );
# calculate what the verbosity is for the current context
# (either at sub, package or global level)
my $verbosity;
if ( exists $VERBOSE{$subroutine} ) {
$verbosity = $VERBOSE{$subroutine};
}
elsif ( exists $VERBOSE{$pack0up} ) {
$verbosity = $VERBOSE{$pack0up};
}
else {
$verbosity = $VERBOSE;
}
# we need to do something with the message
if ( $verbosity >= $levels{$method} ) {
printf STDERR $formatter->(
'level' => uc $method,
'sub' => $subroutine,
'file' => $filename,
'line' => $line,
'msg' => $msg,
);
}
}
}
=back
=cut
1;
( run in 2.870 seconds using v1.01-cache-2.11-cpan-97f6503c9c8 )