linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
To: Andrei Emeltchenko <andrei.emeltchenko.news@gmail.com>,
	linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] android/health: Provide a helper funtion to search channel by id
Date: Tue, 24 Jun 2014 16:00:48 +0300	[thread overview]
Message-ID: <53A97680.2010203@linux.intel.com> (raw)
In-Reply-To: <20140624124810.GH22942@aemeltch-MOBL1>

Hi Andrei,

On 06/24/2014 03:48 PM, Andrei Emeltchenko wrote:
> Hi Ravi,
>
> On Tue, Jun 24, 2014 at 03:32:48PM +0300, Ravi kumar Veeramally wrote:
>> Hi Andrei,
>>
>> On 06/24/2014 03:17 PM, Andrei Emeltchenko wrote:
>>> Hi Ravi,
>>>
>>> On Tue, Jun 24, 2014 at 02:22:26PM +0300, Ravi kumar Veeramally wrote:
>>>> ---
>>>>   android/health.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
>>>>   1 file changed, 65 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/android/health.c b/android/health.c
>>>> index f45ae51..4ddcad2 100644
>>>> --- a/android/health.c
>>>> +++ b/android/health.c
>>>> @@ -115,6 +115,12 @@ struct health_app {
>>>>   	struct queue *devices;
>>>>   };
>>>> +/* helper structs */
>>>> +struct channel_search {
>>>> +	uint16_t channel_id;
>>>> +	struct health_channel *channel;
>>>> +};
>>>> +
>>>>   static void send_app_reg_notify(struct health_app *app, uint8_t state)
>>>>   {
>>>>   	struct hal_ev_health_app_reg_state ev;
>>>> @@ -237,6 +243,14 @@ static bool dev_by_addr(const void *data, const void *user_data)
>>>>   	return !bacmp(&dev->dst, addr);
>>>>   }
>>>> +static bool channel_by_channel_id(const void *data, const void *user_data)
>>> Should this be cmp_by_channel_id() ?
>>    For other api's, it is
>>    dev_by_addr, channel_by_mdep_id, mdep_by_mdep_role, app_by_app_id.
>>    so continued in similar way (channel_by_channel_id).
> This also looks a bit strange, are those cmp_* functions as well?
   Yes.

   we can change the names, if those are not suitable.

   Thanks,
   Ravi.
> Best regards
> Andrei Emeltchenko
>>   Thanks,
>>   Ravi.
>>
>>> Best regards
>>> Andrei Emeltchenko
>>>
>>>> +{
>>>> +	const struct health_channel *channel = data;
>>>> +	uint16_t channel_id = PTR_TO_INT(user_data);
>>>> +
>>>> +	return channel->id == channel_id;
>>>> +}
>>>> +
>>>>   static bool channel_by_mdep_id(const void *data, const void *user_data)
>>>>   {
>>>>   	const struct health_channel *channel = data;
>>>> @@ -269,6 +283,42 @@ static bool app_by_app_id(const void *data, const void *user_data)
>>>>   	return app->id == app_id;
>>>>   }
>>>> +static void device_search_channel(void *data, void *user_data)
>>>> +{
>>>> +	struct health_device *dev = data;
>>>> +	struct channel_search *search = user_data;
>>>> +
>>>> +	if (search->channel)
>>>> +		return;
>>>> +
>>>> +	search->channel = queue_find(dev->channels, channel_by_channel_id,
>>>> +						INT_TO_PTR(search->channel_id));
>>>> +}
>>>> +
>>>> +static void app_search_channel(void *data, void *user_data)
>>>> +{
>>>> +	struct health_app *app = data;
>>>> +	struct channel_search *search = user_data;
>>>> +
>>>> +	if (search->channel)
>>>> +		return;
>>>> +
>>>> +	queue_foreach(app->devices, device_search_channel, search);
>>>> +}
>>>> +
>>>> +static struct health_channel *search_channel_by_id(uint16_t id)
>>>> +{
>>>> +	struct channel_search search;
>>>> +
>>>> +	DBG("");
>>>> +
>>>> +	search.channel_id = id;
>>>> +	search.channel = NULL;
>>>> +	queue_foreach(apps, app_search_channel, &search);
>>>> +
>>>> +	return search.channel;
>>>> +}
>>>> +
>>>>   static int register_service_protocols(sdp_record_t *rec,
>>>>   					struct health_app *app)
>>>>   {
>>>> @@ -1459,6 +1509,7 @@ static struct health_channel *get_channel(uint16_t app_id,
>>>>   	return create_channel(app_id, mdep_index, dev);
>>>>   }
>>>> +
>>>>   static void bt_health_connect_channel(const void *buf, uint16_t len)
>>>>   {
>>>>   	const struct hal_cmd_health_connect_channel *cmd = buf;
>>>> @@ -1512,10 +1563,23 @@ fail:
>>>>   static void bt_health_destroy_channel(const void *buf, uint16_t len)
>>>>   {
>>>> -	DBG("Not implemented");
>>>> +	const struct hal_cmd_health_destroy_channel *cmd = buf;
>>>> +	struct health_channel *channel;
>>>> +
>>>> +	DBG("Not Implemented");
>>>> +
>>>> +	channel = search_channel_by_id(cmd->channel_id);
>>>> +	if (!channel)
>>>> +		goto fail;
>>>>   	ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HEALTH,
>>>>   			HAL_OP_HEALTH_DESTROY_CHANNEL, HAL_STATUS_UNSUPPORTED);
>>>> +
>>>> +	return;
>>>> +
>>>> +fail:
>>>> +	ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HEALTH,
>>>> +			HAL_OP_HEALTH_DESTROY_CHANNEL, HAL_STATUS_INVALID);
>>>>   }
>>>>   static const struct ipc_handler cmd_handlers[] = {
>>>> -- 
>>>> 1.9.1
>>>>
>>>> --
>>>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>>>> the body of a message to majordomo@vger.kernel.org
>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


      reply	other threads:[~2014-06-24 13:00 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-24 11:22 [PATCH] android/health: Provide a helper funtion to search channel by id Ravi kumar Veeramally
2014-06-24 12:17 ` Andrei Emeltchenko
2014-06-24 12:32   ` Ravi kumar Veeramally
2014-06-24 12:48     ` Andrei Emeltchenko
2014-06-24 13:00       ` Ravi kumar Veeramally [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=53A97680.2010203@linux.intel.com \
    --to=ravikumar.veeramally@linux.intel.com \
    --cc=andrei.emeltchenko.news@gmail.com \
    --cc=linux-bluetooth@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).