Class: Roda::RodaPlugins::Chunked::Body

Inherits:
Object
  • Object
show all
Defined in:
lib/roda/plugins/chunked.rb

Overview

Rack response body instance for chunked responses using Transfer-Encoding: chunked.

Instance Method Summary collapse

Constructor Details

#initialize(scope) ⇒ Body

Save the scope of the current request handling.



171
172
173
# File 'lib/roda/plugins/chunked.rb', line 171

def initialize(scope)
  @scope = scope
end

Instance Method Details

#eachObject

For each response chunk yielded by the scope, yield it it to the caller in chunked format, starting with the size of the request in ASCII hex format, then the chunk. After all chunks have been yielded, yield a 0 sized chunk to finish the response.



180
181
182
183
184
185
186
187
188
189
# File 'lib/roda/plugins/chunked.rb', line 180

def each
  @scope.each_chunk do |chunk|
    next if !chunk || chunk.empty?
    yield("%x\r\n" % chunk.bytesize)
    yield(chunk)
    yield("\r\n")
  end
ensure
  yield("0\r\n\r\n")
end