Class: Async::HTTP::Body::Buffered

Inherits:
Readable
  • Object
show all
Defined in:
lib/async/http/body/buffered.rb

Overview

A body which buffers all it’s contents.

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Readable

#close, #each, #join

Constructor Details

#initialize(chunks, length = nil) ⇒ Buffered

Returns a new instance of Buffered.



50
51
52
53
54
55
# File 'lib/async/http/body/buffered.rb', line 50

def initialize(chunks, length = nil)
	@chunks = chunks
	@length = length
	
	@index = 0
end

Class Method Details

.for(body) ⇒ Object



40
41
42
43
44
45
46
47
48
# File 'lib/async/http/body/buffered.rb', line 40

def self.for(body)
	chunks = []
	
	body.each do |chunk|
		chunks << chunk
	end
	
	self.new(chunks)
end

.wrap(body) ⇒ Readable?

Wraps an array into a buffered body.

Returns:

  • (Readable, nil)

    the wrapped body or nil if nil was given.



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

def self.wrap(body)
	if body.is_a? Async::HTTP::Body::Readable
		return body
	elsif body.is_a? Array
		return self.new(body)
	elsif body
		return self.for(body)
	end
end

Instance Method Details

#empty?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/async/http/body/buffered.rb', line 65

def empty?
	@index >= @chunks.length
end

#finishObject



57
58
59
# File 'lib/async/http/body/buffered.rb', line 57

def finish
	self
end

#inspectObject



81
82
83
# File 'lib/async/http/body/buffered.rb', line 81

def inspect
	"\#<#{self.class} #{@chunks.count} chunks, #{self.length} bytes>"
end

#lengthObject



61
62
63
# File 'lib/async/http/body/buffered.rb', line 61

def length
	@length ||= @chunks.inject(0) {|sum, chunk| sum + chunk.bytesize}
end

#readObject



69
70
71
72
73
74
75
# File 'lib/async/http/body/buffered.rb', line 69

def read
	if chunk = @chunks[@index]
		@index += 1
	end
	
	return chunk&.dup
end

#rewindObject



77
78
79
# File 'lib/async/http/body/buffered.rb', line 77

def rewind
	@index = 0
end