From 4bfbc81069e03dd3533ddae2e435cbf5d4eada65 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 26 Feb 2008 10:36:58 +0100 Subject: [PATCH] Add example for showing the full introspection data --- test/Makefile.am | 2 +- test/show-introspection | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100755 test/show-introspection 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() -- 1.7.9.5