我正在用 C 编写一些非常简单的类的小 ruby 模块:
typedef struct window_t {
GtkWidget * widget;
}
static void c_window_struct_free(window_t *c)
{
if(c)
{
ruby_xfree(c);
}
}
static VALUE c_window_struct_alloc( VALUE klass)
{
return Data_Wrap_Struct(klass, NULL, c_window_struct_free,ruby_xmalloc(sizeof(window_t)));
}
VALUE c_window = rb_define_class_under(m_rtortosa, "Window", c_widget)
rb_define_method(c_window, "set_title",RUBY_METHOD_FUNC(window_set_title), 1);
//For each class I don't rewritte any "new" or "initialize" function. I let the default
当我的模块初始化时,一个 gtk 窗口被创建,我有一个调用这个模块的 ruby 方法:
static VALUE rtortosa_window(VALUE self)
{
VALUE win;
VALUE m_rtortosa = rb_const_get( rb_cObject, rb_intern( "Rtortosa" ) );
VALUE cWindow = rb_const_get_at( m_rtortosa, rb_intern("Window") );
win = rb_class_new_instance(0, NULL, backbone.rb_objects.cWindow);
window_t *w;
Data_Get_Struct(win,window_t, w);
w->widget = backbone.window.widget;
return win;
}
当我从 ruby 调用 rtortosta_window 时出现问题,它会抛出如下错误:
wrong argument type Rtortosa::Window (expected Data) (TypeError)
经过调查,此消息来自 Data_Get_Struct 函数。
我看不出我做错了什么,我有一个以相同方式编写的笔记本类,但它按预期工作。
我忘了将 alloc 函数绑定(bind)到类:
rb_define_alloc_func(c_window, c_window_struct_alloc);
我是一名优秀的程序员,十分优秀!