Class: Zip::PassThruCompressor

Inherits:
Compressor show all
Defined in:
lib/zip/zip.rb

Overview

:nodoc:all

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Compressor

#finish

Constructor Details

#initialize(outputStream) ⇒ PassThruCompressor

Returns a new instance of PassThruCompressor.



1041
1042
1043
1044
1045
1046
# File 'lib/zip/zip.rb', line 1041

def initialize(outputStream)
  super()
  @outputStream = outputStream
  @crc = Zlib::crc32
  @size = 0
end

Instance Attribute Details

#crcObject (readonly)

Returns the value of attribute crc.



1055
1056
1057
# File 'lib/zip/zip.rb', line 1055

def crc
  @crc
end

#sizeObject (readonly)

Returns the value of attribute size.



1055
1056
1057
# File 'lib/zip/zip.rb', line 1055

def size
  @size
end

Instance Method Details

#<<(data) ⇒ Object



1048
1049
1050
1051
1052
1053
# File 'lib/zip/zip.rb', line 1048

def << (data)
  val = data.to_s
  @crc = Zlib::crc32(val, @crc)
  @size += val.size
  @outputStream << val
end