class Protocol::HTTP::Body::Deflate

A body which compresses the contents using the DEFLATE or GZIP algorithm.

def self.for(body, window_size = GZIP, level = DEFAULT_LEVEL)

@returns [Deflate] the wrapped body.
@parameter level [Integer] the compression level to use.
@parameter window_size [Integer] the window size to use for compression.
@parameter body [Readable] the body to wrap.

Create a new body which compresses the given body using the GZIP algorithm by default.
def self.for(body, window_size = GZIP, level = DEFAULT_LEVEL)
	self.new(body, Zlib::Deflate.new(level, window_size))
end

def read

@returns [String | Nil] the compressed chunk or `nil` if the stream is closed.

Read a chunk from the underlying body and compress it. If the body is finished, the stream is flushed and finished, and the remaining data is returned.
def read
	return if @stream.finished?
	
	# The stream might have been closed while waiting for the chunk to come in.
	if chunk = super
		@input_length += chunk.bytesize
		
		chunk = @stream.deflate(chunk, Zlib::SYNC_FLUSH)
		
		@output_length += chunk.bytesize
		
		return chunk
	elsif !@stream.closed?
		chunk = @stream.finish
		
		@output_length += chunk.bytesize
		
		return chunk.empty? ? nil : chunk
	end
end