Hi Jeevaka,

On 09/13/2010 06:00 PM, Jeevaka Badrappan wrote:
> ---
>  src/ofono.h |    7 +++++
>  src/ussd.c  |   86 
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
>  2 files changed, 92 insertions(+), 1 deletions(-)
> 
> diff --git a/src/ofono.h b/src/ofono.h
> index f1c0973..8ab6a2e 100644
> --- a/src/ofono.h
> +++ b/src/ofono.h
> @@ -258,6 +258,9 @@ typedef gboolean (*ofono_ussd_passwd_cb_t)(const char *sc,
>                                       const char *old, const char *new,
>                                       DBusMessage *msg, void *data);
>  
> +typedef void (*ofono_ussd_request_cb_t)(int error, int dcs,
> +                                     const unsigned char *pdu, int len, void 
> *data);
> +
>  gboolean __ofono_ussd_ssc_register(struct ofono_ussd *ussd, const char *sc,
>                                       ofono_ussd_ssc_cb_t cb, void *data,
>                                       ofono_destroy_func destroy);
> @@ -269,6 +272,10 @@ gboolean __ofono_ussd_passwd_register(struct ofono_ussd 
> *ussd, const char *sc,
>  void __ofono_ussd_passwd_unregister(struct ofono_ussd *ussd, const char *sc);
>  gboolean __ofono_ussd_is_busy(struct ofono_ussd *ussd);
>  
> +int __ofono_ussd_initiate(struct ofono_ussd *ussd, int dcs,
> +                     const unsigned char *pdu, int len,
> +                     ofono_ussd_request_cb_t cb, void *user_data);
> +

Do we need a cancel here as well?  In case the SIM cancels the session.

>  #include <ofono/netreg.h>
>  
>  typedef void (*ofono_netreg_status_notify_cb_t)(int status, int lac, int ci,
> diff --git a/src/ussd.c b/src/ussd.c
> index 8d9c98d..af0aae1 100644
> --- a/src/ussd.c
> +++ b/src/ussd.c
> @@ -49,6 +49,15 @@ enum ussd_state {
>       USSD_STATE_RESPONSE_SENT,
>  };
>  
> +struct ussd_request {
> +     struct ofono_ussd *ussd;
> +     int dcs;
> +     unsigned char *pdu;
> +     int len;
> +     ofono_ussd_request_cb_t cb;
> +     void *user_data;
> +};
> +
>  struct ofono_ussd {
>       int state;
>       DBusMessage *pending;
> @@ -59,6 +68,7 @@ struct ofono_ussd {
>       const struct ofono_ussd_driver *driver;
>       void *driver_data;
>       struct ofono_atom *atom;
> +     struct ussd_request *req;
>  };
>  
>  struct ssc_entry {
> @@ -73,7 +83,7 @@ gboolean __ofono_ussd_is_busy(struct ofono_ussd *ussd)
>       if (!ussd)
>               return FALSE;
>  
> -     if (ussd->pending || ussd->state != USSD_STATE_IDLE)
> +     if (ussd->pending || ussd->state != USSD_STATE_IDLE || ussd->req)
>               return TRUE;

You might also want to make sure that initiate / respond / cancel cannot
interfere with the SIM request.

>  
>       return FALSE;
> @@ -320,6 +330,31 @@ static void ussd_change_state(struct ofono_ussd *ussd, 
> int state)
>                       "State", DBUS_TYPE_STRING, &value);
>  }
>  
> +static void ussd_request_finish(struct ofono_ussd *ussd, int error, int dcs,
> +                             const unsigned char *pdu, int len)
> +{
> +     struct ussd_request *req = ussd->req;
> +
> +     if (req && req->cb) {
> +             req->cb(error, dcs, pdu, len, req->user_data);

> +             g_free(req->pdu);
> +             g_free(req);
> +             ussd->req = NULL;

What if req->cb is NULL?

> +     }
> +}
> +
> +static int ussd_status_to_failure_code(int status)
> +{
> +     switch (status) {
> +     case OFONO_USSD_STATUS_TIMED_OUT:
> +             return -ETIMEDOUT;
> +     case OFONO_USSD_STATUS_NOT_SUPPORTED:
> +             return -ENOSYS;
> +     }
> +
> +     return 0;
> +}
> +
>  void ofono_ussd_notify(struct ofono_ussd *ussd, int status, int dcs,
>                       const unsigned char *data, int data_len)
>  {
> @@ -332,6 +367,19 @@ void ofono_ussd_notify(struct ofono_ussd *ussd, int 
> status, int dcs,
>       DBusMessageIter iter;
>       DBusMessageIter variant;
>  
> +     if (ussd->req &&
> +             (status == OFONO_USSD_STATUS_NOTIFY ||
> +             status == OFONO_USSD_STATUS_TERMINATED ||
> +             status == OFONO_USSD_STATUS_TIMED_OUT ||
> +             status == OFONO_USSD_STATUS_NOT_SUPPORTED)) {
> +

Please check coding style section M4

So what happens if the network sends a ACTION_REQUIRED as a response to
the STK ussd?

> +             ussd_request_finish(ussd, ussd_status_to_failure_code(status),
> +                                     dcs, data, data_len);
> +
> +             ussd_change_state(ussd, USSD_STATE_IDLE);
> +             return;
> +     }
> +
>       if (status == OFONO_USSD_STATUS_NOT_SUPPORTED) {
>               ussd_change_state(ussd, USSD_STATE_IDLE);
>  
> @@ -577,6 +625,9 @@ static void ussd_cancel_callback(const struct ofono_error 
> *error, void *data)
>       reply = dbus_message_new_method_return(ussd->cancel);
>       __ofono_dbus_pending_reply(&ussd->cancel, reply);
>  
> +     if (ussd->req)
> +             ussd_request_finish(ussd, -1, -ECANCELED, NULL, -1);
> +
>       ussd_change_state(ussd, USSD_STATE_IDLE);
>  }
>  
> @@ -775,3 +826,36 @@ void *ofono_ussd_get_data(struct ofono_ussd *ussd)
>  {
>       return ussd->driver_data;
>  }
> +
> +static void ussd_request_callback(const struct ofono_error *error, void 
> *data)
> +{
> +     struct ofono_ussd *ussd = data;
> +
> +     if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
> +             ussd_request_finish(ussd, error->error, -1, NULL, -1);
> +     else
> +             ussd_change_state(ussd,USSD_STATE_ACTIVE);

Missing space after the comma

> +}
> +
> +int __ofono_ussd_initiate(struct ofono_ussd *ussd, int dcs,
> +                             const unsigned char *pdu, int len,
> +                             ofono_ussd_request_cb_t cb, void *user_data)
> +{
> +     struct ussd_request *req;
> +

You might want to check the busy condition here as well, just to be
pedantic.  This is what voicecall_dial does...

> +     if (!ussd->driver->request)
> +             return -ENOSYS;
> +
> +     req = g_try_new0(struct ussd_request, 1);
> +     req->dcs = dcs;
> +     req->pdu = g_memdup(pdu, len);
> +     req->len = len;
> +     req->cb = cb;
> +     req->user_data = user_data;
> +
> +     ussd->req = req;
> +
> +     ussd->driver->request(ussd, dcs, pdu, len, ussd_request_callback, ussd);
> +
> +     return 0;
> +}

Regards,
-Denis
_______________________________________________
ofono mailing list
ofono@ofono.org
http://lists.ofono.org/listinfo/ofono

Reply via email to