Sha256: caa7c709aaa1c116735f14cf76409d0992b0ad671a8c95f065929e7a944c3f10

Contents?: true

Size: 1.96 KB

Versions: 33

Compression:

Stored size: 1.96 KB

Contents

# Copyright (C) 2014  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module Gio
  class InputStream
    alias_method :read_raw, :read
    def read(size=nil)
      if size.nil?
        all = "".force_encoding("ASCII-8BIT")
        buffer_size = 8192
        buffer = " ".force_encoding("ASCII-8BIT") * buffer_size
        loop do
          _, read_bytes = read_all_raw_compatible(buffer)
          all << buffer.byteslice(0, read_bytes)
          break if read_bytes != buffer_size
        end
        all
      else
        buffer = " " * size
        read_bytes = read_raw_compatible(buffer)
        buffer.replace(buffer.byteslice(0, read_bytes))
        buffer
      end
    end

    alias_method :read_all_raw, :read_all
    def read_all(size)
      buffer = " " * size
      _, read_bytes = read_all_raw_compatible(buffer)
      buffer.replace(buffer.byteslice(0, read_bytes))
      buffer
    end

    private
    def read_raw_compatible(buffer)
      if (GLib::VERSION <=> [2, 36, 0]) >= 0
        read_raw(buffer)
      else
        read_raw(buffer, buffer.bytesize)
      end
    end

    def read_all_raw_compatible(buffer)
      if (GLib::VERSION <=> [2, 36, 0]) >= 0
        read_all_raw(buffer)
      else
        read_all_raw(buffer, buffer.bytesize)
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
gio2-3.3.5 lib/gio2/input-stream.rb
gio2-3.3.4 lib/gio2/input-stream.rb
gio2-3.3.3 lib/gio2/input-stream.rb
gio2-3.3.2 lib/gio2/input-stream.rb
gio2-3.3.1 lib/gio2/input-stream.rb
gio2-3.3.0 lib/gio2/input-stream.rb
gio2-3.2.9-x64-mingw32 lib/gio2/input-stream.rb
gio2-3.2.9-x86-mingw32 lib/gio2/input-stream.rb
gio2-3.2.9 lib/gio2/input-stream.rb
gio2-3.2.8-x64-mingw32 lib/gio2/input-stream.rb
gio2-3.2.8-x86-mingw32 lib/gio2/input-stream.rb
gio2-3.2.8 lib/gio2/input-stream.rb
gio2-3.2.7-x86-mingw32 lib/gio2/input-stream.rb
gio2-3.2.7-x64-mingw32 lib/gio2/input-stream.rb
gio2-3.2.7 lib/gio2/input-stream.rb
gio2-3.2.6-x64-mingw32 lib/gio2/input-stream.rb
gio2-3.2.6-x86-mingw32 lib/gio2/input-stream.rb
gio2-3.2.6 lib/gio2/input-stream.rb
gio2-3.2.5-x64-mingw32 lib/gio2/input-stream.rb
gio2-3.2.5-x86-mingw32 lib/gio2/input-stream.rb