/*
|
* 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 <android-base/file.h>
|
#include <android-base/logging.h>
|
#include <android-base/parseint.h>
|
#include <android-base/strings.h>
|
|
#include <config.h>
|
|
using namespace ::std;
|
using namespace ::android::base;
|
|
namespace {
|
|
std::string findConfigPath() {
|
const vector<string> search_path = {"/odm/etc/", "/vendor/etc/",
|
"/product/etc/", "/etc/"};
|
const string file_name = "libnfc-nci.conf";
|
|
for (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 "";
|
}
|
|
} // 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<std::string, ConfigValue> 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<uint8_t> NfcConfig::getBytes(const std::string& key) {
|
return getInstance().config_.getBytes(key);
|
}
|
|
void NfcConfig::clear() { getInstance().config_.clear(); }
|