Sha256: c756c613444d5943bb217e5ff4ad16fdecf371efbf582e40a4e710b7e37331f6

Contents?: true

Size: 1.87 KB

Versions: 10

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2024, by Samuel Williams.
# Copyright, 2022, by Dan Olson.

module Protocol
	module HTTP
		module Body
			# General operations for interacting with a request or response body.
			module Reader
				# Read chunks from the body.
				# @yields {|chunk| ...} chunks from the body.
				def each(&block)
					if @body
						@body.each(&block)
						@body = nil
					end
				end
				
				# Reads the entire request/response body.
				# @returns [String] the entire body as a string.
				def read
					if @body
						buffer = @body.join
						@body = nil
						
						return buffer
					end
				end
				
				# Gracefully finish reading the body. This will buffer the remainder of the body.
				# @returns [Buffered] buffers the entire body.
				def finish
					if @body
						body = @body.finish
						@body = nil
						
						return body
					end
				end
				
				# Discard the body as efficiently as possible.
				def discard
					if body = @body
						@body = nil
						body.discard
					end
				end
				
				# Buffer the entire request/response body.
				# @returns [Reader] itself.
				def buffered!
					if @body
						@body = @body.finish
					end
					
					return self
				end
				
				# Write the body of the response to the given file path.
				def save(path, mode = ::File::WRONLY|::File::CREAT|::File::TRUNC, **options)
					if @body
						::File.open(path, mode, **options) do |file|
							self.each do |chunk|
								file.write(chunk)
							end
						end
					end
				end
				
				# Close the connection as quickly as possible. Discards body. May close the underlying connection if necessary to terminate the stream.
				def close(error = nil)
					if @body
						@body.close(error)
						@body = nil
					end
				end
				
				# Whether there is a body?
				def body?
					@body and !@body.empty?
				end
			end
		end
	end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
protocol-http-0.45.0 lib/protocol/http/body/reader.rb
protocol-http-0.44.0 lib/protocol/http/body/reader.rb
protocol-http-0.43.0 lib/protocol/http/body/reader.rb
protocol-http-0.42.0 lib/protocol/http/body/reader.rb
protocol-http-0.41.0 lib/protocol/http/body/reader.rb
protocol-http-0.40.0 lib/protocol/http/body/reader.rb
protocol-http-0.39.0 lib/protocol/http/body/reader.rb
protocol-http-0.38.0 lib/protocol/http/body/reader.rb
protocol-http-0.37.0 lib/protocol/http/body/reader.rb
protocol-http-0.36.0 lib/protocol/http/body/reader.rb