diff options
Diffstat (limited to 'test/monitor-manager')
-rwxr-xr-x | test/monitor-manager | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/monitor-manager b/test/monitor-manager new file mode 100755 index 00000000..a6192421 --- /dev/null +++ b/test/monitor-manager @@ -0,0 +1,39 @@ +#!/usr/bin/python + +import gobject + +import dbus +import dbus.mainloop.glib + +def property_changed(name, value): + if name in ["Profiles", "Services", "Providers", + "Devices", "Networks"]: + val = "[" + for i in value: + val = val + " " + i[i.rfind("/") + 1:] + val = val + " ]" + elif name in ["AvailableTechnologies", "EnabledTechnologies", + "ConnectedTechnologies", + "AvailableDebugs", "EnabledDebugs"]: + val = "[" + for i in value: + val = val + " " + i + val = val + " ]" + elif name in ["Strength", "Priority"]: + val = int(value) + else: + val = str(value) + print "%s = %s" % (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.moblin.connman", + dbus_interface="org.moblin.connman.Manager", + signal_name = "PropertyChanged") + + mainloop = gobject.MainLoop() + mainloop.run() |