Open Source Telephony
 help / color / mirror / Atom feed
* [PATCH 1/2] test-ussd becomes send-ussd
@ 2012-07-02 15:45 Philippe Nunes
  2012-07-02 15:45 ` [PATCH 2/2] test-ussd: new script more generic Philippe Nunes
  2012-07-09 16:26 ` [PATCH 1/2] test-ussd becomes send-ussd Denis Kenzior
  0 siblings, 2 replies; 5+ messages in thread
From: Philippe Nunes @ 2012-07-02 15:45 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 4314 bytes --]

---
 test/send-ussd |   75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 test/test-ussd |   75 --------------------------------------------------------
 2 files changed, 75 insertions(+), 75 deletions(-)
 create mode 100755 test/send-ussd
 delete mode 100755 test/test-ussd

diff --git a/test/send-ussd b/test/send-ussd
new file mode 100755
index 0000000..c21f5e3
--- /dev/null
+++ b/test/send-ussd
@@ -0,0 +1,75 @@
+#!/usr/bin/python
+
+import sys
+import gobject
+import os
+
+import dbus
+import dbus.mainloop.glib
+
+state = None
+
+def ussd_notification_received(content):
+	print("Network sent a Notification: " + content)
+
+def ussd_request_received(content):
+	print("Network sent a Request: " + content)
+	ss.Cancel()
+
+def ussd_property_changed(name, value):
+	global state
+	if name != "State":
+		return
+	print("USSD session state is " + value)
+	state = str(value)
+
+def stdin_handler(fd, condition):
+	s = os.read(fd.fileno(), 160).rstrip()
+	if not s:
+		ss.Cancel()
+	elif state == "user-response":
+		print ss.Respond(s, timeout = 100)
+	elif state == "idle":
+		print ss.Initiate(s, timeout = 100)
+	else:
+		print "Invalid state", state
+	return True
+
+if __name__ == "__main__":
+	if (len(sys.argv) < 2):
+		print "Usage: %s [modem] <ussd-string>" % (sys.argv[0])
+		sys.exit(1)
+
+	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()
+	modem = modems[0][0]
+
+	if (len(sys.argv) == 2):
+		ussd = sys.argv[1]
+	else:
+		modem = sys.argv[1]
+		ussd = sys.argv[2]
+
+	ss = dbus.Interface(bus.get_object('org.ofono', modem),
+					'org.ofono.SupplementaryServices')
+
+	props = ss.GetProperties()
+	for p in props:
+		ussd_property_changed(p, props[p])
+
+	ss.connect_to_signal("NotificationReceived", ussd_notification_received)
+	ss.connect_to_signal("RequestReceived", ussd_request_received)
+	ss.connect_to_signal("PropertyChanged", ussd_property_changed)
+
+	print ss.Initiate(ussd, timeout=100)
+
+	gobject.io_add_watch(sys.stdin, gobject.IO_IN, stdin_handler)
+
+	mainloop = gobject.MainLoop()
+	mainloop.run()
diff --git a/test/test-ussd b/test/test-ussd
deleted file mode 100755
index c21f5e3..0000000
--- a/test/test-ussd
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import gobject
-import os
-
-import dbus
-import dbus.mainloop.glib
-
-state = None
-
-def ussd_notification_received(content):
-	print("Network sent a Notification: " + content)
-
-def ussd_request_received(content):
-	print("Network sent a Request: " + content)
-	ss.Cancel()
-
-def ussd_property_changed(name, value):
-	global state
-	if name != "State":
-		return
-	print("USSD session state is " + value)
-	state = str(value)
-
-def stdin_handler(fd, condition):
-	s = os.read(fd.fileno(), 160).rstrip()
-	if not s:
-		ss.Cancel()
-	elif state == "user-response":
-		print ss.Respond(s, timeout = 100)
-	elif state == "idle":
-		print ss.Initiate(s, timeout = 100)
-	else:
-		print "Invalid state", state
-	return True
-
-if __name__ == "__main__":
-	if (len(sys.argv) < 2):
-		print "Usage: %s [modem] <ussd-string>" % (sys.argv[0])
-		sys.exit(1)
-
-	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()
-	modem = modems[0][0]
-
-	if (len(sys.argv) == 2):
-		ussd = sys.argv[1]
-	else:
-		modem = sys.argv[1]
-		ussd = sys.argv[2]
-
-	ss = dbus.Interface(bus.get_object('org.ofono', modem),
-					'org.ofono.SupplementaryServices')
-
-	props = ss.GetProperties()
-	for p in props:
-		ussd_property_changed(p, props[p])
-
-	ss.connect_to_signal("NotificationReceived", ussd_notification_received)
-	ss.connect_to_signal("RequestReceived", ussd_request_received)
-	ss.connect_to_signal("PropertyChanged", ussd_property_changed)
-
-	print ss.Initiate(ussd, timeout=100)
-
-	gobject.io_add_watch(sys.stdin, gobject.IO_IN, stdin_handler)
-
-	mainloop = gobject.MainLoop()
-	mainloop.run()
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] test-ussd: new script more generic
  2012-07-02 15:45 [PATCH 1/2] test-ussd becomes send-ussd Philippe Nunes
@ 2012-07-02 15:45 ` Philippe Nunes
  2012-07-09 16:26 ` [PATCH 1/2] test-ussd becomes send-ussd Denis Kenzior
  1 sibling, 0 replies; 5+ messages in thread
From: Philippe Nunes @ 2012-07-02 15:45 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 2775 bytes --]

This script can be used to handle network initiated USSD without
preliminary USSD request.
---
 test/test-ussd |   97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 97 insertions(+)
 create mode 100755 test/test-ussd

diff --git a/test/test-ussd b/test/test-ussd
new file mode 100755
index 0000000..f1d8215
--- /dev/null
+++ b/test/test-ussd
@@ -0,0 +1,97 @@
+#!/usr/bin/python
+
+import sys
+import gobject
+import os
+
+import dbus
+import dbus.mainloop.glib
+
+state = None
+
+def clear_screen(numlines=100):
+	import os
+	if os.name == "posix":
+		os.system('clear')
+
+	elif os.name in ("nt", "dos", "ce"):
+		os.system('CLS')
+
+	else:
+		print '\n' * numlines
+
+def print_menu():
+	if state == "user-response":
+		print "\n\nEnter response (c for cancel - x for exit):"
+	elif state == "idle":
+		print "\n\nEnter USSD request (x for exit):"
+
+def ussd_notification_received(content):
+	clear_screen()
+	print("Network sent a Notification: " + content)
+	print_menu()
+
+def ussd_request_received(content):
+	clear_screen()
+	print("Network sent a Request: " + content)
+
+def ussd_property_changed(name, value):
+	global state
+	if name != "State":
+		return
+	print("USSD session state is " + value)
+	state = str(value)
+
+	print_menu()
+
+def stdin_handler(fd, condition):
+	s = os.read(fd.fileno(), 182).rstrip()
+
+	if s == 'c':
+		if state == "user-response" or state == 'active':
+			ss.Cancel()
+	elif s == 'x':
+		sys.exit()
+	elif state == "user-response":
+		print ss.Respond(s, timeout = 100)
+	elif state == "idle":
+		print ss.Initiate(s, timeout = 100)
+	else:
+		print "Invalid state", state
+	return True
+
+if __name__ == "__main__":
+	if (len(sys.argv) >2 or (len(sys.argv) == 2 and
+			sys.argv[1] in ("-h", "--help"))):
+		print "Usage: %s [-h] [modem]" % (sys.argv[0])
+		sys.exit(1)
+
+	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()
+
+	if (len(sys.argv) == 2):
+		modem = sys.argv[1]
+	else:
+		modem = modems[0][0]
+
+	ss = dbus.Interface(bus.get_object('org.ofono', modem),
+					'org.ofono.SupplementaryServices')
+
+	props = ss.GetProperties()
+	for p in props:
+		ussd_property_changed(p, props[p])
+
+	ss.connect_to_signal("NotificationReceived", ussd_notification_received)
+	ss.connect_to_signal("RequestReceived", ussd_request_received)
+	ss.connect_to_signal("PropertyChanged", ussd_property_changed)
+
+	gobject.io_add_watch(sys.stdin, gobject.IO_IN, stdin_handler)
+
+	mainloop = gobject.MainLoop()
+	mainloop.run()
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] test-ussd becomes send-ussd
  2012-07-02 15:45 [PATCH 1/2] test-ussd becomes send-ussd Philippe Nunes
  2012-07-02 15:45 ` [PATCH 2/2] test-ussd: new script more generic Philippe Nunes
@ 2012-07-09 16:26 ` Denis Kenzior
  2012-07-09 16:39   ` Marcel Holtmann
  1 sibling, 1 reply; 5+ messages in thread
From: Denis Kenzior @ 2012-07-09 16:26 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 790 bytes --]

Hi Philippe,

On 07/02/2012 10:45 AM, Philippe Nunes wrote:
> ---
>   test/send-ussd |   75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>   test/test-ussd |   75 --------------------------------------------------------
>   2 files changed, 75 insertions(+), 75 deletions(-)
>   create mode 100755 test/send-ussd
>   delete mode 100755 test/test-ussd
>

Why don't we just get rid of test-ussd and create a new send-ussd script 
that doesn't do any stdin handling.  Something along the lines of:

ss.GetProperties()

if state == 'idle'
	rsp = ss.Initiate()
elif state == 'user-response'
	rsp = ss.Respond()

print response

And perhaps another ussd related script that just cancels the request. 
Would this satisfy your requirements?

Regards,
-Denis

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] test-ussd becomes send-ussd
  2012-07-09 16:26 ` [PATCH 1/2] test-ussd becomes send-ussd Denis Kenzior
@ 2012-07-09 16:39   ` Marcel Holtmann
  2012-07-09 16:52     ` Denis Kenzior
  0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2012-07-09 16:39 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 867 bytes --]

Hi Denis,

> > ---
> >   test/send-ussd |   75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >   test/test-ussd |   75 --------------------------------------------------------
> >   2 files changed, 75 insertions(+), 75 deletions(-)
> >   create mode 100755 test/send-ussd
> >   delete mode 100755 test/test-ussd
> >
> 
> Why don't we just get rid of test-ussd and create a new send-ussd script 
> that doesn't do any stdin handling.  Something along the lines of:
> 
> ss.GetProperties()
> 
> if state == 'idle'
> 	rsp = ss.Initiate()
> elif state == 'user-response'
> 	rsp = ss.Respond()
> 
> print response
> 
> And perhaps another ussd related script that just cancels the request. 
> Would this satisfy your requirements?

are the existing test/initiate-ussd and test/cancel-ussd not good
enough?

Regards

Marcel



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] test-ussd becomes send-ussd
  2012-07-09 16:39   ` Marcel Holtmann
@ 2012-07-09 16:52     ` Denis Kenzior
  0 siblings, 0 replies; 5+ messages in thread
From: Denis Kenzior @ 2012-07-09 16:52 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1132 bytes --]

Hi Marcel,

On 07/09/2012 11:39 AM, Marcel Holtmann wrote:
> Hi Denis,
>
>>> ---
>>>    test/send-ussd |   75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>    test/test-ussd |   75 --------------------------------------------------------
>>>    2 files changed, 75 insertions(+), 75 deletions(-)
>>>    create mode 100755 test/send-ussd
>>>    delete mode 100755 test/test-ussd
>>>
>>
>> Why don't we just get rid of test-ussd and create a new send-ussd script
>> that doesn't do any stdin handling.  Something along the lines of:
>>
>> ss.GetProperties()
>>
>> if state == 'idle'
>> 	rsp = ss.Initiate()
>> elif state == 'user-response'
>> 	rsp = ss.Respond()
>>
>> print response
>>
>> And perhaps another ussd related script that just cancels the request.
>> Would this satisfy your requirements?
>
> are the existing test/initiate-ussd and test/cancel-ussd not good
> enough?
>

initiate-ussd is close but not quite, it doesn't handle network 
initiated USSDs.

Anyway, the point here is that we need to get rid of test-ussd, it 
really serves no purpose.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-07-09 16:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-02 15:45 [PATCH 1/2] test-ussd becomes send-ussd Philippe Nunes
2012-07-02 15:45 ` [PATCH 2/2] test-ussd: new script more generic Philippe Nunes
2012-07-09 16:26 ` [PATCH 1/2] test-ussd becomes send-ussd Denis Kenzior
2012-07-09 16:39   ` Marcel Holtmann
2012-07-09 16:52     ` Denis Kenzior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox