Sha256: 7fe89dc1c4f0821bfa4fc9fe16bf21128bcba475e088e043b344ead1b2650007
Contents?: true
Size: 1.33 KB
Versions: 4
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).ruby_value } result = rclosure.invoke_block(*args) return_value.set_ruby_value(result) if return_value end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.6.3 | lib/ffi-gobject/ruby_closure.rb |
gir_ffi-0.6.2 | lib/ffi-gobject/ruby_closure.rb |
gir_ffi-0.6.1 | lib/ffi-gobject/ruby_closure.rb |
gir_ffi-0.6.0 | lib/ffi-gobject/ruby_closure.rb |