edn_turbo 0.5.3 → 0.5.4

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