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

54 lines
1.2 KiB
C++
Raw Normal View History

2019-01-22 15:13:26 +01:00
#ifndef LOKINET_BOOTSERV_CONFIG_HPP
#define LOKINET_BOOTSERV_CONFIG_HPP
2019-01-22 15:13:26 +01:00
#include <util/string_view.hpp>
2019-01-22 15:13:26 +01:00
#include <functional>
#include <memory>
#include <unordered_map>
#include <vector>
2017-10-03 21:14:46 +02:00
2019-01-22 15:13:26 +01:00
namespace llarp
{
2019-01-22 15:13:26 +01:00
struct ConfigParser
{
using Section_t = std::unordered_multimap<std::string, std::string>;
using Config_impl_t = std::unordered_map<std::string, Section_t>;
2019-01-22 15:13:26 +01:00
/// clear parser
void
Clear();
2019-01-22 15:13:26 +01:00
/// load config file for bootserv
/// return true on success
/// return false on error
bool
LoadFile(string_view fname);
2019-01-22 15:13:26 +01:00
/// load from string
/// return true on success
/// return false on error
bool
2019-07-17 10:48:13 +02:00
LoadFromStr(string_view str);
2019-01-22 15:13:26 +01:00
/// iterate all sections and thier values
void
IterAll(std::function<void(string_view, const Section_t&)> visit);
2019-01-22 15:13:26 +01:00
/// 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:
2019-01-22 15:13:26 +01:00
bool
Parse();
std::vector<char> m_Data;
2019-01-22 15:13:26 +01:00
Config_impl_t m_Config;
std::string m_FileName;
};
2019-01-22 15:13:26 +01:00
} // namespace llarp
2017-10-03 21:14:46 +02:00
2019-01-22 15:13:26 +01:00
#endif