-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIniParser.cpp
More file actions
255 lines (186 loc) · 4.66 KB
/
IniParser.cpp
File metadata and controls
255 lines (186 loc) · 4.66 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
------------------------------------------------------------
IniParser v1.4 - a *.ini file reader for C++
04/01/2024
Leonardo W. Ribeiro
------------------------------------------------------------
*/
#include <iostream>
#include <fstream>
#include <map>
#include <string>
#include <cctype>
#include <vector>
class IniParser {
private:
std::map<std::string, std::map<std::string, std::string>> internal;
std::string fileName;
std::ifstream in;
std::vector<std::string> tokens;
std::string getToken();
bool reserved(unsigned char c);
bool isIdent(std::string &str);
std::string trimWS(std::string& str);
void parse();
public:
class FileNotFound : public std::exception {};
class SyntaxError : public std::exception {
public:
std::string message;
SyntaxError(std::string message){
this->message = message;
}
const char* what() const noexcept override {
return message.c_str();
}
};
class EOFReached : public std::exception {};
IniParser(std::string fileName = ""){
this->fileName = fileName;
}
void setFilename(std::string filename){
this->fileName = filename;
}
std::map<std::string, std::string>& operator[](std::string section){
return internal[section];
}
void clear(){
internal.clear();
}
void read();
void print();
};
bool IniParser::reserved(unsigned char c){
if( (c == '[') || (c == ']') || (c == '=') || (c == ';') || ( c == '\n') )
return true;
return false;
}
std::string IniParser::trimWS(std::string& str) {
size_t first = str.find_first_not_of(" \t\n\r");
size_t last = str.find_last_not_of(" \t\n\r");
if (first == std::string::npos || last == std::string::npos)
return ""; // String contains only whitespaces
return str.substr(first, last - first + 1);
}
std::string IniParser::getToken(){
std::string t = "";
unsigned char peeked = in.peek();
if( in.eof() ){
return "\0";
}
else if( reserved(peeked) ){
t += in.get();
}
else {
while( (!reserved(peeked)) && (!in.eof()) ){
t += in.get();
peeked = in.peek();
}
}
if(t == "\n"){
return t;
}
return trimWS(t);
}
void IniParser::read(){
in.exceptions( std::ifstream::failbit | std::ifstream::badbit );
try {
in.open(fileName);
}
catch(...){
throw IniParser::FileNotFound();
}
while( !in.eof() ){
std::string token = getToken();
if( !(token == "\0") )
tokens.push_back(token);
}
in.close();
parse();
}
bool IniParser::isIdent(std::string &str){
if( str.length() == 1 ){
if( reserved( str[0] ) )
return false;
}
return true;
}
void IniParser::parse(){
std::string curSection;
int state = 0;
unsigned int i = 0;
int lineNumber = 1;
for(i=0; i<tokens.size(); i++){
std::string token = tokens[i];
if( (state == 0) && (token == "[") ) {state = 1;}
else if( (state == 1) && isIdent(token) ) {state = 2;}
else if( (state == 2) && (token == "]") ){
state = 0;
curSection = tokens[i-1];
}
else if( (state == 0) && isIdent(token) ) {state = 3;}
else if( (state == 3) && (token == "=") ) {state = 4;}
else if( (state == 4) && isIdent(token) ){
state = 0;
internal[curSection][tokens[i-2]] = token;
}
else if( (state == 4) && (token == "\n") ){
state = 0;
internal[curSection][tokens[i-2]] = "";
lineNumber++;
}
else if( (state == 0) && (token == ";") ) {state = 5;}
else if( (state == 5) && isIdent(token) ) {state = 0;}
else if( (state == 0) && (token == "\n") ) {
state = 0;
lineNumber++;
}
else {
std::string message = "Syntax error on file \"" + fileName + "\" at line ";
message += std::to_string(lineNumber);
message += ".\n...";
if( (i-1) >= 0 )
message += tokens[i-1];
message += " ->";
if(token != "\n")
message += token;
else
message += "LF";
message += "<- ";
if( (i+1) < tokens.size())
message += tokens[i+1];
message += "...";
throw SyntaxError(message);
}
}
if( state != 0 ){
std::string message = "Syntax error on file \"" + fileName + "\" at line ";
message += std::to_string(lineNumber);
message += ".\n...";
if( (i-1) >= 0 )
message += tokens[i-1];
message += " ->";
if(tokens[i] != "\n")
message += tokens[i];
else
message += "LF";
message += "<- EOF";
throw SyntaxError(message);
}
tokens.clear();
}
void IniParser::print(){
for (const auto& secPair : internal) {
for (const auto& keyPair : secPair.second) {
std::cout << "[" << secPair.first << "][" << keyPair.first << "]=" << keyPair.second << std::endl;
}
}
}
/*
int main(){
IniParser config("config.ini");
config.read();
config.print();
return 0;
}
*/