Sha256: 8f19dd9a5dc669df538f5507495ec698fecbe719b4df265bfad5a943e1cd4036

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

module Zip
  class Inflater < Decompressor #:nodoc:all
    def initialize(*args)
      super

      @buffer = ''.dup
      @zlib_inflater = ::Zlib::Inflate.new(-Zlib::MAX_WBITS)
    end

    def read(length = nil, outbuf = '')
      return ((length.nil? || length.zero?) ? "" : nil) if eof

      while length.nil? || (@buffer.bytesize < length)
        break if input_finished?
        @buffer << produce_input
      end

      outbuf.replace(@buffer.slice!(0...(length || @buffer.bytesize)))
    end

    def eof
      @buffer.empty? && input_finished?
    end

    alias_method :eof?, :eof

    private

    def produce_input
      retried = 0
      begin
        @zlib_inflater.inflate(input_stream.read(Decompressor::CHUNK_SIZE))
      rescue Zlib::BufError
        raise if retried >= 5 # how many times should we retry?
        retried += 1
        retry
      end
    rescue Zlib::Error
      raise(::Zip::DecompressionError, 'zlib error while inflating')
    end

    def input_finished?
      @zlib_inflater.finished?
    end
  end

  ::Zip::Decompressor.register(::Zip::COMPRESSION_METHOD_DEFLATE, ::Zip::Inflater)
end

# Copyright (C) 2002, 2003 Thomas Sondergaard
# rubyzip is free software; you can redistribute it and/or
# modify it under the terms of the ruby license.

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
tdiary-5.1.1 vendor/bundle/ruby/2.7.0/gems/rubyzip-2.2.0/lib/zip/inflater.rb
rubyzip-2.2.0 lib/zip/inflater.rb