Class: Webmachine::Adapters::Reel
Constant Summary
collapse
- DEFAULT_OPTIONS =
Used to override default Reel server options (useful in testing)
{}
Instance Attribute Summary
#configuration, #dispatcher
Instance Method Summary
collapse
#initialize, run
Instance Method Details
#fixup_callable_encoder(response) ⇒ Object
107
108
109
110
111
|
# File 'lib/webmachine/adapters/reel.rb', line 107
def fixup_callable_encoder(response)
if response.body.is_a?(Streaming::CallableEncoder)
response.body = [response.body.call]
end
end
|
99
100
101
102
103
104
105
|
# File 'lib/webmachine/adapters/reel.rb', line 99
def (response)
response..each do |key, value|
if value.is_a?(Array)
response.[key] = value.join(", ")
end
end
end
|
#process(connection) ⇒ Object
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# File 'lib/webmachine/adapters/reel.rb', line 38
def process(connection)
connection.each_request do |request|
if request.websocket?
if handler = @options[:websocket_handler]
handler.call(request.websocket)
else
request.respond :bad_request, "WebSockets not supported"
end
next
end
if .include?(request.method)
method = "POST"
param = "_method=#{request.method}"
uri = request_uri(request.url, request., param)
else
method = request.method
uri = request_uri(request.url, request.)
end
= Webmachine::[request..dup]
wm_request = Webmachine::Request.new(method, uri, , request.body)
wm_response = Webmachine::Response.new
@dispatcher.dispatch(wm_request, wm_response)
(wm_response)
fixup_callable_encoder(wm_response)
request.respond ::Reel::Response.new(wm_response.code,
wm_response.,
wm_response.body)
end
end
|
#request_uri(path, headers, extra_query_params = nil) ⇒ Object
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# File 'lib/webmachine/adapters/reel.rb', line 79
def request_uri(path, , = nil)
host_parts = .fetch('Host').split(':')
path_parts = path.split('?')
uri_hash = {host: host_parts.first, path: path_parts.first}
uri_hash[:port] = host_parts.last.to_i if host_parts.length == 2
uri_hash[:query] = path_parts.last if path_parts.length == 2
if
if uri_hash[:query]
uri_hash[:query] << "&#{extra_query_params}"
else
uri_hash[:query] =
end
end
URI::HTTP.build(uri_hash)
end
|
#run ⇒ Object
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/webmachine/adapters/reel.rb', line 15
def run
@options = DEFAULT_OPTIONS.merge({
:port => configuration.port,
:host => configuration.ip
}).merge(configuration.adapter_options)
if = configuration.adapter_options[:extra_verbs]
= Set.new(.map(&:to_s).map(&:upcase))
else
= Set.new
end
@server = ::Reel::Server.supervise(@options[:host], @options[:port], &method(:process))
trap("INT") { @server.terminate; exit 0 }
Celluloid::Actor.join(@server)
end
|
#shutdown ⇒ Object
34
35
36
|
# File 'lib/webmachine/adapters/reel.rb', line 34
def shutdown
@server.terminate! if @server
end
|