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
|
package Apache::Debug;
use Cwd 'fastcwd';
use vars qw($VERSION);
$VERSION = (qw$Revision: 1.6 $)[1];
sub import {
local $^W = 0;
shift;
my(%args) = @_;
return unless exists $args{level};
print STDERR "Apache::Debug: [@_]\n";
$Apache::Registry::Debug = $args{level};
$^M = 'a' x (1<<16);
require Carp;
$SIG{__DIE__} = \&Carp::confess;
}
#from HTTP::Status
my %StatusCode = (
100 => 'Continue',
101 => 'Switching Protocols',
200 => 'OK',
201 => 'Created',
202 => 'Accepted',
203 => 'Non-Authoritative Information',
204 => 'No Content',
205 => 'Reset Content',
206 => 'Partial Content',
300 => 'Multiple Choices',
301 => 'Moved Permanently',
302 => 'Moved Temporarily',
303 => 'See Other',
304 => 'Not Modified',
305 => 'Use Proxy',
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
407 => 'Proxy Authentication Required',
408 => 'Request Timeout',
409 => 'Conflict',
410 => 'Gone',
411 => 'Length Required',
412 => 'Precondition Failed',
413 => 'Request Entity Too Large',
414 => 'Request-URI Too Large',
415 => 'Unsupported Media Type',
500 => 'Internal Server Error',
501 => 'Not Implemented',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported',
);
sub dump {
my($r, $status) = (shift,shift);
my $srv = $r->server;
my $conn = $r->connection;
my %headers = $r->headers_in;
my $host = $r->get_remote_host;
my $cwd = fastcwd;
$r->status($status);
$r->content_type("text/html");
$r->content_language("en");
$r->no_cache(1);
$r->header_out("X-Debug-Version" => q$Id: Debug.pm,v 1.6 1998/03/19 23:08:44 dougm Exp $);
$r->send_http_header;
return 0 if $r->header_only; # should not generate a body
my $title = "$status $StatusCode{$status}";
$r->write_client(join("\n", "<html>",
"<head><title>$title</title></head>",
"<body>", "<h3>$title</h3>", @_,
"<pre>", ($@ ? "$@\n" : ""), "cwd=$cwd\n"));
for (
qw(
method uri protocol path_info filename
allow_options
)
)
{
$r->print(sprintf "<b>\$r->%-17s</b> : %s\n", $_, $r->$_() );
}
for (
qw(
server_admin
server_hostname
port
)
)
{
$r->print(sprintf "<b>\$s->%-17s</b> : %s\n", $_, $srv->$_() );
}
for (
qw(
remote_host
remote_ip
remote_logname
user
auth_type
)
)
{
$r->print(sprintf "<b>\$c->%-17s</b> : %s\n", $_, $conn->$_() );
}
my $args = $r->args;
my %args = $r->args;
my %in = $r->content;
$r->print(
"\n<b>scalar \$r->args :</b> $args\n",
"\n<b>\$r->args:</b>\n",
(map { " $_ = $args{$_}\n" } sort keys %args),
"\n<b>\$r->content:</b>\n",
(map { " $_ = $in{$_}\n" } sort keys %in),
"\n<b>\$r->headers_in:</b>\n",
(map { sprintf " %-12s = %s\n", $_, $headers{$_} } sort keys %headers),
);
$r->print("</pre>\n</body></html>\n");
return 0; #need to give a return status
}
1;
__END__
=head1 NAME
Apache::Debug - Utilities for debugging embedded perl code
=head1 SYNOPSIS
use Apache::Debug ();
Apache::Debug::dump($r, SERVER_ERROR, "Uh Oh!");
=head1 DESCRIPTION
This module sends what may be helpful debugging info to the client
rather that the error log.
|