You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/config/ini.hpp

58 lines
1.3 KiB
C++

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