From: Marcel Holtmann Date: Tue, 26 Feb 2008 09:36:58 +0000 (+0100) Subject: Add example for showing the full introspection data X-Git-Tag: 0.1~391 X-Git-Url: http://git.maemo.org/git/?p=connman;a=commitdiff_plain;h=4bfbc81069e03dd3533ddae2e435cbf5d4eada65 Add example for showing the full introspection data --- diff --git a/test/Makefile.am b/test/Makefile.am index 8f8214f..f3ae183 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,4 +1,4 @@ -EXTRA_DIST = list-interfaces start-scanning simple-agent +EXTRA_DIST = list-interfaces start-scanning simple-agent show-introspection MAINTAINERCLEANFILES = Makefile.in diff --git a/test/show-introspection b/test/show-introspection new file mode 100755 index 0000000..9acdd11 --- /dev/null +++ b/test/show-introspection @@ -0,0 +1,21 @@ +#!/usr/bin/python + +import dbus + +bus = dbus.SystemBus() + +object = dbus.Interface(bus.get_object('org.freedesktop.connman', '/'), + 'org.freedesktop.DBus.Introspectable') + +print object.Introspect() + +manager = dbus.Interface(bus.get_object('org.freedesktop.connman', "/"), + 'org.freedesktop.connman.Manager') + +interfaces = manager.ListInterfaces() + +for path in interfaces: + object = dbus.Interface(bus.get_object('org.freedesktop.connman', path), + 'org.freedesktop.DBus.Introspectable') + + print object.Introspect()