如何使用gdbus-codegen用org.gtk.GDBus.C.ForceGVariant注释xml文件

时间:2019-04-26 21:49:03

标签: c++ dbus bluez

我正在尝试注释xml文件,以便dbus-codegen生成使用GVariant *而不是像gchar这样的本机类型的方法。

这是我正在使用的xml代码。

<node>
  <interface name="org.bluez.GattCharacteristic1">
    <method name="WriteValue">

        <arg name="value" type="ay" direction="in"/>

    </method>
  </interface>
</node>

我已经阅读了以下stackoverflow帖子:

Sending a byte array (type `ay`) over D-Bus using GDBus

阅读该文章后,我尝试了以下操作:

1)编辑xml文件以包含注释

<node>
  <interface name="org.bluez.GattCharacteristic1">
    <method name="WriteValue">
      <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true">
        <arg name="value" type="ay" direction="in"/>
      </annotation>
    </method>
  </interface>
</node>

然后做:

gdbus-codegen --interface-prefix org.bluez --c-generate-object-manager --generate-c-code generated-code org.bluez.xml

这没有产生我想要的。

2)使用gdbus-codegen上的--annotate开关:

gdbus-codegen --annotate "org.bluez.GattCharacteristic1.WriteValue()" org.gtk.GDBus.C.ForceGVariant true --interface-prefix org.bluez --c-generate-object-manager --generate-c-code generated-code org.bluez.xml

这没有产生我想要的。

我成功的唯一方法是将以下代码中的“ ay”更改为“ a(y):

    <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true">
    <arg name="value" type="a(y)" direction="in"/>
    </annotation>'

但这会导致其他问题。

那么我如何使用以下声明获取WriteValue方法:

    gboolean gatt_characteristic1_call_write_value_sync
    (GattCharacteristic1 *proxy,
    GVariant *arg_value,
    GCancellable *cancellable,
    GError **error)

代替:

    gboolean gatt_characteristic1_call_write_value_sync (
    GattCharacteristic1 *proxy,
    const gchar *arg_value,
    GCancellable *cancellable,
    GError **error)

请告诉我我做错了什么。

谢谢。

1 个答案:

答案 0 :(得分:0)

documented in the D-Bus specification’s section on the introspection data format一样,您需要使用<annotation>作为自动关闭元素,而不是围绕<arg>元素。

所以你想要

<node>
  <interface name="org.bluez.GattCharacteristic1">
    <method name="WriteValue">
      <arg name="value" type="ay" direction="in">
        <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
      </arg>
    </method>
  </interface>
</node>

您还可以看到此in the GLib source code的示例。