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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
=head1 NAME
Log::Handler::Config - The main config loader.
=head1 SYNOPSIS
use Log::Handler;
my $log = Log::Handler->new();
# Config::General
$log->config(config => 'file.conf');
# Config::Properties
$log->config(config => 'file.props');
# YAML
$log->config(config => 'file.yaml');
Or
use Log::Handler;
my $log = Log::Handler->new();
$log->config(
config => 'file.conf'
plugin => 'YAML',
);
=head1 DESCRIPTION
This module makes it possible to load the configuration from a file.
The configuration type is determined by the file extension. It's also
possible to mix file extensions with another configuration types.
=head1 PLUGINS
Plugin name File extensions
------------------------------------------
Config::General cfg, conf
Config::Properties props, jcfg, jconf
YAML yml, yaml
If the extension is not defined then C<Config::General> is used by default.
=head1 METHODS
=head2 config()
With this method it's possible to load the configuration for your outputs.
The following options are valid:
=over 4
=item B<config>
With this option you can pass a file name or the configuration as a
hash reference.
$log->config(config => 'file.conf');
# or
$log->config(config => \%config);
=item B<plugin>
With this option it's possible to say which plugin you want to use.
Maybe you want to use the file extension C<conf> with C<YAML>, which
is reserved for the plugin C<Config::General>.
Examples:
# this would use Config::General
$log->config(
config => 'file.conf'
);
# this would force .conf with YAML
$log->config(
config => 'file.conf',
plugin => 'YAML'
);
=item B<section>
If you want to write the configuration into a global configuration file
then you can create a own section for the logger:
<logger>
<file>
<mylog>
filename = file.log
minlevel = 0
maxlevel = 7
</mylog>
</file>
</logger>
<another_script_config>
foo = bar
bar = baz
baz = foo
</another_script_config>
Now your configuration is placed in the C<logger> section. You can load this
section with
$log->config(
config => 'file.conf',
section => 'logger',
);
# or if you load the configuration yourself to %config
$log->config(
config => \%config,
section => 'logger',
);
# or just
$log->config( config => $config{logger} );
Note that the section C<mylog> is used as an C<alias>. Later you access the
output with
my $file_output = $log->output('mylog');
$file_output->log(message => 'your message');
=back
=head1 PLUGINS
Config::General - inspired by the well known apache config format
Config::Properties - Java-style property files
YAML - optimized for human readability
=head1 EXAMPLES
=head2 Config structure
For each output it must exist an own section. Here a example as hash:
my %config = (
# the configuration for a file
file => {
foo => {
filename => 'file1.log',
maxlevel => 'info',
minlevel => 'warn',
},
bar => {
filename => 'file2.log',
maxlevel => 'error',
minlevel => 'emergency',
}
}
# the configuration for email
email => {
baz =>
host => 'foo.example',
from => 'me@me.example',
to => 'you@foo.example',
maxlevel => 'error',
minlevel => 'emergency',
},
# and_so_on ...
}
);
You can store your configuration to a file and loads it. There are different
config plugins available.
=head2 A default section
It's possible to define a section called C<default> for each output. This
options are used as default if this options are not set. Example:
my %config = (
# the configuration for a file
file => {
default => {
mode => 'append',
},
foo => {
filename => 'file1.log',
maxlevel => 'info',
minlevel => 'warn',
},
bar => {
filename => 'file2.log',
maxlevel => 'error',
minlevel => 'emergency',
},
baz => {
filename => 'file3.log',
maxlevel => 'debug',
minlevel => 'debug',
mode => 'trunc',
},
},
# the configuration for dbi
dbi => {
default => { ... }
}
);
The option C<mode> is set to C<append> for the log file C<file1.log> and
C<file2.log>. The configuration for C<file3.log> will be set to C<trunc>.
=head2 Examples for the config plugins
=head3 Config::General
<file>
<mylog>
fileopen = 1
reopen = 1
permissions = 0640
maxlevel = info
minlevel = warn
mode = append
timeformat = %b %d %H:%M:%S
debug_mode = 2
filename = example.log
message_layout = '%T %H[%P] [%L] %S: %m'
newline = 1
</mylog>
</file>
=head3 YAML
---
file:
mylog:
debug_mode: 2
filename: example.log
fileopen: 1
maxlevel: info
minlevel: warn
mode: append
newline: 1
permissions: 0640
message_layout: '%T %H[%P] [%L] %S: %m'
reopen: 1
timeformat: '%b %d %H:%M:%S'
=head3 Config::Properties
file.mylog.reopen = 1
file.mylog.fileopen = 1
file.mylog.maxlevel = info
file.mylog.minlevel = warn
file.mylog.permissions = 0640
file.mylog.mode = append
file.mylog.timeformat = %b %d %H:%M:%S
file.mylog.debug_mode = 2
file.mylog.filename = example.log
file.mylog.newline = 1
file.mylog.message_layout = '%T %H[%P] [%L] %S: %m'
=head2 Load the config from a certain section
The config (Config::General)
<output>
<file>
<default>
newline = 1
permissions = 0640
timeformat = %b %d %H:%M:%S
fileopen = 1
reopen = 1
mode = append
message_layout = "%T %H[%P] [%L] %S: %m"
debug_mode = 2
</default>
<common>
filename = example.log
maxlevel = info
minlevel = warn
</common>
<error>
filename = example-error.log
maxlevel = warn
minlevel = emergency
</error>
<debug>
filename = example-debug.log
maxlevel = debug
minlevel = debug
</debug>
</file>
</output>
Load the config
$log->config(
config => 'file.conf',
section => 'output',
);
=head2 Simple configuration without a certain section
The config (Config::General)
<file>
<default>
newline = 1
permissions = 0640
timeformat = %b %d %H:%M:%S
fileopen = 1
reopen = 1
mode = append
message_layout = "%T %H[%P] [%L] %S: $m"
debug_mode = 2
</default>
<common>
filename = example.log
maxlevel = info
minlevel = warn
</common>
<error>
filename = example-error.log
maxlevel = warn
minlevel = emergency
</error>
<debug>
filename = example-debug.log
maxlevel = debug
minlevel = debug
</debug>
</file>
Load the config
$log->config(config => 'file.conf');
=head2 The config as hash
$log->config(
config => {
file => {
default => {
newline => 1,
permissions => '0640',
timeformat => '%b %d %H:%M:%S',
fileopen => 1,
reopen => 1,
mode => 'append',
message_layout => '%T %H[%P] [%L] %S: %m',
debug_mode => 2,
},
common => {
filename => 'example.log',
maxlevel => 'info',
minlevel => 'warn',
},
error => {
filename => 'example-error.log',
maxlevel => 'warn',
minlevel => 'emergency',
},
debug => {
filename => 'example-debug.log',
maxlevel => 'debug',
minlevel => 'debug',
}
}
}
);
=head2 Configuration for different outputs
<output>
<file>
<default>
newline = 1
permissions = 0640
timeformat = %b %d %H:%M:%S
fileopen = 1
reopen = 1
mode = append
message_layout = "%T %H[%P] [%L] %S: %m"
debug_mode = 2
</default>
<common>
filename = example.log
maxlevel = info
minlevel = warn
</common>
<error>
filename = example-error.log
maxlevel = warn
minlevel = emergency
</error>
</file>
</output>
=head1 PREREQUISITES
Carp
Params::Validate
UNIVERSAL::require
=head1 EXPORTS
No exports.
=head1 REPORT BUGS
Please report all bugs to <jschulz.cpan(at)bloonix.de>.
If you send me a mail then add Log::Handler into the subject.
=head1 AUTHOR
Jonny Schulz <jschulz.cpan(at)bloonix.de>.
=head1 COPYRIGHT
Copyright (C) 2007 by Jonny Schulz. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
package Log::Handler::Config;
use strict;
use warnings;
our $VERSION = '0.03';
use Carp;
use File::Spec;
use Params::Validate;
use UNIVERSAL::require;
sub config {
my $class = shift;
my $params = $class->_validate(@_);
my $plugin = $params->{plugin};
my ($config, %all_configs);
if (ref($params->{config})) {
$config = $params->{config};
} elsif ($params->{config}) {
$plugin->require or Carp::croak "unable to load plugin '$plugin'";
$config = $plugin->get_config($params->{config});
}
$class->_is_hash('main', $config);
if ($params->{section}) {
$class->_is_hash($params->{section}, $config->{ $params->{section} });
$config = $config->{ $params->{section} };
}
while ( my ($type, $type_config) = each %$config ) {
$class->_is_hash($type, $type_config);
my %default = ();
if ($type_config->{default}) {
$class->_is_hash('default', $type_config->{default});
%default = (%{ $type_config->{default} });
}
# Structure:
# $all_configs{file} = [ \%a, \%b, \%c ]
# $all_configs{dbi} = [ \%a, \%b, \%c ]
while ( my ($name, $log_config) = each %$type_config ) {
$class->_is_hash($name, $log_config);
next if $name eq 'default';
my %new_config = (%default, %$log_config, alias => $name);
push @{$all_configs{$type}}, \%new_config;
}
}
return \%all_configs;
}
#
# private stuff
#
sub _validate {
my $class = shift;
my %options = Params::Validate::validate(@_, {
config => {
type => Params::Validate::SCALAR
| Params::Validate::HASHREF
| Params::Validate::ARRAYREF,
},
plugin => {
type => Params::Validate::SCALAR,
optional => 1,
},
section => {
type => Params::Validate::SCALAR,
optional => 1,
},
});
if (ref($options{config}) eq 'ARRAY') {
$options{config} = File::Spec->catfile(@{$options{config}});
}
if (!$options{plugin}) {
if (!ref($options{config})) {
if ($options{config} =~ /\.ya{0,1}ml\z/) {
$options{plugin} = 'Log::Handler::Plugin::YAML';
} elsif ($options{config} =~ /\.(?:props|jc(?:onf|fg))\z/) {
$options{plugin} = 'Log::Handler::Plugin::Config::Properties';
} else {
$options{plugin} = 'Log::Handler::Plugin::Config::General';
}
}
}
return \%options;
}
sub _is_hash {
my ($self, $name, $ref) = @_;
if (ref($ref) ne 'HASH') {
Carp::croak "bad config structure! Config name '$name' missplaced";
}
}
1;
|