forked from EasyRPG/liblcf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinireader.cpp
More file actions
179 lines (157 loc) · 5.69 KB
/
inireader.cpp
File metadata and controls
179 lines (157 loc) · 5.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Read an INI file into easy-to-access name/value pairs.
// inih and INIReader are released under the New BSD license:
//
// Copyright (c) 2009, Ben Hoyt
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Ben Hoyt nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Go to the project home page for more info: https://github.com/benhoyt/inih
#include <algorithm>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <istream>
#include <charconv>
#include <ini.h>
#include "lcf/inireader.h"
namespace lcf {
INIReader::INIReader(std::string filename)
{
_error = ini_parse(filename.c_str(), ValueHandler, this);
}
INIReader::INIReader(std::istream& filestream)
{
_error = ini_parse_stream([](char* str, int num, void* stream) {
std::istream* is = reinterpret_cast<std::istream*>(stream);
if (num > 0) {
// via https://stackoverflow.com/questions/6089231/
std::string out;
std::istream::sentry se(*is, true);
std::streambuf* sb = is->rdbuf();
bool loop = true;
do {
int c = sb->sbumpc();
switch (c) {
case '\n':
loop = false;
break;
case '\r':
if (sb->sgetc() == '\n') {
sb->sbumpc();
}
loop = false;
break;
case EOF:
// Also handle the case when the last line has no line ending
if (out.empty()) {
is->setstate(std::ios::eofbit);
}
loop = false;
break;
default:
out += (char)c;
}
} while (loop);
if (out.empty() && (is->fail() || is->eof())) {
return (char*)nullptr;
}
strncpy(str, out.c_str(), num);
str[num - 1] = '\0';
return str;
}
return (char*)nullptr;
}, &filestream, ValueHandler, this);
}
int INIReader::ParseError() const
{
return _error;
}
std::string_view INIReader::Get(std::string_view section, std::string_view name, std::string_view default_value) const
{
std::string key = MakeKey(section, name);
// Use _values.find() here instead of _values.at() to support pre C++11 compilers
return _values.count(key) ? _values.find(key)->second : default_value;
}
std::string_view INIReader::GetString(std::string_view section, std::string_view name, std::string_view default_value) const
{
auto str = Get(section, name, "");
return str.empty() ? default_value : str;
}
long INIReader::GetInteger(std::string_view section, std::string_view name, long default_value) const
{
std::string_view valstr = Get(section, name, "");
long n;
auto ec = std::from_chars(valstr.data(), valstr.data() + valstr.size(), n).ec;
return ec == std::errc() ? n : default_value;
}
double INIReader::GetReal(std::string_view section, std::string_view name, double default_value) const
{
std::string valstr = std::string(Get(section, name, ""));
const char* value = valstr.c_str();
char* end;
double n = strtod(value, &end);
return end > value ? n : default_value;
/*
// FIXME: std::from_chars<double> not supported by clang and old g++ versions
std::string_view valstr = Get(section, name, "");
double n;
auto ec = std::from_chars(valstr.data(), valstr.data() + valstr.size(), n).ec;
return ec == std::errc() ? n : default_value;
*/
}
bool INIReader::GetBoolean(std::string_view section, std::string_view name, bool default_value) const
{
auto valstr = std::string(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;
}
bool INIReader::HasValue(std::string_view section, std::string_view name) const
{
std::string key = MakeKey(section, name);
return _values.count(key);
}
std::string INIReader::MakeKey(std::string_view section, std::string_view name)
{
std::string key = std::string(section) + "=" + std::string(name);
// Convert to lower case to make section/name lookups case-insensitive
std::transform(key.begin(), key.end(), key.begin(), ::tolower);
return key;
}
int INIReader::ValueHandler(void* user, const char* section, const char* name,
const char* value)
{
INIReader* reader = static_cast<INIReader*>(user);
std::string key = MakeKey(section, name);
if (reader->_values[key].size() > 0)
reader->_values[key] += "\n";
reader->_values[key] += value;
return 1;
}
} //namespace lcf