---
 src/stk.c |  140 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 140 insertions(+), 0 deletions(-)

diff --git a/src/stk.c b/src/stk.c
index 34fe931..8b6c1ca 100644
--- a/src/stk.c
+++ b/src/stk.c
@@ -95,6 +95,7 @@ struct ofono_stk {
        struct stk_menu *main_menu, *select_item_menu;
        struct sms_submit_req *sms_submit_req;
        char *idle_mode_text;
+       gboolean session_ended;
 };
 
 struct envelope_op {
@@ -1206,6 +1207,120 @@ static gboolean handle_command_set_up_menu(const struct 
stk_command *cmd,
        return TRUE;
 }
 
+static void request_text_send(struct ofono_stk *stk, DBusMessage *call)
+{
+       struct stk_command_display_text *dt = &stk->pending_cmd->display_text;
+       uint8_t qualifier = stk->pending_cmd->qualifier;
+       dbus_bool_t confirm = (qualifier & (1 << 7)) != 0;
+       dbus_bool_t priority = (qualifier & (1 << 0)) != 0;
+       dbus_bool_t navigation = !dt->immediate_response;
+
+       dbus_message_set_member(call, "DisplayText");
+
+       dbus_message_append_args(call,
+                                       DBUS_TYPE_STRING, &dt->text,
+                                       DBUS_TYPE_BOOLEAN, &confirm,
+                                       DBUS_TYPE_BOOLEAN, &priority,
+                                       DBUS_TYPE_BOOLEAN, &navigation,
+                                       DBUS_TYPE_INVALID);
+}
+
+static void request_text_cb(struct ofono_stk *stk, enum stk_agent_result 
result,
+                               DBusMessage *reply)
+{
+       gboolean confirm;
+       enum stk_result_type type = STK_RESULT_TYPE_SUCCESS;
+       struct stk_response rsp;
+       struct ofono_error error = { .type = OFONO_ERROR_TYPE_FAILURE };
+
+       /*
+        * Check if we have already responded to the proactive command
+        * because immediate response was requested.
+        */
+       if (!stk->pending_cmd || stk->pending_cmd->type !=
+                       STK_COMMAND_TYPE_DISPLAY_TEXT ||
+                       stk->pending_cmd->display_text.immediate_response) {
+               /*
+                * If session has ended in the meantime now is the time
+                * to go back to main menu or close the application
+                * window.
+                */
+               if (stk->session_ended)
+                       go_to_main_menu(stk);
+
+               return;
+       }
+
+       switch (result) {
+       case STK_AGENT_RESULT_OK:
+               break;
+
+       case STK_AGENT_RESULT_BACK:
+               type = STK_RESULT_TYPE_GO_BACK;
+               goto send;
+
+       case STK_AGENT_RESULT_TIMEOUT:
+               confirm = (stk->pending_cmd->qualifier & (1 << 7)) != 0;
+               if (confirm)
+                       type = STK_RESULT_TYPE_NO_RESPONSE;
+
+               goto send;
+
+       case STK_AGENT_RESULT_TERMINATE:
+       default:
+               type = STK_RESULT_TYPE_USER_TERMINATED;
+               goto send;
+
+       case STK_AGENT_RESULT_CANCEL:
+               return;
+       }
+
+       if (dbus_message_get_args(reply, NULL, DBUS_TYPE_INVALID) == FALSE) {
+               type = STK_RESULT_TYPE_USER_TERMINATED;
+
+               ofono_error("Reply not understood");
+       }
+
+send:
+       memset(&rsp, 0, sizeof(rsp));
+       rsp.result.type = type;
+
+       if (stk_respond(stk, &rsp, stk_command_cb))
+               stk_command_cb(&error, stk);
+}
+
+static gboolean handle_command_display_text(const struct stk_command *cmd,
+                                               struct stk_response *rsp,
+                                               struct ofono_stk *stk)
+{
+       int timeout = 0;
+
+       if (cmd->display_text.duration.interval) {
+               timeout = cmd->display_text.duration.interval;
+               switch (cmd->display_text.duration.unit) {
+               case STK_DURATION_TYPE_MINUTES:
+                       timeout *= 60;
+               case STK_DURATION_TYPE_SECONDS:
+                       timeout *= 10;
+               case STK_DURATION_TYPE_SECOND_TENTHS:
+                       timeout *= 100;
+               }
+       }
+
+       app_agent_request_start(stk,
+                               request_text_send, request_text_cb, timeout);
+
+       if (cmd->display_text.immediate_response) {
+               stk->session_ended = FALSE;
+
+               return TRUE;
+       }
+
+       stk->cancel_cmd = app_agent_request_cancel;
+
+       return cmd->display_text.immediate_response;
+}
+
 static void stk_proactive_command_cancel(struct ofono_stk *stk)
 {
        if (!stk->pending_cmd)
@@ -1230,6 +1345,27 @@ void ofono_stk_proactive_session_end_notify(struct 
ofono_stk *stk)
         * (aka. close the UI) or show menu.
         */
        go_to_main_menu(stk);
+
+       /*
+        * The only exception is when a DisplayText command has been
+        * issued with the Immediate Response flag set (TS 102.223
+        * Section 6.9):
+        * "If the text is to be sustained, the terminal shall display
+        * the text of applicable DISPLAY TEXT commands beyond the sending
+        * of the TERMINAL RESPONSE and possibly beyond the end of the
+        * proactive session.
+        *
+        * If a variable display timeout was indicated for a DISPLAY TEXT
+        * command, then the session releases the display back into terminal
+        * control no later then the period stated by the duration. If the
+        * text is to be sustained beyond an immediate response, the
+        * terminal shall display the text for a period that does not
+        * exceed the duration."
+        *
+        * For this case we set a flag and when the text stops being
+        * displayed we will make sure to go to main menu then.
+        */
+       stk->session_ended = TRUE;
 }
 
 void ofono_stk_proactive_command_notify(struct ofono_stk *stk,
@@ -1298,6 +1434,10 @@ void ofono_stk_proactive_command_notify(struct ofono_stk 
*stk,
                        respond = handle_command_set_up_menu(stk->pending_cmd,
                                                                &rsp, stk);
                        break;
+               case STK_COMMAND_TYPE_DISPLAY_TEXT:
+                       respond = handle_command_display_text(stk->pending_cmd,
+                                                               &rsp, stk);
+                       break;
                }
 
                if (respond)
-- 
1.7.1.86.g0e460.dirty

_______________________________________________
ofono mailing list
[email protected]
http://lists.ofono.org/listinfo/ofono

Reply via email to