logmeow/config.cpp

98 lines
2.8 KiB
C++
Raw Normal View History

#include <cstdlib>
#include <sys/stat.h>
#include <string>
#include <nlohmann/json.hpp>
2023-01-05 10:27:14 +00:00
#include "log.h"
2023-03-28 16:48:26 +00:00
#include "file.h"
2023-01-16 04:05:25 +00:00
#include "misc.h"
#include "config.h"
std::string get_config_folder() {
const char* path;
path = getenv("XDG_CONFIG_HOME");
if (path) {
return std::string(path) + "/logmeow";
}
path = getenv("HOME");
if (path) {
return std::string(path) + "/.config/logmeow";
}
throw std::runtime_error("cannot find suitable config folder, please set XDG_CONFIG_HOME or HOME");
}
std::string get_config_file_path() {
return get_config_folder() + "/config.json";
}
// tries to create a directory with an empty string if it's just "/" but who cares
void create_config_folders_if_necessary() {
2023-01-05 10:27:14 +00:00
std::string full_path = get_config_folder();
std::string path;
size_t pos = 0;
while (pos != std::string::npos) {
2023-01-05 10:27:14 +00:00
pos = full_path.find('/', pos);
if (pos != std::string::npos) {
pos++;
}
2023-01-05 10:27:14 +00:00
path = full_path.substr(0, pos);
if (!mkdir(path.c_str(), 0700)) {
continue;
}
if (errno == EEXIST) {
continue;
}
2023-01-17 15:35:08 +00:00
throw_system_error(std::string("mkdir(") + quote(path) + ')');
}
}
void from_json(const nlohmann::json& j, Config& config) {
j.at("logcat_command").get_to(config.logcat_command);
j.at("normal_font_size").get_to(config.normal_font_size);
j.at("monospace_font_size").get_to(config.monospace_font_size);
j.at("filters").get_to(config.filters);
2023-02-01 15:22:08 +00:00
j.at("exclusions").get_to(config.exclusions);
}
Config load_config() {
std::string config_file_path = get_config_file_path();
2023-03-28 16:48:26 +00:00
try {
File config_file(config_file_path.c_str(), "r");
return nlohmann::json::parse(config_file.get());
} catch (const std::system_error& e) {
if (e.code().value() != ENOENT) {
throw;
}
return Config();
}
}
void to_json(nlohmann::json& j, const Config& config) {
j["logcat_command"] = config.logcat_command;
j["normal_font_size"] = config.normal_font_size;
j["monospace_font_size"] = config.monospace_font_size;
j["filters"] = config.filters;
2023-02-01 15:22:08 +00:00
j["exclusions"] = config.exclusions;
}
void write_config(const Config& config) {
std::string config_file_path = get_config_file_path();
std::string tmp_config_file_path = config_file_path + ".tmp";
2023-03-28 16:48:26 +00:00
{
File config_file(tmp_config_file_path.c_str(), "w");
std::string str_config = nlohmann::json(config).dump(4);
config_file.write(std::move(str_config));
}
if (!rename(tmp_config_file_path.c_str(), config_file_path.c_str())) {
return;
}
2023-01-17 15:35:08 +00:00
throw_system_error(std::string("rename(") + quote(tmp_config_file_path) + ", " + quote(config_file_path) + ')');
}