aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application/routes_reloader.rb
blob: 6d61de2320fbe45347cf6578bf765171d8203949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module Rails
  class Application
    class RoutesReloader
      # TODO Change config.action_dispatch.route_files to config.action_dispatch.routes_path
      # TODO Write tests
      def initialize(config)
        @config, @last_change_at = config, nil
      end

      def changed_at
        routes_changed_at = nil

        files.each do |file|
          config_changed_at = File.stat(file).mtime

          if routes_changed_at.nil? || config_changed_at > routes_changed_at
            routes_changed_at = config_changed_at
          end
        end

        routes_changed_at
      end

      def reload!
        routes = Rails::Application.routes
        routes.disable_clear_and_finalize = true

        routes.clear!
        files.each { |file| load(file) }
        routes.finalize!

        nil
      ensure
        routes.disable_clear_and_finalize = false
      end

      def reload_if_changed
        current_change_at = changed_at
        if @last_change_at != current_change_at
          @last_change_at = current_change_at
          reload!
        end
      end

      def files
        @config.action_dispatch.route_files
      end
    end
  end
end