dispatcher.rb 6.6 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1
#--
2
# Copyright (c) 2004-2006 David Heinemeier Hansson
D
Initial  
David Heinemeier Hansson 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#
# 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
  
29
  class << self
30

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

54 55 56
    # 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.).
57
    def reset_application!
58
      ActiveRecord::Base.reset_subclasses if defined?(ActiveRecord)
59

60
      Dependencies.clear
61 62 63
      ActiveSupport::Deprecation.silence do # TODO: Remove after 1.2
        Class.remove_class(*Reloadable.reloadable_classes)
      end
64
        
65
      ActiveRecord::Base.clear_active_connections! if defined?(ActiveRecord)
66
    end
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    
    # 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]
85
      nil
86
    end
87

88
    private
89 90 91 92

      attr_accessor :preparation_callbacks, :preparation_callbacks_run
      alias_method :preparation_callbacks_run?, :preparation_callbacks_run
      
93 94 95 96 97 98 99
      # 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

100
      def prepare_application
101 102 103 104 105
        if Dependencies.load?
          ActionController::Routing::Routes.reload
          self.preparation_callbacks_run = false
        end

106
        prepare_breakpoint
107
        require_dependency 'application' unless Object.const_defined?(:ApplicationController)
108 109
        ActiveRecord::Base.verify_active_connections! if defined?(ActiveRecord)
        run_preparation_callbacks
110
      end
111

112 113
      def reset_after_dispatch
        reset_application! if Dependencies.load?
114
        Breakpoint.deactivate_drb if defined?(BREAKPOINT_SERVER_PORT)
115
      end
116 117 118 119 120 121 122 123 124

      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
125

126 127 128 129 130 131
      def run_preparation_callbacks
        return if preparation_callbacks_run?
        preparation_callbacks.each { |_, callback| callback.call }
        self.preparation_callbacks_run = true
      end

132
      # If the block raises, send status code as a last-ditch response.
133
      def failsafe_response(output, status, exception = nil)
134
        yield
135
      rescue Exception  # errors from executed block
136 137
        begin
          output.write "Status: #{status}\r\n"
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
          
          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
158
        rescue Exception  # Logger or IO errors
159 160
        end
      end
161
  end
162 163 164 165
  
  self.preparation_callbacks = []
  self.preparation_callbacks_run = false
  
166
end
167 168 169 170

Dispatcher.to_prepare :activerecord_instantiate_observers do
  ActiveRecord::Base.instantiate_observers
end if defined?(ActiveRecord)