abc11d21068c2945aad634dbe0fea854256fd7c8
[rainbows.git] / lib / rainbows / coolio / thread_client.rb
blobabc11d21068c2945aad634dbe0fea854256fd7c8
1 # -*- encoding: binary -*-
2 # :enddoc:
4 RUBY_VERSION =~ %r{\A1\.8} and
5   warn "Coolio and Threads do not mix well under Ruby 1.8"
7 class Rainbows::Coolio::ThreadClient < Rainbows::Coolio::Client
8   def app_call input
9     KATO.delete(self)
10     disable if enabled?
11     @env[RACK_INPUT] = input
12     app_dispatch # must be implemented by subclass
13   end
15   # this is only called in the master thread
16   def response_write(response)
17     ev_write_response(*response, @hp.next?)
18     rescue => e
19       handle_error(e)
20   end
22   # fails-safe application dispatch, we absolutely cannot
23   # afford to fail or raise an exception (killing the thread)
24   # here because that could cause a deadlock and we'd leak FDs
25   def app_response
26     begin
27       @env[REMOTE_ADDR] = @_io.kgio_addr
28       APP.call(@env.merge!(RACK_DEFAULTS))
29     rescue => e
30       Rainbows::Error.app(e) # we guarantee this does not raise
31       [ 500, {}, [] ]
32     end
33   end
34 end