From 567d6494208ceae0d2101df36e7c285ad998242d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 16 Dec 2008 03:06:48 +0100 Subject: Add script to monitor PropertyChanged signals --- test/Makefile.am | 2 +- test/monitor-bluetooth | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100755 test/monitor-bluetooth (limited to 'test') 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() -- cgit