本文介绍了用python接收dbus信号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个python脚本,该脚本通过dbus侦听信号并将其存储在文件中,因为我需要接收信号的服务发送的哈希密码始终在变化.我已经阅读了这些手册,但由于我不了解python,因此需要任何帮助.

i am trying to make a python script which listen signals over dbus and store them at a file because the service that i need to receive the signals send a hash password which is always changing.i have read these manuals but as i have no knowledge of python i need any help.

import sys
import traceback
import gobject
import dbus
import dbus.mainloop.glib

def handle_reply(msg):
print msg

def handle_error(e):
print str(e)

def emit_signal():
#call the emitHelloSignal method
object.emitHelloSignal(dbus_interface="com.example.TestService")
                      #reply_handler = handle_reply, error_handler = handle_error)
# exit after waiting a short time for the signal
gobject.timeout_add(2000, loop.quit)

if sys.argv[1:] == ['--exit-service']:
  object.Exit(dbus_interface='com.example.TestService')

return False

def hello_signal_handler(hello_string):
print ("Received signal (by connecting using remote object) and it says: "
       + hello_string)

def catchall_signal_handler(*args, **kwargs):
print ("Caught signal (in catchall handler) "
       + kwargs['dbus_interface'] + "." + kwargs['member'])
for arg in args:
    print "        " + str(arg)

def catchall_hello_signals_handler(hello_string):
print "Received a hello signal and it says " + hello_string

def catchall_testservice_interface_handler(hello_string, dbus_message):
print "com.example.TestService interface says " + hello_string + " when it    sent signal " + dbus_message.get_member()


if __name__ == '__main__':
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

bus = dbus.SessionBus()
try:
    object  =  bus.get_object("com.example.TestService","/com/example/TestService/object")

    object.connect_to_signal("HelloSignal", hello_signal_handler,    dbus_interface="com.example.TestService", arg0="Hello")
    except dbus.DBusException:
    traceback.print_exc()
    print usage
    sys.exit(1)

#lets make a catchall
bus.add_signal_receiver(catchall_signal_handler,  interface_keyword='dbus_interface', member_keyword='member')

bus.add_signal_receiver(catchall_hello_signals_handler, dbus_interface =  "com.example.TestService", signal_name = "HelloSignal")

bus.add_signal_receiver(catchall_testservice_interface_handler,   dbus_interface = "com.example.TestService", message_keyword='dbus_message')

# Tell the remote object to emit the signal after a short delay
gobject.timeout_add(2000, emit_signal)

loop = gobject.MainLoop()
loop.run()

感谢您的帮助

推荐答案

您可以使用dbus-monitor检查信号是什么

you can use dbus-monitor to check what the signal is like

dbus-monitor --system "type='signal',sender='org.bluez'"

下面是我的接收信号的python3示例代码:

below is my python3 example code to receive signal:

import dbus
from gi.repository import GLib
from dbus.mainloop.glib import DBusGMainLoop

def signal_handler(*args, **kwargs):
    for i, arg in enumerate(args):
        print("arg:%d        %s" % (i, str(arg)))
    print('kwargs:')
    print(kwargs)
    print('---end----')

DBusGMainLoop(set_as_default=True)
bus = dbus.SystemBus()
#register your signal callback
bus.add_signal_receiver(signal_handler,
                        bus_name='org.bluez',
                        interface_keyword='interface',
                        member_keyword='member',
                        path_keyword='path',
                        message_keyword='msg')

loop = GLib.MainLoop()
loop.run()

修改bus_name/sender以适合您的情况

modify the bus_name/sender to suit your case

这篇关于用python接收dbus信号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-03 09:56