2

我有与这里问的相同的问题,但不幸的是我无法安装 Moose,我认为那里描述的解决方案是 Moose 特有的。有人可以告诉我如何在老学校“使用基地”说话吗?

重申这个问题,我想让我的基类有一个使用 Log4perl 的自动日志记录机制,所以如果用户不做任何事情,我会得到一些合理的日志记录,但是如果我的类的用户需要/想要覆盖记录器,他们可以.

4

3 回答 3

1

好吧,如果你想拥有角色/混合类型的行为,就像在另一个答案中一样,你可以使用 vanilla 多重继承,或者更好地使用像 Ovid's Role::Basic这样的东西。

于 2011-03-11T01:45:55.340 回答
1

这是我为其他可能感兴趣的人提出的解决方案:

MyBaseClass.pm

package MyBaseClass;
use Log::Log4perl;
use Log::Log4perl::Layout;
use Log::Log4perl::Level;

our $VERSION = '0.01';

sub new {
   my $class = shift;
   my $name = shift;

   my $starttime = time;
   my $self = {
       NAME               => $name,          # Single-word name (use underscores)
       STDOUTLVL          => "INFO",
       LOGOUTLVL          => "WARN",
       LOG                => ""
   };
   bless($self, $class);
   return $self;
}

sub init_logs {
   my ( $self, $stdoutlvl, $logoutlvl, $no_color, $trace_stack ) = @_;

   # If stdoutlvl was not supplied then default to "INFO"
   $self->{STDOUTLVL} = ( defined $stdoutlvl ) ? $stdoutlvl : "INFO";
   $self->{LOGOUTLVL} = ( defined $logoutlvl ) ? $logoutlvl : "WARN";
   my $color_enabled  = ( defined $no_color  ) ? ""         : "ColoredLevels";

   # Define a category logger
   $self->{LOG} = Log::Log4perl->get_logger("MyBaseClass");

   # Define 3 appenders, one for screen, one for script log and one for baseclass logging.
   my $stdout_appender =  Log::Log4perl::Appender->new(
                          "Log::Log4perl::Appender::Screen$color_enabled",
                          name      => "screenlog",
                          stderr    => 0);
   my $script_appender = Log::Log4perl::Appender->new(
                          "Log::Log4perl::Appender::File",
                          name      => "scriptlog",
                          filename  => "/tmp/$self->{NAME}.log");
   my $mybaseclass_appender = Log::Log4perl::Appender->new(
                          "Log::Log4perl::Appender::File",
                          name      => "mybaseclasslog",
                          filename  => "/tmp/MyBaseClass.pm.log");

   # Define a layouts
   my $stdout_layout;
   if ( defined $trace_stack ) {
      $stdout_layout = Log::Log4perl::Layout::PatternLayout->new("[%-5p] %M-%L --- %m --- %T%n");
   } else {
      $stdout_layout = Log::Log4perl::Layout::PatternLayout->new("[%-5p] %M-%L --- %m ---%n");
   }
   my $file_layout = Log::Log4perl::Layout::PatternLayout->new("%d [%-5p] PID_%05P $ENV{USER} --- %m --- %l %T%n");
   my $mybaseclass_layout = Log::Log4perl::Layout::PatternLayout->new("%d [%-5p] PID_%05P $ENV{USER} --- %m --- %l %rmS %T%n");

   # Assign the appenders to there layouts
   $stdout_appender->layout($stdout_layout);
   $script_appender->layout($file_layout);
   $mybaseclass_appender->layout($mybaseclass_layout);

   # Set the log levels and thresholds
   $self->{LOG}->level($self->{STDOUTLVL});
   $script_appender->threshold($self->{LOGOUTLVL});
   $mybaseclass_appender->threshold("WARN");                # For the mybaseclass log I only ever want to read about WARNs or above:

   # Add the appenders to the log object
   $self->{LOG}->add_appender($stdout_appender);
   $self->{LOG}->add_appender($script_appender);
   $self->{LOG}->add_appender($mybaseclass_appender);
   return( $self->{LOG} );
}
  ...
1;

MyRegrClass.pm

package MyBaseClass::MyRegrClass;

# This class extends from the base class MyBaseClass
use base qw(MyBaseClass);

sub new {
   my $class = shift;
   my $self = $class->SUPER::new( @_ );
      ...
   $self->{passed} = 0;
   bless($self, $class);
   return $self;
}
  ...
1;

我的脚本.pl

#!/usr/bin/perl -w
use Getopt::Long;
use MyBaseClass::MyRegrClass;

##################################
# Initialize global variables
##################################
my $VERSION = '0.02';
my $regr_obj = MyBaseClass::MyRegrClass->new("my_script.pl");

##################################
# DEFINE ARGUMENTS TO BE PASSED IN
##################################
my %opts = ();
print_header("FATAL") unless &GetOptions(\%opts, 'help',
                                        'min_stdout_lvl=s',
                                        'min_logout_lvl=s',
                                        'no_color'
                                );
if ( exists $opts{help} ) {
  print_header();
  exit;
}

##################################
# CONFIGURE OPTIONS
##################################
$opts{min_stdout_lvl} = "INFO" unless exists $opts{min_stdout_lvl};
$opts{min_logout_lvl} = "WARN" unless exists $opts{min_logout_lvl};
my $log = $regr_obj->init_logs($opts{min_stdout_lvl},$opts{min_logout_lvl},$opts{no_color});

$log->info("Only printed to STDOUT.");
$log->warn("Gets printed to the two logs and STDOUT.");
  ...
于 2011-03-22T21:40:44.697 回答
0

听起来有点像Log::Any

于 2011-03-11T01:19:00.467 回答