mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 16:54:38 +08:00
Add script to monitor PropertyChanged signals
This commit is contained in:
parent
3f7c130fd9
commit
567d649420
@ -36,7 +36,7 @@ endif
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/common
|
||||
|
||||
EXTRA_DIST = apitest hsplay hsmicro bdaddr.8 dbusdef.py \
|
||||
EXTRA_DIST = apitest hsplay hsmicro bdaddr.8 dbusdef.py monitor-bluetooth \
|
||||
list-devices test-discovery test-manager test-adapter \
|
||||
test-device test-service test-serial test-telephony \
|
||||
simple-agent simple-service service-record.dtd \
|
||||
|
25
test/monitor-bluetooth
Executable file
25
test/monitor-bluetooth
Executable file
@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import gobject
|
||||
|
||||
import dbus
|
||||
import dbus.mainloop.glib
|
||||
|
||||
def property_changed(name, value, path, interface):
|
||||
iface = interface[interface.rfind(".") + 1:]
|
||||
val = str(value)
|
||||
print "{%s} [%s] %s = %s" % (iface, path, name, val)
|
||||
|
||||
if __name__ == '__main__':
|
||||
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
||||
|
||||
bus = dbus.SystemBus()
|
||||
|
||||
bus.add_signal_receiver(property_changed,
|
||||
bus_name="org.bluez",
|
||||
signal_name = "PropertyChanged",
|
||||
path_keyword="path",
|
||||
interface_keyword="interface")
|
||||
|
||||
mainloop = gobject.MainLoop()
|
||||
mainloop.run()
|
Loading…
Reference in New Issue
Block a user