| /****************************************************************************** |
| * |
| * Copyright (C) 2009-2014 Broadcom Corporation |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at: |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| ******************************************************************************/ |
| |
| |
| /******************************************************************************* |
| * |
| * Filename: btif_gatt_client.c |
| * |
| * Description: GATT client implementation |
| * |
| *******************************************************************************/ |
| |
| #include <hardware/bluetooth.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <errno.h> |
| #include <string.h> |
| |
| #define LOG_TAG "BtGatt.btif" |
| |
| #include "btif_common.h" |
| #include "btif_util.h" |
| |
| #if (defined(BLE_INCLUDED) && (BLE_INCLUDED == TRUE)) |
| |
| #include "btif_gatt_multi_adv_util.h" |
| #include <hardware/bt_gatt.h> |
| #include "bta_api.h" |
| #include "bta_gatt_api.h" |
| #include "bd.h" |
| #include "btif_storage.h" |
| #include "btif_config.h" |
| |
| #include "btif_gatt.h" |
| #include "btif_gatt_util.h" |
| #include "btif_dm.h" |
| #include "btif_storage.h" |
| |
| #include "vendor_api.h" |
| |
| /******************************************************************************* |
| ** Constants & Macros |
| ********************************************************************************/ |
| |
| #define CHECK_BTGATT_INIT() if (bt_gatt_callbacks == NULL)\ |
| {\ |
| BTIF_TRACE_WARNING("%s: BTGATT not initialized", __FUNCTION__);\ |
| return BT_STATUS_NOT_READY;\ |
| } else {\ |
| BTIF_TRACE_DEBUG("%s", __FUNCTION__);\ |
| } |
| |
| |
| typedef enum { |
| BTIF_GATTC_REGISTER_APP = 1000, |
| BTIF_GATTC_UNREGISTER_APP, |
| BTIF_GATTC_SCAN_START, |
| BTIF_GATTC_SCAN_STOP, |
| BTIF_GATTC_OPEN, |
| BTIF_GATTC_CLOSE, |
| BTIF_GATTC_SEARCH_SERVICE, |
| BTIF_GATTC_GET_FIRST_CHAR, |
| BTIF_GATTC_GET_NEXT_CHAR, |
| BTIF_GATTC_GET_FIRST_CHAR_DESCR, |
| BTIF_GATTC_GET_NEXT_CHAR_DESCR, |
| BTIF_GATTC_GET_FIRST_INCL_SERVICE, |
| BTIF_GATTC_GET_NEXT_INCL_SERVICE, |
| BTIF_GATTC_READ_CHAR, |
| BTIF_GATTC_READ_CHAR_DESCR, |
| BTIF_GATTC_WRITE_CHAR, |
| BTIF_GATTC_WRITE_CHAR_DESCR, |
| BTIF_GATTC_EXECUTE_WRITE, |
| BTIF_GATTC_REG_FOR_NOTIFICATION, |
| BTIF_GATTC_DEREG_FOR_NOTIFICATION, |
| BTIF_GATTC_REFRESH, |
| BTIF_GATTC_READ_RSSI, |
| BTIF_GATTC_LISTEN, |
| BTIF_GATTC_SET_ADV_DATA, |
| BTIF_GATTC_CONFIGURE_MTU, |
| BTIF_GATTC_CONN_PARAM_UPDT, |
| BTIF_GATTC_SCAN_FILTER_PARAM_SETUP, |
| BTIF_GATTC_SCAN_FILTER_CONFIG, |
| BTIF_GATTC_SCAN_FILTER_CLEAR, |
| BTIF_GATTC_SCAN_FILTER_ENABLE, |
| BTIF_GATTC_SET_SCAN_PARAMS, |
| BTIF_GATTC_ADV_INSTANCE_ENABLE, |
| BTIF_GATTC_ADV_INSTANCE_UPDATE, |
| BTIF_GATTC_ADV_INSTANCE_SET_DATA, |
| BTIF_GATTC_ADV_INSTANCE_DISABLE, |
| BTIF_GATTC_CONFIG_STORAGE_PARAMS, |
| BTIF_GATTC_ENABLE_BATCH_SCAN, |
| BTIF_GATTC_READ_BATCH_SCAN_REPORTS, |
| BTIF_GATTC_DISABLE_BATCH_SCAN |
| } btif_gattc_event_t; |
| |
| #define BTIF_GATT_MAX_OBSERVED_DEV 40 |
| |
| #define BTIF_GATT_OBSERVE_EVT 0x1000 |
| #define BTIF_GATTC_RSSI_EVT 0x1001 |
| #define BTIF_GATTC_SCAN_FILTER_EVT 0x1003 |
| |
| #define ENABLE_BATCH_SCAN 1 |
| #define DISABLE_BATCH_SCAN 0 |
| |
| /******************************************************************************* |
| ** Local type definitions |
| ********************************************************************************/ |
| typedef struct |
| { |
| uint8_t report_format; |
| uint16_t data_len; |
| uint8_t num_records; |
| uint8_t *p_rep_data; |
| } btgatt_batch_reports; |
| |
| typedef struct |
| { |
| uint8_t status; |
| uint8_t client_if; |
| uint8_t filt_index; |
| uint8_t adv_state; |
| uint8_t action; |
| uint8_t avbl_space; |
| uint8_t lost_timeout; |
| bt_bdaddr_t bd_addr; |
| uint8_t batch_scan_full_max; |
| uint8_t batch_scan_trunc_max; |
| uint8_t batch_scan_notify_threshold; |
| tBTA_BLE_SCAN_MODE scan_mode; |
| uint32_t scan_interval; |
| uint32_t scan_window; |
| tBTA_BLE_DISCARD_RULE discard_rule; |
| tBLE_ADDR_TYPE addr_type; |
| btgatt_batch_reports read_reports; |
| } btgatt_batch_track_cb_t; |
| |
| typedef tBTA_DM_BLE_PF_FILT_PARAMS btgatt_adv_filt_param_t; |
| |
| typedef struct |
| { |
| uint8_t client_if; |
| uint8_t action; |
| tBTA_DM_BLE_PF_COND_TYPE filt_type; |
| bt_bdaddr_t bd_addr; |
| uint8_t value[BTGATT_MAX_ATTR_LEN]; |
| uint8_t value_len; |
| uint8_t filt_index; |
| uint16_t conn_id; |
| uint16_t company_id_mask; |
| bt_uuid_t uuid; |
| bt_uuid_t uuid_mask; |
| uint8_t value_mask[BTGATT_MAX_ATTR_LEN]; |
| uint8_t value_mask_len; |
| uint8_t has_mask; |
| uint8_t addr_type; |
| uint8_t status; |
| tBTA_DM_BLE_PF_AVBL_SPACE avbl_space; |
| tBTA_DM_BLE_SCAN_COND_OP cond_op; |
| btgatt_adv_filt_param_t adv_filt_param; |
| } btgatt_adv_filter_cb_t; |
| |
| typedef struct |
| { |
| uint8_t value[BTGATT_MAX_ATTR_LEN]; |
| uint8_t inst_id; |
| bt_bdaddr_t bd_addr; |
| btgatt_srvc_id_t srvc_id; |
| btgatt_srvc_id_t incl_srvc_id; |
| btgatt_gatt_id_t char_id; |
| btgatt_gatt_id_t descr_id; |
| bt_uuid_t uuid; |
| bt_uuid_t uuid_mask; |
| uint16_t conn_id; |
| uint16_t len; |
| uint16_t mask; |
| uint16_t scan_interval; |
| uint16_t scan_window; |
| uint8_t client_if; |
| uint8_t action; |
| uint8_t is_direct; |
| uint8_t search_all; |
| uint8_t auth_req; |
| uint8_t write_type; |
| uint8_t status; |
| uint8_t addr_type; |
| uint8_t start; |
| uint8_t has_mask; |
| int8_t rssi; |
| uint8_t flag; |
| tBT_DEVICE_TYPE device_type; |
| btgatt_transport_t transport; |
| } __attribute__((packed)) btif_gattc_cb_t; |
| |
| typedef struct |
| { |
| bt_bdaddr_t bd_addr; |
| uint16_t min_interval; |
| uint16_t max_interval; |
| uint16_t timeout; |
| uint16_t latency; |
| } btif_conn_param_cb_t; |
| |
| typedef struct |
| { |
| bt_bdaddr_t bd_addr; |
| BOOLEAN in_use; |
| }__attribute__((packed)) btif_gattc_dev_t; |
| |
| typedef struct |
| { |
| btif_gattc_dev_t remote_dev[BTIF_GATT_MAX_OBSERVED_DEV]; |
| uint8_t addr_type; |
| uint8_t next_storage_idx; |
| }__attribute__((packed)) btif_gattc_dev_cb_t; |
| |
| /******************************************************************************* |
| ** Static variables |
| ********************************************************************************/ |
| |
| extern const btgatt_callbacks_t *bt_gatt_callbacks; |
| static btif_gattc_dev_cb_t btif_gattc_dev_cb; |
| static btif_gattc_dev_cb_t *p_dev_cb = &btif_gattc_dev_cb; |
| static uint8_t rssi_request_client_if; |
| |
| /******************************************************************************* |
| ** Static functions |
| ********************************************************************************/ |
| |
| static bt_status_t btif_gattc_multi_adv_disable(int client_if); |
| static void btif_multi_adv_stop_cb(void *data) |
| { |
| int client_if = (int)data; |
| btif_gattc_multi_adv_disable(client_if); // Does context switch |
| } |
| |
| static void btapp_gattc_req_data(UINT16 event, char *p_dest, char *p_src) |
| { |
| tBTA_GATTC *p_dest_data = (tBTA_GATTC*) p_dest; |
| tBTA_GATTC *p_src_data = (tBTA_GATTC*) p_src; |
| |
| if (!p_src_data || !p_dest_data) |
| return; |
| |
| // Copy basic structure first |
| memcpy(p_dest_data, p_src_data, sizeof(tBTA_GATTC)); |
| |
| // Allocate buffer for request data if necessary |
| switch (event) |
| { |
| case BTA_GATTC_READ_CHAR_EVT: |
| case BTA_GATTC_READ_DESCR_EVT: |
| |
| if (p_src_data->read.p_value != NULL) |
| { |
| p_dest_data->read.p_value = GKI_getbuf(sizeof(tBTA_GATT_READ_VAL)); |
| |
| if (p_dest_data->read.p_value != NULL) |
| { |
| memcpy(p_dest_data->read.p_value, p_src_data->read.p_value, |
| sizeof(tBTA_GATT_READ_VAL)); |
| |
| // Allocate buffer for att value if necessary |
| if (get_uuid16(&p_src_data->read.descr_type.uuid) != GATT_UUID_CHAR_AGG_FORMAT |
| && p_src_data->read.p_value->unformat.len > 0 |
| && p_src_data->read.p_value->unformat.p_value != NULL) |
| { |
| p_dest_data->read.p_value->unformat.p_value = |
| GKI_getbuf(p_src_data->read.p_value->unformat.len); |
| if (p_dest_data->read.p_value->unformat.p_value != NULL) |
| { |
| memcpy(p_dest_data->read.p_value->unformat.p_value, |
| p_src_data->read.p_value->unformat.p_value, |
| p_src_data->read.p_value->unformat.len); |
| } |
| } |
| } |
| } |
| else |
| { |
| BTIF_TRACE_WARNING("%s :Src read.p_value ptr is NULL for event 0x%x", |
| __FUNCTION__, event); |
| p_dest_data->read.p_value = NULL; |
| |
| } |
| break; |
| |
| default: |
| break; |
| } |
| } |
| |
| static void btapp_gattc_free_req_data(UINT16 event, tBTA_GATTC *p_data) |
| { |
| switch (event) |
| { |
| case BTA_GATTC_READ_CHAR_EVT: |
| case BTA_GATTC_READ_DESCR_EVT: |
| if (p_data != NULL && p_data->read.p_value != NULL) |
| { |
| if (get_uuid16 (&p_data->read.descr_type.uuid) != GATT_UUID_CHAR_AGG_FORMAT |
| && p_data->read.p_value->unformat.len > 0 |
| && p_data->read.p_value->unformat.p_value != NULL) |
| { |
| GKI_freebuf(p_data->read.p_value->unformat.p_value); |
| } |
| GKI_freebuf(p_data->read.p_value); |
| } |
| break; |
| |
| default: |
| break; |
| } |
| } |
| |
| static void btif_gattc_init_dev_cb(void) |
| { |
| memset(p_dev_cb, 0, sizeof(btif_gattc_dev_cb_t)); |
| } |
| |
| static void btif_gattc_add_remote_bdaddr (BD_ADDR p_bda, uint8_t addr_type) |
| { |
| BOOLEAN found=FALSE; |
| uint8_t i; |
| for (i = 0; i < BTIF_GATT_MAX_OBSERVED_DEV; i++) |
| { |
| if (!p_dev_cb->remote_dev[i].in_use ) |
| { |
| memcpy(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN); |
| p_dev_cb->addr_type = addr_type; |
| p_dev_cb->remote_dev[i].in_use = TRUE; |
| BTIF_TRACE_DEBUG("%s device added idx=%d", __FUNCTION__, i ); |
| break; |
| } |
| } |
| |
| if ( i == BTIF_GATT_MAX_OBSERVED_DEV) |
| { |
| i= p_dev_cb->next_storage_idx; |
| memcpy(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN); |
| p_dev_cb->addr_type = addr_type; |
| p_dev_cb->remote_dev[i].in_use = TRUE; |
| BTIF_TRACE_DEBUG("%s device overwrite idx=%d", __FUNCTION__, i ); |
| p_dev_cb->next_storage_idx++; |
| if (p_dev_cb->next_storage_idx >= BTIF_GATT_MAX_OBSERVED_DEV) |
| p_dev_cb->next_storage_idx = 0; |
| } |
| } |
| |
| static BOOLEAN btif_gattc_find_bdaddr (BD_ADDR p_bda) |
| { |
| uint8_t i; |
| for (i = 0; i < BTIF_GATT_MAX_OBSERVED_DEV; i++) |
| { |
| if (p_dev_cb->remote_dev[i].in_use && |
| !memcmp(p_dev_cb->remote_dev[i].bd_addr.address, p_bda, BD_ADDR_LEN)) |
| { |
| return TRUE; |
| } |
| } |
| return FALSE; |
| } |
| |
| static void btif_gattc_update_properties ( btif_gattc_cb_t *p_btif_cb ) |
| { |
| uint8_t remote_name_len; |
| uint8_t *p_eir_remote_name=NULL; |
| bt_bdname_t bdname; |
| |
| p_eir_remote_name = BTA_CheckEirData(p_btif_cb->value, |
| BTM_EIR_COMPLETE_LOCAL_NAME_TYPE, &remote_name_len); |
| |
| if (p_eir_remote_name == NULL) |
| { |
| p_eir_remote_name = BTA_CheckEirData(p_btif_cb->value, |
| BT_EIR_SHORTENED_LOCAL_NAME_TYPE, &remote_name_len); |
| } |
| |
| if (p_eir_remote_name) |
| { |
| memcpy(bdname.name, p_eir_remote_name, remote_name_len); |
| bdname.name[remote_name_len]='\0'; |
| |
| BTIF_TRACE_DEBUG("%s BLE device name=%s len=%d dev_type=%d", __FUNCTION__, bdname.name, |
| remote_name_len, p_btif_cb->device_type ); |
| btif_dm_update_ble_remote_properties( p_btif_cb->bd_addr.address, bdname.name, |
| p_btif_cb->device_type); |
| } |
| |
| btif_storage_set_remote_addr_type( &p_btif_cb->bd_addr, p_btif_cb->addr_type); |
| } |
| |
| static void btif_gattc_upstreams_evt(uint16_t event, char* p_param) |
| { |
| BTIF_TRACE_EVENT("%s: Event %d", __FUNCTION__, event); |
| |
| tBTA_GATTC *p_data = (tBTA_GATTC*) p_param; |
| switch (event) |
| { |
| case BTA_GATTC_REG_EVT: |
| { |
| bt_uuid_t app_uuid; |
| bta_to_btif_uuid(&app_uuid, &p_data->reg_oper.app_uuid); |
| HAL_CBACK(bt_gatt_callbacks, client->register_client_cb |
| , p_data->reg_oper.status |
| , p_data->reg_oper.client_if |
| , &app_uuid |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_DEREG_EVT: |
| break; |
| |
| case BTA_GATTC_READ_CHAR_EVT: |
| { |
| btgatt_read_params_t data; |
| set_read_value(&data, &p_data->read); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->read_characteristic_cb |
| , p_data->read.conn_id, p_data->read.status, &data); |
| break; |
| } |
| |
| case BTA_GATTC_WRITE_CHAR_EVT: |
| case BTA_GATTC_PREP_WRITE_EVT: |
| { |
| btgatt_write_params_t data; |
| bta_to_btif_srvc_id(&data.srvc_id, &p_data->write.srvc_id); |
| bta_to_btif_gatt_id(&data.char_id, &p_data->write.char_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->write_characteristic_cb |
| , p_data->write.conn_id, p_data->write.status, &data |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_EXEC_EVT: |
| { |
| HAL_CBACK(bt_gatt_callbacks, client->execute_write_cb |
| , p_data->exec_cmpl.conn_id, p_data->exec_cmpl.status |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_SEARCH_CMPL_EVT: |
| { |
| HAL_CBACK(bt_gatt_callbacks, client->search_complete_cb |
| , p_data->search_cmpl.conn_id, p_data->search_cmpl.status); |
| break; |
| } |
| |
| case BTA_GATTC_SEARCH_RES_EVT: |
| { |
| btgatt_srvc_id_t data; |
| bta_to_btif_srvc_id(&data, &(p_data->srvc_res.service_uuid)); |
| HAL_CBACK(bt_gatt_callbacks, client->search_result_cb |
| , p_data->srvc_res.conn_id, &data); |
| break; |
| } |
| |
| case BTA_GATTC_READ_DESCR_EVT: |
| { |
| btgatt_read_params_t data; |
| set_read_value(&data, &p_data->read); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->read_descriptor_cb |
| , p_data->read.conn_id, p_data->read.status, &data); |
| break; |
| } |
| |
| case BTA_GATTC_WRITE_DESCR_EVT: |
| { |
| btgatt_write_params_t data; |
| bta_to_btif_srvc_id(&data.srvc_id, &p_data->write.srvc_id); |
| bta_to_btif_gatt_id(&data.char_id, &p_data->write.char_id); |
| bta_to_btif_gatt_id(&data.descr_id, &p_data->write.descr_type); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->write_descriptor_cb |
| , p_data->write.conn_id, p_data->write.status, &data); |
| break; |
| } |
| |
| case BTA_GATTC_NOTIF_EVT: |
| { |
| btgatt_notify_params_t data; |
| |
| bdcpy(data.bda.address, p_data->notify.bda); |
| |
| bta_to_btif_srvc_id(&data.srvc_id, &p_data->notify.char_id.srvc_id); |
| bta_to_btif_gatt_id(&data.char_id, &p_data->notify.char_id.char_id); |
| memcpy(data.value, p_data->notify.value, p_data->notify.len); |
| |
| data.is_notify = p_data->notify.is_notify; |
| data.len = p_data->notify.len; |
| |
| HAL_CBACK(bt_gatt_callbacks, client->notify_cb |
| , p_data->notify.conn_id, &data); |
| |
| if (p_data->notify.is_notify == FALSE) |
| { |
| BTA_GATTC_SendIndConfirm(p_data->notify.conn_id, |
| &p_data->notify.char_id); |
| } |
| break; |
| } |
| |
| case BTA_GATTC_OPEN_EVT: |
| { |
| bt_bdaddr_t bda; |
| bdcpy(bda.address, p_data->open.remote_bda); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->open_cb, p_data->open.conn_id |
| , p_data->open.status, p_data->open.client_if, &bda); |
| |
| if (GATT_DEF_BLE_MTU_SIZE != p_data->open.mtu && p_data->open.mtu) |
| { |
| HAL_CBACK(bt_gatt_callbacks, client->configure_mtu_cb, p_data->open.conn_id |
| , p_data->open.status , p_data->open.mtu); |
| } |
| |
| if (p_data->open.status == BTA_GATT_OK) |
| btif_gatt_check_encrypted_link(p_data->open.remote_bda); |
| break; |
| } |
| |
| case BTA_GATTC_CLOSE_EVT: |
| { |
| bt_bdaddr_t bda; |
| bdcpy(bda.address, p_data->close.remote_bda); |
| HAL_CBACK(bt_gatt_callbacks, client->close_cb, p_data->close.conn_id |
| , p_data->status, p_data->close.client_if, &bda); |
| break; |
| } |
| |
| case BTA_GATTC_ACL_EVT: |
| BTIF_TRACE_EVENT("BTA_GATTC_ACL_EVT: status = %d", p_data->status); |
| /* Ignore for now */ |
| break; |
| |
| case BTA_GATTC_CANCEL_OPEN_EVT: |
| break; |
| |
| case BTIF_GATT_OBSERVE_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| uint8_t remote_name_len; |
| uint8_t *p_eir_remote_name=NULL; |
| bt_device_type_t dev_type; |
| bt_property_t properties; |
| |
| p_eir_remote_name = BTA_CheckEirData(p_btif_cb->value, |
| BTM_EIR_COMPLETE_LOCAL_NAME_TYPE, &remote_name_len); |
| |
| if (p_eir_remote_name == NULL) |
| { |
| p_eir_remote_name = BTA_CheckEirData(p_btif_cb->value, |
| BT_EIR_SHORTENED_LOCAL_NAME_TYPE, &remote_name_len); |
| } |
| |
| if ((p_btif_cb->addr_type != BLE_ADDR_RANDOM) || (p_eir_remote_name)) |
| { |
| if (!btif_gattc_find_bdaddr(p_btif_cb->bd_addr.address)) |
| { |
| static const char* exclude_filter[] = |
| {"LinkKey", "LE_KEY_PENC", "LE_KEY_PID", "LE_KEY_PCSRK", "LE_KEY_LENC", "LE_KEY_LCSRK"}; |
| |
| btif_gattc_add_remote_bdaddr(p_btif_cb->bd_addr.address, p_btif_cb->addr_type); |
| btif_gattc_update_properties(p_btif_cb); |
| btif_config_filter_remove("Remote", exclude_filter, sizeof(exclude_filter)/sizeof(char*), |
| BTIF_STORAGE_MAX_ALLOWED_REMOTE_DEVICE); |
| } |
| |
| } |
| |
| if (( p_btif_cb->device_type == BT_DEVICE_TYPE_DUMO)&& |
| (p_btif_cb->flag & BTA_BLE_DMT_CONTROLLER_SPT) && |
| (p_btif_cb->flag & BTA_BLE_DMT_HOST_SPT)) |
| { |
| btif_storage_set_dmt_support_type (&(p_btif_cb->bd_addr), TRUE); |
| } |
| |
| dev_type = p_btif_cb->device_type; |
| BTIF_STORAGE_FILL_PROPERTY(&properties, |
| BT_PROPERTY_TYPE_OF_DEVICE, sizeof(dev_type), &dev_type); |
| btif_storage_set_remote_device_property(&(p_btif_cb->bd_addr), &properties); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->scan_result_cb, |
| &p_btif_cb->bd_addr, p_btif_cb->rssi, p_btif_cb->value); |
| break; |
| } |
| |
| case BTIF_GATTC_RSSI_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->read_remote_rssi_cb, p_btif_cb->client_if, |
| &p_btif_cb->bd_addr, p_btif_cb->rssi, p_btif_cb->status); |
| break; |
| } |
| |
| case BTA_GATTC_LISTEN_EVT: |
| { |
| HAL_CBACK(bt_gatt_callbacks, client->listen_cb |
| , p_data->reg_oper.status |
| , p_data->reg_oper.client_if |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_CFG_MTU_EVT: |
| { |
| HAL_CBACK(bt_gatt_callbacks, client->configure_mtu_cb, p_data->cfg_mtu.conn_id |
| , p_data->cfg_mtu.status , p_data->cfg_mtu.mtu); |
| break; |
| } |
| |
| case BTA_GATTC_MULT_ADV_ENB_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| if (0xFF != p_btif_cb->inst_id) |
| btif_multi_adv_add_instid_map(p_btif_cb->client_if, p_btif_cb->inst_id, false); |
| HAL_CBACK(bt_gatt_callbacks, client->multi_adv_enable_cb |
| , p_btif_cb->client_if |
| , p_btif_cb->status |
| ); |
| btif_multi_adv_timer_ctrl(p_btif_cb->client_if, |
| (p_btif_cb->status==0 ? btif_multi_adv_stop_cb : NULL)); |
| break; |
| } |
| |
| case BTA_GATTC_MULT_ADV_UPD_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->multi_adv_update_cb |
| , p_btif_cb->client_if |
| , p_btif_cb->status |
| ); |
| btif_multi_adv_timer_ctrl(p_btif_cb->client_if, |
| (p_btif_cb->status==0 ? btif_multi_adv_stop_cb : NULL)); |
| break; |
| } |
| |
| case BTA_GATTC_MULT_ADV_DATA_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| btif_gattc_cleanup_inst_cb(p_btif_cb->inst_id); |
| HAL_CBACK(bt_gatt_callbacks, client->multi_adv_data_cb |
| , p_btif_cb->client_if |
| , p_btif_cb->status |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_MULT_ADV_DIS_EVT: |
| { |
| btif_gattc_cb_t *p_btif_cb = (btif_gattc_cb_t*) p_param; |
| btif_gattc_clear_clientif(p_btif_cb->client_if); |
| HAL_CBACK(bt_gatt_callbacks, client->multi_adv_disable_cb |
| , p_btif_cb->client_if |
| , p_btif_cb->status |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_ADV_DATA_EVT: |
| { |
| btif_gattc_cleanup_inst_cb(STD_ADV_INSTID); |
| /* No HAL callback available */ |
| break; |
| } |
| |
| case BTA_GATTC_CONGEST_EVT: |
| HAL_CBACK(bt_gatt_callbacks, client->congestion_cb |
| , p_data->congest.conn_id |
| , p_data->congest.congested |
| ); |
| break; |
| |
| case BTA_GATTC_BTH_SCAN_CFG_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->batchscan_cfg_storage_cb |
| , p_data->client_if |
| , p_data->status |
| ); |
| break; |
| } |
| |
| case BTA_GATTC_BTH_SCAN_ENB_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->batchscan_enb_disable_cb |
| , ENABLE_BATCH_SCAN |
| , p_data->client_if |
| , p_data->status); |
| break; |
| } |
| |
| case BTA_GATTC_BTH_SCAN_DIS_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->batchscan_enb_disable_cb |
| , DISABLE_BATCH_SCAN |
| , p_data->client_if |
| , p_data->status); |
| break; |
| } |
| |
| case BTA_GATTC_BTH_SCAN_THR_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->batchscan_threshold_cb |
| , p_data->client_if); |
| break; |
| } |
| |
| case BTA_GATTC_BTH_SCAN_RD_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| uint8_t *p_rep_data = NULL; |
| |
| if (p_data->read_reports.data_len > 0) |
| { |
| p_rep_data = GKI_getbuf(p_data->read_reports.data_len); |
| memcpy(p_rep_data, p_data->read_reports.p_rep_data, p_data->read_reports.data_len); |
| } |
| |
| HAL_CBACK(bt_gatt_callbacks, client->batchscan_reports_cb |
| , p_data->client_if, p_data->status, p_data->read_reports.report_format |
| , p_data->read_reports.num_records, p_data->read_reports.data_len, p_rep_data); |
| break; |
| } |
| |
| case BTA_GATTC_SCAN_FLT_CFG_EVT: |
| { |
| btgatt_adv_filter_cb_t *p_btif_cb = (btgatt_adv_filter_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->scan_filter_cfg_cb, p_btif_cb->action, |
| p_btif_cb->client_if, p_btif_cb->status, p_btif_cb->cond_op, |
| p_btif_cb->avbl_space); |
| break; |
| } |
| |
| case BTA_GATTC_SCAN_FLT_PARAM_EVT: |
| { |
| btgatt_adv_filter_cb_t *p_data = (btgatt_adv_filter_cb_t*) p_param; |
| BTIF_TRACE_DEBUG("BTA_GATTC_SCAN_FLT_PARAM_EVT: %d, %d, %d, %d",p_data->client_if, |
| p_data->action, p_data->avbl_space, p_data->status); |
| HAL_CBACK(bt_gatt_callbacks, client->scan_filter_param_cb |
| , p_data->action, p_data->client_if, p_data->status |
| , p_data->avbl_space); |
| break; |
| } |
| |
| case BTA_GATTC_SCAN_FLT_STATUS_EVT: |
| { |
| btgatt_adv_filter_cb_t *p_data = (btgatt_adv_filter_cb_t*) p_param; |
| BTIF_TRACE_DEBUG("BTA_GATTC_SCAN_FLT_STATUS_EVT: %d, %d, %d",p_data->client_if, |
| p_data->action, p_data->status); |
| HAL_CBACK(bt_gatt_callbacks, client->scan_filter_status_cb |
| , p_data->action, p_data->client_if, p_data->status); |
| break; |
| } |
| |
| case BTA_GATTC_ADV_VSC_EVT: |
| { |
| btgatt_batch_track_cb_t *p_data = (btgatt_batch_track_cb_t*) p_param; |
| HAL_CBACK(bt_gatt_callbacks, client->track_adv_event_cb |
| ,p_data->client_if, p_data->filt_index, p_data->addr_type, &p_data->bd_addr |
| ,p_data->adv_state); |
| break; |
| } |
| |
| default: |
| BTIF_TRACE_ERROR("%s: Unhandled event (%d)!", __FUNCTION__, event); |
| break; |
| } |
| |
| btapp_gattc_free_req_data(event, p_data); |
| } |
| |
| static void bta_gattc_cback(tBTA_GATTC_EVT event, tBTA_GATTC *p_data) |
| { |
| bt_status_t status = btif_transfer_context(btif_gattc_upstreams_evt, |
| (uint16_t) event, (void*) p_data, sizeof(tBTA_GATTC), btapp_gattc_req_data); |
| ASSERTC(status == BT_STATUS_SUCCESS, "Context transfer failed!", status); |
| } |
| |
| static void bta_gattc_multi_adv_cback(tBTA_BLE_MULTI_ADV_EVT event, UINT8 inst_id, |
| void *p_ref, tBTA_STATUS call_status) |
| { |
| btif_gattc_cb_t btif_cb; |
| tBTA_GATTC_EVT upevt; |
| uint8_t client_if = 0; |
| |
| if (NULL == p_ref) |
| { |
| BTIF_TRACE_WARNING("%s Invalid p_ref received",__FUNCTION__); |
| } |
| else |
| { |
| client_if = *(UINT8 *) p_ref; |
| } |
| |
| BTIF_TRACE_DEBUG("%s -Inst ID %d, Status:%x, client_if:%d",__FUNCTION__,inst_id, call_status, |
| client_if); |
| btif_cb.status = call_status; |
| btif_cb.client_if = client_if; |
| btif_cb.inst_id = inst_id; |
| |
| switch(event) |
| { |
| case BTA_BLE_MULTI_ADV_ENB_EVT: |
| upevt = BTA_GATTC_MULT_ADV_ENB_EVT; |
| break; |
| |
| case BTA_BLE_MULTI_ADV_DISABLE_EVT: |
| upevt = BTA_GATTC_MULT_ADV_DIS_EVT; |
| break; |
| |
| case BTA_BLE_MULTI_ADV_PARAM_EVT: |
| upevt = BTA_GATTC_MULT_ADV_UPD_EVT; |
| break; |
| |
| case BTA_BLE_MULTI_ADV_DATA_EVT: |
| upevt = BTA_GATTC_MULT_ADV_DATA_EVT; |
| break; |
| |
| default: |
| return; |
| } |
| |
| bt_status_t status = btif_transfer_context(btif_gattc_upstreams_evt, (uint16_t) upevt, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| ASSERTC(status == BT_STATUS_SUCCESS, "Context transfer failed!", status); |
| } |
| |
| static void bta_gattc_set_adv_data_cback(tBTA_STATUS call_status) |
| { |
| UNUSED(call_status); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.status = call_status; |
| btif_cb.action = 0; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_ADV_DATA_EVT, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static void bta_batch_scan_setup_cb (tBTA_BLE_BATCH_SCAN_EVT evt, |
| tBTA_DM_BLE_REF_VALUE ref_value, tBTA_STATUS status) |
| { |
| UINT8 upevt = 0; |
| btgatt_batch_track_cb_t btif_scan_track_cb; |
| |
| btif_scan_track_cb.status = status; |
| btif_scan_track_cb.client_if = ref_value; |
| BTIF_TRACE_DEBUG("bta_batch_scan_setup_cb-Status:%x, client_if:%d, evt=%d", |
| status, ref_value, evt); |
| |
| switch(evt) |
| { |
| case BTA_BLE_BATCH_SCAN_ENB_EVT: |
| { |
| upevt = BTA_GATTC_BTH_SCAN_ENB_EVT; |
| break; |
| } |
| |
| case BTA_BLE_BATCH_SCAN_DIS_EVT: |
| { |
| upevt = BTA_GATTC_BTH_SCAN_DIS_EVT; |
| break; |
| } |
| |
| case BTA_BLE_BATCH_SCAN_CFG_STRG_EVT: |
| { |
| upevt = BTA_GATTC_BTH_SCAN_CFG_EVT; |
| break; |
| } |
| |
| case BTA_BLE_BATCH_SCAN_DATA_EVT: |
| { |
| upevt = BTA_GATTC_BTH_SCAN_RD_EVT; |
| break; |
| } |
| |
| case BTA_BLE_BATCH_SCAN_THRES_EVT: |
| { |
| upevt = BTA_GATTC_BTH_SCAN_THR_EVT; |
| break; |
| } |
| |
| default: |
| return; |
| } |
| |
| btif_transfer_context(btif_gattc_upstreams_evt, upevt,(char*) &btif_scan_track_cb, |
| sizeof(btgatt_batch_track_cb_t), NULL); |
| |
| } |
| |
| static void bta_batch_scan_threshold_cb(tBTA_DM_BLE_REF_VALUE ref_value) |
| { |
| btgatt_batch_track_cb_t btif_scan_track_cb; |
| btif_scan_track_cb.status = 0; |
| btif_scan_track_cb.client_if = ref_value; |
| |
| BTIF_TRACE_DEBUG("%s - client_if:%d",__FUNCTION__, ref_value); |
| |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_BTH_SCAN_THR_EVT, |
| (char*) &btif_scan_track_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static void bta_batch_scan_reports_cb(tBTA_DM_BLE_REF_VALUE ref_value, UINT8 report_format, |
| UINT8 num_records, UINT16 data_len, |
| UINT8* p_rep_data, tBTA_STATUS status) |
| { |
| btgatt_batch_track_cb_t btif_scan_track_cb; |
| BTIF_TRACE_DEBUG("%s - client_if:%d, %d, %d, %d",__FUNCTION__, ref_value, status, num_records, |
| data_len); |
| |
| btif_scan_track_cb.status = status; |
| |
| btif_scan_track_cb.client_if = ref_value; |
| btif_scan_track_cb.read_reports.report_format = report_format; |
| btif_scan_track_cb.read_reports.data_len = data_len; |
| btif_scan_track_cb.read_reports.num_records = num_records; |
| |
| if (data_len > 0) |
| { |
| btif_scan_track_cb.read_reports.p_rep_data = GKI_getbuf(data_len); |
| memcpy(btif_scan_track_cb.read_reports.p_rep_data, p_rep_data, data_len); |
| GKI_freebuf(p_rep_data); |
| } |
| |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_BTH_SCAN_RD_EVT, |
| (char*) &btif_scan_track_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| |
| if (data_len > 0) |
| GKI_freebuf(btif_scan_track_cb.read_reports.p_rep_data); |
| } |
| |
| static void bta_scan_results_cb (tBTA_DM_SEARCH_EVT event, tBTA_DM_SEARCH *p_data) |
| { |
| btif_gattc_cb_t btif_cb; |
| uint8_t len; |
| |
| switch (event) |
| { |
| case BTA_DM_INQ_RES_EVT: |
| { |
| bdcpy(btif_cb.bd_addr.address, p_data->inq_res.bd_addr); |
| btif_cb.device_type = p_data->inq_res.device_type; |
| btif_cb.rssi = p_data->inq_res.rssi; |
| btif_cb.addr_type = p_data->inq_res.ble_addr_type; |
| btif_cb.flag = p_data->inq_res.flag; |
| if (p_data->inq_res.p_eir) |
| { |
| memcpy(btif_cb.value, p_data->inq_res.p_eir, 62); |
| if (BTA_CheckEirData(p_data->inq_res.p_eir, BTM_EIR_COMPLETE_LOCAL_NAME_TYPE, |
| &len)) |
| { |
| p_data->inq_res.remt_name_not_required = TRUE; |
| } |
| } |
| } |
| break; |
| |
| case BTA_DM_INQ_CMPL_EVT: |
| { |
| BTIF_TRACE_DEBUG("%s BLE observe complete. Num Resp %d", |
| __FUNCTION__,p_data->inq_cmpl.num_resps); |
| return; |
| } |
| |
| default: |
| BTIF_TRACE_WARNING("%s : Unknown event 0x%x", __FUNCTION__, event); |
| return; |
| } |
| btif_transfer_context(btif_gattc_upstreams_evt, BTIF_GATT_OBSERVE_EVT, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static void bta_track_adv_event_cb(int filt_index, tBLE_ADDR_TYPE addr_type, BD_ADDR bda, |
| int adv_state, tBTA_DM_BLE_REF_VALUE ref_value) |
| { |
| btgatt_batch_track_cb_t btif_scan_track_cb; |
| BTIF_TRACE_DEBUG("%s :%d, %d, %d, %d", |
| __FUNCTION__,filt_index, addr_type, adv_state, ref_value); |
| btif_scan_track_cb.filt_index = filt_index; |
| btif_scan_track_cb.addr_type = addr_type; |
| memcpy(btif_scan_track_cb.bd_addr.address, bda, sizeof(BD_ADDR)); |
| btif_scan_track_cb.client_if = ref_value; |
| btif_scan_track_cb.adv_state = adv_state; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_ADV_VSC_EVT, |
| (char*) &btif_scan_track_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| } |
| |
| static void btm_read_rssi_cb (tBTM_RSSI_RESULTS *p_result) |
| { |
| btif_gattc_cb_t btif_cb; |
| |
| bdcpy(btif_cb.bd_addr.address, p_result->rem_bda); |
| btif_cb.rssi = p_result->rssi; |
| btif_cb.status = p_result->status; |
| btif_cb.client_if = rssi_request_client_if; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTIF_GATTC_RSSI_EVT, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static void bta_scan_filt_cfg_cb(tBTA_DM_BLE_PF_ACTION action, tBTA_DM_BLE_SCAN_COND_OP cfg_op, |
| tBTA_DM_BLE_PF_AVBL_SPACE avbl_space, tBTA_STATUS status, |
| tBTA_DM_BLE_REF_VALUE ref_value) |
| { |
| btgatt_adv_filter_cb_t btif_cb; |
| btif_cb.status = status; |
| btif_cb.action = action; |
| btif_cb.cond_op = cfg_op; |
| btif_cb.avbl_space = avbl_space; |
| btif_cb.client_if = ref_value; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_SCAN_FLT_CFG_EVT, |
| (char*) &btif_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static void bta_scan_filt_param_setup_cb(UINT8 action_type, |
| tBTA_DM_BLE_PF_AVBL_SPACE avbl_space, |
| tBTA_DM_BLE_REF_VALUE ref_value, tBTA_STATUS status) |
| { |
| btgatt_adv_filter_cb_t btif_cb; |
| |
| btif_cb.status = status; |
| btif_cb.action = action_type; |
| btif_cb.client_if = ref_value; |
| btif_cb.avbl_space = avbl_space; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_SCAN_FLT_PARAM_EVT, |
| (char*) &btif_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static void bta_scan_filt_status_cb(UINT8 action, tBTA_STATUS status, |
| tBTA_DM_BLE_REF_VALUE ref_value) |
| { |
| btgatt_adv_filter_cb_t btif_cb; |
| |
| btif_cb.status = status; |
| btif_cb.action = action; |
| btif_cb.client_if = ref_value; |
| btif_transfer_context(btif_gattc_upstreams_evt, BTA_GATTC_SCAN_FLT_STATUS_EVT, |
| (char*) &btif_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static void btgattc_handle_event(uint16_t event, char* p_param) |
| { |
| tBTA_GATT_STATUS status; |
| tBT_UUID uuid; |
| tBTA_GATT_SRVC_ID srvc_id; |
| tGATT_CHAR_PROP out_char_prop; |
| tBTA_GATTC_CHAR_ID in_char_id; |
| tBTA_GATTC_CHAR_ID out_char_id; |
| tBTA_GATTC_CHAR_DESCR_ID in_char_descr_id; |
| tBTA_GATTC_CHAR_DESCR_ID out_char_descr_id; |
| tBTA_GATTC_INCL_SVC_ID in_incl_svc_id; |
| tBTA_GATTC_INCL_SVC_ID out_incl_svc_id; |
| tBTA_GATT_UNFMT descr_val; |
| |
| btif_gattc_cb_t* p_cb = (btif_gattc_cb_t*) p_param; |
| if (!p_cb) return; |
| |
| BTIF_TRACE_EVENT("%s: Event %d", __FUNCTION__, event); |
| |
| switch (event) |
| { |
| case BTIF_GATTC_REGISTER_APP: |
| btif_to_bta_uuid(&uuid, &p_cb->uuid); |
| btif_gattc_init_multi_adv_cb(); |
| BTA_GATTC_AppRegister(&uuid, bta_gattc_cback); |
| break; |
| |
| case BTIF_GATTC_UNREGISTER_APP: |
| btif_gattc_clear_clientif(p_cb->client_if); |
| btif_gattc_destroy_multi_adv_cb(); |
| BTA_GATTC_AppDeregister(p_cb->client_if); |
| break; |
| |
| case BTIF_GATTC_SCAN_START: |
| btif_gattc_init_dev_cb(); |
| BTA_DmBleObserve(TRUE, 0, bta_scan_results_cb); |
| break; |
| |
| case BTIF_GATTC_SCAN_STOP: |
| BTA_DmBleObserve(FALSE, 0, 0); |
| break; |
| |
| case BTIF_GATTC_OPEN: |
| { |
| // Ensure device is in inquiry database |
| int addr_type = 0; |
| int device_type = 0; |
| tBTA_GATT_TRANSPORT transport = BTA_GATT_TRANSPORT_LE; |
| |
| if (btif_get_device_type(p_cb->bd_addr.address, &addr_type, &device_type) == TRUE |
| && device_type != BT_DEVICE_TYPE_BREDR) |
| BTA_DmAddBleDevice(p_cb->bd_addr.address, addr_type, device_type); |
| |
| // Mark background connections |
| if (!p_cb->is_direct) |
| BTA_DmBleSetBgConnType(BTM_BLE_CONN_AUTO, NULL); |
| |
| switch(device_type) |
| { |
| case BT_DEVICE_TYPE_BREDR: |
| transport = BTA_GATT_TRANSPORT_BR_EDR; |
| break; |
| |
| case BT_DEVICE_TYPE_BLE: |
| transport = BTA_GATT_TRANSPORT_LE; |
| break; |
| |
| case BT_DEVICE_TYPE_DUMO: |
| if ((p_cb->transport == GATT_TRANSPORT_LE) && |
| (btif_storage_is_dmt_supported_device(&(p_cb->bd_addr)) == TRUE)) |
| transport = BTA_GATT_TRANSPORT_LE; |
| else |
| transport = BTA_GATT_TRANSPORT_BR_EDR; |
| break; |
| } |
| |
| // Connect! |
| BTIF_TRACE_DEBUG ("BTA_GATTC_Open Transport = %d, dev type = %d", |
| transport, device_type); |
| BTA_GATTC_Open(p_cb->client_if, p_cb->bd_addr.address, p_cb->is_direct, transport); |
| break; |
| } |
| |
| case BTIF_GATTC_CLOSE: |
| // Disconnect established connections |
| if (p_cb->conn_id != 0) |
| BTA_GATTC_Close(p_cb->conn_id); |
| else |
| BTA_GATTC_CancelOpen(p_cb->client_if, p_cb->bd_addr.address, TRUE); |
| |
| // Cancel pending background connections (remove from whitelist) |
| BTA_GATTC_CancelOpen(p_cb->client_if, p_cb->bd_addr.address, FALSE); |
| break; |
| |
| case BTIF_GATTC_SEARCH_SERVICE: |
| { |
| if (p_cb->search_all) |
| { |
| BTA_GATTC_ServiceSearchRequest(p_cb->conn_id, NULL); |
| } else { |
| btif_to_bta_uuid(&uuid, &p_cb->uuid); |
| BTA_GATTC_ServiceSearchRequest(p_cb->conn_id, &uuid); |
| } |
| break; |
| } |
| |
| case BTIF_GATTC_GET_FIRST_CHAR: |
| { |
| btgatt_gatt_id_t char_id; |
| btif_to_bta_srvc_id(&srvc_id, &p_cb->srvc_id); |
| status = BTA_GATTC_GetFirstChar(p_cb->conn_id, &srvc_id, NULL, |
| &out_char_id, &out_char_prop); |
| |
| if (status == 0) |
| bta_to_btif_gatt_id(&char_id, &out_char_id.char_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_characteristic_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &char_id, out_char_prop); |
| break; |
| } |
| |
| case BTIF_GATTC_GET_NEXT_CHAR: |
| { |
| btgatt_gatt_id_t char_id; |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| status = BTA_GATTC_GetNextChar(p_cb->conn_id, &in_char_id, NULL, |
| &out_char_id, &out_char_prop); |
| |
| if (status == 0) |
| bta_to_btif_gatt_id(&char_id, &out_char_id.char_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_characteristic_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &char_id, out_char_prop); |
| break; |
| } |
| |
| case BTIF_GATTC_GET_FIRST_CHAR_DESCR: |
| { |
| btgatt_gatt_id_t descr_id; |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| status = BTA_GATTC_GetFirstCharDescr(p_cb->conn_id, &in_char_id, NULL, |
| &out_char_descr_id); |
| |
| if (status == 0) |
| bta_to_btif_gatt_id(&descr_id, &out_char_descr_id.descr_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_descriptor_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &p_cb->char_id, &descr_id); |
| break; |
| } |
| |
| case BTIF_GATTC_GET_NEXT_CHAR_DESCR: |
| { |
| btgatt_gatt_id_t descr_id; |
| btif_to_bta_srvc_id(&in_char_descr_id.char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.char_id.char_id, &p_cb->char_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.descr_id, &p_cb->descr_id); |
| |
| status = BTA_GATTC_GetNextCharDescr(p_cb->conn_id, &in_char_descr_id |
| , NULL, &out_char_descr_id); |
| |
| if (status == 0) |
| bta_to_btif_gatt_id(&descr_id, &out_char_descr_id.descr_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_descriptor_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &p_cb->char_id, &descr_id); |
| break; |
| } |
| |
| case BTIF_GATTC_GET_FIRST_INCL_SERVICE: |
| { |
| btgatt_srvc_id_t incl_srvc_id; |
| btif_to_bta_srvc_id(&srvc_id, &p_cb->srvc_id); |
| |
| status = BTA_GATTC_GetFirstIncludedService(p_cb->conn_id, |
| &srvc_id, NULL, &out_incl_svc_id); |
| |
| bta_to_btif_srvc_id(&incl_srvc_id, &out_incl_svc_id.incl_svc_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_included_service_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &incl_srvc_id); |
| break; |
| } |
| |
| case BTIF_GATTC_GET_NEXT_INCL_SERVICE: |
| { |
| btgatt_srvc_id_t incl_srvc_id; |
| btif_to_bta_srvc_id(&in_incl_svc_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_srvc_id(&in_incl_svc_id.incl_svc_id, &p_cb->incl_srvc_id); |
| |
| status = BTA_GATTC_GetNextIncludedService(p_cb->conn_id, |
| &in_incl_svc_id, NULL, &out_incl_svc_id); |
| |
| bta_to_btif_srvc_id(&incl_srvc_id, &out_incl_svc_id.incl_svc_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->get_included_service_cb, |
| p_cb->conn_id, status, &p_cb->srvc_id, |
| &incl_srvc_id); |
| break; |
| } |
| |
| case BTIF_GATTC_READ_CHAR: |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| BTA_GATTC_ReadCharacteristic(p_cb->conn_id, &in_char_id, p_cb->auth_req); |
| break; |
| |
| case BTIF_GATTC_READ_CHAR_DESCR: |
| btif_to_bta_srvc_id(&in_char_descr_id.char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.char_id.char_id, &p_cb->char_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.descr_id, &p_cb->descr_id); |
| |
| BTA_GATTC_ReadCharDescr(p_cb->conn_id, &in_char_descr_id, p_cb->auth_req); |
| break; |
| |
| case BTIF_GATTC_WRITE_CHAR: |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| BTA_GATTC_WriteCharValue(p_cb->conn_id, &in_char_id, |
| p_cb->write_type, |
| p_cb->len, |
| p_cb->value, |
| p_cb->auth_req); |
| break; |
| |
| case BTIF_GATTC_WRITE_CHAR_DESCR: |
| btif_to_bta_srvc_id(&in_char_descr_id.char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.char_id.char_id, &p_cb->char_id); |
| btif_to_bta_gatt_id(&in_char_descr_id.descr_id, &p_cb->descr_id); |
| |
| descr_val.len = p_cb->len; |
| descr_val.p_value = p_cb->value; |
| |
| BTA_GATTC_WriteCharDescr(p_cb->conn_id, &in_char_descr_id, |
| p_cb->write_type, &descr_val, |
| p_cb->auth_req); |
| break; |
| |
| case BTIF_GATTC_EXECUTE_WRITE: |
| BTA_GATTC_ExecuteWrite(p_cb->conn_id, p_cb->action); |
| break; |
| |
| case BTIF_GATTC_REG_FOR_NOTIFICATION: |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| status = BTA_GATTC_RegisterForNotifications(p_cb->client_if, |
| p_cb->bd_addr.address, &in_char_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->register_for_notification_cb, |
| p_cb->conn_id, 1, status, &p_cb->srvc_id, |
| &p_cb->char_id); |
| break; |
| |
| case BTIF_GATTC_DEREG_FOR_NOTIFICATION: |
| btif_to_bta_srvc_id(&in_char_id.srvc_id, &p_cb->srvc_id); |
| btif_to_bta_gatt_id(&in_char_id.char_id, &p_cb->char_id); |
| |
| status = BTA_GATTC_DeregisterForNotifications(p_cb->client_if, |
| p_cb->bd_addr.address, &in_char_id); |
| |
| HAL_CBACK(bt_gatt_callbacks, client->register_for_notification_cb, |
| p_cb->conn_id, 0, status, &p_cb->srvc_id, |
| &p_cb->char_id); |
| break; |
| |
| case BTIF_GATTC_REFRESH: |
| BTA_GATTC_Refresh(p_cb->bd_addr.address); |
| break; |
| |
| case BTIF_GATTC_READ_RSSI: |
| rssi_request_client_if = p_cb->client_if; |
| BTM_ReadRSSI (p_cb->bd_addr.address, (tBTM_CMPL_CB *)btm_read_rssi_cb); |
| break; |
| |
| case BTIF_GATTC_SCAN_FILTER_PARAM_SETUP: |
| { |
| btgatt_adv_filter_cb_t *p_adv_filt_cb = (btgatt_adv_filter_cb_t *) p_param; |
| if (1 == p_adv_filt_cb->adv_filt_param.dely_mode) |
| BTA_DmBleTrackAdvertiser(p_adv_filt_cb->client_if, bta_track_adv_event_cb); |
| BTA_DmBleScanFilterSetup(p_adv_filt_cb->action, p_adv_filt_cb->filt_index, |
| &p_adv_filt_cb->adv_filt_param, NULL, bta_scan_filt_param_setup_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_SCAN_FILTER_CONFIG: |
| { |
| btgatt_adv_filter_cb_t *p_adv_filt_cb = (btgatt_adv_filter_cb_t *) p_param; |
| tBTA_DM_BLE_PF_COND_PARAM cond; |
| memset(&cond, 0, sizeof(cond)); |
| |
| switch (p_adv_filt_cb->filt_type) |
| { |
| case BTA_DM_BLE_PF_ADDR_FILTER: // 0 |
| bdcpy(cond.target_addr.bda, p_adv_filt_cb->bd_addr.address); |
| cond.target_addr.type = p_adv_filt_cb->addr_type; |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| |
| case BTA_DM_BLE_PF_SRVC_DATA: // 1 |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| NULL, bta_scan_filt_cfg_cb, p_adv_filt_cb->client_if); |
| break; |
| |
| case BTA_DM_BLE_PF_SRVC_UUID: // 2 |
| { |
| tBTA_DM_BLE_PF_COND_MASK uuid_mask; |
| |
| cond.srvc_uuid.p_target_addr = NULL; |
| cond.srvc_uuid.cond_logic = BTA_DM_BLE_PF_LOGIC_AND; |
| btif_to_bta_uuid(&cond.srvc_uuid.uuid, &p_adv_filt_cb->uuid); |
| |
| cond.srvc_uuid.p_uuid_mask = NULL; |
| if (p_adv_filt_cb->has_mask) |
| { |
| btif_to_bta_uuid_mask(&uuid_mask, &p_adv_filt_cb->uuid_mask); |
| cond.srvc_uuid.p_uuid_mask = &uuid_mask; |
| } |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTA_DM_BLE_PF_SRVC_SOL_UUID: // 3 |
| { |
| cond.solicitate_uuid.p_target_addr = NULL; |
| cond.solicitate_uuid.cond_logic = BTA_DM_BLE_PF_LOGIC_AND; |
| btif_to_bta_uuid(&cond.solicitate_uuid.uuid, &p_adv_filt_cb->uuid); |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTA_DM_BLE_PF_LOCAL_NAME: // 4 |
| { |
| cond.local_name.data_len = p_adv_filt_cb->value_len; |
| cond.local_name.p_data = p_adv_filt_cb->value; |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTA_DM_BLE_PF_MANU_DATA: // 5 |
| { |
| cond.manu_data.company_id = p_adv_filt_cb->conn_id; |
| cond.manu_data.company_id_mask = p_adv_filt_cb->company_id_mask; |
| cond.manu_data.data_len = p_adv_filt_cb->value_len; |
| cond.manu_data.p_pattern = p_adv_filt_cb->value; |
| cond.manu_data.p_pattern_mask = p_adv_filt_cb->value_mask; |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTA_DM_BLE_PF_SRVC_DATA_PATTERN: //6 |
| { |
| cond.srvc_data.data_len = p_adv_filt_cb->value_len; |
| cond.srvc_data.p_pattern = p_adv_filt_cb->value; |
| cond.srvc_data.p_pattern_mask = p_adv_filt_cb->value_mask; |
| BTA_DmBleCfgFilterCondition(p_adv_filt_cb->action, |
| p_adv_filt_cb->filt_type, p_adv_filt_cb->filt_index, |
| &cond, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| default: |
| BTIF_TRACE_ERROR("%s: Unknown filter type (%d)!", __FUNCTION__, p_cb->action); |
| break; |
| } |
| break; |
| } |
| |
| case BTIF_GATTC_SCAN_FILTER_CLEAR: |
| { |
| btgatt_adv_filter_cb_t *p_adv_filt_cb = (btgatt_adv_filter_cb_t *) p_param; |
| BTA_DmBleCfgFilterCondition(BTA_DM_BLE_SCAN_COND_CLEAR, BTA_DM_BLE_PF_TYPE_ALL, |
| p_adv_filt_cb->filt_index, NULL, bta_scan_filt_cfg_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_SCAN_FILTER_ENABLE: |
| { |
| btgatt_adv_filter_cb_t *p_adv_filt_cb = (btgatt_adv_filter_cb_t *) p_param; |
| BTA_DmEnableScanFilter(p_adv_filt_cb->action, bta_scan_filt_status_cb, |
| p_adv_filt_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_LISTEN: |
| #if (defined(BLE_PERIPHERAL_MODE_SUPPORT) && (BLE_PERIPHERAL_MODE_SUPPORT == TRUE)) |
| BTA_GATTC_Listen(p_cb->client_if, p_cb->start, NULL); |
| #else |
| BTA_GATTC_Broadcast(p_cb->client_if, p_cb->start); |
| #endif |
| break; |
| |
| case BTIF_GATTC_SET_ADV_DATA: |
| { |
| btif_adv_data_t *p_adv_data = (btif_adv_data_t*) p_param; |
| int cbindex = CLNT_IF_IDX; |
| if (cbindex >= 0 && NULL != p_adv_data) |
| { |
| btgatt_multi_adv_common_data *p_multi_adv_data_cb = btif_obtain_multi_adv_data_cb(); |
| if (!btif_gattc_copy_datacb(cbindex, p_adv_data, false)) |
| return; |
| |
| if (!p_adv_data->set_scan_rsp) |
| { |
| BTA_DmBleSetAdvConfig(p_multi_adv_data_cb->inst_cb[cbindex].mask, |
| &p_multi_adv_data_cb->inst_cb[cbindex].data, bta_gattc_set_adv_data_cback); |
| } |
| else |
| { |
| BTA_DmBleSetScanRsp(p_multi_adv_data_cb->inst_cb[cbindex].mask, |
| &p_multi_adv_data_cb->inst_cb[cbindex].data, bta_gattc_set_adv_data_cback); |
| } |
| break; |
| } |
| } |
| |
| case BTIF_GATTC_ADV_INSTANCE_ENABLE: |
| { |
| btgatt_multi_adv_inst_cb *p_inst_cb = (btgatt_multi_adv_inst_cb*) p_param; |
| |
| int cbindex = -1, arrindex = -1; |
| |
| arrindex = btif_multi_adv_add_instid_map(p_inst_cb->client_if,INVALID_ADV_INST, true); |
| if (arrindex >= 0) |
| cbindex = btif_gattc_obtain_idx_for_datacb(p_inst_cb->client_if, CLNT_IF_IDX); |
| |
| if (cbindex >= 0 && arrindex >= 0) |
| { |
| btgatt_multi_adv_common_data *p_multi_adv_data_cb = btif_obtain_multi_adv_data_cb(); |
| memcpy(&p_multi_adv_data_cb->inst_cb[cbindex].param, |
| &p_inst_cb->param, sizeof(tBTA_BLE_ADV_PARAMS)); |
| BTIF_TRACE_DEBUG("%s, client_if value: %d", __FUNCTION__, |
| p_multi_adv_data_cb->clntif_map[arrindex + arrindex]); |
| BTA_BleEnableAdvInstance(&(p_multi_adv_data_cb->inst_cb[cbindex].param), |
| bta_gattc_multi_adv_cback, |
| &(p_multi_adv_data_cb->clntif_map[arrindex + arrindex])); |
| } |
| else |
| { |
| /* let the error propagate up from BTA layer */ |
| BTIF_TRACE_ERROR("%s invalid index in BTIF_GATTC_ENABLE_ADV",__FUNCTION__); |
| BTA_BleEnableAdvInstance(&p_inst_cb->param, bta_gattc_multi_adv_cback, NULL); |
| } |
| break; |
| } |
| |
| case BTIF_GATTC_ADV_INSTANCE_UPDATE: |
| { |
| btgatt_multi_adv_inst_cb *p_inst_cb = (btgatt_multi_adv_inst_cb*) p_param; |
| int inst_id = btif_multi_adv_instid_for_clientif(p_inst_cb->client_if); |
| int cbindex = btif_gattc_obtain_idx_for_datacb(p_inst_cb->client_if, CLNT_IF_IDX); |
| if (inst_id >= 0 && cbindex >= 0 && NULL != p_inst_cb) |
| { |
| btgatt_multi_adv_common_data *p_multi_adv_data_cb = btif_obtain_multi_adv_data_cb(); |
| memcpy(&p_multi_adv_data_cb->inst_cb[cbindex].param, &p_inst_cb->param, |
| sizeof(tBTA_BLE_ADV_PARAMS)); |
| BTA_BleUpdateAdvInstParam((UINT8)inst_id, |
| &(p_multi_adv_data_cb->inst_cb[cbindex].param)); |
| } |
| else |
| BTIF_TRACE_ERROR("%s invalid index in BTIF_GATTC_UPDATE_ADV", __FUNCTION__); |
| break; |
| } |
| |
| case BTIF_GATTC_ADV_INSTANCE_SET_DATA: |
| { |
| btif_adv_data_t *p_adv_data = (btif_adv_data_t*) p_param; |
| int cbindex = btif_gattc_obtain_idx_for_datacb(p_adv_data->client_if, CLNT_IF_IDX); |
| int inst_id = btif_multi_adv_instid_for_clientif(p_adv_data->client_if); |
| if (inst_id < 0 || cbindex < 0) |
| { |
| BTIF_TRACE_ERROR("%s invalid index in BTIF_GATTC_SETADV_INST_DATA", __FUNCTION__); |
| return; |
| } |
| |
| if (!btif_gattc_copy_datacb(cbindex, p_adv_data, true)) |
| return; |
| |
| btgatt_multi_adv_common_data *p_multi_adv_data_cb = btif_obtain_multi_adv_data_cb(); |
| BTA_BleCfgAdvInstData((UINT8)inst_id, p_multi_adv_data_cb->inst_cb[cbindex].is_scan_rsp, |
| p_multi_adv_data_cb->inst_cb[cbindex].mask, |
| &p_multi_adv_data_cb->inst_cb[cbindex].data); |
| break; |
| } |
| |
| case BTIF_GATTC_ADV_INSTANCE_DISABLE: |
| { |
| btgatt_multi_adv_inst_cb *p_inst_cb = (btgatt_multi_adv_inst_cb*) p_param; |
| int inst_id = btif_multi_adv_instid_for_clientif(p_inst_cb->client_if); |
| if (inst_id >=0) |
| BTA_BleDisableAdvInstance((UINT8)inst_id); |
| else |
| BTIF_TRACE_ERROR("%s invalid instance ID in BTIF_GATTC_DISABLE_ADV",__FUNCTION__); |
| break; |
| } |
| |
| case BTIF_GATTC_CONFIGURE_MTU: |
| BTA_GATTC_ConfigureMTU(p_cb->conn_id, p_cb->len); |
| break; |
| |
| case BTIF_GATTC_CONN_PARAM_UPDT: |
| { |
| btif_conn_param_cb_t *p_conn_param_cb = (btif_conn_param_cb_t*) p_param; |
| if (BTA_DmGetConnectionState(p_conn_param_cb->bd_addr.address)) |
| { |
| BTA_DmBleUpdateConnectionParams(p_conn_param_cb->bd_addr.address, |
| p_conn_param_cb->min_interval, p_conn_param_cb->max_interval, |
| p_conn_param_cb->latency, p_conn_param_cb->timeout); |
| } else { |
| BTA_DmSetBlePrefConnParams(p_conn_param_cb->bd_addr.address, |
| p_conn_param_cb->min_interval, p_conn_param_cb->max_interval, |
| p_conn_param_cb->latency, p_conn_param_cb->timeout); |
| } |
| break; |
| } |
| |
| case BTIF_GATTC_SET_SCAN_PARAMS: |
| BTM_BleSetScanParams(p_cb->scan_interval, p_cb->scan_window, BTM_BLE_SCAN_MODE_ACTI); |
| break; |
| |
| case BTIF_GATTC_CONFIG_STORAGE_PARAMS: |
| { |
| btgatt_batch_track_cb_t *p_scan_track_cb = (btgatt_batch_track_cb_t *) p_param; |
| BTA_DmBleSetStorageParams(p_scan_track_cb->batch_scan_full_max, |
| p_scan_track_cb->batch_scan_trunc_max, p_scan_track_cb->batch_scan_notify_threshold, |
| bta_batch_scan_setup_cb, bta_batch_scan_threshold_cb, bta_batch_scan_reports_cb, |
| (tBTA_DM_BLE_REF_VALUE) p_scan_track_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_ENABLE_BATCH_SCAN: |
| { |
| btgatt_batch_track_cb_t *p_scan_track_cb = (btgatt_batch_track_cb_t *) p_param; |
| BTA_DmBleEnableBatchScan(p_scan_track_cb->scan_mode, p_scan_track_cb->scan_interval, |
| p_scan_track_cb->scan_window, p_scan_track_cb->discard_rule, |
| p_scan_track_cb->addr_type, p_scan_track_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_DISABLE_BATCH_SCAN: |
| { |
| btgatt_batch_track_cb_t *p_scan_track_cb = (btgatt_batch_track_cb_t *) p_param; |
| BTA_DmBleDisableBatchScan(p_scan_track_cb->client_if); |
| break; |
| } |
| |
| case BTIF_GATTC_READ_BATCH_SCAN_REPORTS: |
| { |
| btgatt_batch_track_cb_t *p_scan_track_cb = (btgatt_batch_track_cb_t *) p_param; |
| BTA_DmBleReadScanReports(p_scan_track_cb->scan_mode, p_scan_track_cb->client_if); |
| break; |
| } |
| |
| default: |
| BTIF_TRACE_ERROR("%s: Unknown event (%d)!", __FUNCTION__, event); |
| break; |
| } |
| } |
| |
| /******************************************************************************* |
| ** Client API Functions |
| ********************************************************************************/ |
| |
| static bt_status_t btif_gattc_register_app(bt_uuid_t *uuid) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| memcpy(&btif_cb.uuid, uuid, sizeof(bt_uuid_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_REGISTER_APP, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_unregister_app(int client_if ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_UNREGISTER_APP, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_scan( bool start ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| return btif_transfer_context(btgattc_handle_event, start ? BTIF_GATTC_SCAN_START : BTIF_GATTC_SCAN_STOP, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_open(int client_if, const bt_bdaddr_t *bd_addr, |
| bool is_direct,int transport) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| btif_cb.is_direct = is_direct ? 1 : 0; |
| btif_cb.transport = (btgatt_transport_t)transport; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_OPEN, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_close( int client_if, const bt_bdaddr_t *bd_addr, int conn_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_CLOSE, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_listen(int client_if, bool start) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| btif_cb.start = start ? 1 : 0; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_LISTEN, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_set_adv_data(int client_if, bool set_scan_rsp, bool include_name, |
| bool include_txpower, int min_interval, int max_interval, int appearance, |
| uint16_t manufacturer_len, char* manufacturer_data, |
| uint16_t service_data_len, char* service_data, |
| uint16_t service_uuid_len, char* service_uuid) |
| { |
| CHECK_BTGATT_INIT(); |
| bt_status_t status =0; |
| |
| btif_adv_data_t adv_data; |
| |
| btif_gattc_adv_data_packager(client_if, set_scan_rsp, include_name, |
| include_txpower, min_interval, max_interval, appearance, manufacturer_len, |
| manufacturer_data, service_data_len, service_data, service_uuid_len, service_uuid, |
| &adv_data); |
| |
| status = btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SET_ADV_DATA, |
| (char*) &adv_data, sizeof(btif_adv_data_t), NULL); |
| |
| if (NULL != adv_data.p_service_data) |
| GKI_freebuf(adv_data.p_service_data); |
| |
| if (NULL != adv_data.p_service_uuid) |
| GKI_freebuf(adv_data.p_service_uuid); |
| |
| if (NULL != adv_data.p_manufacturer_data) |
| GKI_freebuf(adv_data.p_manufacturer_data); |
| |
| return status; |
| } |
| |
| static bt_status_t btif_gattc_refresh( int client_if, const bt_bdaddr_t *bd_addr ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_REFRESH, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_search_service(int conn_id, bt_uuid_t *filter_uuid ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.search_all = filter_uuid ? 0 : 1; |
| if (filter_uuid) |
| memcpy(&btif_cb.uuid, filter_uuid, sizeof(bt_uuid_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SEARCH_SERVICE, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_get_characteristic( int conn_id |
| , btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *start_char_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| if (start_char_id) |
| { |
| memcpy(&btif_cb.char_id, start_char_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_NEXT_CHAR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_FIRST_CHAR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_get_descriptor( int conn_id |
| , btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id |
| , btgatt_gatt_id_t *start_descr_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| if (start_descr_id) |
| { |
| memcpy(&btif_cb.descr_id, start_descr_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_NEXT_CHAR_DESCR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_FIRST_CHAR_DESCR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_get_included_service(int conn_id, btgatt_srvc_id_t *srvc_id, |
| btgatt_srvc_id_t *start_incl_srvc_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| if (start_incl_srvc_id) |
| { |
| memcpy(&btif_cb.incl_srvc_id, start_incl_srvc_id, sizeof(btgatt_srvc_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_NEXT_INCL_SERVICE, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_GET_FIRST_INCL_SERVICE, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_read_char(int conn_id, btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id, int auth_req ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.auth_req = (uint8_t) auth_req; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_READ_CHAR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_read_char_descr(int conn_id, btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id, |
| btgatt_gatt_id_t* descr_id, |
| int auth_req ) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.auth_req = (uint8_t) auth_req; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| memcpy(&btif_cb.descr_id, descr_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_READ_CHAR_DESCR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_write_char(int conn_id, btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id, int write_type, |
| int len, int auth_req, char* p_value) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.auth_req = (uint8_t) auth_req; |
| btif_cb.write_type = (uint8_t) write_type; |
| btif_cb.len = len > BTGATT_MAX_ATTR_LEN ? BTGATT_MAX_ATTR_LEN : len; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| memcpy(btif_cb.value, p_value, btif_cb.len); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_WRITE_CHAR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_write_char_descr(int conn_id, btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id, |
| btgatt_gatt_id_t* descr_id, |
| int write_type, int len, int auth_req, |
| char* p_value) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.auth_req = (uint8_t) auth_req; |
| btif_cb.write_type = (uint8_t) write_type; |
| btif_cb.len = len > BTGATT_MAX_ATTR_LEN ? BTGATT_MAX_ATTR_LEN : len; |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| memcpy(&btif_cb.descr_id, descr_id, sizeof(btgatt_gatt_id_t)); |
| memcpy(btif_cb.value, p_value, btif_cb.len); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_WRITE_CHAR_DESCR, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_execute_write(int conn_id, int execute) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = (uint16_t) conn_id; |
| btif_cb.action = (uint8_t) execute; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_EXECUTE_WRITE, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_reg_for_notification(int client_if, const bt_bdaddr_t *bd_addr, |
| btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_REG_FOR_NOTIFICATION, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_dereg_for_notification(int client_if, const bt_bdaddr_t *bd_addr, |
| btgatt_srvc_id_t* srvc_id, |
| btgatt_gatt_id_t* char_id) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| memcpy(&btif_cb.srvc_id, srvc_id, sizeof(btgatt_srvc_id_t)); |
| memcpy(&btif_cb.char_id, char_id, sizeof(btgatt_gatt_id_t)); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_DEREG_FOR_NOTIFICATION, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_read_remote_rssi(int client_if, const bt_bdaddr_t *bd_addr) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.client_if = (uint8_t) client_if; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_READ_RSSI, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_configure_mtu(int conn_id, int mtu) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.conn_id = conn_id; |
| btif_cb.len = mtu; // Re-use len field |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_CONFIGURE_MTU, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_conn_parameter_update(const bt_bdaddr_t *bd_addr, int min_interval, |
| int max_interval, int latency, int timeout) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_conn_param_cb_t btif_cb; |
| btif_cb.min_interval = min_interval; |
| btif_cb.max_interval = max_interval; |
| btif_cb.latency = latency; |
| btif_cb.timeout = timeout; |
| bdcpy(btif_cb.bd_addr.address, bd_addr->address); |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_CONN_PARAM_UPDT, |
| (char*) &btif_cb, sizeof(btif_conn_param_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_scan_filter_param_setup(int client_if, int action, |
| int filt_index, int feat_seln, int list_logic_type, int filt_logic_type, int rssi_high_thres, |
| int rssi_low_thres, int dely_mode, int found_timeout, int lost_timeout, int found_timeout_cnt) |
| { |
| CHECK_BTGATT_INIT(); |
| BTIF_TRACE_DEBUG("%s", __FUNCTION__); |
| btgatt_adv_filter_cb_t btif_filt_cb; |
| btif_filt_cb.action = action; |
| btif_filt_cb.client_if = client_if; |
| btif_filt_cb.filt_index = filt_index; |
| btif_filt_cb.adv_filt_param.feat_seln = feat_seln; |
| btif_filt_cb.adv_filt_param.list_logic_type = list_logic_type; |
| btif_filt_cb.adv_filt_param.filt_logic_type = filt_logic_type; |
| btif_filt_cb.adv_filt_param.rssi_high_thres = rssi_high_thres; |
| btif_filt_cb.adv_filt_param.rssi_low_thres = rssi_low_thres; |
| btif_filt_cb.adv_filt_param.dely_mode = dely_mode; |
| btif_filt_cb.adv_filt_param.found_timeout = found_timeout; |
| btif_filt_cb.adv_filt_param.lost_timeout = lost_timeout; |
| btif_filt_cb.adv_filt_param.found_timeout_cnt = found_timeout_cnt; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SCAN_FILTER_PARAM_SETUP, |
| (char*) &btif_filt_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_scan_filter_add_remove(int client_if, int action, |
| int filt_type, int filt_index, int company_id, |
| int company_id_mask, const bt_uuid_t *p_uuid, |
| const bt_uuid_t *p_uuid_mask, const bt_bdaddr_t *bd_addr, |
| char addr_type, int data_len, char* p_data, int mask_len, |
| char* p_mask) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_adv_filter_cb_t btif_filt_cb; |
| BTIF_TRACE_DEBUG("%s, %d, %d", __FUNCTION__, action, filt_type); |
| |
| /* If data is passed, both mask and data have to be the same length */ |
| if (data_len != mask_len && NULL != p_data && NULL != p_mask) |
| return BT_STATUS_PARM_INVALID; |
| |
| btif_filt_cb.client_if = client_if; |
| btif_filt_cb.action = action; |
| btif_filt_cb.filt_index = filt_index; |
| btif_filt_cb.filt_type = filt_type; |
| btif_filt_cb.conn_id = company_id; |
| btif_filt_cb.company_id_mask = company_id_mask ? company_id_mask : 0xFFFF; |
| if (bd_addr) |
| bdcpy(btif_filt_cb.bd_addr.address, bd_addr->address); |
| |
| btif_filt_cb.addr_type = addr_type; |
| btif_filt_cb.has_mask = (p_uuid_mask != NULL); |
| |
| if (p_uuid != NULL) |
| memcpy(&btif_filt_cb.uuid, p_uuid, sizeof(bt_uuid_t)); |
| if (p_uuid_mask != NULL) |
| memcpy(&btif_filt_cb.uuid_mask, p_uuid_mask, sizeof(bt_uuid_t)); |
| if (p_data != NULL && data_len != 0) |
| { |
| memcpy(btif_filt_cb.value, p_data, data_len); |
| btif_filt_cb.value_len = data_len; |
| memcpy(btif_filt_cb.value_mask, p_mask, mask_len); |
| btif_filt_cb.value_mask_len = mask_len; |
| } |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SCAN_FILTER_CONFIG, |
| (char*) &btif_filt_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_scan_filter_clear(int client_if, int filt_index) |
| { |
| CHECK_BTGATT_INIT(); |
| BTIF_TRACE_DEBUG("%s, %d", __FUNCTION__, filt_index); |
| |
| btgatt_adv_filter_cb_t btif_filt_cb; |
| btif_filt_cb.client_if = client_if; |
| btif_filt_cb.filt_index = filt_index; |
| btif_filt_cb.action = BTA_DM_BLE_SCAN_COND_CLEAR; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SCAN_FILTER_CONFIG, |
| (char*) &btif_filt_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_scan_filter_enable(int client_if, bool enable) |
| { |
| int action = 0; |
| CHECK_BTGATT_INIT(); |
| BTIF_TRACE_DEBUG("%s, %d", __FUNCTION__, enable); |
| |
| btgatt_adv_filter_cb_t btif_filt_cb; |
| btif_filt_cb.client_if = client_if; |
| if (true == enable) |
| action = 1; |
| btif_filt_cb.action = action; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SCAN_FILTER_ENABLE, |
| (char*) &btif_filt_cb, sizeof(btgatt_adv_filter_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_set_scan_parameters(int scan_interval, int scan_window) |
| { |
| CHECK_BTGATT_INIT(); |
| btif_gattc_cb_t btif_cb; |
| btif_cb.scan_interval = scan_interval; |
| btif_cb.scan_window = scan_window; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_SET_SCAN_PARAMS, |
| (char*) &btif_cb, sizeof(btif_gattc_cb_t), NULL); |
| } |
| |
| static int btif_gattc_get_device_type( const bt_bdaddr_t *bd_addr ) |
| { |
| int device_type = 0; |
| char bd_addr_str[18] = {0}; |
| |
| bd2str(bd_addr, &bd_addr_str); |
| if (btif_config_get_int("Remote", bd_addr_str, "DevType", &device_type)) |
| return device_type; |
| return 0; |
| } |
| |
| static bt_status_t btif_gattc_multi_adv_enable(int client_if, int min_interval, int max_interval, |
| int adv_type, int chnl_map, int tx_power, int timeout_s) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_multi_adv_inst_cb adv_cb; |
| adv_cb.client_if = (uint8_t) client_if; |
| |
| adv_cb.param.adv_int_min = min_interval; |
| adv_cb.param.adv_int_max = max_interval; |
| adv_cb.param.adv_type = adv_type; |
| adv_cb.param.channel_map = chnl_map; |
| adv_cb.param.adv_filter_policy = 0; |
| adv_cb.param.tx_power = tx_power; |
| adv_cb.timeout_s = timeout_s; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_ADV_INSTANCE_ENABLE, |
| (char*) &adv_cb, sizeof(btgatt_multi_adv_inst_cb), NULL); |
| } |
| |
| static bt_status_t btif_gattc_multi_adv_update(int client_if, int min_interval, int max_interval, |
| int adv_type, int chnl_map,int tx_power, int timeout_s) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_multi_adv_inst_cb adv_cb; |
| adv_cb.client_if = (uint8_t) client_if; |
| |
| adv_cb.param.adv_int_min = min_interval; |
| adv_cb.param.adv_int_max = max_interval; |
| adv_cb.param.adv_type = adv_type; |
| adv_cb.param.channel_map = chnl_map; |
| adv_cb.param.adv_filter_policy = 0; |
| adv_cb.param.tx_power = tx_power; |
| adv_cb.timeout_s = timeout_s; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_ADV_INSTANCE_UPDATE, |
| (char*) &adv_cb, sizeof(btgatt_multi_adv_inst_cb), NULL); |
| } |
| |
| static bt_status_t btif_gattc_multi_adv_setdata(int client_if, bool set_scan_rsp, |
| bool include_name, bool incl_txpower, int appearance, |
| int manufacturer_len, char* manufacturer_data, |
| int service_data_len, char* service_data, |
| int service_uuid_len, char* service_uuid) |
| { |
| CHECK_BTGATT_INIT(); |
| |
| int min_interval = 0, max_interval = 0; |
| bt_status_t status =0; |
| |
| btif_adv_data_t multi_adv_data_inst; |
| |
| btif_gattc_adv_data_packager(client_if, set_scan_rsp, include_name, incl_txpower, |
| min_interval, max_interval, appearance, manufacturer_len, manufacturer_data, |
| service_data_len, service_data, service_uuid_len, service_uuid, &multi_adv_data_inst); |
| |
| status = btif_transfer_context(btgattc_handle_event, BTIF_GATTC_ADV_INSTANCE_SET_DATA, |
| (char*) &multi_adv_data_inst, sizeof(btif_adv_data_t), NULL); |
| |
| if (NULL != multi_adv_data_inst.p_service_data) |
| GKI_freebuf(multi_adv_data_inst.p_service_data); |
| |
| if (NULL != multi_adv_data_inst.p_service_uuid) |
| GKI_freebuf(multi_adv_data_inst.p_service_uuid); |
| |
| if (NULL != multi_adv_data_inst.p_manufacturer_data) |
| GKI_freebuf(multi_adv_data_inst.p_manufacturer_data); |
| |
| return status; |
| } |
| |
| static bt_status_t btif_gattc_multi_adv_disable(int client_if) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_multi_adv_inst_cb adv_cb; |
| adv_cb.client_if = (uint8_t) client_if; |
| |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_ADV_INSTANCE_DISABLE, |
| (char*) &adv_cb, sizeof(btgatt_multi_adv_inst_cb), NULL); |
| } |
| |
| static bt_status_t btif_gattc_cfg_storage(int client_if,int batch_scan_full_max, |
| int batch_scan_trunc_max, int batch_scan_notify_threshold) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_batch_track_cb_t bt_scan_cb; |
| bt_scan_cb.client_if = (uint8_t) client_if; |
| bt_scan_cb.batch_scan_full_max = batch_scan_full_max; |
| bt_scan_cb.batch_scan_trunc_max = batch_scan_trunc_max; |
| bt_scan_cb.batch_scan_notify_threshold = batch_scan_notify_threshold; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_CONFIG_STORAGE_PARAMS, |
| (char*) &bt_scan_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_enb_batch_scan(int client_if,int scan_mode, int scan_interval, |
| int scan_window, int addr_type, int discard_rule) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_batch_track_cb_t bt_scan_cb; |
| bt_scan_cb.client_if = (uint8_t) client_if; |
| bt_scan_cb.scan_mode = scan_mode; |
| bt_scan_cb.scan_interval = scan_interval; |
| bt_scan_cb.scan_window = scan_window; |
| bt_scan_cb.discard_rule = discard_rule; |
| bt_scan_cb.addr_type = addr_type; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_ENABLE_BATCH_SCAN, |
| (char*) &bt_scan_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_dis_batch_scan(int client_if) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_batch_track_cb_t bt_scan_cb; |
| bt_scan_cb.client_if = (uint8_t) client_if; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_DISABLE_BATCH_SCAN, |
| (char*) &bt_scan_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| } |
| |
| static bt_status_t btif_gattc_read_batch_scan_reports(int client_if, int scan_mode) |
| { |
| CHECK_BTGATT_INIT(); |
| btgatt_batch_track_cb_t bt_scan_cb; |
| bt_scan_cb.client_if = (uint8_t) client_if; |
| bt_scan_cb.scan_mode = scan_mode; |
| return btif_transfer_context(btgattc_handle_event, BTIF_GATTC_READ_BATCH_SCAN_REPORTS, |
| (char*) &bt_scan_cb, sizeof(btgatt_batch_track_cb_t), NULL); |
| } |
| |
| extern bt_status_t btif_gattc_test_command_impl(int command, btgatt_test_params_t* params); |
| |
| static bt_status_t btif_gattc_test_command(int command, btgatt_test_params_t* params) |
| { |
| return btif_gattc_test_command_impl(command, params); |
| } |
| |
| |
| const btgatt_client_interface_t btgattClientInterface = { |
| btif_gattc_register_app, |
| btif_gattc_unregister_app, |
| btif_gattc_scan, |
| btif_gattc_open, |
| btif_gattc_close, |
| btif_gattc_listen, |
| btif_gattc_refresh, |
| btif_gattc_search_service, |
| btif_gattc_get_included_service, |
| btif_gattc_get_characteristic, |
| btif_gattc_get_descriptor, |
| btif_gattc_read_char, |
| btif_gattc_write_char, |
| btif_gattc_read_char_descr, |
| btif_gattc_write_char_descr, |
| btif_gattc_execute_write, |
| btif_gattc_reg_for_notification, |
| btif_gattc_dereg_for_notification, |
| btif_gattc_read_remote_rssi, |
| btif_gattc_scan_filter_param_setup, |
| btif_gattc_scan_filter_add_remove, |
| btif_gattc_scan_filter_clear, |
| btif_gattc_scan_filter_enable, |
| btif_gattc_get_device_type, |
| btif_gattc_set_adv_data, |
| btif_gattc_configure_mtu, |
| btif_gattc_conn_parameter_update, |
| btif_gattc_set_scan_parameters, |
| btif_gattc_multi_adv_enable, |
| btif_gattc_multi_adv_update, |
| btif_gattc_multi_adv_setdata, |
| btif_gattc_multi_adv_disable, |
| btif_gattc_cfg_storage, |
| btif_gattc_enb_batch_scan, |
| btif_gattc_dis_batch_scan, |
| btif_gattc_read_batch_scan_reports, |
| btif_gattc_test_command |
| }; |
| |
| #endif |