1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/application/routes_reloader.rb
Jean Boussier 5b1332bb4d Fully initialize routes before the first request is handled
`AD::Journey::GTG::Simulator` is lazily built the first time
`Journey::Router#find_routes` is invoked, which happens when
the first request is served.

On large applications with many routes, building the simulator
can take several hundred milliseconds (~700ms for us).

Triggering this initialization during the boot process reduces
the impact of deploys on the application response time.
2017-01-18 11:10:52 +01:00

69 lines
1.3 KiB
Ruby

require "active_support/core_ext/module/delegation"
module Rails
class Application
class RoutesReloader
attr_reader :route_sets, :paths
attr_accessor :eager_load
delegate :updated?, to: :updater
def initialize
@paths = []
@route_sets = []
@eager_load = false
end
def reload!
clear!
load_paths
finalize!
ensure
revert
end
def execute
ret = updater.execute
route_sets.each(&:eager_load!) if eager_load
ret
end
def execute_if_updated
if updated = updater.execute_if_updated
route_sets.each(&:eager_load!) if eager_load
end
updated
end
private
def updater
@updater ||= begin
updater = ActiveSupport::FileUpdateChecker.new(paths) { reload! }
updater.execute
updater
end
end
def clear!
route_sets.each do |routes|
routes.disable_clear_and_finalize = true
routes.clear!
end
end
def load_paths
paths.each { |path| load(path) }
end
def finalize!
route_sets.each(&:finalize!)
end
def revert
route_sets.each do |routes|
routes.disable_clear_and_finalize = false
end
end
end
end
end