Class: Protocol::HTTP1::Body::Fixed

Inherits:
HTTP::Body::Readable
  • Object
show all
Defined in:
lib/protocol/http1/body/fixed.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(stream, length) ⇒ Fixed

Returns a new instance of Fixed.



12
13
14
15
16
# File 'lib/protocol/http1/body/fixed.rb', line 12

def initialize(stream, length)
  @stream = stream
  @length = length
  @remaining = length
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



18
19
20
# File 'lib/protocol/http1/body/fixed.rb', line 18

def length
  @length
end

#remainingObject (readonly)

Returns the value of attribute remaining.



19
20
21
# File 'lib/protocol/http1/body/fixed.rb', line 19

def remaining
  @remaining
end

Instance Method Details

#close(error = nil) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/protocol/http1/body/fixed.rb', line 25

def close(error = nil)
  if @remaining != 0
    @stream.close
  end
  
  super
end

#empty?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/protocol/http1/body/fixed.rb', line 21

def empty?
  @remaining == 0
end

#inspectObject



53
54
55
# File 'lib/protocol/http1/body/fixed.rb', line 53

def inspect
  "\#<#{self.class} length=#{@length} remaining=#{@remaining}>"
end

#joinObject



45
46
47
48
49
50
51
# File 'lib/protocol/http1/body/fixed.rb', line 45

def join
  buffer = @stream.read(@remaining)
  
  @remaining = 0
  
  return buffer
end

#readObject



33
34
35
36
37
38
39
40
41
42
43
# File 'lib/protocol/http1/body/fixed.rb', line 33

def read
  if @remaining > 0
    if chunk = @stream.readpartial(@remaining)
      @remaining -= chunk.bytesize
      
      return chunk
    else
      raise EOFError, "Stream closed with #{@remaining} bytes remaining!"
    end
  end
end