ensure client aborted file/stream response bodies are closed
[rainbows.git] / lib / rainbows / event_machine.rb
blob8de02ea52f8e5b294d22feda40e2cd1dd659d561
1 # -*- encoding: binary -*-
2 require 'eventmachine'
3 EM::VERSION >= '0.12.10' or abort 'eventmachine 0.12.10 is required'
4 require 'rainbows/ev_core'
6 module Rainbows
8   # Implements a basic single-threaded event model with
9   # {EventMachine}[http://rubyeventmachine.com/].  It is capable of
10   # handling thousands of simultaneous client connections, but with only
11   # a single-threaded app dispatch.  It is suited for slow clients,
12   # and can work with slow applications via asynchronous libraries such as
13   # {async_sinatra}[http://github.com/raggi/async_sinatra],
14   # {Cramp}[http://m.onkey.org/2010/1/7/introducing-cramp],
15   # and {rack-fiber_pool}[http://github.com/mperham/rack-fiber_pool].
16   #
17   # It does not require your Rack application to be thread-safe,
18   # reentrancy is only required for the DevFdResponse body
19   # generator.
20   #
21   # Compatibility: Whatever \EventMachine ~> 0.12.10 and Unicorn both
22   # support, currently Ruby 1.8/1.9.
23   #
24   # This model is compatible with users of "async.callback" in the Rack
25   # environment such as
26   # {async_sinatra}[http://github.com/raggi/async_sinatra].
27   #
28   # For a complete asynchronous framework,
29   # {Cramp}[http://m.onkey.org/2010/1/7/introducing-cramp] is fully
30   # supported when using this concurrency model.
31   #
32   # This model is fully-compatible with
33   # {rack-fiber_pool}[http://github.com/mperham/rack-fiber_pool]
34   # which allows each request to run inside its own \Fiber after
35   # all request processing is complete.
36   #
37   # Merb (and other frameworks/apps) supporting +deferred?+ execution as
38   # documented at http://brainspl.at/articles/2008/04/18/deferred-requests-with-merb-ebb-and-thin
39   # will also get the ability to conditionally defer request processing
40   # to a separate thread.
41   #
42   # This model does not implement as streaming "rack.input" which allows
43   # the Rack application to process data as it arrives.  This means
44   # "rack.input" will be fully buffered in memory or to a temporary file
45   # before the application is entered.
47   module EventMachine
49     include Base
50     autoload :ResponsePipe, 'rainbows/event_machine/response_pipe'
51     autoload :ResponseChunkPipe, 'rainbows/event_machine/response_chunk_pipe'
52     autoload :TryDefer, 'rainbows/event_machine/try_defer'
54     class Client < EM::Connection # :nodoc: all
55       include Rainbows::EvCore
56       G = Rainbows::G
58       def initialize(io)
59         @_io = io
60         @body = nil
61       end
63       alias write send_data
64       alias receive_data on_read
66       def quit
67         super
68         close_connection_after_writing
69       end
71       def app_call
72         set_comm_inactivity_timeout 0
73         begin
74           @env[RACK_INPUT] = @input
75           @env[REMOTE_ADDR] = @remote_addr
76           @env[ASYNC_CALLBACK] = method(:em_write_response)
78           # we're not sure if anybody uses this, but Thin sets it, too
79           @env[ASYNC_CLOSE] = EM::DefaultDeferrable.new
81           response = catch(:async) { APP.call(@env.update(RACK_DEFAULTS)) }
83           # too tricky to support pipelining with :async since the
84           # second (pipelined) request could be a stuck behind a
85           # long-running async response
86           (response.nil? || -1 == response[0]) and return @state = :close
88           em_write_response(response, alive = @hp.keepalive? && G.alive)
89           if alive
90             @env.clear
91             @hp.reset
92             @state = :headers
93             # keepalive requests are always body-less, so @input is unchanged
94             @hp.headers(@env, @buf) and next
95             set_comm_inactivity_timeout G.kato
96           end
97           return
98         end while true
99       end
101       def em_write_response(response, alive = false)
102         status, headers, body = response
103         if @hp.headers?
104           headers = HH.new(headers)
105           headers[CONNECTION] = alive ? KEEP_ALIVE : CLOSE
106         else
107           headers = nil
108         end
110         if body.respond_to?(:errback) && body.respond_to?(:callback)
111           @body = body
112           body.callback { quit }
113           body.errback { quit }
114           # async response, this could be a trickle as is in comet-style apps
115           headers[CONNECTION] = CLOSE if headers
116           alive = true
117         elsif body.respond_to?(:to_path)
118           io = body_to_io(body)
119           st = io.stat
121           if st.file?
122             cb = lambda do
123               body.close if body.respond_to?(:close)
124               quit unless alive
125             end
126             write(response_header(status, headers)) if headers
127             io.close
128             @body = stream = stream_file_data(body.to_path)
129             stream.errback(&cb)
130             return stream.callback(&cb)
131           elsif st.socket? || st.pipe?
132             chunk = stream_response_headers(status, headers) if headers
133             m = chunk ? ResponseChunkPipe : ResponsePipe
134             return EM.watch(io, m, self, alive, body).notify_readable = true
135           end
136           # char or block device... WTF? fall through to body.each
137         end
139         write(response_header(status, headers)) if headers
140         write_body_each(self, body)
141         quit unless alive
142       end
144       def unbind
145         async_close = @env[ASYNC_CLOSE] and async_close.succeed
146         @body.respond_to?(:fail) and @body.fail
147         @_io.close
148       end
149     end
151     module Server # :nodoc: all
153       def close
154         detach
155         @io.close
156       end
158       def notify_readable
159         return if CUR.size >= MAX
160         io = Rainbows.accept(@io) or return
161         sig = EM.attach_fd(io.fileno, false)
162         CUR[sig] = CL.new(sig, io)
163       end
164     end
166     def init_worker_process(worker) # :nodoc:
167       Rainbows::Response.setup(Rainbows::EventMachine::Client)
168       super
169     end
171     # runs inside each forked worker, this sits around and waits
172     # for connections and doesn't die until the parent dies (or is
173     # given a INT, QUIT, or TERM signal)
174     def worker_loop(worker) # :nodoc:
175       init_worker_process(worker)
176       G.server.app.respond_to?(:deferred?) and
177         G.server.app = TryDefer[G.server.app]
179       # enable them both, should be non-fatal if not supported
180       EM.epoll
181       EM.kqueue
182       logger.info "#@use: epoll=#{EM.epoll?} kqueue=#{EM.kqueue?}"
183       client_class = Rainbows.const_get(@use).const_get(:Client)
184       Server.const_set(:MAX, worker_connections + LISTENERS.size)
185       Server.const_set(:CL, client_class)
186       client_class.const_set(:APP, G.server.app)
187       EM.run {
188         conns = EM.instance_variable_get(:@conns) or
189           raise RuntimeError, "EM @conns instance variable not accessible!"
190         Server.const_set(:CUR, conns)
191         EM.add_periodic_timer(1) do
192           unless G.tick
193             conns.each_value { |c| client_class === c and c.quit }
194             EM.stop if conns.empty? && EM.reactor_running?
195           end
196         end
197         LISTENERS.map! do |s|
198           EM.watch(s, Server) { |c| c.notify_readable = true }
199         end
200       }
201     end
203   end