From: Szymon Janc <szymon.janc@tieto.com>
To: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH_v2 2/7] android/health: Check if device and channel already exists or not
Date: Sat, 21 Jun 2014 15:49:44 +0200 [thread overview]
Message-ID: <4022830.oGcTA3MTqb@leonov> (raw)
In-Reply-To: <1403267016-28422-3-git-send-email-ravikumar.veeramally@linux.intel.com>
Hi Ravi,
On Friday 20 of June 2014 15:23:31 Ravi kumar Veeramally wrote:
> On channel connect request, check if device is already exists or not.
> Also check if channel is already created for remote device or not.
> ---
> android/health.c | 83
> ++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 59
> insertions(+), 24 deletions(-)
>
> diff --git a/android/health.c b/android/health.c
> index 7553467..083ab1e 100644
> --- a/android/health.c
> +++ b/android/health.c
> @@ -213,6 +213,22 @@ static void send_channel_state_notify(struct
> health_channel *channel, sizeof(ev), &ev, fd);
> }
>
> +static bool dev_by_addr(const void *data, const void *user_data)
> +{
> + const struct health_device *dev = data;
> + const bdaddr_t *addr = user_data;
> +
> + return !bacmp(&dev->dst, addr);
> +}
> +
> +static bool channel_by_mdep_id(const void *data, const void *user_data)
> +{
> + const struct health_channel *channel = data;
> + uint16_t mdep_id = PTR_TO_INT(user_data);
> +
> + return channel->mdep_id == mdep_id;
> +}
> +
> static bool mdep_by_mdep_role(const void *data, const void *user_data)
> {
> const struct mdep_cfg *mdep = data;
> @@ -1094,25 +1110,44 @@ static int connect_mcl(struct health_channel
> *channel)
>
> static struct health_device *create_device(uint16_t app_id, const uint8_t
> *addr) {
> + struct health_app *app;
> struct health_device *dev;
> + bdaddr_t bdaddr;
>
> + app = queue_find(apps, app_by_app_id, INT_TO_PTR(app_id));
> + if (!app)
> + return NULL;
> +
> + android2bdaddr(addr, &bdaddr);
> + dev = queue_find(app->devices, dev_by_addr, &bdaddr);
> + if (dev)
> + return dev;
> +
I'd rather have create_device() to just create device and add wrapper
get_device() that would call find + create when needed .
> + /* create device and push it to devices queue */
> dev = new0(struct health_device, 1);
> if (!dev)
> return NULL;
>
> android2bdaddr(addr, &dev->dst);
> dev->app_id = app_id;
> +
> dev->channels = queue_new();
> if (!dev->channels) {
> free_health_device(dev);
> return NULL;
> }
>
> + if (!queue_push_tail(app->devices, dev)) {
> + free_health_device(dev);
> + return NULL;
> + }
> +
> return dev;
> }
>
> static struct health_channel *create_channel(uint16_t app_id,
> - uint8_t mdep_index)
> + uint8_t mdep_index,
> + struct health_device *dev)
> {
> struct health_app *app;
> struct mdep_cfg *mdep;
> @@ -1120,22 +1155,37 @@ static struct health_channel
> *create_channel(uint16_t app_id, uint8_t index;
> static unsigned int channel_id = 1;
>
> + if (!dev)
> + return NULL;
> +
> + index = mdep_index + 1;
> + channel = queue_find(dev->channels, channel_by_mdep_id,
> + INT_TO_PTR(index));
> + if (channel)
> + return channel;
Same here.
> +
> app = queue_find(apps, app_by_app_id, INT_TO_PTR(app_id));
> if (!app)
> return NULL;
>
> - index = mdep_index + 1;
> mdep = queue_find(app->mdeps, mdep_by_mdep_id, INT_TO_PTR(index));
> if (!mdep)
> return NULL;
>
> + /* create channel and push it to device */
> channel = new0(struct health_channel, 1);
> if (!channel)
> return NULL;
>
> - channel->mdep_id = mdep_index;
> + channel->mdep_id = mdep->id;
> channel->type = mdep->channel_type;
> channel->id = channel_id++;
> + channel->dev = dev;
> +
> + if (!queue_push_tail(dev->channels, channel)) {
> + free_health_channel(channel);
> + return NULL;
> + }
>
> return channel;
> }
> @@ -1144,38 +1194,24 @@ static void bt_health_connect_channel(const void
> *buf, uint16_t len) {
> const struct hal_cmd_health_connect_channel *cmd = buf;
> struct hal_rsp_health_connect_channel rsp;
> - struct health_app *app;
> struct health_device *dev = NULL;
> struct health_channel *channel = NULL;
>
> DBG("");
>
> - app = queue_find(apps, app_by_app_id, INT_TO_PTR(cmd->app_id));
> - if (!app)
> - goto fail;
> -
> dev = create_device(cmd->app_id, cmd->bdaddr);
> if (!dev)
> goto fail;
>
> - channel = create_channel(cmd->app_id, cmd->mdep_index);
> + channel = create_channel(cmd->app_id, cmd->mdep_index, dev);
> if (!channel)
> goto fail;
>
> - channel->dev = dev;
> -
> - if (!queue_push_tail(app->devices, dev))
> - goto fail;
> -
> - if (!queue_push_tail(dev->channels, channel)) {
> - queue_remove(app->devices, dev);
> - goto fail;
> - }
> -
> - if (connect_mcl(channel) < 0) {
> - error("error retrieving HDP SDP record");
> - queue_remove(app->devices, dev);
> - goto fail;
> + if (!dev->mcl) {
> + if (connect_mcl(channel) < 0) {
> + error("error retrieving HDP SDP record");
> + goto fail;
> + }
> }
>
> rsp.channel_id = channel->id;
> @@ -1186,7 +1222,6 @@ static void bt_health_connect_channel(const void *buf,
> uint16_t len)
>
> fail:
> free_health_channel(channel);
> - free_health_device(dev);
So command failed and yet new device is on app->devices list?
> ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HEALTH,
> HAL_OP_HEALTH_CONNECT_CHANNEL, HAL_STATUS_FAILED);
> }
Also a general note: please prefix all info() and error() messages with
"health: ".
--
BR
Szymon Janc
next prev parent reply other threads:[~2014-06-21 13:49 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-20 12:23 [PATCH_v2 0/7] Initial implementation for MCAP data channel Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 1/7] android/health: Fix queue creation for mdeps and devices Ravi kumar Veeramally
2014-06-21 13:32 ` Szymon Janc
2014-06-20 12:23 ` [PATCH_v2 2/7] android/health: Check if device and channel already exists or not Ravi kumar Veeramally
2014-06-21 13:49 ` Szymon Janc [this message]
2014-06-22 11:06 ` Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 3/7] android/health: Cache remote mdep id on channel connect request Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 4/7] android/health: Notify channel status on channel destroy call Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 5/7] android/health: Create and connect MDL Ravi kumar Veeramally
2014-06-21 20:19 ` Szymon Janc
2014-06-22 11:08 ` Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 6/7] android/health: Implement mcap_mdl_deleted_cb Ravi kumar Veeramally
2014-06-20 12:23 ` [PATCH_v2 7/7] anrdroid/client/health: Cache fd and close on channel disconnection Ravi kumar Veeramally
2014-06-21 8:40 ` Sebastian Chlad
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=4022830.oGcTA3MTqb@leonov \
--to=szymon.janc@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=ravikumar.veeramally@linux.intel.com \
/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).