Class: Rack::Multipart::Parser::BoundedIO

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/multipart/parser.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(io, content_length) ⇒ BoundedIO

Returns a new instance of BoundedIO.



23
24
25
26
27
# File 'lib/rack/multipart/parser.rb', line 23

def initialize(io, content_length)
  @io             = io
  @content_length = content_length
  @cursor = 0
end

Instance Method Details

#read(size, outbuf = nil) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/rack/multipart/parser.rb', line 29

def read(size, outbuf = nil)
  return if @cursor >= @content_length

  left = @content_length - @cursor

  str = if left < size
          @io.read left, outbuf
        else
          @io.read size, outbuf
        end

  if str
    @cursor += str.bytesize
  else
    # Raise an error for mismatching Content-Length and actual contents
    raise EOFError, "bad content body"
  end

  str
end

#rewindObject



50
51
52
# File 'lib/rack/multipart/parser.rb', line 50

def rewind
  @io.rewind
end