2020-08-16 03:39:05 +02:00
|
|
|
#include <config.h>
|
2020-10-07 22:44:54 +02:00
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
#include <fstream>
|
|
|
|
#include <filesystem>
|
2020-08-16 03:39:05 +02:00
|
|
|
|
2020-09-24 19:36:57 +02:00
|
|
|
ConfigManager::ConfigManager() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigManager::setPath(std::string file) {
|
|
|
|
path = file;
|
|
|
|
}
|
|
|
|
|
2020-09-24 19:50:22 +02:00
|
|
|
void ConfigManager::load(json def, bool lock) {
|
2020-09-24 19:36:57 +02:00
|
|
|
if (lock) { mtx.lock(); }
|
|
|
|
if (path == "") {
|
|
|
|
spdlog::error("Config manager tried to load file with no path specified");
|
|
|
|
return;
|
2020-08-16 03:39:05 +02:00
|
|
|
}
|
2020-09-24 19:36:57 +02:00
|
|
|
if (!std::filesystem::exists(path)) {
|
|
|
|
spdlog::warn("Config file '{0}' does not exist, creating it", path);
|
2020-09-24 19:50:22 +02:00
|
|
|
conf = def;
|
2020-09-24 19:36:57 +02:00
|
|
|
save(false);
|
2020-08-16 03:39:05 +02:00
|
|
|
}
|
2020-09-24 19:36:57 +02:00
|
|
|
if (!std::filesystem::is_regular_file(path)) {
|
|
|
|
spdlog::error("Config file '{0}' isn't a file", path);
|
|
|
|
return;
|
2020-08-16 03:39:05 +02:00
|
|
|
}
|
2020-09-24 19:36:57 +02:00
|
|
|
|
|
|
|
std::ifstream file(path.c_str());
|
|
|
|
file >> conf;
|
|
|
|
file.close();
|
|
|
|
if (lock) { mtx.unlock(); }
|
|
|
|
}
|
2020-08-16 03:39:05 +02:00
|
|
|
|
2020-09-24 19:36:57 +02:00
|
|
|
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(); }
|
|
|
|
}
|
2020-09-06 15:39:09 +02:00
|
|
|
|
2020-09-24 19:36:57 +02:00
|
|
|
void ConfigManager::enableAutoSave() {
|
|
|
|
autoSaveEnabled = true;
|
|
|
|
autoSaveThread = std::thread(autoSaveWorker, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigManager::disableAutoSave() {
|
|
|
|
autoSaveEnabled = false;
|
|
|
|
autoSaveThread.join();
|
|
|
|
}
|
2020-09-06 15:39:09 +02:00
|
|
|
|
2020-09-24 19:36:57 +02:00
|
|
|
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()) {
|
2020-10-20 00:32:17 +02:00
|
|
|
spdlog::warn("ConfigManager locked, waiting...");
|
2020-09-24 19:36:57 +02:00
|
|
|
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));
|
2020-09-06 15:39:09 +02:00
|
|
|
}
|
2020-09-24 19:36:57 +02:00
|
|
|
}
|
2020-10-24 14:51:55 +02:00
|
|
|
|
|
|
|
// void ConfigManager::setResourceDir(std::string path) {
|
|
|
|
// if (!std::filesystem::exists(path)) {
|
|
|
|
// spdlog::error("Resource directory '{0}' does not exist", path);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// if (!std::filesystem::is_regular_file(path)) {
|
|
|
|
// spdlog::error("Resource directory '{0}' is not a directory", path);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// resDir = path;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// std::string ConfigManager::getResourceDir() {
|
|
|
|
// return resDir;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// void ConfigManager::setConfigDir(std::string path) {
|
|
|
|
// if (!std::filesystem::exists(path)) {
|
|
|
|
// spdlog::error("Resource directory '{0}' does not exist", path);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// if (!std::filesystem::is_regular_file(path)) {
|
|
|
|
// spdlog::error("Resource directory '{0}' is not a directory", path);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// resDir = path;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// std::string ConfigManager::getConfigDir() {
|
|
|
|
// return configDir;
|
|
|
|
// }
|
|
|
|
|