OSDN Git Service

Remove always false flag BTM_BYPASS_EVENT_FILTERING
[android-x86/system-bt.git] / main / bte_conf.c
1 /******************************************************************************
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
19 #define LOG_TAG "bte_conf"
20
21 #include <assert.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <utils/Log.h>
25
26 #include "bta_api.h"
27 #include "config.h"
28
29 #if (defined(BLE_INCLUDED) && (BLE_INCLUDED == TRUE))
30 extern int btm_ble_tx_power[BTM_BLE_ADV_TX_POWER_MAX + 1];
31 void bte_load_ble_conf(const char* path)
32 {
33   assert(path != NULL);
34
35   ALOGI("%s attempt to load ble stack conf from %s", __func__, path);
36
37   config_t *config = config_new(path);
38   if (!config) {
39     ALOGI("%s file >%s< not found", __func__, path);
40     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);
47     ALOGI("loaded btm_ble_tx_power: %d, %d, %d, %d, %d", (char)btm_ble_tx_power[0], (char)btm_ble_tx_power[1],
48                                         btm_ble_tx_power[2], btm_ble_tx_power[3], btm_ble_tx_power[4]);
49   }
50   config_free(config);
51 }
52 #endif
53
54 // Parses the specified Device ID configuration file and registers the
55 // Device ID records with SDP.
56 void bte_load_did_conf(const char *p_path) {
57     assert(p_path != NULL);
58
59     config_t *config = config_new(p_path);
60     if (!config) {
61         ALOGE("%s unable to load DID config '%s'.", __func__, p_path);
62         return;
63     }
64
65     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);
68
69         if (!config_has_section(config, section_name)) {
70             ALOGD("%s no section named %s.", __func__, section_name);
71             break;
72         }
73
74         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));
83
84         if (record.vendor_id_source != DI_VENDOR_ID_SOURCE_BTSIG &&
85             record.vendor_id_source != DI_VENDOR_ID_SOURCE_USBIF) {
86             ALOGE("%s invalid vendor id source %d; ignoring DID record %d.", __func__, record.vendor_id_source, i);
87             continue;
88         }
89
90         ALOGD("Device ID record %d : %s", i, (record.primary_record ? "primary" : "not primary"));
91         ALOGD("  vendorId            = %04x", record.vendor);
92         ALOGD("  vendorIdSource      = %04x", record.vendor_id_source);
93         ALOGD("  product             = %04x", record.product);
94         ALOGD("  version             = %04x", record.version);
95         ALOGD("  clientExecutableURL = %s", record.client_executable_url);
96         ALOGD("  serviceDescription  = %s", record.service_description);
97         ALOGD("  documentationURL    = %s", record.documentation_url);
98
99         uint32_t record_handle;
100         tBTA_STATUS status = BTA_DmSetLocalDiRecord(&record, &record_handle);
101         if (status != BTA_SUCCESS) {
102             ALOGE("%s unable to set device ID record %d: error %d.", __func__, i, status);
103         }
104     }
105
106     config_free(config);
107 }
108