31#include <unordered_map>
48 typedef std::unordered_map<std::string, std::string>
nameMapT;
57 static std::string
makeKey(
const std::string §ion,
58 const std::string &name
61 return section +
"=" + name;
72 const std::string &key
75 size_t eq = key.find(
'=', 0 );
77 if( eq == std::string::npos )
80 section = key.substr( 0, eq );
82 name = key.substr( eq + 1 );
95 int parse(
const std::string &fname )
111 std::string nkey =
makeKey( section, name );
115 names[nkey] += value;
134 return ( iF->
insert( section, name, value ) == 0 );
142 size_t count(
const std::string §ion,
143 const std::string &name
154 int erase(
const std::string §ion,
155 const std::string &name
170 const std::string &name
173 std::string key =
makeKey( section, name );
174 if(
names.count( key ) > 0 )
180 return std::string(
"" );
The inih ini-style, file parser modified for mxlib.
int ini_parse(const char *filename, int(*handler)(void *, const char *, const char *, const char *), void *user)
Parse given INI-style file.
A wrapper for the ini functions.
static int handler(void *user, const char *section, const char *name, const char *value)
Config entry handler for the parser.
size_t count(const std::string §ion, const std::string &name)
Get the number of entries for the given section and name.
int erase(const std::string §ion, const std::string &name)
Erase the entry for the given section and name.
static std::string makeKey(const std::string §ion, const std::string &name)
Return a key generated from the section and name.
nameMapT names
The map of section=name keys to values.
std::unordered_map< std::string, std::string > nameMapT
the unordered map type used for storing values.
int insert(const char *section, const char *name, const char *value)
Insert a config value. Appends if the key already exists in the map.
std::string operator()(const std::string §ion, const std::string &name)
Get the value associated with this section=name pair.
static int parseKey(std::string §ion, std::string &name, const std::string &key)
Parse a key into its section and name consituents.
int parse(const std::string &fname)
Calls the inih parse function with this->handler.
std::string operator()(const std::string &name)
Get the value associated with this name with an empty section.