Sha256: 9da68064ecac26915c7d66c0620931d3e364662574da65f3dd40845751d70e12

Contents?: true

Size: 1.04 KB

Versions: 9

Compression:

Stored size: 1.04 KB

Contents

module IOStreams
  class Reader
    # When a Reader does not support streams, we copy the stream to a local temp file
    # and then pass that filename in for this reader.
    def self.stream(input_stream, **args, &block)
      Utils.temp_file_name("iostreams_reader") do |file_name|
        ::File.open(file_name, 'wb') { |target| ::IO.copy_stream(input_stream, target) }
        file(file_name, **args, &block)
      end
    end

    # When a Writer supports streams, also allow it to simply support a file
    def self.file(file_name, original_file_name: file_name, **args, &block)
      ::File.open(file_name, 'rb') { |file| stream(file, original_file_name: original_file_name, **args, &block) }
    end

    # For processing by either a file name or an open IO stream.
    def self.open(file_name_or_io, **args, &block)
      file_name_or_io.is_a?(String) ? file(file_name_or_io, **args, &block) : stream(file_name_or_io, **args, &block)
    end

    attr_reader :input_stream

    def initialize(input_stream)
      @input_stream = input_stream
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
iostreams-1.1.0 lib/io_streams/reader.rb
iostreams-1.0.0 lib/io_streams/reader.rb
iostreams-1.0.0.beta7 lib/io_streams/reader.rb
iostreams-1.0.0.beta6 lib/io_streams/reader.rb
iostreams-1.0.0.beta5 lib/io_streams/reader.rb
iostreams-1.0.0.beta4 lib/io_streams/reader.rb
iostreams-1.0.0.beta3 lib/io_streams/reader.rb
iostreams-1.0.0.beta2 lib/io_streams/reader.rb
iostreams-1.0.0.beta lib/io_streams/reader.rb