add more routing code together with associated commands
[spider.git] / perl / DXDebug.pm
1 #
2 # The system variables - those indicated will need to be changed to suit your
3 # circumstances (and callsign)
4 #
5 # Copyright (c) 1998 - Dirk Koopman G1TLH
6 #
7 # $Id$
8 #
9
10 package DXDebug;
11
12 require Exporter;
13 @ISA = qw(Exporter);
14 @EXPORT = qw(dbginit dbgstore dbg dbgadd dbgsub dbglist dbgdump isdbg dbgclose confess croak cluck);
15
16 use strict;
17 use vars qw(%dbglevel $fp);
18
19 use DXUtil;
20 use DXLog ();
21 use Carp ();
22
23 %dbglevel = ();
24 $fp = undef;
25
26 # Avoid generating "subroutine redefined" warnings with the following
27 # hack (from CGI::Carp):
28 if (!defined $DB::VERSION) {
29         local $^W=0;
30         eval qq( sub confess { 
31             \$SIG{__DIE__} = 'DEFAULT'; 
32         DXDebug::dbgstore(\$@, Carp::shortmess(\@_));
33             exit(-1); 
34         }
35         sub croak { 
36                 \$SIG{__DIE__} = 'DEFAULT'; 
37         DXDebug::dbgstore(\$@, Carp::longmess(\@_));
38                 exit(-1); 
39         }
40         sub carp    { DXDebug::dbgstore(Carp::shortmess(\@_)); }
41         sub cluck   { DXDebug::dbgstore(Carp::longmess(\@_)); } 
42         );
43
44     CORE::die(Carp::shortmess($@)) if $@;
45 } else {
46     eval qq( sub confess { Carp::confess(\@_); }; 
47                          sub croak { Carp::croak(\@_); }; 
48                          sub cluck { Carp::cluck(\@_); }; 
49    );
50
51
52
53 sub dbgstore
54 {
55         my $t = time; 
56         for (@_) {
57                 my $r = $_;
58                 chomp $r;
59                 my @l = split /\n/, $r;
60                 for (@l) {
61                         s/([\x00-\x08\x0B-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg;
62                         print "$_\n" if defined \*STDOUT;
63                         $fp->writeunix($t, "$t^$_"); 
64                 }
65         }
66 }
67
68 sub dbginit
69 {
70         # add sig{__DIE__} handling
71         if (!defined $DB::VERSION) {
72                 $SIG{__WARN__} = sub { dbgstore($@, Carp::shortmess(@_)); };
73                 $SIG{__DIE__} = sub { dbgstore($@, Carp::longmess(@_)); };
74         }
75
76         $fp = DXLog::new('debug', 'dat', 'd');
77 }
78
79 sub dbgclose
80 {
81         $SIG{__DIE__} = $SIG{__WARN__} = 'DEFAULT';
82         $fp->close() if $fp;
83         undef $fp;
84 }
85
86 sub dbg
87 {
88         my $l = shift;
89         if ($fp && ($dbglevel{$l} || $l eq 'err')) {
90             dbgstore(@_);
91         }
92 }
93
94 sub dbgdump
95 {
96         my $l = shift;
97         my $m = shift;
98         if ($fp && ($dbglevel{$l} || $l eq 'err')) {
99                 foreach my $l (@_) {
100                         for (my $o = 0; $o < length $l; $o += 16) {
101                                 my $c = substr $l, $o, 16;
102                                 my $h = unpack "H*", $c;
103                                 $c =~ s/[\x00-\x1f\x7f-\xff]/./g;
104                                 my $left = 16 - length $c;
105                                 $h .= ' ' x (2 * $left) if $left > 0;
106                                 dbgstore($m . sprintf("%4d:", $o) . "$h $c");
107                                 $m = ' ' x (length $m);
108                         }
109                 }
110         }
111 }
112
113 sub dbgadd
114
115         my $entry;
116         
117         foreach $entry (@_) {
118                 $dbglevel{$entry} = 1;
119         }
120 }
121
122 sub dbgsub
123 {
124         my $entry;
125         
126         foreach $entry (@_) {
127                 delete $dbglevel{$entry};
128         }
129 }
130
131 sub dbglist
132 {
133         return keys (%dbglevel);
134 }
135
136 sub isdbg
137 {
138         my $s = shift;
139         return $dbglevel{$s};
140 }
141
142 sub shortmess 
143 {
144         return Carp::shortmess(@_);
145 }
146
147 sub longmess 
148
149         return Carp::longmess(@_);
150 }
151
152 1;
153 __END__
154
155
156
157
158
159
160