qdbus 複雜類型

openSUSE imagewriter is a GPL licensed project which contains an example of how to do this. (Relevant files: udisks2_interface.*)ide

a{sv} is a dict of string:variant pairs. QVariantMap would fit this signature.this

a{sa{sv}} is a dict of string:a{sv} pairs. QMap<QString, QVariantMap> would fit this signature.qt

a{oa{sa{sv}}} is a dict of objectpath:a{sa{sv}} pairs. QMap<QDBusObjectPath, QMap<QString, QVariantMap>> would fit this signature.string

We should hide those angle-brackets behind some typedefs in a header file:it

typedef QMap<QString, QVariantMap> InterfaceList; typedef QMap<QDBusObjectPath, InterfaceList> ManagedObjectList; Then declare their QMetaTypes in the same header file:io

Q_DECLARE_METATYPE(InterfaceList) Q_DECLARE_METATYPE(ManagedObjectList) Then register them with the Qt metatype system at runtime:sed

qDBusRegisterMetaType<InterfaceList>(); qDBusRegisterMetaType<ManagedObjectList>(); Then we can annotate the XML:object

<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>List

相關文章
相關標籤/搜索