You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.7 KiB
72 lines
1.7 KiB
/* |
|
* Copyright (C) 2022 Riyyi |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
#ifndef CONFIG_H |
|
#define CONFIG_H |
|
|
|
#include <cstddef> // size_t |
|
#include <filesystem> // path |
|
#include <string> |
|
#include <vector> |
|
|
|
#include "nlohmann/json.hpp" |
|
|
|
#include "util/singleton.h" |
|
|
|
struct Settings { |
|
std::vector<std::string> ignorePatterns { |
|
".git/", |
|
"*.md", |
|
"manafiles.json", |
|
"packages", |
|
"README.org", |
|
"screenshot.png", |
|
}; |
|
std::vector<std::string> systemPatterns { |
|
"/boot/", |
|
"/etc/", |
|
"/usr/share/" |
|
}; |
|
}; |
|
|
|
class Config : public Util::Singleton<Config> { |
|
public: |
|
Config(s); |
|
virtual ~Config(); |
|
|
|
void setSystemPatterns(const std::vector<std::string>& systemPatterns) { m_settings.systemPatterns = systemPatterns; } |
|
void setIgnorePatterns(const std::vector<std::string>& ignorePatterns) { m_settings.ignorePatterns = ignorePatterns; } |
|
void setVerbose(bool verbose) { m_verbose = verbose; } |
|
|
|
const std::vector<std::string>& ignorePatterns() const { return m_settings.ignorePatterns; } |
|
const std::vector<std::string>& systemPatterns() const { return m_settings.systemPatterns; } |
|
|
|
const std::filesystem::path& workingDirectory() const { return m_workingDirectory; } |
|
size_t workingDirectorySize() const { return m_workingDirectorySize; } |
|
|
|
bool verbose() const { return m_verbose; } |
|
|
|
private: |
|
void findConfigFile(); |
|
void parseConfigFile(); |
|
|
|
bool m_verbose { false }; |
|
|
|
std::filesystem::path m_workingDirectory {}; |
|
size_t m_workingDirectorySize { 0 }; |
|
|
|
std::filesystem::path m_config; |
|
Settings m_settings; |
|
}; |
|
|
|
// ----------------------------------------- |
|
|
|
// nlohmann::json arbitrary type conversion functions |
|
|
|
void to_json(nlohmann::json& object, const Settings& settings); |
|
void from_json(const nlohmann::json& object, Settings& settings); |
|
|
|
#endif // CONFIG_H
|
|
|