=begin = apache/ruby-debug.rb Copyright (C) 2001 Shugo Maeda 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::RubyDebug executes Ruby scripts, and sends information to clients on error for debug. == Example of httpd.conf RubyRequire apache/ruby-debug SetHandler ruby-object RubyHandler Apache::RubyDebug.instance =end require "apache/ruby-run" require "cgi" module Apache class RubyDebug < RubyRun def handler(r) status = check_request(r) return status if status != OK filename = setup(r) begin load(filename, true) rescue SystemExit raise($!) rescue Exception r.content_type = "text/html" r.send_http_header $>.replace('') bt = $!.backtrace.collect{|x| CGI::escapeHTML(x)} msg = CGI::escapeHTML($!.to_s) code = File::open(filename){|fd| fd.read} lineno = bt.shift.scan(/:(\d+)/).shift.shift.to_i err = sprintf("%s:%d: %s
\n", filename, lineno, msg) bt.each do |stack| err << sprintf("
%s
\n", stack) end print_error(r, code, err) end return OK end def print_error(r, code, err) r.print < mod_ruby
ERROR
#{err}
CODE
#{CGI::escapeHTML(code)}
HTML end end end