2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
2019-07-02 21:28:28 +00:00
|
|
|
|
2020-05-01 19:51:15 +00:00
|
|
|
#include <string_view>
|
2020-05-01 22:41:20 +00:00
|
|
|
#include <string>
|
2019-01-22 14:13:26 +00:00
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
2019-07-02 21:28:28 +00:00
|
|
|
#include <unordered_map>
|
2018-08-01 02:20:40 +00:00
|
|
|
#include <vector>
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/util/fs.hpp>
|
2017-10-03 19:14:46 +00:00
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
namespace llarp
|
2018-05-22 15:54:19 +00:00
|
|
|
{
|
2019-01-22 14:13:26 +00:00
|
|
|
struct ConfigParser
|
2018-05-22 15:54:19 +00:00
|
|
|
{
|
2020-04-07 20:41:11 +00:00
|
|
|
using SectionValues_t = std::unordered_multimap<std::string, std::string>;
|
|
|
|
using Config_impl_t = std::unordered_map<std::string, SectionValues_t>;
|
2019-01-22 14:13:26 +00:00
|
|
|
/// clear parser
|
|
|
|
void
|
|
|
|
Clear();
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
/// load config file for bootserv
|
|
|
|
/// return true on success
|
|
|
|
/// return false on error
|
|
|
|
bool
|
2020-06-08 12:42:10 +00:00
|
|
|
LoadFile(const fs::path fname);
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
/// load from string
|
|
|
|
/// return true on success
|
|
|
|
/// return false on error
|
|
|
|
bool
|
2020-05-01 19:51:15 +00:00
|
|
|
LoadFromStr(std::string_view str);
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
/// iterate all sections and thier values
|
2018-08-01 02:20:40 +00:00
|
|
|
void
|
2020-05-01 19:51:15 +00:00
|
|
|
IterAll(std::function<void(std::string_view, const SectionValues_t&)> visit);
|
2018-08-01 02:20:40 +00:00
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
/// visit a section in config read only by name
|
|
|
|
/// return false if no section or value propagated from visitor
|
2018-08-01 02:20:40 +00:00
|
|
|
bool
|
2020-04-07 20:41:11 +00:00
|
|
|
VisitSection(const char* name, std::function<bool(const SectionValues_t&)> visit) const;
|
2020-03-13 20:45:33 +00:00
|
|
|
|
2020-10-21 12:58:08 +00:00
|
|
|
/// add a config option that is appended in another file
|
2020-08-27 12:43:53 +00:00
|
|
|
void
|
2020-10-21 12:58:08 +00:00
|
|
|
AddOverride(fs::path file, std::string section, std::string key, std::string value);
|
2020-08-27 12:43:53 +00:00
|
|
|
|
2020-10-21 12:58:08 +00:00
|
|
|
/// save config overrides
|
2020-08-27 12:43:53 +00:00
|
|
|
void
|
2020-09-29 13:26:45 +00:00
|
|
|
Save();
|
2020-08-27 12:43:53 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
private:
|
2019-01-22 14:13:26 +00:00
|
|
|
bool
|
|
|
|
Parse();
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::vector<char> m_Data;
|
2019-01-22 14:13:26 +00:00
|
|
|
Config_impl_t m_Config;
|
2020-10-21 12:58:08 +00:00
|
|
|
std::unordered_map<fs::path, Config_impl_t, util::FileHash> m_Overrides;
|
2020-06-08 12:42:10 +00:00
|
|
|
fs::path m_FileName;
|
2018-05-22 15:54:19 +00:00
|
|
|
};
|
|
|
|
|
2019-01-22 14:13:26 +00:00
|
|
|
} // namespace llarp
|