edn_turbo 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/Gemfile +4 -0
- data/README.md +30 -0
- data/Rakefile +47 -0
- data/bin/edn-ruby-read +27 -0
- data/bin/ppedn +41 -0
- data/ext/edn_turbo/edn_parser.cc +2009 -0
- data/ext/edn_turbo/edn_parser.h +62 -0
- data/ext/edn_turbo/edn_parser.rl +725 -0
- data/ext/edn_turbo/edn_parser_def.cc +50 -0
- data/ext/edn_turbo/extconf.rb +3 -0
- data/ext/edn_turbo/main.cc +49 -0
- data/lib/edn_turbo/edn_parser.rb +10 -0
- data/lib/edn_turbo/version.rb +3 -0
- data/lib/edn_turbo.rb +27 -0
- data/test/test_output_diff.rb +209 -0
- metadata +104 -0
@@ -0,0 +1,2009 @@
|
|
1
|
+
|
2
|
+
#line 1 "edn_parser.rl"
|
3
|
+
#include <iostream>
|
4
|
+
#include <string>
|
5
|
+
|
6
|
+
#include <ruby/ruby.h>
|
7
|
+
#include <ruby/encoding.h>
|
8
|
+
|
9
|
+
#include <rice/Hash.hpp>
|
10
|
+
#include <rice/Array.hpp>
|
11
|
+
#include <rice/to_from_ruby.hpp>
|
12
|
+
|
13
|
+
#include "edn_parser.h"
|
14
|
+
|
15
|
+
//
|
16
|
+
// EDN spec at: https://github.com/edn-format/edn
|
17
|
+
//
|
18
|
+
|
19
|
+
|
20
|
+
#line 47 "edn_parser.rl"
|
21
|
+
|
22
|
+
|
23
|
+
// ============================================================
|
24
|
+
// machine for parsing various types
|
25
|
+
//
|
26
|
+
|
27
|
+
|
28
|
+
#line 29 "edn_parser.cc"
|
29
|
+
static const int EDN_value_start = 1;
|
30
|
+
static const int EDN_value_first_final = 11;
|
31
|
+
static const int EDN_value_error = 0;
|
32
|
+
|
33
|
+
static const int EDN_value_en_main = 1;
|
34
|
+
|
35
|
+
|
36
|
+
#line 126 "edn_parser.rl"
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
const char *edn::Parser::EDN_parse_value(const char *p, const char *pe, Rice::Object& o)
|
41
|
+
{
|
42
|
+
int cs;
|
43
|
+
|
44
|
+
|
45
|
+
#line 46 "edn_parser.cc"
|
46
|
+
{
|
47
|
+
cs = EDN_value_start;
|
48
|
+
}
|
49
|
+
|
50
|
+
#line 134 "edn_parser.rl"
|
51
|
+
|
52
|
+
#line 53 "edn_parser.cc"
|
53
|
+
{
|
54
|
+
if ( p == pe )
|
55
|
+
goto _test_eof;
|
56
|
+
switch ( cs )
|
57
|
+
{
|
58
|
+
case 1:
|
59
|
+
switch( (*p) ) {
|
60
|
+
case 34: goto tr0;
|
61
|
+
case 40: goto tr2;
|
62
|
+
case 45: goto tr3;
|
63
|
+
case 58: goto tr4;
|
64
|
+
case 91: goto tr5;
|
65
|
+
case 102: goto st2;
|
66
|
+
case 110: goto st6;
|
67
|
+
case 116: goto st8;
|
68
|
+
case 123: goto tr9;
|
69
|
+
}
|
70
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
71
|
+
goto tr3;
|
72
|
+
goto st0;
|
73
|
+
st0:
|
74
|
+
cs = 0;
|
75
|
+
goto _out;
|
76
|
+
tr0:
|
77
|
+
#line 74 "edn_parser.rl"
|
78
|
+
{
|
79
|
+
const char *np = EDN_parse_string(p, pe, o);
|
80
|
+
if (np == NULL) { p--; {p++; cs = 11; goto _out;} } else {p = (( np))-1;}
|
81
|
+
}
|
82
|
+
goto st11;
|
83
|
+
tr2:
|
84
|
+
#line 103 "edn_parser.rl"
|
85
|
+
{
|
86
|
+
const char *np = EDN_parse_list(p, pe, o);
|
87
|
+
if (np == NULL) { p--; {p++; cs = 11; goto _out;} } else {p = (( np))-1;}
|
88
|
+
}
|
89
|
+
goto st11;
|
90
|
+
tr3:
|
91
|
+
#line 79 "edn_parser.rl"
|
92
|
+
{
|
93
|
+
// try to parse a decimal first
|
94
|
+
const char *np = EDN_parse_decimal(p, pe, o);
|
95
|
+
if (np == NULL) {
|
96
|
+
// if we can't, try to parse it as an int
|
97
|
+
np = EDN_parse_integer(p, pe, o);
|
98
|
+
}
|
99
|
+
|
100
|
+
if (np) {
|
101
|
+
{p = (( np))-1;}
|
102
|
+
p--;
|
103
|
+
{p++; cs = 11; goto _out;}
|
104
|
+
}
|
105
|
+
else {
|
106
|
+
error(*p);
|
107
|
+
{p = (( pe))-1;}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
goto st11;
|
111
|
+
tr4:
|
112
|
+
#line 69 "edn_parser.rl"
|
113
|
+
{
|
114
|
+
const char *np = EDN_parse_keyword(p, pe, o);
|
115
|
+
if (np == NULL) { p--; {p++; cs = 11; goto _out;} } else {p = (( np))-1;}
|
116
|
+
}
|
117
|
+
goto st11;
|
118
|
+
tr5:
|
119
|
+
#line 98 "edn_parser.rl"
|
120
|
+
{
|
121
|
+
const char *np = EDN_parse_vector(p, pe, o);
|
122
|
+
if (np == NULL) { p--; {p++; cs = 11; goto _out;} } else {p = (( np))-1;}
|
123
|
+
}
|
124
|
+
goto st11;
|
125
|
+
tr9:
|
126
|
+
#line 108 "edn_parser.rl"
|
127
|
+
{
|
128
|
+
const char *np = EDN_parse_map(p, pe, o);
|
129
|
+
if (np == NULL) { p--; {p++; cs = 11; goto _out;} } else {p = (( np))-1;}
|
130
|
+
}
|
131
|
+
goto st11;
|
132
|
+
tr13:
|
133
|
+
#line 62 "edn_parser.rl"
|
134
|
+
{
|
135
|
+
o = Qfalse;
|
136
|
+
}
|
137
|
+
goto st11;
|
138
|
+
tr15:
|
139
|
+
#line 59 "edn_parser.rl"
|
140
|
+
{
|
141
|
+
o = Qnil;
|
142
|
+
}
|
143
|
+
goto st11;
|
144
|
+
tr18:
|
145
|
+
#line 65 "edn_parser.rl"
|
146
|
+
{
|
147
|
+
o = Qtrue;
|
148
|
+
}
|
149
|
+
goto st11;
|
150
|
+
st11:
|
151
|
+
if ( ++p == pe )
|
152
|
+
goto _test_eof11;
|
153
|
+
case 11:
|
154
|
+
#line 113 "edn_parser.rl"
|
155
|
+
{ p--; {p++; cs = 11; goto _out;} }
|
156
|
+
#line 157 "edn_parser.cc"
|
157
|
+
goto st0;
|
158
|
+
st2:
|
159
|
+
if ( ++p == pe )
|
160
|
+
goto _test_eof2;
|
161
|
+
case 2:
|
162
|
+
if ( (*p) == 97 )
|
163
|
+
goto st3;
|
164
|
+
goto st0;
|
165
|
+
st3:
|
166
|
+
if ( ++p == pe )
|
167
|
+
goto _test_eof3;
|
168
|
+
case 3:
|
169
|
+
if ( (*p) == 108 )
|
170
|
+
goto st4;
|
171
|
+
goto st0;
|
172
|
+
st4:
|
173
|
+
if ( ++p == pe )
|
174
|
+
goto _test_eof4;
|
175
|
+
case 4:
|
176
|
+
if ( (*p) == 115 )
|
177
|
+
goto st5;
|
178
|
+
goto st0;
|
179
|
+
st5:
|
180
|
+
if ( ++p == pe )
|
181
|
+
goto _test_eof5;
|
182
|
+
case 5:
|
183
|
+
if ( (*p) == 101 )
|
184
|
+
goto tr13;
|
185
|
+
goto st0;
|
186
|
+
st6:
|
187
|
+
if ( ++p == pe )
|
188
|
+
goto _test_eof6;
|
189
|
+
case 6:
|
190
|
+
if ( (*p) == 105 )
|
191
|
+
goto st7;
|
192
|
+
goto st0;
|
193
|
+
st7:
|
194
|
+
if ( ++p == pe )
|
195
|
+
goto _test_eof7;
|
196
|
+
case 7:
|
197
|
+
if ( (*p) == 108 )
|
198
|
+
goto tr15;
|
199
|
+
goto st0;
|
200
|
+
st8:
|
201
|
+
if ( ++p == pe )
|
202
|
+
goto _test_eof8;
|
203
|
+
case 8:
|
204
|
+
if ( (*p) == 114 )
|
205
|
+
goto st9;
|
206
|
+
goto st0;
|
207
|
+
st9:
|
208
|
+
if ( ++p == pe )
|
209
|
+
goto _test_eof9;
|
210
|
+
case 9:
|
211
|
+
if ( (*p) == 117 )
|
212
|
+
goto st10;
|
213
|
+
goto st0;
|
214
|
+
st10:
|
215
|
+
if ( ++p == pe )
|
216
|
+
goto _test_eof10;
|
217
|
+
case 10:
|
218
|
+
if ( (*p) == 101 )
|
219
|
+
goto tr18;
|
220
|
+
goto st0;
|
221
|
+
}
|
222
|
+
_test_eof11: cs = 11; goto _test_eof;
|
223
|
+
_test_eof2: cs = 2; goto _test_eof;
|
224
|
+
_test_eof3: cs = 3; goto _test_eof;
|
225
|
+
_test_eof4: cs = 4; goto _test_eof;
|
226
|
+
_test_eof5: cs = 5; goto _test_eof;
|
227
|
+
_test_eof6: cs = 6; goto _test_eof;
|
228
|
+
_test_eof7: cs = 7; goto _test_eof;
|
229
|
+
_test_eof8: cs = 8; goto _test_eof;
|
230
|
+
_test_eof9: cs = 9; goto _test_eof;
|
231
|
+
_test_eof10: cs = 10; goto _test_eof;
|
232
|
+
|
233
|
+
_test_eof: {}
|
234
|
+
_out: {}
|
235
|
+
}
|
236
|
+
|
237
|
+
#line 135 "edn_parser.rl"
|
238
|
+
|
239
|
+
if (cs >= EDN_value_first_final) {
|
240
|
+
return p;
|
241
|
+
}
|
242
|
+
else if (cs == EDN_value_error) {
|
243
|
+
error(*p);
|
244
|
+
return pe;
|
245
|
+
}
|
246
|
+
else if (cs == EDN_value_en_main) {} // silence ragel warning
|
247
|
+
return NULL;
|
248
|
+
}
|
249
|
+
|
250
|
+
|
251
|
+
// ============================================================
|
252
|
+
// tagged element parsing - any of #uuid, #inst, #{, #(some symbol)
|
253
|
+
// discard (#_ <ident>) is handled by the top-level machine
|
254
|
+
//
|
255
|
+
|
256
|
+
#line 257 "edn_parser.cc"
|
257
|
+
static const int EDN_dispatch_start = 1;
|
258
|
+
static const int EDN_dispatch_first_final = 15;
|
259
|
+
static const int EDN_dispatch_error = 0;
|
260
|
+
|
261
|
+
static const int EDN_dispatch_en_main = 1;
|
262
|
+
|
263
|
+
|
264
|
+
#line 170 "edn_parser.rl"
|
265
|
+
|
266
|
+
|
267
|
+
|
268
|
+
const char* edn::Parser::EDN_parse_tagged(const char *p, const char *pe, Rice::Object& o, bool& discard)
|
269
|
+
{
|
270
|
+
int cs;
|
271
|
+
Rice::String str;
|
272
|
+
|
273
|
+
|
274
|
+
#line 275 "edn_parser.cc"
|
275
|
+
{
|
276
|
+
cs = EDN_dispatch_start;
|
277
|
+
}
|
278
|
+
|
279
|
+
#line 179 "edn_parser.rl"
|
280
|
+
p_save = p;
|
281
|
+
|
282
|
+
#line 283 "edn_parser.cc"
|
283
|
+
{
|
284
|
+
if ( p == pe )
|
285
|
+
goto _test_eof;
|
286
|
+
switch ( cs )
|
287
|
+
{
|
288
|
+
case 1:
|
289
|
+
if ( (*p) == 35 )
|
290
|
+
goto st2;
|
291
|
+
goto st0;
|
292
|
+
st0:
|
293
|
+
cs = 0;
|
294
|
+
goto _out;
|
295
|
+
st2:
|
296
|
+
if ( ++p == pe )
|
297
|
+
goto _test_eof2;
|
298
|
+
case 2:
|
299
|
+
switch( (*p) ) {
|
300
|
+
case 95: goto st15;
|
301
|
+
case 105: goto st3;
|
302
|
+
case 117: goto st9;
|
303
|
+
}
|
304
|
+
goto st0;
|
305
|
+
st15:
|
306
|
+
if ( ++p == pe )
|
307
|
+
goto _test_eof15;
|
308
|
+
case 15:
|
309
|
+
switch( (*p) ) {
|
310
|
+
case 32: goto st17;
|
311
|
+
case 43: goto st0;
|
312
|
+
case 58: goto st0;
|
313
|
+
}
|
314
|
+
if ( (*p) < 48 ) {
|
315
|
+
if ( (*p) > 13 ) {
|
316
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
317
|
+
goto st17;
|
318
|
+
} else if ( (*p) >= 9 )
|
319
|
+
goto tr17;
|
320
|
+
} else if ( (*p) > 57 ) {
|
321
|
+
if ( (*p) > 90 ) {
|
322
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
323
|
+
goto st17;
|
324
|
+
} else if ( (*p) >= 65 )
|
325
|
+
goto st17;
|
326
|
+
} else
|
327
|
+
goto st17;
|
328
|
+
goto tr16;
|
329
|
+
tr16:
|
330
|
+
#line 162 "edn_parser.rl"
|
331
|
+
{ p--; {p++; cs = 16; goto _out;} }
|
332
|
+
goto st16;
|
333
|
+
st16:
|
334
|
+
if ( ++p == pe )
|
335
|
+
goto _test_eof16;
|
336
|
+
case 16:
|
337
|
+
#line 338 "edn_parser.cc"
|
338
|
+
switch( (*p) ) {
|
339
|
+
case 32: goto st0;
|
340
|
+
case 43: goto st0;
|
341
|
+
}
|
342
|
+
if ( (*p) < 48 ) {
|
343
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
344
|
+
goto st0;
|
345
|
+
} else if ( (*p) > 58 ) {
|
346
|
+
if ( (*p) > 90 ) {
|
347
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
348
|
+
goto st0;
|
349
|
+
} else if ( (*p) >= 65 )
|
350
|
+
goto st0;
|
351
|
+
} else
|
352
|
+
goto st0;
|
353
|
+
goto tr16;
|
354
|
+
tr17:
|
355
|
+
#line 162 "edn_parser.rl"
|
356
|
+
{ p--; {p++; cs = 17; goto _out;} }
|
357
|
+
goto st17;
|
358
|
+
st17:
|
359
|
+
if ( ++p == pe )
|
360
|
+
goto _test_eof17;
|
361
|
+
case 17:
|
362
|
+
#line 363 "edn_parser.cc"
|
363
|
+
switch( (*p) ) {
|
364
|
+
case 32: goto st0;
|
365
|
+
case 43: goto st0;
|
366
|
+
case 58: goto st0;
|
367
|
+
}
|
368
|
+
if ( (*p) < 48 ) {
|
369
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
370
|
+
goto st17;
|
371
|
+
} else if ( (*p) > 57 ) {
|
372
|
+
if ( (*p) > 90 ) {
|
373
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
374
|
+
goto st17;
|
375
|
+
} else if ( (*p) >= 65 )
|
376
|
+
goto st17;
|
377
|
+
} else
|
378
|
+
goto st17;
|
379
|
+
goto tr16;
|
380
|
+
st3:
|
381
|
+
if ( ++p == pe )
|
382
|
+
goto _test_eof3;
|
383
|
+
case 3:
|
384
|
+
if ( (*p) == 110 )
|
385
|
+
goto st4;
|
386
|
+
goto st0;
|
387
|
+
st4:
|
388
|
+
if ( ++p == pe )
|
389
|
+
goto _test_eof4;
|
390
|
+
case 4:
|
391
|
+
if ( (*p) == 115 )
|
392
|
+
goto st5;
|
393
|
+
goto st0;
|
394
|
+
st5:
|
395
|
+
if ( ++p == pe )
|
396
|
+
goto _test_eof5;
|
397
|
+
case 5:
|
398
|
+
if ( (*p) == 116 )
|
399
|
+
goto st6;
|
400
|
+
goto st0;
|
401
|
+
st6:
|
402
|
+
if ( ++p == pe )
|
403
|
+
goto _test_eof6;
|
404
|
+
case 6:
|
405
|
+
if ( (*p) == 32 )
|
406
|
+
goto st7;
|
407
|
+
goto st0;
|
408
|
+
st7:
|
409
|
+
if ( ++p == pe )
|
410
|
+
goto _test_eof7;
|
411
|
+
case 7:
|
412
|
+
if ( (*p) == 34 )
|
413
|
+
goto st8;
|
414
|
+
goto st0;
|
415
|
+
st8:
|
416
|
+
if ( ++p == pe )
|
417
|
+
goto _test_eof8;
|
418
|
+
case 8:
|
419
|
+
switch( (*p) ) {
|
420
|
+
case 34: goto st16;
|
421
|
+
case 43: goto st8;
|
422
|
+
case 84: goto st8;
|
423
|
+
case 90: goto st8;
|
424
|
+
}
|
425
|
+
if ( (*p) > 46 ) {
|
426
|
+
if ( 48 <= (*p) && (*p) <= 58 )
|
427
|
+
goto st8;
|
428
|
+
} else if ( (*p) >= 45 )
|
429
|
+
goto st8;
|
430
|
+
goto st0;
|
431
|
+
st9:
|
432
|
+
if ( ++p == pe )
|
433
|
+
goto _test_eof9;
|
434
|
+
case 9:
|
435
|
+
if ( (*p) == 117 )
|
436
|
+
goto st10;
|
437
|
+
goto st0;
|
438
|
+
st10:
|
439
|
+
if ( ++p == pe )
|
440
|
+
goto _test_eof10;
|
441
|
+
case 10:
|
442
|
+
if ( (*p) == 105 )
|
443
|
+
goto st11;
|
444
|
+
goto st0;
|
445
|
+
st11:
|
446
|
+
if ( ++p == pe )
|
447
|
+
goto _test_eof11;
|
448
|
+
case 11:
|
449
|
+
if ( (*p) == 100 )
|
450
|
+
goto st12;
|
451
|
+
goto st0;
|
452
|
+
st12:
|
453
|
+
if ( ++p == pe )
|
454
|
+
goto _test_eof12;
|
455
|
+
case 12:
|
456
|
+
if ( (*p) == 32 )
|
457
|
+
goto st13;
|
458
|
+
goto st0;
|
459
|
+
st13:
|
460
|
+
if ( ++p == pe )
|
461
|
+
goto _test_eof13;
|
462
|
+
case 13:
|
463
|
+
if ( (*p) == 34 )
|
464
|
+
goto st14;
|
465
|
+
goto st0;
|
466
|
+
st14:
|
467
|
+
if ( ++p == pe )
|
468
|
+
goto _test_eof14;
|
469
|
+
case 14:
|
470
|
+
switch( (*p) ) {
|
471
|
+
case 34: goto st16;
|
472
|
+
case 45: goto st14;
|
473
|
+
}
|
474
|
+
if ( (*p) > 57 ) {
|
475
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
476
|
+
goto st14;
|
477
|
+
} else if ( (*p) >= 48 )
|
478
|
+
goto st14;
|
479
|
+
goto st0;
|
480
|
+
}
|
481
|
+
_test_eof2: cs = 2; goto _test_eof;
|
482
|
+
_test_eof15: cs = 15; goto _test_eof;
|
483
|
+
_test_eof16: cs = 16; goto _test_eof;
|
484
|
+
_test_eof17: cs = 17; goto _test_eof;
|
485
|
+
_test_eof3: cs = 3; goto _test_eof;
|
486
|
+
_test_eof4: cs = 4; goto _test_eof;
|
487
|
+
_test_eof5: cs = 5; goto _test_eof;
|
488
|
+
_test_eof6: cs = 6; goto _test_eof;
|
489
|
+
_test_eof7: cs = 7; goto _test_eof;
|
490
|
+
_test_eof8: cs = 8; goto _test_eof;
|
491
|
+
_test_eof9: cs = 9; goto _test_eof;
|
492
|
+
_test_eof10: cs = 10; goto _test_eof;
|
493
|
+
_test_eof11: cs = 11; goto _test_eof;
|
494
|
+
_test_eof12: cs = 12; goto _test_eof;
|
495
|
+
_test_eof13: cs = 13; goto _test_eof;
|
496
|
+
_test_eof14: cs = 14; goto _test_eof;
|
497
|
+
|
498
|
+
_test_eof: {}
|
499
|
+
_out: {}
|
500
|
+
}
|
501
|
+
|
502
|
+
#line 181 "edn_parser.rl"
|
503
|
+
|
504
|
+
if (cs >= EDN_dispatch_first_final) {
|
505
|
+
|
506
|
+
//is it a discard? if so, just drop the following token
|
507
|
+
if (*(p_save + 1) == '_')
|
508
|
+
{
|
509
|
+
discard = true;
|
510
|
+
return p + 1;
|
511
|
+
}
|
512
|
+
|
513
|
+
std::size_t len = p - p_save;
|
514
|
+
std::string buf;
|
515
|
+
buf.reserve(len);
|
516
|
+
|
517
|
+
if (len > 10)
|
518
|
+
{
|
519
|
+
// there's enough room to be #inst or #uuid, copy the
|
520
|
+
// string portion
|
521
|
+
if (std::strncmp(p_save + 1, "inst", 4) == 0) {
|
522
|
+
buf.append(p_save + 7, len - 8);
|
523
|
+
} else if (std::strncmp(p_save + 1, "uuid", 4) == 0) {
|
524
|
+
buf.append(p_save + 7, len - 8);
|
525
|
+
}
|
526
|
+
|
527
|
+
o = Rice::String(buf);
|
528
|
+
return p;
|
529
|
+
}
|
530
|
+
|
531
|
+
// tagged element
|
532
|
+
o = Rice::String(buf);
|
533
|
+
return p;
|
534
|
+
}
|
535
|
+
else if (cs == EDN_dispatch_error) {
|
536
|
+
error(*p);
|
537
|
+
return pe;
|
538
|
+
}
|
539
|
+
else if (cs == EDN_dispatch_en_main) {} // silence ragel warning
|
540
|
+
return NULL;
|
541
|
+
}
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
// ============================================================
|
546
|
+
// keyword parsing
|
547
|
+
//
|
548
|
+
|
549
|
+
#line 550 "edn_parser.cc"
|
550
|
+
static const int EDN_keyword_start = 1;
|
551
|
+
static const int EDN_keyword_first_final = 4;
|
552
|
+
static const int EDN_keyword_error = 0;
|
553
|
+
|
554
|
+
static const int EDN_keyword_en_main = 1;
|
555
|
+
|
556
|
+
|
557
|
+
#line 237 "edn_parser.rl"
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
const char* edn::Parser::EDN_parse_keyword(const char *p, const char *pe, Rice::Object& o)
|
562
|
+
{
|
563
|
+
int cs;
|
564
|
+
|
565
|
+
|
566
|
+
#line 567 "edn_parser.cc"
|
567
|
+
{
|
568
|
+
cs = EDN_keyword_start;
|
569
|
+
}
|
570
|
+
|
571
|
+
#line 245 "edn_parser.rl"
|
572
|
+
p_save = p;
|
573
|
+
|
574
|
+
#line 575 "edn_parser.cc"
|
575
|
+
{
|
576
|
+
if ( p == pe )
|
577
|
+
goto _test_eof;
|
578
|
+
switch ( cs )
|
579
|
+
{
|
580
|
+
case 1:
|
581
|
+
if ( (*p) == 58 )
|
582
|
+
goto st2;
|
583
|
+
goto st0;
|
584
|
+
st0:
|
585
|
+
cs = 0;
|
586
|
+
goto _out;
|
587
|
+
st2:
|
588
|
+
if ( ++p == pe )
|
589
|
+
goto _test_eof2;
|
590
|
+
case 2:
|
591
|
+
if ( (*p) == 95 )
|
592
|
+
goto st4;
|
593
|
+
if ( (*p) > 90 ) {
|
594
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
595
|
+
goto st4;
|
596
|
+
} else if ( (*p) >= 65 )
|
597
|
+
goto st4;
|
598
|
+
goto st0;
|
599
|
+
st4:
|
600
|
+
if ( ++p == pe )
|
601
|
+
goto _test_eof4;
|
602
|
+
case 4:
|
603
|
+
switch( (*p) ) {
|
604
|
+
case 39: goto st0;
|
605
|
+
case 45: goto st4;
|
606
|
+
case 47: goto st3;
|
607
|
+
case 95: goto st4;
|
608
|
+
}
|
609
|
+
if ( (*p) < 65 ) {
|
610
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
611
|
+
goto st4;
|
612
|
+
} else if ( (*p) > 90 ) {
|
613
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
614
|
+
goto st4;
|
615
|
+
} else
|
616
|
+
goto st4;
|
617
|
+
goto tr4;
|
618
|
+
tr4:
|
619
|
+
#line 232 "edn_parser.rl"
|
620
|
+
{ p--; {p++; cs = 5; goto _out;} }
|
621
|
+
goto st5;
|
622
|
+
st5:
|
623
|
+
if ( ++p == pe )
|
624
|
+
goto _test_eof5;
|
625
|
+
case 5:
|
626
|
+
#line 627 "edn_parser.cc"
|
627
|
+
goto st0;
|
628
|
+
st3:
|
629
|
+
if ( ++p == pe )
|
630
|
+
goto _test_eof3;
|
631
|
+
case 3:
|
632
|
+
if ( (*p) == 95 )
|
633
|
+
goto st6;
|
634
|
+
if ( (*p) > 90 ) {
|
635
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
636
|
+
goto st6;
|
637
|
+
} else if ( (*p) >= 65 )
|
638
|
+
goto st6;
|
639
|
+
goto st0;
|
640
|
+
st6:
|
641
|
+
if ( ++p == pe )
|
642
|
+
goto _test_eof6;
|
643
|
+
case 6:
|
644
|
+
switch( (*p) ) {
|
645
|
+
case 39: goto st0;
|
646
|
+
case 45: goto st6;
|
647
|
+
case 47: goto st0;
|
648
|
+
case 95: goto st6;
|
649
|
+
}
|
650
|
+
if ( (*p) < 65 ) {
|
651
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
652
|
+
goto st6;
|
653
|
+
} else if ( (*p) > 90 ) {
|
654
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
655
|
+
goto st6;
|
656
|
+
} else
|
657
|
+
goto st6;
|
658
|
+
goto tr4;
|
659
|
+
}
|
660
|
+
_test_eof2: cs = 2; goto _test_eof;
|
661
|
+
_test_eof4: cs = 4; goto _test_eof;
|
662
|
+
_test_eof5: cs = 5; goto _test_eof;
|
663
|
+
_test_eof3: cs = 3; goto _test_eof;
|
664
|
+
_test_eof6: cs = 6; goto _test_eof;
|
665
|
+
|
666
|
+
_test_eof: {}
|
667
|
+
_out: {}
|
668
|
+
}
|
669
|
+
|
670
|
+
#line 247 "edn_parser.rl"
|
671
|
+
|
672
|
+
if (cs >= EDN_keyword_first_final) {
|
673
|
+
uint32_t len = p - p_save - 1; // don't include leading ':' because Rice::Symbol will handle it
|
674
|
+
std::string buf;
|
675
|
+
buf.append(p_save + 1, len);
|
676
|
+
o = Rice::Symbol(buf);
|
677
|
+
return p;
|
678
|
+
}
|
679
|
+
else if (cs == EDN_keyword_error) {
|
680
|
+
error(*p);
|
681
|
+
return pe;
|
682
|
+
}
|
683
|
+
else if (cs == EDN_keyword_en_main) {} // silence ragel warning
|
684
|
+
return NULL;
|
685
|
+
}
|
686
|
+
|
687
|
+
|
688
|
+
|
689
|
+
// ============================================================
|
690
|
+
// string parsing
|
691
|
+
//
|
692
|
+
|
693
|
+
#line 694 "edn_parser.cc"
|
694
|
+
static const int EDN_string_start = 1;
|
695
|
+
static const int EDN_string_first_final = 8;
|
696
|
+
static const int EDN_string_error = 0;
|
697
|
+
|
698
|
+
static const int EDN_string_en_main = 1;
|
699
|
+
|
700
|
+
|
701
|
+
#line 292 "edn_parser.rl"
|
702
|
+
|
703
|
+
|
704
|
+
|
705
|
+
//
|
706
|
+
// copies the string data, unescaping any present values that need to be replaced
|
707
|
+
//
|
708
|
+
bool edn::Parser::EDN_parse_byte_stream(const char *p, const char *pe, Rice::String& s)
|
709
|
+
{
|
710
|
+
if (pe > p) {
|
711
|
+
std::string buf;
|
712
|
+
std::size_t len = pe - p;
|
713
|
+
|
714
|
+
// pre-allocate storage needed
|
715
|
+
buf.reserve(len);
|
716
|
+
|
717
|
+
const char* cp = p;
|
718
|
+
std::size_t pos = 0;
|
719
|
+
char c, replacement;
|
720
|
+
|
721
|
+
while (cp < pe)
|
722
|
+
{
|
723
|
+
// append any other character that is not the escaping slash
|
724
|
+
if (*cp != '\\') {
|
725
|
+
buf.replace(pos++, 1, 1, *cp++);
|
726
|
+
continue;
|
727
|
+
}
|
728
|
+
|
729
|
+
// looking at a '\' - check what it escapes if there's a
|
730
|
+
// following character
|
731
|
+
if (++cp == pe)
|
732
|
+
break;
|
733
|
+
|
734
|
+
c = *cp++;
|
735
|
+
replacement = '?';
|
736
|
+
|
737
|
+
switch (c)
|
738
|
+
{
|
739
|
+
case 't':
|
740
|
+
replacement = '\t';
|
741
|
+
break;
|
742
|
+
case 'n':
|
743
|
+
replacement = '\n';
|
744
|
+
break;
|
745
|
+
case 'r':
|
746
|
+
replacement = '\r';
|
747
|
+
break;
|
748
|
+
case '\"':
|
749
|
+
replacement = '\"';
|
750
|
+
break;
|
751
|
+
case '\\':
|
752
|
+
replacement = '\\';
|
753
|
+
break;
|
754
|
+
/* TODO: add support for this!
|
755
|
+
case 'u':
|
756
|
+
replacement = '\u';
|
757
|
+
break;
|
758
|
+
*/
|
759
|
+
default:
|
760
|
+
std::cerr << "value must be unescaped but case is unhandled: '" << c << "'" << std::endl;
|
761
|
+
break;
|
762
|
+
}
|
763
|
+
|
764
|
+
// substitute the escaped walue
|
765
|
+
if (replacement != '?')
|
766
|
+
buf.replace(pos++, 1, 1, replacement);
|
767
|
+
}
|
768
|
+
|
769
|
+
// utf-8 encode
|
770
|
+
VALUE vs = Rice::protect( rb_str_new2, buf.c_str() );
|
771
|
+
VALUE s_utf8 = Rice::protect( rb_enc_associate, vs, rb_utf8_encoding() );
|
772
|
+
s = Rice::String(s_utf8);
|
773
|
+
return true;
|
774
|
+
}
|
775
|
+
|
776
|
+
return false;
|
777
|
+
}
|
778
|
+
|
779
|
+
|
780
|
+
const char* edn::Parser::EDN_parse_string(const char *p, const char *pe, Rice::Object& o)
|
781
|
+
{
|
782
|
+
static const char* EDN_TYPE = "string";
|
783
|
+
int cs;
|
784
|
+
const char *eof = pe;
|
785
|
+
|
786
|
+
Rice::String s;
|
787
|
+
|
788
|
+
#line 789 "edn_parser.cc"
|
789
|
+
{
|
790
|
+
cs = EDN_string_start;
|
791
|
+
}
|
792
|
+
|
793
|
+
#line 378 "edn_parser.rl"
|
794
|
+
p_save = p;
|
795
|
+
|
796
|
+
#line 797 "edn_parser.cc"
|
797
|
+
{
|
798
|
+
if ( p == pe )
|
799
|
+
goto _test_eof;
|
800
|
+
switch ( cs )
|
801
|
+
{
|
802
|
+
case 1:
|
803
|
+
if ( (*p) == 34 )
|
804
|
+
goto st2;
|
805
|
+
goto st0;
|
806
|
+
tr2:
|
807
|
+
#line 41 "edn_parser.rl"
|
808
|
+
{
|
809
|
+
std::stringstream s;
|
810
|
+
s << "unterminated " << EDN_TYPE;
|
811
|
+
error(s.str());
|
812
|
+
{p = (( pe))-1;}
|
813
|
+
}
|
814
|
+
goto st0;
|
815
|
+
#line 816 "edn_parser.cc"
|
816
|
+
st0:
|
817
|
+
cs = 0;
|
818
|
+
goto _out;
|
819
|
+
st2:
|
820
|
+
if ( ++p == pe )
|
821
|
+
goto _test_eof2;
|
822
|
+
case 2:
|
823
|
+
switch( (*p) ) {
|
824
|
+
case 34: goto tr3;
|
825
|
+
case 92: goto st3;
|
826
|
+
}
|
827
|
+
if ( 0 <= (*p) && (*p) <= 31 )
|
828
|
+
goto tr2;
|
829
|
+
goto st2;
|
830
|
+
tr3:
|
831
|
+
#line 274 "edn_parser.rl"
|
832
|
+
{
|
833
|
+
if (!EDN_parse_byte_stream(p_save + 1, p, s)) {
|
834
|
+
p--;
|
835
|
+
{p++; cs = 8; goto _out;}
|
836
|
+
} else {
|
837
|
+
{p = (( p + 1))-1;}
|
838
|
+
}
|
839
|
+
}
|
840
|
+
#line 283 "edn_parser.rl"
|
841
|
+
{ p--; {p++; cs = 8; goto _out;} }
|
842
|
+
goto st8;
|
843
|
+
st8:
|
844
|
+
if ( ++p == pe )
|
845
|
+
goto _test_eof8;
|
846
|
+
case 8:
|
847
|
+
#line 848 "edn_parser.cc"
|
848
|
+
goto st0;
|
849
|
+
st3:
|
850
|
+
if ( ++p == pe )
|
851
|
+
goto _test_eof3;
|
852
|
+
case 3:
|
853
|
+
if ( (*p) == 117 )
|
854
|
+
goto st4;
|
855
|
+
if ( 0 <= (*p) && (*p) <= 31 )
|
856
|
+
goto st0;
|
857
|
+
goto st2;
|
858
|
+
st4:
|
859
|
+
if ( ++p == pe )
|
860
|
+
goto _test_eof4;
|
861
|
+
case 4:
|
862
|
+
if ( (*p) < 65 ) {
|
863
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
864
|
+
goto st5;
|
865
|
+
} else if ( (*p) > 70 ) {
|
866
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
867
|
+
goto st5;
|
868
|
+
} else
|
869
|
+
goto st5;
|
870
|
+
goto st0;
|
871
|
+
st5:
|
872
|
+
if ( ++p == pe )
|
873
|
+
goto _test_eof5;
|
874
|
+
case 5:
|
875
|
+
if ( (*p) < 65 ) {
|
876
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
877
|
+
goto st6;
|
878
|
+
} else if ( (*p) > 70 ) {
|
879
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
880
|
+
goto st6;
|
881
|
+
} else
|
882
|
+
goto st6;
|
883
|
+
goto st0;
|
884
|
+
st6:
|
885
|
+
if ( ++p == pe )
|
886
|
+
goto _test_eof6;
|
887
|
+
case 6:
|
888
|
+
if ( (*p) < 65 ) {
|
889
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
890
|
+
goto st7;
|
891
|
+
} else if ( (*p) > 70 ) {
|
892
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
893
|
+
goto st7;
|
894
|
+
} else
|
895
|
+
goto st7;
|
896
|
+
goto st0;
|
897
|
+
st7:
|
898
|
+
if ( ++p == pe )
|
899
|
+
goto _test_eof7;
|
900
|
+
case 7:
|
901
|
+
if ( (*p) < 65 ) {
|
902
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
903
|
+
goto st2;
|
904
|
+
} else if ( (*p) > 70 ) {
|
905
|
+
if ( 97 <= (*p) && (*p) <= 102 )
|
906
|
+
goto st2;
|
907
|
+
} else
|
908
|
+
goto st2;
|
909
|
+
goto st0;
|
910
|
+
}
|
911
|
+
_test_eof2: cs = 2; goto _test_eof;
|
912
|
+
_test_eof8: cs = 8; goto _test_eof;
|
913
|
+
_test_eof3: cs = 3; goto _test_eof;
|
914
|
+
_test_eof4: cs = 4; goto _test_eof;
|
915
|
+
_test_eof5: cs = 5; goto _test_eof;
|
916
|
+
_test_eof6: cs = 6; goto _test_eof;
|
917
|
+
_test_eof7: cs = 7; goto _test_eof;
|
918
|
+
|
919
|
+
_test_eof: {}
|
920
|
+
if ( p == eof )
|
921
|
+
{
|
922
|
+
switch ( cs ) {
|
923
|
+
case 2:
|
924
|
+
#line 41 "edn_parser.rl"
|
925
|
+
{
|
926
|
+
std::stringstream s;
|
927
|
+
s << "unterminated " << EDN_TYPE;
|
928
|
+
error(s.str());
|
929
|
+
{p = (( pe))-1;}
|
930
|
+
}
|
931
|
+
break;
|
932
|
+
#line 933 "edn_parser.cc"
|
933
|
+
}
|
934
|
+
}
|
935
|
+
|
936
|
+
_out: {}
|
937
|
+
}
|
938
|
+
|
939
|
+
#line 380 "edn_parser.rl"
|
940
|
+
|
941
|
+
if (cs >= EDN_string_first_final) {
|
942
|
+
o = s;
|
943
|
+
return p + 1;
|
944
|
+
}
|
945
|
+
else if (cs == EDN_string_error) {
|
946
|
+
return pe;
|
947
|
+
}
|
948
|
+
else if (cs == EDN_string_en_main) {} // silence ragel warning
|
949
|
+
return NULL;
|
950
|
+
}
|
951
|
+
|
952
|
+
// ============================================================
|
953
|
+
// decimal parsing grammar
|
954
|
+
//
|
955
|
+
|
956
|
+
#line 957 "edn_parser.cc"
|
957
|
+
static const int EDN_decimal_start = 1;
|
958
|
+
static const int EDN_decimal_first_final = 8;
|
959
|
+
|
960
|
+
static const int EDN_decimal_en_main = 1;
|
961
|
+
|
962
|
+
|
963
|
+
#line 410 "edn_parser.rl"
|
964
|
+
|
965
|
+
|
966
|
+
|
967
|
+
const char* edn::Parser::EDN_parse_decimal(const char *p, const char *pe, Rice::Object& o)
|
968
|
+
{
|
969
|
+
int cs;
|
970
|
+
|
971
|
+
|
972
|
+
#line 973 "edn_parser.cc"
|
973
|
+
{
|
974
|
+
cs = EDN_decimal_start;
|
975
|
+
}
|
976
|
+
|
977
|
+
#line 418 "edn_parser.rl"
|
978
|
+
p_save = p;
|
979
|
+
|
980
|
+
#line 981 "edn_parser.cc"
|
981
|
+
{
|
982
|
+
if ( p == pe )
|
983
|
+
goto _test_eof;
|
984
|
+
switch ( cs )
|
985
|
+
{
|
986
|
+
case 1:
|
987
|
+
switch( (*p) ) {
|
988
|
+
case 45: goto st2;
|
989
|
+
case 48: goto st3;
|
990
|
+
}
|
991
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
992
|
+
goto st7;
|
993
|
+
goto st0;
|
994
|
+
st0:
|
995
|
+
cs = 0;
|
996
|
+
goto _out;
|
997
|
+
st2:
|
998
|
+
if ( ++p == pe )
|
999
|
+
goto _test_eof2;
|
1000
|
+
case 2:
|
1001
|
+
if ( (*p) == 48 )
|
1002
|
+
goto st3;
|
1003
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
1004
|
+
goto st7;
|
1005
|
+
goto st0;
|
1006
|
+
st3:
|
1007
|
+
if ( ++p == pe )
|
1008
|
+
goto _test_eof3;
|
1009
|
+
case 3:
|
1010
|
+
switch( (*p) ) {
|
1011
|
+
case 46: goto st4;
|
1012
|
+
case 69: goto st5;
|
1013
|
+
case 101: goto st5;
|
1014
|
+
}
|
1015
|
+
goto st0;
|
1016
|
+
st4:
|
1017
|
+
if ( ++p == pe )
|
1018
|
+
goto _test_eof4;
|
1019
|
+
case 4:
|
1020
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1021
|
+
goto st8;
|
1022
|
+
goto st0;
|
1023
|
+
st8:
|
1024
|
+
if ( ++p == pe )
|
1025
|
+
goto _test_eof8;
|
1026
|
+
case 8:
|
1027
|
+
switch( (*p) ) {
|
1028
|
+
case 69: goto st5;
|
1029
|
+
case 77: goto st11;
|
1030
|
+
case 101: goto st5;
|
1031
|
+
}
|
1032
|
+
if ( (*p) > 46 ) {
|
1033
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1034
|
+
goto st8;
|
1035
|
+
} else if ( (*p) >= 45 )
|
1036
|
+
goto st0;
|
1037
|
+
goto tr9;
|
1038
|
+
tr9:
|
1039
|
+
#line 401 "edn_parser.rl"
|
1040
|
+
{ p--; {p++; cs = 9; goto _out;} }
|
1041
|
+
goto st9;
|
1042
|
+
st9:
|
1043
|
+
if ( ++p == pe )
|
1044
|
+
goto _test_eof9;
|
1045
|
+
case 9:
|
1046
|
+
#line 1047 "edn_parser.cc"
|
1047
|
+
goto st0;
|
1048
|
+
st5:
|
1049
|
+
if ( ++p == pe )
|
1050
|
+
goto _test_eof5;
|
1051
|
+
case 5:
|
1052
|
+
switch( (*p) ) {
|
1053
|
+
case 43: goto st6;
|
1054
|
+
case 45: goto st6;
|
1055
|
+
}
|
1056
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1057
|
+
goto st10;
|
1058
|
+
goto st0;
|
1059
|
+
st6:
|
1060
|
+
if ( ++p == pe )
|
1061
|
+
goto _test_eof6;
|
1062
|
+
case 6:
|
1063
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1064
|
+
goto st10;
|
1065
|
+
goto st0;
|
1066
|
+
st10:
|
1067
|
+
if ( ++p == pe )
|
1068
|
+
goto _test_eof10;
|
1069
|
+
case 10:
|
1070
|
+
switch( (*p) ) {
|
1071
|
+
case 69: goto st0;
|
1072
|
+
case 77: goto st0;
|
1073
|
+
case 101: goto st0;
|
1074
|
+
}
|
1075
|
+
if ( (*p) > 46 ) {
|
1076
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1077
|
+
goto st10;
|
1078
|
+
} else if ( (*p) >= 45 )
|
1079
|
+
goto st0;
|
1080
|
+
goto tr9;
|
1081
|
+
st11:
|
1082
|
+
if ( ++p == pe )
|
1083
|
+
goto _test_eof11;
|
1084
|
+
case 11:
|
1085
|
+
switch( (*p) ) {
|
1086
|
+
case 69: goto st0;
|
1087
|
+
case 77: goto st0;
|
1088
|
+
case 101: goto st0;
|
1089
|
+
}
|
1090
|
+
if ( (*p) > 46 ) {
|
1091
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1092
|
+
goto st0;
|
1093
|
+
} else if ( (*p) >= 45 )
|
1094
|
+
goto st0;
|
1095
|
+
goto tr9;
|
1096
|
+
st7:
|
1097
|
+
if ( ++p == pe )
|
1098
|
+
goto _test_eof7;
|
1099
|
+
case 7:
|
1100
|
+
switch( (*p) ) {
|
1101
|
+
case 46: goto st4;
|
1102
|
+
case 69: goto st5;
|
1103
|
+
case 101: goto st5;
|
1104
|
+
}
|
1105
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1106
|
+
goto st7;
|
1107
|
+
goto st0;
|
1108
|
+
}
|
1109
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1110
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1111
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1112
|
+
_test_eof8: cs = 8; goto _test_eof;
|
1113
|
+
_test_eof9: cs = 9; goto _test_eof;
|
1114
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1115
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1116
|
+
_test_eof10: cs = 10; goto _test_eof;
|
1117
|
+
_test_eof11: cs = 11; goto _test_eof;
|
1118
|
+
_test_eof7: cs = 7; goto _test_eof;
|
1119
|
+
|
1120
|
+
_test_eof: {}
|
1121
|
+
_out: {}
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
#line 420 "edn_parser.rl"
|
1125
|
+
|
1126
|
+
if (cs >= EDN_decimal_first_final) {
|
1127
|
+
double value;
|
1128
|
+
o = Parser::buftotype<double>(p_save, p - p_save, value);
|
1129
|
+
return p + 1;
|
1130
|
+
}
|
1131
|
+
else if (cs == EDN_decimal_en_main) {} // silence ragel warning
|
1132
|
+
return NULL;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
|
1136
|
+
// ============================================================
|
1137
|
+
// integer parsing grammar
|
1138
|
+
//
|
1139
|
+
|
1140
|
+
#line 1141 "edn_parser.cc"
|
1141
|
+
static const int EDN_integer_start = 1;
|
1142
|
+
static const int EDN_integer_first_final = 3;
|
1143
|
+
|
1144
|
+
static const int EDN_integer_en_main = 1;
|
1145
|
+
|
1146
|
+
|
1147
|
+
#line 442 "edn_parser.rl"
|
1148
|
+
|
1149
|
+
|
1150
|
+
const char* edn::Parser::EDN_parse_integer(const char *p, const char *pe, Rice::Object& o)
|
1151
|
+
{
|
1152
|
+
int cs;
|
1153
|
+
|
1154
|
+
|
1155
|
+
#line 1156 "edn_parser.cc"
|
1156
|
+
{
|
1157
|
+
cs = EDN_integer_start;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
#line 449 "edn_parser.rl"
|
1161
|
+
p_save = p;
|
1162
|
+
|
1163
|
+
#line 1164 "edn_parser.cc"
|
1164
|
+
{
|
1165
|
+
if ( p == pe )
|
1166
|
+
goto _test_eof;
|
1167
|
+
switch ( cs )
|
1168
|
+
{
|
1169
|
+
case 1:
|
1170
|
+
switch( (*p) ) {
|
1171
|
+
case 45: goto st2;
|
1172
|
+
case 48: goto st3;
|
1173
|
+
}
|
1174
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
1175
|
+
goto st5;
|
1176
|
+
goto st0;
|
1177
|
+
st0:
|
1178
|
+
cs = 0;
|
1179
|
+
goto _out;
|
1180
|
+
st2:
|
1181
|
+
if ( ++p == pe )
|
1182
|
+
goto _test_eof2;
|
1183
|
+
case 2:
|
1184
|
+
if ( (*p) == 48 )
|
1185
|
+
goto st3;
|
1186
|
+
if ( 49 <= (*p) && (*p) <= 57 )
|
1187
|
+
goto st5;
|
1188
|
+
goto st0;
|
1189
|
+
st3:
|
1190
|
+
if ( ++p == pe )
|
1191
|
+
goto _test_eof3;
|
1192
|
+
case 3:
|
1193
|
+
if ( (*p) == 77 )
|
1194
|
+
goto st0;
|
1195
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1196
|
+
goto st0;
|
1197
|
+
goto tr4;
|
1198
|
+
tr4:
|
1199
|
+
#line 439 "edn_parser.rl"
|
1200
|
+
{ p--; {p++; cs = 4; goto _out;} }
|
1201
|
+
goto st4;
|
1202
|
+
st4:
|
1203
|
+
if ( ++p == pe )
|
1204
|
+
goto _test_eof4;
|
1205
|
+
case 4:
|
1206
|
+
#line 1207 "edn_parser.cc"
|
1207
|
+
goto st0;
|
1208
|
+
st5:
|
1209
|
+
if ( ++p == pe )
|
1210
|
+
goto _test_eof5;
|
1211
|
+
case 5:
|
1212
|
+
if ( (*p) == 77 )
|
1213
|
+
goto st3;
|
1214
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1215
|
+
goto st5;
|
1216
|
+
goto tr4;
|
1217
|
+
}
|
1218
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1219
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1220
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1221
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1222
|
+
|
1223
|
+
_test_eof: {}
|
1224
|
+
_out: {}
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
#line 451 "edn_parser.rl"
|
1228
|
+
|
1229
|
+
if (cs >= EDN_integer_first_final) {
|
1230
|
+
int value;
|
1231
|
+
o = Parser::buftotype<int>(p_save, p - p_save, value);
|
1232
|
+
return p + 1;
|
1233
|
+
}
|
1234
|
+
else if (cs == EDN_integer_en_main) {} // silence ragel warning
|
1235
|
+
return NULL;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
|
1239
|
+
// ============================================================
|
1240
|
+
// vector parsing machine. EDN_vector_common is used to parse EDN
|
1241
|
+
// vectors and lists since they're both represented as vectors in ruby
|
1242
|
+
//
|
1243
|
+
|
1244
|
+
#line 503 "edn_parser.rl"
|
1245
|
+
|
1246
|
+
|
1247
|
+
//
|
1248
|
+
// vector-specific machine
|
1249
|
+
|
1250
|
+
#line 1251 "edn_parser.cc"
|
1251
|
+
static const int EDN_vector_start = 1;
|
1252
|
+
static const int EDN_vector_first_final = 4;
|
1253
|
+
static const int EDN_vector_error = 0;
|
1254
|
+
|
1255
|
+
static const int EDN_vector_en_main = 1;
|
1256
|
+
|
1257
|
+
|
1258
|
+
#line 517 "edn_parser.rl"
|
1259
|
+
|
1260
|
+
|
1261
|
+
|
1262
|
+
//
|
1263
|
+
// vector parsing
|
1264
|
+
//
|
1265
|
+
const char* edn::Parser::EDN_parse_vector(const char *p, const char *pe, Rice::Object& o)
|
1266
|
+
{
|
1267
|
+
static const char* EDN_TYPE = "vector";
|
1268
|
+
|
1269
|
+
int cs;
|
1270
|
+
Rice::Array arr;
|
1271
|
+
|
1272
|
+
|
1273
|
+
#line 1274 "edn_parser.cc"
|
1274
|
+
{
|
1275
|
+
cs = EDN_vector_start;
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
#line 531 "edn_parser.rl"
|
1279
|
+
|
1280
|
+
#line 1281 "edn_parser.cc"
|
1281
|
+
{
|
1282
|
+
if ( p == pe )
|
1283
|
+
goto _test_eof;
|
1284
|
+
switch ( cs )
|
1285
|
+
{
|
1286
|
+
case 1:
|
1287
|
+
if ( (*p) == 91 )
|
1288
|
+
goto st2;
|
1289
|
+
goto st0;
|
1290
|
+
tr2:
|
1291
|
+
#line 41 "edn_parser.rl"
|
1292
|
+
{
|
1293
|
+
std::stringstream s;
|
1294
|
+
s << "unterminated " << EDN_TYPE;
|
1295
|
+
error(s.str());
|
1296
|
+
{p = (( pe))-1;}
|
1297
|
+
}
|
1298
|
+
goto st0;
|
1299
|
+
#line 1300 "edn_parser.cc"
|
1300
|
+
st0:
|
1301
|
+
cs = 0;
|
1302
|
+
goto _out;
|
1303
|
+
tr3:
|
1304
|
+
#line 21 "edn_parser.rl"
|
1305
|
+
{ line_number++; }
|
1306
|
+
goto st2;
|
1307
|
+
tr4:
|
1308
|
+
#line 470 "edn_parser.rl"
|
1309
|
+
{
|
1310
|
+
Rice::Object v;
|
1311
|
+
const char *np = EDN_parse_value(p, pe, v);
|
1312
|
+
if (np == NULL) {
|
1313
|
+
p--; {p++; cs = 2; goto _out;}
|
1314
|
+
} else {
|
1315
|
+
arr.push(v);
|
1316
|
+
{p = (( np))-1;}
|
1317
|
+
}
|
1318
|
+
}
|
1319
|
+
goto st2;
|
1320
|
+
tr5:
|
1321
|
+
#line 481 "edn_parser.rl"
|
1322
|
+
{
|
1323
|
+
bool discard = false;
|
1324
|
+
Rice::Object v;
|
1325
|
+
const char *np = EDN_parse_tagged(p, pe, v, discard);
|
1326
|
+
if (np == NULL) {
|
1327
|
+
p--; {p++; cs = 2; goto _out;}
|
1328
|
+
} else {
|
1329
|
+
if (!discard) {
|
1330
|
+
arr.push(v);
|
1331
|
+
}
|
1332
|
+
{p = (( np))-1;}
|
1333
|
+
}
|
1334
|
+
}
|
1335
|
+
goto st2;
|
1336
|
+
st2:
|
1337
|
+
if ( ++p == pe )
|
1338
|
+
goto _test_eof2;
|
1339
|
+
case 2:
|
1340
|
+
#line 1341 "edn_parser.cc"
|
1341
|
+
switch( (*p) ) {
|
1342
|
+
case 10: goto tr3;
|
1343
|
+
case 32: goto st2;
|
1344
|
+
case 34: goto tr4;
|
1345
|
+
case 35: goto tr5;
|
1346
|
+
case 40: goto tr4;
|
1347
|
+
case 44: goto st2;
|
1348
|
+
case 45: goto tr4;
|
1349
|
+
case 59: goto st3;
|
1350
|
+
case 93: goto tr7;
|
1351
|
+
case 102: goto tr4;
|
1352
|
+
case 110: goto tr4;
|
1353
|
+
case 116: goto tr4;
|
1354
|
+
case 123: goto tr4;
|
1355
|
+
}
|
1356
|
+
if ( (*p) < 48 ) {
|
1357
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1358
|
+
goto st2;
|
1359
|
+
} else if ( (*p) > 58 ) {
|
1360
|
+
if ( 91 <= (*p) && (*p) <= 92 )
|
1361
|
+
goto tr4;
|
1362
|
+
} else
|
1363
|
+
goto tr4;
|
1364
|
+
goto tr2;
|
1365
|
+
st3:
|
1366
|
+
if ( ++p == pe )
|
1367
|
+
goto _test_eof3;
|
1368
|
+
case 3:
|
1369
|
+
if ( (*p) == 10 )
|
1370
|
+
goto tr3;
|
1371
|
+
goto st3;
|
1372
|
+
tr7:
|
1373
|
+
#line 495 "edn_parser.rl"
|
1374
|
+
{ p--; {p++; cs = 4; goto _out;} }
|
1375
|
+
goto st4;
|
1376
|
+
st4:
|
1377
|
+
if ( ++p == pe )
|
1378
|
+
goto _test_eof4;
|
1379
|
+
case 4:
|
1380
|
+
#line 1381 "edn_parser.cc"
|
1381
|
+
goto st0;
|
1382
|
+
}
|
1383
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1384
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1385
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1386
|
+
|
1387
|
+
_test_eof: {}
|
1388
|
+
if ( p == eof )
|
1389
|
+
{
|
1390
|
+
switch ( cs ) {
|
1391
|
+
case 2:
|
1392
|
+
#line 41 "edn_parser.rl"
|
1393
|
+
{
|
1394
|
+
std::stringstream s;
|
1395
|
+
s << "unterminated " << EDN_TYPE;
|
1396
|
+
error(s.str());
|
1397
|
+
{p = (( pe))-1;}
|
1398
|
+
}
|
1399
|
+
break;
|
1400
|
+
#line 1401 "edn_parser.cc"
|
1401
|
+
}
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
_out: {}
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
#line 532 "edn_parser.rl"
|
1408
|
+
|
1409
|
+
if (cs >= EDN_vector_first_final) {
|
1410
|
+
o = arr;
|
1411
|
+
return p + 1;
|
1412
|
+
}
|
1413
|
+
else if (cs == EDN_vector_error) {
|
1414
|
+
error(*p);
|
1415
|
+
return pe;
|
1416
|
+
}
|
1417
|
+
else if (cs == EDN_vector_en_main) {} // silence ragel warning
|
1418
|
+
return NULL;
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
|
1422
|
+
|
1423
|
+
// ============================================================
|
1424
|
+
// list parsing machine
|
1425
|
+
//
|
1426
|
+
|
1427
|
+
#line 1428 "edn_parser.cc"
|
1428
|
+
static const int EDN_list_start = 1;
|
1429
|
+
static const int EDN_list_first_final = 6;
|
1430
|
+
static const int EDN_list_error = 0;
|
1431
|
+
|
1432
|
+
static const int EDN_list_en_main = 1;
|
1433
|
+
|
1434
|
+
|
1435
|
+
#line 561 "edn_parser.rl"
|
1436
|
+
|
1437
|
+
|
1438
|
+
//
|
1439
|
+
// list parsing
|
1440
|
+
//
|
1441
|
+
const char* edn::Parser::EDN_parse_list(const char *p, const char *pe, Rice::Object& o)
|
1442
|
+
{
|
1443
|
+
static const char* EDN_TYPE = "list";
|
1444
|
+
|
1445
|
+
int cs;
|
1446
|
+
Rice::Array arr;
|
1447
|
+
|
1448
|
+
|
1449
|
+
#line 1450 "edn_parser.cc"
|
1450
|
+
{
|
1451
|
+
cs = EDN_list_start;
|
1452
|
+
}
|
1453
|
+
|
1454
|
+
#line 574 "edn_parser.rl"
|
1455
|
+
|
1456
|
+
#line 1457 "edn_parser.cc"
|
1457
|
+
{
|
1458
|
+
if ( p == pe )
|
1459
|
+
goto _test_eof;
|
1460
|
+
switch ( cs )
|
1461
|
+
{
|
1462
|
+
case 1:
|
1463
|
+
if ( (*p) == 40 )
|
1464
|
+
goto st2;
|
1465
|
+
goto st0;
|
1466
|
+
tr2:
|
1467
|
+
#line 41 "edn_parser.rl"
|
1468
|
+
{
|
1469
|
+
std::stringstream s;
|
1470
|
+
s << "unterminated " << EDN_TYPE;
|
1471
|
+
error(s.str());
|
1472
|
+
{p = (( pe))-1;}
|
1473
|
+
}
|
1474
|
+
goto st0;
|
1475
|
+
#line 1476 "edn_parser.cc"
|
1476
|
+
st0:
|
1477
|
+
cs = 0;
|
1478
|
+
goto _out;
|
1479
|
+
tr3:
|
1480
|
+
#line 21 "edn_parser.rl"
|
1481
|
+
{ line_number++; }
|
1482
|
+
goto st2;
|
1483
|
+
st2:
|
1484
|
+
if ( ++p == pe )
|
1485
|
+
goto _test_eof2;
|
1486
|
+
case 2:
|
1487
|
+
#line 1488 "edn_parser.cc"
|
1488
|
+
switch( (*p) ) {
|
1489
|
+
case 10: goto tr3;
|
1490
|
+
case 32: goto st2;
|
1491
|
+
case 34: goto tr4;
|
1492
|
+
case 40: goto tr4;
|
1493
|
+
case 41: goto tr5;
|
1494
|
+
case 44: goto st2;
|
1495
|
+
case 45: goto tr4;
|
1496
|
+
case 59: goto st5;
|
1497
|
+
case 102: goto tr4;
|
1498
|
+
case 110: goto tr4;
|
1499
|
+
case 116: goto tr4;
|
1500
|
+
case 123: goto tr4;
|
1501
|
+
}
|
1502
|
+
if ( (*p) < 48 ) {
|
1503
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1504
|
+
goto st2;
|
1505
|
+
} else if ( (*p) > 58 ) {
|
1506
|
+
if ( 91 <= (*p) && (*p) <= 92 )
|
1507
|
+
goto tr4;
|
1508
|
+
} else
|
1509
|
+
goto tr4;
|
1510
|
+
goto tr2;
|
1511
|
+
tr8:
|
1512
|
+
#line 21 "edn_parser.rl"
|
1513
|
+
{ line_number++; }
|
1514
|
+
goto st3;
|
1515
|
+
tr4:
|
1516
|
+
#line 470 "edn_parser.rl"
|
1517
|
+
{
|
1518
|
+
Rice::Object v;
|
1519
|
+
const char *np = EDN_parse_value(p, pe, v);
|
1520
|
+
if (np == NULL) {
|
1521
|
+
p--; {p++; cs = 3; goto _out;}
|
1522
|
+
} else {
|
1523
|
+
arr.push(v);
|
1524
|
+
{p = (( np))-1;}
|
1525
|
+
}
|
1526
|
+
}
|
1527
|
+
goto st3;
|
1528
|
+
tr9:
|
1529
|
+
#line 481 "edn_parser.rl"
|
1530
|
+
{
|
1531
|
+
bool discard = false;
|
1532
|
+
Rice::Object v;
|
1533
|
+
const char *np = EDN_parse_tagged(p, pe, v, discard);
|
1534
|
+
if (np == NULL) {
|
1535
|
+
p--; {p++; cs = 3; goto _out;}
|
1536
|
+
} else {
|
1537
|
+
if (!discard) {
|
1538
|
+
arr.push(v);
|
1539
|
+
}
|
1540
|
+
{p = (( np))-1;}
|
1541
|
+
}
|
1542
|
+
}
|
1543
|
+
goto st3;
|
1544
|
+
st3:
|
1545
|
+
if ( ++p == pe )
|
1546
|
+
goto _test_eof3;
|
1547
|
+
case 3:
|
1548
|
+
#line 1549 "edn_parser.cc"
|
1549
|
+
switch( (*p) ) {
|
1550
|
+
case 10: goto tr8;
|
1551
|
+
case 32: goto st3;
|
1552
|
+
case 34: goto tr4;
|
1553
|
+
case 35: goto tr9;
|
1554
|
+
case 40: goto tr4;
|
1555
|
+
case 41: goto tr5;
|
1556
|
+
case 44: goto st3;
|
1557
|
+
case 45: goto tr4;
|
1558
|
+
case 59: goto st4;
|
1559
|
+
case 102: goto tr4;
|
1560
|
+
case 110: goto tr4;
|
1561
|
+
case 116: goto tr4;
|
1562
|
+
case 123: goto tr4;
|
1563
|
+
}
|
1564
|
+
if ( (*p) < 48 ) {
|
1565
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1566
|
+
goto st3;
|
1567
|
+
} else if ( (*p) > 58 ) {
|
1568
|
+
if ( 91 <= (*p) && (*p) <= 92 )
|
1569
|
+
goto tr4;
|
1570
|
+
} else
|
1571
|
+
goto tr4;
|
1572
|
+
goto tr2;
|
1573
|
+
tr5:
|
1574
|
+
#line 495 "edn_parser.rl"
|
1575
|
+
{ p--; {p++; cs = 6; goto _out;} }
|
1576
|
+
goto st6;
|
1577
|
+
st6:
|
1578
|
+
if ( ++p == pe )
|
1579
|
+
goto _test_eof6;
|
1580
|
+
case 6:
|
1581
|
+
#line 1582 "edn_parser.cc"
|
1582
|
+
goto st0;
|
1583
|
+
st4:
|
1584
|
+
if ( ++p == pe )
|
1585
|
+
goto _test_eof4;
|
1586
|
+
case 4:
|
1587
|
+
if ( (*p) == 10 )
|
1588
|
+
goto tr8;
|
1589
|
+
goto st4;
|
1590
|
+
st5:
|
1591
|
+
if ( ++p == pe )
|
1592
|
+
goto _test_eof5;
|
1593
|
+
case 5:
|
1594
|
+
if ( (*p) == 10 )
|
1595
|
+
goto tr3;
|
1596
|
+
goto st5;
|
1597
|
+
}
|
1598
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1599
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1600
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1601
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1602
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1603
|
+
|
1604
|
+
_test_eof: {}
|
1605
|
+
if ( p == eof )
|
1606
|
+
{
|
1607
|
+
switch ( cs ) {
|
1608
|
+
case 2:
|
1609
|
+
case 3:
|
1610
|
+
#line 41 "edn_parser.rl"
|
1611
|
+
{
|
1612
|
+
std::stringstream s;
|
1613
|
+
s << "unterminated " << EDN_TYPE;
|
1614
|
+
error(s.str());
|
1615
|
+
{p = (( pe))-1;}
|
1616
|
+
}
|
1617
|
+
break;
|
1618
|
+
#line 1619 "edn_parser.cc"
|
1619
|
+
}
|
1620
|
+
}
|
1621
|
+
|
1622
|
+
_out: {}
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
#line 575 "edn_parser.rl"
|
1626
|
+
|
1627
|
+
if (cs >= EDN_list_first_final) {
|
1628
|
+
o = arr;
|
1629
|
+
return p + 1;
|
1630
|
+
}
|
1631
|
+
else if (cs == EDN_list_error) {
|
1632
|
+
error(*p);
|
1633
|
+
return pe;
|
1634
|
+
}
|
1635
|
+
else if (cs == EDN_list_en_main) {} // silence ragel warning
|
1636
|
+
return NULL;
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
|
1640
|
+
|
1641
|
+
// ============================================================
|
1642
|
+
// hash parsing
|
1643
|
+
//
|
1644
|
+
|
1645
|
+
#line 1646 "edn_parser.cc"
|
1646
|
+
static const int EDN_map_start = 1;
|
1647
|
+
static const int EDN_map_first_final = 6;
|
1648
|
+
static const int EDN_map_error = 0;
|
1649
|
+
|
1650
|
+
static const int EDN_map_en_main = 1;
|
1651
|
+
|
1652
|
+
|
1653
|
+
#line 634 "edn_parser.rl"
|
1654
|
+
|
1655
|
+
|
1656
|
+
|
1657
|
+
const char* edn::Parser::EDN_parse_map(const char *p, const char *pe, Rice::Object& o)
|
1658
|
+
{
|
1659
|
+
static const char* EDN_TYPE = "map";
|
1660
|
+
|
1661
|
+
int cs;
|
1662
|
+
Rice::Hash map;
|
1663
|
+
Rice::Object k, v;
|
1664
|
+
|
1665
|
+
|
1666
|
+
#line 1667 "edn_parser.cc"
|
1667
|
+
{
|
1668
|
+
cs = EDN_map_start;
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
#line 646 "edn_parser.rl"
|
1672
|
+
p_save = p;
|
1673
|
+
|
1674
|
+
#line 1675 "edn_parser.cc"
|
1675
|
+
{
|
1676
|
+
if ( p == pe )
|
1677
|
+
goto _test_eof;
|
1678
|
+
switch ( cs )
|
1679
|
+
{
|
1680
|
+
case 1:
|
1681
|
+
if ( (*p) == 123 )
|
1682
|
+
goto st2;
|
1683
|
+
goto st0;
|
1684
|
+
tr2:
|
1685
|
+
#line 41 "edn_parser.rl"
|
1686
|
+
{
|
1687
|
+
std::stringstream s;
|
1688
|
+
s << "unterminated " << EDN_TYPE;
|
1689
|
+
error(s.str());
|
1690
|
+
{p = (( pe))-1;}
|
1691
|
+
}
|
1692
|
+
goto st0;
|
1693
|
+
tr7:
|
1694
|
+
#line 619 "edn_parser.rl"
|
1695
|
+
{
|
1696
|
+
error("map pair not found");
|
1697
|
+
{p = (( pe))-1;}
|
1698
|
+
}
|
1699
|
+
goto st0;
|
1700
|
+
#line 1701 "edn_parser.cc"
|
1701
|
+
st0:
|
1702
|
+
cs = 0;
|
1703
|
+
goto _out;
|
1704
|
+
tr3:
|
1705
|
+
#line 21 "edn_parser.rl"
|
1706
|
+
{ line_number++; }
|
1707
|
+
goto st2;
|
1708
|
+
tr10:
|
1709
|
+
#line 608 "edn_parser.rl"
|
1710
|
+
{
|
1711
|
+
const char *np = EDN_parse_value(p, pe, v);
|
1712
|
+
if (np == NULL) {
|
1713
|
+
p--; {p++; cs = 2; goto _out;}
|
1714
|
+
} else {
|
1715
|
+
map[k] = v;
|
1716
|
+
{p = (( np))-1;}
|
1717
|
+
}
|
1718
|
+
}
|
1719
|
+
goto st2;
|
1720
|
+
st2:
|
1721
|
+
if ( ++p == pe )
|
1722
|
+
goto _test_eof2;
|
1723
|
+
case 2:
|
1724
|
+
#line 1725 "edn_parser.cc"
|
1725
|
+
switch( (*p) ) {
|
1726
|
+
case 10: goto tr3;
|
1727
|
+
case 32: goto st2;
|
1728
|
+
case 34: goto tr4;
|
1729
|
+
case 40: goto tr4;
|
1730
|
+
case 44: goto st2;
|
1731
|
+
case 45: goto tr4;
|
1732
|
+
case 59: goto st5;
|
1733
|
+
case 102: goto tr4;
|
1734
|
+
case 110: goto tr4;
|
1735
|
+
case 116: goto tr4;
|
1736
|
+
case 123: goto tr4;
|
1737
|
+
case 125: goto tr6;
|
1738
|
+
}
|
1739
|
+
if ( (*p) < 48 ) {
|
1740
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1741
|
+
goto st2;
|
1742
|
+
} else if ( (*p) > 58 ) {
|
1743
|
+
if ( 91 <= (*p) && (*p) <= 92 )
|
1744
|
+
goto tr4;
|
1745
|
+
} else
|
1746
|
+
goto tr4;
|
1747
|
+
goto tr2;
|
1748
|
+
tr9:
|
1749
|
+
#line 21 "edn_parser.rl"
|
1750
|
+
{ line_number++; }
|
1751
|
+
goto st3;
|
1752
|
+
tr4:
|
1753
|
+
#line 599 "edn_parser.rl"
|
1754
|
+
{
|
1755
|
+
const char *np = EDN_parse_value(p, pe, k);
|
1756
|
+
if (np == NULL) {
|
1757
|
+
p--; {p++; cs = 3; goto _out;}
|
1758
|
+
} else {
|
1759
|
+
{p = (( np))-1;}
|
1760
|
+
}
|
1761
|
+
}
|
1762
|
+
goto st3;
|
1763
|
+
st3:
|
1764
|
+
if ( ++p == pe )
|
1765
|
+
goto _test_eof3;
|
1766
|
+
case 3:
|
1767
|
+
#line 1768 "edn_parser.cc"
|
1768
|
+
switch( (*p) ) {
|
1769
|
+
case 10: goto tr9;
|
1770
|
+
case 32: goto st3;
|
1771
|
+
case 34: goto tr10;
|
1772
|
+
case 40: goto tr10;
|
1773
|
+
case 44: goto st3;
|
1774
|
+
case 45: goto tr10;
|
1775
|
+
case 59: goto st4;
|
1776
|
+
case 102: goto tr10;
|
1777
|
+
case 110: goto tr10;
|
1778
|
+
case 116: goto tr10;
|
1779
|
+
case 123: goto tr10;
|
1780
|
+
}
|
1781
|
+
if ( (*p) < 48 ) {
|
1782
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1783
|
+
goto st3;
|
1784
|
+
} else if ( (*p) > 58 ) {
|
1785
|
+
if ( 91 <= (*p) && (*p) <= 92 )
|
1786
|
+
goto tr10;
|
1787
|
+
} else
|
1788
|
+
goto tr10;
|
1789
|
+
goto tr7;
|
1790
|
+
st4:
|
1791
|
+
if ( ++p == pe )
|
1792
|
+
goto _test_eof4;
|
1793
|
+
case 4:
|
1794
|
+
if ( (*p) == 10 )
|
1795
|
+
goto tr9;
|
1796
|
+
goto st4;
|
1797
|
+
st5:
|
1798
|
+
if ( ++p == pe )
|
1799
|
+
goto _test_eof5;
|
1800
|
+
case 5:
|
1801
|
+
if ( (*p) == 10 )
|
1802
|
+
goto tr3;
|
1803
|
+
goto st5;
|
1804
|
+
tr6:
|
1805
|
+
#line 624 "edn_parser.rl"
|
1806
|
+
{ p--; {p++; cs = 6; goto _out;} }
|
1807
|
+
goto st6;
|
1808
|
+
st6:
|
1809
|
+
if ( ++p == pe )
|
1810
|
+
goto _test_eof6;
|
1811
|
+
case 6:
|
1812
|
+
#line 1813 "edn_parser.cc"
|
1813
|
+
goto st0;
|
1814
|
+
}
|
1815
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1816
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1817
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1818
|
+
_test_eof5: cs = 5; goto _test_eof;
|
1819
|
+
_test_eof6: cs = 6; goto _test_eof;
|
1820
|
+
|
1821
|
+
_test_eof: {}
|
1822
|
+
if ( p == eof )
|
1823
|
+
{
|
1824
|
+
switch ( cs ) {
|
1825
|
+
case 2:
|
1826
|
+
#line 41 "edn_parser.rl"
|
1827
|
+
{
|
1828
|
+
std::stringstream s;
|
1829
|
+
s << "unterminated " << EDN_TYPE;
|
1830
|
+
error(s.str());
|
1831
|
+
{p = (( pe))-1;}
|
1832
|
+
}
|
1833
|
+
break;
|
1834
|
+
case 3:
|
1835
|
+
#line 619 "edn_parser.rl"
|
1836
|
+
{
|
1837
|
+
error("map pair not found");
|
1838
|
+
{p = (( pe))-1;}
|
1839
|
+
}
|
1840
|
+
break;
|
1841
|
+
#line 1842 "edn_parser.cc"
|
1842
|
+
}
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
_out: {}
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
#line 648 "edn_parser.rl"
|
1849
|
+
|
1850
|
+
if (cs >= EDN_map_first_final) {
|
1851
|
+
o = map;
|
1852
|
+
return p + 1;
|
1853
|
+
}
|
1854
|
+
else if (cs == EDN_map_error) {
|
1855
|
+
return pe;
|
1856
|
+
}
|
1857
|
+
else if (cs == EDN_map_en_main) {} // silence ragel warning
|
1858
|
+
return NULL;
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
|
1862
|
+
|
1863
|
+
// ============================================================
|
1864
|
+
// main parsing machine
|
1865
|
+
//
|
1866
|
+
|
1867
|
+
#line 1868 "edn_parser.cc"
|
1868
|
+
static const int EDN_start = 1;
|
1869
|
+
static const int EDN_error = 0;
|
1870
|
+
|
1871
|
+
static const int EDN_en_main = 1;
|
1872
|
+
|
1873
|
+
|
1874
|
+
#line 691 "edn_parser.rl"
|
1875
|
+
|
1876
|
+
|
1877
|
+
//
|
1878
|
+
//
|
1879
|
+
//
|
1880
|
+
Rice::Object edn::Parser::parse(const char* buf, std::size_t len)
|
1881
|
+
{
|
1882
|
+
int cs;
|
1883
|
+
const char *p;
|
1884
|
+
const char *pe;
|
1885
|
+
Rice::Object result;
|
1886
|
+
|
1887
|
+
line_number = 1;
|
1888
|
+
|
1889
|
+
|
1890
|
+
#line 1891 "edn_parser.cc"
|
1891
|
+
{
|
1892
|
+
cs = EDN_start;
|
1893
|
+
}
|
1894
|
+
|
1895
|
+
#line 706 "edn_parser.rl"
|
1896
|
+
p = &buf[0];
|
1897
|
+
pe = p + len;
|
1898
|
+
eof = pe; // eof defined in Parser class
|
1899
|
+
|
1900
|
+
#line 1901 "edn_parser.cc"
|
1901
|
+
{
|
1902
|
+
if ( p == pe )
|
1903
|
+
goto _test_eof;
|
1904
|
+
switch ( cs )
|
1905
|
+
{
|
1906
|
+
tr2:
|
1907
|
+
#line 21 "edn_parser.rl"
|
1908
|
+
{ line_number++; }
|
1909
|
+
goto st1;
|
1910
|
+
st1:
|
1911
|
+
if ( ++p == pe )
|
1912
|
+
goto _test_eof1;
|
1913
|
+
case 1:
|
1914
|
+
#line 1915 "edn_parser.cc"
|
1915
|
+
switch( (*p) ) {
|
1916
|
+
case 10: goto tr2;
|
1917
|
+
case 32: goto st1;
|
1918
|
+
case 40: goto tr3;
|
1919
|
+
case 44: goto st1;
|
1920
|
+
case 59: goto st3;
|
1921
|
+
case 91: goto tr5;
|
1922
|
+
case 123: goto tr6;
|
1923
|
+
}
|
1924
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1925
|
+
goto st1;
|
1926
|
+
goto st0;
|
1927
|
+
st0:
|
1928
|
+
cs = 0;
|
1929
|
+
goto _out;
|
1930
|
+
tr8:
|
1931
|
+
#line 21 "edn_parser.rl"
|
1932
|
+
{ line_number++; }
|
1933
|
+
goto st4;
|
1934
|
+
tr3:
|
1935
|
+
#line 681 "edn_parser.rl"
|
1936
|
+
{
|
1937
|
+
const char *np = EDN_parse_list(p, pe, result);
|
1938
|
+
if (np == NULL) { p--; {p++; cs = 4; goto _out;} } else {p = (( np))-1;}
|
1939
|
+
}
|
1940
|
+
goto st4;
|
1941
|
+
tr5:
|
1942
|
+
#line 671 "edn_parser.rl"
|
1943
|
+
{
|
1944
|
+
const char* np = EDN_parse_vector(p, pe, result);
|
1945
|
+
if (np == NULL) { p--; {p++; cs = 4; goto _out;} } else {p = (( np))-1;}
|
1946
|
+
}
|
1947
|
+
goto st4;
|
1948
|
+
tr6:
|
1949
|
+
#line 676 "edn_parser.rl"
|
1950
|
+
{
|
1951
|
+
const char *np = EDN_parse_map(p, pe, result);
|
1952
|
+
if (np == NULL) { p--; {p++; cs = 4; goto _out;} } else {p = (( np))-1;}
|
1953
|
+
}
|
1954
|
+
goto st4;
|
1955
|
+
st4:
|
1956
|
+
if ( ++p == pe )
|
1957
|
+
goto _test_eof4;
|
1958
|
+
case 4:
|
1959
|
+
#line 1960 "edn_parser.cc"
|
1960
|
+
switch( (*p) ) {
|
1961
|
+
case 10: goto tr8;
|
1962
|
+
case 32: goto st4;
|
1963
|
+
case 44: goto st4;
|
1964
|
+
case 59: goto st2;
|
1965
|
+
}
|
1966
|
+
if ( 9 <= (*p) && (*p) <= 13 )
|
1967
|
+
goto st4;
|
1968
|
+
goto st0;
|
1969
|
+
st2:
|
1970
|
+
if ( ++p == pe )
|
1971
|
+
goto _test_eof2;
|
1972
|
+
case 2:
|
1973
|
+
if ( (*p) == 10 )
|
1974
|
+
goto tr8;
|
1975
|
+
goto st2;
|
1976
|
+
st3:
|
1977
|
+
if ( ++p == pe )
|
1978
|
+
goto _test_eof3;
|
1979
|
+
case 3:
|
1980
|
+
if ( (*p) == 10 )
|
1981
|
+
goto tr2;
|
1982
|
+
goto st3;
|
1983
|
+
}
|
1984
|
+
_test_eof1: cs = 1; goto _test_eof;
|
1985
|
+
_test_eof4: cs = 4; goto _test_eof;
|
1986
|
+
_test_eof2: cs = 2; goto _test_eof;
|
1987
|
+
_test_eof3: cs = 3; goto _test_eof;
|
1988
|
+
|
1989
|
+
_test_eof: {}
|
1990
|
+
_out: {}
|
1991
|
+
}
|
1992
|
+
|
1993
|
+
#line 710 "edn_parser.rl"
|
1994
|
+
|
1995
|
+
if (cs == EDN_error) {
|
1996
|
+
error(*p);
|
1997
|
+
return Qnil;
|
1998
|
+
}
|
1999
|
+
else if (cs == EDN_en_main) {} // silence ragel warning
|
2000
|
+
return result;
|
2001
|
+
}
|
2002
|
+
|
2003
|
+
/*
|
2004
|
+
* Local variables:
|
2005
|
+
* mode: c
|
2006
|
+
* c-file-style: ruby
|
2007
|
+
* indent-tabs-mode: nil
|
2008
|
+
* End:
|
2009
|
+
*/
|