Class: HTTPX::Plugins::Compression::Encoder
- Inherits:
-
Object
- Object
- HTTPX::Plugins::Compression::Encoder
- Defined in:
- lib/httpx/plugins/compression.rb
Instance Method Summary collapse
- #bytesize ⇒ Object
- #close ⇒ Object
- #each(&blk) ⇒ Object
-
#initialize(body, deflater) ⇒ Encoder
constructor
A new instance of Encoder.
- #to_s ⇒ Object
Constructor Details
#initialize(body, deflater) ⇒ Encoder
Returns a new instance of Encoder.
124 125 126 127 128 |
# File 'lib/httpx/plugins/compression.rb', line 124 def initialize(body, deflater) @body = body.respond_to?(:read) ? body : StringIO.new(body.to_s) @buffer = StringIO.new("".b, File::RDWR) @deflater = deflater end |
Instance Method Details
#bytesize ⇒ Object
140 141 142 143 |
# File 'lib/httpx/plugins/compression.rb', line 140 def bytesize deflate @buffer.size end |
#close ⇒ Object
151 152 153 154 |
# File 'lib/httpx/plugins/compression.rb', line 151 def close @buffer.close @body.close end |
#each(&blk) ⇒ Object
130 131 132 133 134 135 136 137 138 |
# File 'lib/httpx/plugins/compression.rb', line 130 def each(&blk) return enum_for(__method__) unless block_given? unless @buffer.size.zero? @buffer.rewind return @buffer.each(&blk) end deflate(&blk) end |
#to_s ⇒ Object
145 146 147 148 149 |
# File 'lib/httpx/plugins/compression.rb', line 145 def to_s deflate @buffer.rewind @buffer.read end |