ConnMan backtrace support
[framework/connectivity/connman.git] / test / list-profiles
index 4774114..710a36c 100755 (executable)
@@ -9,14 +9,26 @@ manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
 
 properties = manager.GetProperties()
 
+active = properties["ActiveProfile"]
+
 for path in properties["Profiles"]:
-       print "[ %s ]" % (path)
+       if (active == path):
+               print "[ %s ]  <== active" % (path)
+       else:
+               print "[ %s ]" % (path)
 
        profile = dbus.Interface(bus.get_object("org.moblin.connman", path),
                                                "org.moblin.connman.Profile")
 
        properties = profile.GetProperties()
        for key in properties.keys():
-               print "    %s = %s" % (key, properties[key])
+               if key in ["Services"]:
+                       list = ""
+                       for path in properties["Services"]:
+                               val = str(path)
+                               list = list + val[val.rfind("/") + 1:] + " "
+                       print "    Services = [ %s]" % (list)
+               else:
+                       print "    %s = %s" % (key, properties[key])
 
        print