edn_turbo 0.4.1 → 0.5.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 +4 -4
- data/README.md +3 -3
- data/ext/edn_turbo/depend +3 -0
- data/ext/edn_turbo/edn_parser.cc +274 -275
- data/ext/edn_turbo/edn_parser.h +16 -12
- data/ext/edn_turbo/edn_parser.rl +8 -9
- data/ext/edn_turbo/edn_parser_util.cc +105 -1
- data/ext/edn_turbo/edn_parser_util.h +11 -0
- data/ext/edn_turbo/edn_parser_util_unicode.cc +32 -0
- data/ext/edn_turbo/main.cc +57 -14
- data/lib/edn_turbo/version.rb +2 -2
- data/test/test_output_diff.rb +169 -129
- metadata +6 -4
- data/ext/edn_turbo/edn_parser_unicode.cc +0 -29
data/ext/edn_turbo/edn_parser.cc
CHANGED
@@ -4,9 +4,10 @@
|
|
4
4
|
#include <string>
|
5
5
|
#include <vector>
|
6
6
|
#include <exception>
|
7
|
-
|
8
7
|
#include <cstring>
|
9
8
|
|
9
|
+
#include <ruby/ruby.h>
|
10
|
+
|
10
11
|
#include "edn_parser.h"
|
11
12
|
|
12
13
|
//
|
@@ -18,7 +19,7 @@
|
|
18
19
|
//
|
19
20
|
|
20
21
|
|
21
|
-
#line
|
22
|
+
#line 57 "edn_parser.rl"
|
22
23
|
|
23
24
|
|
24
25
|
// ============================================================
|
@@ -26,7 +27,7 @@
|
|
26
27
|
//
|
27
28
|
|
28
29
|
|
29
|
-
#line
|
30
|
+
#line 31 "edn_parser.cc"
|
30
31
|
static const int EDN_value_start = 1;
|
31
32
|
static const int EDN_value_first_final = 2;
|
32
33
|
static const int EDN_value_error = 0;
|
@@ -34,7 +35,7 @@ static const int EDN_value_error = 0;
|
|
34
35
|
static const int EDN_value_en_main = 1;
|
35
36
|
|
36
37
|
|
37
|
-
#line
|
38
|
+
#line 173 "edn_parser.rl"
|
38
39
|
|
39
40
|
|
40
41
|
|
@@ -44,14 +45,14 @@ const char *edn::Parser::parse_value(const char *p, const char *pe, VALUE& v)
|
|
44
45
|
int cs;
|
45
46
|
|
46
47
|
|
47
|
-
#line
|
48
|
+
#line 49 "edn_parser.cc"
|
48
49
|
{
|
49
50
|
cs = EDN_value_start;
|
50
51
|
}
|
51
52
|
|
52
|
-
#line
|
53
|
+
#line 182 "edn_parser.rl"
|
53
54
|
|
54
|
-
#line
|
55
|
+
#line 56 "edn_parser.cc"
|
55
56
|
{
|
56
57
|
if ( p == pe )
|
57
58
|
goto _test_eof;
|
@@ -94,7 +95,7 @@ st0:
|
|
94
95
|
cs = 0;
|
95
96
|
goto _out;
|
96
97
|
tr0:
|
97
|
-
#line
|
98
|
+
#line 101 "edn_parser.rl"
|
98
99
|
{
|
99
100
|
// stand-alone operators *, +, -, etc.
|
100
101
|
const char *np = parse_operator(p, pe, v);
|
@@ -102,7 +103,7 @@ tr0:
|
|
102
103
|
}
|
103
104
|
goto st2;
|
104
105
|
tr2:
|
105
|
-
#line
|
106
|
+
#line 69 "edn_parser.rl"
|
106
107
|
{
|
107
108
|
// string types within double-quotes
|
108
109
|
const char *np = parse_string(p, pe, v);
|
@@ -110,7 +111,7 @@ tr2:
|
|
110
111
|
}
|
111
112
|
goto st2;
|
112
113
|
tr3:
|
113
|
-
#line
|
114
|
+
#line 153 "edn_parser.rl"
|
114
115
|
{
|
115
116
|
// handles tokens w/ leading # ("#_", "#{", and tagged elems)
|
116
117
|
const char *np = parse_dispatch(p + 1, pe, v);
|
@@ -118,7 +119,7 @@ tr3:
|
|
118
119
|
}
|
119
120
|
goto st2;
|
120
121
|
tr4:
|
121
|
-
#line
|
122
|
+
#line 135 "edn_parser.rl"
|
122
123
|
{
|
123
124
|
// (
|
124
125
|
const char *np = parse_list(p, pe, v);
|
@@ -126,7 +127,7 @@ tr4:
|
|
126
127
|
}
|
127
128
|
goto st2;
|
128
129
|
tr5:
|
129
|
-
#line
|
130
|
+
#line 81 "edn_parser.rl"
|
130
131
|
{
|
131
132
|
// tokens w/ leading digits: non-negative integers & decimals.
|
132
133
|
// try to parse a decimal first
|
@@ -148,7 +149,7 @@ tr5:
|
|
148
149
|
}
|
149
150
|
goto st2;
|
150
151
|
tr6:
|
151
|
-
#line
|
152
|
+
#line 75 "edn_parser.rl"
|
152
153
|
{
|
153
154
|
// tokens with a leading ':'
|
154
155
|
const char *np = parse_keyword(p, pe, v);
|
@@ -156,7 +157,7 @@ tr6:
|
|
156
157
|
}
|
157
158
|
goto st2;
|
158
159
|
tr7:
|
159
|
-
#line
|
160
|
+
#line 113 "edn_parser.rl"
|
160
161
|
{
|
161
162
|
// user identifiers and reserved keywords (true, false, nil)
|
162
163
|
VALUE sym = Qnil;
|
@@ -174,7 +175,7 @@ tr7:
|
|
174
175
|
}
|
175
176
|
goto st2;
|
176
177
|
tr8:
|
177
|
-
#line
|
178
|
+
#line 129 "edn_parser.rl"
|
178
179
|
{
|
179
180
|
// [
|
180
181
|
const char *np = parse_vector(p, pe, v);
|
@@ -182,7 +183,7 @@ tr8:
|
|
182
183
|
}
|
183
184
|
goto st2;
|
184
185
|
tr9:
|
185
|
-
#line
|
186
|
+
#line 107 "edn_parser.rl"
|
186
187
|
{
|
187
188
|
// tokens w/ leading \ (escaped characters \newline, \c, etc.)
|
188
189
|
const char *np = parse_esc_char(p, pe, v);
|
@@ -190,7 +191,7 @@ tr9:
|
|
190
191
|
}
|
191
192
|
goto st2;
|
192
193
|
tr10:
|
193
|
-
#line
|
194
|
+
#line 147 "edn_parser.rl"
|
194
195
|
{
|
195
196
|
// ^
|
196
197
|
const char *np = parse_meta(p, pe);
|
@@ -198,7 +199,7 @@ tr10:
|
|
198
199
|
}
|
199
200
|
goto st2;
|
200
201
|
tr11:
|
201
|
-
#line
|
202
|
+
#line 141 "edn_parser.rl"
|
202
203
|
{
|
203
204
|
// {
|
204
205
|
const char *np = parse_map(p, pe, v);
|
@@ -209,9 +210,9 @@ st2:
|
|
209
210
|
if ( ++p == pe )
|
210
211
|
goto _test_eof2;
|
211
212
|
case 2:
|
212
|
-
#line
|
213
|
+
#line 56 "edn_parser.rl"
|
213
214
|
{ p--; {p++; cs = 2; goto _out;} }
|
214
|
-
#line
|
215
|
+
#line 216 "edn_parser.cc"
|
215
216
|
goto st0;
|
216
217
|
}
|
217
218
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -220,7 +221,7 @@ case 2:
|
|
220
221
|
_out: {}
|
221
222
|
}
|
222
223
|
|
223
|
-
#line
|
224
|
+
#line 183 "edn_parser.rl"
|
224
225
|
|
225
226
|
if (cs >= EDN_value_first_final) {
|
226
227
|
return p;
|
@@ -242,7 +243,7 @@ case 2:
|
|
242
243
|
// ascii range is found.
|
243
244
|
//
|
244
245
|
|
245
|
-
#line
|
246
|
+
#line 247 "edn_parser.cc"
|
246
247
|
static const int EDN_string_start = 1;
|
247
248
|
static const int EDN_string_first_final = 8;
|
248
249
|
static const int EDN_string_error = 0;
|
@@ -250,7 +251,7 @@ static const int EDN_string_error = 0;
|
|
250
251
|
static const int EDN_string_en_main = 1;
|
251
252
|
|
252
253
|
|
253
|
-
#line
|
254
|
+
#line 228 "edn_parser.rl"
|
254
255
|
|
255
256
|
|
256
257
|
|
@@ -261,15 +262,15 @@ const char* edn::Parser::parse_string(const char *p, const char *pe, VALUE& v)
|
|
261
262
|
bool encode = false;
|
262
263
|
|
263
264
|
|
264
|
-
#line
|
265
|
+
#line 266 "edn_parser.cc"
|
265
266
|
{
|
266
267
|
cs = EDN_string_start;
|
267
268
|
}
|
268
269
|
|
269
|
-
#line
|
270
|
+
#line 238 "edn_parser.rl"
|
270
271
|
const char* p_save = p;
|
271
272
|
|
272
|
-
#line
|
273
|
+
#line 274 "edn_parser.cc"
|
273
274
|
{
|
274
275
|
if ( p == pe )
|
275
276
|
goto _test_eof;
|
@@ -283,7 +284,7 @@ st0:
|
|
283
284
|
cs = 0;
|
284
285
|
goto _out;
|
285
286
|
tr2:
|
286
|
-
#line
|
287
|
+
#line 217 "edn_parser.rl"
|
287
288
|
{
|
288
289
|
encode = true;
|
289
290
|
}
|
@@ -292,7 +293,7 @@ st2:
|
|
292
293
|
if ( ++p == pe )
|
293
294
|
goto _test_eof2;
|
294
295
|
case 2:
|
295
|
-
#line
|
296
|
+
#line 297 "edn_parser.cc"
|
296
297
|
switch( (*p) ) {
|
297
298
|
case 34: goto tr3;
|
298
299
|
case 92: goto tr4;
|
@@ -301,7 +302,7 @@ case 2:
|
|
301
302
|
goto tr2;
|
302
303
|
goto st2;
|
303
304
|
tr3:
|
304
|
-
#line
|
305
|
+
#line 209 "edn_parser.rl"
|
305
306
|
{
|
306
307
|
if (Parser::parse_byte_stream(p_save + 1, p, v, encode)) {
|
307
308
|
{p = (( p + 1))-1;}
|
@@ -309,17 +310,17 @@ tr3:
|
|
309
310
|
p--; {p++; cs = 8; goto _out;}
|
310
311
|
}
|
311
312
|
}
|
312
|
-
#line
|
313
|
+
#line 56 "edn_parser.rl"
|
313
314
|
{ p--; {p++; cs = 8; goto _out;} }
|
314
315
|
goto st8;
|
315
316
|
st8:
|
316
317
|
if ( ++p == pe )
|
317
318
|
goto _test_eof8;
|
318
319
|
case 8:
|
319
|
-
#line
|
320
|
+
#line 321 "edn_parser.cc"
|
320
321
|
goto st0;
|
321
322
|
tr4:
|
322
|
-
#line
|
323
|
+
#line 217 "edn_parser.rl"
|
323
324
|
{
|
324
325
|
encode = true;
|
325
326
|
}
|
@@ -328,7 +329,7 @@ st3:
|
|
328
329
|
if ( ++p == pe )
|
329
330
|
goto _test_eof3;
|
330
331
|
case 3:
|
331
|
-
#line
|
332
|
+
#line 333 "edn_parser.cc"
|
332
333
|
switch( (*p) ) {
|
333
334
|
case 34: goto tr2;
|
334
335
|
case 47: goto tr2;
|
@@ -342,7 +343,7 @@ case 3:
|
|
342
343
|
}
|
343
344
|
goto st2;
|
344
345
|
tr5:
|
345
|
-
#line
|
346
|
+
#line 217 "edn_parser.rl"
|
346
347
|
{
|
347
348
|
encode = true;
|
348
349
|
}
|
@@ -351,7 +352,7 @@ st4:
|
|
351
352
|
if ( ++p == pe )
|
352
353
|
goto _test_eof4;
|
353
354
|
case 4:
|
354
|
-
#line
|
355
|
+
#line 356 "edn_parser.cc"
|
355
356
|
if ( (*p) < 65 ) {
|
356
357
|
if ( 48 <= (*p) && (*p) <= 57 )
|
357
358
|
goto tr6;
|
@@ -362,7 +363,7 @@ case 4:
|
|
362
363
|
goto tr6;
|
363
364
|
goto st0;
|
364
365
|
tr6:
|
365
|
-
#line
|
366
|
+
#line 217 "edn_parser.rl"
|
366
367
|
{
|
367
368
|
encode = true;
|
368
369
|
}
|
@@ -371,7 +372,7 @@ st5:
|
|
371
372
|
if ( ++p == pe )
|
372
373
|
goto _test_eof5;
|
373
374
|
case 5:
|
374
|
-
#line
|
375
|
+
#line 376 "edn_parser.cc"
|
375
376
|
if ( (*p) < 65 ) {
|
376
377
|
if ( 48 <= (*p) && (*p) <= 57 )
|
377
378
|
goto tr7;
|
@@ -382,7 +383,7 @@ case 5:
|
|
382
383
|
goto tr7;
|
383
384
|
goto st0;
|
384
385
|
tr7:
|
385
|
-
#line
|
386
|
+
#line 217 "edn_parser.rl"
|
386
387
|
{
|
387
388
|
encode = true;
|
388
389
|
}
|
@@ -391,7 +392,7 @@ st6:
|
|
391
392
|
if ( ++p == pe )
|
392
393
|
goto _test_eof6;
|
393
394
|
case 6:
|
394
|
-
#line
|
395
|
+
#line 396 "edn_parser.cc"
|
395
396
|
if ( (*p) < 65 ) {
|
396
397
|
if ( 48 <= (*p) && (*p) <= 57 )
|
397
398
|
goto tr8;
|
@@ -402,7 +403,7 @@ case 6:
|
|
402
403
|
goto tr8;
|
403
404
|
goto st0;
|
404
405
|
tr8:
|
405
|
-
#line
|
406
|
+
#line 217 "edn_parser.rl"
|
406
407
|
{
|
407
408
|
encode = true;
|
408
409
|
}
|
@@ -411,7 +412,7 @@ st7:
|
|
411
412
|
if ( ++p == pe )
|
412
413
|
goto _test_eof7;
|
413
414
|
case 7:
|
414
|
-
#line
|
415
|
+
#line 416 "edn_parser.cc"
|
415
416
|
if ( (*p) < 65 ) {
|
416
417
|
if ( 48 <= (*p) && (*p) <= 57 )
|
417
418
|
goto tr2;
|
@@ -435,7 +436,7 @@ case 7:
|
|
435
436
|
{
|
436
437
|
switch ( cs ) {
|
437
438
|
case 2:
|
438
|
-
#line
|
439
|
+
#line 49 "edn_parser.rl"
|
439
440
|
{
|
440
441
|
std::stringstream s;
|
441
442
|
s << "unterminated " << EDN_TYPE;
|
@@ -443,14 +444,14 @@ case 7:
|
|
443
444
|
p--; {p++; cs = 0; goto _out;}
|
444
445
|
}
|
445
446
|
break;
|
446
|
-
#line
|
447
|
+
#line 448 "edn_parser.cc"
|
447
448
|
}
|
448
449
|
}
|
449
450
|
|
450
451
|
_out: {}
|
451
452
|
}
|
452
453
|
|
453
|
-
#line
|
454
|
+
#line 240 "edn_parser.rl"
|
454
455
|
|
455
456
|
if (cs >= EDN_string_first_final) {
|
456
457
|
return p + 1;
|
@@ -468,7 +469,7 @@ case 7:
|
|
468
469
|
// keyword parsing
|
469
470
|
//
|
470
471
|
|
471
|
-
#line
|
472
|
+
#line 473 "edn_parser.cc"
|
472
473
|
static const int EDN_keyword_start = 1;
|
473
474
|
static const int EDN_keyword_first_final = 3;
|
474
475
|
static const int EDN_keyword_error = 0;
|
@@ -476,7 +477,7 @@ static const int EDN_keyword_error = 0;
|
|
476
477
|
static const int EDN_keyword_en_main = 1;
|
477
478
|
|
478
479
|
|
479
|
-
#line
|
480
|
+
#line 270 "edn_parser.rl"
|
480
481
|
|
481
482
|
|
482
483
|
|
@@ -485,15 +486,15 @@ const char* edn::Parser::parse_keyword(const char *p, const char *pe, VALUE& v)
|
|
485
486
|
int cs;
|
486
487
|
|
487
488
|
|
488
|
-
#line
|
489
|
+
#line 490 "edn_parser.cc"
|
489
490
|
{
|
490
491
|
cs = EDN_keyword_start;
|
491
492
|
}
|
492
493
|
|
493
|
-
#line
|
494
|
+
#line 278 "edn_parser.rl"
|
494
495
|
const char* p_save = p;
|
495
496
|
|
496
|
-
#line
|
497
|
+
#line 498 "edn_parser.cc"
|
497
498
|
{
|
498
499
|
if ( p == pe )
|
499
500
|
goto _test_eof;
|
@@ -560,14 +561,14 @@ case 3:
|
|
560
561
|
goto st3;
|
561
562
|
goto tr3;
|
562
563
|
tr3:
|
563
|
-
#line
|
564
|
+
#line 56 "edn_parser.rl"
|
564
565
|
{ p--; {p++; cs = 4; goto _out;} }
|
565
566
|
goto st4;
|
566
567
|
st4:
|
567
568
|
if ( ++p == pe )
|
568
569
|
goto _test_eof4;
|
569
570
|
case 4:
|
570
|
-
#line
|
571
|
+
#line 572 "edn_parser.cc"
|
571
572
|
goto st0;
|
572
573
|
st5:
|
573
574
|
if ( ++p == pe )
|
@@ -606,7 +607,7 @@ case 5:
|
|
606
607
|
_out: {}
|
607
608
|
}
|
608
609
|
|
609
|
-
#line
|
610
|
+
#line 280 "edn_parser.rl"
|
610
611
|
|
611
612
|
if (cs >= EDN_keyword_first_final) {
|
612
613
|
std::string buf;
|
@@ -630,14 +631,14 @@ case 5:
|
|
630
631
|
// decimal parsing machine
|
631
632
|
//
|
632
633
|
|
633
|
-
#line
|
634
|
+
#line 635 "edn_parser.cc"
|
634
635
|
static const int EDN_decimal_start = 1;
|
635
636
|
static const int EDN_decimal_first_final = 9;
|
636
637
|
|
637
638
|
static const int EDN_decimal_en_main = 1;
|
638
639
|
|
639
640
|
|
640
|
-
#line
|
641
|
+
#line 313 "edn_parser.rl"
|
641
642
|
|
642
643
|
|
643
644
|
|
@@ -646,15 +647,15 @@ const char* edn::Parser::parse_decimal(const char *p, const char *pe, VALUE& v)
|
|
646
647
|
int cs;
|
647
648
|
|
648
649
|
|
649
|
-
#line
|
650
|
+
#line 651 "edn_parser.cc"
|
650
651
|
{
|
651
652
|
cs = EDN_decimal_start;
|
652
653
|
}
|
653
654
|
|
654
|
-
#line
|
655
|
+
#line 321 "edn_parser.rl"
|
655
656
|
const char* p_save = p;
|
656
657
|
|
657
|
-
#line
|
658
|
+
#line 659 "edn_parser.cc"
|
658
659
|
{
|
659
660
|
if ( p == pe )
|
660
661
|
goto _test_eof;
|
@@ -708,14 +709,14 @@ case 9:
|
|
708
709
|
goto st0;
|
709
710
|
goto tr10;
|
710
711
|
tr10:
|
711
|
-
#line
|
712
|
+
#line 56 "edn_parser.rl"
|
712
713
|
{ p--; {p++; cs = 10; goto _out;} }
|
713
714
|
goto st10;
|
714
715
|
st10:
|
715
716
|
if ( ++p == pe )
|
716
717
|
goto _test_eof10;
|
717
718
|
case 10:
|
718
|
-
#line
|
719
|
+
#line 720 "edn_parser.cc"
|
719
720
|
goto st0;
|
720
721
|
st4:
|
721
722
|
if ( ++p == pe )
|
@@ -831,7 +832,7 @@ case 8:
|
|
831
832
|
_out: {}
|
832
833
|
}
|
833
834
|
|
834
|
-
#line
|
835
|
+
#line 323 "edn_parser.rl"
|
835
836
|
|
836
837
|
if (cs >= EDN_decimal_first_final) {
|
837
838
|
v = Parser::float_to_ruby(p_save, p - p_save);
|
@@ -846,14 +847,14 @@ case 8:
|
|
846
847
|
// integer parsing machine - M suffix will return a BigNum
|
847
848
|
//
|
848
849
|
|
849
|
-
#line
|
850
|
+
#line 851 "edn_parser.cc"
|
850
851
|
static const int EDN_integer_start = 1;
|
851
852
|
static const int EDN_integer_first_final = 3;
|
852
853
|
|
853
854
|
static const int EDN_integer_en_main = 1;
|
854
855
|
|
855
856
|
|
856
|
-
#line
|
857
|
+
#line 346 "edn_parser.rl"
|
857
858
|
|
858
859
|
|
859
860
|
const char* edn::Parser::parse_integer(const char *p, const char *pe, VALUE& v)
|
@@ -861,15 +862,15 @@ const char* edn::Parser::parse_integer(const char *p, const char *pe, VALUE& v)
|
|
861
862
|
int cs;
|
862
863
|
|
863
864
|
|
864
|
-
#line
|
865
|
+
#line 866 "edn_parser.cc"
|
865
866
|
{
|
866
867
|
cs = EDN_integer_start;
|
867
868
|
}
|
868
869
|
|
869
|
-
#line
|
870
|
+
#line 353 "edn_parser.rl"
|
870
871
|
const char* p_save = p;
|
871
872
|
|
872
|
-
#line
|
873
|
+
#line 874 "edn_parser.cc"
|
873
874
|
{
|
874
875
|
if ( p == pe )
|
875
876
|
goto _test_eof;
|
@@ -911,14 +912,14 @@ case 3:
|
|
911
912
|
goto st0;
|
912
913
|
goto tr4;
|
913
914
|
tr4:
|
914
|
-
#line
|
915
|
+
#line 56 "edn_parser.rl"
|
915
916
|
{ p--; {p++; cs = 4; goto _out;} }
|
916
917
|
goto st4;
|
917
918
|
st4:
|
918
919
|
if ( ++p == pe )
|
919
920
|
goto _test_eof4;
|
920
921
|
case 4:
|
921
|
-
#line
|
922
|
+
#line 923 "edn_parser.cc"
|
922
923
|
goto st0;
|
923
924
|
st5:
|
924
925
|
if ( ++p == pe )
|
@@ -959,7 +960,7 @@ case 6:
|
|
959
960
|
_out: {}
|
960
961
|
}
|
961
962
|
|
962
|
-
#line
|
963
|
+
#line 355 "edn_parser.rl"
|
963
964
|
|
964
965
|
if (cs >= EDN_integer_first_final) {
|
965
966
|
v = Parser::integer_to_ruby(p_save, p - p_save);
|
@@ -979,7 +980,7 @@ case 6:
|
|
979
980
|
// 3. stand-alone operators: +, -, /, *, etc.
|
980
981
|
//
|
981
982
|
|
982
|
-
#line
|
983
|
+
#line 984 "edn_parser.cc"
|
983
984
|
static const int EDN_operator_start = 1;
|
984
985
|
static const int EDN_operator_first_final = 3;
|
985
986
|
static const int EDN_operator_error = 0;
|
@@ -987,7 +988,7 @@ static const int EDN_operator_error = 0;
|
|
987
988
|
static const int EDN_operator_en_main = 1;
|
988
989
|
|
989
990
|
|
990
|
-
#line
|
991
|
+
#line 429 "edn_parser.rl"
|
991
992
|
|
992
993
|
|
993
994
|
|
@@ -996,15 +997,15 @@ const char* edn::Parser::parse_operator(const char *p, const char *pe, VALUE& v)
|
|
996
997
|
int cs;
|
997
998
|
|
998
999
|
|
999
|
-
#line
|
1000
|
+
#line 1001 "edn_parser.cc"
|
1000
1001
|
{
|
1001
1002
|
cs = EDN_operator_start;
|
1002
1003
|
}
|
1003
1004
|
|
1004
|
-
#line
|
1005
|
+
#line 437 "edn_parser.rl"
|
1005
1006
|
const char* p_save = p;
|
1006
1007
|
|
1007
|
-
#line
|
1008
|
+
#line 1009 "edn_parser.cc"
|
1008
1009
|
{
|
1009
1010
|
if ( p == pe )
|
1010
1011
|
goto _test_eof;
|
@@ -1057,22 +1058,22 @@ case 3:
|
|
1057
1058
|
goto tr9;
|
1058
1059
|
goto tr6;
|
1059
1060
|
tr6:
|
1060
|
-
#line
|
1061
|
+
#line 413 "edn_parser.rl"
|
1061
1062
|
{
|
1062
1063
|
// stand-alone operators (-, +, /, ... etc)
|
1063
1064
|
char op[2] = { *p_save, 0 };
|
1064
1065
|
VALUE sym = rb_str_new2(op);
|
1065
1066
|
v = Parser::make_edn_type(EDNT_MAKE_SYMBOL_METHOD, sym);
|
1066
1067
|
}
|
1067
|
-
#line
|
1068
|
+
#line 56 "edn_parser.rl"
|
1068
1069
|
{ p--; {p++; cs = 4; goto _out;} }
|
1069
1070
|
goto st4;
|
1070
1071
|
tr11:
|
1071
|
-
#line
|
1072
|
+
#line 56 "edn_parser.rl"
|
1072
1073
|
{ p--; {p++; cs = 4; goto _out;} }
|
1073
1074
|
goto st4;
|
1074
1075
|
tr17:
|
1075
|
-
#line
|
1076
|
+
#line 379 "edn_parser.rl"
|
1076
1077
|
{
|
1077
1078
|
// parse a symbol including the leading operator (-, +, .)
|
1078
1079
|
VALUE sym = Qnil;
|
@@ -1083,58 +1084,58 @@ tr17:
|
|
1083
1084
|
{p = (( np))-1;}
|
1084
1085
|
}
|
1085
1086
|
}
|
1086
|
-
#line
|
1087
|
+
#line 56 "edn_parser.rl"
|
1087
1088
|
{ p--; {p++; cs = 4; goto _out;} }
|
1088
1089
|
goto st4;
|
1089
1090
|
st4:
|
1090
1091
|
if ( ++p == pe )
|
1091
1092
|
goto _test_eof4;
|
1092
1093
|
case 4:
|
1093
|
-
#line
|
1094
|
+
#line 1095 "edn_parser.cc"
|
1094
1095
|
goto st0;
|
1095
1096
|
tr5:
|
1096
|
-
#line
|
1097
|
+
#line 23 "edn_parser.rl"
|
1097
1098
|
{ line_number++; }
|
1098
1099
|
goto st5;
|
1099
1100
|
tr7:
|
1100
|
-
#line
|
1101
|
+
#line 413 "edn_parser.rl"
|
1101
1102
|
{
|
1102
1103
|
// stand-alone operators (-, +, /, ... etc)
|
1103
1104
|
char op[2] = { *p_save, 0 };
|
1104
1105
|
VALUE sym = rb_str_new2(op);
|
1105
1106
|
v = Parser::make_edn_type(EDNT_MAKE_SYMBOL_METHOD, sym);
|
1106
1107
|
}
|
1107
|
-
#line
|
1108
|
+
#line 56 "edn_parser.rl"
|
1108
1109
|
{ p--; {p++; cs = 5; goto _out;} }
|
1109
1110
|
goto st5;
|
1110
1111
|
tr8:
|
1111
|
-
#line
|
1112
|
+
#line 413 "edn_parser.rl"
|
1112
1113
|
{
|
1113
1114
|
// stand-alone operators (-, +, /, ... etc)
|
1114
1115
|
char op[2] = { *p_save, 0 };
|
1115
1116
|
VALUE sym = rb_str_new2(op);
|
1116
1117
|
v = Parser::make_edn_type(EDNT_MAKE_SYMBOL_METHOD, sym);
|
1117
1118
|
}
|
1118
|
-
#line
|
1119
|
+
#line 23 "edn_parser.rl"
|
1119
1120
|
{ line_number++; }
|
1120
|
-
#line
|
1121
|
+
#line 56 "edn_parser.rl"
|
1121
1122
|
{ p--; {p++; cs = 5; goto _out;} }
|
1122
1123
|
goto st5;
|
1123
1124
|
tr12:
|
1124
|
-
#line
|
1125
|
+
#line 56 "edn_parser.rl"
|
1125
1126
|
{ p--; {p++; cs = 5; goto _out;} }
|
1126
1127
|
goto st5;
|
1127
1128
|
tr13:
|
1128
|
-
#line
|
1129
|
+
#line 23 "edn_parser.rl"
|
1129
1130
|
{ line_number++; }
|
1130
|
-
#line
|
1131
|
+
#line 56 "edn_parser.rl"
|
1131
1132
|
{ p--; {p++; cs = 5; goto _out;} }
|
1132
1133
|
goto st5;
|
1133
1134
|
st5:
|
1134
1135
|
if ( ++p == pe )
|
1135
1136
|
goto _test_eof5;
|
1136
1137
|
case 5:
|
1137
|
-
#line
|
1138
|
+
#line 1139 "edn_parser.cc"
|
1138
1139
|
switch( (*p) ) {
|
1139
1140
|
case 10: goto tr13;
|
1140
1141
|
case 32: goto tr12;
|
@@ -1159,25 +1160,25 @@ case 5:
|
|
1159
1160
|
goto st0;
|
1160
1161
|
goto tr11;
|
1161
1162
|
tr10:
|
1162
|
-
#line
|
1163
|
+
#line 413 "edn_parser.rl"
|
1163
1164
|
{
|
1164
1165
|
// stand-alone operators (-, +, /, ... etc)
|
1165
1166
|
char op[2] = { *p_save, 0 };
|
1166
1167
|
VALUE sym = rb_str_new2(op);
|
1167
1168
|
v = Parser::make_edn_type(EDNT_MAKE_SYMBOL_METHOD, sym);
|
1168
1169
|
}
|
1169
|
-
#line
|
1170
|
+
#line 56 "edn_parser.rl"
|
1170
1171
|
{ p--; {p++; cs = 6; goto _out;} }
|
1171
1172
|
goto st6;
|
1172
1173
|
tr14:
|
1173
|
-
#line
|
1174
|
+
#line 56 "edn_parser.rl"
|
1174
1175
|
{ p--; {p++; cs = 6; goto _out;} }
|
1175
1176
|
goto st6;
|
1176
1177
|
st6:
|
1177
1178
|
if ( ++p == pe )
|
1178
1179
|
goto _test_eof6;
|
1179
1180
|
case 6:
|
1180
|
-
#line
|
1181
|
+
#line 1182 "edn_parser.cc"
|
1181
1182
|
if ( (*p) == 10 )
|
1182
1183
|
goto tr5;
|
1183
1184
|
goto st2;
|
@@ -1189,7 +1190,7 @@ case 2:
|
|
1189
1190
|
goto tr5;
|
1190
1191
|
goto st2;
|
1191
1192
|
tr9:
|
1192
|
-
#line
|
1193
|
+
#line 379 "edn_parser.rl"
|
1193
1194
|
{
|
1194
1195
|
// parse a symbol including the leading operator (-, +, .)
|
1195
1196
|
VALUE sym = Qnil;
|
@@ -1202,7 +1203,7 @@ tr9:
|
|
1202
1203
|
}
|
1203
1204
|
goto st7;
|
1204
1205
|
tr16:
|
1205
|
-
#line
|
1206
|
+
#line 390 "edn_parser.rl"
|
1206
1207
|
{
|
1207
1208
|
// parse a number with the leading symbol - this is slightly
|
1208
1209
|
// different than the one within EDN_value since it includes
|
@@ -1230,7 +1231,7 @@ st7:
|
|
1230
1231
|
if ( ++p == pe )
|
1231
1232
|
goto _test_eof7;
|
1232
1233
|
case 7:
|
1233
|
-
#line
|
1234
|
+
#line 1235 "edn_parser.cc"
|
1234
1235
|
switch( (*p) ) {
|
1235
1236
|
case 33: goto st0;
|
1236
1237
|
case 95: goto st0;
|
@@ -1313,7 +1314,7 @@ case 9:
|
|
1313
1314
|
goto tr18;
|
1314
1315
|
goto tr17;
|
1315
1316
|
tr18:
|
1316
|
-
#line
|
1317
|
+
#line 379 "edn_parser.rl"
|
1317
1318
|
{
|
1318
1319
|
// parse a symbol including the leading operator (-, +, .)
|
1319
1320
|
VALUE sym = Qnil;
|
@@ -1329,7 +1330,7 @@ st10:
|
|
1329
1330
|
if ( ++p == pe )
|
1330
1331
|
goto _test_eof10;
|
1331
1332
|
case 10:
|
1332
|
-
#line
|
1333
|
+
#line 1334 "edn_parser.cc"
|
1333
1334
|
switch( (*p) ) {
|
1334
1335
|
case 33: goto st10;
|
1335
1336
|
case 95: goto st10;
|
@@ -1402,7 +1403,7 @@ case 11:
|
|
1402
1403
|
{
|
1403
1404
|
switch ( cs ) {
|
1404
1405
|
case 9:
|
1405
|
-
#line
|
1406
|
+
#line 379 "edn_parser.rl"
|
1406
1407
|
{
|
1407
1408
|
// parse a symbol including the leading operator (-, +, .)
|
1408
1409
|
VALUE sym = Qnil;
|
@@ -1417,7 +1418,7 @@ case 11:
|
|
1417
1418
|
case 3:
|
1418
1419
|
case 8:
|
1419
1420
|
case 11:
|
1420
|
-
#line
|
1421
|
+
#line 413 "edn_parser.rl"
|
1421
1422
|
{
|
1422
1423
|
// stand-alone operators (-, +, /, ... etc)
|
1423
1424
|
char op[2] = { *p_save, 0 };
|
@@ -1425,14 +1426,14 @@ case 11:
|
|
1425
1426
|
v = Parser::make_edn_type(EDNT_MAKE_SYMBOL_METHOD, sym);
|
1426
1427
|
}
|
1427
1428
|
break;
|
1428
|
-
#line
|
1429
|
+
#line 1430 "edn_parser.cc"
|
1429
1430
|
}
|
1430
1431
|
}
|
1431
1432
|
|
1432
1433
|
_out: {}
|
1433
1434
|
}
|
1434
1435
|
|
1435
|
-
#line
|
1436
|
+
#line 439 "edn_parser.rl"
|
1436
1437
|
|
1437
1438
|
if (cs >= EDN_operator_first_final) {
|
1438
1439
|
return p;
|
@@ -1451,7 +1452,7 @@ case 11:
|
|
1451
1452
|
// escaped char parsing - handles \c, \newline, \formfeed, etc.
|
1452
1453
|
//
|
1453
1454
|
|
1454
|
-
#line
|
1455
|
+
#line 1456 "edn_parser.cc"
|
1455
1456
|
static const int EDN_escaped_char_start = 1;
|
1456
1457
|
static const int EDN_escaped_char_first_final = 26;
|
1457
1458
|
static const int EDN_escaped_char_error = 0;
|
@@ -1459,7 +1460,7 @@ static const int EDN_escaped_char_error = 0;
|
|
1459
1460
|
static const int EDN_escaped_char_en_main = 1;
|
1460
1461
|
|
1461
1462
|
|
1462
|
-
#line
|
1463
|
+
#line 469 "edn_parser.rl"
|
1463
1464
|
|
1464
1465
|
|
1465
1466
|
|
@@ -1468,15 +1469,15 @@ const char* edn::Parser::parse_esc_char(const char *p, const char *pe, VALUE& v)
|
|
1468
1469
|
int cs;
|
1469
1470
|
|
1470
1471
|
|
1471
|
-
#line
|
1472
|
+
#line 1473 "edn_parser.cc"
|
1472
1473
|
{
|
1473
1474
|
cs = EDN_escaped_char_start;
|
1474
1475
|
}
|
1475
1476
|
|
1476
|
-
#line
|
1477
|
+
#line 477 "edn_parser.rl"
|
1477
1478
|
const char* p_save = p;
|
1478
1479
|
|
1479
|
-
#line
|
1480
|
+
#line 1481 "edn_parser.cc"
|
1480
1481
|
{
|
1481
1482
|
if ( p == pe )
|
1482
1483
|
goto _test_eof;
|
@@ -1521,20 +1522,20 @@ case 26:
|
|
1521
1522
|
goto tr28;
|
1522
1523
|
goto st0;
|
1523
1524
|
tr10:
|
1524
|
-
#line
|
1525
|
+
#line 23 "edn_parser.rl"
|
1525
1526
|
{ line_number++; }
|
1526
|
-
#line
|
1527
|
+
#line 56 "edn_parser.rl"
|
1527
1528
|
{ p--; {p++; cs = 27; goto _out;} }
|
1528
1529
|
goto st27;
|
1529
1530
|
tr28:
|
1530
|
-
#line
|
1531
|
+
#line 56 "edn_parser.rl"
|
1531
1532
|
{ p--; {p++; cs = 27; goto _out;} }
|
1532
1533
|
goto st27;
|
1533
1534
|
st27:
|
1534
1535
|
if ( ++p == pe )
|
1535
1536
|
goto _test_eof27;
|
1536
1537
|
case 27:
|
1537
|
-
#line
|
1538
|
+
#line 1539 "edn_parser.cc"
|
1538
1539
|
switch( (*p) ) {
|
1539
1540
|
case 10: goto tr10;
|
1540
1541
|
case 32: goto tr28;
|
@@ -1552,14 +1553,14 @@ case 3:
|
|
1552
1553
|
goto tr10;
|
1553
1554
|
goto st3;
|
1554
1555
|
tr29:
|
1555
|
-
#line
|
1556
|
+
#line 56 "edn_parser.rl"
|
1556
1557
|
{ p--; {p++; cs = 28; goto _out;} }
|
1557
1558
|
goto st28;
|
1558
1559
|
st28:
|
1559
1560
|
if ( ++p == pe )
|
1560
1561
|
goto _test_eof28;
|
1561
1562
|
case 28:
|
1562
|
-
#line
|
1563
|
+
#line 1564 "edn_parser.cc"
|
1563
1564
|
goto st0;
|
1564
1565
|
st29:
|
1565
1566
|
if ( ++p == pe )
|
@@ -1868,7 +1869,7 @@ case 25:
|
|
1868
1869
|
_out: {}
|
1869
1870
|
}
|
1870
1871
|
|
1871
|
-
#line
|
1872
|
+
#line 479 "edn_parser.rl"
|
1872
1873
|
|
1873
1874
|
if (cs >= EDN_escaped_char_first_final) {
|
1874
1875
|
// convert the escaped value to a character
|
@@ -1895,7 +1896,7 @@ case 25:
|
|
1895
1896
|
//
|
1896
1897
|
//
|
1897
1898
|
|
1898
|
-
#line
|
1899
|
+
#line 1900 "edn_parser.cc"
|
1899
1900
|
static const int EDN_symbol_start = 1;
|
1900
1901
|
static const int EDN_symbol_first_final = 4;
|
1901
1902
|
static const int EDN_symbol_error = 0;
|
@@ -1903,7 +1904,7 @@ static const int EDN_symbol_error = 0;
|
|
1903
1904
|
static const int EDN_symbol_en_main = 1;
|
1904
1905
|
|
1905
1906
|
|
1906
|
-
#line
|
1907
|
+
#line 530 "edn_parser.rl"
|
1907
1908
|
|
1908
1909
|
|
1909
1910
|
|
@@ -1912,15 +1913,15 @@ const char* edn::Parser::parse_symbol(const char *p, const char *pe, VALUE& s)
|
|
1912
1913
|
int cs;
|
1913
1914
|
|
1914
1915
|
|
1915
|
-
#line
|
1916
|
+
#line 1917 "edn_parser.cc"
|
1916
1917
|
{
|
1917
1918
|
cs = EDN_symbol_start;
|
1918
1919
|
}
|
1919
1920
|
|
1920
|
-
#line
|
1921
|
+
#line 538 "edn_parser.rl"
|
1921
1922
|
const char* p_save = p;
|
1922
1923
|
|
1923
|
-
#line
|
1924
|
+
#line 1925 "edn_parser.cc"
|
1924
1925
|
{
|
1925
1926
|
if ( p == pe )
|
1926
1927
|
goto _test_eof;
|
@@ -1982,34 +1983,34 @@ case 4:
|
|
1982
1983
|
goto st4;
|
1983
1984
|
goto tr7;
|
1984
1985
|
tr7:
|
1985
|
-
#line
|
1986
|
+
#line 56 "edn_parser.rl"
|
1986
1987
|
{ p--; {p++; cs = 5; goto _out;} }
|
1987
1988
|
goto st5;
|
1988
1989
|
st5:
|
1989
1990
|
if ( ++p == pe )
|
1990
1991
|
goto _test_eof5;
|
1991
1992
|
case 5:
|
1992
|
-
#line
|
1993
|
+
#line 1994 "edn_parser.cc"
|
1993
1994
|
goto st0;
|
1994
1995
|
tr4:
|
1995
|
-
#line
|
1996
|
+
#line 23 "edn_parser.rl"
|
1996
1997
|
{ line_number++; }
|
1997
1998
|
goto st6;
|
1998
1999
|
tr8:
|
1999
|
-
#line
|
2000
|
+
#line 56 "edn_parser.rl"
|
2000
2001
|
{ p--; {p++; cs = 6; goto _out;} }
|
2001
2002
|
goto st6;
|
2002
2003
|
tr9:
|
2003
|
-
#line
|
2004
|
+
#line 23 "edn_parser.rl"
|
2004
2005
|
{ line_number++; }
|
2005
|
-
#line
|
2006
|
+
#line 56 "edn_parser.rl"
|
2006
2007
|
{ p--; {p++; cs = 6; goto _out;} }
|
2007
2008
|
goto st6;
|
2008
2009
|
st6:
|
2009
2010
|
if ( ++p == pe )
|
2010
2011
|
goto _test_eof6;
|
2011
2012
|
case 6:
|
2012
|
-
#line
|
2013
|
+
#line 2014 "edn_parser.cc"
|
2013
2014
|
switch( (*p) ) {
|
2014
2015
|
case 10: goto tr9;
|
2015
2016
|
case 32: goto tr8;
|
@@ -2034,14 +2035,14 @@ case 6:
|
|
2034
2035
|
goto st0;
|
2035
2036
|
goto tr7;
|
2036
2037
|
tr11:
|
2037
|
-
#line
|
2038
|
+
#line 56 "edn_parser.rl"
|
2038
2039
|
{ p--; {p++; cs = 7; goto _out;} }
|
2039
2040
|
goto st7;
|
2040
2041
|
st7:
|
2041
2042
|
if ( ++p == pe )
|
2042
2043
|
goto _test_eof7;
|
2043
2044
|
case 7:
|
2044
|
-
#line
|
2045
|
+
#line 2046 "edn_parser.cc"
|
2045
2046
|
if ( (*p) == 10 )
|
2046
2047
|
goto tr4;
|
2047
2048
|
goto st2;
|
@@ -2149,7 +2150,7 @@ case 9:
|
|
2149
2150
|
_out: {}
|
2150
2151
|
}
|
2151
2152
|
|
2152
|
-
#line
|
2153
|
+
#line 540 "edn_parser.rl"
|
2153
2154
|
|
2154
2155
|
if (cs >= EDN_symbol_first_final) {
|
2155
2156
|
// copy the symbol text
|
@@ -2174,13 +2175,13 @@ case 9:
|
|
2174
2175
|
// sets the same array is used)
|
2175
2176
|
//
|
2176
2177
|
|
2177
|
-
#line
|
2178
|
+
#line 618 "edn_parser.rl"
|
2178
2179
|
|
2179
2180
|
|
2180
2181
|
//
|
2181
2182
|
// vector-specific machine
|
2182
2183
|
|
2183
|
-
#line
|
2184
|
+
#line 2185 "edn_parser.cc"
|
2184
2185
|
static const int EDN_vector_start = 1;
|
2185
2186
|
static const int EDN_vector_first_final = 4;
|
2186
2187
|
static const int EDN_vector_error = 0;
|
@@ -2188,7 +2189,7 @@ static const int EDN_vector_error = 0;
|
|
2188
2189
|
static const int EDN_vector_en_main = 1;
|
2189
2190
|
|
2190
2191
|
|
2191
|
-
#line
|
2192
|
+
#line 633 "edn_parser.rl"
|
2192
2193
|
|
2193
2194
|
|
2194
2195
|
|
@@ -2203,14 +2204,14 @@ const char* edn::Parser::parse_vector(const char *p, const char *pe, VALUE& v)
|
|
2203
2204
|
VALUE elems; // will store the vector's elements - allocated in @open_seq
|
2204
2205
|
|
2205
2206
|
|
2206
|
-
#line
|
2207
|
+
#line 2208 "edn_parser.cc"
|
2207
2208
|
{
|
2208
2209
|
cs = EDN_vector_start;
|
2209
2210
|
}
|
2210
2211
|
|
2211
|
-
#line
|
2212
|
+
#line 647 "edn_parser.rl"
|
2212
2213
|
|
2213
|
-
#line
|
2214
|
+
#line 2215 "edn_parser.cc"
|
2214
2215
|
{
|
2215
2216
|
if ( p == pe )
|
2216
2217
|
goto _test_eof;
|
@@ -2221,7 +2222,7 @@ case 1:
|
|
2221
2222
|
goto tr0;
|
2222
2223
|
goto st0;
|
2223
2224
|
tr2:
|
2224
|
-
#line
|
2225
|
+
#line 49 "edn_parser.rl"
|
2225
2226
|
{
|
2226
2227
|
std::stringstream s;
|
2227
2228
|
s << "unterminated " << EDN_TYPE;
|
@@ -2229,12 +2230,12 @@ tr2:
|
|
2229
2230
|
p--; {p++; cs = 0; goto _out;}
|
2230
2231
|
}
|
2231
2232
|
goto st0;
|
2232
|
-
#line
|
2233
|
+
#line 2234 "edn_parser.cc"
|
2233
2234
|
st0:
|
2234
2235
|
cs = 0;
|
2235
2236
|
goto _out;
|
2236
2237
|
tr0:
|
2237
|
-
#line
|
2238
|
+
#line 567 "edn_parser.rl"
|
2238
2239
|
{
|
2239
2240
|
// sequences store elements in an array, then process it to
|
2240
2241
|
// convert it to a list, set, or map as needed once the
|
@@ -2246,11 +2247,11 @@ tr0:
|
|
2246
2247
|
}
|
2247
2248
|
goto st2;
|
2248
2249
|
tr4:
|
2249
|
-
#line
|
2250
|
+
#line 23 "edn_parser.rl"
|
2250
2251
|
{ line_number++; }
|
2251
2252
|
goto st2;
|
2252
2253
|
tr5:
|
2253
|
-
#line
|
2254
|
+
#line 582 "edn_parser.rl"
|
2254
2255
|
{
|
2255
2256
|
// reads an item within a sequence (vector, list, map, or
|
2256
2257
|
// set). Regardless of the sequence type, an array of the
|
@@ -2288,7 +2289,7 @@ st2:
|
|
2288
2289
|
if ( ++p == pe )
|
2289
2290
|
goto _test_eof2;
|
2290
2291
|
case 2:
|
2291
|
-
#line
|
2292
|
+
#line 2293 "edn_parser.cc"
|
2292
2293
|
switch( (*p) ) {
|
2293
2294
|
case 10: goto tr4;
|
2294
2295
|
case 32: goto st2;
|
@@ -2319,19 +2320,19 @@ case 3:
|
|
2319
2320
|
goto tr4;
|
2320
2321
|
goto st3;
|
2321
2322
|
tr7:
|
2322
|
-
#line
|
2323
|
+
#line 577 "edn_parser.rl"
|
2323
2324
|
{
|
2324
2325
|
// remove the current metadata level
|
2325
2326
|
del_top_meta_list();
|
2326
2327
|
}
|
2327
|
-
#line
|
2328
|
+
#line 56 "edn_parser.rl"
|
2328
2329
|
{ p--; {p++; cs = 4; goto _out;} }
|
2329
2330
|
goto st4;
|
2330
2331
|
st4:
|
2331
2332
|
if ( ++p == pe )
|
2332
2333
|
goto _test_eof4;
|
2333
2334
|
case 4:
|
2334
|
-
#line
|
2335
|
+
#line 2336 "edn_parser.cc"
|
2335
2336
|
goto st0;
|
2336
2337
|
}
|
2337
2338
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -2344,7 +2345,7 @@ case 4:
|
|
2344
2345
|
switch ( cs ) {
|
2345
2346
|
case 2:
|
2346
2347
|
case 3:
|
2347
|
-
#line
|
2348
|
+
#line 49 "edn_parser.rl"
|
2348
2349
|
{
|
2349
2350
|
std::stringstream s;
|
2350
2351
|
s << "unterminated " << EDN_TYPE;
|
@@ -2352,14 +2353,14 @@ case 4:
|
|
2352
2353
|
p--; {p++; cs = 0; goto _out;}
|
2353
2354
|
}
|
2354
2355
|
break;
|
2355
|
-
#line
|
2356
|
+
#line 2357 "edn_parser.cc"
|
2356
2357
|
}
|
2357
2358
|
}
|
2358
2359
|
|
2359
2360
|
_out: {}
|
2360
2361
|
}
|
2361
2362
|
|
2362
|
-
#line
|
2363
|
+
#line 648 "edn_parser.rl"
|
2363
2364
|
|
2364
2365
|
if (cs >= EDN_vector_first_final) {
|
2365
2366
|
v = elems;
|
@@ -2379,7 +2380,7 @@ case 4:
|
|
2379
2380
|
// list parsing machine
|
2380
2381
|
//
|
2381
2382
|
|
2382
|
-
#line
|
2383
|
+
#line 2384 "edn_parser.cc"
|
2383
2384
|
static const int EDN_list_start = 1;
|
2384
2385
|
static const int EDN_list_first_final = 4;
|
2385
2386
|
static const int EDN_list_error = 0;
|
@@ -2387,7 +2388,7 @@ static const int EDN_list_error = 0;
|
|
2387
2388
|
static const int EDN_list_en_main = 1;
|
2388
2389
|
|
2389
2390
|
|
2390
|
-
#line
|
2391
|
+
#line 677 "edn_parser.rl"
|
2391
2392
|
|
2392
2393
|
|
2393
2394
|
//
|
@@ -2401,14 +2402,14 @@ const char* edn::Parser::parse_list(const char *p, const char *pe, VALUE& v)
|
|
2401
2402
|
VALUE elems; // stores the list's elements - allocated in @open_seq
|
2402
2403
|
|
2403
2404
|
|
2404
|
-
#line
|
2405
|
+
#line 2406 "edn_parser.cc"
|
2405
2406
|
{
|
2406
2407
|
cs = EDN_list_start;
|
2407
2408
|
}
|
2408
2409
|
|
2409
|
-
#line
|
2410
|
+
#line 690 "edn_parser.rl"
|
2410
2411
|
|
2411
|
-
#line
|
2412
|
+
#line 2413 "edn_parser.cc"
|
2412
2413
|
{
|
2413
2414
|
if ( p == pe )
|
2414
2415
|
goto _test_eof;
|
@@ -2419,7 +2420,7 @@ case 1:
|
|
2419
2420
|
goto tr0;
|
2420
2421
|
goto st0;
|
2421
2422
|
tr2:
|
2422
|
-
#line
|
2423
|
+
#line 49 "edn_parser.rl"
|
2423
2424
|
{
|
2424
2425
|
std::stringstream s;
|
2425
2426
|
s << "unterminated " << EDN_TYPE;
|
@@ -2427,12 +2428,12 @@ tr2:
|
|
2427
2428
|
p--; {p++; cs = 0; goto _out;}
|
2428
2429
|
}
|
2429
2430
|
goto st0;
|
2430
|
-
#line
|
2431
|
+
#line 2432 "edn_parser.cc"
|
2431
2432
|
st0:
|
2432
2433
|
cs = 0;
|
2433
2434
|
goto _out;
|
2434
2435
|
tr0:
|
2435
|
-
#line
|
2436
|
+
#line 567 "edn_parser.rl"
|
2436
2437
|
{
|
2437
2438
|
// sequences store elements in an array, then process it to
|
2438
2439
|
// convert it to a list, set, or map as needed once the
|
@@ -2444,11 +2445,11 @@ tr0:
|
|
2444
2445
|
}
|
2445
2446
|
goto st2;
|
2446
2447
|
tr4:
|
2447
|
-
#line
|
2448
|
+
#line 23 "edn_parser.rl"
|
2448
2449
|
{ line_number++; }
|
2449
2450
|
goto st2;
|
2450
2451
|
tr5:
|
2451
|
-
#line
|
2452
|
+
#line 582 "edn_parser.rl"
|
2452
2453
|
{
|
2453
2454
|
// reads an item within a sequence (vector, list, map, or
|
2454
2455
|
// set). Regardless of the sequence type, an array of the
|
@@ -2486,7 +2487,7 @@ st2:
|
|
2486
2487
|
if ( ++p == pe )
|
2487
2488
|
goto _test_eof2;
|
2488
2489
|
case 2:
|
2489
|
-
#line
|
2490
|
+
#line 2491 "edn_parser.cc"
|
2490
2491
|
switch( (*p) ) {
|
2491
2492
|
case 10: goto tr4;
|
2492
2493
|
case 32: goto st2;
|
@@ -2510,19 +2511,19 @@ case 2:
|
|
2510
2511
|
goto tr5;
|
2511
2512
|
goto tr2;
|
2512
2513
|
tr6:
|
2513
|
-
#line
|
2514
|
+
#line 577 "edn_parser.rl"
|
2514
2515
|
{
|
2515
2516
|
// remove the current metadata level
|
2516
2517
|
del_top_meta_list();
|
2517
2518
|
}
|
2518
|
-
#line
|
2519
|
+
#line 56 "edn_parser.rl"
|
2519
2520
|
{ p--; {p++; cs = 4; goto _out;} }
|
2520
2521
|
goto st4;
|
2521
2522
|
st4:
|
2522
2523
|
if ( ++p == pe )
|
2523
2524
|
goto _test_eof4;
|
2524
2525
|
case 4:
|
2525
|
-
#line
|
2526
|
+
#line 2527 "edn_parser.cc"
|
2526
2527
|
goto st0;
|
2527
2528
|
st3:
|
2528
2529
|
if ( ++p == pe )
|
@@ -2542,7 +2543,7 @@ case 3:
|
|
2542
2543
|
switch ( cs ) {
|
2543
2544
|
case 2:
|
2544
2545
|
case 3:
|
2545
|
-
#line
|
2546
|
+
#line 49 "edn_parser.rl"
|
2546
2547
|
{
|
2547
2548
|
std::stringstream s;
|
2548
2549
|
s << "unterminated " << EDN_TYPE;
|
@@ -2550,14 +2551,14 @@ case 3:
|
|
2550
2551
|
p--; {p++; cs = 0; goto _out;}
|
2551
2552
|
}
|
2552
2553
|
break;
|
2553
|
-
#line
|
2554
|
+
#line 2555 "edn_parser.cc"
|
2554
2555
|
}
|
2555
2556
|
}
|
2556
2557
|
|
2557
2558
|
_out: {}
|
2558
2559
|
}
|
2559
2560
|
|
2560
|
-
#line
|
2561
|
+
#line 691 "edn_parser.rl"
|
2561
2562
|
|
2562
2563
|
if (cs >= EDN_list_first_final) {
|
2563
2564
|
v = elems;
|
@@ -2579,7 +2580,7 @@ case 3:
|
|
2579
2580
|
// hash parsing
|
2580
2581
|
//
|
2581
2582
|
|
2582
|
-
#line
|
2583
|
+
#line 2584 "edn_parser.cc"
|
2583
2584
|
static const int EDN_map_start = 1;
|
2584
2585
|
static const int EDN_map_first_final = 4;
|
2585
2586
|
static const int EDN_map_error = 0;
|
@@ -2587,7 +2588,7 @@ static const int EDN_map_error = 0;
|
|
2587
2588
|
static const int EDN_map_en_main = 1;
|
2588
2589
|
|
2589
2590
|
|
2590
|
-
#line
|
2591
|
+
#line 723 "edn_parser.rl"
|
2591
2592
|
|
2592
2593
|
|
2593
2594
|
|
@@ -2601,14 +2602,14 @@ const char* edn::Parser::parse_map(const char *p, const char *pe, VALUE& v)
|
|
2601
2602
|
VALUE elems;
|
2602
2603
|
|
2603
2604
|
|
2604
|
-
#line
|
2605
|
+
#line 2606 "edn_parser.cc"
|
2605
2606
|
{
|
2606
2607
|
cs = EDN_map_start;
|
2607
2608
|
}
|
2608
2609
|
|
2609
|
-
#line
|
2610
|
+
#line 736 "edn_parser.rl"
|
2610
2611
|
|
2611
|
-
#line
|
2612
|
+
#line 2613 "edn_parser.cc"
|
2612
2613
|
{
|
2613
2614
|
if ( p == pe )
|
2614
2615
|
goto _test_eof;
|
@@ -2619,7 +2620,7 @@ case 1:
|
|
2619
2620
|
goto tr0;
|
2620
2621
|
goto st0;
|
2621
2622
|
tr2:
|
2622
|
-
#line
|
2623
|
+
#line 49 "edn_parser.rl"
|
2623
2624
|
{
|
2624
2625
|
std::stringstream s;
|
2625
2626
|
s << "unterminated " << EDN_TYPE;
|
@@ -2627,12 +2628,12 @@ tr2:
|
|
2627
2628
|
p--; {p++; cs = 0; goto _out;}
|
2628
2629
|
}
|
2629
2630
|
goto st0;
|
2630
|
-
#line
|
2631
|
+
#line 2632 "edn_parser.cc"
|
2631
2632
|
st0:
|
2632
2633
|
cs = 0;
|
2633
2634
|
goto _out;
|
2634
2635
|
tr0:
|
2635
|
-
#line
|
2636
|
+
#line 567 "edn_parser.rl"
|
2636
2637
|
{
|
2637
2638
|
// sequences store elements in an array, then process it to
|
2638
2639
|
// convert it to a list, set, or map as needed once the
|
@@ -2644,11 +2645,11 @@ tr0:
|
|
2644
2645
|
}
|
2645
2646
|
goto st2;
|
2646
2647
|
tr4:
|
2647
|
-
#line
|
2648
|
+
#line 23 "edn_parser.rl"
|
2648
2649
|
{ line_number++; }
|
2649
2650
|
goto st2;
|
2650
2651
|
tr5:
|
2651
|
-
#line
|
2652
|
+
#line 582 "edn_parser.rl"
|
2652
2653
|
{
|
2653
2654
|
// reads an item within a sequence (vector, list, map, or
|
2654
2655
|
// set). Regardless of the sequence type, an array of the
|
@@ -2686,7 +2687,7 @@ st2:
|
|
2686
2687
|
if ( ++p == pe )
|
2687
2688
|
goto _test_eof2;
|
2688
2689
|
case 2:
|
2689
|
-
#line
|
2690
|
+
#line 2691 "edn_parser.cc"
|
2690
2691
|
switch( (*p) ) {
|
2691
2692
|
case 10: goto tr4;
|
2692
2693
|
case 32: goto st2;
|
@@ -2720,19 +2721,19 @@ case 3:
|
|
2720
2721
|
goto tr4;
|
2721
2722
|
goto st3;
|
2722
2723
|
tr7:
|
2723
|
-
#line
|
2724
|
+
#line 577 "edn_parser.rl"
|
2724
2725
|
{
|
2725
2726
|
// remove the current metadata level
|
2726
2727
|
del_top_meta_list();
|
2727
2728
|
}
|
2728
|
-
#line
|
2729
|
+
#line 56 "edn_parser.rl"
|
2729
2730
|
{ p--; {p++; cs = 4; goto _out;} }
|
2730
2731
|
goto st4;
|
2731
2732
|
st4:
|
2732
2733
|
if ( ++p == pe )
|
2733
2734
|
goto _test_eof4;
|
2734
2735
|
case 4:
|
2735
|
-
#line
|
2736
|
+
#line 2737 "edn_parser.cc"
|
2736
2737
|
goto st0;
|
2737
2738
|
}
|
2738
2739
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -2745,7 +2746,7 @@ case 4:
|
|
2745
2746
|
switch ( cs ) {
|
2746
2747
|
case 2:
|
2747
2748
|
case 3:
|
2748
|
-
#line
|
2749
|
+
#line 49 "edn_parser.rl"
|
2749
2750
|
{
|
2750
2751
|
std::stringstream s;
|
2751
2752
|
s << "unterminated " << EDN_TYPE;
|
@@ -2753,14 +2754,14 @@ case 4:
|
|
2753
2754
|
p--; {p++; cs = 0; goto _out;}
|
2754
2755
|
}
|
2755
2756
|
break;
|
2756
|
-
#line
|
2757
|
+
#line 2758 "edn_parser.cc"
|
2757
2758
|
}
|
2758
2759
|
}
|
2759
2760
|
|
2760
2761
|
_out: {}
|
2761
2762
|
}
|
2762
2763
|
|
2763
|
-
#line
|
2764
|
+
#line 737 "edn_parser.rl"
|
2764
2765
|
|
2765
2766
|
if (cs >= EDN_map_first_final) {
|
2766
2767
|
|
@@ -2796,7 +2797,7 @@ case 4:
|
|
2796
2797
|
// the remaining data to the correct parser
|
2797
2798
|
//
|
2798
2799
|
|
2799
|
-
#line
|
2800
|
+
#line 2801 "edn_parser.cc"
|
2800
2801
|
static const int EDN_dispatch_start = 1;
|
2801
2802
|
static const int EDN_dispatch_first_final = 2;
|
2802
2803
|
static const int EDN_dispatch_error = 0;
|
@@ -2804,7 +2805,7 @@ static const int EDN_dispatch_error = 0;
|
|
2804
2805
|
static const int EDN_dispatch_en_main = 1;
|
2805
2806
|
|
2806
2807
|
|
2807
|
-
#line
|
2808
|
+
#line 801 "edn_parser.rl"
|
2808
2809
|
|
2809
2810
|
|
2810
2811
|
|
@@ -2813,14 +2814,14 @@ const char* edn::Parser::parse_dispatch(const char *p, const char *pe, VALUE& v)
|
|
2813
2814
|
int cs;
|
2814
2815
|
|
2815
2816
|
|
2816
|
-
#line
|
2817
|
+
#line 2818 "edn_parser.cc"
|
2817
2818
|
{
|
2818
2819
|
cs = EDN_dispatch_start;
|
2819
2820
|
}
|
2820
2821
|
|
2821
|
-
#line
|
2822
|
+
#line 809 "edn_parser.rl"
|
2822
2823
|
|
2823
|
-
#line
|
2824
|
+
#line 2825 "edn_parser.cc"
|
2824
2825
|
{
|
2825
2826
|
if ( p == pe )
|
2826
2827
|
goto _test_eof;
|
@@ -2841,40 +2842,40 @@ st0:
|
|
2841
2842
|
cs = 0;
|
2842
2843
|
goto _out;
|
2843
2844
|
tr0:
|
2844
|
-
#line
|
2845
|
+
#line 789 "edn_parser.rl"
|
2845
2846
|
{
|
2846
2847
|
// #inst, #uuid, or #user/tag
|
2847
2848
|
const char *np = parse_tagged(p, pe, v);
|
2848
2849
|
if (np == NULL) { p--; {p++; cs = 2; goto _out;} } else {p = (( np))-1;}
|
2849
2850
|
}
|
2850
|
-
#line
|
2851
|
+
#line 56 "edn_parser.rl"
|
2851
2852
|
{ p--; {p++; cs = 2; goto _out;} }
|
2852
2853
|
goto st2;
|
2853
2854
|
tr2:
|
2854
|
-
#line
|
2855
|
+
#line 783 "edn_parser.rl"
|
2855
2856
|
{
|
2856
2857
|
// discard token #_
|
2857
2858
|
const char *np = parse_discard(p, pe);
|
2858
2859
|
if (np == NULL) { p--; {p++; cs = 2; goto _out;} } else {p = (( np))-1;}
|
2859
2860
|
}
|
2860
|
-
#line
|
2861
|
+
#line 56 "edn_parser.rl"
|
2861
2862
|
{ p--; {p++; cs = 2; goto _out;} }
|
2862
2863
|
goto st2;
|
2863
2864
|
tr3:
|
2864
|
-
#line
|
2865
|
+
#line 777 "edn_parser.rl"
|
2865
2866
|
{
|
2866
2867
|
// #{ }
|
2867
2868
|
const char *np = parse_set(p, pe, v);
|
2868
2869
|
if (np == NULL) { p--; {p++; cs = 2; goto _out;} } else {p = (( np))-1;}
|
2869
2870
|
}
|
2870
|
-
#line
|
2871
|
+
#line 56 "edn_parser.rl"
|
2871
2872
|
{ p--; {p++; cs = 2; goto _out;} }
|
2872
2873
|
goto st2;
|
2873
2874
|
st2:
|
2874
2875
|
if ( ++p == pe )
|
2875
2876
|
goto _test_eof2;
|
2876
2877
|
case 2:
|
2877
|
-
#line
|
2878
|
+
#line 2879 "edn_parser.cc"
|
2878
2879
|
goto st0;
|
2879
2880
|
}
|
2880
2881
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -2883,7 +2884,7 @@ case 2:
|
|
2883
2884
|
_out: {}
|
2884
2885
|
}
|
2885
2886
|
|
2886
|
-
#line
|
2887
|
+
#line 810 "edn_parser.rl"
|
2887
2888
|
|
2888
2889
|
if (cs >= EDN_dispatch_first_final) {
|
2889
2890
|
return p + 1;
|
@@ -2902,7 +2903,7 @@ case 2:
|
|
2902
2903
|
// set parsing machine
|
2903
2904
|
//
|
2904
2905
|
|
2905
|
-
#line
|
2906
|
+
#line 2907 "edn_parser.cc"
|
2906
2907
|
static const int EDN_set_start = 1;
|
2907
2908
|
static const int EDN_set_first_final = 4;
|
2908
2909
|
static const int EDN_set_error = 0;
|
@@ -2910,7 +2911,7 @@ static const int EDN_set_error = 0;
|
|
2910
2911
|
static const int EDN_set_en_main = 1;
|
2911
2912
|
|
2912
2913
|
|
2913
|
-
#line
|
2914
|
+
#line 839 "edn_parser.rl"
|
2914
2915
|
|
2915
2916
|
|
2916
2917
|
//
|
@@ -2924,14 +2925,14 @@ const char* edn::Parser::parse_set(const char *p, const char *pe, VALUE& v)
|
|
2924
2925
|
VALUE elems; // holds the set's elements as an array allocated in @open_seq
|
2925
2926
|
|
2926
2927
|
|
2927
|
-
#line
|
2928
|
+
#line 2929 "edn_parser.cc"
|
2928
2929
|
{
|
2929
2930
|
cs = EDN_set_start;
|
2930
2931
|
}
|
2931
2932
|
|
2932
|
-
#line
|
2933
|
+
#line 852 "edn_parser.rl"
|
2933
2934
|
|
2934
|
-
#line
|
2935
|
+
#line 2936 "edn_parser.cc"
|
2935
2936
|
{
|
2936
2937
|
if ( p == pe )
|
2937
2938
|
goto _test_eof;
|
@@ -2942,7 +2943,7 @@ case 1:
|
|
2942
2943
|
goto tr0;
|
2943
2944
|
goto st0;
|
2944
2945
|
tr2:
|
2945
|
-
#line
|
2946
|
+
#line 49 "edn_parser.rl"
|
2946
2947
|
{
|
2947
2948
|
std::stringstream s;
|
2948
2949
|
s << "unterminated " << EDN_TYPE;
|
@@ -2950,12 +2951,12 @@ tr2:
|
|
2950
2951
|
p--; {p++; cs = 0; goto _out;}
|
2951
2952
|
}
|
2952
2953
|
goto st0;
|
2953
|
-
#line
|
2954
|
+
#line 2955 "edn_parser.cc"
|
2954
2955
|
st0:
|
2955
2956
|
cs = 0;
|
2956
2957
|
goto _out;
|
2957
2958
|
tr0:
|
2958
|
-
#line
|
2959
|
+
#line 567 "edn_parser.rl"
|
2959
2960
|
{
|
2960
2961
|
// sequences store elements in an array, then process it to
|
2961
2962
|
// convert it to a list, set, or map as needed once the
|
@@ -2967,11 +2968,11 @@ tr0:
|
|
2967
2968
|
}
|
2968
2969
|
goto st2;
|
2969
2970
|
tr4:
|
2970
|
-
#line
|
2971
|
+
#line 23 "edn_parser.rl"
|
2971
2972
|
{ line_number++; }
|
2972
2973
|
goto st2;
|
2973
2974
|
tr5:
|
2974
|
-
#line
|
2975
|
+
#line 582 "edn_parser.rl"
|
2975
2976
|
{
|
2976
2977
|
// reads an item within a sequence (vector, list, map, or
|
2977
2978
|
// set). Regardless of the sequence type, an array of the
|
@@ -3009,7 +3010,7 @@ st2:
|
|
3009
3010
|
if ( ++p == pe )
|
3010
3011
|
goto _test_eof2;
|
3011
3012
|
case 2:
|
3012
|
-
#line
|
3013
|
+
#line 3014 "edn_parser.cc"
|
3013
3014
|
switch( (*p) ) {
|
3014
3015
|
case 10: goto tr4;
|
3015
3016
|
case 32: goto st2;
|
@@ -3043,19 +3044,19 @@ case 3:
|
|
3043
3044
|
goto tr4;
|
3044
3045
|
goto st3;
|
3045
3046
|
tr7:
|
3046
|
-
#line
|
3047
|
+
#line 577 "edn_parser.rl"
|
3047
3048
|
{
|
3048
3049
|
// remove the current metadata level
|
3049
3050
|
del_top_meta_list();
|
3050
3051
|
}
|
3051
|
-
#line
|
3052
|
+
#line 56 "edn_parser.rl"
|
3052
3053
|
{ p--; {p++; cs = 4; goto _out;} }
|
3053
3054
|
goto st4;
|
3054
3055
|
st4:
|
3055
3056
|
if ( ++p == pe )
|
3056
3057
|
goto _test_eof4;
|
3057
3058
|
case 4:
|
3058
|
-
#line
|
3059
|
+
#line 3060 "edn_parser.cc"
|
3059
3060
|
goto st0;
|
3060
3061
|
}
|
3061
3062
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -3068,7 +3069,7 @@ case 4:
|
|
3068
3069
|
switch ( cs ) {
|
3069
3070
|
case 2:
|
3070
3071
|
case 3:
|
3071
|
-
#line
|
3072
|
+
#line 49 "edn_parser.rl"
|
3072
3073
|
{
|
3073
3074
|
std::stringstream s;
|
3074
3075
|
s << "unterminated " << EDN_TYPE;
|
@@ -3076,14 +3077,14 @@ case 4:
|
|
3076
3077
|
p--; {p++; cs = 0; goto _out;}
|
3077
3078
|
}
|
3078
3079
|
break;
|
3079
|
-
#line
|
3080
|
+
#line 3081 "edn_parser.cc"
|
3080
3081
|
}
|
3081
3082
|
}
|
3082
3083
|
|
3083
3084
|
_out: {}
|
3084
3085
|
}
|
3085
3086
|
|
3086
|
-
#line
|
3087
|
+
#line 853 "edn_parser.rl"
|
3087
3088
|
|
3088
3089
|
if (cs >= EDN_set_first_final) {
|
3089
3090
|
// all elements collected; now convert to a set
|
@@ -3106,7 +3107,7 @@ case 4:
|
|
3106
3107
|
// defining a machine to consume items within container delimiters
|
3107
3108
|
//
|
3108
3109
|
|
3109
|
-
#line
|
3110
|
+
#line 3111 "edn_parser.cc"
|
3110
3111
|
static const int EDN_discard_start = 1;
|
3111
3112
|
static const int EDN_discard_first_final = 4;
|
3112
3113
|
static const int EDN_discard_error = 0;
|
@@ -3114,7 +3115,7 @@ static const int EDN_discard_error = 0;
|
|
3114
3115
|
static const int EDN_discard_en_main = 1;
|
3115
3116
|
|
3116
3117
|
|
3117
|
-
#line
|
3118
|
+
#line 903 "edn_parser.rl"
|
3118
3119
|
|
3119
3120
|
|
3120
3121
|
|
@@ -3124,14 +3125,14 @@ const char* edn::Parser::parse_discard(const char *p, const char *pe)
|
|
3124
3125
|
VALUE v;
|
3125
3126
|
|
3126
3127
|
|
3127
|
-
#line
|
3128
|
+
#line 3129 "edn_parser.cc"
|
3128
3129
|
{
|
3129
3130
|
cs = EDN_discard_start;
|
3130
3131
|
}
|
3131
3132
|
|
3132
|
-
#line
|
3133
|
+
#line 912 "edn_parser.rl"
|
3133
3134
|
|
3134
|
-
#line
|
3135
|
+
#line 3136 "edn_parser.cc"
|
3135
3136
|
{
|
3136
3137
|
if ( p == pe )
|
3137
3138
|
goto _test_eof;
|
@@ -3142,7 +3143,7 @@ case 1:
|
|
3142
3143
|
goto st2;
|
3143
3144
|
goto st0;
|
3144
3145
|
tr2:
|
3145
|
-
#line
|
3146
|
+
#line 893 "edn_parser.rl"
|
3146
3147
|
{
|
3147
3148
|
std::stringstream s;
|
3148
3149
|
s << "discard sequence without element to discard";
|
@@ -3150,19 +3151,19 @@ tr2:
|
|
3150
3151
|
p--; {p++; cs = 0; goto _out;}
|
3151
3152
|
}
|
3152
3153
|
goto st0;
|
3153
|
-
#line
|
3154
|
+
#line 3155 "edn_parser.cc"
|
3154
3155
|
st0:
|
3155
3156
|
cs = 0;
|
3156
3157
|
goto _out;
|
3157
3158
|
tr3:
|
3158
|
-
#line
|
3159
|
+
#line 23 "edn_parser.rl"
|
3159
3160
|
{ line_number++; }
|
3160
3161
|
goto st2;
|
3161
3162
|
st2:
|
3162
3163
|
if ( ++p == pe )
|
3163
3164
|
goto _test_eof2;
|
3164
3165
|
case 2:
|
3165
|
-
#line
|
3166
|
+
#line 3167 "edn_parser.cc"
|
3166
3167
|
switch( (*p) ) {
|
3167
3168
|
case 10: goto tr3;
|
3168
3169
|
case 32: goto st2;
|
@@ -3188,7 +3189,7 @@ case 2:
|
|
3188
3189
|
goto tr4;
|
3189
3190
|
goto tr2;
|
3190
3191
|
tr4:
|
3191
|
-
#line
|
3192
|
+
#line 882 "edn_parser.rl"
|
3192
3193
|
{
|
3193
3194
|
const char *np = parse_value(p, pe, v);
|
3194
3195
|
if (np == NULL) { p--; {p++; cs = 4; goto _out;} } else {
|
@@ -3199,14 +3200,14 @@ tr4:
|
|
3199
3200
|
{p = (( np))-1;}
|
3200
3201
|
}
|
3201
3202
|
}
|
3202
|
-
#line
|
3203
|
+
#line 56 "edn_parser.rl"
|
3203
3204
|
{ p--; {p++; cs = 4; goto _out;} }
|
3204
3205
|
goto st4;
|
3205
3206
|
st4:
|
3206
3207
|
if ( ++p == pe )
|
3207
3208
|
goto _test_eof4;
|
3208
3209
|
case 4:
|
3209
|
-
#line
|
3210
|
+
#line 3211 "edn_parser.cc"
|
3210
3211
|
goto st0;
|
3211
3212
|
st3:
|
3212
3213
|
if ( ++p == pe )
|
@@ -3225,7 +3226,7 @@ case 3:
|
|
3225
3226
|
{
|
3226
3227
|
switch ( cs ) {
|
3227
3228
|
case 2:
|
3228
|
-
#line
|
3229
|
+
#line 893 "edn_parser.rl"
|
3229
3230
|
{
|
3230
3231
|
std::stringstream s;
|
3231
3232
|
s << "discard sequence without element to discard";
|
@@ -3233,14 +3234,14 @@ case 3:
|
|
3233
3234
|
p--; {p++; cs = 0; goto _out;}
|
3234
3235
|
}
|
3235
3236
|
break;
|
3236
|
-
#line
|
3237
|
+
#line 3238 "edn_parser.cc"
|
3237
3238
|
}
|
3238
3239
|
}
|
3239
3240
|
|
3240
3241
|
_out: {}
|
3241
3242
|
}
|
3242
3243
|
|
3243
|
-
#line
|
3244
|
+
#line 913 "edn_parser.rl"
|
3244
3245
|
|
3245
3246
|
if (cs >= EDN_discard_first_final) {
|
3246
3247
|
return p + 1;
|
@@ -3271,7 +3272,7 @@ case 3:
|
|
3271
3272
|
// 2. add parse checks for uuid and inst for better error reporting
|
3272
3273
|
//
|
3273
3274
|
|
3274
|
-
#line
|
3275
|
+
#line 3276 "edn_parser.cc"
|
3275
3276
|
static const int EDN_tagged_start = 1;
|
3276
3277
|
static const int EDN_tagged_first_final = 7;
|
3277
3278
|
static const int EDN_tagged_error = 0;
|
@@ -3279,7 +3280,7 @@ static const int EDN_tagged_error = 0;
|
|
3279
3280
|
static const int EDN_tagged_en_main = 1;
|
3280
3281
|
|
3281
3282
|
|
3282
|
-
#line
|
3283
|
+
#line 981 "edn_parser.rl"
|
3283
3284
|
|
3284
3285
|
|
3285
3286
|
|
@@ -3293,14 +3294,14 @@ const char* edn::Parser::parse_tagged(const char *p, const char *pe, VALUE& v)
|
|
3293
3294
|
int cs;
|
3294
3295
|
|
3295
3296
|
|
3296
|
-
#line
|
3297
|
+
#line 3298 "edn_parser.cc"
|
3297
3298
|
{
|
3298
3299
|
cs = EDN_tagged_start;
|
3299
3300
|
}
|
3300
3301
|
|
3301
|
-
#line
|
3302
|
+
#line 994 "edn_parser.rl"
|
3302
3303
|
|
3303
|
-
#line
|
3304
|
+
#line 3305 "edn_parser.cc"
|
3304
3305
|
{
|
3305
3306
|
if ( p == pe )
|
3306
3307
|
goto _test_eof;
|
@@ -3317,7 +3318,7 @@ st0:
|
|
3317
3318
|
cs = 0;
|
3318
3319
|
goto _out;
|
3319
3320
|
tr0:
|
3320
|
-
#line
|
3321
|
+
#line 960 "edn_parser.rl"
|
3321
3322
|
{
|
3322
3323
|
// parses the symbol portion of the pair
|
3323
3324
|
const char *np = parse_symbol(p, pe, sym_name);
|
@@ -3331,7 +3332,7 @@ st2:
|
|
3331
3332
|
if ( ++p == pe )
|
3332
3333
|
goto _test_eof2;
|
3333
3334
|
case 2:
|
3334
|
-
#line
|
3335
|
+
#line 3336 "edn_parser.cc"
|
3335
3336
|
switch( (*p) ) {
|
3336
3337
|
case 10: goto tr3;
|
3337
3338
|
case 32: goto st3;
|
@@ -3357,14 +3358,14 @@ case 2:
|
|
3357
3358
|
goto st2;
|
3358
3359
|
goto st0;
|
3359
3360
|
tr3:
|
3360
|
-
#line
|
3361
|
+
#line 23 "edn_parser.rl"
|
3361
3362
|
{ line_number++; }
|
3362
3363
|
goto st3;
|
3363
3364
|
st3:
|
3364
3365
|
if ( ++p == pe )
|
3365
3366
|
goto _test_eof3;
|
3366
3367
|
case 3:
|
3367
|
-
#line
|
3368
|
+
#line 3369 "edn_parser.cc"
|
3368
3369
|
switch( (*p) ) {
|
3369
3370
|
case 10: goto tr3;
|
3370
3371
|
case 32: goto st3;
|
@@ -3390,7 +3391,7 @@ case 3:
|
|
3390
3391
|
goto tr7;
|
3391
3392
|
goto st0;
|
3392
3393
|
tr7:
|
3393
|
-
#line
|
3394
|
+
#line 968 "edn_parser.rl"
|
3394
3395
|
{
|
3395
3396
|
// parses the value portion
|
3396
3397
|
const char *np = parse_value(p, pe, data);
|
@@ -3399,14 +3400,14 @@ tr7:
|
|
3399
3400
|
{p = (( np))-1;}
|
3400
3401
|
}
|
3401
3402
|
}
|
3402
|
-
#line
|
3403
|
+
#line 56 "edn_parser.rl"
|
3403
3404
|
{ p--; {p++; cs = 7; goto _out;} }
|
3404
3405
|
goto st7;
|
3405
3406
|
st7:
|
3406
3407
|
if ( ++p == pe )
|
3407
3408
|
goto _test_eof7;
|
3408
3409
|
case 7:
|
3409
|
-
#line
|
3410
|
+
#line 3411 "edn_parser.cc"
|
3410
3411
|
goto st0;
|
3411
3412
|
st4:
|
3412
3413
|
if ( ++p == pe )
|
@@ -3484,7 +3485,7 @@ case 6:
|
|
3484
3485
|
_out: {}
|
3485
3486
|
}
|
3486
3487
|
|
3487
|
-
#line
|
3488
|
+
#line 995 "edn_parser.rl"
|
3488
3489
|
|
3489
3490
|
if (cs >= EDN_tagged_first_final) {
|
3490
3491
|
//std::cerr << __FUNCTION__ << " parse symbol name as '" << sym_name << "', value is: " << data << std::endl;
|
@@ -3522,7 +3523,7 @@ case 6:
|
|
3522
3523
|
// useful?
|
3523
3524
|
//
|
3524
3525
|
|
3525
|
-
#line
|
3526
|
+
#line 3527 "edn_parser.cc"
|
3526
3527
|
static const int EDN_meta_start = 1;
|
3527
3528
|
static const int EDN_meta_first_final = 3;
|
3528
3529
|
static const int EDN_meta_error = 0;
|
@@ -3530,7 +3531,7 @@ static const int EDN_meta_error = 0;
|
|
3530
3531
|
static const int EDN_meta_en_main = 1;
|
3531
3532
|
|
3532
3533
|
|
3533
|
-
#line
|
3534
|
+
#line 1045 "edn_parser.rl"
|
3534
3535
|
|
3535
3536
|
|
3536
3537
|
|
@@ -3540,14 +3541,14 @@ const char* edn::Parser::parse_meta(const char *p, const char *pe)
|
|
3540
3541
|
VALUE v;
|
3541
3542
|
|
3542
3543
|
|
3543
|
-
#line
|
3544
|
+
#line 3545 "edn_parser.cc"
|
3544
3545
|
{
|
3545
3546
|
cs = EDN_meta_start;
|
3546
3547
|
}
|
3547
3548
|
|
3548
|
-
#line
|
3549
|
+
#line 1054 "edn_parser.rl"
|
3549
3550
|
|
3550
|
-
#line
|
3551
|
+
#line 3552 "edn_parser.cc"
|
3551
3552
|
{
|
3552
3553
|
if ( p == pe )
|
3553
3554
|
goto _test_eof;
|
@@ -3586,19 +3587,19 @@ case 2:
|
|
3586
3587
|
goto tr2;
|
3587
3588
|
goto st0;
|
3588
3589
|
tr2:
|
3589
|
-
#line
|
3590
|
+
#line 1037 "edn_parser.rl"
|
3590
3591
|
{
|
3591
3592
|
const char *np = parse_value(p, pe, v);
|
3592
3593
|
if (np == NULL) { p--; {p++; cs = 3; goto _out;} } else { {p = (( np))-1;} }
|
3593
3594
|
}
|
3594
|
-
#line
|
3595
|
+
#line 56 "edn_parser.rl"
|
3595
3596
|
{ p--; {p++; cs = 3; goto _out;} }
|
3596
3597
|
goto st3;
|
3597
3598
|
st3:
|
3598
3599
|
if ( ++p == pe )
|
3599
3600
|
goto _test_eof3;
|
3600
3601
|
case 3:
|
3601
|
-
#line
|
3602
|
+
#line 3603 "edn_parser.cc"
|
3602
3603
|
goto st0;
|
3603
3604
|
}
|
3604
3605
|
_test_eof2: cs = 2; goto _test_eof;
|
@@ -3608,7 +3609,7 @@ case 3:
|
|
3608
3609
|
_out: {}
|
3609
3610
|
}
|
3610
3611
|
|
3611
|
-
#line
|
3612
|
+
#line 1055 "edn_parser.rl"
|
3612
3613
|
|
3613
3614
|
if (cs >= EDN_meta_first_final) {
|
3614
3615
|
append_to_meta(v);
|
@@ -3630,7 +3631,7 @@ case 3:
|
|
3630
3631
|
// top-level, therefore, does not tokenize source stream
|
3631
3632
|
//
|
3632
3633
|
|
3633
|
-
#line
|
3634
|
+
#line 3635 "edn_parser.cc"
|
3634
3635
|
static const int EDN_parser_start = 2;
|
3635
3636
|
static const int EDN_parser_first_final = 2;
|
3636
3637
|
static const int EDN_parser_error = 0;
|
@@ -3638,7 +3639,7 @@ static const int EDN_parser_error = 0;
|
|
3638
3639
|
static const int EDN_parser_en_main = 2;
|
3639
3640
|
|
3640
3641
|
|
3641
|
-
#line
|
3642
|
+
#line 1104 "edn_parser.rl"
|
3642
3643
|
|
3643
3644
|
|
3644
3645
|
|
@@ -3648,26 +3649,26 @@ VALUE edn::Parser::parse(const char* src, std::size_t len)
|
|
3648
3649
|
VALUE result = EDNT_EOF_CONST;
|
3649
3650
|
|
3650
3651
|
|
3651
|
-
#line
|
3652
|
+
#line 3653 "edn_parser.cc"
|
3652
3653
|
{
|
3653
3654
|
cs = EDN_parser_start;
|
3654
3655
|
}
|
3655
3656
|
|
3656
|
-
#line
|
3657
|
+
#line 1113 "edn_parser.rl"
|
3657
3658
|
set_source(src, len);
|
3658
3659
|
|
3659
|
-
#line
|
3660
|
+
#line 3661 "edn_parser.cc"
|
3660
3661
|
{
|
3661
3662
|
if ( p == pe )
|
3662
3663
|
goto _test_eof;
|
3663
3664
|
switch ( cs )
|
3664
3665
|
{
|
3665
3666
|
tr1:
|
3666
|
-
#line
|
3667
|
+
#line 23 "edn_parser.rl"
|
3667
3668
|
{ line_number++; }
|
3668
3669
|
goto st2;
|
3669
3670
|
tr4:
|
3670
|
-
#line
|
3671
|
+
#line 1081 "edn_parser.rl"
|
3671
3672
|
{
|
3672
3673
|
// save the count of metadata items before we parse this value
|
3673
3674
|
// so we can determine if we've read another metadata value or
|
@@ -3690,7 +3691,7 @@ st2:
|
|
3690
3691
|
if ( ++p == pe )
|
3691
3692
|
goto _test_eof2;
|
3692
3693
|
case 2:
|
3693
|
-
#line
|
3694
|
+
#line 3695 "edn_parser.cc"
|
3694
3695
|
switch( (*p) ) {
|
3695
3696
|
case 10: goto tr1;
|
3696
3697
|
case 32: goto st2;
|
@@ -3733,7 +3734,7 @@ case 1:
|
|
3733
3734
|
_out: {}
|
3734
3735
|
}
|
3735
3736
|
|
3736
|
-
#line
|
3737
|
+
#line 1115 "edn_parser.rl"
|
3737
3738
|
|
3738
3739
|
if (cs == EDN_parser_error) {
|
3739
3740
|
error(__FUNCTION__, *p);
|
@@ -3751,13 +3752,13 @@ case 1:
|
|
3751
3752
|
// token-by-token machine
|
3752
3753
|
//
|
3753
3754
|
|
3754
|
-
#line
|
3755
|
+
#line 3756 "edn_parser.cc"
|
3755
3756
|
static const int EDN_tokens_start = 1;
|
3756
3757
|
|
3757
3758
|
static const int EDN_tokens_en_main = 1;
|
3758
3759
|
|
3759
3760
|
|
3760
|
-
#line
|
3761
|
+
#line 1169 "edn_parser.rl"
|
3761
3762
|
|
3762
3763
|
|
3763
3764
|
|
@@ -3776,28 +3777,28 @@ edn::Parser::eTokenState edn::Parser::parse_next(VALUE& value)
|
|
3776
3777
|
discard.clear();
|
3777
3778
|
|
3778
3779
|
|
3779
|
-
#line
|
3780
|
+
#line 3781 "edn_parser.cc"
|
3780
3781
|
{
|
3781
3782
|
cs = EDN_tokens_start;
|
3782
3783
|
}
|
3783
3784
|
|
3784
|
-
#line
|
3785
|
+
#line 1187 "edn_parser.rl"
|
3785
3786
|
|
3786
|
-
#line
|
3787
|
+
#line 3788 "edn_parser.cc"
|
3787
3788
|
{
|
3788
3789
|
if ( p == pe )
|
3789
3790
|
goto _test_eof;
|
3790
3791
|
switch ( cs )
|
3791
3792
|
{
|
3792
3793
|
tr2:
|
3793
|
-
#line
|
3794
|
+
#line 23 "edn_parser.rl"
|
3794
3795
|
{ line_number++; }
|
3795
3796
|
goto st1;
|
3796
3797
|
st1:
|
3797
3798
|
if ( ++p == pe )
|
3798
3799
|
goto _test_eof1;
|
3799
3800
|
case 1:
|
3800
|
-
#line
|
3801
|
+
#line 3802 "edn_parser.cc"
|
3801
3802
|
switch( (*p) ) {
|
3802
3803
|
case 10: goto tr2;
|
3803
3804
|
case 32: goto st1;
|
@@ -3826,11 +3827,11 @@ st0:
|
|
3826
3827
|
cs = 0;
|
3827
3828
|
goto _out;
|
3828
3829
|
tr6:
|
3829
|
-
#line
|
3830
|
+
#line 23 "edn_parser.rl"
|
3830
3831
|
{ line_number++; }
|
3831
3832
|
goto st4;
|
3832
3833
|
tr3:
|
3833
|
-
#line
|
3834
|
+
#line 1137 "edn_parser.rl"
|
3834
3835
|
{
|
3835
3836
|
// we won't know if we've parsed a discard or a metadata until
|
3836
3837
|
// after parse_value() is done. Save the current number of
|
@@ -3866,7 +3867,7 @@ st4:
|
|
3866
3867
|
if ( ++p == pe )
|
3867
3868
|
goto _test_eof4;
|
3868
3869
|
case 4:
|
3869
|
-
#line
|
3870
|
+
#line 3871 "edn_parser.cc"
|
3870
3871
|
switch( (*p) ) {
|
3871
3872
|
case 10: goto tr6;
|
3872
3873
|
case 32: goto st4;
|
@@ -3900,17 +3901,15 @@ case 3:
|
|
3900
3901
|
_out: {}
|
3901
3902
|
}
|
3902
3903
|
|
3903
|
-
#line
|
3904
|
+
#line 1188 "edn_parser.rl"
|
3904
3905
|
|
3905
3906
|
if (cs == EDN_tokens_en_main) {} // silence ragel warning
|
3906
3907
|
return state;
|
3907
3908
|
}
|
3908
3909
|
|
3909
|
-
|
3910
3910
|
/*
|
3911
|
-
* Local variables:
|
3912
|
-
* mode: c
|
3913
|
-
*
|
3914
|
-
*
|
3915
|
-
|
3916
|
-
*/
|
3911
|
+
- * Local variables:
|
3912
|
+
- * mode: c
|
3913
|
+
- * indent-tabs-mode: nil
|
3914
|
+
- * End:
|
3915
|
+
- */
|