class HTTPX::Transcoder::Multipart::Decoder

  1. lib/httpx/transcoder/multipart/decoder.rb
Superclass: Object

Methods

Public Class

  1. new

Public Instance

  1. call

Included modules

  1. HTTPX::Utils

Constants

BOUNDARY_RE = /;\s*boundary=([^;]+)/i.freeze  
CRLF = "\r\n"  
MULTIPART_CONTENT_DISPOSITION = /Content-Disposition:.*;\s*name=(#{VALUE})/ni.freeze  
MULTIPART_CONTENT_ID = /Content-ID:\s*([^#{CRLF}]*)/ni.freeze  
MULTIPART_CONTENT_TYPE = /Content-Type: (.*)#{CRLF}/ni.freeze  
WINDOW_SIZE = 2 << 14  

Public Class methods

new(response)
[show source]
   # File lib/httpx/transcoder/multipart/decoder.rb
31 def initialize(response)
32   @boundary = begin
33     m = response.headers["content-type"].to_s[BOUNDARY_RE, 1]
34     raise Error, "no boundary declared in content-type header" unless m
35 
36     m.strip
37   end
38   @buffer = "".b
39   @parts = {}
40   @intermediate_boundary = "--#{@boundary}"
41   @state = :idle
42 end

Public Instance methods

call(response, *)
[show source]
   # File lib/httpx/transcoder/multipart/decoder.rb
44 def call(response, *)
45   response.body.each do |chunk|
46     @buffer << chunk
47 
48     parse
49   end
50 
51   raise Error, "invalid or unsupported multipart format" unless @buffer.empty?
52 
53   @parts
54 end