All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcel Holtmann <marcel@holtmann.org>
To: ofono@ofono.org
Subject: Re: [PATCH v2 1/1] atmodem: add ifx support for pin retries query
Date: Tue, 18 Jan 2011 15:22:48 +0100	[thread overview]
Message-ID: <1295360568.3873.176.camel@aeonflux> (raw)
In-Reply-To: <1295354069-11717-2-git-send-email-jeevaka.badrappan@elektrobit.com>

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

Hi Jeevaka,

> Adds ifx support for the remaining pin retries query

since the commit message is essentially the same as the subject line,
you can leave it out. Or better expend the commit message with further
details or example of the command.

> ---
>  drivers/atmodem/sim.c |   84 +++++++++++++++++++++++++++++++++++++++----------
>  1 files changed, 67 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/atmodem/sim.c b/drivers/atmodem/sim.c
> index c5f4a44..2219e88 100644
> --- a/drivers/atmodem/sim.c
> +++ b/drivers/atmodem/sim.c
> @@ -56,6 +56,7 @@ static const char *crsm_prefix[] = { "+CRSM:", NULL };
>  static const char *cpin_prefix[] = { "+CPIN:", NULL };
>  static const char *clck_prefix[] = { "+CLCK:", NULL };
>  static const char *huawei_cpin_prefix[] = { "^CPIN:", NULL };
> +static const char *xpincnt_prefix[] = { "+XPINCNT:", NULL };
>  static const char *none_prefix[] = { NULL };
>  
>  static void at_crsm_info_cb(gboolean ok, GAtResult *result, gpointer user_data)
> @@ -522,40 +523,89 @@ error:
>  	CALLBACK_WITH_FAILURE(cb, NULL, cbd->data);
>  }
>  
> +static void xpincnt_cb(gboolean ok, GAtResult *result, gpointer user_data)
> +{
> +	struct cb_data *cbd = user_data;
> +	ofono_sim_pin_retries_cb_t cb = cbd->cb;
> +	const char *final = g_at_result_final_response(result);
> +	GAtResultIter iter;
> +	struct ofono_error error;
> +	int retries[OFONO_SIM_PASSWORD_INVALID];
> +	size_t i;
> +	static enum ofono_sim_password_type password_types[] = {
> +		OFONO_SIM_PASSWORD_SIM_PIN,
> +		OFONO_SIM_PASSWORD_SIM_PIN2,
> +		OFONO_SIM_PASSWORD_SIM_PUK,
> +		OFONO_SIM_PASSWORD_SIM_PUK2,
> +	};
> +
> +	decode_at_error(&error, final);
> +
> +	if (!ok) {
> +		cb(&error, NULL, cbd->data);
> +		return;
> +	}
> +
> +	g_at_result_iter_init(&iter, result);
> +
> +	if (!g_at_result_iter_next(&iter, "+XPINCNT:"))
> +		goto error;
> +
> +	for (i = 0; i < OFONO_SIM_PASSWORD_INVALID; i++)
> +		retries[i] = -1;
> +
> +	for (i = 0; i < ARRAY_SIZE(password_types); i++) {
> +		int val;
> +
> +		if (!g_at_result_iter_next_number(&iter, &val))
> +			goto error;
> +
> +		retries[password_types[i]]= val;

coding style issue. Must be [i]] = val, but I also realized that the
Huawei code has the same issue. That needs to be fixed as well.

Btw. the code is 100% identical besides the password_types type array.
Maybe it is a good idea to write a helper function for this.

> +		DBG("retry counter id=%d, val=%d", password_types[i],
> +						retries[password_types[i]]);
> +	}
> +
> +	cb(&error, retries, cbd->data);
> +
> +	return;
> +
> +error:
> +	CALLBACK_WITH_FAILURE(cb, NULL, cbd->data);
> +}
> +
>  static void at_pin_retries_query(struct ofono_sim *sim,
>  				ofono_sim_pin_retries_cb_t cb, void *data)
>  {
>  	struct sim_data *sd = ofono_sim_get_data(sim);
> -	struct cb_data *cbd;
> -	int retries[OFONO_SIM_PASSWORD_INVALID];
> -	int i;
> +	struct cb_data *cbd = cb_data_new(cb, data);
>  
>  	DBG("");
>  
> -	switch (sd->vendor) {
> -	case OFONO_VENDOR_HUAWEI:
> -		cbd = cb_data_new(cb, data);
> +	if (cbd == NULL)
> +		goto error;
>  
> -		if (cbd == NULL) {
> -			CALLBACK_WITH_FAILURE(cb, NULL, data);
> +	switch (sd->vendor) {
> +	case OFONO_VENDOR_IFX:
> +		if (g_at_chat_send(sd->chat, "AT+XPINCNT", xpincnt_prefix,
> +					xpincnt_cb, cbd, g_free) > 0)
>  			return;
> -		}
>  
> +		break;
> +	case OFONO_VENDOR_HUAWEI:
>  		if (g_at_chat_send(sd->chat, "AT^CPIN?", huawei_cpin_prefix,
>  					huawei_cpin_cb, cbd, g_free) > 0)
>  			return;
>  
> -		g_free(cbd);
> -
> -		CALLBACK_WITH_FAILURE(cb, NULL, data);
>  		break;
> -
>  	default:
> -		for(i = 0; i < OFONO_SIM_PASSWORD_INVALID; i++)
> -			retries[i] = -1;
> -
> -		CALLBACK_WITH_SUCCESS(cb, retries, data);
> +		break;
>  	}
> +
> +error:
> +	g_free(cbd);
> +
> +	CALLBACK_WITH_FAILURE(cb, NULL, data);
>  }
>  
>  static void at_cpin_cb(gboolean ok, GAtResult *result, gpointer user_data)

The rest looks fine to me.

Regards

Marcel



      reply	other threads:[~2011-01-18 14:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-18 12:34 [PATCH v2 0/1] ifx support for querying remaining pin entries Jeevaka Badrappan
2011-01-18 12:34 ` [PATCH v2 1/1] atmodem: add ifx support for pin retries query Jeevaka Badrappan
2011-01-18 14:22   ` Marcel Holtmann [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1295360568.3873.176.camel@aeonflux \
    --to=marcel@holtmann.org \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.