2016-09-26 13:37:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003-2012 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.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* This is the main implementation file for the BTA device manager.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "bta/bta_api.h"
|
|
|
|
#include "bta/bta_sys.h"
|
2016-09-26 13:37:39 +00:00
|
|
|
#include "bta_dm_int.h"
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "osi/allocator.h"
|
2017-10-18 07:34:43 +00:00
|
|
|
#include <string.h>
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
** Constants and types
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#if BTA_DYNAMIC_MEMORY == FALSE
|
|
|
|
tBTA_DM_CB bta_dm_cb;
|
|
|
|
tBTA_DM_SEARCH_CB bta_dm_search_cb;
|
|
|
|
tBTA_DM_DI_CB bta_dm_di_cb;
|
2017-10-18 07:34:43 +00:00
|
|
|
#else
|
|
|
|
tBTA_DM_CB *bta_dm_cb_ptr;
|
|
|
|
tBTA_DM_SEARCH_CB *bta_dm_search_cb_ptr;
|
|
|
|
tBTA_DM_DI_CB *bta_dm_di_cb_ptr;
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define BTA_DM_NUM_ACTIONS (BTA_DM_MAX_EVT & 0x00ff)
|
|
|
|
|
|
|
|
/* type for action functions */
|
|
|
|
typedef void (*tBTA_DM_ACTION)(tBTA_DM_MSG *p_data);
|
|
|
|
|
|
|
|
/* action function list */
|
2016-11-24 18:10:15 +00:00
|
|
|
const tBTA_DM_ACTION bta_dm_action[BTA_DM_MAX_EVT] = {
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
/* device manager local device API events */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_enable, /* BTA_DM_API_ENABLE_EVT */
|
|
|
|
bta_dm_disable, /* BTA_DM_API_DISABLE_EVT */
|
|
|
|
bta_dm_set_dev_name, /* BTA_DM_API_SET_NAME_EVT */
|
|
|
|
bta_dm_set_visibility, /* BTA_DM_API_SET_VISIBILITY_EVT */
|
|
|
|
bta_dm_acl_change, /* BTA_DM_ACL_CHANGE_EVT */
|
|
|
|
bta_dm_add_device, /* BTA_DM_API_ADD_DEVICE_EVT */
|
|
|
|
bta_dm_close_acl, /* BTA_DM_API_REMOVE_ACL_EVT */
|
2017-04-25 03:46:37 +00:00
|
|
|
#if (SMP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
/* security API events */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_bond, /* BTA_DM_API_BOND_EVT */
|
|
|
|
bta_dm_bond_cancel, /* BTA_DM_API_BOND_CANCEL_EVT */
|
|
|
|
bta_dm_set_pin_type, /* BTA_DM_API_SET_PIN_TYPE_EVT */
|
|
|
|
bta_dm_pin_reply, /* BTA_DM_API_PIN_REPLY_EVT */
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SMP_INCLUDED == TRUE
|
2018-05-21 03:33:30 +00:00
|
|
|
#if (BTA_DM_PM_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
/* power manger events */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_pm_btm_status, /* BTA_DM_PM_BTM_STATUS_EVT */
|
|
|
|
bta_dm_pm_timer, /* BTA_DM_PM_TIMER_EVT */
|
2018-05-21 03:33:30 +00:00
|
|
|
#endif /* #if (BTA_DM_PM_INCLUDED == TRUE) */
|
2016-09-26 13:37:39 +00:00
|
|
|
/* simple pairing events */
|
2017-04-25 03:46:37 +00:00
|
|
|
#if (SMP_INCLUDED == TRUE)
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_confirm, /* BTA_DM_API_CONFIRM_EVT */
|
2018-07-10 03:18:52 +00:00
|
|
|
#if (BT_SSP_INCLUDED == TRUE)
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_key_req, /* BTA_DM_API_KEY_REQ_EVT */
|
2018-07-10 03:18:52 +00:00
|
|
|
#endif ///BT_SSP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_set_encryption, /* BTA_DM_API_SET_ENCRYPTION_EVT */
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SMP_INCLUDED == TRUE
|
|
|
|
#if (BTM_OOB_INCLUDED == TRUE && SMP_INCLUDED == TRUE)
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_loc_oob, /* BTA_DM_API_LOC_OOB_EVT */
|
2018-10-16 09:56:07 +00:00
|
|
|
bta_dm_oob_reply, /* BTA_DM_API_OOB_REPLY_EVT */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_ci_io_req_act, /* BTA_DM_CI_IO_REQ_EVT */
|
|
|
|
bta_dm_ci_rmt_oob_act, /* BTA_DM_CI_RMT_OOB_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif /* BTM_OOB_INCLUDED */
|
|
|
|
|
|
|
|
|
|
|
|
#if BLE_INCLUDED == TRUE
|
2017-04-25 03:46:37 +00:00
|
|
|
#if SMP_INCLUDED == TRUE
|
2018-08-29 04:03:55 +00:00
|
|
|
bta_dm_add_blekey, /* BTA_DM_API_ADD_BLEKEY_EVT */
|
|
|
|
bta_dm_add_ble_device, /* BTA_DM_API_ADD_BLEDEVICE_EVT */
|
|
|
|
bta_dm_ble_passkey_reply, /* BTA_DM_API_BLE_PASSKEY_REPLY_EVT */
|
|
|
|
bta_dm_ble_set_static_passkey, /* BTA_DM_API_BLE_SET_STATIC_PASSKEY_EVT */
|
|
|
|
bta_dm_ble_confirm_reply, /* BTA_DM_API_BLE_CONFIRM_REPLY_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
bta_dm_security_grant,
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SMP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
bta_dm_ble_set_bg_conn_type,
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_ble_set_conn_params, /* BTA_DM_API_BLE_CONN_PARAM_EVT */
|
|
|
|
bta_dm_ble_set_conn_scan_params, /* BTA_DM_API_BLE_CONN_SCAN_PARAM_EVT */
|
|
|
|
bta_dm_ble_set_scan_params, /* BTA_DM_API_BLE_SCAN_PARAM_EVT */
|
|
|
|
bta_dm_ble_set_scan_fil_params, /* BTA_DM_API_BLE_SCAN_FIL_PARAM_EVT */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_ble_observe, /* BTA_DM_API_BLE_OBSERVE_EVT */
|
2017-09-22 09:06:08 +00:00
|
|
|
bta_dm_ble_scan, /* BTA_DM_API_BLE_SCAN_EVT */
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_ble_update_conn_params, /* BTA_DM_API_UPDATE_CONN_PARAM_EVT */
|
|
|
|
/* This handler function added by
|
|
|
|
Yulong at 2016/9/9 to support the
|
|
|
|
random address setting for the APP */
|
2018-08-27 13:32:39 +00:00
|
|
|
bta_dm_ble_set_rand_address, /* BTA_DM_API_SET_RAND_ADDR_EVT*/
|
|
|
|
bta_dm_ble_clear_rand_address, /* BTA_DM_API_CLEAR_RAND_ADDR_EVT */
|
2017-01-19 03:49:59 +00:00
|
|
|
/* This handler function added by
|
|
|
|
Yulong at 2016/10/19 to support
|
|
|
|
stop the ble advertising setting
|
|
|
|
by the APP */
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_ble_stop_advertising, /* BTA_DM_API_BLE_STOP_ADV_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#if BLE_PRIVACY_SPT == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_ble_config_local_privacy, /* BTA_DM_API_LOCAL_PRIVACY_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
2018-03-26 09:02:24 +00:00
|
|
|
bta_dm_ble_config_local_icon, /* BTA_DM_API_LOCAL_ICON_EVT */
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_ble_set_adv_params, /* BTA_DM_API_BLE_ADV_PARAM_EVT */
|
|
|
|
bta_dm_ble_set_adv_params_all, /* BTA_DM_API_BLE_ADV_PARAM_All_EVT */
|
|
|
|
bta_dm_ble_set_adv_config, /* BTA_DM_API_BLE_SET_ADV_CONFIG_EVT */
|
|
|
|
/* New function to allow set raw adv
|
|
|
|
data to HCI */
|
|
|
|
bta_dm_ble_set_adv_config_raw, /* BTA_DM_API_BLE_SET_ADV_CONFIG_RAW_EVT */
|
|
|
|
bta_dm_ble_set_scan_rsp, /* BTA_DM_API_BLE_SET_SCAN_RSP_EVT */
|
2018-07-10 03:18:52 +00:00
|
|
|
/* New function to allow set raw scan
|
2017-01-19 03:49:59 +00:00
|
|
|
response data to HCI */
|
|
|
|
bta_dm_ble_set_scan_rsp_raw, /* BTA_DM_API_BLE_SET_SCAN_RSP_RAW_EVT */
|
|
|
|
bta_dm_ble_broadcast, /* BTA_DM_API_BLE_BROADCAST_EVT */
|
|
|
|
bta_dm_ble_set_data_length, /* BTA_DM_API_SET_DATA_LENGTH_EVT */
|
2018-11-09 08:11:45 +00:00
|
|
|
bta_dm_ble_set_long_adv, /* BTA_DM_API_BLE_SET_LONG_ADV_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#if BLE_ANDROID_CONTROLLER_SCAN_FILTER == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_cfg_filter_cond, /* BTA_DM_API_CFG_FILTER_COND_EVT */
|
|
|
|
bta_dm_scan_filter_param_setup, /* BTA_DM_API_SCAN_FILTER_SETUP_EVT */
|
|
|
|
bta_dm_enable_scan_filter, /* BTA_DM_API_SCAN_FILTER_ENABLE_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_ble_multi_adv_enb, /* BTA_DM_API_BLE_MULTI_ADV_ENB_EVT */
|
|
|
|
bta_dm_ble_multi_adv_upd_param, /* BTA_DM_API_BLE_MULTI_ADV_PARAM_UPD_EVT */
|
|
|
|
bta_dm_ble_multi_adv_data, /* BTA_DM_API_BLE_MULTI_ADV_DATA_EVT */
|
|
|
|
btm_dm_ble_multi_adv_disable, /* BTA_DM_API_BLE_MULTI_ADV_DISABLE_EVT */
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_ble_setup_storage, /* BTA_DM_API_BLE_SETUP_STORAGE_EVT */
|
|
|
|
bta_dm_ble_enable_batch_scan, /* BTA_DM_API_BLE_ENABLE_BATCH_SCAN_EVT */
|
|
|
|
bta_dm_ble_disable_batch_scan, /* BTA_DM_API_BLE_DISABLE_BATCH_SCAN_EVT */
|
|
|
|
bta_dm_ble_read_scan_reports, /* BTA_DM_API_BLE_READ_SCAN_REPORTS_EVT */
|
|
|
|
bta_dm_ble_track_advertiser, /* BTA_DM_API_BLE_TRACK_ADVERTISER_EVT */
|
|
|
|
bta_dm_ble_get_energy_info, /* BTA_DM_API_BLE_ENERGY_INFO_EVT */
|
2017-06-01 07:56:36 +00:00
|
|
|
bta_dm_ble_disconnect, /* BTA_DM_API_BLE_DISCONNECT_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-04 13:11:03 +00:00
|
|
|
bta_dm_enable_test_mode, /* BTA_DM_API_ENABLE_TEST_MODE_EVT */
|
|
|
|
bta_dm_disable_test_mode, /* BTA_DM_API_DISABLE_TEST_MODE_EVT */
|
|
|
|
bta_dm_execute_callback, /* BTA_DM_API_EXECUTE_CBACK_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_remove_all_acl, /* BTA_DM_API_REMOVE_ALL_ACL_EVT */
|
|
|
|
bta_dm_remove_device, /* BTA_DM_API_REMOVE_DEVICE_EVT */
|
2017-08-15 03:24:36 +00:00
|
|
|
bta_dm_update_white_list, /* BTA_DM_API_UPDATE_WHITE_LIST_EVT */
|
|
|
|
bta_dm_ble_read_adv_tx_power, /* BTA_DM_API_BLE_READ_ADV_TX_POWER_EVT */
|
|
|
|
bta_dm_ble_read_rssi, /* BTA_DM_API_BLE_READ_RSSI_EVT */
|
2018-11-21 07:45:48 +00:00
|
|
|
bta_dm_ble_update_duplicate_exceptional_list,/* BTA_DM_API_UPDATE_DUPLICATE_EXCEPTIONAL_LIST_EVT */
|
2016-09-26 13:37:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* state machine action enumeration list */
|
2016-11-24 18:10:15 +00:00
|
|
|
enum {
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_API_SEARCH, /* 0 bta_dm_search_start */
|
|
|
|
BTA_DM_API_SEARCH_CANCEL, /* 1 bta_dm_search_cancel */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_API_DISCOVER, /* 2 bta_dm_discover */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_INQUIRY_CMPL, /* 3 bta_dm_inq_cmpl */
|
|
|
|
BTA_DM_REMT_NAME, /* 4 bta_dm_rmt_name */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_SDP_RESULT, /* 5 bta_dm_sdp_result */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_SEARCH_CMPL, /* 6 bta_dm_search_cmpl*/
|
2017-04-25 03:46:37 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_FREE_SDP_DB, /* 7 bta_dm_free_sdp_db */
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_DISC_RESULT, /* 8 bta_dm_disc_result */
|
|
|
|
BTA_DM_SEARCH_RESULT, /* 9 bta_dm_search_result */
|
|
|
|
BTA_DM_QUEUE_SEARCH, /* 10 bta_dm_queue_search */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_QUEUE_DISC, /* 11 bta_dm_queue_disc */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_SEARCH_CLEAR_QUEUE, /* 12 bta_dm_search_clear_queue */
|
|
|
|
BTA_DM_SEARCH_CANCEL_CMPL, /* 13 bta_dm_search_cancel_cmpl */
|
|
|
|
BTA_DM_SEARCH_CANCEL_NOTIFY, /* 14 bta_dm_search_cancel_notify */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL, /* 15 bta_dm_search_cancel_transac_cmpl */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_DISC_RMT_NAME, /* 16 bta_dm_disc_rmt_name */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_API_DI_DISCOVER, /* 17 bta_dm_di_disc */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-06-02 12:43:03 +00:00
|
|
|
#if BLE_INCLUDED == TRUE && SDP_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE && GATTC_INCLUDED == TRUE
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_CLOSE_GATT_CONN, /* 18 bta_dm_close_gatt_conn */
|
2017-06-02 12:43:03 +00:00
|
|
|
#endif /* BLE_INCLUDED == TRUE && SDP_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE && GATTC_INCLUDED == TRUE */
|
2016-09-26 13:37:39 +00:00
|
|
|
BTA_DM_SEARCH_NUM_ACTIONS /* 19 */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* action function list */
|
2016-11-24 18:10:15 +00:00
|
|
|
const tBTA_DM_ACTION bta_dm_search_action[] = {
|
|
|
|
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_search_start, /* 0 BTA_DM_API_SEARCH */
|
|
|
|
bta_dm_search_cancel, /* 1 BTA_DM_API_SEARCH_CANCEL */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_discover, /* 2 BTA_DM_API_DISCOVER */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_inq_cmpl, /* 3 BTA_DM_INQUIRY_CMPL */
|
|
|
|
bta_dm_rmt_name, /* 4 BTA_DM_REMT_NAME */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_sdp_result, /* 5 BTA_DM_SDP_RESULT */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_search_cmpl, /* 6 BTA_DM_SEARCH_CMPL */
|
2017-04-25 03:46:37 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_free_sdp_db, /* 7 BTA_DM_FREE_SDP_DB */
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_disc_result, /* 8 BTA_DM_DISC_RESULT */
|
|
|
|
bta_dm_search_result, /* 9 BTA_DM_SEARCH_RESULT */
|
|
|
|
bta_dm_queue_search, /* 10 BTA_DM_QUEUE_SEARCH */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_queue_disc, /* 11 BTA_DM_QUEUE_DISC */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_search_clear_queue, /* 12 BTA_DM_SEARCH_CLEAR_QUEUE */
|
|
|
|
bta_dm_search_cancel_cmpl, /* 13 BTA_DM_SEARCH_CANCEL_CMPL */
|
|
|
|
bta_dm_search_cancel_notify, /* 14 BTA_DM_SEARCH_CANCEL_NOTIFY */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_search_cancel_transac_cmpl, /* 15 BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_disc_rmt_name, /* 16 BTA_DM_DISC_RMT_NAME */
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2017-01-19 03:49:59 +00:00
|
|
|
bta_dm_di_disc /* 17 BTA_DM_API_DI_DISCOVER */
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-06-02 12:43:03 +00:00
|
|
|
#if BLE_INCLUDED == TRUE && SDP_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE && GATTC_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
, bta_dm_close_gatt_conn
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#define BTA_DM_SEARCH_IGNORE BTA_DM_SEARCH_NUM_ACTIONS
|
|
|
|
/* state table information */
|
|
|
|
#define BTA_DM_SEARCH_ACTIONS 2 /* number of actions */
|
|
|
|
#define BTA_DM_SEARCH_NEXT_STATE 2 /* position of next state */
|
|
|
|
#define BTA_DM_SEARCH_NUM_COLS 3 /* number of columns in state tables */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* state table for listen state */
|
2016-11-24 18:10:15 +00:00
|
|
|
const UINT8 bta_dm_search_idle_st_table[][BTA_DM_SEARCH_NUM_COLS] = {
|
|
|
|
|
|
|
|
/* Event Action 1 Action 2 Next State */
|
|
|
|
/* API_SEARCH */ {BTA_DM_API_SEARCH, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
/* API_SEARCH_CANCEL */ {BTA_DM_SEARCH_CANCEL_NOTIFY, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* API_SEARCH_DISC */ {BTA_DM_API_DISCOVER, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* INQUIRY_CMPL */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* REMT_NAME_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2017-04-25 03:46:37 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SDP_RESULT_EVT */ {BTA_DM_FREE_SDP_DB, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2017-04-25 03:46:37 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SEARCH_CMPL_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* DISCV_RES_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
|
|
|
/* API_DI_DISCOVER_EVT */ {BTA_DM_API_DI_DISCOVER, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2017-06-02 12:43:03 +00:00
|
|
|
#if BLE_INCLUDED == TRUE && SDP_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE && GATTC_INCLUDED == TRUE
|
|
|
|
// #if BLE_INCLUDED == TRUE
|
2017-04-23 09:52:18 +00:00
|
|
|
/* DISC_CLOSE_TOUT_EVT */ {BTA_DM_CLOSE_GATT_CONN, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
};
|
2016-11-24 18:10:15 +00:00
|
|
|
const UINT8 bta_dm_search_search_active_st_table[][BTA_DM_SEARCH_NUM_COLS] = {
|
|
|
|
|
|
|
|
/* Event Action 1 Action 2 Next State */
|
|
|
|
/* API_SEARCH */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
/* API_SEARCH_CANCEL */ {BTA_DM_API_SEARCH_CANCEL, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING},
|
|
|
|
/* API_SEARCH_DISC */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
/* INQUIRY_CMPL */ {BTA_DM_INQUIRY_CMPL, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
/* REMT_NAME_EVT */ {BTA_DM_REMT_NAME, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SDP_RESULT_EVT */ {BTA_DM_SDP_RESULT, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SEARCH_CMPL_EVT */ {BTA_DM_SEARCH_CMPL, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* DISCV_RES_EVT */ {BTA_DM_SEARCH_RESULT, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE},
|
|
|
|
/* API_DI_DISCOVER_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE}
|
2017-06-02 12:43:03 +00:00
|
|
|
#if BLE_INCLUDED == TRUE && SDP_INCLUDED == TRUE && BTA_GATT_INCLUDED == TRUE && GATTC_INCLUDED == TRUE
|
|
|
|
// #if BLE_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* DISC_CLOSE_TOUT_EVT */ , {BTA_DM_CLOSE_GATT_CONN, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_ACTIVE}
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
const UINT8 bta_dm_search_search_cancelling_st_table[][BTA_DM_SEARCH_NUM_COLS] = {
|
|
|
|
|
|
|
|
/* Event Action 1 Action 2 Next State */
|
|
|
|
/* API_SEARCH */ {BTA_DM_QUEUE_SEARCH, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING},
|
|
|
|
/* API_SEARCH_CANCEL */ {BTA_DM_SEARCH_CLEAR_QUEUE, BTA_DM_SEARCH_CANCEL_NOTIFY, BTA_DM_SEARCH_CANCELLING},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* API_SEARCH_DISC */ {BTA_DM_QUEUE_DISC, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING},
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* INQUIRY_CMPL */ {BTA_DM_SEARCH_CANCEL_CMPL, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* REMT_NAME_EVT */ {BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL, BTA_DM_SEARCH_CANCEL_CMPL, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* SDP_RESULT_EVT */ {BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL, BTA_DM_SEARCH_CANCEL_CMPL, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* SEARCH_CMPL_EVT */ {BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL, BTA_DM_SEARCH_CANCEL_CMPL, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* DISCV_RES_EVT */ {BTA_DM_SEARCH_CANCEL_TRANSAC_CMPL, BTA_DM_SEARCH_CANCEL_CMPL, BTA_DM_SEARCH_IDLE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* API_DI_DISCOVER_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING}
|
2016-09-26 13:37:39 +00:00
|
|
|
#if BLE_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* DISC_CLOSE_TOUT_EVT */ , {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING}
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
const UINT8 bta_dm_search_disc_active_st_table[][BTA_DM_SEARCH_NUM_COLS] = {
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
/* Event Action 1 Action 2 Next State */
|
|
|
|
/* API_SEARCH */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
|
|
|
/* API_SEARCH_CANCEL */ {BTA_DM_SEARCH_CANCEL_NOTIFY, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_CANCELLING},
|
|
|
|
/* API_SEARCH_DISC */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
|
|
|
/* INQUIRY_CMPL */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
|
|
|
/* REMT_NAME_EVT */ {BTA_DM_DISC_RMT_NAME, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#if (SDP_INCLUDED == TRUE)
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SDP_RESULT_EVT */ {BTA_DM_SDP_RESULT, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
2017-04-23 09:52:18 +00:00
|
|
|
#endif ///SDP_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* SEARCH_CMPL_EVT */ {BTA_DM_SEARCH_CMPL, BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IDLE},
|
|
|
|
/* DISCV_RES_EVT */ {BTA_DM_DISC_RESULT, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE},
|
|
|
|
/* API_DI_DISCOVER_EVT */ {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
#if BLE_INCLUDED == TRUE
|
2016-11-24 18:10:15 +00:00
|
|
|
/* DISC_CLOSE_TOUT_EVT */ , {BTA_DM_SEARCH_IGNORE, BTA_DM_SEARCH_IGNORE, BTA_DM_DISCOVER_ACTIVE}
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef const UINT8 (*tBTA_DM_ST_TBL)[BTA_DM_SEARCH_NUM_COLS];
|
|
|
|
|
|
|
|
/* state table */
|
|
|
|
const tBTA_DM_ST_TBL bta_dm_search_st_tbl[] = {
|
|
|
|
bta_dm_search_idle_st_table,
|
|
|
|
bta_dm_search_search_active_st_table,
|
|
|
|
bta_dm_search_search_cancelling_st_table,
|
|
|
|
bta_dm_search_disc_active_st_table
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
**
|
|
|
|
** Function bta_dm_sm_disable
|
|
|
|
**
|
|
|
|
** Description unregister BTA DM
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
void bta_dm_sm_disable( )
|
|
|
|
{
|
|
|
|
bta_sys_deregister( BTA_ID_DM );
|
|
|
|
}
|
|
|
|
|
2017-10-18 07:34:43 +00:00
|
|
|
void bta_dm_sm_deinit(void)
|
|
|
|
{
|
|
|
|
memset(&bta_dm_cb, 0, sizeof(tBTA_DM_CB));
|
|
|
|
memset(&bta_dm_search_cb, 0, sizeof(tBTA_DM_SEARCH_CB));
|
|
|
|
memset(&bta_dm_di_cb, 0, sizeof(tBTA_DM_DI_CB));
|
|
|
|
#if BTA_DYNAMIC_MEMORY
|
|
|
|
FREE_AND_RESET(bta_dm_cb_ptr);
|
|
|
|
FREE_AND_RESET(bta_dm_search_cb_ptr);
|
|
|
|
FREE_AND_RESET(bta_dm_di_cb_ptr);
|
|
|
|
#endif /* #if BTA_DYNAMIC_MEMORY */
|
|
|
|
}
|
|
|
|
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
**
|
|
|
|
** Function bta_dm_sm_execute
|
|
|
|
**
|
|
|
|
** Description State machine event handling function for DM
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
BOOLEAN bta_dm_sm_execute(BT_HDR *p_msg)
|
|
|
|
{
|
|
|
|
UINT16 event = p_msg->event & 0x00ff;
|
|
|
|
|
|
|
|
APPL_TRACE_EVENT("bta_dm_sm_execute event:0x%x", event);
|
|
|
|
|
|
|
|
/* execute action functions */
|
2016-11-24 18:10:15 +00:00
|
|
|
if (event < BTA_DM_NUM_ACTIONS) {
|
|
|
|
(*bta_dm_action[event])( (tBTA_DM_MSG *) p_msg);
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
**
|
|
|
|
** Function bta_dm_sm_search_disable
|
|
|
|
**
|
|
|
|
** Description unregister BTA SEARCH DM
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
void bta_dm_search_sm_disable( )
|
|
|
|
{
|
|
|
|
bta_sys_deregister( BTA_ID_DM_SEARCH );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
**
|
|
|
|
** Function bta_dm_search_sm_execute
|
|
|
|
**
|
|
|
|
** Description State machine event handling function for DM
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
*******************************************************************************/
|
|
|
|
BOOLEAN bta_dm_search_sm_execute(BT_HDR *p_msg)
|
|
|
|
{
|
|
|
|
tBTA_DM_ST_TBL state_table;
|
|
|
|
UINT8 action;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
APPL_TRACE_EVENT("bta_dm_search_sm_execute state:%d, event:0x%x",
|
2016-11-24 18:10:15 +00:00
|
|
|
bta_dm_search_cb.state, p_msg->event);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
/* look up the state table for the current state */
|
|
|
|
state_table = bta_dm_search_st_tbl[bta_dm_search_cb.state];
|
|
|
|
|
|
|
|
bta_dm_search_cb.state = state_table[p_msg->event & 0x00ff][BTA_DM_SEARCH_NEXT_STATE];
|
|
|
|
|
|
|
|
|
|
|
|
/* execute action functions */
|
2016-11-24 18:10:15 +00:00
|
|
|
for (i = 0; i < BTA_DM_SEARCH_ACTIONS; i++) {
|
|
|
|
if ((action = state_table[p_msg->event & 0x00ff][i]) != BTA_DM_SEARCH_IGNORE) {
|
|
|
|
(*bta_dm_search_action[action])( (tBTA_DM_MSG *) p_msg);
|
|
|
|
} else {
|
2016-09-26 13:37:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|