Sha256: d962eaa51f3ded20368dbea615895c43eb8ac09ce355ff1375c0a9d0c2d2212c
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
module Zip class StreamableStream < DelegateClass(Entry) # nodoc:all def initialize(entry) super(entry) @temp_file = Tempfile.new(::File.basename(name)) @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 unless @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
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
tdiary-5.1.1 | vendor/bundle/ruby/2.7.0/gems/rubyzip-2.2.0/lib/zip/streamable_stream.rb |
rubyzip-2.2.0 | lib/zip/streamable_stream.rb |
rubyzip-2.1.0 | lib/zip/streamable_stream.rb |