Ruby Data_Get_Struct错误错误参数期望数据

时间:2015-01-22 10:00:34

标签: ruby ruby-c-extension

我正在使用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函数。

我不知道我做错了什么,我有一个笔记本类,它以相同的方式编写,但它按预期工作。

1 个答案:

答案 0 :(得分:2)

我忘了将alloc函数绑定到类:

rb_define_alloc_func(c_window, c_window_struct_alloc);