如何用 QDBus 解析 {String 的字典,{String,Variant}} 的字典?

How do I parse Dict of {String, Dict of {String, Variant}} with QDBus?

我正在查询 NetworkManager 的 org.freedesktop.NetworkManager.Settings.Connection 接口,在其上调用 "GetSettings"。在 Dbus 类型术语中,它 returns 一个 Dict of {String, Dict of {String, Variant}}a{sa{sv}}。我正在使用 QtCreator 和 Qt4 来构建我的应用程序。

我似乎无法从这本词典中得到一条有用的信息。 我无法提供 MVE,因为如果某人的系统上安装了 NetworkManager 和 DBus 以及 Qt4,它会严重依赖。

这是我正在开发的方法,用于从此字符串字典和字符串及变体字典中获取信息。将其通过管道传输到 qDebug() 时,我可以看到所有我想要的好数据:qDebug()<<reply.

void GetInfo()
{
    //sysbus just means the system DBus.
    QDBusInterface connSettings("org.freedesktop.NetworkManager", "/org/freedesktop/NetworkManager/Settings/1", "org.freedesktop.NetworkManager.Settings.Connection", sysbus);
    QDBusMessage reply = connections.call("GetSettings");
    if(reply.type() == QDBusMessage::ReplyMessage)
    {
        //I have tried everything I can imagine here,
        //QVariant g = reply.arguments().at(0).value<QVariant>(); did not work
        //g.canConvert<QMap>(); returns false, in contrast to what KDE says.
        //QDbusArgument g = query.arguments().at(0).value<QDBusArgument>();
        //g.beginMap(); and such don't work
    }
}

很难找到有关解析 Dict 类型的信息。我发现提供一些信息的唯一来源是 KDE。它说 "The DBus Dict type should map to QMap, example to follow.." 并且 Google 上没有其他命中或不存在示例。也许我缺少一些基本的 DBus 知识,但我很难过。

我也查看了这个出色的答案:How do I extract the returned data from QDBusMessage in a Qt DBus call? 但我无法调整它来解析字典。

有人知道如何到达最后一个嵌套的 QVariant 吗?

不幸的是,Qts DBUS API 并不总是最容易理解的,所以这里有一些提示。基本上,我发现对我有用的是,您必须从回复中获取 DBusArgument,这就是获取实际数据时实际使用的内容。根据您要提取的内容,您可以覆盖 .cpp 文件中的 operator<<operator>>the documentation for QDBusArgument says how to do this), or you can define the type that you want to extract as. The other important thing to note is that QDBusReply::arguments() contains either sending收到个参数,取决于它是回复还是来电。

无论如何,以下对我有用(虽然在 Qt5 中,但我希望它也应该在 Qt4 中工作)

QDBusInterface connSettings("org.freedesktop.NetworkManager",
                            "/org/freedesktop/NetworkManager/Settings/1",
                            "org.freedesktop.NetworkManager.Settings.Connection",
                            QDBusConnection::systemBus() );
QDBusMessage reply = connSettings.call("GetSettings");

qDebug() << "Reply below:";
qDebug() << reply;

qDebug() << "Extracted: ";

// Extract the argument from the reply
// In this case, we know that we get data back from the method call,
// but a range check is good here as well(also to ensure that the 
// reply is a method reply, not an error)
const QDBusArgument &dbusArg = reply.arguments().at( 0 ).value<QDBusArgument>();

// The important part here: Define the structure type that we want to
// extract.  Since the DBus type is a{sa{sv}}, that corresponds to a 
// Map with a key of QString, which maps to another map of
// QString,QVariant
QMap<QString,QMap<QString,QVariant> > map;
dbusArg >> map;
qDebug() << "Map is: " << map;

// We're just printing out the data in a more user-friendly way here
for( QString outer_key : map.keys() ){
    QMap<QString,QVariant> innerMap = map.value( outer_key );

    qDebug() << "Key: " << outer_key;
    for( QString inner_key : innerMap.keys() ){
        qDebug() << "    " << inner_key << ":" << innerMap.value( inner_key );
    }
}