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
|
=begin
= apache/eruby-debug.rb
Copyright (C) 2001 Shugo Maeda <shugo@modruby.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
== Overview
Apache::ERubyDebug handles eRuby files, and sends information to clients
on error for debug.
== Example of httpd.conf
RubyRequire apache/eruby-debug
<Location /eruby>
SetHandler ruby-object
RubyHandler Apache::ERubyDebug.instance
</Location>
=end
require "apache/eruby-run"
module Apache
class ERubyDebug < ERubyRun
def handler(r)
status = check_request(r)
return status if status != OK
filename = r.filename.dup
filename.untaint
code = compile(filename)
prerun(r)
run(r, code, filename)
postrun(r)
return OK
end
private
def initialize
@compiler = ERuby::Compiler.new
end
def run(r, code, filename)
begin
super(code, filename)
rescue SystemExit
postrun(r)
raise($!)
rescue Exception
$>.replace('')
bt = $!.backtrace.collect{|x| CGI::escapeHTML(x)}
msg = CGI::escapeHTML($!.to_s)
fname = File::basename(@compiler.sourcefile)
lineno = bt.shift.scan(/:(\d+)/).shift.shift.to_i
err = sprintf("%s:%d: %s<br>\n", fname, lineno, msg)
bt.each do |stack|
err << sprintf("<div class=\"backtrace\">%s<br></div>\n", stack)
end
print_error(r, code, err)
end
end
def print_error(r, code, err)
r.print <<HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>mod_ruby</title>
<style type="text/css">
<!--
body { background-color: #ffffff }
table { width: 100%; padding: 5pt; border-style: none }
th { color: #6666ff; background-color: #b0d0d0; text-align: left }
td { color: #336666; background-color: #d0ffff }
strong { color: #ff0000; font-weight: bold }
div.backtrace { text-indent: 15% }
#version { color: #ff9900 }
-->
</style>
</head>
<body>
<table summary="mod_ruby debug information">
<tr><th id="error">
ERROR
</th></tr>
<tr><td headers="error">
#{err}
</td></tr>
</table>
</body>
</html>
HTML
end
end
end
|