Updates after review:
Use at_util_call_compare.

So far, we have only done the trivial changes to voice call driver.
We agree on moving more of the state logic to core,
but this is complex and we need more time to discuss and look into this,
particularly regarding call release.
---
 drivers/stemodem/voicecall.c |  648 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 648 insertions(+), 0 deletions(-)
 create mode 100644 drivers/stemodem/voicecall.c

diff --git a/drivers/stemodem/voicecall.c b/drivers/stemodem/voicecall.c
new file mode 100644
index 0000000..36b9c5c
--- /dev/null
+++ b/drivers/stemodem/voicecall.c
@@ -0,0 +1,648 @@
+/*
+ *
+ *  oFono - Open Source Telephony
+ *
+ *  Copyright (C) 2008-2009  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2010 ST-Ericsson AB.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2 as
+ *  published by the Free Software Foundation.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#define _GNU_SOURCE
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <glib.h>
+
+#include <ofono/log.h>
+#include <ofono/modem.h>
+#include <ofono/voicecall.h>
+
+#include "gatchat.h"
+#include "gatresult.h"
+#include "common.h"
+
+#include "stemodem.h"
+
+enum call_status_ste {
+       STE_CALL_STATUS_IDLE = 0,
+       STE_CALL_STATUS_CALLING = 1,
+       STE_CALL_STATUS_CONNECTING = 2,
+       STE_CALL_STATUS_ACTIVE = 3,
+       STE_CALL_STATUS_HOLD = 4,
+       STE_CALL_STATUS_WAITING = 5,
+       STE_CALL_STATUS_ALERTING = 6,
+       STE_CALL_STATUS_BUSY = 7
+};
+
+static const char *none_prefix[] = { NULL };
+
+struct voicecall_data {
+       GSList *calls;
+       unsigned int local_release;
+       GAtChat *chat;
+};
+
+struct release_id_req {
+       struct ofono_voicecall *vc;
+       ofono_voicecall_cb_t cb;
+       void *data;
+       int id;
+};
+
+struct change_state_req {
+       struct ofono_voicecall *vc;
+       ofono_voicecall_cb_t cb;
+       void *data;
+       int affected_types;
+};
+
+/* Translate from the ECAV-based STE-status to CLCC based status */
+static int call_status_ste_to_ofono(int status)
+{
+       switch (status) {
+       case STE_CALL_STATUS_IDLE:
+               return CALL_STATUS_DISCONNECTED;
+       case STE_CALL_STATUS_CALLING:
+               return CALL_STATUS_DIALING;
+       case STE_CALL_STATUS_CONNECTING:
+               return CALL_STATUS_ALERTING;
+       case STE_CALL_STATUS_ACTIVE:
+               return CALL_STATUS_ACTIVE;
+       case STE_CALL_STATUS_HOLD:
+               return CALL_STATUS_HELD;
+       case STE_CALL_STATUS_WAITING:
+               return CALL_STATUS_WAITING;
+       case STE_CALL_STATUS_ALERTING:
+               return CALL_STATUS_INCOMING;
+       case STE_CALL_STATUS_BUSY:
+               return CALL_STATUS_DISCONNECTED;
+       default:
+               return CALL_STATUS_DISCONNECTED;
+       }
+}
+
+static struct ofono_call *create_call(struct ofono_voicecall *vc, int type,
+                                       int direction, int status,
+                                       const char *num, int num_type, int clip)
+{
+       struct voicecall_data *d = ofono_voicecall_get_data(vc);
+       struct ofono_call *call;
+
+       /* Generate a call structure for the waiting call */
+       call = g_try_new0(struct ofono_call, 1);
+       if (!call)
+               return NULL;
+
+       call->type = type;
+       call->direction = direction;
+       call->status = status;
+
+       if (clip != 2) {
+               strncpy(call->phone_number.number, num,
+                       OFONO_MAX_PHONE_NUMBER_LENGTH);
+               call->phone_number.type = num_type;
+       }
+
+       call->clip_validity = clip;
+
+       d->calls = g_slist_insert_sorted(d->calls, call, at_util_call_compare);
+
+       return call;
+}
+
+static void ste_generic_cb(gboolean ok, GAtResult *result, gpointer user_data)
+{
+       struct change_state_req *req = user_data;
+       struct voicecall_data *vd = ofono_voicecall_get_data(req->vc);
+       struct ofono_error error;
+
+       dump_response("ste_generic_cb", ok, result);
+       decode_at_error(&error, g_at_result_final_response(result));
+
+       if (ok && req->affected_types) {
+               GSList *l;
+               struct ofono_call *call;
+
+               for (l = vd->calls; l; l = l->next) {
+                       call = l->data;
+
+                       if (req->affected_types & (0x1 << call->status))
+                               vd->local_release |= (0x1 << call->id);
+               }
+       }
+
+       /* We have to callback after we schedule a poll if required */
+       req->cb(&error, req->data);
+}
+
+static void release_id_cb(gboolean ok, GAtResult *result,
+                               gpointer user_data)
+{
+       struct release_id_req *req = user_data;
+       struct voicecall_data *vd = ofono_voicecall_get_data(req->vc);
+       struct ofono_error error;
+
+       dump_response("release_id_cb", ok, result);
+       decode_at_error(&error, g_at_result_final_response(result));
+
+       if (ok)
+               vd->local_release = 0x1 << req->id;
+
+       /* We have to callback after we schedule a poll if required */
+       req->cb(&error, req->data);
+}
+
+static void atd_cb(gboolean ok, GAtResult *result, gpointer user_data)
+{
+       struct cb_data *cbd = user_data;
+       struct ofono_error error;
+       ofono_voicecall_cb_t cb = cbd->cb;
+
+       dump_response("atd_cb", ok, result);
+
+       decode_at_error(&error, g_at_result_final_response(result));
+
+       if (!ok)
+               goto out;
+
+out:
+       cb(&error, cbd->data);
+}
+
+static void ste_dial(struct ofono_voicecall *vc,
+                       const struct ofono_phone_number *ph,
+                       enum ofono_clir_option clir, enum ofono_cug_option cug,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+       struct cb_data *cbd = cb_data_new(cb, data);
+       char buf[256];
+
+       if (!cbd)
+               goto error;
+
+       cbd->user = vc;
+
+       if (ph->type == 145)
+               sprintf(buf, "ATD+%s", ph->number);
+       else
+               sprintf(buf, "ATD%s", ph->number);
+
+       switch (clir) {
+       case OFONO_CLIR_OPTION_INVOCATION:
+               strcat(buf, "I");
+               break;
+       case OFONO_CLIR_OPTION_SUPPRESSION:
+               strcat(buf, "i");
+               break;
+       default:
+               break;
+       }
+
+       switch (cug) {
+       case OFONO_CUG_OPTION_INVOCATION:
+               strcat(buf, "G");
+               break;
+       default:
+               break;
+       }
+
+       strcat(buf, ";");
+
+       if (g_at_chat_send(vd->chat, buf, none_prefix,
+                               atd_cb, cbd, g_free) > 0)
+               return;
+
+error:
+       if (cbd)
+               g_free(cbd);
+
+       CALLBACK_WITH_FAILURE(cb, data);
+}
+
+static void ste_template(const char *cmd, struct ofono_voicecall *vc,
+                       GAtResultFunc result_cb, unsigned int affected_types,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+       struct change_state_req *req = g_try_new0(struct change_state_req, 1);
+
+       if (!req)
+               goto error;
+
+       req->vc = vc;
+       req->cb = cb;
+       req->data = data;
+       req->affected_types = affected_types;
+
+       if (g_at_chat_send(vd->chat, cmd, none_prefix,
+                               result_cb, req, g_free) > 0)
+               return;
+
+error:
+       if (req)
+               g_free(req);
+
+       CALLBACK_WITH_FAILURE(cb, data);
+}
+
+static void ste_answer(struct ofono_voicecall *vc,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       ste_template("ATA", vc, ste_generic_cb, 0, cb, data);
+}
+
+static void ste_hangup(struct ofono_voicecall *vc,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       /* Hangup all calls */
+       ste_template("AT+CHUP", vc, ste_generic_cb, 0x3f, cb, data);
+}
+
+static void ste_hold_all_active(struct ofono_voicecall *vc,
+                               ofono_voicecall_cb_t cb, void *data)
+{
+       ste_template("AT+CHLD=2", vc, ste_generic_cb, 0, cb, data);
+}
+
+static void ste_release_all_held(struct ofono_voicecall *vc,
+                               ofono_voicecall_cb_t cb, void *data)
+{
+       unsigned int held_status = 0x1 << 1;
+       ste_template("AT+CHLD=0", vc, ste_generic_cb, held_status, cb, data);
+}
+
+static void ste_set_udub(struct ofono_voicecall *vc,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       unsigned int incoming_or_waiting = (0x1 << 4) | (0x1 << 5);
+       ste_template("AT+CHLD=0", vc, ste_generic_cb, incoming_or_waiting,
+                       cb, data);
+}
+
+static void ste_release_all_active(struct ofono_voicecall *vc,
+                                       ofono_voicecall_cb_t cb, void *data)
+{
+       ste_template("AT+CHLD=1", vc, ste_generic_cb, 0x1, cb, data);
+}
+
+static void ste_release_specific(struct ofono_voicecall *vc, int id,
+                               ofono_voicecall_cb_t cb, void *data)
+{
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+       struct release_id_req *req = g_try_new0(struct release_id_req, 1);
+       char buf[32];
+       struct ofono_call *call;
+       GSList *l;
+       int ac = 0;
+
+       if (!req)
+               goto error;
+
+       req->vc = vc;
+       req->cb = cb;
+       req->data = data;
+       req->id = id;
+
+       /* Count active calls. If there is more than one active call
+        * we cannot use ATH, as it will terminate all calls.
+        * The reason for using ATH and not CHLD is that
+        * emergency calls can not be terminated with AT+CHLD.
+        */
+       for (l = vd->calls; l; l = l->next) {
+               call = l->data;
+
+               if (call->status == CALL_STATUS_ACTIVE)
+                       ac++;
+       }
+
+       l = g_slist_find_custom(vd->calls, GUINT_TO_POINTER(id),
+                               at_util_call_compare_by_id);
+       if (l == NULL) {
+               ofono_error("Hangup request for unknow call");
+               goto error;
+       }
+       call = l->data;
+       /* Check the state of the call, as AT+CHLD does not terminate
+        * calls in state Dialing, Alerting and Incoming */
+       if (call->status == CALL_STATUS_DIALING ||
+           call->status == CALL_STATUS_ALERTING ||
+           call->status == CALL_STATUS_INCOMING)
+               sprintf(buf, "ATH");
+
+       /* Waiting call can not be terminated by at+chld=1x,
+        * have to use at+chld = 0, but that will also terminate
+        * other held calls. Bug in STE's AT module.
+        */
+       else if (call->status == CALL_STATUS_WAITING)
+               sprintf(buf, "AT+CHLD=0");
+
+       else {
+               /* A held call can not be released by ATH, need to use CHLD */
+               if (ac > 1 || call->status == CALL_STATUS_HELD)
+                       sprintf(buf, "AT+CHLD=1%d", id);
+               else /* This is the last call, ok to use ATH. */
+                       sprintf(buf, "ATH");
+       }
+
+       if (g_at_chat_send(vd->chat, buf, none_prefix,
+                               release_id_cb, req, g_free) > 0)
+               return;
+
+error:
+       if (req)
+               g_free(req);
+
+       CALLBACK_WITH_FAILURE(cb, data);
+}
+
+static void ste_private_chat(struct ofono_voicecall *vc, int id,
+                               ofono_voicecall_cb_t cb, void *data)
+{
+       char buf[32];
+
+       sprintf(buf, "AT+CHLD=2%d", id);
+       ste_template(buf, vc, ste_generic_cb, 0, cb, data);
+}
+
+static void ste_create_multiparty(struct ofono_voicecall *vc,
+                                       ofono_voicecall_cb_t cb, void *data)
+{
+       ste_template("AT+CHLD=3", vc, ste_generic_cb, 0, cb, data);
+}
+
+static void ste_transfer(struct ofono_voicecall *vc,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       /* Held & Active */
+       unsigned int transfer = 0x1 | 0x2;
+
+       /* Transfer can puts held & active calls together and disconnects
+        * from both.  However, some networks support transfering of
+        * dialing/ringing calls as well.
+        */
+       transfer |= 0x4 | 0x8;
+
+       ste_template("AT+CHLD=4", vc, ste_generic_cb, transfer, cb, data);
+}
+
+static void ste_deflect(struct ofono_voicecall *vc,
+                       const struct ofono_phone_number *ph,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       char buf[128];
+       unsigned int incoming_or_waiting = (0x1 << 4) | (0x1 << 5);
+
+       sprintf(buf, "AT+CTFR=\"%s\",%d", ph->number, ph->type);
+       ste_template(buf, vc, ste_generic_cb, incoming_or_waiting, cb, data);
+}
+
+static void vts_cb(gboolean ok, GAtResult *result, gpointer user_data)
+{
+       struct cb_data *cbd = user_data;
+       ofono_voicecall_cb_t cb = cbd->cb;
+       struct ofono_error error;
+
+       dump_response("vts_cb", ok, result);
+       decode_at_error(&error, g_at_result_final_response(result));
+       cb(&error, cbd->data);
+}
+
+static void ste_send_dtmf(struct ofono_voicecall *vc, const char *dtmf,
+                       ofono_voicecall_cb_t cb, void *data)
+{
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+       struct cb_data *cbd = cb_data_new(cb, data);
+       int len = strlen(dtmf);
+       int s;
+       int i;
+       char *buf;
+
+       if (!cbd)
+               goto error;
+
+       /* strlen("+VTS=\"T\";") = 9 + initial AT + null */
+       buf = g_try_new(char, len * 9 + 3);
+
+       if (!buf)
+               goto error;
+
+       s = sprintf(buf, "AT+VTS=\"%c\"", dtmf[0]);
+
+       for (i = 1; i < len; i++)
+               s += sprintf(buf + s, ";+VTS=\"%c\"", dtmf[i]);
+
+       s = g_at_chat_send(vd->chat, buf, none_prefix,
+                               vts_cb, cbd, g_free);
+
+       g_free(buf);
+
+       if (s > 0)
+               return;
+
+error:
+       if (cbd)
+               g_free(cbd);
+
+       CALLBACK_WITH_FAILURE(cb, data);
+}
+
+static void ecav_notify(GAtResult *result, gpointer user_data)
+{
+       struct ofono_voicecall *vc = user_data;
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+       GAtResultIter iter;
+       const char *num;
+       int id;
+       int status;
+       int call_type;
+       int num_type;
+       struct ofono_call *new_call;
+       struct ofono_call *existing_call = NULL;
+       GSList *l;
+
+       /* Parse ECAV */
+       dump_response("ecav_notify", TRUE, result);
+
+       g_at_result_iter_init(&iter, result);
+
+       if (!g_at_result_iter_next(&iter, "*ECAV:"))
+               return;
+
+       if (!g_at_result_iter_next_number(&iter, &id))
+               return;
+
+       if (!g_at_result_iter_next_number(&iter, &status))
+               return;
+
+       if (!g_at_result_iter_next_number(&iter, &call_type))
+               return;
+
+       /* Skip process id and exit cause */
+       g_at_result_iter_skip_next(&iter);
+       g_at_result_iter_skip_next(&iter);
+
+       status = call_status_ste_to_ofono(status);
+       if (status == CALL_STATUS_DIALING ||
+           status == CALL_STATUS_WAITING ||
+           status == CALL_STATUS_INCOMING) {
+               if (!g_at_result_iter_next_string(&iter, &num))
+                       return;
+
+               if (!g_at_result_iter_next_number(&iter, &num_type))
+                       return;
+       }
+
+       /* Handle the call according to the status.
+        * If it doesn't exists we make a new one
+        */
+       l = g_slist_find_custom(vd->calls, GUINT_TO_POINTER(id),
+                               at_util_call_compare_by_id);
+       if (l)
+               existing_call = l->data;
+
+       if (l == NULL && status != CALL_STATUS_DIALING &&
+                                        status != CALL_STATUS_WAITING &&
+                                        status != CALL_STATUS_INCOMING) {
+               ofono_error("ECAV notification for unknow call. "
+                                       "id: %d, status: %d", id, status);
+               return;
+       }
+
+       switch (status) {
+       case CALL_STATUS_DISCONNECTED: {
+               enum ofono_disconnect_reason reason;
+               existing_call->status = status;
+
+               if (vd->local_release & (0x1 << existing_call->id))
+                       reason = OFONO_DISCONNECT_REASON_LOCAL_HANGUP;
+               else
+                       reason = OFONO_DISCONNECT_REASON_REMOTE_HANGUP;
+
+               if (call_type == BEARER_CLASS_VOICE)
+                       ofono_voicecall_disconnected(vc,
+                                       existing_call->id, reason, NULL);
+               vd->calls = g_slist_remove(vd->calls, l->data);
+               break;
+       }
+       case CALL_STATUS_DIALING:
+       case CALL_STATUS_WAITING:
+       case CALL_STATUS_INCOMING: {
+               int clip_validity;
+               int direction;
+
+               if (status == CALL_STATUS_DIALING)
+                       direction = CALL_DIRECTION_MOBILE_ORIGINATED;
+               else
+                       direction = CALL_DIRECTION_MOBILE_TERMINATED;
+
+               if ((strlen(num)) > 0)
+                       clip_validity = CLIP_VALIDITY_VALID;
+               else
+                       clip_validity = CLIP_VALIDITY_NOT_AVAILABLE;
+
+               new_call = create_call(vc, call_type, direction,
+                                                       status, num, num_type,
+                                                       clip_validity);
+
+               if (!new_call) {
+                       ofono_error("Unable to malloc."
+                               "Call management is fubar");
+                       return;
+               }
+               new_call->id = id;
+
+               if (call_type == BEARER_CLASS_VOICE)
+                       ofono_voicecall_notify(vc, new_call);
+               break;
+       }
+       case CALL_STATUS_ALERTING:
+       case CALL_STATUS_ACTIVE:
+       case CALL_STATUS_HELD:
+               existing_call->status = status;
+
+               if (call_type == BEARER_CLASS_VOICE)
+                       ofono_voicecall_notify(vc, existing_call);
+               break;
+       default:
+               break;
+       }
+}
+
+static int ste_voicecall_probe(struct ofono_voicecall *vc, unsigned int vendor,
+                               void *data)
+{
+       GAtChat *chat = data;
+       struct voicecall_data *vd;
+
+       vd = g_new0(struct voicecall_data, 1);
+       vd->chat = chat;
+
+       ofono_voicecall_set_data(vc, vd);
+
+       g_at_chat_send(chat, "AT*ECAM=1", NULL, NULL, NULL, NULL);
+       g_at_chat_register(chat, "*ECAV:", ecav_notify, FALSE, vc, NULL);
+       ofono_voicecall_register(vc);
+
+       return 0;
+}
+
+static void ste_voicecall_remove(struct ofono_voicecall *vc)
+{
+       struct voicecall_data *vd = ofono_voicecall_get_data(vc);
+
+       g_slist_foreach(vd->calls, (GFunc) g_free, NULL);
+       g_slist_free(vd->calls);
+
+       ofono_voicecall_set_data(vc, NULL);
+
+       g_free(vd);
+}
+
+static struct ofono_voicecall_driver driver = {
+       .name                   = "stemodem",
+       .probe                  = ste_voicecall_probe,
+       .remove                 = ste_voicecall_remove,
+       .dial                   = ste_dial,
+       .answer                 = ste_answer,
+       .hangup                 = ste_hangup,
+       .hold_all_active        = ste_hold_all_active,
+       .release_all_held       = ste_release_all_held,
+       .set_udub                   = ste_set_udub,
+       .release_all_active     = ste_release_all_active,
+       .release_specific       = ste_release_specific,
+       .private_chat           = ste_private_chat,
+       .create_multiparty      = ste_create_multiparty,
+       .transfer                   = ste_transfer,
+       .deflect                    = ste_deflect,
+       .swap_without_accept = NULL,
+       .send_tones                 = ste_send_dtmf
+};
+
+void ste_voicecall_init()
+{
+       ofono_voicecall_driver_register(&driver);
+}
+
+void ste_voicecall_exit()
+{
+       ofono_voicecall_driver_unregister(&driver);
+}
-- 
1.6.0.4

_______________________________________________
ofono mailing list
ofono@ofono.org
http://lists.ofono.org/listinfo/ofono

Reply via email to