summaryrefslogtreecommitdiff
path: root/android/hal-health.c
diff options
context:
space:
mode:
authorRavi kumar Veeramally <ravikumar.veeramally@linux.intel.com>2014-03-31 16:13:35 +0300
committerSzymon Janc <szymon.janc@tieto.com>2014-03-31 15:47:54 +0200
commita7191058a08f7e1d08e8b6757b4ed4c0127a9eb5 (patch)
tree11376d824c85c26896c13e4cdef8cfb4d7c31d17 /android/hal-health.c
parent7a9f2aed122b6139f4ce7191c2a930131c210e4f (diff)
downloadbluez-a7191058a08f7e1d08e8b6757b4ed4c0127a9eb5.tar.gz
android/hal-health: Add HDP .register_application method
Implementation of register_application is different compared to other apis. Due to limited IPC_MTU and variable length of fields from 'bthl_reg_param_t *', it is difficult to put them in single command and send though IPC. So we split this command multiple calls. First command will be called with opcode of HAL_OP_HEALTH_REG_APP with 'struct hal_cmd_health_reg_app' data. Later command will be called with opcode of HAL_OP_HEALTH_MDEP with 'struct hal_cmd_health_mdep' data for number_of_mdeps times. App id will be sent in response to HAL_OP_HEALTH_REG_APP command. This avoids increasing value of IPC_MTU and mainly because of optional parameters in 'bthl_reg_param_t'. Incase of unfilled optional parameters, fixed size arrays in hal commands will be empty.
Diffstat (limited to 'android/hal-health.c')
-rw-r--r--android/hal-health.c83
1 files changed, 82 insertions, 1 deletions
diff --git a/android/hal-health.c b/android/hal-health.c
index e6fe65a55..8d121073f 100644
--- a/android/hal-health.c
+++ b/android/hal-health.c
@@ -38,6 +38,87 @@ static bool interface_ready(void)
static const struct hal_ipc_handler ev_handlers[] = {
};
+static bt_status_t register_application(bthl_reg_param_t *reg, int *app_id)
+{
+ uint8_t buf[IPC_MTU];
+ struct hal_cmd_health_reg_app *cmd = (void *) buf;
+ struct hal_cmd_health_mdep *mdep = (void *) buf;
+ struct hal_rsp_health_reg_app rsp;
+ size_t rsp_len = sizeof(rsp);
+ bt_status_t status;
+ uint16_t off, len;
+ int i;
+
+ DBG("");
+
+ if (!interface_ready())
+ return BT_STATUS_NOT_READY;
+
+ if (!reg || !app_id || !reg->application_name)
+ return BT_STATUS_PARM_INVALID;
+
+ memset(buf, 0, IPC_MTU);
+
+ cmd->num_of_mdep = reg->number_of_mdeps;
+
+ off = 0;
+ cmd->app_name_off = off;
+ len = strlen(reg->application_name) + 1;
+ memcpy(cmd->data, reg->application_name, len);
+ off += len;
+
+ if (reg->provider_name) {
+ len = strlen(reg->provider_name) + 1;
+ cmd->provider_name_off = off;
+ memcpy(cmd->data + off, reg->provider_name, len);
+ off += len;
+ }
+
+ if (reg->srv_name) {
+ len = strlen(reg->srv_name) + 1;
+ cmd->service_name_off = off;
+ memcpy(cmd->data + off, reg->srv_name, len);
+ off += len;
+ }
+
+ if (reg->srv_desp) {
+ len = strlen(reg->srv_desp) + 1;
+ cmd->service_descr_off = off;
+ memcpy(cmd->data + off, reg->srv_desp, len);
+ off += len;
+ }
+
+ cmd->len = off;
+ status = hal_ipc_cmd(HAL_SERVICE_ID_HEALTH, HAL_OP_HEALTH_REG_APP,
+ sizeof(*cmd) + cmd->len, &cmd,
+ &rsp_len, &rsp, NULL);
+
+ if (status != HAL_STATUS_SUCCESS)
+ return status;
+
+ for (i = 0; i < reg->number_of_mdeps; i++) {
+ memset(buf, 0, IPC_MTU);
+ mdep->role = reg->mdep_cfg[i].mdep_role;
+ mdep->data_type = reg->mdep_cfg[i].data_type;
+ mdep->channel_type = reg->mdep_cfg[i].channel_type;
+ mdep->descr_len = strlen(reg->mdep_cfg[i].mdep_description) + 1;
+ memcpy(mdep->descr, reg->mdep_cfg[i].mdep_description,
+ mdep->descr_len);
+
+ status = hal_ipc_cmd(HAL_SERVICE_ID_HEALTH, HAL_OP_HEALTH_MDEP,
+ sizeof(*mdep) + mdep->descr_len,
+ buf, 0, NULL, NULL);
+
+ if (status != HAL_STATUS_SUCCESS)
+ return status;
+
+ }
+
+ *app_id = rsp.app_id;
+
+ return status;
+}
+
static bt_status_t unregister_application(int app_id)
{
struct hal_cmd_health_unreg_app cmd;
@@ -149,7 +230,7 @@ static void cleanup(void)
static bthl_interface_t health_if = {
.size = sizeof(health_if),
.init = init,
- .register_application = NULL,
+ .register_application = register_application,
.unregister_application = unregister_application,
.connect_channel = connect_channel,
.destroy_channel = destroy_channel,