gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 01:06:03 26 4
gpt4 key购买 nike

我正在查询 NetworkManager 的 org.freedesktop.NetworkManager.Settings.Connection界面,在其上调用“GetSettings”。它返回 Dict of {String, Dict of {String, Variant}}a{sa{sv}}在 Dbus 类型方面。我正在使用 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 .它说“DBus Dict 类型应该映射到 QMap,示例如下……”并且在 Google 上没有其他命中或示例存在。也许我缺少一些基本的 DBus 知识,但我很难过。

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

谁知道如何到达最后一个嵌套的 QVariant?

最佳答案

不幸的是,Qts DBUS API 并不总是最容易理解的,所以这里有一些提示。基本上我发现对我有用的是你必须得到 DBusArgument从回复中,这就是为了获取实际数据而实际使用的内容。根据您要提取的内容,您可以覆盖 operator<<operator>>在您的 .cpp 文件 ( the documentation for QDBusArgument says how to do this ) 中,或者您可以定义要提取的类型。另一个需要注意的重要事项是 QDBusReply::arguments() contains either 发送接收参数,取决于它是回复还是调用。

无论如何,以下对我有用(尽管在 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 );
}
}

关于c++ - 如何用 QDBus 解析 {String 的字典,{String,Variant}} 的字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47159527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com