dispatcher.rb 4.1 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#--
# 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.
#++

24 25 26
# 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.
D
Initial  
David Heinemeier Hansson 已提交
27
class Dispatcher
28
  class << self
29

30
    # Dispatch the given CGI request, using the given session options, and
31
    # emitting the output via the given output.  If you dispatch with your
32 33
    # own CGI object be sure to handle the exceptions it raises on multipart
    # requests (EOFError and ArgumentError).
34
    def dispatch(cgi = nil, session_options = ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS, output = $stdout)
35 36 37 38 39
      if cgi ||= new_cgi(output)
        request, response = ActionController::CgiRequest.new(cgi, session_options), ActionController::CgiResponse.new(cgi)
        prepare_application
        ActionController::Routing::Routes.recognize!(request).process(request, response).out(output)
      end
40
    rescue Object => exception
41
      failsafe_response(output, '500 Internal Server Error', exception) do
42 43
        ActionController::Base.process_with_exception(request, response, exception).out(output)
      end
44
    ensure
45
      # Do not give a failsafe response here.
46
      reset_after_dispatch
47
    end
48

49 50 51
    # 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.).
52 53
    def reset_application!
      Dependencies.clear
54
      ActiveRecord::Base.reset_subclasses
N
Nicholas Seckar 已提交
55
      Class.remove_class(*Reloadable.reloadable_classes)
56
    end
57

58
    private
59 60 61 62 63 64 65
      # 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

66 67
      def prepare_application
        ActionController::Routing::Routes.reload if Dependencies.load?
68
        prepare_breakpoint
N
Nicholas Seckar 已提交
69
        require_dependency('application.rb') unless Object.const_defined?(:ApplicationController)
70
        ActiveRecord::Base.verify_active_connections!
71
      end
72

73 74
      def reset_after_dispatch
        reset_application! if Dependencies.load?
75
        Breakpoint.deactivate_drb if defined?(BREAKPOINT_SERVER_PORT)
76
      end
77 78 79 80 81 82 83 84 85

      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
86 87

      # If the block raises, send status code as a last-ditch response.
88
      def failsafe_response(output, status, exception)
89 90 91 92
        yield
      rescue Object
        begin
          output.write "Status: #{status}\r\n"
93 94
          output.write "Content-Type: text/plain\r\n\r\n"
          output.write exception.to_s + "\r\n" + exception.backtrace.join("\r\n")
95 96 97
        rescue Object
        end
      end
98
  end
99
end