mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 06:52:52 +01:00
74 lines
1.7 KiB
C++
74 lines
1.7 KiB
C++
#include <config.h>
|
|
|
|
ConfigManager::ConfigManager() {
|
|
|
|
}
|
|
|
|
void ConfigManager::setPath(std::string file) {
|
|
path = file;
|
|
}
|
|
|
|
void ConfigManager::load(json default, bool lock) {
|
|
if (lock) { mtx.lock(); }
|
|
if (path == "") {
|
|
spdlog::error("Config manager tried to load file with no path specified");
|
|
return;
|
|
}
|
|
if (!std::filesystem::exists(path)) {
|
|
spdlog::warn("Config file '{0}' does not exist, creating it", path);
|
|
conf = default;
|
|
save(false);
|
|
}
|
|
if (!std::filesystem::is_regular_file(path)) {
|
|
spdlog::error("Config file '{0}' isn't a file", path);
|
|
return;
|
|
}
|
|
|
|
std::ifstream file(path.c_str());
|
|
file >> conf;
|
|
file.close();
|
|
if (lock) { mtx.unlock(); }
|
|
}
|
|
|
|
void ConfigManager::save(bool lock) {
|
|
if (lock) { mtx.lock(); }
|
|
std::ofstream file(path.c_str());
|
|
file << conf.dump(4);
|
|
file.close();
|
|
if (lock) { mtx.unlock(); }
|
|
}
|
|
|
|
void ConfigManager::enableAutoSave() {
|
|
autoSaveEnabled = true;
|
|
autoSaveThread = std::thread(autoSaveWorker, this);
|
|
}
|
|
|
|
void ConfigManager::disableAutoSave() {
|
|
autoSaveEnabled = false;
|
|
autoSaveThread.join();
|
|
}
|
|
|
|
void ConfigManager::aquire() {
|
|
mtx.lock();
|
|
}
|
|
|
|
void ConfigManager::release(bool changed) {
|
|
this->changed |= changed;
|
|
mtx.unlock();
|
|
}
|
|
|
|
void ConfigManager::autoSaveWorker(ConfigManager* _this) {
|
|
while (_this->autoSaveEnabled) {
|
|
if (!_this->mtx.try_lock()) {
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
|
|
continue;
|
|
}
|
|
if (_this->changed) {
|
|
_this->changed = false;
|
|
_this->save(false);
|
|
}
|
|
_this->mtx.unlock();
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
|
|
}
|
|
}
|