Class: ActionDispatch::Journey::Routes

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/action_dispatch/journey/routes.rb

Overview

The Routing table. Contains all routes for a system. Routes can be added to the table by calling Routes#add_route.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRoutes

Returns a new instance of Routes.



10
11
12
13
14
15
16
# File 'lib/action_dispatch/journey/routes.rb', line 10

def initialize
  @routes             = []
  @ast                = nil
  @anchored_routes    = []
  @custom_routes      = []
  @simulator          = nil
end

Instance Attribute Details

#anchored_routesObject (readonly)

Returns the value of attribute anchored_routes.



8
9
10
# File 'lib/action_dispatch/journey/routes.rb', line 8

def anchored_routes
  @anchored_routes
end

#custom_routesObject (readonly)

Returns the value of attribute custom_routes.



8
9
10
# File 'lib/action_dispatch/journey/routes.rb', line 8

def custom_routes
  @custom_routes
end

#routesObject (readonly)

Returns the value of attribute routes.



8
9
10
# File 'lib/action_dispatch/journey/routes.rb', line 8

def routes
  @routes
end

Instance Method Details

#add_route(name, mapping) ⇒ Object



63
64
65
66
67
68
69
# File 'lib/action_dispatch/journey/routes.rb', line 63

def add_route(name, mapping)
  route = mapping.make_route name, routes.length
  routes << route
  partition_route(route)
  clear_cache!
  route
end

#astObject



49
50
51
52
53
54
# File 'lib/action_dispatch/journey/routes.rb', line 49

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

#clearObject



35
36
37
38
39
# File 'lib/action_dispatch/journey/routes.rb', line 35

def clear
  routes.clear
  anchored_routes.clear
  custom_routes.clear
end

#each(&block) ⇒ Object



31
32
33
# File 'lib/action_dispatch/journey/routes.rb', line 31

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

#empty?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/action_dispatch/journey/routes.rb', line 18

def empty?
  routes.empty?
end

#lastObject



27
28
29
# File 'lib/action_dispatch/journey/routes.rb', line 27

def last
  routes.last
end

#lengthObject Also known as: size



22
23
24
# File 'lib/action_dispatch/journey/routes.rb', line 22

def length
  routes.length
end

#partition_route(route) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/action_dispatch/journey/routes.rb', line 41

def partition_route(route)
  if route.path.anchored && route.ast.grep(Nodes::Symbol).all?(&:default_regexp?)
    anchored_routes << route
  else
    custom_routes << route
  end
end

#simulatorObject



56
57
58
59
60
61
# File 'lib/action_dispatch/journey/routes.rb', line 56

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