Sha256: 3596418d4140e038bd4ba49cef8fd48e119361bf6ed90ee5eb531e96840c409d

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true
require 'ffi-glib/container_class_methods'

module GLib
  # Common methods for List and SList.
  module ListMethods
    include Enumerable
    attr_reader :element_type

    def self.included(base)
      # Override default field accessors.
      replace_method base, :next, :tail
      replace_method base, :data, :head

      base.extend ContainerClassMethods
    end

    def self.replace_method(base, old, new)
      base.class_eval do
        remove_method old
        alias_method old, new
      end
    end

    def initialize(type)
      store_pointer(FFI::Pointer.new(0))
      @element_type = type
    end

    def each
      reset_iterator
      while (elem = next_element)
        yield elem
      end
    end

    def tail
      self.class.wrap(element_type, @struct[:next])
    end

    def head
      GirFFI::ArgHelper.cast_from_pointer(element_type, @struct[:data])
    end

    def reset_typespec(typespec)
      @element_type = typespec
      self
    end

    def ==(other)
      to_a == other.to_a
    end

    private

    def reset_iterator
      @current = self
    end

    def next_element
      return unless @current
      element = @current.head
      @current = @current.tail
      element
    end

    def element_ptr_for(data)
      GirFFI::InPointer.from(element_type, data)
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
gir_ffi-0.11.1 lib/ffi-glib/list_methods.rb
gir_ffi-0.11.0 lib/ffi-glib/list_methods.rb
gir_ffi-0.10.2 lib/ffi-glib/list_methods.rb
gir_ffi-0.10.1 lib/ffi-glib/list_methods.rb
gir_ffi-0.10.0 lib/ffi-glib/list_methods.rb
gir_ffi-0.10.0.pre1 lib/ffi-glib/list_methods.rb
gir_ffi-0.9.5 lib/ffi-glib/list_methods.rb
gir_ffi-0.9.4 lib/ffi-glib/list_methods.rb
gir_ffi-0.9.3 lib/ffi-glib/list_methods.rb