我想为xcb创建一个基本的ruby模块供我自己使用。 我尝试了一个基本的测试,我用swig包装头文件: 这是我的xcb_ruby.i
%module ruxcby
%{
#include <xcb/xcb.h>
#include <xcb/xcb_util.h>
#include <xcb/xcb_aux.h
#include <xcb/xcb_atom.h>
#include <xcb/xcb_event.h>
%}
%include "/usr/include/xcb/xproto.h"
%include "/usr/include/xcb/xcb.h"
%include "/usr/include/xcb/xcb_atom.h"
%include "/usr/include/xcb/xcb_aux.h"
%include "/usr/include/xcb/xcb_event.h"
当我在irb中尝试时,我能够连接到初始化连接,从这个连接获取信息,但是ruby接口就像在C中一样。我希望有一个更面向对象的接口。
例如在xcb.h中有:
typedef struct xcb_connection_t xcb_connection_t;
xcb_connection_t * xcb_connect(const char *displayname, int *screenp);
int xcb_flush( xcb_connection_t *);
uint32_t xcb_generate_id( xcb_connection_t *);
void xcb_disconnect(xcb_connection_t * );
我想要一个Connection类,其方法是new / connect(),flush(),generate_id()和disconnect() 这是我的新xcb_ruby.i:
%module ruxcby
%{
#include <xcb/xcb.h>
#include <xcb/xproto.h>
%}
%import "/usr/include/xcb/xproto.h"
typedef struct xcb_connection_t {
} Connection;
%extend Connection
{
Connection(const char *displayname, int *screenp)
{
Connection * c;
c = xcb_connect(displayname, screenp);
return c;
}
int flush()
{
return xcb_flush($self);
}
xcb_generic_event_t *wait_for_event()
{
return xcb_wait_for_event($self);
}
void disconnect()
{
return xcb_disconnect($self);
}
uint32_t generate_id()
{
return xcb_generate_id($self);
}
};
如果我在生成c文件后尝试编译,则会出错: erreur:未知类型名称'Connection'
有人可以告诉我哪里错了吗?
由于
编辑
我做了一些修改,现在我可以编译它,但我仍然会遇到一些错误:
%module ruxcby
%{
#include <xcb/xcb.h>
#include <xcb/xproto.h>
typedef struct {
xcb_connection_t * ptr;
} Connection;
%}
%import "/usr/include/xcb/xproto.h"
%feature("autodoc" , "1");
typedef struct {
xcb_connection_t * ptr;
} Connection;
%extend Connection {
Connection(const char *displayname, int *screenp)
{
Connection * c ;
c->ptr = xcb_connect(displayname, screenp);
return c;
}
int flush()
{
return xcb_flush($self->ptr);
}
xcb_generic_event_t *wait_for_event()
{
return xcb_wait_for_event($self->ptr);
}
int connection_has_error()
{
return xcb_connection_has_error($self->ptr);
}
void disconnect()
{
return xcb_disconnect($self->ptr);
}
uint32_t generate_id()
{
return xcb_generate_id($self->ptr);
}
};
现在我可以编译我的模块并使用它:
require './ruxcby'
=> true
conn=Connection.new(nil, nil)
=> #<Ruxcby::Connection:0x0000000223dfc8>
但是当我尝试另一种方法时,我有一个错误:
conn.connection_has_error
ObjectPreviouslyDeleted: Expected argument 0 of type Connection *, but got Ruxcby::Connection #<Ruxcby::
似乎该方法存在,但在将参数传递给方法时仍然存在问题。
任何想法??
答案 0 :(得分:0)
我把解决方案也许它可以帮助某人: 当我扩展Connection类时,我没有为我的结构分配内存:
%extend Connection {
Connection(const char *displayname, int *screenp)
{
Connection * c ;
c = (Connection * ) malloc(sizeof(Connection));
c->ptr = xcb_connect(displayname, screenp);
return c;
}
~Connection()
{
free($self);
}