/usr/share/perl5/Log/Any/Proxy.pm is in liblog-any-perl 1.038-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | use 5.008001;
use strict;
use warnings;
package Log::Any::Proxy;
# ABSTRACT: Log::Any generator proxy object
our $VERSION = '1.038';
use Log::Any::Adapter::Util ();
sub _default_formatter {
my ( $cat, $lvl, $format, @params ) = @_;
return $format->() if ref($format) eq 'CODE';
my @new_params =
map {
!defined($_) ? '<undef>'
: ref($_) ? Log::Any::Adapter::Util::dump_one_line($_)
: $_
} @params;
return sprintf( $format, @new_params );
}
sub new {
my $class = shift;
my $self = { formatter => \&_default_formatter, @_ };
unless ( $self->{adapter} ) {
require Carp;
Carp::croak("$class requires an 'adapter' parameter");
}
unless ( $self->{category} ) {
require Carp;
Carp::croak("$class requires an 'category' parameter")
}
bless $self, $class;
$self->init(@_);
return $self;
}
sub init { }
for my $attr (qw/adapter filter formatter prefix/) {
no strict 'refs';
*{$attr} = sub { return $_[0]->{$attr} };
}
my %aliases = Log::Any::Adapter::Util::log_level_aliases();
# Set up methods/aliases and detection methods/aliases
foreach my $name ( Log::Any::Adapter::Util::logging_methods(), keys(%aliases) )
{
my $realname = $aliases{$name} || $name;
my $namef = $name . "f";
my $is_name = "is_$name";
my $is_realname = "is_$realname";
my $numeric = Log::Any::Adapter::Util::numeric_level($realname);
no strict 'refs';
*{$is_name} = sub {
my ($self) = @_;
return $self->{adapter}->$is_realname;
};
*{$name} = sub {
my ( $self, @parts ) = @_;
my $message = join(" ", grep { defined($_) && length($_) } @parts );
return unless length $message;
$message = $self->{filter}->( $self->{category}, $numeric, $message )
if defined $self->{filter};
return unless defined $message and length $message;
$message = "$self->{prefix}$message"
if defined $self->{prefix} && length $self->{prefix};
return $self->{adapter}->$realname($message);
};
*{$namef} = sub {
my ( $self, @args ) = @_;
return unless $self->{adapter}->$is_realname;
my $message =
$self->{formatter}->( $self->{category}, $numeric, @args );
return unless defined $message and length $message;
return $self->$name($message);
};
}
1;
# vim: ts=4 sts=4 sw=4 et tw=75:
__END__
=pod
=encoding UTF-8
=head1 NAME
Log::Any::Proxy - Log::Any generator proxy object
=head1 VERSION
version 1.038
=head1 SYNOPSIS
# prefix log messages
use Log::Any '$log', prefix => 'MyApp: ';
# transform log messages
use Log::Any '$log', filter => \&myfilter;
# format with String::Flogger instead of the default
use String::Flogger;
use Log::Any '$log', formatter => sub {
my ($cat, $lvl, @args) = @_;
String::Flogger::flog( @args );
};
=head1 DESCRIPTION
Log::Any::Proxy objects are what modules use to produce log messages. They
construct messages and pass them along to a configured adapter.
=head1 USAGE
=head2 Simple logging
Your library can do simple logging using logging methods corresponding to
the log levels (or aliases):
=over 4
=item *
trace
=item *
debug
=item *
info (inform)
=item *
notice
=item *
warning (warn)
=item *
error (err)
=item *
critical (crit, fatal)
=item *
alert
=item *
emergency
=back
Pass a string to be logged. Do not include a newline.
$log->info("Got some new for you.");
The log string will be transformed via the C<filter> attribute (if any) and
the C<prefix> (if any) will be prepended.
B<NOTE>: While you are encouraged to pass a single string to be logged, if
multiple arguments are passed, they are concatenated with a space character
into a single string before processing. This ensures consistency across
adapters, some of which may support multiple arguments to their logging
functions (and which concatenate in different ways) and some of which do
not.
=head2 Advanced logging
Your library can do advanced logging using logging methods corresponding to
the log levels (or aliases), but with an "f" appended:
=over 4
=item *
tracef
=item *
debugf
=item *
infof (informf)
=item *
noticef
=item *
warningf (warnf)
=item *
errorf (errf)
=item *
criticalf (critf, fatalf)
=item *
alertf
=item *
emergencyf
=back
When these methods are called, the adapter is first checked to see if it is
logging at that level. If not, the method returns without logging.
Next, arguments are transformed to a message string via the C<formatter>
attribute.
The default formatter first checks if the first log argument is a code
reference. If so, it will executed and the result used as the formatted
message. Otherwise, the formatter acts like C<sprintf> with some helpful
formatting.
Finally, the message string is logged via the simple logging functions,
which can transform or prefix as described above.
=head1 NAME
Log::Any::Proxy - Log::Any generator proxy object
=head1 VERSION
version 1.038
=head1 ATTRIBUTES
=head2 adapter
A L<Log::Any::Adapter> object to receive any messages logged. This is
generated by L<Log::Any> and can not be overridden.
=head2 category
The category name of the proxy. If not provided, L<Log::Any> will set it
equal to the calling when the proxy is constructed.
=head2 filter
A code reference to transform messages before passing them to a
Log::Any::Adapter. It gets three arguments: a category, a numeric level
and a string. It should return a string to be logged.
sub {
my ($cat, $lvl, $msg) = @_;
return "[$lvl] $msg";
}
If the return value is undef or the empty string, no message will be
logged. Otherwise, the return value is passed to the logging adapter.
Numeric levels range from 0 (emergency) to 8 (trace). Constant functions
for these levels are available from L<Log::Any::Adapter::Util>.
=head2 formatter
A code reference to format messages given to the C<*f> methods (C<tracef>,
C<debugf>, C<infof>, etc..)
It get three or more arguments: a category, a numeric level and the list
of arguments passsed to the C<*f> method. It should return a string to
be logged.
sub {
my ($cat, $lvl, $format, @args) = @_;
return sprintf($format, @args);
}
The default formatter does the following:
=over 4
=item *
if the first argument is a code reference, it is executed and the result returned
=item *
otherwise, it acts like C<sprintf>, except that undef arguments are changed to C<< <undef> >> and any references or objects are dumped via L<Data::Dumper> (but without newlines).
=back
Numeric levels range from 0 (emergency) to 8 (trace). Constant functions
for these levels are available from L<Log::Any::Adapter::Util>.
=head2 prefix
If defined, this string will be prepended to all messages. It will not
include a trailing space, so add that yourself if you want. This is less
flexible/powerful than L</filter>, but avoids an extra function call.
=head1 AUTHORS
=over 4
=item *
Jonathan Swartz <swartz@pobox.com>
=item *
David Golden <dagolden@cpan.org>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Jonathan Swartz and David Golden.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 AUTHORS
=over 4
=item *
Jonathan Swartz <swartz@pobox.com>
=item *
David Golden <dagolden@cpan.org>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Jonathan Swartz and David Golden.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|