Class: Grape::Router

Inherits:
Object
  • Object
show all
Defined in:
lib/grape/router.rb,
lib/grape/router/route.rb,
lib/grape/router/pattern.rb,
lib/grape/router/attribute_translator.rb

Defined Under Namespace

Classes: Any, AttributeTranslator, Pattern, Route

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRouter

Returns a new instance of Router.



31
32
33
34
35
# File 'lib/grape/router.rb', line 31

def initialize
  @neutral_map = []
  @map = Hash.new { |hash, key| hash[key] = [] }
  @optimized_map = Hash.new { |hash, key| hash[key] = // }
end

Instance Attribute Details

#compiledObject (readonly)

Returns the value of attribute compiled.



7
8
9
# File 'lib/grape/router.rb', line 7

def compiled
  @compiled
end

#mapObject (readonly)

Returns the value of attribute map.



7
8
9
# File 'lib/grape/router.rb', line 7

def map
  @map
end

Class Method Details

.normalize_path(path) ⇒ Object



19
20
21
22
23
24
25
# File 'lib/grape/router.rb', line 19

def self.normalize_path(path)
  path = +"/#{path}"
  path.squeeze!('/')
  path.sub!(%r{/+\Z}, '')
  path = '/' if path == ''
  path
end

.supported_methodsObject



27
28
29
# File 'lib/grape/router.rb', line 27

def self.supported_methods
  @supported_methods ||= Grape::Http::Headers::SUPPORTED_METHODS + ['*']
end

Instance Method Details

#append(route) ⇒ Object



51
52
53
# File 'lib/grape/router.rb', line 51

def append(route)
  map[route.request_method] << route
end

#associate_routes(pattern, **options) ⇒ Object



55
56
57
58
# File 'lib/grape/router.rb', line 55

def associate_routes(pattern, **options)
  regexp = Regexp.new("(?<_#{@neutral_map.length}>)#{pattern.to_regexp}")
  @neutral_map << Any.new(pattern, regexp, @neutral_map.length, **options)
end

#call(env) ⇒ Object



60
61
62
63
64
65
# File 'lib/grape/router.rb', line 60

def call(env)
  with_optimization do
    response, route = identity(env)
    response || rotation(env, route)
  end
end

#compile!Object



37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/grape/router.rb', line 37

def compile!
  return if compiled
  @union = Regexp.union(@neutral_map.map(&:regexp))
  self.class.supported_methods.each do |method|
    routes = map[method]
    @optimized_map[method] = routes.map.with_index do |route, index|
      route.index = index
      route.regexp = Regexp.new("(?<_#{index}>#{route.pattern.to_regexp})")
    end
    @optimized_map[method] = Regexp.union(@optimized_map[method])
  end
  @compiled = true
end

#recognize_path(input) ⇒ Object



67
68
69
70
71
# File 'lib/grape/router.rb', line 67

def recognize_path(input)
  any = with_optimization { greedy_match?(input) }
  return if any == default_response
  any.endpoint
end