-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeggml.cpp
412 lines (350 loc) · 7.21 KB
/
peggml.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
#include <mutex>
std::mutex m;
#include "peglib.h"
#include "util.h"
#include "callstack.h"
#include <memory>
#include <vector>
#include <map>
#include <cassert>
#include "peggml.h"
#define ERROR_PREFIX peggml
#include "error.h"
namespace
{
std::string g_str_return;
}
#define STORE_STRING(s) (g_str_return = s).c_str()
// ABI test -- should return "gml-peglib"
ty_string
peggml_abi_test()
{
return "gml-peglib";
}
// Version number
ty_real
peggml_version()
{
return PEGGML_VERSION;
}
using namespace peg;
namespace
{
std::vector<std::unique_ptr<parser>> g_parsers;
parser* _get_parser(ty_real _handle)
{
size_t handle = _handle;
if (g_parsers.size() <= handle || !g_parsers[handle])
{
return error(nullptr, "invalid handle %d", _handle);
}
return g_parsers[handle].get();
}
#define get_parser(lvar, handle, errval) parser* lvar = _get_parser(handle); if (!lvar) return error(errval, "invalid handle idx: %d", handle)
}
handle_t
peggml_parser_create(ty_string grammar)
{
// find index for new parser
size_t index = g_parsers.size();
for (size_t i = 0; i < g_parsers.size(); ++i)
{
if (!g_parsers[i])
{
index = i;
break;
}
}
if (index == g_parsers.size())
{
g_parsers.emplace_back();
}
std::unique_ptr<parser> p(new parser());
std::stringstream errlog;
p->log = [&errlog](size_t line, size_t col, const std::string& msg) {
errlog << line << ":" << col << ": " << msg << "\n";
};
auto ok = p->load_grammar(grammar);
if (!ok || !*p)
{
std::string errstr = errlog.str();
if (errstr.length() > 0)
{
return error(-1, "%s", errstr.c_str());
}
else
{
return error(-2, "grammar syntax invalid");
}
}
else
{
g_parsers[index] = std::move(p);
return index;
}
}
ty_real
peggml_parser_enable_packrat(handle_t handle)
{
get_parser(p, handle, 1);
p->enable_packrat_parsing();
return 0;
}
// Destroy grammar syntax
// (returns 0 on success)
ty_real
peggml_parser_destroy(handle_t _handle)
{
size_t handle = handle;
if (g_parsers.size() <= handle || !g_parsers[handle])
{
return error(1, "invalid handle %d", _handle);
}
g_parsers[handle].reset();
return 0;
}
namespace
{
bool g_parse_in_progress = false;
std::string g_parse_text;
std::unique_ptr<callstack> _g_parse_cs_ptr;
// return callstack, allocating one if none exists.
callstack& get_parse_cs()
{
if (!_g_parse_cs_ptr)
{
_g_parse_cs_ptr.reset(new callstack());
}
return *_g_parse_cs_ptr.get();
}
#define g_parse_cs get_parse_cs()
// suspended parse context
const SemanticValues* g_sv;
symbol_id_t g_symbol_id;
uint32_t g_uuid = 0;
uuid_t g_root_uuid = -1;
}
// sets secondary callstack/fiber size
ty_real
peggml_set_stack_size(ty_real size)
{
if (g_parse_in_progress) return error(1, "cannot set peggml stack size -- parse in progress.");
if (size <= 0) return error(2, "peggml stack size must be positive");
try
{
_g_parse_cs_ptr.reset(new callstack(static_cast<size_t>(size)));
if (!_g_parse_cs_ptr)
{
return error(3, "error allocating stack");
}
}
catch (...)
{
return error(4, "error allocating stack");
}
return 0;
}
ty_real peggml_set_stack_size()
{
return get_parse_cs().get_stack_size();
}
external ty_real
peggml_stack_current_depth()
{
return g_parse_cs.current_stack_depth();
}
external ty_real
peggml_estimate_stack_usage()
{
return g_parse_cs.estimate_stack_depth();
}
ty_real
peggml_parser_set_symbol_id(handle_t handle, ty_string symbol, symbol_id_t symbol_id)
{
if (symbol_id == 0)
{
return error(2, "cannot set symbol id to 0.");
}
if (symbol == nullptr)
{
return error(3, "argument string is nullptr");
}
get_parser(p, handle, 1);
(*p)[symbol] = [symbol_id](const SemanticValues& sv) -> uuid_t {
g_sv = &sv;
// we could store 'symbol', but lazy...
g_symbol_id = symbol_id;
g_parse_cs.yield();
return g_uuid++;
};
return 0;
}
ty_real
peggml_parse_begin(handle_t handle, ty_string _text)
{
if (g_parse_in_progress)
{
return error(-1, "parse already in progress.");
}
// copy to static location for permanent access even after setjmp/longjmp
g_parse_text = _text;
get_parser(p, handle, -2);
g_parse_cs.begin([p, text=g_parse_text.c_str()](){
p->parse(text, g_root_uuid, nullptr);
g_parse_in_progress = false;
});
return 0;
}
ty_real
peggml_parse_next()
{
if (g_parse_cs.resume())
{
return g_symbol_id;
}
else
{
if (g_parse_cs.is_error())
{
return error(-1, "exception during parse: %s", g_parse_cs.error_what());
}
return 0;
}
}
ty_real
peggml_parse_elt_get_uuid()
{
return static_cast<uuid_t>(g_uuid);
}
ty_string
peggml_parse_elt_get_string()
{
return STORE_STRING(g_sv->sv());
}
ty_real
peggml_parse_elt_get_string_offset()
{
return g_sv->sv().data() - g_sv->ss;
}
ty_real
peggml_parse_elt_get_string_line()
{
return g_sv->line_info().first;
}
ty_real
peggml_parse_elt_get_string_column()
{
return g_sv->line_info().second;
}
ty_real
peggml_parse_elt_get_choice()
{
return g_sv->choice();
}
#define RANGE_CHECK(i, container, rvalue) \
if (i < 0 || i >= (container).size()) \
{ return error(rvalue, "index out of bounds"); }
index_t
peggml_parse_elt_get_child_count()
{
return g_sv->size();
}
ty_real
peggml_parse_elt_get_child_uuid(index_t _i)
{
size_t i = _i;
RANGE_CHECK(i, *g_sv, -1);
return std::any_cast<uuid_t>(g_sv->at(i));
}
index_t
peggml_parse_elt_get_token_count()
{
return g_sv->tokens.size();
}
ty_real
peggml_parse_elt_get_token_offset(index_t _i)
{
size_t i = _i;
RANGE_CHECK(i, g_sv->tokens, 0);
return g_sv->token(i).data() - g_sv->ss;
}
ty_string
peggml_parse_elt_get_token_string(index_t _i)
{
size_t i = _i;
RANGE_CHECK(i, g_sv->tokens, "");
return STORE_STRING(g_sv->token(i));
}
ty_real
peggml_parse_elt_get_token_number()
{
try
{
return g_sv->token_to_number<ty_real>();
}
catch(...)
{
return error(0, "error occurred parsing number from token");
}
}
external uuid_t
peggml_get_root_uuid()
{
return g_root_uuid;
}
#ifndef PEGGML_IS_DLL
int main(int argc, char** argv)
{
std::cout << "hello world\n";
int handle = peggml_parser_create(R"(
# Grammar for Calculator...
Additive <- Multitive '+' Additive / Multitive
Multitive <- Primary '*' Multitive / Primary
Primary <- '(' Additive ')' / Number
Number <- < [0-9]+ >
%whitespace <- [ \t]*
)");
peggml_parser_set_symbol_id(handle, "Additive", 1);
peggml_parser_set_symbol_id(handle, "Multitive", 2);
peggml_parser_set_symbol_id(handle, "Number", 4);
if (peggml_parse_begin(handle, "5 + (3 * 7) + 2"))
{
std::cerr << peggml_error_str() << std::endl;
return 1;
}
std::map<uuid_t, int> values;
int value;
while (true)
{
switch(static_cast<int32_t>(peggml_parse_next()))
{
case 1:
value = 0;
for (size_t i = 0; i < peggml_parse_elt_get_child_count(); ++i)
{
uuid_t child = peggml_parse_elt_get_child_uuid(i);
value += values[child];
}
break;
case 2:
value = 1;
for (size_t i = 0; i < peggml_parse_elt_get_child_count(); ++i)
{
uuid_t child = peggml_parse_elt_get_child_uuid(i);
value *= values[child];
}
break;
case 4:
value = peggml_parse_elt_get_token_number();
break;
default:
// no more to parse.
goto end_loop;
}
values[peggml_parse_elt_get_uuid()] = value;
}
end_loop:
std::cout << "final value is " << value << std::endl;
return 0;
}
#endif