-
Notifications
You must be signed in to change notification settings - Fork 2
/
parsing.cpp
455 lines (366 loc) · 12.3 KB
/
parsing.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#include "parsing.hpp"
#include "helpers.hpp"
#include <boost/algorithm/string.hpp>
#include <boost/format.hpp>
#include <cassert>
#include <stdexcept>
using namespace std;
namespace sopang::parsing
{
const string *const *parseTextArray(string text, int *nSegments, int **segmentSizes)
{
boost::trim(text);
vector<vector<string>> segments;
bool inSegment = false;
vector<string> curSegment;
string curStr = "";
for (size_t i = 0; text[i] != '\0'; ++i)
{
if (text[i] != '{' and text[i] != '}') // Inside a string or a segment: comma or string character.
{
if (not inSegment)
{
if (text[i] == ',')
{
throw runtime_error("bad input text formatting: comma outside a segment: char index = " + to_string(i));
}
curStr += text[i];
}
else
{
if (text[i] == ',')
{
curSegment.emplace_back(move(curStr));
curStr.clear();
}
else
{
curStr += text[i];
}
}
}
else if (text[i] == '{') // Segment start.
{
assert(not inSegment and curSegment.size() == 0);
if (not curStr.empty()) // If we enter the non-deterministic segment from a deterministic segment (string).
{
segments.emplace_back(vector<string>{ move(curStr) });
curStr.clear();
}
inSegment = true;
}
else // Segment end.
{
assert(text[i] == '}');
assert(inSegment == true and curSegment.size() >= 1);
if (curSegment.empty())
{
throw runtime_error("non-deterministic segment cannot be empty: char index = " + to_string(i));
}
curSegment.emplace_back(move(curStr));
curStr.clear();
segments.emplace_back(move(curSegment));
curSegment.clear();
inSegment = false;
}
}
if (not curStr.empty()) // If the file ended with a deterministic segment.
{
assert(not inSegment and curSegment.empty());
segments.emplace_back(vector<string>{ move(curStr) });
}
*nSegments = segments.size();
*segmentSizes = new int[segments.size()];
string **res = new string *[segments.size()];
for (size_t iSeg = 0; iSeg < segments.size(); ++iSeg)
{
(*segmentSizes)[iSeg] = segments[iSeg].size();
res[iSeg] = new string[segments[iSeg].size()];
for (size_t iVar = 0; iVar < segments[iSeg].size(); ++iVar) // We iterate segment variants.
{
res[iSeg][iVar] = segments[iSeg][iVar];
}
}
return const_cast<const string *const *>(res);
}
vector<string> parsePatterns(string patternsStr)
{
boost::trim(patternsStr);
vector<string> res;
vector<string> splitRes;
boost::split(splitRes, patternsStr, boost::is_any_of("\n"));
for (string &pattern : splitRes)
{
boost::trim(pattern);
}
helpers::removeEmptyStrings(splitRes);
return splitRes;
}
namespace // Contains helpers for parsing sources.
{
int parseSourceCount(const string &text, size_t &startIdx)
{
string numberStr = "";
for (startIdx = 0; text[startIdx] != '\n'; ++startIdx)
{
if (not isdigit(text[startIdx]))
{
throw runtime_error("bad source count formatting, index = " + to_string(startIdx));
}
numberStr += text[startIdx];
}
startIdx += 1;
const int ret = stoi(numberStr);
return ret;
}
void handleSourceNumberEnd(string &curNumber, Sopang::SourceSet &curVariant, int sourceCount, size_t charIdx)
{
if (curNumber.empty())
{
throw runtime_error("bad empty number, index = " + to_string(charIdx));
}
const int sourceIdx = stoi(curNumber);
if (sourceIdx >= sourceCount)
{
throw runtime_error((boost::format("bad source index = %1% >= source count = %2%")
% sourceIdx % sourceCount).str());
}
if (curVariant.test(sourceIdx))
{
throw runtime_error((boost::format("duplicate source index = %1%, text index = %2%")
% sourceIdx % charIdx).str());
}
curVariant.set(sourceIdx);
curNumber.clear();
}
void handleSourceVariantEnd(Sopang::SourceSet &curVariant, vector<Sopang::SourceSet> &curSegment)
{
curSegment.push_back(curVariant);
curVariant.reset();
}
void addReferenceSources(vector<Sopang::SourceSet> &segment, int sourceCount)
{
Sopang::SourceSet referenceVariant(sourceCount);
for (int sourceIdx = 0; sourceIdx < sourceCount; ++sourceIdx)
{
bool exists = false;
for (const Sopang::SourceSet &variant : segment)
{
if (variant.test(sourceIdx))
{
exists = true;
break;
}
}
if (not exists)
{
referenceVariant.set(sourceIdx);
}
}
segment.emplace_back(move(referenceVariant));
}
void handleSourceSegmentEnd(vector<Sopang::SourceSet> &curSegment,
Sopang::SourceSet &curVariant, string &curNumber,
vector<vector<Sopang::SourceSet>> &sources,
int sourceCount, size_t charIdx)
{
handleSourceNumberEnd(curNumber, curVariant, sourceCount, charIdx);
handleSourceVariantEnd(curVariant, curSegment);
addReferenceSources(curSegment, sourceCount);
sources.emplace_back(move(curSegment));
curSegment.clear();
}
} // namespace (anonymous)
// We will return a vector with size equal to the number of non-deterministic segments.
// For each segment, we will store a vector with size equal to the number of variants in that segment.
// For each variant, we will store a set with source indexes, with reference sources stored in the last element (set).
vector<vector<Sopang::SourceSet>> parseSources(string text, int &sourceCount)
{
if (text.empty())
{
return {};
}
boost::trim(text);
bool inSegment = false;
bool inSingleVariant = false;
bool inMultipleVariants = false;
size_t startIdx;
sourceCount = parseSourceCount(text, startIdx);
vector<vector<Sopang::SourceSet>> ret;
vector<Sopang::SourceSet> curSegment;
Sopang::SourceSet curVariant(sourceCount);
string curNumber;
for (size_t charIdx = startIdx; charIdx < text.size(); ++charIdx)
{
const char curChar = text[charIdx];
if (inSegment)
{
if (inSingleVariant)
{
if (isdigit(curChar))
{
curNumber += curChar;
}
else if (curChar == ',')
{
handleSourceNumberEnd(curNumber, curVariant, sourceCount, charIdx);
}
else if (curChar == '}')
{
handleSourceSegmentEnd(curSegment, curVariant, curNumber, ret, sourceCount, charIdx);
inSingleVariant = false;
inSegment = false;
}
else
{
throw runtime_error((boost::format("bad character (in a single source variant) = %1%, index = %2%")
% curChar % charIdx).str());
}
}
else if (inMultipleVariants)
{
if (isdigit(curChar))
{
curNumber += curChar;
}
else if (curChar == ',')
{
handleSourceNumberEnd(curNumber, curVariant, sourceCount, charIdx);
}
else if (curChar == '}' and text[charIdx + 1] == '}') // Segment end.
{
handleSourceSegmentEnd(curSegment, curVariant, curNumber, ret, sourceCount, charIdx);
inMultipleVariants = false;
inSegment = false;
charIdx += 1;
}
else if (curChar == '}') // Variant end.
{
handleSourceNumberEnd(curNumber, curVariant, sourceCount, charIdx);
handleSourceVariantEnd(curVariant, curSegment);
}
else if (curChar != '{')
{
throw runtime_error((boost::format("bad character (in multiple source variants) = %1%, index = %2%")
% curChar % charIdx).str());
}
}
else // Not in any variant.
{
if (curChar == '{')
{
inMultipleVariants = true;
}
else if (isdigit(curChar))
{
curNumber += curChar;
inSingleVariant = true;
}
else
{
throw runtime_error((boost::format("bad character (not in a source variant) = %1%, index = %2%")
% curChar % charIdx).str());
}
}
}
else // Not in a segment.
{
if (curChar == '{')
{
inSegment = true;
}
else
{
throw runtime_error((boost::format("bad character (not in a source segment) = %1%, index = %2%")
% curChar % charIdx).str());
}
}
}
if (inSegment or inSingleVariant or inMultipleVariants)
{
throw runtime_error("the last segment is not closed with \"}\"");
}
return ret;
}
namespace // Contains helpers for parsing compressed sources.
{
int unpackNumber(const unsigned char first, const unsigned char second, size_t &shift)
{
const int firstVal = static_cast<int>(first);
if (firstVal >= 128)
{
shift = 1;
return firstVal - 128;
}
const int secondVal = static_cast<int>(second);
shift = 2;
return firstVal * 128 + secondVal - 128;
}
} // namespace (anonymous)
// The same output as for Sopang::parseSources.
vector<vector<Sopang::SourceSet>> parseSourcesCompressed(string text, int &sourceCount)
{
if (text.empty())
{
return {};
}
boost::trim(text);
size_t charIdx, shift;
sourceCount = parseSourceCount(text, charIdx);
vector<vector<Sopang::SourceSet>> ret;
vector<Sopang::SourceSet> curSegment;
Sopang::SourceSet curVariant(sourceCount);
/** Segment start mark value in the compressed sources file. */
constexpr char segmentStartMark = static_cast<char>(127);
while (charIdx < text.size())
{
const char curChar = text[charIdx];
if (curChar == segmentStartMark)
{
if (not curSegment.empty())
{
addReferenceSources(curSegment, sourceCount);
ret.emplace_back(move(curSegment));
curSegment.clear();
}
charIdx += 1;
continue;
}
assert(charIdx < text.size());
// Note that even if (charIdx + 1) spills, it should be contained by the terminating '\0'.
const int variantSize = unpackNumber(text[charIdx], text[charIdx + 1], shift);
charIdx += shift;
int prevVal = 0;
for (int variantIdx = 0; variantIdx < variantSize; ++variantIdx)
{
int sourceVal = unpackNumber(text[charIdx], text[charIdx + 1], shift);
sourceVal += prevVal;
assert(sourceVal <= sourceCount and (not curVariant.test(sourceVal)));
curVariant.set(sourceVal);
prevVal = sourceVal;
charIdx += shift;
}
curSegment.push_back(curVariant);
curVariant.reset();
}
assert(not curSegment.empty());
addReferenceSources(curSegment, sourceCount);
ret.emplace_back(move(curSegment));
return ret;
}
Sopang::SourceMap sourcesToSourceMap(int nSegments, const int *segmentSizes,
const vector<vector<Sopang::SourceSet>> &sources)
{
unordered_map<int, vector<Sopang::SourceSet>> ret;
size_t arrayIdx = 0;
for (int iS = 0; iS < nSegments; ++iS)
{
if (segmentSizes[iS] > 1)
{
ret[iS] = sources[arrayIdx];
arrayIdx += 1;
}
}
return ret;
}
} // namespace sopang::parsing