Sha256: dca2fe8a401dcb5a36715e0f0d546718599b35eabcdbadbb91aa554878027078

Contents?: true

Size: 1.96 KB

Versions: 25

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
  module PollableInputStream
    alias_method :create_source_raw, :create_source
    def create_source(&block)
      source = create_source_raw
      source.extend(PollableSource)
      source.set_callback(&block)
      source
    end

    alias_method :read_nonblocking_raw, :read_nonblocking
    def read_nonblocking(size=nil)
      if size.nil?
        all = "".force_encoding("ASCII-8BIT")
        buffer_size = 8192
        buffer = " ".force_encoding("ASCII-8BIT") * buffer_size
        loop do
          begin
            read_bytes = read_nonblocking_raw_compatible(buffer)
          rescue IOError::WouldBlock
            break
          end
          all << buffer.byteslice(0, read_bytes)
          break if read_bytes != buffer_size
        end
        all
      else
        buffer = " " * size
        read_bytes = read_nonblocking_raw_compatible(buffer)
        buffer.replace(buffer.byteslice(0, read_bytes))
        buffer
      end
    end

    private
    def read_nonblocking_raw_compatible(buffer)
      if (GLib::VERSION <=> [2, 42, 0]) >= 0
        n_bytes, = read_nonblocking_raw(buffer)
        n_bytes
      else
        read_nonblocking_raw(buffer, buffer.bytesize)
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
gio2-4.2.2 lib/gio2/pollable-input-stream.rb
gio2-4.2.1 lib/gio2/pollable-input-stream.rb
gio2-4.2.0 lib/gio2/pollable-input-stream.rb
gio2-4.1.9 lib/gio2/pollable-input-stream.rb
gio2-4.1.8 lib/gio2/pollable-input-stream.rb
gio2-4.1.7 lib/gio2/pollable-input-stream.rb
gio2-4.1.6 lib/gio2/pollable-input-stream.rb
gio2-4.1.5 lib/gio2/pollable-input-stream.rb
gio2-4.1.4 lib/gio2/pollable-input-stream.rb
gio2-4.1.3 lib/gio2/pollable-input-stream.rb
gio2-4.1.2 lib/gio2/pollable-input-stream.rb
gio2-4.1.1 lib/gio2/pollable-input-stream.rb
gio2-4.1.0 lib/gio2/pollable-input-stream.rb
gio2-4.0.9 lib/gio2/pollable-input-stream.rb
gio2-4.0.8 lib/gio2/pollable-input-stream.rb
gio2-4.0.7 lib/gio2/pollable-input-stream.rb
gio2-4.0.6 lib/gio2/pollable-input-stream.rb
gio2-4.0.5 lib/gio2/pollable-input-stream.rb
gio2-4.0.4 lib/gio2/pollable-input-stream.rb
gio2-4.0.3 lib/gio2/pollable-input-stream.rb