Sha256: 8cb5a83ac753e5610c896dd73b3cf4f5df99e47623ca9ee2e88ff4fa52aa1543

Contents?: true

Size: 1.73 KB

Versions: 72

Compression:

Stored size: 1.73 KB

Contents

module ActionDispatch
  module Journey # :nodoc:
    # The Routing table. Contains all routes for a system. Routes can be
    # added to the table by calling Routes#add_route.
    class Routes # :nodoc:
      include Enumerable

      attr_reader :routes, :named_routes

      def initialize
        @routes             = []
        @named_routes       = {}
        @ast                = nil
        @partitioned_routes = nil
        @simulator          = nil
      end

      def length
        routes.length
      end
      alias :size :length

      def last
        routes.last
      end

      def each(&block)
        routes.each(&block)
      end

      def clear
        routes.clear
        named_routes.clear
      end

      def partitioned_routes
        @partitioned_routes ||= routes.partition do |r|
          r.path.anchored && r.ast.grep(Nodes::Symbol).all?(&:default_regexp?)
        end
      end

      def ast
        @ast ||= begin
          asts = partitioned_routes.first.map(&:ast)
          Nodes::Or.new(asts) unless asts.empty?
        end
      end

      def simulator
        @simulator ||= begin
          gtg = GTG::Builder.new(ast).transition_table
          GTG::Simulator.new(gtg)
        end
      end

      # Add a route to the routing table.
      def add_route(app, path, conditions, defaults, name = nil)
        route = Route.new(name, app, path, conditions, defaults)

        route.precedence = routes.length
        routes << route
        named_routes[name] = route if name && !named_routes[name]
        clear_cache!
        route
      end

      private

        def clear_cache!
          @ast                = nil
          @partitioned_routes = nil
          @simulator          = nil
        end
    end
  end
end

Version data entries

72 entries across 71 versions & 5 rubygems

Version Path
activejob-lock-0.0.2 rails/actionpack/lib/action_dispatch/journey/routes.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/actionpack-4.2.1/lib/action_dispatch/journey/routes.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/actionpack-4.2.2/lib/action_dispatch/journey/routes.rb
actionpack-4.2.2 lib/action_dispatch/journey/routes.rb
actionpack-4.1.11 lib/action_dispatch/journey/routes.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/journey/routes.rb
actionpack-4.1.10 lib/action_dispatch/journey/routes.rb
actionpack-4.2.1 lib/action_dispatch/journey/routes.rb
actionpack-4.1.10.rc4 lib/action_dispatch/journey/routes.rb
actionpack-4.2.1.rc4 lib/action_dispatch/journey/routes.rb
actionpack-4.1.10.rc3 lib/action_dispatch/journey/routes.rb
actionpack-4.2.1.rc3 lib/action_dispatch/journey/routes.rb
actionpack-4.1.10.rc2 lib/action_dispatch/journey/routes.rb
actionpack-4.2.1.rc2 lib/action_dispatch/journey/routes.rb
actionpack-4.1.10.rc1 lib/action_dispatch/journey/routes.rb
actionpack-4.2.1.rc1 lib/action_dispatch/journey/routes.rb
activejob-lock-0.0.1 rails/actionpack/lib/action_dispatch/journey/routes.rb
actionpack-4.0.13 lib/action_dispatch/journey/routes.rb
actionpack-4.1.9 lib/action_dispatch/journey/routes.rb
actionpack-4.1.9.rc1 lib/action_dispatch/journey/routes.rb