1 /****************************************************************************** 2 * 3 * Copyright 2014 Google, Inc. 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 #pragma once 20 21 #include <stdbool.h> 22 #include <stddef.h> 23 24 #include "bt_types.h" 25 26 #include <list> 27 #include <string> 28 #include "osi/include/config.h" 29 30 static const char BTIF_CONFIG_MODULE[] = "btif_config_module"; 31 32 static const std::string BT_CONFIG_KEY_SDP_DI_MANUFACTURER = 33 "SdpDiManufacturer"; 34 static const std::string BT_CONFIG_KEY_SDP_DI_MODEL = "SdpDiModel"; 35 static const std::string BT_CONFIG_KEY_SDP_DI_HW_VERSION = 36 "SdpDiHardwareVersion"; 37 static const std::string BT_CONFIG_KEY_SDP_DI_VENDOR_ID_SRC = 38 "SdpDiVendorIdSource"; 39 40 static const std::string BT_CONFIG_KEY_REMOTE_VER_MFCT = "Manufacturer"; 41 static const std::string BT_CONFIG_KEY_REMOTE_VER_VER = "LmpVer"; 42 static const std::string BT_CONFIG_KEY_REMOTE_VER_SUBVER = "LmpSubVer"; 43 44 bool btif_config_has_section(const char* section); 45 bool btif_config_exist(const std::string& section, const std::string& key); 46 bool btif_config_get_int(const std::string& section, const std::string& key, 47 int* value); 48 bool btif_config_set_int(const std::string& section, const std::string& key, 49 int value); 50 bool btif_config_get_uint64(const std::string& section, const std::string& key, 51 uint64_t* value); 52 bool btif_config_set_uint64(const std::string& section, const std::string& key, 53 uint64_t value); 54 bool btif_config_get_str(const std::string& section, const std::string& key, 55 char* value, int* size_bytes); 56 bool btif_config_set_str(const std::string& section, const std::string& key, 57 const std::string& value); 58 bool btif_config_get_bin(const std::string& section, const std::string& key, 59 uint8_t* value, size_t* length); 60 bool btif_config_set_bin(const std::string& section, const std::string& key, 61 const uint8_t* value, size_t length); 62 bool btif_config_remove(const std::string& section, const std::string& key); 63 64 size_t btif_config_get_bin_length(const std::string& section, 65 const std::string& key); 66 67 const std::list<section_t>& btif_config_sections(); 68 69 void btif_config_save(void); 70 void btif_config_flush(void); 71 bool btif_config_clear(void); 72 73 // TODO(zachoverflow): Eww...we need to move these out. These are peer specific, 74 // not config general. 75 bool btif_get_address_type(const RawAddress& bd_addr, int* p_addr_type); 76 bool btif_get_device_type(const RawAddress& bd_addr, int* p_device_type); 77 78 void btif_debug_config_dump(int fd); 79 80 typedef struct { 81 std::string (*checksum_read)(const char* filename); 82 bool (*checksum_save)(const std::string& checksum, 83 const std::string& filename); 84 bool (*config_get_bool)(const config_t& config, const std::string& section, 85 const std::string& key, bool def_value); 86 int (*config_get_int)(const config_t& config, const std::string& section, 87 const std::string& key, int def_value); 88 const std::string* (*config_get_string)(const config_t& config, 89 const std::string& section, 90 const std::string& key, 91 const std::string* def_value); 92 uint64_t (*config_get_uint64)(const config_t& config, 93 const std::string& section, 94 const std::string& key, uint64_t def_value); 95 bool (*config_has_key)(const config_t& config, const std::string& section, 96 const std::string& key); 97 bool (*config_has_section)(const config_t& config, 98 const std::string& section); 99 std::unique_ptr<config_t> (*config_new)(const char* filename); 100 std::unique_ptr<config_t> (*config_new_clone)(const config_t& src); 101 std::unique_ptr<config_t> (*config_new_empty)(void); 102 bool (*config_remove_key)(config_t* config, const std::string& section, 103 const std::string& key); 104 bool (*config_remove_section)(config_t* config, const std::string& section); 105 bool (*config_save)(const config_t& config, const std::string& filename); 106 void (*config_set_bool)(config_t* config, const std::string& section, 107 const std::string& key, bool value); 108 void (*config_set_int)(config_t* config, const std::string& section, 109 const std::string& key, int value); 110 void (*config_set_string)(config_t* config, const std::string& section, 111 const std::string& key, const std::string& value); 112 void (*config_set_uint64)(config_t* config, const std::string& section, 113 const std::string& key, uint64_t value); 114 } storage_config_t; 115