summaryrefslogtreecommitdiff
path: root/test/start-scanning
blob: e3bac28a6b1d7198e381ea5fcd20ffc35ef4f7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
					'org.moblin.connman.Manager')

properties = manager.GetProperties()

for path in properties["Technologies"]:
	technology = dbus.Interface(bus.get_object('org.moblin.connman', path),
						'org.moblin.connman.Technology')
	properties = technology.GetProperties()

	print "[ %s ]" % (path)

	if properties["Type"] in ["wifi", "wimax"]:

		print "   Started scanning"

		for path in properties["Devices"]:
			device = dbus.Interface(bus.get_object('org.moblin.connman', path),
								'org.moblin.connman.Device')
			try:
				device.ProposeScan()
			except dbus.DBusException, error:
				print "   %s: %s" % (error._dbus_error_name, error.message)
	else:
		print "   No scanning"

	print