Sha256: 446caf29f02ad331030c88e56a452025a55a28e810e2e31d13035b4cabd5016e

Contents?: true

Size: 1.33 KB

Versions: 76

Compression:

Stored size: 1.33 KB

Contents

module Zip
  class StreamableStream < DelegateClass(Entry) #nodoc:all
    def initialize(entry)
      super(entry)
      dirname = if zipfile.is_a?(::String)
                  ::File.dirname(zipfile)
                else
                  '.'
                end
      @temp_file = Tempfile.new(::File.basename(name), dirname)
      @temp_file.binmode
    end

    def get_output_stream
      if block_given?
        begin
          yield(@temp_file)
        ensure
          @temp_file.close
        end
      else
        @temp_file
      end
    end

    def get_input_stream
      if !@temp_file.closed?
        raise StandardError, "cannot open entry for reading while its open for writing - #{name}"
      end
      @temp_file.open # reopens tempfile from top
      @temp_file.binmode
      if block_given?
        begin
          yield(@temp_file)
        ensure
          @temp_file.close
        end
      else
        @temp_file
      end
    end

    def write_to_zip_output_stream(aZipOutputStream)
      aZipOutputStream.put_next_entry(self)
      get_input_stream { |is| ::Zip::IOExtras.copy_stream(aZipOutputStream, is) }
    end

    def clean_up
      @temp_file.unlink
    end
  end
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

76 entries across 73 versions & 20 rubygems

Version Path
logstash-output-scalyr-0.1.9 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
mrcooper-logstash-output-azuresearch-0.2.2 vendor/jruby/2.5.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-icinga-1.1.0 vendor/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-output-icinga-1.1.0 vendor/jruby/2.3.0/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/rubyzip-1.1.7/lib/zip/streamable_stream.rb