2009-08-20 21:59:32 +00:00
|
|
|
// Read an INI file into easy-to-access name/value pairs.
|
|
|
|
|
2015-03-21 20:04:19 -04:00
|
|
|
// inih and INIReader are released under the New BSD license (see LICENSE.txt).
|
|
|
|
// Go to the project home page for more info:
|
|
|
|
//
|
|
|
|
// https://github.com/benhoyt/inih
|
|
|
|
|
2011-06-24 18:23:13 +00:00
|
|
|
#include <algorithm>
|
2009-08-20 21:59:32 +00:00
|
|
|
#include <cctype>
|
2009-09-30 09:10:38 +00:00
|
|
|
#include <cstdlib>
|
2009-08-20 21:59:32 +00:00
|
|
|
#include "../ini.h"
|
|
|
|
#include "INIReader.h"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
INIReader::INIReader(string filename)
|
|
|
|
{
|
|
|
|
_error = ini_parse(filename.c_str(), ValueHandler, this);
|
|
|
|
}
|
|
|
|
|
2016-04-17 08:33:48 +03:00
|
|
|
int INIReader::ParseError() const
|
2009-08-20 21:59:32 +00:00
|
|
|
{
|
|
|
|
return _error;
|
|
|
|
}
|
|
|
|
|
2016-04-17 08:33:48 +03:00
|
|
|
string INIReader::Get(string section, string name, string default_value) const
|
2009-08-20 21:59:32 +00:00
|
|
|
{
|
|
|
|
string key = MakeKey(section, name);
|
2016-06-17 14:18:55 +08:00
|
|
|
// Use _values.find() here instead of _values.at() to support pre C++11 compilers
|
|
|
|
return _values.count(key) ? _values.find(key)->second : default_value;
|
2009-08-20 21:59:32 +00:00
|
|
|
}
|
|
|
|
|
2016-04-17 08:33:48 +03:00
|
|
|
long INIReader::GetInteger(string section, string name, long default_value) const
|
2009-08-20 21:59:32 +00:00
|
|
|
{
|
2009-09-30 09:10:38 +00:00
|
|
|
string valstr = Get(section, name, "");
|
|
|
|
const char* value = valstr.c_str();
|
2009-08-20 21:59:32 +00:00
|
|
|
char* end;
|
|
|
|
// This parses "1234" (decimal) and also "0x4D2" (hex)
|
|
|
|
long n = strtol(value, &end, 0);
|
|
|
|
return end > value ? n : default_value;
|
|
|
|
}
|
|
|
|
|
2016-04-17 08:33:48 +03:00
|
|
|
double INIReader::GetReal(string section, string name, double default_value) const
|
2013-08-14 21:58:41 +00:00
|
|
|
{
|
|
|
|
string valstr = Get(section, name, "");
|
|
|
|
const char* value = valstr.c_str();
|
|
|
|
char* end;
|
|
|
|
double n = strtod(value, &end);
|
|
|
|
return end > value ? n : default_value;
|
|
|
|
}
|
|
|
|
|
2016-04-17 08:33:48 +03:00
|
|
|
bool INIReader::GetBoolean(string section, string name, bool default_value) const
|
2011-06-24 18:23:13 +00:00
|
|
|
{
|
|
|
|
string valstr = Get(section, name, "");
|
|
|
|
// Convert to lower case to make string comparisons case-insensitive
|
|
|
|
std::transform(valstr.begin(), valstr.end(), valstr.begin(), ::tolower);
|
|
|
|
if (valstr == "true" || valstr == "yes" || valstr == "on" || valstr == "1")
|
|
|
|
return true;
|
|
|
|
else if (valstr == "false" || valstr == "no" || valstr == "off" || valstr == "0")
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return default_value;
|
|
|
|
}
|
|
|
|
|
2009-08-20 21:59:32 +00:00
|
|
|
string INIReader::MakeKey(string section, string name)
|
|
|
|
{
|
2014-08-19 16:18:42 +00:00
|
|
|
string key = section + "=" + name;
|
2011-06-24 18:23:13 +00:00
|
|
|
// Convert to lower case to make section/name lookups case-insensitive
|
|
|
|
std::transform(key.begin(), key.end(), key.begin(), ::tolower);
|
2009-08-20 21:59:32 +00:00
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
int INIReader::ValueHandler(void* user, const char* section, const char* name,
|
|
|
|
const char* value)
|
|
|
|
{
|
|
|
|
INIReader* reader = (INIReader*)user;
|
2012-03-07 02:02:37 +00:00
|
|
|
string key = MakeKey(section, name);
|
|
|
|
if (reader->_values[key].size() > 0)
|
|
|
|
reader->_values[key] += "\n";
|
|
|
|
reader->_values[key] += value;
|
2009-08-20 21:59:32 +00:00
|
|
|
return 1;
|
|
|
|
}
|