我正在尝试制作一个 python 应用程序来读取通过 DBus 的消息,它给出了与 bash dbus-monitor相同的输出。根据我从搜索中得到的信息,代码应该非常简单明了,例如:
import dbus, gobject
from dbus.mainloop.glib import DBusGMainLoop
def msg_cb(bus, msg):
args = msg.get_args_list()
print "Notification from '%s'" % args[0]
print "Summary: %s" % args[3]
print "Body: %s", args[4]
if __name__ == '__main__':
DBusGMainLoop(set_as_default=True)
bus = dbus.SessionBus()
string = "interface='org.freedesktop.Notifications',member='Notify'"
bus.add_match_string(string)
bus.add_message_filter(msg_cb)
mainloop = gobject.MainLoop ()
mainloop.run ()
但是启动它时,我只收到 DBus 返回的消息,说应用程序已连接,这与我执行 bash 命令时得到的不同:
dbus-monitor --session interface='org.freedesktop.Notifications',member='Notify'
在这种情况下,我可以看到所有符合过滤条件的消息。有人请帮助我了解我失败的地方吗?谢谢