Class: Zip::PassThruDecompressor

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

Overview

:nodoc:all

Constant Summary

Constants inherited from Decompressor

Decompressor::CHUNK_SIZE

Instance Method Summary collapse

Constructor Details

#initialize(inputStream, charsToRead) ⇒ PassThruDecompressor

Returns a new instance of PassThruDecompressor.



244
245
246
247
248
249
# File 'lib/zip/zip.rb', line 244

def initialize(inputStream, charsToRead)
  super inputStream
  @charsToRead = charsToRead
  @readSoFar = 0
  @hasReturnedEmptyString = ! EMPTY_FILE_RETURNS_EMPTY_STRING_FIRST
end

Instance Method Details

#input_finished?Boolean Also known as: eof, eof?

Returns:

  • (Boolean)


275
276
277
# File 'lib/zip/zip.rb', line 275

def input_finished?
  (@readSoFar >= @charsToRead)
end

#produce_inputObject



271
272
273
# File 'lib/zip/zip.rb', line 271

def produce_input
  sysread(Decompressor::CHUNK_SIZE)
end

#sysread(numberOfBytes = nil, buf = nil) ⇒ Object

TODO: Specialize to handle different behaviour in ruby > 1.7.0 ?



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/zip/zip.rb', line 252

def sysread(numberOfBytes = nil, buf = nil)
  if input_finished?
	hasReturnedEmptyStringVal=@hasReturnedEmptyString
	@hasReturnedEmptyString=true
	return "" unless hasReturnedEmptyStringVal
	return nil
  end
  
  if (numberOfBytes == nil || @readSoFar+numberOfBytes > @charsToRead)
	numberOfBytes = @charsToRead-@readSoFar
  end
  @readSoFar += numberOfBytes
  if buf
    @inputStream.read(numberOfBytes, buf)
  else
    @inputStream.read(numberOfBytes)
  end
end