Sha256: 7b28e69e88a35ed6fd288ef7fbaeb21fa3503994073919cead17ad19ff3f7f32

Contents?: true

Size: 1.61 KB

Versions: 30

Compression:

Stored size: 1.61 KB

Contents

# -*- encoding : utf-8 -*-
require "tempfile"

# BufferIO is used for writing big segments of text. It works like a StringIO, but when the size
# of the underlying string buffer exceeds MAX_IN_MEM_BYTES the string will be flushed to disk
# and it automagically becomes a Tempfile
class Tracksperanto::BufferIO < DelegateClass(IO)
  include Tracksperanto::Returning
  
  MAX_IN_MEM_BYTES = 5_000_000
  
  def initialize
    __setobj__(StringIO.new)
  end
  
  def write(s)
    returning(super) { replace_with_tempfile_if_needed }
  end
  alias_method :<<, :write
  
  def puts(s)
    returning(super) { replace_with_tempfile_if_needed }
  end
  
  def putc(c)
    returning(super) { replace_with_tempfile_if_needed }
  end
  
  def close!
    __getobj__.close! if @tempfile_in
    __setobj__(nil)
  end
  
  # Sometimes you just need to upgrade to a File forcibly (for example if you want)
  # to have an object with many iterators sitting on it. We also flush here.
  def to_file
    replace_with_tempfile unless @tempfile_in
    flush
    self
  end
  
  # Tells whether this one is on disk
  def file_backed?
    @tempfile_in
  end
  
  private
  
  def replace_with_tempfile
    sio = __getobj__
    tf = Tempfile.new("tracksperanto-xbuf")
    tf.set_encoding(Encoding::BINARY) if @rewindable_io.respond_to?(:set_encoding)
    tf.binmode
    tf.write(sio.string)
    tf.flush # Needed of we will reopen this file soon from another thread/loop
    sio.string = ""
    GC.start
    __setobj__(tf)
    
    @tempfile_in = true
  end
  
  def replace_with_tempfile_if_needed
    replace_with_tempfile if !@tempfile_in && pos > MAX_IN_MEM_BYTES
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
tracksperanto-2.9.9 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.8 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.7 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.6 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.5 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.4 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.3 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.2 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.1 lib/tracksperanto/buffer_io.rb
tracksperanto-2.9.0 lib/tracksperanto/buffer_io.rb