qdbusxml2cpp未知类型

时间:2014-03-07 14:57:03

标签: c++ qt dbus qdbus qdbusxml2cpp

使用qdbusxml2cpp程序将以下xml转换为Qt类时,我收到此错误:

qdbusxml2cpp -c ObjectManager -a ObjectManager:ObjectManager.cpp xml/object_manager.xml 
Got unknown type `a{oa{sa{sv}}}'
You should add <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="<type>"/> to the XML description

D-Feet描述:

enter image description here

XML:

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node><interface name="org.freedesktop.DBus.Introspectable"><method name="Introspect"><arg name="xml" type="s" direction="out"/>
</method></interface><interface name="org.freedesktop.DBus.ObjectManager"><method name="GetManagedObjects"><arg name="objects" type="a{oa{sa{sv}}}" direction="out"/>
</method><signal name="InterfacesAdded"><arg name="object" type="o"/>
<arg name="interfaces" type="a{sa{sv}}"/>
</signal>
<signal name="InterfacesRemoved"><arg name="object" type="o"/>
<arg name="interfaces" type="as"/>
</signal>
</interface><node name="org"/></node>

从这个网站(http://techbase.kde.org/Development/Tutorials/D-Bus/CustomTypes)我知道我需要在XML中添加注释才能使工具正常工作。

这是我到目前为止所做的:

a{oa{sa{sv}}}

https://alteeve.ca/w/List_of_DBus_data_types
o == A UTF-8 string whose value is a valid DBus object path.

array { object_path array { string array { string variant } } }

<arg name="customdata" type="a{sv}" direction="in" />
QVariantMap in the arguments (type "a{sv}")
QMap<QString, QVariant>

但是,我不确定{oa {sa {sv}}}的注释应该是什么,有人可以帮助我理解吗?谢谢!

1 个答案:

答案 0 :(得分:8)

openSUSE imagewriter是一个GPL许可项目,其中包含如何执行此操作的示例 (相关文件:udisks2_interface.*


a{sv}是字符串的变体:变体对。
QVariantMap符合此签名。

a{sa{sv}}是字符串:a{sv}对的字典 QMap<QString, QVariantMap>符合此签名。

a{oa{sa{sv}}}是objectpath的一个词:a{sa{sv}}QMap<QDBusObjectPath, QMap<QString, QVariantMap>>符合此签名。

我们应该在头文件中隐藏一些typedef后面的尖括号:

typedef QMap<QString, QVariantMap> InterfaceList;
typedef QMap<QDBusObjectPath, InterfaceList> ManagedObjectList;

然后在同一个头文件中声明他们的QMetaTypes:

Q_DECLARE_METATYPE(InterfaceList)
Q_DECLARE_METATYPE(ManagedObjectList)

然后在运行时使用Qt元类型系统注册它们:

qDBusRegisterMetaType<InterfaceList>();
qDBusRegisterMetaType<ManagedObjectList>();

然后我们可以注释XML:

<method name="GetManagedObjects">
  <arg type="a{oa{sa{sv}}}" name="objects" direction="out">
    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="ManagedObjectList"/>
  </arg>
</method>
<signal name="InterfacesAdded">
  <arg type="o" name="object"/>
  <arg type="a{sa{sv}}" name="interfaces">
    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="InterfaceList"/>
  </arg>
</signal>