1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/config/ini.hpp
Stephen Shelton 273270916e
The Great Wall of Blame
This commit reflects changes to clang-format rules. Unfortunately,
these rule changes create a massive change to the codebase, which
causes an apparent rewrite of git history.

Git blame's --ignore-rev flag can be used to ignore this commit when
attempting to `git blame` some code.
2020-04-07 12:38:56 -06:00

53 lines
1.2 KiB
C++

#ifndef LOKINET_BOOTSERV_CONFIG_HPP
#define LOKINET_BOOTSERV_CONFIG_HPP
#include <util/string_view.hpp>
#include <functional>
#include <memory>
#include <unordered_map>
#include <vector>
namespace llarp
{
struct ConfigParser
{
using Section_t = std::unordered_multimap<std::string, std::string>;
using Config_impl_t = std::unordered_map<std::string, Section_t>;
/// clear parser
void
Clear();
/// load config file for bootserv
/// return true on success
/// return false on error
bool
LoadFile(string_view fname);
/// load from string
/// return true on success
/// return false on error
bool
LoadFromStr(string_view str);
/// iterate all sections and thier values
void
IterAll(std::function<void(string_view, const Section_t&)> visit);
/// visit a section in config read only by name
/// return false if no section or value propagated from visitor
bool
VisitSection(const char* name, std::function<bool(const Section_t&)> visit) const;
private:
bool
Parse();
std::vector<char> m_Data;
Config_impl_t m_Config;
std::string m_FileName;
};
} // namespace llarp
#endif