我必须处理二进制blob dbus服务/服务器,我需要通过dbus(会话)连接。
界面的内省如下(通过gdbus-codegen
获得)。
我们向远程注册一个函数,因此如果远程接收到一条名为message_handler
的消息,我们会收到通知。这发生在我通过dbus传递的send_message
命令上的响应,但是它起作用(因此没有显示)。
在java示例中,它通过
完成dbus_connection.exportObject("/", new DBusInterfaceDerivedClassFoo());
并在bustle
中显示为(no interface) message_handler
,一切正常。
在裸日志中说<none>
而不是(no interface)
。
根据gdbus-monitor - interface `<none>`,这是由于gdbus-monitor
检测到interface
为NULL
如何使用GDBus
注册/导出接口等于NULL的对象?
到目前为止尝试的事情在代码中标记为评论:
代码块:
static gchar iface_xml[] =
"<node name='/'>"
" <interface name='bar.long.long.name.rxobj'>"
" <method name='message_handler' >"
" <arg type='s' direction='in'/>"
" </method>"
" <method name=isRemote' >"
" <arg type='b' direction='out'/>"
" </method>"
" </interface>"
" <interface name='org.freedesktop.DBus.Introspectable'>"
" <method name='Introspect'>"
" <arg type='s' direction='out'/>"
" </method>"
" </interface>"
" <interface name='org.freedesktop.DBus.Peer'>"
" <method name='Ping'>"
" </method>"
" </interface>"
"</node>";
GError *error = NULL;
GDBusConnection *con = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
g_assert (!error);
GDBusNodeInfo *node_info = g_dbus_node_info_new_for_xml (iface_xml, &error);
// also tried ...de_info = NULL; // - crash, see below
g_assert (!error);
GDBusInterfaceInfo *interface_info = g_dbus_node_info_lookup_interface (node_info,
"bar.long.long.name.rxobj");
// also tried ...okup_interface (node_info, NULL); - obviously wrong
g_assert (interface_info);
guint id = g_dbus_connection_register_object (con,
(const gchar*)"/",
// also tried node_info->interfaces[0]
// also tried "" - crash
// also tried "\0" - crash
// also tried NULL - assert failure
interface_info,
&vtable, /*we never enter any of the callbacks*/
NULL,/*user_data*/
(GDestroyNotify)NULL,
&error);
g_assert (!error);
GMainLoop *loop = g_main_loop_new (...);
g_main_loop_run (loop);
...
无论我评论什么,我都没有输入vtable
中指定的回调。
提前感谢任何提示。
附加信息:如果重要的话,远程使用qtdbus就可以了。
答案 0 :(得分:0)
它不是关于在NULL接口上导出接口(规范未涵盖),而是关于正确处理此类调用的服务/服务器。
这还没有在gdbus中实现,提交了一个错误(包括补丁)https://bugzilla.gnome.org/show_bug.cgi?id=706675