2004-11-23 20:04:44 -05:00
|
|
|
#--
|
|
|
|
# Copyright (c) 2004 David Heinemeier Hansson
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2005-10-15 23:00:44 -04:00
|
|
|
# This class provides an interface for dispatching a CGI (or CGI-like) request
|
|
|
|
# to the appropriate controller and action. It also takes care of resetting
|
|
|
|
# the environment (when Dependencies.load? is true) after each request.
|
2004-11-23 20:04:44 -05:00
|
|
|
class Dispatcher
|
2006-08-05 22:51:53 -04:00
|
|
|
|
2005-02-15 11:15:02 -05:00
|
|
|
class << self
|
2005-11-01 13:29:41 -05:00
|
|
|
|
2005-10-15 23:00:44 -04:00
|
|
|
# Dispatch the given CGI request, using the given session options, and
|
2005-11-01 13:29:41 -05:00
|
|
|
# emitting the output via the given output. If you dispatch with your
|
2005-11-01 20:20:36 -05:00
|
|
|
# own CGI object be sure to handle the exceptions it raises on multipart
|
|
|
|
# requests (EOFError and ArgumentError).
|
2005-11-01 13:29:41 -05:00
|
|
|
def dispatch(cgi = nil, session_options = ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS, output = $stdout)
|
2006-07-28 19:09:29 -04:00
|
|
|
controller = nil
|
2005-11-01 20:20:36 -05:00
|
|
|
if cgi ||= new_cgi(output)
|
|
|
|
request, response = ActionController::CgiRequest.new(cgi, session_options), ActionController::CgiResponse.new(cgi)
|
|
|
|
prepare_application
|
2006-07-28 19:09:29 -04:00
|
|
|
controller = ActionController::Routing::Routes.recognize(request)
|
|
|
|
controller.process(request, response).out(output)
|
2005-11-01 20:20:36 -05:00
|
|
|
end
|
2005-11-01 13:29:41 -05:00
|
|
|
rescue Object => exception
|
2006-03-07 02:27:54 -05:00
|
|
|
failsafe_response(output, '500 Internal Server Error', exception) do
|
2006-07-28 19:09:29 -04:00
|
|
|
controller ||= const_defined?(:ApplicationController) ? ApplicationController : ActionController::Base
|
|
|
|
controller.process_with_exception(request, response, exception).out(output)
|
2005-11-01 20:20:36 -05:00
|
|
|
end
|
2005-11-01 13:29:41 -05:00
|
|
|
ensure
|
2005-11-01 20:20:36 -05:00
|
|
|
# Do not give a failsafe response here.
|
2005-11-01 13:29:41 -05:00
|
|
|
reset_after_dispatch
|
2004-11-30 12:19:01 -05:00
|
|
|
end
|
2005-06-29 07:07:20 -04:00
|
|
|
|
2005-10-15 23:00:44 -04:00
|
|
|
# Reset the application by clearing out loaded controllers, views, actions,
|
|
|
|
# mailers, and so forth. This allows them to be loaded again without having
|
|
|
|
# to restart the server (WEBrick, FastCGI, etc.).
|
2005-06-29 07:07:20 -04:00
|
|
|
def reset_application!
|
|
|
|
Dependencies.clear
|
2006-02-02 00:08:42 -05:00
|
|
|
Class.remove_class(*Reloadable.reloadable_classes)
|
2006-08-07 13:00:03 -04:00
|
|
|
ActiveRecord::Base.reset if defined?(ActiveRecord)
|
2005-06-29 07:07:20 -04:00
|
|
|
end
|
2006-08-05 22:51:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Add a preparation callback. Preparation callbacks are run before every
|
|
|
|
# request in development mode, and before the first request in production
|
|
|
|
# mode.
|
|
|
|
#
|
|
|
|
# An optional identifier may be supplied for the callback. If provided,
|
|
|
|
# to_prepare may be called again with the same identifier to replace the
|
|
|
|
# existing callback. Passing an identifier is a suggested practice if the
|
|
|
|
# code adding a preparation block may be reloaded.
|
|
|
|
def to_prepare(identifier = nil, &block)
|
|
|
|
unless identifier.nil?
|
|
|
|
callback = preparation_callbacks.detect { |ident, _| ident == identifier }
|
|
|
|
if callback # Already registered: update the existing callback
|
|
|
|
callback[-1] = block
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
preparation_callbacks << [identifier, block]
|
|
|
|
nil
|
|
|
|
end
|
2005-11-01 20:20:36 -05:00
|
|
|
|
2005-01-15 08:26:48 -05:00
|
|
|
private
|
2006-08-05 22:51:53 -04:00
|
|
|
|
|
|
|
attr_accessor :preparation_callbacks, :preparation_callbacks_run
|
|
|
|
alias_method :preparation_callbacks_run?, :preparation_callbacks_run
|
|
|
|
|
2005-11-01 20:20:36 -05:00
|
|
|
# CGI.new plus exception handling. CGI#read_multipart raises EOFError
|
|
|
|
# if body.empty? or body.size != Content-Length and raises ArgumentError
|
|
|
|
# if Content-Length is non-integer.
|
|
|
|
def new_cgi(output)
|
|
|
|
failsafe_response(output, '400 Bad Request') { CGI.new }
|
|
|
|
end
|
|
|
|
|
2005-02-14 20:45:35 -05:00
|
|
|
def prepare_application
|
2006-08-05 22:51:53 -04:00
|
|
|
if Dependencies.load?
|
|
|
|
ActionController::Routing::Routes.reload
|
|
|
|
self.preparation_callbacks_run = false
|
|
|
|
end
|
|
|
|
|
2005-08-30 20:47:51 -04:00
|
|
|
prepare_breakpoint
|
2006-02-03 15:29:39 -05:00
|
|
|
require_dependency('application.rb') unless Object.const_defined?(:ApplicationController)
|
2006-08-05 22:51:53 -04:00
|
|
|
ActiveRecord::Base.verify_active_connections! if defined?(ActiveRecord)
|
|
|
|
run_preparation_callbacks
|
2005-01-24 05:58:17 -05:00
|
|
|
end
|
2006-03-01 17:08:00 -05:00
|
|
|
|
2005-06-29 07:07:20 -04:00
|
|
|
def reset_after_dispatch
|
|
|
|
reset_application! if Dependencies.load?
|
2005-02-14 20:45:35 -05:00
|
|
|
Breakpoint.deactivate_drb if defined?(BREAKPOINT_SERVER_PORT)
|
2005-01-15 08:26:48 -05:00
|
|
|
end
|
2005-08-30 20:47:51 -04:00
|
|
|
|
|
|
|
def prepare_breakpoint
|
|
|
|
return unless defined?(BREAKPOINT_SERVER_PORT)
|
|
|
|
require 'breakpoint'
|
|
|
|
Breakpoint.activate_drb("druby://localhost:#{BREAKPOINT_SERVER_PORT}", nil, !defined?(FastCGI))
|
|
|
|
true
|
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
2005-11-01 20:20:36 -05:00
|
|
|
|
2006-08-05 22:51:53 -04:00
|
|
|
def run_preparation_callbacks
|
|
|
|
return if preparation_callbacks_run?
|
|
|
|
preparation_callbacks.each { |_, callback| callback.call }
|
|
|
|
self.preparation_callbacks_run = true
|
|
|
|
end
|
|
|
|
|
2005-11-01 20:20:36 -05:00
|
|
|
# If the block raises, send status code as a last-ditch response.
|
2006-03-08 09:33:07 -05:00
|
|
|
def failsafe_response(output, status, exception = nil)
|
2005-11-01 20:20:36 -05:00
|
|
|
yield
|
|
|
|
rescue Object
|
|
|
|
begin
|
|
|
|
output.write "Status: #{status}\r\n"
|
2006-04-05 00:52:31 -04:00
|
|
|
|
|
|
|
if exception
|
|
|
|
message = exception.to_s + "\r\n" + exception.backtrace.join("\r\n")
|
|
|
|
error_path = File.join(RAILS_ROOT, 'public', '500.html')
|
|
|
|
|
|
|
|
if defined?(RAILS_DEFAULT_LOGGER) && !RAILS_DEFAULT_LOGGER.nil?
|
|
|
|
RAILS_DEFAULT_LOGGER.fatal(message)
|
|
|
|
|
|
|
|
output.write "Content-Type: text/html\r\n\r\n"
|
|
|
|
|
|
|
|
if File.exists?(error_path)
|
|
|
|
output.write(IO.read(error_path))
|
|
|
|
else
|
|
|
|
output.write("<html><body><h1>Application error (Rails)</h1></body></html>")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
output.write "Content-Type: text/plain\r\n\r\n"
|
|
|
|
output.write(message)
|
|
|
|
end
|
|
|
|
end
|
2005-11-01 20:20:36 -05:00
|
|
|
rescue Object
|
|
|
|
end
|
|
|
|
end
|
2005-01-02 13:32:56 -05:00
|
|
|
end
|
2006-08-05 22:51:53 -04:00
|
|
|
|
|
|
|
self.preparation_callbacks = []
|
|
|
|
self.preparation_callbacks_run = false
|
|
|
|
|
2005-02-20 12:20:10 -05:00
|
|
|
end
|