/* * Copyright (C) 2022 Riyyi * * SPDX-License-Identifier: MIT */ #ifndef CONFIG_H #define CONFIG_H #include // size_t #include // path #include #include #include "nlohmann/json.hpp" #include "util/singleton.h" struct Settings { std::vector ignorePatterns { ".git/", "*.md", "manafiles.json", "packages", "README.org", "screenshot.png", }; std::vector systemPatterns { "/boot/", "/etc/", "/usr/share/" }; }; class Config : public Util::Singleton { public: Config(s); virtual ~Config(); void setSystemPatterns(const std::vector& systemPatterns) { m_settings.systemPatterns = systemPatterns; } void setIgnorePatterns(const std::vector& ignorePatterns) { m_settings.ignorePatterns = ignorePatterns; } void setVerbose(bool verbose) { m_verbose = verbose; } const std::vector& ignorePatterns() const { return m_settings.ignorePatterns; } const std::vector& 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