Module: HTTPX::Plugins::StreamBidi::RequestMethods
- Defined in:
- lib/httpx/plugins/stream_bidi.rb
Overview
Adds synchronization to request operations which may buffer payloads from different threads.
Instance Attribute Summary collapse
-
#headers_sent ⇒ Object
Returns the value of attribute headers_sent.
Instance Method Summary collapse
- #<<(chunk) ⇒ Object
- #can_buffer? ⇒ Boolean
- #close ⇒ Object
- #closed? ⇒ Boolean
- #initialize ⇒ Object
-
#transition(nextstate) ⇒ Object
overrides state management transitions to introduce an intermediate
:waiting_for_chunkstate, which the request transitions to once payload is buffered.
Instance Attribute Details
#headers_sent ⇒ Object
Returns the value of attribute headers_sent.
212 213 214 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 212 def headers_sent @headers_sent end |
Instance Method Details
#<<(chunk) ⇒ Object
254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 254 def <<(chunk) @mutex.synchronize do if @drainer @body.clear if @body.respond_to?(:clear) @drainer = nil end @body << chunk transition(:body) end end |
#can_buffer? ⇒ Boolean
225 226 227 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 225 def can_buffer? super && @state != :waiting_for_chunk end |
#close ⇒ Object
266 267 268 269 270 271 272 273 274 275 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 266 def close @mutex.synchronize do return if @closed @closed = true end # last chunk to send which ends the stream self << "" end |
#closed? ⇒ Boolean
221 222 223 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 221 def closed? @closed end |
#initialize ⇒ Object
214 215 216 217 218 219 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 214 def initialize(*) super @headers_sent = false @closed = false @mutex = Thread::Mutex.new end |
#transition(nextstate) ⇒ Object
overrides state management transitions to introduce an intermediate :waiting_for_chunk state, which the request transitions to once payload is buffered.
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 232 def transition(nextstate) headers_sent = @headers_sent case nextstate when :waiting_for_chunk return unless @state == :body when :body case @state when :headers headers_sent = true when :waiting_for_chunk # HACK: to allow super to pass through @state = :headers end end super.tap do # delay setting this up until after the first transition to :body @headers_sent = headers_sent end end |