Class: Rack::Multipart::Parser
  
  
  
  
  
    - Inherits:
 
    - 
      Object
      
        
          - Object
 
          
            - Rack::Multipart::Parser
 
          
        
        show all
      
     
  
  
  
  
  
  
  
  
  
  
    - Defined in:
 
    - lib/rack/multipart/parser.rb
 
  
  
 
Defined Under Namespace
  
    
  
    
      Classes: BoundedIO, Collector, MultipartInfo
    
  
  
    
      Constant Summary
      collapse
    
    
      
        - BUFSIZE =
          
        
 
        1_048_576
 
      
        - TEXT_PLAIN =
          
        
 
        "text/plain"
 
      
        - TEMPFILE_FACTORY =
          
        
 
        lambda { |filename, content_type|
  Tempfile.new(["RackMultipart", ::File.extname(filename.gsub("\0", '%00'))])
} 
      
        - EMPTY =
          
        
 
        MultipartInfo.new(nil, [])
 
      
    
  
  Instance Attribute Summary collapse
  
  
    
      Class Method Summary
      collapse
    
    
  
    
      Instance Method Summary
      collapse
    
    
  
  Constructor Details
  
    
  
  
    #initialize(boundary, tempfile, bufsize, query_parser)  ⇒ Parser 
  
  
  
  
    
Returns a new instance of Parser.
   
 
  
  
    
      
205
206
207
208
209
210
211
212
213
214
215
216
217
218 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 205
def initialize(boundary, tempfile, bufsize, query_parser)
  @query_parser   = query_parser
  @params         = query_parser.make_params
  @bufsize        = bufsize
  @state = :FAST_FORWARD
  @mime_index = 0
  @collector = Collector.new tempfile
  @sbuf = StringScanner.new("".dup)
  @body_regex = /(?:#{EOL}|\A)--#{Regexp.quote(boundary)}(?:#{EOL}|--)/m
  @rx_max_size = boundary.bytesize + 6   @head_regex = /(.*?#{EOL})#{EOL}/m
end
     | 
  
 
  
 
  
    Instance Attribute Details
    
      
      
      
  
  
    #state  ⇒ Object  
  
  
  
  
    
Returns the value of attribute state.
   
 
  
  
    
      
203
204
205 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 203
def state
  @state
end 
     | 
  
 
    
   
  
    Class Method Details
    
      
  
  
    .parse(io, content_length, content_type, tmpfile, bufsize, qp)  ⇒ Object 
  
  
  
  
    
      
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 92
def self.parse(io, content_length, content_type, tmpfile, bufsize, qp)
  return EMPTY if 0 == content_length
  boundary = parse_boundary content_type
  return EMPTY unless boundary
  if boundary.length > 70
            raise Error, "multipart boundary size too large (#{boundary.length} characters)"
  end
  io = BoundedIO.new(io, content_length) if content_length
  parser = new(boundary, tmpfile, bufsize, qp)
  parser.parse(io)
  parser.result
end
     | 
  
 
    
      
  
  
    .parse_boundary(content_type)  ⇒ Object 
  
  
  
  
    
      
85
86
87
88
89
90 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 85
def self.parse_boundary(content_type)
  return unless content_type
  data = content_type.match(MULTIPART)
  return unless data
  data[1]
end 
     | 
  
 
    
   
  
    Instance Method Details
    
      
  
  
    #parse(io)  ⇒ Object 
  
  
  
  
    
      
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 220
def parse(io)
  outbuf = String.new
  read_data(io, outbuf)
  loop do
    status =
      case @state
      when :FAST_FORWARD
        handle_fast_forward
      when :CONSUME_TOKEN
        handle_consume_token
      when :MIME_HEAD
        handle_mime_head
      when :MIME_BODY
        handle_mime_body
      else         return
      end
    read_data(io, outbuf) if status == :want_read
  end
end
     | 
  
 
    
      
  
  
    #result  ⇒ Object 
  
  
  
  
    
      
243
244
245
246
247
248
249
250
251 
     | 
    
      # File 'lib/rack/multipart/parser.rb', line 243
def result
  @collector.each do |part|
    part.get_data do |data|
      tag_multipart_encoding(part.filename, part.content_type, part.name, data)
      @query_parser.normalize_params(@params, part.name, data)
    end
  end
  MultipartInfo.new @params.to_params_hash, @collector.find_all(&:file?).map(&:body)
end
     |