X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXDebug.pm;h=ac452413555d4975dc3750bcaad5d120234fefaa;hb=575db552c5a635ce2eb431de07f568113374735f;hp=b42db66dfb4934dd9744b2f9c6fcd00f1b77e8be;hpb=0bd9d2811cc42417676a1b11b121681c2377d70a;p=spider.git diff --git a/perl/DXDebug.pm b/perl/DXDebug.pm index b42db66d..ac452413 100644 --- a/perl/DXDebug.pm +++ b/perl/DXDebug.pm @@ -18,7 +18,7 @@ use vars qw(%dbglevel $fp); use DXUtil; use DXLog (); -use Carp; +use Carp qw(cluck); %dbglevel = (); $fp = DXLog::new('debug', 'dat', 'd'); @@ -28,13 +28,13 @@ $fp = DXLog::new('debug', 'dat', 'd'); if (!defined $DB::VERSION) { local $^W=0; eval qq( sub confess { - \$SIG{__DIE__} = 'DEFAULT'; - DXDebug::_store(Carp::longmess(\@_)); - exit(-1); + \$SIG{__DIE__} = 'DEFAULT'; + DXDebug::_store(\$@, Carp::shortmess(\@_)); + exit(-1); } - sub confess { + sub croak { \$SIG{__DIE__} = 'DEFAULT'; - DXDebug::_store(Carp::shortmess(\@_)); + DXDebug::_store(\$@, Carp::longmess(\@_)); exit(-1); } sub carp { DXDebug::_store(Carp::shortmess(\@_)); } @@ -42,15 +42,25 @@ if (!defined $DB::VERSION) { ); CORE::die(Carp::shortmess($@)) if $@; -} +} else { + eval qq( sub confess { Carp::confess(\@_); }; + sub cluck { Carp::cluck(\@_); }; + ); +} sub _store { my $t = time; for (@_) { - $fp->writeunix($t, "$t^$_"); - print STDERR $_; + chomp; + my @l = split /\n/; + for (@l) { + my $l = $_; + $l =~ s/([\x00\x08\x0B-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg; + print "$_\n" if defined \*STDOUT; + $fp->writeunix($t, "$t^$_"); + } } } @@ -58,8 +68,8 @@ sub dbginit { # add sig{__DIE__} handling if (!defined $DB::VERSION) { - $SIG{__WARN__} = sub { _store(Carp::shortmess(@_)); }; - $SIG{__DIE__} = sub { _store(Carp::shortmess(@_)); }; + $SIG{__WARN__} = sub { _store($@, Carp::shortmess(@_)); }; + $SIG{__DIE__} = sub { _store($@, Carp::longmess(@_)); }; } }