我想知道是否有一种简单的方法通过QtDbus来“监控”特定服务的方法调用。例如,当有一个Notify方法调用org.freedesktop.Notifications时,我希望能够“捕获”它并读取它的参数。
注意*
我可能找到了一个使用dbus-monitor应用程序的解决方案,但我想知道Qt Dbus库是否有更好的方法。
答案 0 :(得分:6)
是的,你应该能够通过QtDBus做到这一点(有一点工作)。从根本上说,消息总线上的任何客户端都可以订阅任何消息 - 仅受总线安全策略的限制。 (因此,除非您具有调试访问权限或消息总线,否则无法监视明确不合作的应用程序。)关键是您需要在总线上使用org.freedesktop.DBus.AddMatch
方法:
// first connect our handler object to the QDBusConnection so that it knows what
// to do with the incoming Notify calls
// slotNotifyObserved() must have a compatible signature to the DBus call
QDBusConnection::sessionBus().connect("", // any service name
"", // any object path
"org.freedesktop.Notifications",
"Notify",
myImplementingQObject,
SLOT(slotNotifyObserved(...));
// then ask the bus to send us a copy of each Notify call message
QString matchString = "interface='org.freedesktop.Notifications',member='Notify',type='method_call',eavesdrop='true'";
QDBusInterface busInterface("org.freedesktop.DBus", "/org/freedesktop/DBus",
"org.freedesktop.DBus");
busInterface.call("AddMatch", matchString);
// once we get back to the event loop our object should be called as other programs
// make Notify() calls
DBus Specification列出了matchString
中可能包含的各种匹配字段。
为了更好地了解发生了什么,the QDBus documentation建议设置环境变量QDBUS_DEBUG=1
,以使您的应用程序记录有关其dbus消息传递的信息。