/* * Copyright 2017 The Android Open Source Project * * 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. */ #include "nfc_config.h" #include "NfcAdaptation.h" #include #include #include #include #include #include using namespace ::std; using namespace ::android::base; namespace { std::string searchConfigPath(std::string file_name) { const std::vector search_path = { "/product/etc/", "/odm/etc/", "/vendor/etc/", "/system_ext/etc/", "/etc/", }; for (std::string path : search_path) { path.append(file_name); struct stat file_stat; if (stat(path.c_str(), &file_stat) != 0) continue; if (S_ISREG(file_stat.st_mode)) return path; } return ""; } // Configuration File Search sequence // 1. If prop_config_file_name is defined.(where prop_config_file_name is the // value of the property persist.nfc_cfg.config_file_name) // Search a file matches prop_config_file_name. // 2. If SKU is defined (where SKU is the value of the property // ro.boot.product.hardware.sku) // Search a file matches libnfc-nci-SKU.conf // 3. If none of 1,2 is defined, search a default file name "libnfc-nci.conf". std::string findConfigPath() { string f_path = searchConfigPath( android::base::GetProperty("persist.nfc_cfg.config_file_name", "")); if (!f_path.empty()) return f_path; // Search for libnfc-nci-SKU.conf f_path = searchConfigPath( "libnfc-nci-" + android::base::GetProperty("ro.boot.product.hardware.sku", "") + ".conf"); if (!f_path.empty()) return f_path; // load default file if the desired file not found. return searchConfigPath("libnfc-nci.conf"); } } // namespace void NfcConfig::loadConfig() { string config_path = findConfigPath(); CHECK(config_path != ""); config_.parseFromFile(config_path); /* Read vendor specific configs */ NfcAdaptation& theInstance = NfcAdaptation::GetInstance(); std::map configMap; theInstance.GetVendorConfigs(configMap); for (auto config : configMap) { config_.addConfig(config.first, config.second); } } NfcConfig::NfcConfig() { loadConfig(); } NfcConfig& NfcConfig::getInstance() { static NfcConfig theInstance; if (theInstance.config_.isEmpty()) { theInstance.loadConfig(); } return theInstance; } bool NfcConfig::hasKey(const std::string& key) { return getInstance().config_.hasKey(key); } std::string NfcConfig::getString(const std::string& key) { return getInstance().config_.getString(key); } std::string NfcConfig::getString(const std::string& key, std::string default_value) { if (hasKey(key)) return getString(key); return default_value; } unsigned NfcConfig::getUnsigned(const std::string& key) { return getInstance().config_.getUnsigned(key); } unsigned NfcConfig::getUnsigned(const std::string& key, unsigned default_value) { if (hasKey(key)) return getUnsigned(key); return default_value; } std::vector NfcConfig::getBytes(const std::string& key) { return getInstance().config_.getBytes(key); } void NfcConfig::clear() { getInstance().config_.clear(); }