Add script to monitor PropertyChanged signals

This commit is contained in:
Marcel Holtmann 2008-12-16 03:06:48 +01:00
parent 3f7c130fd9
commit 567d649420
2 changed files with 26 additions and 1 deletions

View File

@ -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
View 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()