SDRPlusPlus/core/src/config.h

48 lines
903 B
C
Raw Normal View History

2020-08-16 03:39:05 +02:00
#pragma once
#include <json.hpp>
#include <fstream>
#include <spdlog/spdlog.h>
#include <filesystem>
#include <sstream>
#include <iomanip>
#include <thread>
#include <chrono>
2020-09-24 19:36:57 +02:00
#include <string>
2020-08-16 03:39:05 +02:00
using nlohmann::json;
2020-09-24 19:38:05 +02:00
#define DEV_BUILD
2020-09-24 19:36:57 +02:00
#ifndef ROOT_DIR
#ifdef DEV_BUILD
#define ROOT_DIR "../root_dev"
#elif _WIN32
#define ROOT_DIR "."
#else
#define ROOT_DIR "/etc/sdrpp"
#endif
#endif
class ConfigManager {
public:
ConfigManager();
void setPath(std::string file);
void load(json default, bool lock = true);
void save(bool lock = true);
void enableAutoSave();
void disableAutoSave();
void aquire();
void release(bool changed = false);
json conf;
private:
static void autoSaveWorker(ConfigManager* _this);
std::string path = "";
bool changed = false;
bool autoSaveEnabled = false;
std::thread autoSaveThread;
std::mutex mtx;
2020-08-16 03:39:05 +02:00
};