summaryrefslogtreecommitdiffstats
path: root/src/stkagent.c
diff options
context:
space:
mode:
authorPhilippe Nunes <philippe.nunes@linux.intel.com>2011-04-08 18:33:26 +0200
committerDenis Kenzior <denkenz@gmail.com>2011-04-11 23:16:56 -0500
commitbcd8608f95e558cc98429aa87a21ab25a7cf2060 (patch)
tree2d6fbbbf57401b024fe1437109178ef1a247eeae /src/stkagent.c
parente9f12d76208a86ffb19469916a9e24966a98d744 (diff)
downloadofono-bcd8608f95e558cc98429aa87a21ab25a7cf2060.tar.bz2
stkagent: Add ConfirmOpenChannel method
Diffstat (limited to 'src/stkagent.c')
-rw-r--r--src/stkagent.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/stkagent.c b/src/stkagent.c
index 220812e9..1a4bdd84 100644
--- a/src/stkagent.c
+++ b/src/stkagent.c
@@ -1145,3 +1145,70 @@ int stk_agent_display_action(struct stk_agent *agent,
return 0;
}
+
+static void confirm_open_channel_cb(DBusPendingCall *call, void *data)
+{
+ struct stk_agent *agent = data;
+ stk_agent_confirmation_cb cb = agent->user_cb;
+ DBusMessage *reply = dbus_pending_call_steal_reply(call);
+ enum stk_agent_result result;
+ gboolean remove_agent;
+ dbus_bool_t confirm;
+
+ if (check_error(agent, reply,
+ ALLOWED_ERROR_TERMINATE, &result) == -EINVAL) {
+ remove_agent = TRUE;
+ goto error;
+ }
+
+ if (result != STK_AGENT_RESULT_OK) {
+ cb(result, FALSE, agent->user_data);
+ goto done;
+ }
+
+ if (dbus_message_get_args(reply, NULL,
+ DBUS_TYPE_BOOLEAN, &confirm,
+ DBUS_TYPE_INVALID) == FALSE) {
+ ofono_error("Can't parse the reply to ConfirmOpenChannel()");
+ remove_agent = TRUE;
+ goto error;
+ }
+
+ cb(result, confirm, agent->user_data);
+
+ CALLBACK_END();
+}
+
+int stk_agent_confirm_open_channel(struct stk_agent *agent, const char *text,
+ const struct stk_icon_id *icon,
+ stk_agent_confirmation_cb cb,
+ void *user_data,
+ ofono_destroy_func destroy, int timeout)
+{
+ DBusConnection *conn = ofono_dbus_get_connection();
+
+ agent->msg = dbus_message_new_method_call(agent->bus, agent->path,
+ OFONO_SIM_APP_INTERFACE,
+ "ConfirmOpenChannel");
+ if (agent->msg == NULL)
+ return -ENOMEM;
+
+ dbus_message_append_args(agent->msg,
+ DBUS_TYPE_STRING, &text,
+ DBUS_TYPE_BYTE, &icon->id,
+ DBUS_TYPE_INVALID);
+
+ if (dbus_connection_send_with_reply(conn, agent->msg, &agent->call,
+ timeout) == FALSE ||
+ agent->call == NULL)
+ return -EIO;
+
+ agent->user_cb = cb;
+ agent->user_data = user_data;
+ agent->user_destroy = destroy;
+
+ dbus_pending_call_set_notify(agent->call, confirm_open_channel_cb,
+ agent, NULL);
+
+ return 0;
+}