blob: 31a9a64c544c07372e051d93165d00391921fdc0 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
3 * Copyright (C) 2009-2012 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
The Android Open Source Project5738f832012-12-12 16:00:35 -080019#define LOG_TAG "bte_conf"
20
Sharvil Nanavatifa52a072014-05-04 22:48:09 -070021#include <assert.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080022#include <stdio.h>
23#include <string.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080024
The Android Open Source Project5738f832012-12-12 16:00:35 -080025#include "bta_api.h"
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070026#include "osi/include/config.h"
Sharvil Nanavati44802762014-12-23 23:08:58 -080027#include "osi/include/log.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080028
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070029#if (defined(BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
30extern int btm_ble_tx_power[BTM_BLE_ADV_TX_POWER_MAX + 1];
31void bte_load_ble_conf(const char* path)
32{
33 assert(path != NULL);
34
Sharvil Nanavati44802762014-12-23 23:08:58 -080035 LOG_INFO("%s attempt to load ble stack conf from %s", __func__, path);
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070036
37 config_t *config = config_new(path);
38 if (!config) {
Sharvil Nanavati44802762014-12-23 23:08:58 -080039 LOG_INFO("%s file >%s< not found", __func__, path);
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070040 return;
41 }
42
43 const char* ble_adv_tx_power = config_get_string(config, CONFIG_DEFAULT_SECTION, "BLE_ADV_TX_POWER", "");
44 if(*ble_adv_tx_power) {
45 sscanf(ble_adv_tx_power, "%d,%d,%d,%d,%d", btm_ble_tx_power, btm_ble_tx_power + 1, btm_ble_tx_power + 2,
46 btm_ble_tx_power + 3, btm_ble_tx_power + 4);
Sharvil Nanavati44802762014-12-23 23:08:58 -080047 LOG_INFO("loaded btm_ble_tx_power: %d, %d, %d, %d, %d", (char)btm_ble_tx_power[0], (char)btm_ble_tx_power[1],
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070048 btm_ble_tx_power[2], btm_ble_tx_power[3], btm_ble_tx_power[4]);
49 }
50 config_free(config);
51}
52#endif
53
Sharvil Nanavati0e377132014-06-14 15:01:20 -070054// Parses the specified Device ID configuration file and registers the
55// Device ID records with SDP.
56void bte_load_did_conf(const char *p_path) {
57 assert(p_path != NULL);
The Android Open Source Project5738f832012-12-12 16:00:35 -080058
Sharvil Nanavati0e377132014-06-14 15:01:20 -070059 config_t *config = config_new(p_path);
60 if (!config) {
Sharvil Nanavati44802762014-12-23 23:08:58 -080061 LOG_ERROR("%s unable to load DID config '%s'.", __func__, p_path);
Sharvil Nanavati0e377132014-06-14 15:01:20 -070062 return;
63 }
The Android Open Source Project5738f832012-12-12 16:00:35 -080064
Sharvil Nanavati0e377132014-06-14 15:01:20 -070065 for (int i = 1; i <= BTA_DI_NUM_MAX; ++i) {
66 char section_name[16] = { 0 };
67 snprintf(section_name, sizeof(section_name), "DID%d", i);
The Android Open Source Project5738f832012-12-12 16:00:35 -080068
Sharvil Nanavati0e377132014-06-14 15:01:20 -070069 if (!config_has_section(config, section_name)) {
Sharvil Nanavati44802762014-12-23 23:08:58 -080070 LOG_DEBUG("%s no section named %s.", __func__, section_name);
Sharvil Nanavati0e377132014-06-14 15:01:20 -070071 break;
The Android Open Source Project5738f832012-12-12 16:00:35 -080072 }
73
Sharvil Nanavati0e377132014-06-14 15:01:20 -070074 tBTA_DI_RECORD record;
75 record.vendor = config_get_int(config, section_name, "vendorId", LMP_COMPID_BROADCOM);
76 record.vendor_id_source = config_get_int(config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG);
77 record.product = config_get_int(config, section_name, "productId", 0);
78 record.version = config_get_int(config, section_name, "version", 0);
79 record.primary_record = config_get_bool(config, section_name, "primaryRecord", false);
80 strlcpy(record.client_executable_url, config_get_string(config, section_name, "clientExecutableURL", ""), sizeof(record.client_executable_url));
81 strlcpy(record.service_description, config_get_string(config, section_name, "serviceDescription", ""), sizeof(record.service_description));
82 strlcpy(record.documentation_url, config_get_string(config, section_name, "documentationURL", ""), sizeof(record.documentation_url));
The Android Open Source Project5738f832012-12-12 16:00:35 -080083
Sharvil Nanavati0e377132014-06-14 15:01:20 -070084 if (record.vendor_id_source != DI_VENDOR_ID_SOURCE_BTSIG &&
85 record.vendor_id_source != DI_VENDOR_ID_SOURCE_USBIF) {
Sharvil Nanavati44802762014-12-23 23:08:58 -080086 LOG_ERROR("%s invalid vendor id source %d; ignoring DID record %d.", __func__, record.vendor_id_source, i);
Sharvil Nanavati0e377132014-06-14 15:01:20 -070087 continue;
The Android Open Source Project5738f832012-12-12 16:00:35 -080088 }
89
Sharvil Nanavati44802762014-12-23 23:08:58 -080090 LOG_DEBUG("Device ID record %d : %s", i, (record.primary_record ? "primary" : "not primary"));
91 LOG_DEBUG(" vendorId = %04x", record.vendor);
92 LOG_DEBUG(" vendorIdSource = %04x", record.vendor_id_source);
93 LOG_DEBUG(" product = %04x", record.product);
94 LOG_DEBUG(" version = %04x", record.version);
95 LOG_DEBUG(" clientExecutableURL = %s", record.client_executable_url);
96 LOG_DEBUG(" serviceDescription = %s", record.service_description);
97 LOG_DEBUG(" documentationURL = %s", record.documentation_url);
The Android Open Source Project5738f832012-12-12 16:00:35 -080098
Sharvil Nanavati0e377132014-06-14 15:01:20 -070099 uint32_t record_handle;
100 tBTA_STATUS status = BTA_DmSetLocalDiRecord(&record, &record_handle);
101 if (status != BTA_SUCCESS) {
Sharvil Nanavati44802762014-12-23 23:08:58 -0800102 LOG_ERROR("%s unable to set device ID record %d: error %d.", __func__, i, status);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800103 }
104 }
Sharvil Nanavati0e377132014-06-14 15:01:20 -0700105
106 config_free(config);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800107}
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -0700108