-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.cpp
431 lines (355 loc) · 11 KB
/
table.cpp
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
#include "table.h"
#include <fstream>
#include "convert.h"
#include "unicode.h"
#include "streams.h"
#include "lexal.h"
#include "exceptions.h"
class IntValue: public Value
{
private:
int value;
public:
IntValue(int val) { value = val; };
virtual ~IntValue() { };
public:
virtual Type getType() const { return Value::Integer; };
virtual int asInt() const { return value; };
virtual double asDouble() const { return value; };
virtual std::wstring asString() const { return toString(value); };
virtual ::Table* asTable() const {
throw Exception(L"Can't convert integer to table");
};
virtual Value* clone() const { return new IntValue(value); };
};
class DoubleValue: public Value
{
private:
double value;
public:
DoubleValue(double val) { value = val; };
virtual ~DoubleValue() { };
public:
virtual Type getType() const { return Value::Double; };
virtual int asInt() const { return (int)value; };
virtual double asDouble() const { return value; };
virtual std::wstring asString() const { return toString(value); };
virtual ::Table* asTable() const {
throw Exception(L"Can't convert double to table");
};
virtual Value* clone() const { return new DoubleValue(value); };
};
class StringValue: public Value
{
private:
std::wstring value;
public:
StringValue(const std::wstring& val): value(val) { };
virtual ~StringValue() { };
public:
virtual Type getType() const { return Value::String; };
virtual int asInt() const { return strToInt(value); };
virtual double asDouble() const { return strToDouble(value); };
virtual std::wstring asString() const { return value; };
virtual ::Table* asTable() const {
throw Exception(L"Can't convert string to table");
};
virtual Value* clone() const { return new StringValue(value); };
};
class TableValue: public Value
{
private:
::Table *value;
public:
TableValue(::Table *val) { value = val; };
virtual ~TableValue() { delete value; };
public:
virtual Type getType() const { return Value::Table; };
virtual int asInt() const {
throw Exception(L"Can't convert table to int");
};
virtual double asDouble() const {
throw Exception(L"Can't convert table to double");
};
virtual std::wstring asString() const {
throw Exception(L"Can't convert table to string");
};
virtual ::Table* asTable() const { return value; };
virtual Value* clone() const {
return new TableValue(new ::Table(*value));
};
};
Table::Table(const Table &table)
{
*this = table;
}
Table::Table(const std::string &fileName)
{
lastArrayIndex = 0;
std::ifstream stream(fileName.c_str(),
std::ios::binary | std::ios::in);
if (! stream.good())
throw Exception(L"Error opening file '" + fromMbcs(fileName) + L"");
UtfStreamReader reader(&stream);
Lexal lexal = Lexal(reader);
parse(lexal, false, 0, 0);
}
Table::Table(Lexal &lexal, int line, int pos)
{
lastArrayIndex = 0;
parse(lexal, true, line, pos);
}
Table::Table()
{
lastArrayIndex = 0;
}
Table::~Table()
{
for (auto f : fields)
delete f.second;
}
Table& Table::operator = (const Table &table)
{
if (this == &table)
return *this;
fields.clear();
lastArrayIndex = table.lastArrayIndex;
for (const auto f : table.fields)
fields[f.first] = f.second->clone();
return *this;
}
static Value* lexToValue(Lexal &lexal, const Lexeme &lexeme)
{
switch (lexeme.getType())
{
case Lexeme::Ident:
case Lexeme::String:
return new StringValue(lexeme.getContent());
case Lexeme::Integer:
return new IntValue(strToInt(lexeme.getContent()));
case Lexeme::Float:
return new DoubleValue(strToDouble(lexeme.getContent()));
case Lexeme::Symbol:
if (L"{" == lexeme.getContent())
return new TableValue(new Table(lexal, lexeme.getLine(),
lexeme.getPos()));
default:
throw Exception(L"Invalid lexeme type at " + lexeme.getPosStr());
}
}
void Table::addValuePair(Lexal &lexal, const std::wstring &name)
{
Lexeme lex = lexal.getNext();
if (Lexeme::Eof == lex.getType())
throw Exception(L"Unexpected end of file");
fields[name] = lexToValue(lexal, lex);
}
void Table::addArrayElement(Lexal &lexal, const Lexeme &lexeme)
{
fields[numToStr(lastArrayIndex)] = lexToValue(lexal, lexeme);
lastArrayIndex++;
}
void Table::parse(Lexal &lexal, bool needBracket, int startLine, int startPos)
{
Lexeme lex;
bool read = true;
while (true) {
if (read) {
lex = lexal.getNext();
read = true;
}
Lexeme::Type type = lex.getType();
if (Lexeme::Eof == type) {
if (! needBracket)
return;
else
throw Exception(L"Table started at " + Lexal::posToStr(
startLine, startPos) + L" is never finished");
} else if ((Lexeme::Symbol == type) && (L"}" == lex.getContent())
&& needBracket)
return;
else if ((Lexeme::Symbol == type) && ((L"," == lex.getContent()) ||
(L";" == lex.getContent()))) {
// ignore separator
} else if (Lexeme::Ident == type) {
Lexeme nextLex = lexal.getNext();
if (Lexeme::Symbol == nextLex.getType()) {
if (L"=" == nextLex.getContent())
addValuePair(lexal, lex.getContent());
else {
addArrayElement(lexal, lex);
lex = nextLex;
read = false;
}
} else
throw Exception(L"Unexpected token at " + Lexal::posToStr(
startLine, startPos));
} else
addArrayElement(lexal, lex);
}
}
bool Table::hasKey(const std::wstring &key) const
{
return (fields.end() != fields.find(key));
}
static std::wstring encodeString(const std::wstring &str)
{
std::wstring res;
int len = str.length();
res += L"\"";
for (int i = 0; i < len; i++) {
wchar_t ch = str[i];
switch (ch) {
case '\n': res += L"\\n"; break;
case '\r': res += L"\\r"; break;
case '\'': res += L"\\'"; break;
case '\"': res += L"\\\""; break;
case '\\': res += L"\\\\"; break;
default:
res += ch;
}
}
res += L"\"";
return res;
}
static std::wstring printValue(Value *value, bool butify, int spaces)
{
if (! value)
return L"";
switch (value->getType()) {
case Value::Integer:
return toString(value->asInt());
case Value::Double:
{
std::wstring s = toString(value->asDouble());
if (s.find(L'.') >= s.length())
s.append(L".0");
return s;
}
case Value::String:
return encodeString(value->asString());
case Value::Table:
return value->asTable()->toString(true, butify, spaces);
}
return L"";
}
bool Table::isArray() const
{
int size = fields.size();
for (int i = 0; i < size; i++) {
if (! hasKey(::toString(i)))
return false;
}
return true;
}
std::wstring Table::toString() const
{
return toString(false, true, 0);
}
static bool isInteger(const std::wstring &str)
{
int sz = str.length();
for (int i = 0; i < sz; i++) {
wchar_t ch = str[i];
if ((ch < L'0') || (ch > L'9'))
return false;
}
return true;
}
std::wstring Table::toString(bool printBraces, bool butify, int spaces) const
{
std::wstring res;
if (printBraces)
res += butify ? L"{\n" : L"{";
bool printNames = ! isArray();
for (const auto f : fields) {
const std::wstring &name = f.first;
Value *value = f.second;
if (butify)
for (int j = 0; j < spaces; j++)
res += L" ";
else
res += L" ";
if (printNames && (! isInteger(name)))
res += name + L" = ";
res += printValue(value, butify, spaces + 4);
if (printNames)
res += butify ? L";\n" : L";";
else
res += butify ? L",\n" : L",";
}
if (printBraces) {
if (! butify)
res += L" }";
else {
int ident = (spaces >= 4) ? spaces - 4 : 0;
for (int j = 0; j < ident; j++)
res += L" ";
res += L"}";
}
}
return res;
}
Value::Type Table::getType(const std::wstring &key) const
{
ValuesMap::const_iterator i = fields.find(key);
if (i == fields.end())
throw Exception(L"Field '" + key + L"' doesn't exists in the table");
return (*i).second->getType();
}
std::wstring Table::getString(const std::wstring &key,
const std::wstring &dflt) const
{
ValuesMap::const_iterator i = fields.find(key);
return (i != fields.end()) ? (*i).second->asString() : dflt;
}
int Table::getInt(const std::wstring &key, int dflt) const
{
ValuesMap::const_iterator i = fields.find(key);
return (i != fields.end()) ? ((*i).second ? (*i).second->asInt() : dflt) : dflt;
}
double Table::getDouble(const std::wstring &key, double dflt) const
{
ValuesMap::const_iterator i = fields.find(key);
return (i != fields.end()) ? (*i).second->asDouble() : dflt;
}
Table* Table::getTable(const std::wstring &key, Table *dflt) const
{
ValuesMap::const_iterator i = fields.find(key);
return (i != fields.end()) ? (*i).second->asTable() : dflt;
}
void Table::setValue(const std::wstring &key, Value *value)
{
ValuesMap::const_iterator i = fields.find(key);
if (i != fields.end())
delete (*i).second;
fields[key] = value;
}
void Table::setString(const std::wstring &key, const std::wstring &value)
{
setValue(key, new StringValue(value));
}
void Table::setInt(const std::wstring &key, int value)
{
setValue(key, new IntValue(value));
}
void Table::setDouble(const std::wstring &key, double value)
{
setValue(key, new DoubleValue(value));
}
void Table::setTable(const std::wstring &key, Table *value)
{
setValue(key, new TableValue(value));
}
void Table::save(const std::wstring &fileName) const
{
std::ofstream stream(toMbcs(fileName).c_str(), std::ios::out
| std::ios::binary);
if (! stream.good())
throw Exception(L"Can't open '" + fileName + L"' for writing");
std::string utfStr(toUtf8(toString()));
stream.write(utfStr.c_str(), utfStr.length());
if (! stream.good())
throw Exception(L"Can't write table to file '" + fileName + L"'");
stream.close();
}