Buffering (Module)

In: openssl/lib/openssl/buffering.rb

Methods

<<   close   each   each_byte   each_line   eof   eof?   flush   getc   gets   new   print   printf   puts   read   readchar   readline   readlines   ungetc   write  

Constants

BLOCK_SIZE = 1024*16

Attributes

sync  [RW] 

Included Modules

Enumerable

Public Class methods

[Source]

# File openssl/lib/openssl/buffering.rb, line 22
  def initialize(*args)
    @sync = @io.sync
  end

Public Instance methods

[Source]

# File openssl/lib/openssl/buffering.rb, line 158
  def << (s)
    do_write(s)
    self
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 194
  def close
    flush rescue nil
    sysclose
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 84
  def each(eol=$/)
    while line = self.gets(eol?)
      yield line
    end
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 109
  def each_byte
    while c = getc
      yield(c)
    end
  end
each_line(eol=$/)

Alias for each

eof()

Alias for eof?

[Source]

# File openssl/lib/openssl/buffering.rb, line 124
  def eof?
    @eof ||= nil
    @eof && @rbuffer.size == 0
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 187
  def flush
    osync = @sync
    @sync = true
    do_write ""
    @sync = osync
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 104
  def getc
    c = read(1)
    c ? c.to_i : nil
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 67
  def gets(eol=$/)
    fill_rbuff unless defined? @rbuffer
    idx = @rbuffer.index(eol)
    @eof ||= nil
    until @eof
      break if idx
      fill_rbuff
      idx = @rbuffer.index(eol)
    end
    if eol.is_a?(Regexp)
      size = idx ? idx+$&.size : nil
    else
      size = idx ? idx+eol.size : nil
    end
    consume_rbuff(size)
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 175
  def print(*args)
    s = ""
    args.each{ |arg| s << arg.to_s }
    do_write(s)
    nil
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 182
  def printf(s, *args)
    do_write(s % args)
    nil
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 163
  def puts(*args)
    s = ""
    args.each{|arg|
      s << arg.to_s
      unless /#{$/}\Z/o =~ s
        s << $/
      end
    }
    do_write(s)
    nil
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 57
  def read(size=nil)
    fill_rbuff unless defined? @rbuffer
    @eof ||= nil
    until @eof
      break if size && size <= @rbuffer.size
      fill_rbuff
    end
    consume_rbuff(size)
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 115
  def readchar
    raise EOFErorr if eof?
    getc
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 99
  def readline(eol=$/)
    raise EOFErorr if eof?
    gets(eol)
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 91
  def readlines(eol=$/)
    ary = []
    while line = self.gets(eol)
      ary << line
    end
    ary
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 120
  def ungetc(c)
    @rbuffer[0,0] = c.chr
  end

[Source]

# File openssl/lib/openssl/buffering.rb, line 153
  def write(s)
    do_write(s)
    s.length
  end

[Validate]