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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
###########################################################################
#
# Fork.pm
#
# Copyright (C) 1999 Raphael Manfredi.
# Copyright (C) 2002-2017 Mark Rogaski, mrogaski@cpan.org;
# all rights reserved.
#
# See the README file included with the
# distribution for license information.
#
##########################################################################
package Log::Agent::Driver::Fork;
use strict;
require Log::Agent::Driver;
use vars qw(@ISA);
@ISA = qw(Log::Agent::Driver);
###########################################################################
#
# Public Methods
#
###########################################################################
#
# make
#
# constructor method
#
sub make {
my $class = shift;
# initialize the dispatcher
my $self = {
drivers => []
};
bless $self, $class;
$self->_init('', 0);
# test for 5.6
$^W = 0;
my $new_perl = eval "$^V and $^V ge v5.6.0" || 0;
$^W = 1;
# process the arguments
foreach my $arg (@_) {
if (ref $arg) {
# add to the list of drivers
push(@{$self->{drivers}}, $arg);
} else {
require Carp;
Carp::croak("argument is not an object reference: $arg");
}
}
return $self;
}
#
# prefix_msg
#
# does little of value
#
sub prefix_msg {
return $_[1];
}
#
# write
#
# pass-through to drivers
#
sub write {
my($self, $channel, $priority, $str) = @_;
foreach my $driver (@{$self->{drivers}}) {
$driver->write($channel, $priority, $str);
}
}
#
# emit
#
# wrapper for write() that uses dynamically bound priority() and prefix_msg()
# methods
#
sub emit {
my($self, $channel, $priority, $str) = @_;
foreach my $driver (@{$self->{drivers}}) {
$driver->emit($channel, $priority, $str);
# This is a kludge to make duperr work in file driver,
# the encapsulation purists should lynch me for this.
if ($driver->isa('Log::Agent::Driver::File')) {
if ($driver->duperr) {
if ($priority eq 'critical') {
$driver->emit_output('critical', 'FATAL', $str);
} elsif ($priority eq 'error') {
$driver->emit_output('error', 'ERROR', $str);
} elsif ($priority eq 'warning') {
$driver->emit_output('warning', 'WARNING', $str);
}
}
}
}
}
#
# emit_carp
#
# A specialized wrapper to hand-off carp/croak messages at a
# specified offset.
#
sub emit_carp {
my($self, $channel, $priority, $offset, $str) = @_;
# yet another kludge
$offset++ if (caller(3))[3] =~ /^main::/;
foreach my $driver (@{$self->{drivers}}) {
# construct the message
require Carp;
my $msg = $driver->carpmess($offset, $str, \&Carp::shortmess);
# send it to the driver
$driver->emit($channel, $priority, $str);
}
}
#
# channel_eq
#
# exhaustive equality comparison
#
sub channel_eq {
my $self = shift;
foreach my $driver (@{$self->{drivers}}) {
$driver->channel_eq(@_) || return;
}
return 1;
}
#
# logconfess
#
# Fatal error, with stack trace
#
sub logconfess {
my($self, $str) = @_;
# log error to all drivers
$self->emit_carp('error', 'critical', 0, $str);
die;
}
#
# logcroak
#
# Fatal error
#
sub logcroak {
my($self, $str) = @_;
#
# log error to all drivers
#
$self->emit_carp('error', 'critical', 0, $str);
die;
}
#
# logxcroak
#
# Fatal error, from perspective of caller
#
sub logxcroak {
my($self, $offset, $str) = @_;
#
# log error to all drivers
#
$self->emit_carp('error', 'critical', $offset, $str);
die;
}
#
# logdie
#
# Fatal error
#
sub logdie {
my ($self, $str) = @_;
#
# log error to all drivers
#
$self->emit('error', 'critical', $str);
die;
}
#
# logerr
#
# Signal error on stderr
#
sub logerr {
my ($self, $str) = @_;
#
# log error to all drivers
#
$self->emit('error', 'error', $str);
}
#
# logwarn
#
# Warn, with "WARNING" clearly emphasized
#
sub logwarn {
my ($self, $str) = @_;
#
# log error to all drivers
#
$self->emit('error', 'warning', $str);
}
#
# logcluck
#
# Warning, with stack trace
#
sub logcluck {
my($self, $str) = @_;
# log error to all drivers
$self->emit_carp('error', 'warning', 0, $str);
}
#
# logcarp
#
# log a warning, carp-style
#
sub logcarp {
my($self, $str) = @_;
#
# log message to all drivers
#
$self->emit_carp('error', 'warning', 0, $str);
}
#
# logxcarp
#
# Warn from perspective of caller
#
sub logxcarp {
my($self, $offset, $str) = @_;
#
# log message to all drivers
#
$self->emit_carp('error', 'warning', $offset, $str);
}
#
# logsay
#
# Log message to "output" channel at "notice" priority
#
sub logsay {
my($self, $str) = @_;
#
# send message to drivers
#
$self->emit('output', 'notice', $str);
}
#
# loginfo
#
# Log message to "output" channel at "info" priority
#
sub loginfo {
my($self, $str) = @_;
#
# send message to drivers
#
$self->emit('output', 'info', $str);
}
#
# logdebug
#
# Log message to "output" channel at "debug" priority
#
sub logdebug {
my($self, $str) = @_;
#
# send message to drivers
#
$self->emit('output', 'debug', $str);
}
1; # for require
__END__
=head1 NAME
Log::Agent::Driver::Fork - dummy driver for forking output to multiple drivers
=head1 SYNOPSIS
use Log::Agent;
require Log::Agent::Driver::Fork;
require Log::Agent::Driver::Foo;
require Log::Agent::Driver::Bar;
my $driver = Log::Agent::Driver::Fork->make(
Log::Agent::Driver::Foo->make( ... ),
Log::Agent::Driver::Bar->make( ... )
);
logconfig(-driver => $driver);
=head1 DESCRIPTION
This driver merely acts a multiplexer for logxxx() calls, duplicating
them and distributing them to other drivers.
The only routine of interest here is the creation routine:
=over 4
=item make(@drivers)
Create a Log::Agent::Driver::Fork driver that duplicates logxxx() calls and
distributes them to the drivers in @drivers. The arguments must be the return
value of the make() call for the client drivers.
=back
=head1 NOTES
Many thanks go to Daniel Lundin and Jason May who proposed this module
independently. Eventually, logconfig() will support multiple drivers
directly. But, for now, this solution requires no change to the existing
interface.
=head1 AUTHOR
Mark Rogaski E<lt>mrogaski@pobox.comE<gt>
=head1 LICENSE
Copyright (C) 2002 Mark Rogaski; all rights reserved.
See L<Log::Agent(3)> or the README file included with the distribution for
license information.
=head1 SEE ALSO
L<Log::Agent::Driver(3)>, L<Log::Agent(3)>.
=cut
|