我可以将ruby对象指针传递给ruby-ffi回调吗?

时间:2017-01-07 00:17:27

标签: ruby ruby-ffi

我真的可以在这个方向上使用正确的方向。

鉴于此C代码:

typedef void cbfunc(void *data);
void set_callback(cbfunc* cb);
//do_stuff calls the callback multiple times with data as argument
void do_stuff(void *data);

这个Ruby代码:

module Lib
    extend FFI::Library
    # ...
    callback :cbfunc, [:pointer], :void
    attach_function :set_callback, [:cbfunc], :void
    attach_function :do_stuff, [:pointer], :void
end

有没有办法可以将ruby数组作为回调数据传递,例如:

proc = Proc.new do |data|
    # somehow cast FFI::Pointer to be a ruby array here?
    data.push(5)
end
Lib::set_callback(proc)
Lib::do_stuff(ptr_to_a_ruby_obj_here)

问题是回调将被多次调用,我需要一种方法来轻松构建各种ruby对象的数组。

也许我有点累,但觉得这样做是一种简单的方法,我只是没有看到它。

2 个答案:

答案 0 :(得分:1)

我在发布之后意识到我可以讨论Proc并将其用作回调。

类似于:

proc = Proc.new do |results, data|
    results.push(5)
end
results = []
callback = proc[results]
Lib::set_callback(callback)
Lib::do_stuff(nil) # Not concerned with this pointer anymore

我刚刚切换到忽略void * data参数(这是C方面的要求)。 必须有其他几种方式,如果有人愿意分享,我有兴趣听到它们。

答案 1 :(得分:1)

您可以使用该对象FFI::Pointer从Ruby对象创建object_id

# @param obj [any] Any value
# @return [::FFI::Pointer] a pointer to the given value
def ruby_to_pointer(obj)
  require 'ffi'
  address = obj.object_id << 1
  ffi_pointer = ::FFI::Pointer.new(:pointer, address)
end

当回调到回调中的Ruby时,问题是从这种指针中获取可用的Ruby值。 FFI没有为此提供自然的接口,但Ruby standardlib模块fiddle使用它的指针类型:

# @param ffi_pointer [FFI::Pointer, #to_i]
# @return [any] Ruby object
def pointer_to_ruby(ffi_pointer)
  require 'fiddle'
  address = ffi_pointer.to_i
  fiddle = ::Fiddle::Pointer.new(address)
  obj = fiddle.to_value
end

这是一个不安全的操作!在将FFI :: Pointer表示转换回Ruby之前,您应该非常小心,不要对原始Ruby对象进行垃圾回收。