作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题总结: qdbusxml2cpp
生成一个 QDBusAbstractInterface
子类,其方法异步获取 D-Bus 回复,但我希望它是同步的(即它应该阻塞直到收到回复)。
XML 输入:
<?xml version="1.0"?>
<!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="some.interface.Foo">
<method name="GetValues">
<arg name="values" type="a(oa{sv})" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<SomeStruct>" />
</method>
</interface>
</node>
使用此命令生成 header 和 .cpp 文件(未显示):
qdbusxml2cpp-qt5 -c InterfaceFoo -p interface_foo foo.xml
生成的头部:
class InterfaceFoo: public QDBusAbstractInterface
{
Q_OBJECT
public:
static inline const char *staticInterfaceName()
{ return "some.interface.Foo"; }
public:
InterfaceFoo(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
~InterfaceFoo();
public Q_SLOTS: // METHODS
inline QDBusPendingReply<QList<SomeStruct> > GetValues()
{
QList<QVariant> argumentList;
// NOTICE THIS LINE.
return asyncCallWithArgumentList(QStringLiteral("GetValues"), argumentList);
}
Q_SIGNALS: // SIGNALS
};
namespace some {
namespace interface {
typedef ::InterfaceFoo Foo;
}
}
#endif
如您所见,生成的方法 asyncCallWithArgumentList()
是异步的:它期望被 connect()
ed 到 D-Bus 回复时触发的插槽到达。
相反,我希望能够做到:
some::interface::Foo *interface = new some::interface::Foo("some::interface", "/Foo", QDBusConnection::systemBus(), this);
// THIS SHOULD block until a reply is received or it times out.
QList<SomeStruct> data = interface->GetValues();
最佳答案
您可以在要阻止的返回值上使用 value()
,按原样使用 GetValues()
:
auto reply = interface->GetValues();
auto data = reply.value<QList<QVariant>>();
唉,生成的界面应该生成一次,然后成为你的源代码的一部分。您应该修改它以使用阻塞调用,并添加从变体到具体类型的转换:
inline QDBusPendingReply<QList<SomeStruct>> GetValues()
{
QList<QVariant> argumentList;
auto msg = callWithArgumentList(QDBus::Block, QStringLiteral("GetValues"), argumentList);
Q_ASSERT(msg.type() == QDBusMessage::ReplyMessage);
QList<SomeStruct> result;
for (auto const & arg : msg.arguments())
result << arg.value<SomeStruct>();
return result;
}
最后,您可能希望重新考虑使其同步:现实世界是异步的,因此编写代码时就好像它不是异步的通常会适得其反。如果您的代码在主线程中运行并且有一个图形用户界面,您将提供糟糕的用户体验。如果将代码移至辅助线程,那么您就是在浪费整个线程来支持同步编码风格。即使您正在编写相当于非交互式批处理式实用程序/服务的内容,您也可能会增加延迟,例如不并行发出调用。
关于c++ - 如何用qdbusxml2cpp生成同步接口(interface)类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39739945/
我是一名优秀的程序员,十分优秀!