rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob 3b584c734d8a40bd9e417815302c25ac04202e77 557 bytes (raw)
$ git show v3.0.0:lib/rainbows/event_machine/response_pipe.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
# -*- encoding: binary -*-
# :enddoc:
module Rainbows::EventMachine::ResponsePipe
  # garbage avoidance, EM always uses this in a single thread,
  # so a single buffer for all clients will work safely
  BUF = ''

  def initialize(client)
    @client = client
  end

  def notify_readable
    begin
      @client.write(@io.read_nonblock(16384, BUF))
    rescue Errno::EINTR
    rescue Errno::EAGAIN
      return
    rescue EOFError
      detach
      return
    end while true
  end

  def unbind
    @client.next!
    @io.close unless @io.closed?
  end
end

git clone https://yhbt.net/rainbows.git