diff options
| -rw-r--r-- | test/Makefile.am | 2 | ||||
| -rwxr-xr-x | test/monitor-bluetooth | 25 | 
2 files changed, 26 insertions, 1 deletions
| diff --git a/test/Makefile.am b/test/Makefile.am index ce11943e..81b5b379 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -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 \ diff --git a/test/monitor-bluetooth b/test/monitor-bluetooth new file mode 100755 index 00000000..b2969f3d --- /dev/null +++ b/test/monitor-bluetooth @@ -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() | 
