summaryrefslogtreecommitdiffstats
path: root/test/monitor-ofono
blob: 0335fcd4a92561ca43ceede1af3324c1de03d73d (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
34
35
36
37
38
#!/usr/bin/python

import gobject

import dbus
import dbus.mainloop.glib

def property_changed(name, value, path, interface):
	iface = interface[interface.rfind(".") + 1:]
	if name in ["Modems", "Interfaces",
				"Technologies",
				"SubscriberNumbers",
				"Operators",
				"EmergencyNumbers",
				"PreferredLanguages"]:
		val = ""
		for i in value:
			val += i + " "
	elif name in ["MobileNetworkCodeLength",
				"VoicemailMessageCount"]:
		val = int(value)
	else:
		val = str(value)
	print "{%s} [%s] %s = %s" % (iface, path, name, val)

if __name__ == '__main__':
	dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

	bus = dbus.SystemBus()

	bus.add_signal_receiver(property_changed,
					bus_name="org.ofono",
					signal_name = "PropertyChanged",
						path_keyword="path",
						interface_keyword="interface")

	mainloop = gobject.MainLoop()
	mainloop.run()