1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Cheaper metal cascade

This commit is contained in:
Jeremy Kemper 2008-12-18 16:55:03 -08:00
parent 03f6ecc6c6
commit 6ce4b43035
2 changed files with 52 additions and 11 deletions

View file

@ -0,0 +1,31 @@
require 'active_support/ordered_hash'
module Rails
module Rack
# Try a request on several apps; return the first non-404 response.
class Cascade
attr_reader :apps
def initialize(apps)
@apps = ActiveSupport::OrderedHash.new
apps.each { |app| add app }
end
def call(env)
@apps.keys.each do |app|
result = app.call(env)
return result unless result[0].to_i == 404
end
Metal::NotFoundResponse
end
def add(app)
@apps[app] = true
end
def include?(app)
@apps.include?(app)
end
end
end
end

View file

@ -1,17 +1,27 @@
require 'rails/rack/cascade'
module Rails module Rails
module Rack module Rack
class Metal module Metal
def self.new(app) NotFoundResponse = [404, {}, []].freeze
apps = Dir["#{Rails.root}/app/metal/*.rb"].map do |file| NotFound = lambda { NotFoundResponse }
File.basename(file, '.rb').camelize.constantize
end class << self
apps << app def new(app)
::Rack::Cascade.new(apps) Cascade.new(builtins + [app])
end end
NotFound = lambda { |env| def builtins
[404, {"Content-Type" => "text/html"}, "Not Found"] base = "#{Rails.root}/app/metal"
} matcher = /\A#{Regexp.escape(base)}\/(.*)\.rb\Z/
Dir["#{base}/**/*.rb"].sort.map do |file|
file.sub!(matcher, '\1')
require file
file.classify.constantize
end
end
end
end end
end end
end end