Sha256: 7dc75fa252a03b66330f0fdb5f3e9741236b434fccbbc153d541049b7b614d33
Contents?: true
Size: 1.33 KB
Versions: 3
Compression:
Stored size: 1.33 KB
Contents
require 'ffi-gobject/closure' module GObject # This class encapsulates Ruby # blocks as GObject Closures. class RubyClosure < Closure BLOCK_STORE = {} # Extend the standard GClosure layout with a field block_id to store # the object_id of the associated block. class Struct < FFI::Struct layout :parent, Closure::Struct, 0, :block_id, :int64 end def block BLOCK_STORE[@struct[:block_id]] end def block= block id = block.object_id BLOCK_STORE[id] = block @struct[:block_id] = id end def invoke_block *args block.call(*args) end def self.new &block raise ArgumentError unless block_given? closure = wrap(new_simple(self::Struct.size, nil).to_ptr) closure.block = block closure.set_marshal Proc.new {|*args| marshaller(*args)} return closure end # TODO: Use invocation_hint and marshal_data def self.marshaller(closure, return_value, n_param_values, param_values, _invocation_hint, _marshal_data) rclosure = wrap(closure.to_ptr) args = n_param_values.times.map {|idx| Value.wrap(param_values.to_ptr + idx * Value::Struct.size).get_value } result = rclosure.invoke_block(*args) return_value.set_ruby_value(result) if return_value end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.6.6 | lib/ffi-gobject/ruby_closure.rb |
gir_ffi-0.6.5 | lib/ffi-gobject/ruby_closure.rb |
gir_ffi-0.6.4 | lib/ffi-gobject/ruby_closure.rb |