Add script to debug element details
[connman] / test / list-networks
1 #!/usr/bin/python
2
3 import dbus
4 import string
5
6 bus = dbus.SystemBus()
7
8 manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
9                                         "org.moblin.connman.Manager")
10
11 properties = manager.GetProperties()
12
13 def convert_ssid(ssid_list):
14         ssid = ""
15         for byte in ssid_list:
16                 if (str(byte) in string.printable):
17                         ssid = ssid + str(byte)
18                 else:
19                         ssid = ssid + "."
20         return ssid
21
22 for path in properties["Devices"]:
23         device = dbus.Interface(bus.get_object("org.moblin.connman", path),
24                                                 "org.moblin.connman.Device")
25
26         properties = device.GetProperties()
27
28         if properties["Type"] not in ["wifi", "wimax",
29                                         "bluetooth", "cellular"]:
30                 continue;
31
32         print "[ %s ]" % (path)
33
34         for path in properties["Networks"]:
35                 network = dbus.Interface(bus.get_object("org.moblin.connman", path),
36                                                 "org.moblin.connman.Network")
37
38                 properties = network.GetProperties()
39
40                 print "    [ %s ]" % (path)
41
42                 for key in properties.keys():
43                         if (key == "WiFi.SSID"):
44                                 ssid = convert_ssid(properties[key])
45                                 print "        %s = [ %s ]" % (key, ssid)
46                         elif (key == "Strength"):
47                                 print "        %s = %d" % (key, properties[key])
48                         else:
49                                 print "        %s = %s" % (key, properties[key])
50
51         print