Sha256: e0722b5863285903abbcbe46b21e794971d890f0665f35833153a90059ac1003

Contents?: true

Size: 1.31 KB

Versions: 5

Compression:

Stored size: 1.31 KB

Contents

require 'gir_ffi/builders/field_builder'

module GirFFI
  module Builders
    # Implements the creation of classes representing types with layout,
    # i.e., :union, :struct, :object.
    # Note: This module depends on the additional inclusion of
    # WithMethods.
    module WithLayout
      def layout_specification
        spec = base_layout_specification
        if spec.empty?
          dummy_layout_specification
        else
          spec
        end
      end

      private

      def setup_layout
        spec = layout_specification
        struct_class.class_eval { layout(*spec) }
      end

      def dummy_layout_specification
        if parent
          [:parent, superclass.const_get(:Struct), 0]
        else
          [:dummy, :char, 0]
        end
      end

      def base_layout_specification
        fields.map { |finfo| finfo.layout_specification }.flatten(1)
      end

      def setup_field_accessors
        fields.each do |finfo|
          FieldBuilder.new(finfo).build
        end
      end

      def instantiate_class
        setup_class unless already_set_up
      end

      def klass
        @klass ||= get_or_define_class namespace_module, @classname, superclass
      end

      def struct_class
        @structklass ||= get_or_define_class klass, :Struct, layout_superclass
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gir_ffi-0.7.4 lib/gir_ffi/builders/with_layout.rb
gir_ffi-0.7.3 lib/gir_ffi/builders/with_layout.rb
gir_ffi-0.7.2 lib/gir_ffi/builders/with_layout.rb
gir_ffi-0.7.1 lib/gir_ffi/builders/with_layout.rb
gir_ffi-0.7.0 lib/gir_ffi/builders/with_layout.rb