Sha256: c402cd004e97875ad502f62a04dde8ccef5619932a3ffc5baf15966460af716f

Contents?: true

Size: 938 Bytes

Versions: 5

Compression:

Stored size: 938 Bytes

Contents

require 'gir_ffi/info_ext/full_type_name'

module GirFFI
  # Represents a type not found in the GIR, conforming, as needed, to the
  # interface of GObjectIntrospection::IObjectInfo.
  class UnintrospectableTypeInfo
    attr_reader :g_type

    def initialize gtype, gir = GObjectIntrospection::IRepository.default, gobject = GObject
      @g_type = gtype
      @gir = gir
      @gobject = gobject
    end

    def info_type
      :unintrospectable
    end

    def safe_name
      @gobject.type_name @g_type
    end

    def parent
      @gir.find_by_gtype(parent_gtype) || self.class.new(parent_gtype, @gir, @gobject)
    end

    def parent_gtype
      @parent_gtype ||= @gobject.type_parent @g_type
    end

    def namespace
      parent.namespace
    end

    def interfaces
      @gobject.type_interfaces(@g_type).map do |gtype|
        @gir.find_by_gtype gtype
      end.compact
    end

    def fields
      []
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gir_ffi-0.7.10 lib/gir_ffi/unintrospectable_type_info.rb
gir_ffi-0.7.9 lib/gir_ffi/unintrospectable_type_info.rb
gir_ffi-0.7.8 lib/gir_ffi/unintrospectable_type_info.rb
gir_ffi-0.7.7 lib/gir_ffi/unintrospectable_type_info.rb
gir_ffi-0.7.6 lib/gir_ffi/unintrospectable_type_info.rb