3 use constant NONE               =>  0;
 
   4 use constant INFO               =>  1;
 
   5 use constant DEBUG1             =>  1 << 1;
 
   6 use constant DEBUG2             =>  1 << 2;
 
   7 use constant QUERY              =>  1 << 3;
 
   8 use constant TRACE              =>  1 << 4;
 
   9 use constant BACKTRACE_ON_ERROR =>  1 << 5;
 
  10 use constant REQUEST_TIMER      =>  1 << 6;
 
  11 use constant REQUEST            =>  1 << 7;
 
  12 use constant WARN               =>  1 << 8;
 
  13 use constant TRACE2             =>  1 << 9;
 
  14 use constant ALL                => (1 << 10) - 1;
 
  15 use constant DEVEL              => INFO | DEBUG1 | QUERY | TRACE | BACKTRACE_ON_ERROR | REQUEST_TIMER;
 
  17 use constant FILE_TARGET   => 0;
 
  18 use constant STDERR_TARGET => 1;
 
  21 use POSIX qw(strftime getppid);
 
  22 use Time::HiRes qw(gettimeofday tv_interval);
 
  28 my ($text_diff_available);
 
  30 our $global_level = NONE();
 
  38   _init_globals_from_config();
 
  40   $self->{"calldepth"}  = 0;
 
  41   $self->{"file"}       = $file_name || "/tmp/lx-office-debug.log";
 
  42   $self->{"target"}     = FILE_TARGET;
 
  46     $self->{ $_[0] } = $_[1];
 
  54 my $globals_inited_from_config;
 
  55 sub _init_globals_from_config {
 
  56   return if $globals_inited_from_config;
 
  57   $globals_inited_from_config = 1;
 
  59   my $cfg = $::lx_office_conf{debug} || {};
 
  61   $global_level = NONE() if $cfg->{global_level} =~ /NONE/;
 
  62   foreach my $level (grep { $_} split(m/\s+/, $cfg->{global_level})) {
 
  63     $global_level |= eval "${level}()";
 
  66   $watch_form = $cfg->{watch_form};
 
  67   $file_name  = $cfg->{file_name} || "/tmp/lx-office-debug.log";
 
  71   my ($self, $target, $file) = @_;
 
  73   if ((FILE_TARGET == $target) && $file) {
 
  74     $self->{"file"}   = $file;
 
  75     $self->{"target"} = FILE_TARGET;
 
  77   } elsif (STDERR_TARGET == $target) {
 
  78     $self->{"target"} = STDERR_TARGET;
 
  84   my $level = shift || 0;
 
  86   return 1 unless ($global_level & TRACE);          # ignore if traces aren't active
 
  87   return 1 if $level && !($global_level & TRACE2);  # ignore if level of trace isn't active
 
  89   my ($package, $filename, $line, $subroutine) = caller(1);
 
  90   my ($dummy1, $self_filename, $self_line) = caller(0);
 
  92   my $indent = " " x $self->{"calldepth"}++;
 
  93   my $time = $self->get_request_time || '';
 
  95   if (!defined($package)) {
 
  96     $self->_write('sub' . $level, $indent . "\\ $time top-level?\n");
 
  98     $self->_write('sub' . $level, $indent
 
  99                     . "\\ $time ${subroutine} in "
 
 100                     . "${self_filename}:${self_line} called from "
 
 101                     . "${filename}:${line}\n");
 
 108   my $level = shift || 0;
 
 110   return 1 unless ($global_level & TRACE);           # ignore if traces aren't active
 
 111   return 1 if $level && !($global_level & TRACE2);   # ignore if level of trace isn't active
 
 113   my ($package, $filename, $line, $subroutine) = caller(1);
 
 114   my ($dummy1, $self_filename, $self_line) = caller(0);
 
 116   my $indent = " " x --$self->{"calldepth"};
 
 117   my $time = $self->want_request_timer ? $self->get_request_time || '' : '';
 
 119   if (!defined($package)) {
 
 120     $self->_write('sub' . $level, $indent . "/ $time top-level?\n");
 
 122     $self->_write('sub' . $level, $indent . "/ $time ${subroutine} in " . "${self_filename}:${self_line}\n");
 
 128   my ($self, $force) = @_;
 
 130   return 1 unless ($force || ($global_level & BACKTRACE_ON_ERROR));
 
 132   $self->message(BACKTRACE_ON_ERROR, "Starting full caller dump:");
 
 134   while (my ($dummy, $filename, $line, $subroutine) = caller $level) {
 
 135     $self->message(BACKTRACE_ON_ERROR, "  ${subroutine} from ${filename}:${line}");
 
 144   my ($self, $level, $message) = @_;
 
 146   $self->_write(level2string($level), $message) if (($self->{"level"} | $global_level) & $level || !$level);
 
 150   my ($self, $message) = @_;
 
 151   $self->message(WARN, $message);
 
 155   my ($self, $level, $name, $variable, %options) = @_;
 
 158   if ($variable && ('Form' eq ref $variable) && defined $variable->{password}) {
 
 159     $password             = $variable->{password};
 
 160     $variable->{password} = 'X' x 8;
 
 163   my $dumper = Data::Dumper->new([$variable]);
 
 164   $dumper->Sortkeys(1);
 
 166   $dumper->$_($options{$_}) for keys %options;
 
 167   my $output = $dumper->Dump();
 
 168   $self->message($level, "dumping ${name}:\n" . $output);
 
 170   $variable->{password} = $password if (defined $password);
 
 172   # Data::Dumper does not reset the iterator belonging to this hash
 
 173   # if 'Sortkeys' is true. Therefore clear the iterator manually.
 
 174   # See "perldoc -f each".
 
 175   if ($variable && (('HASH' eq ref $variable) || ('Form' eq ref $variable))) {
 
 183   my ($self, $level, $name, $variable) = @_;
 
 185   $self->message($level, "dumping ${name}:\n" . YAML::Dump($variable));
 
 188 sub dump_sql_result {
 
 189   my ($self, $level, $prefix, $results) = @_;
 
 191   if (!$results || !scalar @{ $results }) {
 
 192     $self->message($level, "Empty result set");
 
 196   my %column_lengths = map { $_, length $_ } keys %{ $results->[0] };
 
 198   foreach my $row (@{ $results }) {
 
 199     map { $column_lengths{$_} = length $row->{$_} if (length $row->{$_} > $column_lengths{$_}) } keys %{ $row };
 
 202   my @sorted_names = sort keys %column_lengths;
 
 203   my $format       = join '|', map { '%' . $column_lengths{$_} . 's' } @sorted_names;
 
 205   $prefix .= ' ' if $prefix;
 
 207   $self->message($level, $prefix . sprintf($format, @sorted_names));
 
 208   $self->message($level, $prefix . join('+', map { '-' x $column_lengths{$_} } @sorted_names));
 
 210   foreach my $row (@{ $results }) {
 
 211     $self->message($level, $prefix . sprintf($format, map { $row->{$_} } @sorted_names));
 
 213   $self->message($level, $prefix . sprintf('(%d row%s)', scalar @{ $results }, scalar @{ $results } > 1 ? 's' : ''));
 
 217   my ($self, $level, $item1, $item2, %params) = @_;
 
 219   if (!$self->_load_text_diff) {
 
 220     $self->warn("Perl module Text::Diff is not available");
 
 224   my @texts = map { ref $_ ? YAML::Dump($_) : $_ } ($item1, $item2);
 
 226   $self->message($level, Text::Diff::diff(\$texts[0], \$texts[1], \%params));
 
 229 sub _load_text_diff {
 
 230   $text_diff_available = eval("use Text::Diff (); 1;") ? 1 : 0 unless defined $text_diff_available;
 
 231   return $text_diff_available;
 
 234 sub enable_sub_tracing {
 
 236   $global_level |= TRACE;
 
 239 sub disable_sub_tracing {
 
 241   $global_level &= ~ TRACE;
 
 244 sub is_tracing_enabled {
 
 246   return $global_level & TRACE;
 
 251   my ($self, $prefix, $message) = @_;
 
 252   my $date = strftime("%Y-%m-%d %H:%M:%S $$ [" . getppid() . "] ${prefix}: ", localtime(time()));
 
 256   $self->_write_raw("${date}${message}\n");
 
 260   my ($self, $message) = @_;
 
 262   if ((FILE_TARGET == $self->{"target"})
 
 263       && open(FILE, ">>", $self->{"file"})) {
 
 267   } elsif (STDERR_TARGET == $self->{"target"}) {
 
 268     print STDERR $message;
 
 274   # use $_[0] as a bit mask and return levelstrings separated by /
 
 275   join '/', qw(info debug1 debug2 query trace error_call_trace request_timer WARNING)[ grep { (reverse split //, sprintf "%08b", $_[0])[$_] } 0..7 ]
 
 280   return 1 unless want_request_timer();
 
 281   $self->set_request_timer;
 
 286   return 1 unless want_request_timer();
 
 287   $self->_write("time", $self->get_request_time);
 
 289   $self->{calldepth} = 0;
 
 293   my ($self, @slurp) = @_;
 
 294   return 1 unless want_request_timer();
 
 295   $self->_write("time", $self->get_request_time() . (@slurp ? " (@slurp)" : ''));
 
 298 sub get_request_time {
 
 300   return $self->want_request_timer && $self->{request_start} ? tv_interval($self->{request_start}) : undef;
 
 303 sub set_request_timer {
 
 305   $self->{request_start} = [gettimeofday];
 
 308 sub want_request_timer {
 
 309   $global_level & REQUEST_TIMER;
 
 313   @_ == 2 ? $_[0]->{file} = $_[1] : $_[0]->{file};
 
 317   my ($self, $level) = @_;
 
 318   my $meth = $self->can(uc $level);
 
 319   die 'unknown level' unless $meth;
 
 324   my ($self, $level, $val) = @_;
 
 326     $global_level |=  $self->_by_name($level) if  $val;
 
 327     $global_level &= ~$self->_by_name($level) if !$val;
 
 329   return $global_level & $self->_by_name($level);
 
 332 sub is_request_logging_enabled {
 
 334   return $global_level & REQUEST;
 
 337 sub add_request_params {
 
 338   my ($self, $key, $value) = @_;
 
 339   return unless $self->is_request_logging_enabled;
 
 340   return if $key =~ /password/;
 
 342   push @{ $::request->{debug}{PARAMS} ||= [] }, [ $key => $value ];
 
 346   my ($self, $type, $controller, $action) = @_;
 
 347   return unless $self->is_request_logging_enabled;
 
 349   my $session_id = $::auth->create_or_refresh_session;
 
 351   my $template = <<EOL;
 
 352 *************************************
 
 353  $ENV{REQUEST_METHOD} $ENV{SCRIPT_NAME}    $session_id ($::myconfig{login})
 
 354    routing: $type, controller: $controller, action: $action
 
 357   $self->_write('Request', $template);
 
 359   my $params = join "\n   ", map {
 
 361   } @{ $::request->{debug}{PARAMS} || [] };
 
 363   $self->_write_raw(<<EOL);
 
 379 LXDebug - kivitendo debugging facilities
 
 383 This module provides functions for debugging kivitendo. An instance is
 
 384 always created as the global variable C<$::lxdebug> at the earliest
 
 387 Debugging is mostly logging of information. Each log function has a
 
 388 I<level> and an I<object> to be logged. The configuration file as well
 
 389 as this module's functions determine which levels get logged, and
 
 390 which file they're logged to.
 
 394 The available log levels are:
 
 400 Always output the message regardless of the active levels. Only use
 
 405 Informational, not an error, more important than C<DEBUG1>.
 
 409 Important debugging information.
 
 413 Less important debugging information that occurs often and spams the
 
 418 Log all queries executed by the L<SL::DBUtils> utility methods.
 
 422 Log sub calls and exits via the L<enter_sub>/L<leave_sub> functions,
 
 423 but only if they're called with a log level that is falsish
 
 424 (e.g. none, C<undef>, 0).
 
 428 Log sub calls and exits via the L<enter_sub>/L<leave_sub> functions
 
 429 even if they're called with a log level of 2. Will only have an effect
 
 430 if C<TRACE> is set as well.
 
 432 =item C<BACKTRACE_ON_ERROR>
 
 434 Log a stack trace when an error is output.
 
 436 =item C<REQUEST_TIMER>
 
 438 Log each request's total execution time when it finishes.
 
 450 Shortcut for C<INFO | QUERY | TRACE | BACKTRACE_ON_ERROR | REQUEST_TIMER>.
 
 456 C<SL::LXDebug> gets its configuration from the C<[debug]> section of
 
 457 the C<config/kivitendo.conf> configuration file. The available options
 
 462 =item C<global_level>
 
 464 A string of log level names that should be activated by
 
 465 default. Multiple log levels are separated by C<|>.
 
 469 A boolean (C<1> or C<0>). Turns on the C<$::form> watch facility. If
 
 470 this is enabled then any key inside C<$::form> can be monitored for
 
 471 changes. For example:
 
 473   # Start watching 'action'
 
 474   $::form->{"Watchdog::action"} = 1;
 
 475   # Stop watching 'invtotal'
 
 476   $::form->{"Watchdog::invtotal"} = 0;
 
 478 A log message is written when the watchdog is enabled for a variable
 
 479 and for each subsequent change. The log message includes the place
 
 480 (file name and line number) of the instruction changing the key.
 
 482 Note that this entails a performance penalty. Also only the keys
 
 483 themselves are monitored -- not the references they point to. E.g. the
 
 484 following would not trigger a change:
 
 486   $::form->{"Watchdog::some_hash"} = 1;
 
 488   $::form->{some_hash}->{some_value} = 42;
 
 490   $::form->{some_hash} = { something => 'else' };
 
 492 =item C<keep_temp_files>
 
 494 A boolean (C<1> or C<0>). If turned on then certain temporary files
 
 495 are not removed but kept in the C<users> directory. These include the
 
 496 temporary files used during printing, e.g. LaTeX files.
 
 500 The path and file name of the debug log file. Must be a location
 
 501 writeable by the web server process.
 
 509 =item C<enter_sub [$level]>
 
 511 =item C<leave_sub [$level]>
 
 513 Pairs of these can be put near the beginning/end of a sub. They'll
 
 514 cause a trace to be written to the log file if the C<TRACE> level is
 
 517 If C<$level> is given then the log messages will only be logged if the
 
 518 global log level C<TRACE2> is active as well.
 
 520 =item C<enable_sub_tracing>
 
 522 =item C<disable_sub_tracing>
 
 524 Enables/disables sub tracing with L<enter_sub>/L<leave_sub> temporarily.
 
 526 =item C<is_tracing_enabled>
 
 528 Returns whether or not the C<TRACE> debug level is active.
 
 530 =item C<show_backtrace [$force]>
 
 532 Logs a stack backtrace if C<$force> is trueish or if the log level
 
 533 C<BACKTRACE_ON_ERROR> is active.
 
 535 =item C<message $level, $message>
 
 537 Logs the message C<$message> if the log level C<$level> is active. The
 
 538 message will be prefixed with a word describing the log level.
 
 540 =item C<warn $message>
 
 542 Equivalent to C<message WARN(), $message>.
 
 544 =item C<dump $level, $name, $variable>
 
 546 Logs a message that the variable named C<$name> is dumped along with a
 
 547 dump of the variable C<$variable> created by the L<Data::Dumper>
 
 548 module. Will log a warning if said module is not available. Will only
 
 549 log if the log level C<$level> is active.
 
 551 =item C<dump_yaml $level, $name, $variable>
 
 553 Logs a message that the variable named C<$name> is dumped along with a
 
 554 dump of the variable C<$variable> created by the C<YAML> module. Will
 
 555 only log if the log level C<$level> is active.
 
 557 =item C<dump_sql $level, $prefix, $results>
 
 559 Dumps the result of an SQL query in tabular form. Will only log if the
 
 560 log level C<$level> is active.
 
 562 =item C<show_diff $level, $item1, $item2, %params>
 
 564 Logs a unified diff of the textual representations of C<$item1> and
 
 565 C<$item2>. Requires the module L<Text::Diff> and logs a warning if
 
 566 said module is not available.
 
 568 C<$item1> and C<$item2> are dumped via L<YAML::Dumper> before diffing
 
 569 if they're non-scalars.
 
 571 Will only log if the log level C<$level> is active.
 
 573 =item C<begin_request>
 
 579 =item C<set_request_timer>
 
 581 =item C<want_request_timer>
 
 583 Internal functions used to log the current request's exeuction time
 
 584 (log level C<REQUEST_TIMER>).
 
 586 =item C<get_request_time>
 
 588 Returns the current request's elapsed execution time in seconds.
 
 590 =item C<file [$file_name]>
 
 592 Sets and/or returns the file name this instance logs to.
 
 594 =item C<level_by_name $level[, $val]>
 
 596 Returns if a log level C<$level> is active. C<$level> is a string
 
 597 representation, not one of the level constants from above.
 
 599 If C<$val> is given then said level will be turned on (if C<$val> is
 
 600 trueish) or off (if C<$val> is falsish).
 
 610 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>,
 
 611 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>