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

Inherits:
Object
  • Object
show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/multipart/parser.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(io, content_length) ⇒ BoundedIO

Returns a new instance of BoundedIO.



21
22
23
24
25
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/multipart/parser.rb', line 21

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

Instance Method Details

#read(size, outbuf = nil) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/multipart/parser.rb', line 27

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



48
49
50
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/multipart/parser.rb', line 48

def rewind
  @io.rewind
end