Class: Async::HTTP::Body::Streamable

Inherits:
Wrapper show all
Defined in:
lib/async/http/body/streamable.rb

Overview

Invokes a callback once the body has finished reading.

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Wrapper

#close, #empty?, #inspect, #length

Methods inherited from Readable

#close, #each, #empty?, #join, #length

Constructor Details

#initialize(body, callback, remaining = nil) ⇒ Streamable



40
41
42
43
44
45
# File 'lib/async/http/body/streamable.rb', line 40

def initialize(body, callback, remaining = nil)
  super(body)
  
  @callback = callback
  @remaining = remaining
end

Class Method Details

.wrap(message, &block) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/async/http/body/streamable.rb', line 28

def self.wrap(message, &block)
  if message and message.body
    if remaining = message.headers['content-length']
      remaining = Integer(remaining)
    end
    
    message.body = self.new(message.body, block, remaining)
  else
    yield
  end
end

Instance Method Details

#readObject



53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/async/http/body/streamable.rb', line 53

def read
  if chunk = super
    @remaining -= chunk.bytesize if @remaining
  else
    if @remaining and @remaining > 0
      raise EOFError, "Expected #{@remaining} more bytes!"
    end
    
    @callback.call
  end
  
  return chunk
end

#stopObject



47
48
49
50
51
# File 'lib/async/http/body/streamable.rb', line 47

def stop(*)
  super
  
  @callback.call
end