summaryrefslogtreecommitdiffstats
path: root/test/test-stk-menu
blob: 0cf8fa20050f3171d377e1dc88430295f6732a95 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#!/usr/bin/python3

from gi.repository import GLib

import sys
import dbus
import dbus.service
import dbus.mainloop.glib
import signal

def handler(signum, frame):
	raise Exception("\nSingle tone is finished!")

class GoBack(dbus.DBusException):
	_dbus_error_name = "org.ofono.Error.GoBack"

class EndSession(dbus.DBusException):
	_dbus_error_name = "org.ofono.Error.EndSession"

class Busy(dbus.DBusException):
	_dbus_error_name = "org.ofono.Error.Busy"

class StkAgent(dbus.service.Object):
	exit_on_release = True
	timeout_id = 0
	timeout_reply_handler = None

	def set_exit_on_release(self, exit_on_release):
		self.exit_on_release = exit_on_release

	def timeout_callback(self):
		self.timeout_id = 0
		self.timeout_reply_handler()
		return False

	def call_added(self, path, properties):
		print("call added %s" % (path))
		if (self.timeout_id > 0):
			GLib.source_remove(self.timeout_id)
			self.timeout_callback()

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="", out_signature="")
	def Release(self):
		print("Release")
		if self.exit_on_release:
			mainloop.quit()

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sya(sy)n", out_signature="y")
	def RequestSelection(self, title, icon, items, default):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		index = 0
		for item in items:
			print("%d. %s (icon: %d)" %
				(index, item[0], int(item[1])))
			index += 1

		print("\nDefault: %d" % (default))
		select = input("Enter Selection (t, b):")

		if select == 'b':
			raise GoBack("User wishes to go back")
		elif select == 't':
			raise EndSession("User wishes to terminate session")
		else:
			return int(select)

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="syb", out_signature="",
					async_callbacks=("reply_func",
								"error_func"))
	def DisplayText(self, title, icon, urgent, reply_func, error_func):
		print("DisplayText (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		print("Urgent: (%d)" % (urgent))
		key = input("Press return to clear ('t' terminates, "
						"'b' goes back, 'n' busy, "
						"'w' return and wait):")

		if key == 'w':
			seconds = 60
		else:
			seconds = 0

		if key == 'b':
			raise GoBack("User wishes to go back")
		elif key == 't':
			raise EndSession("User wishes to terminate session")
		elif key == 'n':
			raise Busy("User wishes to simulate busy screen")

		if (seconds > 0):
			print("Waiting for %d seconds" % (seconds))

		self.timeout_reply_handler = reply_func
		self.timeout_id = GLib.timeout_add_seconds(seconds,
							self.timeout_callback)

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sysyyb", out_signature="s")
	def RequestInput(self, title, icon, default, min_chars, max_chars,
				hide_typing):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		print("Default: (%s)" % (default))
		print("Hide typing: (%s)" % (hide_typing))
		print("Enter characters, min: %d, max: %d:" % (min_chars,
								max_chars))
		userin = input("")

		return userin

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sysyyb", out_signature="s")
	def RequestDigits(self, title, icon, default, min_chars, max_chars,
				hide_typing):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		print("Default: (%s)" % (default))
		print("Hide typing: (%s)" % (hide_typing))
		print("Enter digits, min: %d, max: %d:" % (min_chars,
								max_chars))
		userin = input("'t' terminates, 'b' goes back:")

		if userin == 'b':
			raise GoBack("User wishes to go back")
		elif userin == 't':
			raise EndSession("User wishes to terminate session")
		else:
			return userin

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sy", out_signature="s")
	def RequestKey(self, title, icon):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		key = input("Enter Key (t, b):")

		if key == 'b':
			raise GoBack("User wishes to go back")
		elif key == 't':
			raise EndSession("User wishes to terminate session")
		else:
			return key

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sy", out_signature="s")
	def RequestDigit(self, title, icon):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		key = input("Enter Digit (t, b):")

		if key == 'b':
			raise GoBack("User wishes to go back")
		elif key == 't':
			raise EndSession("User wishes to terminate session")
		else:
			return key

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sy", out_signature="s")
	def RequestQuickDigit(self, title, icon):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		key = input("Quick digit (0-9, *, #, t, b):")

		if key == 'b':
			raise GoBack("User wishes to go back")
		elif key == 't':
			raise EndSession("User wishes to terminate session")
		else:
			return key

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sy", out_signature="b")
	def RequestConfirmation(self, title, icon):
		print("Title: (%s)" % (title))
		print("Icon: (%d)" % (int(icon)))
		key = input("Enter Confirmation (t, b, y, n):")

		if key == 'b':
			raise GoBack("User wishes to go back")
		elif key == 't':
			raise EndSession("User wishes to terminate session")
		elif key == 'y':
			return True
		else:
			return False

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sy", out_signature="b")
	def ConfirmCallSetup(self, info, icon):
		print("Information: (%s)" % (info))
		print("Icon: (%d)" % (int(icon)))
		key = input("Enter Confirmation (t, y, n):")

		if key == 't':
			raise EndSession("User wishes to terminate session")
		elif key == 'y':
			return True
		else:
			return False

	@dbus.service.method("org.ofono.SimToolkitAgent",
				in_signature="sys", out_signature="b")
	def ConfirmLaunchBrowser(self, info, icon, url):
		print("Information: (%s)" % (info))
		print("Icon: (%d)" % (int(icon)))
		print("URL (%s)" % (url))
		key = input("Enter Confirmation (y, n):")

		if key == 'y':
			return True
		else:
			return False

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="", out_signature="")
	def Cancel(self):
		print("Cancel")

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="ssy", out_signature="")
	def PlayTone(self, tone, text, icon):
		print("PlayTone: %s" % (tone))
		print("Text: %s" % (text))
		print("Icon: %d" % (int(icon)))

		signal.signal(signal.SIGALRM, handler)
		signal.alarm(5)

		try:
			key = input("Press return to end before end of"
							 " single tone (t):")
			signal.alarm(0)

			if key == 't':
				raise EndSession("User wishes to terminate"
								 " session")
		except Exception as exc:
			print(exc)

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="ssy", out_signature="",
					async_callbacks=("reply_func",
								"error_func"))
	def LoopTone(self, tone, text, icon, reply_func, error_func):
		print("LoopTone: %s" % (tone))
		print("Text: %s" % (text))
		print("Icon: %d" % (int(icon)))
		key = input("Press return to end before timeout "
				"('t' terminates, 'w' return and wait):")

		if key == 'w':
			seconds = 60
		else:
			seconds = 0

		if key == 't':
			raise EndSession("User wishes to terminate session")

		if (seconds > 0):
			print("Waiting for %d seconds" % (seconds))

		self.timeout_reply_handler = reply_func
		self.timeout_id = GLib.timeout_add_seconds(seconds,
							self.timeout_callback)

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="sy", out_signature="")
	def DisplayActionInformation(self, text, icon):
		print("Text: %s" % (text))
		print("Icon: %d" % (int(icon)))

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="sy", out_signature="")
	def DisplayAction(self, text, icon):
		print("Text: (%s)" % (text))
		print("Icon: (%d)" % (int(icon)))
		key = input("Press 't' to terminate the session ")

		if key == 't':
			raise EndSession("User wishes to terminate session")

	@dbus.service.method("org.ofono.SimToolkitAgent",
					in_signature="sy", out_signature="b")
	def ConfirmOpenChannel(self, info, icon):
		print("Open channel confirmation: (%s)" % (info))
		print("Icon: (%d)" % (int(icon)))
		key = input("Enter Confirmation (t, y, n):")

		if key == 't':
			raise EndSession("User wishes to terminate session")
		elif key == 'y':
			return True
		else:
			return False

_dbus2py = {
	dbus.String : str,
	dbus.UInt32 : int,
	dbus.Int32 : int,
	dbus.Int16 : int,
	dbus.UInt16 : int,
	dbus.UInt64 : int,
	dbus.Int64 : int,
	dbus.Byte : int,
	dbus.Boolean : bool,
	dbus.ByteArray : str,
	dbus.ObjectPath : str
    }

def dbus2py(d):
	t = type(d)
	if t in _dbus2py:
		return _dbus2py[t](d)
	if t is dbus.Dictionary:
		return dict([(dbus2py(k), dbus2py(v)) for k, v in d.items()])
	if t is dbus.Array and d.signature == "y":
		return "".join([chr(b) for b in d])
	if t is dbus.Array or t is list:
		return [dbus2py(v) for v in d]
	if t is dbus.Struct or t is tuple:
		return tuple([dbus2py(v) for v in d])
	return d

def pretty(d):
	d = dbus2py(d)
	t = type(d)

	if t in (dict, tuple, list) and len(d) > 0:
		if t is dict:
			d = ", ".join(["%s = %s" % (k, pretty(v))
					for k, v in d.items()])
			return "{ %s }" % d

		d = " ".join([pretty(e) for e in d])

		if t is tuple:
			return "( %s )" % d

	if t is str:
		return "%s" % d

	return str(d)

def property_changed(name, value):
	print("SimToolKit property: %s changed to '%s'" % (name, pretty(value)))

if __name__ == '__main__':
	if len(sys.argv) == 2:
		mode = sys.argv[1]
	else:
		mode = 'menu'

	dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)

	bus = dbus.SystemBus()
	manager = dbus.Interface(bus.get_object("org.ofono", "/"),
							"org.ofono.Manager")

	modems = manager.GetModems()

	for path, properties in modems:
		if "org.ofono.SimToolkit" in properties["Interfaces"]:
			stk = dbus.Interface(bus.get_object('org.ofono', path),
							'org.ofono.SimToolkit')
		if "org.ofono.VoiceCallManager" in properties["Interfaces"]:
			vcm = dbus.Interface(bus.get_object('org.ofono', path),
						'org.ofono.VoiceCallManager')

	stk.connect_to_signal("PropertyChanged", property_changed)

	properties = stk.GetProperties()

	if mode == 'menu':
		if "MainMenuTitle" in properties:
			print("Main Menu:")
			print("%s" % (properties["MainMenuTitle"]))
			print("\n")

		if "MainMenu" in properties:
			print("Items:")
			index = 0
			for item in properties["MainMenu"]:
				print("%d. %s" % (index, item[0]))
				index += 1

		path = "/test/agent"
		agent = StkAgent(bus, path)

		try:
			vcm.connect_to_signal("CallAdded", agent.call_added)
		except:
			pass

		select = int(input("Enter Selection: "))
		stk.SelectItem(select, path)
	elif mode == 'agent':
		path = "/test/agent"
		agent = StkAgent(bus, path)

		try:
			vcm.connect_to_signal("CallAdded", agent.call_added)
		except:
			pass

		stk.RegisterAgent(path)

		print("Default Agent registered - Waiting for STK command...")
	else:
		print("%s [menu|agent]" % (sys.argv[0]))
		exit(0)

	mainloop = GLib.MainLoop()
	mainloop.run()