public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] android/health: Handle incoming streaming data channel request
@ 2014-07-02  9:32 Ravi kumar Veeramally
  2014-07-02  9:32 ` [PATCH 2/3] android/client/health: Change multi dimension array to struct mode Ravi kumar Veeramally
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ravi kumar Veeramally @ 2014-07-02  9:32 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Ravi kumar Veeramally

First data channel should be reliable data channel when remote device
in sink role request data channel with option any.
---
 android/health.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/android/health.c b/android/health.c
index 1943ced..2d80365 100644
--- a/android/health.c
+++ b/android/health.c
@@ -1423,7 +1423,8 @@ static uint8_t mcap_mdl_conn_req_cb(struct mcap_mcl *mcl, uint8_t mdepid,
 	struct health_app *app;
 	struct mdep_cfg *mdep;
 
-	DBG("Data channel request: mdepid %u mdlid %u", mdepid, mdlid);
+	DBG("Data channel request: mdepid %u mdlid %u conf %u",
+							mdepid, mdlid, *conf);
 
 	if (mdepid == MDEP_ECHO)
 		/* For echo service take last app */
@@ -1478,10 +1479,14 @@ static uint8_t mcap_mdl_conn_req_cb(struct mcap_mcl *mcl, uint8_t mdepid,
 
 	switch (*conf) {
 	case CHANNEL_TYPE_ANY:
-		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SINK)
+		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SINK) {
 			return MCAP_CONFIGURATION_REJECTED;
-		else
-			*conf = CHANNEL_TYPE_RELIABLE;
+		} else {
+			if (queue_length(channel->dev->channels) <= 1)
+				*conf = CHANNEL_TYPE_RELIABLE;
+			else
+				*conf = CHANNEL_TYPE_STREAM;
+		}
 		break;
 	case CHANNEL_TYPE_STREAM:
 		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SOURCE)
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] android/client/health: Change multi dimension array to struct mode
  2014-07-02  9:32 [PATCH 1/3] android/health: Handle incoming streaming data channel request Ravi kumar Veeramally
@ 2014-07-02  9:32 ` Ravi kumar Veeramally
  2014-07-02  9:32 ` [PATCH 3/3] android/health: Update PTS result for TC_SRC_CC_BV_09_C Ravi kumar Veeramally
  2014-07-02 10:26 ` [PATCH 1/3] android/health: Handle incoming streaming data channel request Szymon Janc
  2 siblings, 0 replies; 4+ messages in thread
From: Ravi kumar Veeramally @ 2014-07-02  9:32 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Ravi kumar Veeramally

It will be hard to add extra parameters in multi dimension array.
---
 android/client/if-hl.c | 83 ++++++++++++++++++++++++++++++++------------------
 1 file changed, 54 insertions(+), 29 deletions(-)

diff --git a/android/client/if-hl.c b/android/client/if-hl.c
index 7b75575..17ba16c 100644
--- a/android/client/if-hl.c
+++ b/android/client/if-hl.c
@@ -52,13 +52,24 @@ SINTMAP(bthl_channel_state_t, -1, "(unknown)")
 	DELEMENT(BTHL_CONN_STATE_DESTROYED),
 ENDMAP
 
-#define APP_ID_SIZE 256
+#define APP_ID_SIZE 20
 #define MDEP_CFG_SIZE 10
-#define ELEMENTS_SIZE 3
+#define CHANNEL_ID_SIZE 50
+
+struct channel_info {
+	int fd;
+};
+
+struct mdep_cfg {
+	uint8_t role;
+	struct channel_info channel[CHANNEL_ID_SIZE];
+};
+
+struct {
+	struct mdep_cfg mdep[MDEP_CFG_SIZE];
+} app[APP_ID_SIZE];
 
 const bthl_interface_t *if_hl = NULL;
-/* app_id {mdep_cfg_index{role, channel_id, fd}} */
-static int app_info[APP_ID_SIZE][MDEP_CFG_SIZE][ELEMENTS_SIZE];
 
 static void app_reg_state_cb(int app_id, bthl_app_reg_state_t state)
 {
@@ -67,29 +78,30 @@ static void app_reg_state_cb(int app_id, bthl_app_reg_state_t state)
 }
 
 static void channel_state_cb(int app_id, bt_bdaddr_t *bd_addr,
-				int mdep_cfg_index, int channel_id,
-				bthl_channel_state_t state, int fd)
+					int index, int channel_id,
+					bthl_channel_state_t state, int fd)
 {
 	char addr[MAX_ADDR_STR_LEN];
 
 	haltest_info("%s: app_id=%d bd_addr=%s mdep_cfg_index=%d\n"
 			"channel_id=%d channel_state=%s fd=%d\n", __func__,
-			app_id, bt_bdaddr_t2str(bd_addr, addr), mdep_cfg_index,
+			app_id, bt_bdaddr_t2str(bd_addr, addr), index,
 			channel_id, bthl_channel_state_t2str(state), fd);
 
-	if (app_id >= APP_ID_SIZE || mdep_cfg_index >= MDEP_CFG_SIZE)
+	if (app_id >= APP_ID_SIZE || index >= MDEP_CFG_SIZE
+			|| channel_id >= CHANNEL_ID_SIZE) {
+		haltest_error("exceeds maximum limit");
 		return;
+	}
 
 	if (state == BTHL_CONN_STATE_CONNECTED) {
-		app_info[app_id][mdep_cfg_index][1] = channel_id;
-		app_info[app_id][mdep_cfg_index][2] = fd;
+		app[app_id].mdep[index].channel[channel_id].fd = fd;
 
 		/*
 		 * PTS expects dummy data on fd when it
 		 * connects in source role.
 		 */
-		if (app_info[app_id][mdep_cfg_index][0] ==
-				BTHL_MDEP_ROLE_SOURCE)
+		if (app[app_id].mdep[index].role == BTHL_MDEP_ROLE_SOURCE)
 			if (write(fd, "0", sizeof("0")) < 0)
 				haltest_error("writing data on fd failed\n");
 
@@ -98,9 +110,9 @@ static void channel_state_cb(int app_id, bt_bdaddr_t *bd_addr,
 
 	if (state == BTHL_CONN_STATE_DISCONNECTED ||
 			state == BTHL_CONN_STATE_DESTROYED) {
-		if (app_info[app_id][mdep_cfg_index][2] >= 0) {
-			close(app_info[app_id][mdep_cfg_index][2]);
-			app_info[app_id][mdep_cfg_index][2] = -1;
+		if (app[app_id].mdep[index].channel[channel_id].fd >= 0) {
+			close(app[app_id].mdep[index].channel[channel_id].fd);
+			app[app_id].mdep[index].channel[channel_id].fd = -1;
 		}
 	}
 }
@@ -117,10 +129,14 @@ static void init_p(int argc, const char **argv)
 {
 	int i, j, k;
 
-	for (i = 0; i < APP_ID_SIZE; i++)
-		for (j = 0; j < MDEP_CFG_SIZE; j++)
-			for (k = 0; k < ELEMENTS_SIZE; k++)
-				app_info[i][j][k] = -1;
+	for (i = 0; i < APP_ID_SIZE; i++) {
+		for (j = 0; j < MDEP_CFG_SIZE; j++) {
+			app[i].mdep[j].role = 0;
+			for (k = 0; k < CHANNEL_ID_SIZE; k++)
+				app[i].mdep[j].channel[k].fd = -1;
+		}
+	}
+
 
 	RETURN_IF_NULL(if_hl);
 
@@ -205,7 +221,7 @@ static void register_application_p(int argc, const char **argv)
 	EXEC(if_hl->register_application, &reg, &app_id);
 
 	for (i = 0; i < reg.number_of_mdeps; i++)
-		app_info[app_id][i][0] = reg.mdep_cfg[i].mdep_role;
+		app[app_id].mdep[i].role = reg.mdep_cfg[i].mdep_role;
 
 	free(reg.mdep_cfg);
 }
@@ -280,7 +296,8 @@ static void destroy_channel_p(int argc, const char **argv)
 static void close_channel_p(int argc, const char **argv)
 {
 	uint32_t app_id;
-	uint8_t mdep_cfg_index;
+	uint8_t index;
+	int channel_id;
 
 	RETURN_IF_NULL(if_hl);
 
@@ -294,21 +311,29 @@ static void close_channel_p(int argc, const char **argv)
 		return;
 	}
 
+	if (argc <= 4) {
+		haltest_error("No channel_id is specified");
+		return;
+	}
+
 	app_id = (uint32_t) atoi(argv[2]);
 	if (app_id >= APP_ID_SIZE) {
-		haltest_error("Wrong app_id specidied: %u\n", app_id);
+		haltest_error("Wrong app_id specified: %u\n", app_id);
 		return;
 	}
 
-	mdep_cfg_index = (uint8_t) atoi(argv[3]);
-	if (mdep_cfg_index >= MDEP_CFG_SIZE) {
-		haltest_error("Wrong mdep cgf index: %u\n", mdep_cfg_index);
+	index = (uint8_t) atoi(argv[3]);
+	if (index >= MDEP_CFG_SIZE) {
+		haltest_error("Wrong mdep cfg index: %u\n", index);
 		return;
 	}
 
-	if (app_info[app_id][mdep_cfg_index][2] >= 0) {
-		shutdown(app_info[app_id][mdep_cfg_index][2], SHUT_RDWR);
-		app_info[app_id][mdep_cfg_index][2] = -1;
+	channel_id = atoi(argv[4]);
+
+	if (app[app_id].mdep[index].channel[channel_id].fd >= 0) {
+		shutdown(app[app_id].mdep[index].channel[channel_id].fd,
+								SHUT_RDWR);
+		app[app_id].mdep[index].channel[channel_id].fd = -1;
 	}
 }
 
@@ -332,7 +357,7 @@ static struct method methods[] = {
 	STD_METHODH(unregister_application, "<app_id>"),
 	STD_METHODH(connect_channel, "<app_id> <bd_addr> <mdep_cfg_index>"),
 	STD_METHODH(destroy_channel, "<channel_id>"),
-	STD_METHODH(close_channel, "<app_id> <mdep_cfg_index>"),
+	STD_METHODH(close_channel, "<app_id> <mdep_cfg_index> <channel_id>"),
 	STD_METHOD(cleanup),
 	END_METHOD
 };
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] android/health: Update PTS result for TC_SRC_CC_BV_09_C
  2014-07-02  9:32 [PATCH 1/3] android/health: Handle incoming streaming data channel request Ravi kumar Veeramally
  2014-07-02  9:32 ` [PATCH 2/3] android/client/health: Change multi dimension array to struct mode Ravi kumar Veeramally
@ 2014-07-02  9:32 ` Ravi kumar Veeramally
  2014-07-02 10:26 ` [PATCH 1/3] android/health: Handle incoming streaming data channel request Szymon Janc
  2 siblings, 0 replies; 4+ messages in thread
From: Ravi kumar Veeramally @ 2014-07-02  9:32 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Ravi kumar Veeramally

---
 android/pts-hdp.txt | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/android/pts-hdp.txt b/android/pts-hdp.txt
index 1734df2..f254bd0 100644
--- a/android/pts-hdp.txt
+++ b/android/pts-hdp.txt
@@ -90,7 +90,15 @@ TC_SRC_CC_BV_07_C	PASS    haltest:
 				when prompted:
 				hl connect_channel <app_id> <bd_addr>
 				<mdep_cfg_index>
-TC_SRC_CC_BV_09_C	INC
+TC_SRC_CC_BV_09_C	PASS    haltest:
+				hl register_application bluez-android Bluez
+				bluez-hdp health-device-profile 2
+				BTHL_MDEP_ROLE_SOURCE 4100
+				BTHL_CHANNEL_TYPE_RELIABLE pulse-oximeter
+				BTHL_MDEP_ROLE_SOURCE 4100
+				BTHL_CHANNEL_TYPE_STREAMING pulse-oximeter
+
+				when prompted: bluetooth ssp_reply <args>
 TC_SRC_CC_BI_12_C	PASS	haltest:
 				hl register_application bluez-android Bluez
 				bluez-hdp health-device-profile 1
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/3] android/health: Handle incoming streaming data channel request
  2014-07-02  9:32 [PATCH 1/3] android/health: Handle incoming streaming data channel request Ravi kumar Veeramally
  2014-07-02  9:32 ` [PATCH 2/3] android/client/health: Change multi dimension array to struct mode Ravi kumar Veeramally
  2014-07-02  9:32 ` [PATCH 3/3] android/health: Update PTS result for TC_SRC_CC_BV_09_C Ravi kumar Veeramally
@ 2014-07-02 10:26 ` Szymon Janc
  2 siblings, 0 replies; 4+ messages in thread
From: Szymon Janc @ 2014-07-02 10:26 UTC (permalink / raw)
  To: Ravi kumar Veeramally; +Cc: linux-bluetooth

Hi Ravi,

On Wednesday 02 of July 2014 12:32:00 Ravi kumar Veeramally wrote:
> First data channel should be reliable data channel when remote device
> in sink role request data channel with option any.
> ---
>  android/health.c | 13 +++++++++----
>  1 file changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/android/health.c b/android/health.c
> index 1943ced..2d80365 100644
> --- a/android/health.c
> +++ b/android/health.c
> @@ -1423,7 +1423,8 @@ static uint8_t mcap_mdl_conn_req_cb(struct mcap_mcl *mcl, uint8_t mdepid,
>  	struct health_app *app;
>  	struct mdep_cfg *mdep;
>  
> -	DBG("Data channel request: mdepid %u mdlid %u", mdepid, mdlid);
> +	DBG("Data channel request: mdepid %u mdlid %u conf %u",
> +							mdepid, mdlid, *conf);
>  
>  	if (mdepid == MDEP_ECHO)
>  		/* For echo service take last app */
> @@ -1478,10 +1479,14 @@ static uint8_t mcap_mdl_conn_req_cb(struct mcap_mcl *mcl, uint8_t mdepid,
>  
>  	switch (*conf) {
>  	case CHANNEL_TYPE_ANY:
> -		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SINK)
> +		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SINK) {
>  			return MCAP_CONFIGURATION_REJECTED;
> -		else
> -			*conf = CHANNEL_TYPE_RELIABLE;
> +		} else {
> +			if (queue_length(channel->dev->channels) <= 1)
> +				*conf = CHANNEL_TYPE_RELIABLE;
> +			else
> +				*conf = CHANNEL_TYPE_STREAM;
> +		}
>  		break;
>  	case CHANNEL_TYPE_STREAM:
>  		if (mdep->role == HAL_HEALTH_MDEP_ROLE_SOURCE)
> 

All patches applied, thanks.

-- 
Best regards, 
Szymon Janc

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-07-02 10:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-02  9:32 [PATCH 1/3] android/health: Handle incoming streaming data channel request Ravi kumar Veeramally
2014-07-02  9:32 ` [PATCH 2/3] android/client/health: Change multi dimension array to struct mode Ravi kumar Veeramally
2014-07-02  9:32 ` [PATCH 3/3] android/health: Update PTS result for TC_SRC_CC_BV_09_C Ravi kumar Veeramally
2014-07-02 10:26 ` [PATCH 1/3] android/health: Handle incoming streaming data channel request Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox