json 2.1.0 → 2.6.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.
Files changed (96) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGES.md +63 -5
  3. data/LICENSE +56 -0
  4. data/README.md +56 -23
  5. data/VERSION +1 -1
  6. data/ext/json/ext/generator/generator.c +223 -58
  7. data/ext/json/ext/generator/generator.h +5 -2
  8. data/ext/json/ext/parser/extconf.rb +26 -0
  9. data/ext/json/ext/parser/parser.c +2973 -1744
  10. data/ext/json/ext/parser/parser.h +6 -1
  11. data/ext/json/ext/parser/parser.rl +130 -22
  12. data/ext/json/extconf.rb +1 -0
  13. data/json.gemspec +0 -0
  14. data/lib/json/add/bigdecimal.rb +2 -2
  15. data/lib/json/add/complex.rb +2 -3
  16. data/lib/json/add/ostruct.rb +1 -1
  17. data/lib/json/add/rational.rb +2 -3
  18. data/lib/json/add/regexp.rb +2 -2
  19. data/lib/json/add/set.rb +29 -0
  20. data/lib/json/common.rb +372 -125
  21. data/lib/json/pure/generator.rb +31 -10
  22. data/lib/json/pure/parser.rb +32 -6
  23. data/lib/json/version.rb +1 -1
  24. data/lib/json.rb +549 -29
  25. metadata +19 -113
  26. data/.gitignore +0 -17
  27. data/.travis.yml +0 -19
  28. data/Gemfile +0 -16
  29. data/README-json-jruby.md +0 -33
  30. data/Rakefile +0 -408
  31. data/data/example.json +0 -1
  32. data/data/index.html +0 -38
  33. data/data/prototype.js +0 -4184
  34. data/diagrams/.keep +0 -0
  35. data/install.rb +0 -23
  36. data/java/src/json/ext/ByteListTranscoder.java +0 -166
  37. data/java/src/json/ext/Generator.java +0 -443
  38. data/java/src/json/ext/GeneratorMethods.java +0 -231
  39. data/java/src/json/ext/GeneratorService.java +0 -42
  40. data/java/src/json/ext/GeneratorState.java +0 -490
  41. data/java/src/json/ext/OptionsReader.java +0 -113
  42. data/java/src/json/ext/Parser.java +0 -2362
  43. data/java/src/json/ext/Parser.rl +0 -893
  44. data/java/src/json/ext/ParserService.java +0 -34
  45. data/java/src/json/ext/RuntimeInfo.java +0 -116
  46. data/java/src/json/ext/StringDecoder.java +0 -166
  47. data/java/src/json/ext/StringEncoder.java +0 -111
  48. data/java/src/json/ext/Utils.java +0 -88
  49. data/json-java.gemspec +0 -38
  50. data/json_pure.gemspec +0 -38
  51. data/lib/json/ext/.keep +0 -0
  52. data/references/rfc7159.txt +0 -899
  53. data/tests/fixtures/fail10.json +0 -1
  54. data/tests/fixtures/fail11.json +0 -1
  55. data/tests/fixtures/fail12.json +0 -1
  56. data/tests/fixtures/fail13.json +0 -1
  57. data/tests/fixtures/fail14.json +0 -1
  58. data/tests/fixtures/fail18.json +0 -1
  59. data/tests/fixtures/fail19.json +0 -1
  60. data/tests/fixtures/fail2.json +0 -1
  61. data/tests/fixtures/fail20.json +0 -1
  62. data/tests/fixtures/fail21.json +0 -1
  63. data/tests/fixtures/fail22.json +0 -1
  64. data/tests/fixtures/fail23.json +0 -1
  65. data/tests/fixtures/fail24.json +0 -1
  66. data/tests/fixtures/fail25.json +0 -1
  67. data/tests/fixtures/fail27.json +0 -2
  68. data/tests/fixtures/fail28.json +0 -2
  69. data/tests/fixtures/fail3.json +0 -1
  70. data/tests/fixtures/fail4.json +0 -1
  71. data/tests/fixtures/fail5.json +0 -1
  72. data/tests/fixtures/fail6.json +0 -1
  73. data/tests/fixtures/fail7.json +0 -1
  74. data/tests/fixtures/fail8.json +0 -1
  75. data/tests/fixtures/fail9.json +0 -1
  76. data/tests/fixtures/obsolete_fail1.json +0 -1
  77. data/tests/fixtures/pass1.json +0 -56
  78. data/tests/fixtures/pass15.json +0 -1
  79. data/tests/fixtures/pass16.json +0 -1
  80. data/tests/fixtures/pass17.json +0 -1
  81. data/tests/fixtures/pass2.json +0 -1
  82. data/tests/fixtures/pass26.json +0 -1
  83. data/tests/fixtures/pass3.json +0 -6
  84. data/tests/json_addition_test.rb +0 -193
  85. data/tests/json_common_interface_test.rb +0 -126
  86. data/tests/json_encoding_test.rb +0 -107
  87. data/tests/json_ext_parser_test.rb +0 -15
  88. data/tests/json_fixtures_test.rb +0 -32
  89. data/tests/json_generator_test.rb +0 -377
  90. data/tests/json_generic_object_test.rb +0 -82
  91. data/tests/json_parser_test.rb +0 -471
  92. data/tests/json_string_matching_test.rb +0 -38
  93. data/tests/test_helper.rb +0 -21
  94. data/tools/diff.sh +0 -18
  95. data/tools/fuzz.rb +0 -131
  96. data/tools/server.rb +0 -62
@@ -1,4 +1,4 @@
1
-
1
+ /* This file is automatically generated from parser.rl by using ragel */
2
2
  #line 1 "parser.rl"
3
3
  #include "../fbuffer/fbuffer.h"
4
4
  #include "parser.h"
@@ -9,14 +9,14 @@
9
9
  static void
10
10
  enc_raise(rb_encoding *enc, VALUE exc, const char *fmt, ...)
11
11
  {
12
- va_list args;
13
- VALUE mesg;
12
+ va_list args;
13
+ VALUE mesg;
14
14
 
15
- va_start(args, fmt);
16
- mesg = rb_enc_vsprintf(enc, fmt, args);
17
- va_end(args);
15
+ va_start(args, fmt);
16
+ mesg = rb_enc_vsprintf(enc, fmt, args);
17
+ va_end(args);
18
18
 
19
- rb_exc_raise(rb_exc_new3(exc, mesg));
19
+ rb_exc_raise(rb_exc_new3(exc, mesg));
20
20
  }
21
21
  # define rb_enc_raise enc_raise
22
22
  # endif
@@ -27,2083 +27,3312 @@ enc_raise(rb_encoding *enc, VALUE exc, const char *fmt, ...)
27
27
 
28
28
  /* unicode */
29
29
 
30
- static const char digit_values[256] = {
31
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
32
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
33
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1,
34
- -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
35
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
36
- 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
37
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
38
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
39
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
40
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
41
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
42
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
43
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
44
- -1, -1, -1, -1, -1, -1, -1
30
+ static const signed char digit_values[256] = {
31
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
32
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
33
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1,
34
+ -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
35
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
36
+ 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
37
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
38
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
39
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
40
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
41
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
42
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
43
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
44
+ -1, -1, -1, -1, -1, -1, -1
45
45
  };
46
46
 
47
47
  static UTF32 unescape_unicode(const unsigned char *p)
48
48
  {
49
- char b;
50
- UTF32 result = 0;
51
- b = digit_values[p[0]];
52
- if (b < 0) return UNI_REPLACEMENT_CHAR;
53
- result = (result << 4) | (unsigned char)b;
54
- b = digit_values[p[1]];
55
- if (b < 0) return UNI_REPLACEMENT_CHAR;
56
- result = (result << 4) | (unsigned char)b;
57
- b = digit_values[p[2]];
58
- if (b < 0) return UNI_REPLACEMENT_CHAR;
59
- result = (result << 4) | (unsigned char)b;
60
- b = digit_values[p[3]];
61
- if (b < 0) return UNI_REPLACEMENT_CHAR;
62
- result = (result << 4) | (unsigned char)b;
63
- return result;
49
+ signed char b;
50
+ UTF32 result = 0;
51
+ b = digit_values[p[0]];
52
+ if (b < 0) return UNI_REPLACEMENT_CHAR;
53
+ result = (result << 4) | (unsigned char)b;
54
+ b = digit_values[p[1]];
55
+ if (b < 0) return UNI_REPLACEMENT_CHAR;
56
+ result = (result << 4) | (unsigned char)b;
57
+ b = digit_values[p[2]];
58
+ if (b < 0) return UNI_REPLACEMENT_CHAR;
59
+ result = (result << 4) | (unsigned char)b;
60
+ b = digit_values[p[3]];
61
+ if (b < 0) return UNI_REPLACEMENT_CHAR;
62
+ result = (result << 4) | (unsigned char)b;
63
+ return result;
64
64
  }
65
65
 
66
66
  static int convert_UTF32_to_UTF8(char *buf, UTF32 ch)
67
67
  {
68
- int len = 1;
69
- if (ch <= 0x7F) {
70
- buf[0] = (char) ch;
71
- } else if (ch <= 0x07FF) {
72
- buf[0] = (char) ((ch >> 6) | 0xC0);
73
- buf[1] = (char) ((ch & 0x3F) | 0x80);
74
- len++;
75
- } else if (ch <= 0xFFFF) {
76
- buf[0] = (char) ((ch >> 12) | 0xE0);
77
- buf[1] = (char) (((ch >> 6) & 0x3F) | 0x80);
78
- buf[2] = (char) ((ch & 0x3F) | 0x80);
79
- len += 2;
80
- } else if (ch <= 0x1fffff) {
81
- buf[0] =(char) ((ch >> 18) | 0xF0);
82
- buf[1] =(char) (((ch >> 12) & 0x3F) | 0x80);
83
- buf[2] =(char) (((ch >> 6) & 0x3F) | 0x80);
84
- buf[3] =(char) ((ch & 0x3F) | 0x80);
85
- len += 3;
86
- } else {
87
- buf[0] = '?';
88
- }
89
- return len;
68
+ int len = 1;
69
+ if (ch <= 0x7F) {
70
+ buf[0] = (char) ch;
71
+ } else if (ch <= 0x07FF) {
72
+ buf[0] = (char) ((ch >> 6) | 0xC0);
73
+ buf[1] = (char) ((ch & 0x3F) | 0x80);
74
+ len++;
75
+ } else if (ch <= 0xFFFF) {
76
+ buf[0] = (char) ((ch >> 12) | 0xE0);
77
+ buf[1] = (char) (((ch >> 6) & 0x3F) | 0x80);
78
+ buf[2] = (char) ((ch & 0x3F) | 0x80);
79
+ len += 2;
80
+ } else if (ch <= 0x1fffff) {
81
+ buf[0] =(char) ((ch >> 18) | 0xF0);
82
+ buf[1] =(char) (((ch >> 12) & 0x3F) | 0x80);
83
+ buf[2] =(char) (((ch >> 6) & 0x3F) | 0x80);
84
+ buf[3] =(char) ((ch & 0x3F) | 0x80);
85
+ len += 3;
86
+ } else {
87
+ buf[0] = '?';
88
+ }
89
+ return len;
90
90
  }
91
91
 
92
92
  static VALUE mJSON, mExt, cParser, eParserError, eNestingError;
93
93
  static VALUE CNaN, CInfinity, CMinusInfinity;
94
94
 
95
95
  static ID i_json_creatable_p, i_json_create, i_create_id, i_create_additions,
96
- i_chr, i_max_nesting, i_allow_nan, i_symbolize_names,
97
- i_object_class, i_array_class, i_decimal_class, i_key_p,
98
- i_deep_const_get, i_match, i_match_string, i_aset, i_aref,
99
- i_leftshift, i_new;
96
+ i_chr, i_max_nesting, i_allow_nan, i_symbolize_names,
97
+ i_object_class, i_array_class, i_decimal_class, i_key_p,
98
+ i_deep_const_get, i_match, i_match_string, i_aset, i_aref,
99
+ i_leftshift, i_new, i_try_convert, i_freeze, i_uminus;
100
100
 
101
101
 
102
102
  #line 125 "parser.rl"
103
103
 
104
104
 
105
105
 
106
- #line 107 "parser.c"
107
106
  enum {JSON_object_start = 1};
108
107
  enum {JSON_object_first_final = 27};
109
108
  enum {JSON_object_error = 0};
110
109
 
111
110
  enum {JSON_object_en_main = 1};
112
111
 
112
+ static const char MAYBE_UNUSED(_JSON_object_nfa_targs)[] = {
113
+ 0, 0
114
+ };
115
+
116
+ static const char MAYBE_UNUSED(_JSON_object_nfa_offsets)[] = {
117
+ 0, 0, 0, 0, 0, 0, 0, 0,
118
+ 0, 0, 0, 0, 0, 0, 0, 0,
119
+ 0, 0, 0, 0, 0, 0, 0, 0,
120
+ 0, 0, 0, 0, 0
121
+ };
122
+
123
+ static const char MAYBE_UNUSED(_JSON_object_nfa_push_actions)[] = {
124
+ 0, 0
125
+ };
126
+
127
+ static const char MAYBE_UNUSED(_JSON_object_nfa_pop_trans)[] = {
128
+ 0, 0
129
+ };
130
+
113
131
 
114
- #line 166 "parser.rl"
132
+ #line 167 "parser.rl"
115
133
 
116
134
 
117
135
  static char *JSON_parse_object(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
118
136
  {
119
- int cs = EVIL;
120
- VALUE last_name = Qnil;
121
- VALUE object_class = json->object_class;
137
+ int cs = EVIL;
138
+ VALUE last_name = Qnil;
139
+ VALUE object_class = json->object_class;
122
140
 
123
- if (json->max_nesting && current_nesting > json->max_nesting) {
124
- rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
125
- }
141
+ if (json->max_nesting && current_nesting > json->max_nesting) {
142
+ rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
143
+ }
126
144
 
127
- *result = NIL_P(object_class) ? rb_hash_new() : rb_class_new_instance(0, 0, object_class);
145
+ *result = NIL_P(object_class) ? rb_hash_new() : rb_class_new_instance(0, 0, object_class);
128
146
 
129
147
 
130
- #line 131 "parser.c"
131
148
  {
132
- cs = JSON_object_start;
149
+ cs = (int)JSON_object_start;
133
150
  }
134
151
 
135
- #line 181 "parser.rl"
152
+ #line 182 "parser.rl"
153
+
136
154
 
137
- #line 138 "parser.c"
138
155
  {
139
- if ( p == pe )
156
+ if ( p == pe )
140
157
  goto _test_eof;
141
- switch ( cs )
142
- {
143
- case 1:
144
- if ( (*p) == 123 )
145
- goto st2;
146
- goto st0;
147
- st0:
148
- cs = 0;
149
- goto _out;
150
- st2:
151
- if ( ++p == pe )
158
+ switch ( cs )
159
+ {
160
+ case 1:
161
+ goto st_case_1;
162
+ case 0:
163
+ goto st_case_0;
164
+ case 2:
165
+ goto st_case_2;
166
+ case 3:
167
+ goto st_case_3;
168
+ case 4:
169
+ goto st_case_4;
170
+ case 5:
171
+ goto st_case_5;
172
+ case 6:
173
+ goto st_case_6;
174
+ case 7:
175
+ goto st_case_7;
176
+ case 8:
177
+ goto st_case_8;
178
+ case 9:
179
+ goto st_case_9;
180
+ case 10:
181
+ goto st_case_10;
182
+ case 11:
183
+ goto st_case_11;
184
+ case 12:
185
+ goto st_case_12;
186
+ case 13:
187
+ goto st_case_13;
188
+ case 14:
189
+ goto st_case_14;
190
+ case 15:
191
+ goto st_case_15;
192
+ case 16:
193
+ goto st_case_16;
194
+ case 17:
195
+ goto st_case_17;
196
+ case 18:
197
+ goto st_case_18;
198
+ case 27:
199
+ goto st_case_27;
200
+ case 19:
201
+ goto st_case_19;
202
+ case 20:
203
+ goto st_case_20;
204
+ case 21:
205
+ goto st_case_21;
206
+ case 22:
207
+ goto st_case_22;
208
+ case 23:
209
+ goto st_case_23;
210
+ case 24:
211
+ goto st_case_24;
212
+ case 25:
213
+ goto st_case_25;
214
+ case 26:
215
+ goto st_case_26;
216
+ }
217
+ goto st_out;
218
+ st_case_1:
219
+ if ( ( (*( p))) == 123 ) {
220
+ goto st2;
221
+ }
222
+ {
223
+ goto st0;
224
+ }
225
+ st_case_0:
226
+ st0:
227
+ cs = 0;
228
+ goto _out;
229
+ st2:
230
+ p+= 1;
231
+ if ( p == pe )
152
232
  goto _test_eof2;
153
- case 2:
154
- switch( (*p) ) {
155
- case 13: goto st2;
156
- case 32: goto st2;
157
- case 34: goto tr2;
158
- case 47: goto st23;
159
- case 125: goto tr4;
160
- }
161
- if ( 9 <= (*p) && (*p) <= 10 )
162
- goto st2;
163
- goto st0;
164
- tr2:
165
- #line 148 "parser.rl"
166
- {
167
- char *np;
168
- json->parsing_name = 1;
169
- np = JSON_parse_string(json, p, pe, &last_name);
170
- json->parsing_name = 0;
171
- if (np == NULL) { p--; {p++; cs = 3; goto _out;} } else {p = (( np))-1;}
172
- }
173
- goto st3;
174
- st3:
175
- if ( ++p == pe )
176
- goto _test_eof3;
177
- case 3:
178
- #line 179 "parser.c"
179
- switch( (*p) ) {
180
- case 13: goto st3;
181
- case 32: goto st3;
182
- case 47: goto st4;
183
- case 58: goto st8;
184
- }
185
- if ( 9 <= (*p) && (*p) <= 10 )
233
+ st_case_2:
234
+ switch( ( (*( p))) ) {
235
+ case 13: {
236
+ goto st2;
237
+ }
238
+ case 32: {
239
+ goto st2;
240
+ }
241
+ case 34: {
242
+ goto ctr2;
243
+ }
244
+ case 47: {
245
+ goto st23;
246
+ }
247
+ case 125: {
248
+ goto ctr4;
249
+ }
250
+ }
251
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
252
+ goto st2;
253
+ }
254
+ {
255
+ goto st0;
256
+ }
257
+ ctr2:
258
+ {
259
+ #line 149 "parser.rl"
260
+
261
+ char *np;
262
+ json->parsing_name = 1;
263
+ np = JSON_parse_string(json, p, pe, &last_name);
264
+ json->parsing_name = 0;
265
+ if (np == NULL) { {p = p - 1; } {p+= 1; cs = 3; goto _out;} } else {p = (( np))-1;}
266
+
267
+ }
268
+
186
269
  goto st3;
187
- goto st0;
188
- st4:
189
- if ( ++p == pe )
270
+ st3:
271
+ p+= 1;
272
+ if ( p == pe )
273
+ goto _test_eof3;
274
+ st_case_3:
275
+ switch( ( (*( p))) ) {
276
+ case 13: {
277
+ goto st3;
278
+ }
279
+ case 32: {
280
+ goto st3;
281
+ }
282
+ case 47: {
283
+ goto st4;
284
+ }
285
+ case 58: {
286
+ goto st8;
287
+ }
288
+ }
289
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
290
+ goto st3;
291
+ }
292
+ {
293
+ goto st0;
294
+ }
295
+ st4:
296
+ p+= 1;
297
+ if ( p == pe )
190
298
  goto _test_eof4;
191
- case 4:
192
- switch( (*p) ) {
193
- case 42: goto st5;
194
- case 47: goto st7;
195
- }
196
- goto st0;
197
- st5:
198
- if ( ++p == pe )
299
+ st_case_4:
300
+ switch( ( (*( p))) ) {
301
+ case 42: {
302
+ goto st5;
303
+ }
304
+ case 47: {
305
+ goto st7;
306
+ }
307
+ }
308
+ {
309
+ goto st0;
310
+ }
311
+ st5:
312
+ p+= 1;
313
+ if ( p == pe )
199
314
  goto _test_eof5;
200
- case 5:
201
- if ( (*p) == 42 )
202
- goto st6;
203
- goto st5;
204
- st6:
205
- if ( ++p == pe )
315
+ st_case_5:
316
+ if ( ( (*( p))) == 42 ) {
317
+ goto st6;
318
+ }
319
+ {
320
+ goto st5;
321
+ }
322
+ st6:
323
+ p+= 1;
324
+ if ( p == pe )
206
325
  goto _test_eof6;
207
- case 6:
208
- switch( (*p) ) {
209
- case 42: goto st6;
210
- case 47: goto st3;
211
- }
212
- goto st5;
213
- st7:
214
- if ( ++p == pe )
326
+ st_case_6:
327
+ switch( ( (*( p))) ) {
328
+ case 42: {
329
+ goto st6;
330
+ }
331
+ case 47: {
332
+ goto st3;
333
+ }
334
+ }
335
+ {
336
+ goto st5;
337
+ }
338
+ st7:
339
+ p+= 1;
340
+ if ( p == pe )
215
341
  goto _test_eof7;
216
- case 7:
217
- if ( (*p) == 10 )
218
- goto st3;
219
- goto st7;
220
- st8:
221
- if ( ++p == pe )
342
+ st_case_7:
343
+ if ( ( (*( p))) == 10 ) {
344
+ goto st3;
345
+ }
346
+ {
347
+ goto st7;
348
+ }
349
+ st8:
350
+ p+= 1;
351
+ if ( p == pe )
222
352
  goto _test_eof8;
223
- case 8:
224
- switch( (*p) ) {
225
- case 13: goto st8;
226
- case 32: goto st8;
227
- case 34: goto tr11;
228
- case 45: goto tr11;
229
- case 47: goto st19;
230
- case 73: goto tr11;
231
- case 78: goto tr11;
232
- case 91: goto tr11;
233
- case 102: goto tr11;
234
- case 110: goto tr11;
235
- case 116: goto tr11;
236
- case 123: goto tr11;
237
- }
238
- if ( (*p) > 10 ) {
239
- if ( 48 <= (*p) && (*p) <= 57 )
240
- goto tr11;
241
- } else if ( (*p) >= 9 )
242
- goto st8;
243
- goto st0;
244
- tr11:
245
- #line 133 "parser.rl"
246
- {
247
- VALUE v = Qnil;
248
- char *np = JSON_parse_value(json, p, pe, &v, current_nesting);
249
- if (np == NULL) {
250
- p--; {p++; cs = 9; goto _out;}
251
- } else {
252
- if (NIL_P(json->object_class)) {
253
- rb_hash_aset(*result, last_name, v);
254
- } else {
255
- rb_funcall(*result, i_aset, 2, last_name, v);
256
- }
257
- {p = (( np))-1;}
258
- }
259
- }
260
- goto st9;
261
- st9:
262
- if ( ++p == pe )
263
- goto _test_eof9;
264
- case 9:
265
- #line 266 "parser.c"
266
- switch( (*p) ) {
267
- case 13: goto st9;
268
- case 32: goto st9;
269
- case 44: goto st10;
270
- case 47: goto st15;
271
- case 125: goto tr4;
272
- }
273
- if ( 9 <= (*p) && (*p) <= 10 )
353
+ st_case_8:
354
+ switch( ( (*( p))) ) {
355
+ case 13: {
356
+ goto st8;
357
+ }
358
+ case 32: {
359
+ goto st8;
360
+ }
361
+ case 34: {
362
+ goto ctr11;
363
+ }
364
+ case 45: {
365
+ goto ctr11;
366
+ }
367
+ case 47: {
368
+ goto st19;
369
+ }
370
+ case 73: {
371
+ goto ctr11;
372
+ }
373
+ case 78: {
374
+ goto ctr11;
375
+ }
376
+ case 91: {
377
+ goto ctr11;
378
+ }
379
+ case 102: {
380
+ goto ctr11;
381
+ }
382
+ case 110: {
383
+ goto ctr11;
384
+ }
385
+ case 116: {
386
+ goto ctr11;
387
+ }
388
+ case 123: {
389
+ goto ctr11;
390
+ }
391
+ }
392
+ if ( ( (*( p))) > 10 ) {
393
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
394
+ goto ctr11;
395
+ }
396
+ } else if ( ( (*( p))) >= 9 ) {
397
+ goto st8;
398
+ }
399
+ {
400
+ goto st0;
401
+ }
402
+ ctr11:
403
+ {
404
+ #line 133 "parser.rl"
405
+
406
+ VALUE v = Qnil;
407
+ char *np = JSON_parse_value(json, p, pe, &v, current_nesting);
408
+ if (np == NULL) {
409
+ {p = p - 1; } {p+= 1; cs = 9; goto _out;}
410
+ } else {
411
+ if (NIL_P(json->object_class)) {
412
+ OBJ_FREEZE(last_name);
413
+ rb_hash_aset(*result, last_name, v);
414
+ } else {
415
+ rb_funcall(*result, i_aset, 2, last_name, v);
416
+ }
417
+ {p = (( np))-1;}
418
+
419
+ }
420
+ }
421
+
274
422
  goto st9;
275
- goto st0;
276
- st10:
277
- if ( ++p == pe )
423
+ st9:
424
+ p+= 1;
425
+ if ( p == pe )
426
+ goto _test_eof9;
427
+ st_case_9:
428
+ switch( ( (*( p))) ) {
429
+ case 13: {
430
+ goto st9;
431
+ }
432
+ case 32: {
433
+ goto st9;
434
+ }
435
+ case 44: {
436
+ goto st10;
437
+ }
438
+ case 47: {
439
+ goto st15;
440
+ }
441
+ case 125: {
442
+ goto ctr4;
443
+ }
444
+ }
445
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
446
+ goto st9;
447
+ }
448
+ {
449
+ goto st0;
450
+ }
451
+ st10:
452
+ p+= 1;
453
+ if ( p == pe )
278
454
  goto _test_eof10;
279
- case 10:
280
- switch( (*p) ) {
281
- case 13: goto st10;
282
- case 32: goto st10;
283
- case 34: goto tr2;
284
- case 47: goto st11;
285
- }
286
- if ( 9 <= (*p) && (*p) <= 10 )
287
- goto st10;
288
- goto st0;
289
- st11:
290
- if ( ++p == pe )
455
+ st_case_10:
456
+ switch( ( (*( p))) ) {
457
+ case 13: {
458
+ goto st10;
459
+ }
460
+ case 32: {
461
+ goto st10;
462
+ }
463
+ case 34: {
464
+ goto ctr2;
465
+ }
466
+ case 47: {
467
+ goto st11;
468
+ }
469
+ }
470
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
471
+ goto st10;
472
+ }
473
+ {
474
+ goto st0;
475
+ }
476
+ st11:
477
+ p+= 1;
478
+ if ( p == pe )
291
479
  goto _test_eof11;
292
- case 11:
293
- switch( (*p) ) {
294
- case 42: goto st12;
295
- case 47: goto st14;
296
- }
297
- goto st0;
298
- st12:
299
- if ( ++p == pe )
480
+ st_case_11:
481
+ switch( ( (*( p))) ) {
482
+ case 42: {
483
+ goto st12;
484
+ }
485
+ case 47: {
486
+ goto st14;
487
+ }
488
+ }
489
+ {
490
+ goto st0;
491
+ }
492
+ st12:
493
+ p+= 1;
494
+ if ( p == pe )
300
495
  goto _test_eof12;
301
- case 12:
302
- if ( (*p) == 42 )
303
- goto st13;
304
- goto st12;
305
- st13:
306
- if ( ++p == pe )
496
+ st_case_12:
497
+ if ( ( (*( p))) == 42 ) {
498
+ goto st13;
499
+ }
500
+ {
501
+ goto st12;
502
+ }
503
+ st13:
504
+ p+= 1;
505
+ if ( p == pe )
307
506
  goto _test_eof13;
308
- case 13:
309
- switch( (*p) ) {
310
- case 42: goto st13;
311
- case 47: goto st10;
312
- }
313
- goto st12;
314
- st14:
315
- if ( ++p == pe )
507
+ st_case_13:
508
+ switch( ( (*( p))) ) {
509
+ case 42: {
510
+ goto st13;
511
+ }
512
+ case 47: {
513
+ goto st10;
514
+ }
515
+ }
516
+ {
517
+ goto st12;
518
+ }
519
+ st14:
520
+ p+= 1;
521
+ if ( p == pe )
316
522
  goto _test_eof14;
317
- case 14:
318
- if ( (*p) == 10 )
319
- goto st10;
320
- goto st14;
321
- st15:
322
- if ( ++p == pe )
523
+ st_case_14:
524
+ if ( ( (*( p))) == 10 ) {
525
+ goto st10;
526
+ }
527
+ {
528
+ goto st14;
529
+ }
530
+ st15:
531
+ p+= 1;
532
+ if ( p == pe )
323
533
  goto _test_eof15;
324
- case 15:
325
- switch( (*p) ) {
326
- case 42: goto st16;
327
- case 47: goto st18;
328
- }
329
- goto st0;
330
- st16:
331
- if ( ++p == pe )
534
+ st_case_15:
535
+ switch( ( (*( p))) ) {
536
+ case 42: {
537
+ goto st16;
538
+ }
539
+ case 47: {
540
+ goto st18;
541
+ }
542
+ }
543
+ {
544
+ goto st0;
545
+ }
546
+ st16:
547
+ p+= 1;
548
+ if ( p == pe )
332
549
  goto _test_eof16;
333
- case 16:
334
- if ( (*p) == 42 )
335
- goto st17;
336
- goto st16;
337
- st17:
338
- if ( ++p == pe )
550
+ st_case_16:
551
+ if ( ( (*( p))) == 42 ) {
552
+ goto st17;
553
+ }
554
+ {
555
+ goto st16;
556
+ }
557
+ st17:
558
+ p+= 1;
559
+ if ( p == pe )
339
560
  goto _test_eof17;
340
- case 17:
341
- switch( (*p) ) {
342
- case 42: goto st17;
343
- case 47: goto st9;
344
- }
345
- goto st16;
346
- st18:
347
- if ( ++p == pe )
561
+ st_case_17:
562
+ switch( ( (*( p))) ) {
563
+ case 42: {
564
+ goto st17;
565
+ }
566
+ case 47: {
567
+ goto st9;
568
+ }
569
+ }
570
+ {
571
+ goto st16;
572
+ }
573
+ st18:
574
+ p+= 1;
575
+ if ( p == pe )
348
576
  goto _test_eof18;
349
- case 18:
350
- if ( (*p) == 10 )
351
- goto st9;
352
- goto st18;
353
- tr4:
354
- #line 156 "parser.rl"
355
- { p--; {p++; cs = 27; goto _out;} }
356
- goto st27;
357
- st27:
358
- if ( ++p == pe )
577
+ st_case_18:
578
+ if ( ( (*( p))) == 10 ) {
579
+ goto st9;
580
+ }
581
+ {
582
+ goto st18;
583
+ }
584
+ ctr4:
585
+ {
586
+ #line 157 "parser.rl"
587
+ {p = p - 1; } {p+= 1; cs = 27; goto _out;} }
588
+
589
+ goto st27;
590
+ st27:
591
+ p+= 1;
592
+ if ( p == pe )
359
593
  goto _test_eof27;
360
- case 27:
361
- #line 362 "parser.c"
362
- goto st0;
363
- st19:
364
- if ( ++p == pe )
594
+ st_case_27:
595
+ {
596
+ goto st0;
597
+ }
598
+ st19:
599
+ p+= 1;
600
+ if ( p == pe )
365
601
  goto _test_eof19;
366
- case 19:
367
- switch( (*p) ) {
368
- case 42: goto st20;
369
- case 47: goto st22;
370
- }
371
- goto st0;
372
- st20:
373
- if ( ++p == pe )
602
+ st_case_19:
603
+ switch( ( (*( p))) ) {
604
+ case 42: {
605
+ goto st20;
606
+ }
607
+ case 47: {
608
+ goto st22;
609
+ }
610
+ }
611
+ {
612
+ goto st0;
613
+ }
614
+ st20:
615
+ p+= 1;
616
+ if ( p == pe )
374
617
  goto _test_eof20;
375
- case 20:
376
- if ( (*p) == 42 )
377
- goto st21;
378
- goto st20;
379
- st21:
380
- if ( ++p == pe )
618
+ st_case_20:
619
+ if ( ( (*( p))) == 42 ) {
620
+ goto st21;
621
+ }
622
+ {
623
+ goto st20;
624
+ }
625
+ st21:
626
+ p+= 1;
627
+ if ( p == pe )
381
628
  goto _test_eof21;
382
- case 21:
383
- switch( (*p) ) {
384
- case 42: goto st21;
385
- case 47: goto st8;
386
- }
387
- goto st20;
388
- st22:
389
- if ( ++p == pe )
629
+ st_case_21:
630
+ switch( ( (*( p))) ) {
631
+ case 42: {
632
+ goto st21;
633
+ }
634
+ case 47: {
635
+ goto st8;
636
+ }
637
+ }
638
+ {
639
+ goto st20;
640
+ }
641
+ st22:
642
+ p+= 1;
643
+ if ( p == pe )
390
644
  goto _test_eof22;
391
- case 22:
392
- if ( (*p) == 10 )
393
- goto st8;
394
- goto st22;
395
- st23:
396
- if ( ++p == pe )
645
+ st_case_22:
646
+ if ( ( (*( p))) == 10 ) {
647
+ goto st8;
648
+ }
649
+ {
650
+ goto st22;
651
+ }
652
+ st23:
653
+ p+= 1;
654
+ if ( p == pe )
397
655
  goto _test_eof23;
398
- case 23:
399
- switch( (*p) ) {
400
- case 42: goto st24;
401
- case 47: goto st26;
402
- }
403
- goto st0;
404
- st24:
405
- if ( ++p == pe )
656
+ st_case_23:
657
+ switch( ( (*( p))) ) {
658
+ case 42: {
659
+ goto st24;
660
+ }
661
+ case 47: {
662
+ goto st26;
663
+ }
664
+ }
665
+ {
666
+ goto st0;
667
+ }
668
+ st24:
669
+ p+= 1;
670
+ if ( p == pe )
406
671
  goto _test_eof24;
407
- case 24:
408
- if ( (*p) == 42 )
409
- goto st25;
410
- goto st24;
411
- st25:
412
- if ( ++p == pe )
672
+ st_case_24:
673
+ if ( ( (*( p))) == 42 ) {
674
+ goto st25;
675
+ }
676
+ {
677
+ goto st24;
678
+ }
679
+ st25:
680
+ p+= 1;
681
+ if ( p == pe )
413
682
  goto _test_eof25;
414
- case 25:
415
- switch( (*p) ) {
416
- case 42: goto st25;
417
- case 47: goto st2;
418
- }
419
- goto st24;
420
- st26:
421
- if ( ++p == pe )
683
+ st_case_25:
684
+ switch( ( (*( p))) ) {
685
+ case 42: {
686
+ goto st25;
687
+ }
688
+ case 47: {
689
+ goto st2;
690
+ }
691
+ }
692
+ {
693
+ goto st24;
694
+ }
695
+ st26:
696
+ p+= 1;
697
+ if ( p == pe )
422
698
  goto _test_eof26;
423
- case 26:
424
- if ( (*p) == 10 )
425
- goto st2;
426
- goto st26;
427
- }
428
- _test_eof2: cs = 2; goto _test_eof;
429
- _test_eof3: cs = 3; goto _test_eof;
430
- _test_eof4: cs = 4; goto _test_eof;
431
- _test_eof5: cs = 5; goto _test_eof;
432
- _test_eof6: cs = 6; goto _test_eof;
433
- _test_eof7: cs = 7; goto _test_eof;
434
- _test_eof8: cs = 8; goto _test_eof;
435
- _test_eof9: cs = 9; goto _test_eof;
436
- _test_eof10: cs = 10; goto _test_eof;
437
- _test_eof11: cs = 11; goto _test_eof;
438
- _test_eof12: cs = 12; goto _test_eof;
439
- _test_eof13: cs = 13; goto _test_eof;
440
- _test_eof14: cs = 14; goto _test_eof;
441
- _test_eof15: cs = 15; goto _test_eof;
442
- _test_eof16: cs = 16; goto _test_eof;
443
- _test_eof17: cs = 17; goto _test_eof;
444
- _test_eof18: cs = 18; goto _test_eof;
445
- _test_eof27: cs = 27; goto _test_eof;
446
- _test_eof19: cs = 19; goto _test_eof;
447
- _test_eof20: cs = 20; goto _test_eof;
448
- _test_eof21: cs = 21; goto _test_eof;
449
- _test_eof22: cs = 22; goto _test_eof;
450
- _test_eof23: cs = 23; goto _test_eof;
451
- _test_eof24: cs = 24; goto _test_eof;
452
- _test_eof25: cs = 25; goto _test_eof;
453
- _test_eof26: cs = 26; goto _test_eof;
454
-
455
- _test_eof: {}
456
- _out: {}
699
+ st_case_26:
700
+ if ( ( (*( p))) == 10 ) {
701
+ goto st2;
702
+ }
703
+ {
704
+ goto st26;
705
+ }
706
+ st_out:
707
+ _test_eof2: cs = 2; goto _test_eof;
708
+ _test_eof3: cs = 3; goto _test_eof;
709
+ _test_eof4: cs = 4; goto _test_eof;
710
+ _test_eof5: cs = 5; goto _test_eof;
711
+ _test_eof6: cs = 6; goto _test_eof;
712
+ _test_eof7: cs = 7; goto _test_eof;
713
+ _test_eof8: cs = 8; goto _test_eof;
714
+ _test_eof9: cs = 9; goto _test_eof;
715
+ _test_eof10: cs = 10; goto _test_eof;
716
+ _test_eof11: cs = 11; goto _test_eof;
717
+ _test_eof12: cs = 12; goto _test_eof;
718
+ _test_eof13: cs = 13; goto _test_eof;
719
+ _test_eof14: cs = 14; goto _test_eof;
720
+ _test_eof15: cs = 15; goto _test_eof;
721
+ _test_eof16: cs = 16; goto _test_eof;
722
+ _test_eof17: cs = 17; goto _test_eof;
723
+ _test_eof18: cs = 18; goto _test_eof;
724
+ _test_eof27: cs = 27; goto _test_eof;
725
+ _test_eof19: cs = 19; goto _test_eof;
726
+ _test_eof20: cs = 20; goto _test_eof;
727
+ _test_eof21: cs = 21; goto _test_eof;
728
+ _test_eof22: cs = 22; goto _test_eof;
729
+ _test_eof23: cs = 23; goto _test_eof;
730
+ _test_eof24: cs = 24; goto _test_eof;
731
+ _test_eof25: cs = 25; goto _test_eof;
732
+ _test_eof26: cs = 26; goto _test_eof;
733
+
734
+ _test_eof: {}
735
+ _out: {}
736
+ }
737
+
738
+ #line 183 "parser.rl"
739
+
740
+
741
+ if (cs >= JSON_object_first_final) {
742
+ if (json->create_additions) {
743
+ VALUE klassname;
744
+ if (NIL_P(json->object_class)) {
745
+ klassname = rb_hash_aref(*result, json->create_id);
746
+ } else {
747
+ klassname = rb_funcall(*result, i_aref, 1, json->create_id);
748
+ }
749
+ if (!NIL_P(klassname)) {
750
+ VALUE klass = rb_funcall(mJSON, i_deep_const_get, 1, klassname);
751
+ if (RTEST(rb_funcall(klass, i_json_creatable_p, 0))) {
752
+ *result = rb_funcall(klass, i_json_create, 1, *result);
753
+ }
754
+ }
755
+ }
756
+ return p + 1;
757
+ } else {
758
+ return NULL;
457
759
  }
458
-
459
- #line 182 "parser.rl"
460
-
461
- if (cs >= JSON_object_first_final) {
462
- if (json->create_additions) {
463
- VALUE klassname;
464
- if (NIL_P(json->object_class)) {
465
- klassname = rb_hash_aref(*result, json->create_id);
466
- } else {
467
- klassname = rb_funcall(*result, i_aref, 1, json->create_id);
468
- }
469
- if (!NIL_P(klassname)) {
470
- VALUE klass = rb_funcall(mJSON, i_deep_const_get, 1, klassname);
471
- if (RTEST(rb_funcall(klass, i_json_creatable_p, 0))) {
472
- *result = rb_funcall(klass, i_json_create, 1, *result);
473
- }
474
- }
475
- }
476
- return p + 1;
477
- } else {
478
- return NULL;
479
- }
480
760
  }
481
761
 
482
762
 
483
763
 
484
- #line 485 "parser.c"
485
764
  enum {JSON_value_start = 1};
486
765
  enum {JSON_value_first_final = 29};
487
766
  enum {JSON_value_error = 0};
488
767
 
489
768
  enum {JSON_value_en_main = 1};
490
769
 
770
+ static const char MAYBE_UNUSED(_JSON_value_nfa_targs)[] = {
771
+ 0, 0
772
+ };
491
773
 
492
- #line 282 "parser.rl"
774
+ static const char MAYBE_UNUSED(_JSON_value_nfa_offsets)[] = {
775
+ 0, 0, 0, 0, 0, 0, 0, 0,
776
+ 0, 0, 0, 0, 0, 0, 0, 0,
777
+ 0, 0, 0, 0, 0, 0, 0, 0,
778
+ 0, 0, 0, 0, 0, 0, 0
779
+ };
780
+
781
+ static const char MAYBE_UNUSED(_JSON_value_nfa_push_actions)[] = {
782
+ 0, 0
783
+ };
784
+
785
+ static const char MAYBE_UNUSED(_JSON_value_nfa_pop_trans)[] = {
786
+ 0, 0
787
+ };
788
+
789
+
790
+ #line 283 "parser.rl"
493
791
 
494
792
 
495
793
  static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
496
794
  {
497
- int cs = EVIL;
795
+ int cs = EVIL;
498
796
 
499
797
 
500
- #line 501 "parser.c"
501
798
  {
502
- cs = JSON_value_start;
799
+ cs = (int)JSON_value_start;
503
800
  }
504
801
 
505
- #line 289 "parser.rl"
802
+ #line 290 "parser.rl"
803
+
506
804
 
507
- #line 508 "parser.c"
508
805
  {
509
- if ( p == pe )
806
+ if ( p == pe )
510
807
  goto _test_eof;
511
- switch ( cs )
512
- {
513
- st1:
514
- if ( ++p == pe )
808
+ switch ( cs )
809
+ {
810
+ case 1:
811
+ goto st_case_1;
812
+ case 0:
813
+ goto st_case_0;
814
+ case 29:
815
+ goto st_case_29;
816
+ case 2:
817
+ goto st_case_2;
818
+ case 3:
819
+ goto st_case_3;
820
+ case 4:
821
+ goto st_case_4;
822
+ case 5:
823
+ goto st_case_5;
824
+ case 6:
825
+ goto st_case_6;
826
+ case 7:
827
+ goto st_case_7;
828
+ case 8:
829
+ goto st_case_8;
830
+ case 9:
831
+ goto st_case_9;
832
+ case 10:
833
+ goto st_case_10;
834
+ case 11:
835
+ goto st_case_11;
836
+ case 12:
837
+ goto st_case_12;
838
+ case 13:
839
+ goto st_case_13;
840
+ case 14:
841
+ goto st_case_14;
842
+ case 15:
843
+ goto st_case_15;
844
+ case 16:
845
+ goto st_case_16;
846
+ case 17:
847
+ goto st_case_17;
848
+ case 18:
849
+ goto st_case_18;
850
+ case 19:
851
+ goto st_case_19;
852
+ case 20:
853
+ goto st_case_20;
854
+ case 21:
855
+ goto st_case_21;
856
+ case 22:
857
+ goto st_case_22;
858
+ case 23:
859
+ goto st_case_23;
860
+ case 24:
861
+ goto st_case_24;
862
+ case 25:
863
+ goto st_case_25;
864
+ case 26:
865
+ goto st_case_26;
866
+ case 27:
867
+ goto st_case_27;
868
+ case 28:
869
+ goto st_case_28;
870
+ }
871
+ goto st_out;
872
+ st1:
873
+ p+= 1;
874
+ if ( p == pe )
515
875
  goto _test_eof1;
516
- case 1:
517
- switch( (*p) ) {
518
- case 13: goto st1;
519
- case 32: goto st1;
520
- case 34: goto tr2;
521
- case 45: goto tr3;
522
- case 47: goto st6;
523
- case 73: goto st10;
524
- case 78: goto st17;
525
- case 91: goto tr7;
526
- case 102: goto st19;
527
- case 110: goto st23;
528
- case 116: goto st26;
529
- case 123: goto tr11;
530
- }
531
- if ( (*p) > 10 ) {
532
- if ( 48 <= (*p) && (*p) <= 57 )
533
- goto tr3;
534
- } else if ( (*p) >= 9 )
535
- goto st1;
536
- goto st0;
537
- st0:
538
- cs = 0;
539
- goto _out;
540
- tr2:
541
- #line 234 "parser.rl"
542
- {
543
- char *np = JSON_parse_string(json, p, pe, result);
544
- if (np == NULL) { p--; {p++; cs = 29; goto _out;} } else {p = (( np))-1;}
545
- }
546
- goto st29;
547
- tr3:
548
- #line 239 "parser.rl"
549
- {
550
- char *np;
551
- if(pe > p + 8 && !strncmp(MinusInfinity, p, 9)) {
552
- if (json->allow_nan) {
553
- *result = CMinusInfinity;
554
- {p = (( p + 10))-1;}
555
- p--; {p++; cs = 29; goto _out;}
556
- } else {
557
- rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
558
- }
559
- }
560
- np = JSON_parse_float(json, p, pe, result);
561
- if (np != NULL) {p = (( np))-1;}
562
- np = JSON_parse_integer(json, p, pe, result);
563
- if (np != NULL) {p = (( np))-1;}
564
- p--; {p++; cs = 29; goto _out;}
565
- }
566
- goto st29;
567
- tr7:
568
- #line 257 "parser.rl"
569
- {
570
- char *np;
571
- np = JSON_parse_array(json, p, pe, result, current_nesting + 1);
572
- if (np == NULL) { p--; {p++; cs = 29; goto _out;} } else {p = (( np))-1;}
573
- }
574
- goto st29;
575
- tr11:
576
- #line 263 "parser.rl"
577
- {
578
- char *np;
579
- np = JSON_parse_object(json, p, pe, result, current_nesting + 1);
580
- if (np == NULL) { p--; {p++; cs = 29; goto _out;} } else {p = (( np))-1;}
581
- }
582
- goto st29;
583
- tr25:
584
- #line 227 "parser.rl"
585
- {
586
- if (json->allow_nan) {
587
- *result = CInfinity;
588
- } else {
589
- rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 8);
590
- }
591
- }
592
- goto st29;
593
- tr27:
594
- #line 220 "parser.rl"
595
- {
596
- if (json->allow_nan) {
597
- *result = CNaN;
598
- } else {
599
- rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 2);
600
- }
601
- }
602
- goto st29;
603
- tr31:
604
- #line 214 "parser.rl"
605
- {
606
- *result = Qfalse;
607
- }
608
- goto st29;
609
- tr34:
610
- #line 211 "parser.rl"
611
- {
612
- *result = Qnil;
613
- }
614
- goto st29;
615
- tr37:
616
- #line 217 "parser.rl"
617
- {
618
- *result = Qtrue;
619
- }
620
- goto st29;
621
- st29:
622
- if ( ++p == pe )
623
- goto _test_eof29;
624
- case 29:
625
- #line 269 "parser.rl"
626
- { p--; {p++; cs = 29; goto _out;} }
627
- #line 628 "parser.c"
628
- switch( (*p) ) {
629
- case 13: goto st29;
630
- case 32: goto st29;
631
- case 47: goto st2;
632
- }
633
- if ( 9 <= (*p) && (*p) <= 10 )
876
+ st_case_1:
877
+ switch( ( (*( p))) ) {
878
+ case 13: {
879
+ goto st1;
880
+ }
881
+ case 32: {
882
+ goto st1;
883
+ }
884
+ case 34: {
885
+ goto ctr2;
886
+ }
887
+ case 45: {
888
+ goto ctr3;
889
+ }
890
+ case 47: {
891
+ goto st6;
892
+ }
893
+ case 73: {
894
+ goto st10;
895
+ }
896
+ case 78: {
897
+ goto st17;
898
+ }
899
+ case 91: {
900
+ goto ctr7;
901
+ }
902
+ case 102: {
903
+ goto st19;
904
+ }
905
+ case 110: {
906
+ goto st23;
907
+ }
908
+ case 116: {
909
+ goto st26;
910
+ }
911
+ case 123: {
912
+ goto ctr11;
913
+ }
914
+ }
915
+ if ( ( (*( p))) > 10 ) {
916
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
917
+ goto ctr3;
918
+ }
919
+ } else if ( ( (*( p))) >= 9 ) {
920
+ goto st1;
921
+ }
922
+ {
923
+ goto st0;
924
+ }
925
+ st_case_0:
926
+ st0:
927
+ cs = 0;
928
+ goto _out;
929
+ ctr2:
930
+ {
931
+ #line 235 "parser.rl"
932
+
933
+ char *np = JSON_parse_string(json, p, pe, result);
934
+ if (np == NULL) { {p = p - 1; } {p+= 1; cs = 29; goto _out;} } else {p = (( np))-1;}
935
+
936
+ }
937
+
938
+ goto st29;
939
+ ctr3:
940
+ {
941
+ #line 240 "parser.rl"
942
+
943
+ char *np;
944
+ if(pe > p + 8 && !strncmp(MinusInfinity, p, 9)) {
945
+ if (json->allow_nan) {
946
+ *result = CMinusInfinity;
947
+ {p = (( p + 10))-1;}
948
+
949
+ {p = p - 1; } {p+= 1; cs = 29; goto _out;}
950
+ } else {
951
+ rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
952
+ }
953
+ }
954
+ np = JSON_parse_float(json, p, pe, result);
955
+ if (np != NULL) {p = (( np))-1;}
956
+
957
+ np = JSON_parse_integer(json, p, pe, result);
958
+ if (np != NULL) {p = (( np))-1;}
959
+
960
+ {p = p - 1; } {p+= 1; cs = 29; goto _out;}
961
+ }
962
+
963
+ goto st29;
964
+ ctr7:
965
+ {
966
+ #line 258 "parser.rl"
967
+
968
+ char *np;
969
+ np = JSON_parse_array(json, p, pe, result, current_nesting + 1);
970
+ if (np == NULL) { {p = p - 1; } {p+= 1; cs = 29; goto _out;} } else {p = (( np))-1;}
971
+
972
+ }
973
+
974
+ goto st29;
975
+ ctr11:
976
+ {
977
+ #line 264 "parser.rl"
978
+
979
+ char *np;
980
+ np = JSON_parse_object(json, p, pe, result, current_nesting + 1);
981
+ if (np == NULL) { {p = p - 1; } {p+= 1; cs = 29; goto _out;} } else {p = (( np))-1;}
982
+
983
+ }
984
+
985
+ goto st29;
986
+ ctr25:
987
+ {
988
+ #line 228 "parser.rl"
989
+
990
+ if (json->allow_nan) {
991
+ *result = CInfinity;
992
+ } else {
993
+ rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 8);
994
+ }
995
+ }
996
+
997
+ goto st29;
998
+ ctr27:
999
+ {
1000
+ #line 221 "parser.rl"
1001
+
1002
+ if (json->allow_nan) {
1003
+ *result = CNaN;
1004
+ } else {
1005
+ rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p - 2);
1006
+ }
1007
+ }
1008
+
1009
+ goto st29;
1010
+ ctr31:
1011
+ {
1012
+ #line 215 "parser.rl"
1013
+
1014
+ *result = Qfalse;
1015
+ }
1016
+
1017
+ goto st29;
1018
+ ctr34:
1019
+ {
1020
+ #line 212 "parser.rl"
1021
+
1022
+ *result = Qnil;
1023
+ }
1024
+
1025
+ goto st29;
1026
+ ctr37:
1027
+ {
1028
+ #line 218 "parser.rl"
1029
+
1030
+ *result = Qtrue;
1031
+ }
1032
+
634
1033
  goto st29;
635
- goto st0;
636
- st2:
637
- if ( ++p == pe )
1034
+ st29:
1035
+ p+= 1;
1036
+ if ( p == pe )
1037
+ goto _test_eof29;
1038
+ st_case_29:
1039
+ {
1040
+ #line 270 "parser.rl"
1041
+ {p = p - 1; } {p+= 1; cs = 29; goto _out;} }
1042
+ switch( ( (*( p))) ) {
1043
+ case 13: {
1044
+ goto st29;
1045
+ }
1046
+ case 32: {
1047
+ goto st29;
1048
+ }
1049
+ case 47: {
1050
+ goto st2;
1051
+ }
1052
+ }
1053
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
1054
+ goto st29;
1055
+ }
1056
+ {
1057
+ goto st0;
1058
+ }
1059
+ st2:
1060
+ p+= 1;
1061
+ if ( p == pe )
638
1062
  goto _test_eof2;
639
- case 2:
640
- switch( (*p) ) {
641
- case 42: goto st3;
642
- case 47: goto st5;
643
- }
644
- goto st0;
645
- st3:
646
- if ( ++p == pe )
1063
+ st_case_2:
1064
+ switch( ( (*( p))) ) {
1065
+ case 42: {
1066
+ goto st3;
1067
+ }
1068
+ case 47: {
1069
+ goto st5;
1070
+ }
1071
+ }
1072
+ {
1073
+ goto st0;
1074
+ }
1075
+ st3:
1076
+ p+= 1;
1077
+ if ( p == pe )
647
1078
  goto _test_eof3;
648
- case 3:
649
- if ( (*p) == 42 )
650
- goto st4;
651
- goto st3;
652
- st4:
653
- if ( ++p == pe )
1079
+ st_case_3:
1080
+ if ( ( (*( p))) == 42 ) {
1081
+ goto st4;
1082
+ }
1083
+ {
1084
+ goto st3;
1085
+ }
1086
+ st4:
1087
+ p+= 1;
1088
+ if ( p == pe )
654
1089
  goto _test_eof4;
655
- case 4:
656
- switch( (*p) ) {
657
- case 42: goto st4;
658
- case 47: goto st29;
659
- }
660
- goto st3;
661
- st5:
662
- if ( ++p == pe )
1090
+ st_case_4:
1091
+ switch( ( (*( p))) ) {
1092
+ case 42: {
1093
+ goto st4;
1094
+ }
1095
+ case 47: {
1096
+ goto st29;
1097
+ }
1098
+ }
1099
+ {
1100
+ goto st3;
1101
+ }
1102
+ st5:
1103
+ p+= 1;
1104
+ if ( p == pe )
663
1105
  goto _test_eof5;
664
- case 5:
665
- if ( (*p) == 10 )
666
- goto st29;
667
- goto st5;
668
- st6:
669
- if ( ++p == pe )
1106
+ st_case_5:
1107
+ if ( ( (*( p))) == 10 ) {
1108
+ goto st29;
1109
+ }
1110
+ {
1111
+ goto st5;
1112
+ }
1113
+ st6:
1114
+ p+= 1;
1115
+ if ( p == pe )
670
1116
  goto _test_eof6;
671
- case 6:
672
- switch( (*p) ) {
673
- case 42: goto st7;
674
- case 47: goto st9;
675
- }
676
- goto st0;
677
- st7:
678
- if ( ++p == pe )
1117
+ st_case_6:
1118
+ switch( ( (*( p))) ) {
1119
+ case 42: {
1120
+ goto st7;
1121
+ }
1122
+ case 47: {
1123
+ goto st9;
1124
+ }
1125
+ }
1126
+ {
1127
+ goto st0;
1128
+ }
1129
+ st7:
1130
+ p+= 1;
1131
+ if ( p == pe )
679
1132
  goto _test_eof7;
680
- case 7:
681
- if ( (*p) == 42 )
682
- goto st8;
683
- goto st7;
684
- st8:
685
- if ( ++p == pe )
1133
+ st_case_7:
1134
+ if ( ( (*( p))) == 42 ) {
1135
+ goto st8;
1136
+ }
1137
+ {
1138
+ goto st7;
1139
+ }
1140
+ st8:
1141
+ p+= 1;
1142
+ if ( p == pe )
686
1143
  goto _test_eof8;
687
- case 8:
688
- switch( (*p) ) {
689
- case 42: goto st8;
690
- case 47: goto st1;
691
- }
692
- goto st7;
693
- st9:
694
- if ( ++p == pe )
1144
+ st_case_8:
1145
+ switch( ( (*( p))) ) {
1146
+ case 42: {
1147
+ goto st8;
1148
+ }
1149
+ case 47: {
1150
+ goto st1;
1151
+ }
1152
+ }
1153
+ {
1154
+ goto st7;
1155
+ }
1156
+ st9:
1157
+ p+= 1;
1158
+ if ( p == pe )
695
1159
  goto _test_eof9;
696
- case 9:
697
- if ( (*p) == 10 )
698
- goto st1;
699
- goto st9;
700
- st10:
701
- if ( ++p == pe )
1160
+ st_case_9:
1161
+ if ( ( (*( p))) == 10 ) {
1162
+ goto st1;
1163
+ }
1164
+ {
1165
+ goto st9;
1166
+ }
1167
+ st10:
1168
+ p+= 1;
1169
+ if ( p == pe )
702
1170
  goto _test_eof10;
703
- case 10:
704
- if ( (*p) == 110 )
705
- goto st11;
706
- goto st0;
707
- st11:
708
- if ( ++p == pe )
1171
+ st_case_10:
1172
+ if ( ( (*( p))) == 110 ) {
1173
+ goto st11;
1174
+ }
1175
+ {
1176
+ goto st0;
1177
+ }
1178
+ st11:
1179
+ p+= 1;
1180
+ if ( p == pe )
709
1181
  goto _test_eof11;
710
- case 11:
711
- if ( (*p) == 102 )
712
- goto st12;
713
- goto st0;
714
- st12:
715
- if ( ++p == pe )
1182
+ st_case_11:
1183
+ if ( ( (*( p))) == 102 ) {
1184
+ goto st12;
1185
+ }
1186
+ {
1187
+ goto st0;
1188
+ }
1189
+ st12:
1190
+ p+= 1;
1191
+ if ( p == pe )
716
1192
  goto _test_eof12;
717
- case 12:
718
- if ( (*p) == 105 )
719
- goto st13;
720
- goto st0;
721
- st13:
722
- if ( ++p == pe )
1193
+ st_case_12:
1194
+ if ( ( (*( p))) == 105 ) {
1195
+ goto st13;
1196
+ }
1197
+ {
1198
+ goto st0;
1199
+ }
1200
+ st13:
1201
+ p+= 1;
1202
+ if ( p == pe )
723
1203
  goto _test_eof13;
724
- case 13:
725
- if ( (*p) == 110 )
726
- goto st14;
727
- goto st0;
728
- st14:
729
- if ( ++p == pe )
1204
+ st_case_13:
1205
+ if ( ( (*( p))) == 110 ) {
1206
+ goto st14;
1207
+ }
1208
+ {
1209
+ goto st0;
1210
+ }
1211
+ st14:
1212
+ p+= 1;
1213
+ if ( p == pe )
730
1214
  goto _test_eof14;
731
- case 14:
732
- if ( (*p) == 105 )
733
- goto st15;
734
- goto st0;
735
- st15:
736
- if ( ++p == pe )
1215
+ st_case_14:
1216
+ if ( ( (*( p))) == 105 ) {
1217
+ goto st15;
1218
+ }
1219
+ {
1220
+ goto st0;
1221
+ }
1222
+ st15:
1223
+ p+= 1;
1224
+ if ( p == pe )
737
1225
  goto _test_eof15;
738
- case 15:
739
- if ( (*p) == 116 )
740
- goto st16;
741
- goto st0;
742
- st16:
743
- if ( ++p == pe )
1226
+ st_case_15:
1227
+ if ( ( (*( p))) == 116 ) {
1228
+ goto st16;
1229
+ }
1230
+ {
1231
+ goto st0;
1232
+ }
1233
+ st16:
1234
+ p+= 1;
1235
+ if ( p == pe )
744
1236
  goto _test_eof16;
745
- case 16:
746
- if ( (*p) == 121 )
747
- goto tr25;
748
- goto st0;
749
- st17:
750
- if ( ++p == pe )
1237
+ st_case_16:
1238
+ if ( ( (*( p))) == 121 ) {
1239
+ goto ctr25;
1240
+ }
1241
+ {
1242
+ goto st0;
1243
+ }
1244
+ st17:
1245
+ p+= 1;
1246
+ if ( p == pe )
751
1247
  goto _test_eof17;
752
- case 17:
753
- if ( (*p) == 97 )
754
- goto st18;
755
- goto st0;
756
- st18:
757
- if ( ++p == pe )
1248
+ st_case_17:
1249
+ if ( ( (*( p))) == 97 ) {
1250
+ goto st18;
1251
+ }
1252
+ {
1253
+ goto st0;
1254
+ }
1255
+ st18:
1256
+ p+= 1;
1257
+ if ( p == pe )
758
1258
  goto _test_eof18;
759
- case 18:
760
- if ( (*p) == 78 )
761
- goto tr27;
762
- goto st0;
763
- st19:
764
- if ( ++p == pe )
1259
+ st_case_18:
1260
+ if ( ( (*( p))) == 78 ) {
1261
+ goto ctr27;
1262
+ }
1263
+ {
1264
+ goto st0;
1265
+ }
1266
+ st19:
1267
+ p+= 1;
1268
+ if ( p == pe )
765
1269
  goto _test_eof19;
766
- case 19:
767
- if ( (*p) == 97 )
768
- goto st20;
769
- goto st0;
770
- st20:
771
- if ( ++p == pe )
1270
+ st_case_19:
1271
+ if ( ( (*( p))) == 97 ) {
1272
+ goto st20;
1273
+ }
1274
+ {
1275
+ goto st0;
1276
+ }
1277
+ st20:
1278
+ p+= 1;
1279
+ if ( p == pe )
772
1280
  goto _test_eof20;
773
- case 20:
774
- if ( (*p) == 108 )
775
- goto st21;
776
- goto st0;
777
- st21:
778
- if ( ++p == pe )
1281
+ st_case_20:
1282
+ if ( ( (*( p))) == 108 ) {
1283
+ goto st21;
1284
+ }
1285
+ {
1286
+ goto st0;
1287
+ }
1288
+ st21:
1289
+ p+= 1;
1290
+ if ( p == pe )
779
1291
  goto _test_eof21;
780
- case 21:
781
- if ( (*p) == 115 )
782
- goto st22;
783
- goto st0;
784
- st22:
785
- if ( ++p == pe )
1292
+ st_case_21:
1293
+ if ( ( (*( p))) == 115 ) {
1294
+ goto st22;
1295
+ }
1296
+ {
1297
+ goto st0;
1298
+ }
1299
+ st22:
1300
+ p+= 1;
1301
+ if ( p == pe )
786
1302
  goto _test_eof22;
787
- case 22:
788
- if ( (*p) == 101 )
789
- goto tr31;
790
- goto st0;
791
- st23:
792
- if ( ++p == pe )
1303
+ st_case_22:
1304
+ if ( ( (*( p))) == 101 ) {
1305
+ goto ctr31;
1306
+ }
1307
+ {
1308
+ goto st0;
1309
+ }
1310
+ st23:
1311
+ p+= 1;
1312
+ if ( p == pe )
793
1313
  goto _test_eof23;
794
- case 23:
795
- if ( (*p) == 117 )
796
- goto st24;
797
- goto st0;
798
- st24:
799
- if ( ++p == pe )
1314
+ st_case_23:
1315
+ if ( ( (*( p))) == 117 ) {
1316
+ goto st24;
1317
+ }
1318
+ {
1319
+ goto st0;
1320
+ }
1321
+ st24:
1322
+ p+= 1;
1323
+ if ( p == pe )
800
1324
  goto _test_eof24;
801
- case 24:
802
- if ( (*p) == 108 )
803
- goto st25;
804
- goto st0;
805
- st25:
806
- if ( ++p == pe )
1325
+ st_case_24:
1326
+ if ( ( (*( p))) == 108 ) {
1327
+ goto st25;
1328
+ }
1329
+ {
1330
+ goto st0;
1331
+ }
1332
+ st25:
1333
+ p+= 1;
1334
+ if ( p == pe )
807
1335
  goto _test_eof25;
808
- case 25:
809
- if ( (*p) == 108 )
810
- goto tr34;
811
- goto st0;
812
- st26:
813
- if ( ++p == pe )
1336
+ st_case_25:
1337
+ if ( ( (*( p))) == 108 ) {
1338
+ goto ctr34;
1339
+ }
1340
+ {
1341
+ goto st0;
1342
+ }
1343
+ st26:
1344
+ p+= 1;
1345
+ if ( p == pe )
814
1346
  goto _test_eof26;
815
- case 26:
816
- if ( (*p) == 114 )
817
- goto st27;
818
- goto st0;
819
- st27:
820
- if ( ++p == pe )
1347
+ st_case_26:
1348
+ if ( ( (*( p))) == 114 ) {
1349
+ goto st27;
1350
+ }
1351
+ {
1352
+ goto st0;
1353
+ }
1354
+ st27:
1355
+ p+= 1;
1356
+ if ( p == pe )
821
1357
  goto _test_eof27;
822
- case 27:
823
- if ( (*p) == 117 )
824
- goto st28;
825
- goto st0;
826
- st28:
827
- if ( ++p == pe )
1358
+ st_case_27:
1359
+ if ( ( (*( p))) == 117 ) {
1360
+ goto st28;
1361
+ }
1362
+ {
1363
+ goto st0;
1364
+ }
1365
+ st28:
1366
+ p+= 1;
1367
+ if ( p == pe )
828
1368
  goto _test_eof28;
829
- case 28:
830
- if ( (*p) == 101 )
831
- goto tr37;
832
- goto st0;
1369
+ st_case_28:
1370
+ if ( ( (*( p))) == 101 ) {
1371
+ goto ctr37;
1372
+ }
1373
+ {
1374
+ goto st0;
1375
+ }
1376
+ st_out:
1377
+ _test_eof1: cs = 1; goto _test_eof;
1378
+ _test_eof29: cs = 29; goto _test_eof;
1379
+ _test_eof2: cs = 2; goto _test_eof;
1380
+ _test_eof3: cs = 3; goto _test_eof;
1381
+ _test_eof4: cs = 4; goto _test_eof;
1382
+ _test_eof5: cs = 5; goto _test_eof;
1383
+ _test_eof6: cs = 6; goto _test_eof;
1384
+ _test_eof7: cs = 7; goto _test_eof;
1385
+ _test_eof8: cs = 8; goto _test_eof;
1386
+ _test_eof9: cs = 9; goto _test_eof;
1387
+ _test_eof10: cs = 10; goto _test_eof;
1388
+ _test_eof11: cs = 11; goto _test_eof;
1389
+ _test_eof12: cs = 12; goto _test_eof;
1390
+ _test_eof13: cs = 13; goto _test_eof;
1391
+ _test_eof14: cs = 14; goto _test_eof;
1392
+ _test_eof15: cs = 15; goto _test_eof;
1393
+ _test_eof16: cs = 16; goto _test_eof;
1394
+ _test_eof17: cs = 17; goto _test_eof;
1395
+ _test_eof18: cs = 18; goto _test_eof;
1396
+ _test_eof19: cs = 19; goto _test_eof;
1397
+ _test_eof20: cs = 20; goto _test_eof;
1398
+ _test_eof21: cs = 21; goto _test_eof;
1399
+ _test_eof22: cs = 22; goto _test_eof;
1400
+ _test_eof23: cs = 23; goto _test_eof;
1401
+ _test_eof24: cs = 24; goto _test_eof;
1402
+ _test_eof25: cs = 25; goto _test_eof;
1403
+ _test_eof26: cs = 26; goto _test_eof;
1404
+ _test_eof27: cs = 27; goto _test_eof;
1405
+ _test_eof28: cs = 28; goto _test_eof;
1406
+
1407
+ _test_eof: {}
1408
+ _out: {}
1409
+ }
1410
+
1411
+ #line 291 "parser.rl"
1412
+
1413
+
1414
+ if (json->freeze) {
1415
+ OBJ_FREEZE(*result);
1416
+ }
1417
+
1418
+ if (cs >= JSON_value_first_final) {
1419
+ return p;
1420
+ } else {
1421
+ return NULL;
833
1422
  }
834
- _test_eof1: cs = 1; goto _test_eof;
835
- _test_eof29: cs = 29; goto _test_eof;
836
- _test_eof2: cs = 2; goto _test_eof;
837
- _test_eof3: cs = 3; goto _test_eof;
838
- _test_eof4: cs = 4; goto _test_eof;
839
- _test_eof5: cs = 5; goto _test_eof;
840
- _test_eof6: cs = 6; goto _test_eof;
841
- _test_eof7: cs = 7; goto _test_eof;
842
- _test_eof8: cs = 8; goto _test_eof;
843
- _test_eof9: cs = 9; goto _test_eof;
844
- _test_eof10: cs = 10; goto _test_eof;
845
- _test_eof11: cs = 11; goto _test_eof;
846
- _test_eof12: cs = 12; goto _test_eof;
847
- _test_eof13: cs = 13; goto _test_eof;
848
- _test_eof14: cs = 14; goto _test_eof;
849
- _test_eof15: cs = 15; goto _test_eof;
850
- _test_eof16: cs = 16; goto _test_eof;
851
- _test_eof17: cs = 17; goto _test_eof;
852
- _test_eof18: cs = 18; goto _test_eof;
853
- _test_eof19: cs = 19; goto _test_eof;
854
- _test_eof20: cs = 20; goto _test_eof;
855
- _test_eof21: cs = 21; goto _test_eof;
856
- _test_eof22: cs = 22; goto _test_eof;
857
- _test_eof23: cs = 23; goto _test_eof;
858
- _test_eof24: cs = 24; goto _test_eof;
859
- _test_eof25: cs = 25; goto _test_eof;
860
- _test_eof26: cs = 26; goto _test_eof;
861
- _test_eof27: cs = 27; goto _test_eof;
862
- _test_eof28: cs = 28; goto _test_eof;
863
-
864
- _test_eof: {}
865
- _out: {}
866
- }
867
-
868
- #line 290 "parser.rl"
869
-
870
- if (cs >= JSON_value_first_final) {
871
- return p;
872
- } else {
873
- return NULL;
874
- }
875
1423
  }
876
1424
 
877
1425
 
878
- #line 879 "parser.c"
879
1426
  enum {JSON_integer_start = 1};
880
1427
  enum {JSON_integer_first_final = 3};
881
1428
  enum {JSON_integer_error = 0};
882
1429
 
883
1430
  enum {JSON_integer_en_main = 1};
884
1431
 
1432
+ static const char MAYBE_UNUSED(_JSON_integer_nfa_targs)[] = {
1433
+ 0, 0
1434
+ };
1435
+
1436
+ static const char MAYBE_UNUSED(_JSON_integer_nfa_offsets)[] = {
1437
+ 0, 0, 0, 0, 0, 0, 0
1438
+ };
885
1439
 
886
- #line 306 "parser.rl"
1440
+ static const char MAYBE_UNUSED(_JSON_integer_nfa_push_actions)[] = {
1441
+ 0, 0
1442
+ };
1443
+
1444
+ static const char MAYBE_UNUSED(_JSON_integer_nfa_pop_trans)[] = {
1445
+ 0, 0
1446
+ };
1447
+
1448
+
1449
+ #line 311 "parser.rl"
887
1450
 
888
1451
 
889
1452
  static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result)
890
1453
  {
891
- int cs = EVIL;
1454
+ int cs = EVIL;
892
1455
 
893
1456
 
894
- #line 895 "parser.c"
895
1457
  {
896
- cs = JSON_integer_start;
1458
+ cs = (int)JSON_integer_start;
897
1459
  }
898
1460
 
899
- #line 313 "parser.rl"
900
- json->memo = p;
1461
+ #line 318 "parser.rl"
1462
+
1463
+ json->memo = p;
901
1464
 
902
- #line 903 "parser.c"
903
1465
  {
904
- if ( p == pe )
1466
+ if ( p == pe )
905
1467
  goto _test_eof;
906
- switch ( cs )
907
- {
908
- case 1:
909
- switch( (*p) ) {
910
- case 45: goto st2;
911
- case 48: goto st3;
912
- }
913
- if ( 49 <= (*p) && (*p) <= 57 )
914
- goto st5;
915
- goto st0;
916
- st0:
917
- cs = 0;
918
- goto _out;
919
- st2:
920
- if ( ++p == pe )
1468
+ switch ( cs )
1469
+ {
1470
+ case 1:
1471
+ goto st_case_1;
1472
+ case 0:
1473
+ goto st_case_0;
1474
+ case 2:
1475
+ goto st_case_2;
1476
+ case 3:
1477
+ goto st_case_3;
1478
+ case 4:
1479
+ goto st_case_4;
1480
+ case 5:
1481
+ goto st_case_5;
1482
+ }
1483
+ goto st_out;
1484
+ st_case_1:
1485
+ switch( ( (*( p))) ) {
1486
+ case 45: {
1487
+ goto st2;
1488
+ }
1489
+ case 48: {
1490
+ goto st3;
1491
+ }
1492
+ }
1493
+ if ( 49 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1494
+ goto st5;
1495
+ }
1496
+ {
1497
+ goto st0;
1498
+ }
1499
+ st_case_0:
1500
+ st0:
1501
+ cs = 0;
1502
+ goto _out;
1503
+ st2:
1504
+ p+= 1;
1505
+ if ( p == pe )
921
1506
  goto _test_eof2;
922
- case 2:
923
- if ( (*p) == 48 )
924
- goto st3;
925
- if ( 49 <= (*p) && (*p) <= 57 )
926
- goto st5;
927
- goto st0;
928
- st3:
929
- if ( ++p == pe )
1507
+ st_case_2:
1508
+ if ( ( (*( p))) == 48 ) {
1509
+ goto st3;
1510
+ }
1511
+ if ( 49 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1512
+ goto st5;
1513
+ }
1514
+ {
1515
+ goto st0;
1516
+ }
1517
+ st3:
1518
+ p+= 1;
1519
+ if ( p == pe )
930
1520
  goto _test_eof3;
931
- case 3:
932
- if ( 48 <= (*p) && (*p) <= 57 )
933
- goto st0;
934
- goto tr4;
935
- tr4:
936
- #line 303 "parser.rl"
937
- { p--; {p++; cs = 4; goto _out;} }
938
- goto st4;
939
- st4:
940
- if ( ++p == pe )
1521
+ st_case_3:
1522
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1523
+ goto st0;
1524
+ }
1525
+ {
1526
+ goto ctr4;
1527
+ }
1528
+ ctr4:
1529
+ {
1530
+ #line 308 "parser.rl"
1531
+ {p = p - 1; } {p+= 1; cs = 4; goto _out;} }
1532
+
1533
+ goto st4;
1534
+ st4:
1535
+ p+= 1;
1536
+ if ( p == pe )
941
1537
  goto _test_eof4;
942
- case 4:
943
- #line 944 "parser.c"
944
- goto st0;
945
- st5:
946
- if ( ++p == pe )
1538
+ st_case_4:
1539
+ {
1540
+ goto st0;
1541
+ }
1542
+ st5:
1543
+ p+= 1;
1544
+ if ( p == pe )
947
1545
  goto _test_eof5;
948
- case 5:
949
- if ( 48 <= (*p) && (*p) <= 57 )
950
- goto st5;
951
- goto tr4;
952
- }
953
- _test_eof2: cs = 2; goto _test_eof;
954
- _test_eof3: cs = 3; goto _test_eof;
955
- _test_eof4: cs = 4; goto _test_eof;
956
- _test_eof5: cs = 5; goto _test_eof;
1546
+ st_case_5:
1547
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1548
+ goto st5;
1549
+ }
1550
+ {
1551
+ goto ctr4;
1552
+ }
1553
+ st_out:
1554
+ _test_eof2: cs = 2; goto _test_eof;
1555
+ _test_eof3: cs = 3; goto _test_eof;
1556
+ _test_eof4: cs = 4; goto _test_eof;
1557
+ _test_eof5: cs = 5; goto _test_eof;
957
1558
 
958
- _test_eof: {}
959
- _out: {}
1559
+ _test_eof: {}
1560
+ _out: {}
960
1561
  }
961
1562
 
962
- #line 315 "parser.rl"
963
-
964
- if (cs >= JSON_integer_first_final) {
965
- long len = p - json->memo;
966
- fbuffer_clear(json->fbuffer);
967
- fbuffer_append(json->fbuffer, json->memo, len);
968
- fbuffer_append_char(json->fbuffer, '\0');
969
- *result = rb_cstr2inum(FBUFFER_PTR(json->fbuffer), 10);
970
- return p + 1;
971
- } else {
972
- return NULL;
973
- }
1563
+ #line 320 "parser.rl"
1564
+
1565
+
1566
+ if (cs >= JSON_integer_first_final) {
1567
+ long len = p - json->memo;
1568
+ fbuffer_clear(json->fbuffer);
1569
+ fbuffer_append(json->fbuffer, json->memo, len);
1570
+ fbuffer_append_char(json->fbuffer, '\0');
1571
+ *result = rb_cstr2inum(FBUFFER_PTR(json->fbuffer), 10);
1572
+ return p + 1;
1573
+ } else {
1574
+ return NULL;
1575
+ }
974
1576
  }
975
1577
 
976
1578
 
977
- #line 978 "parser.c"
978
1579
  enum {JSON_float_start = 1};
979
1580
  enum {JSON_float_first_final = 8};
980
1581
  enum {JSON_float_error = 0};
981
1582
 
982
1583
  enum {JSON_float_en_main = 1};
983
1584
 
1585
+ static const char MAYBE_UNUSED(_JSON_float_nfa_targs)[] = {
1586
+ 0, 0
1587
+ };
1588
+
1589
+ static const char MAYBE_UNUSED(_JSON_float_nfa_offsets)[] = {
1590
+ 0, 0, 0, 0, 0, 0, 0, 0,
1591
+ 0, 0, 0, 0
1592
+ };
1593
+
1594
+ static const char MAYBE_UNUSED(_JSON_float_nfa_push_actions)[] = {
1595
+ 0, 0
1596
+ };
1597
+
1598
+ static const char MAYBE_UNUSED(_JSON_float_nfa_pop_trans)[] = {
1599
+ 0, 0
1600
+ };
1601
+
984
1602
 
985
- #line 340 "parser.rl"
1603
+ #line 345 "parser.rl"
986
1604
 
987
1605
 
988
1606
  static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result)
989
1607
  {
990
- int cs = EVIL;
1608
+ int cs = EVIL;
991
1609
 
992
1610
 
993
- #line 994 "parser.c"
994
1611
  {
995
- cs = JSON_float_start;
1612
+ cs = (int)JSON_float_start;
996
1613
  }
997
1614
 
998
- #line 347 "parser.rl"
999
- json->memo = p;
1615
+ #line 352 "parser.rl"
1616
+
1617
+ json->memo = p;
1000
1618
 
1001
- #line 1002 "parser.c"
1002
1619
  {
1003
- if ( p == pe )
1620
+ if ( p == pe )
1004
1621
  goto _test_eof;
1005
- switch ( cs )
1006
- {
1007
- case 1:
1008
- switch( (*p) ) {
1009
- case 45: goto st2;
1010
- case 48: goto st3;
1011
- }
1012
- if ( 49 <= (*p) && (*p) <= 57 )
1013
- goto st7;
1014
- goto st0;
1015
- st0:
1016
- cs = 0;
1017
- goto _out;
1018
- st2:
1019
- if ( ++p == pe )
1622
+ switch ( cs )
1623
+ {
1624
+ case 1:
1625
+ goto st_case_1;
1626
+ case 0:
1627
+ goto st_case_0;
1628
+ case 2:
1629
+ goto st_case_2;
1630
+ case 3:
1631
+ goto st_case_3;
1632
+ case 4:
1633
+ goto st_case_4;
1634
+ case 8:
1635
+ goto st_case_8;
1636
+ case 9:
1637
+ goto st_case_9;
1638
+ case 5:
1639
+ goto st_case_5;
1640
+ case 6:
1641
+ goto st_case_6;
1642
+ case 10:
1643
+ goto st_case_10;
1644
+ case 7:
1645
+ goto st_case_7;
1646
+ }
1647
+ goto st_out;
1648
+ st_case_1:
1649
+ switch( ( (*( p))) ) {
1650
+ case 45: {
1651
+ goto st2;
1652
+ }
1653
+ case 48: {
1654
+ goto st3;
1655
+ }
1656
+ }
1657
+ if ( 49 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1658
+ goto st7;
1659
+ }
1660
+ {
1661
+ goto st0;
1662
+ }
1663
+ st_case_0:
1664
+ st0:
1665
+ cs = 0;
1666
+ goto _out;
1667
+ st2:
1668
+ p+= 1;
1669
+ if ( p == pe )
1020
1670
  goto _test_eof2;
1021
- case 2:
1022
- if ( (*p) == 48 )
1023
- goto st3;
1024
- if ( 49 <= (*p) && (*p) <= 57 )
1025
- goto st7;
1026
- goto st0;
1027
- st3:
1028
- if ( ++p == pe )
1671
+ st_case_2:
1672
+ if ( ( (*( p))) == 48 ) {
1673
+ goto st3;
1674
+ }
1675
+ if ( 49 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1676
+ goto st7;
1677
+ }
1678
+ {
1679
+ goto st0;
1680
+ }
1681
+ st3:
1682
+ p+= 1;
1683
+ if ( p == pe )
1029
1684
  goto _test_eof3;
1030
- case 3:
1031
- switch( (*p) ) {
1032
- case 46: goto st4;
1033
- case 69: goto st5;
1034
- case 101: goto st5;
1035
- }
1036
- goto st0;
1037
- st4:
1038
- if ( ++p == pe )
1685
+ st_case_3:
1686
+ switch( ( (*( p))) ) {
1687
+ case 46: {
1688
+ goto st4;
1689
+ }
1690
+ case 69: {
1691
+ goto st5;
1692
+ }
1693
+ case 101: {
1694
+ goto st5;
1695
+ }
1696
+ }
1697
+ {
1698
+ goto st0;
1699
+ }
1700
+ st4:
1701
+ p+= 1;
1702
+ if ( p == pe )
1039
1703
  goto _test_eof4;
1040
- case 4:
1041
- if ( 48 <= (*p) && (*p) <= 57 )
1042
- goto st8;
1043
- goto st0;
1044
- st8:
1045
- if ( ++p == pe )
1046
- goto _test_eof8;
1047
- case 8:
1048
- switch( (*p) ) {
1049
- case 69: goto st5;
1050
- case 101: goto st5;
1051
- }
1052
- if ( (*p) > 46 ) {
1053
- if ( 48 <= (*p) && (*p) <= 57 )
1704
+ st_case_4:
1705
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1054
1706
  goto st8;
1055
- } else if ( (*p) >= 45 )
1056
- goto st0;
1057
- goto tr9;
1058
- tr9:
1059
- #line 334 "parser.rl"
1060
- { p--; {p++; cs = 9; goto _out;} }
1061
- goto st9;
1062
- st9:
1063
- if ( ++p == pe )
1707
+ }
1708
+ {
1709
+ goto st0;
1710
+ }
1711
+ st8:
1712
+ p+= 1;
1713
+ if ( p == pe )
1714
+ goto _test_eof8;
1715
+ st_case_8:
1716
+ switch( ( (*( p))) ) {
1717
+ case 69: {
1718
+ goto st5;
1719
+ }
1720
+ case 101: {
1721
+ goto st5;
1722
+ }
1723
+ }
1724
+ if ( ( (*( p))) > 46 ) {
1725
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1726
+ goto st8;
1727
+ }
1728
+ } else if ( ( (*( p))) >= 45 ) {
1729
+ goto st0;
1730
+ }
1731
+ {
1732
+ goto ctr9;
1733
+ }
1734
+ ctr9:
1735
+ {
1736
+ #line 339 "parser.rl"
1737
+ {p = p - 1; } {p+= 1; cs = 9; goto _out;} }
1738
+
1739
+ goto st9;
1740
+ st9:
1741
+ p+= 1;
1742
+ if ( p == pe )
1064
1743
  goto _test_eof9;
1065
- case 9:
1066
- #line 1067 "parser.c"
1067
- goto st0;
1068
- st5:
1069
- if ( ++p == pe )
1744
+ st_case_9:
1745
+ {
1746
+ goto st0;
1747
+ }
1748
+ st5:
1749
+ p+= 1;
1750
+ if ( p == pe )
1070
1751
  goto _test_eof5;
1071
- case 5:
1072
- switch( (*p) ) {
1073
- case 43: goto st6;
1074
- case 45: goto st6;
1075
- }
1076
- if ( 48 <= (*p) && (*p) <= 57 )
1077
- goto st10;
1078
- goto st0;
1079
- st6:
1080
- if ( ++p == pe )
1752
+ st_case_5:
1753
+ switch( ( (*( p))) ) {
1754
+ case 43: {
1755
+ goto st6;
1756
+ }
1757
+ case 45: {
1758
+ goto st6;
1759
+ }
1760
+ }
1761
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1762
+ goto st10;
1763
+ }
1764
+ {
1765
+ goto st0;
1766
+ }
1767
+ st6:
1768
+ p+= 1;
1769
+ if ( p == pe )
1081
1770
  goto _test_eof6;
1082
- case 6:
1083
- if ( 48 <= (*p) && (*p) <= 57 )
1084
- goto st10;
1085
- goto st0;
1086
- st10:
1087
- if ( ++p == pe )
1088
- goto _test_eof10;
1089
- case 10:
1090
- switch( (*p) ) {
1091
- case 69: goto st0;
1092
- case 101: goto st0;
1093
- }
1094
- if ( (*p) > 46 ) {
1095
- if ( 48 <= (*p) && (*p) <= 57 )
1771
+ st_case_6:
1772
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1096
1773
  goto st10;
1097
- } else if ( (*p) >= 45 )
1098
- goto st0;
1099
- goto tr9;
1100
- st7:
1101
- if ( ++p == pe )
1774
+ }
1775
+ {
1776
+ goto st0;
1777
+ }
1778
+ st10:
1779
+ p+= 1;
1780
+ if ( p == pe )
1781
+ goto _test_eof10;
1782
+ st_case_10:
1783
+ switch( ( (*( p))) ) {
1784
+ case 69: {
1785
+ goto st0;
1786
+ }
1787
+ case 101: {
1788
+ goto st0;
1789
+ }
1790
+ }
1791
+ if ( ( (*( p))) > 46 ) {
1792
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1793
+ goto st10;
1794
+ }
1795
+ } else if ( ( (*( p))) >= 45 ) {
1796
+ goto st0;
1797
+ }
1798
+ {
1799
+ goto ctr9;
1800
+ }
1801
+ st7:
1802
+ p+= 1;
1803
+ if ( p == pe )
1102
1804
  goto _test_eof7;
1103
- case 7:
1104
- switch( (*p) ) {
1105
- case 46: goto st4;
1106
- case 69: goto st5;
1107
- case 101: goto st5;
1108
- }
1109
- if ( 48 <= (*p) && (*p) <= 57 )
1110
- goto st7;
1111
- goto st0;
1112
- }
1113
- _test_eof2: cs = 2; goto _test_eof;
1114
- _test_eof3: cs = 3; goto _test_eof;
1115
- _test_eof4: cs = 4; goto _test_eof;
1116
- _test_eof8: cs = 8; goto _test_eof;
1117
- _test_eof9: cs = 9; goto _test_eof;
1118
- _test_eof5: cs = 5; goto _test_eof;
1119
- _test_eof6: cs = 6; goto _test_eof;
1120
- _test_eof10: cs = 10; goto _test_eof;
1121
- _test_eof7: cs = 7; goto _test_eof;
1122
-
1123
- _test_eof: {}
1124
- _out: {}
1805
+ st_case_7:
1806
+ switch( ( (*( p))) ) {
1807
+ case 46: {
1808
+ goto st4;
1809
+ }
1810
+ case 69: {
1811
+ goto st5;
1812
+ }
1813
+ case 101: {
1814
+ goto st5;
1815
+ }
1816
+ }
1817
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
1818
+ goto st7;
1819
+ }
1820
+ {
1821
+ goto st0;
1822
+ }
1823
+ st_out:
1824
+ _test_eof2: cs = 2; goto _test_eof;
1825
+ _test_eof3: cs = 3; goto _test_eof;
1826
+ _test_eof4: cs = 4; goto _test_eof;
1827
+ _test_eof8: cs = 8; goto _test_eof;
1828
+ _test_eof9: cs = 9; goto _test_eof;
1829
+ _test_eof5: cs = 5; goto _test_eof;
1830
+ _test_eof6: cs = 6; goto _test_eof;
1831
+ _test_eof10: cs = 10; goto _test_eof;
1832
+ _test_eof7: cs = 7; goto _test_eof;
1833
+
1834
+ _test_eof: {}
1835
+ _out: {}
1836
+ }
1837
+
1838
+ #line 354 "parser.rl"
1839
+
1840
+
1841
+ if (cs >= JSON_float_first_final) {
1842
+ VALUE mod = Qnil;
1843
+ ID method_id = 0;
1844
+ if (rb_respond_to(json->decimal_class, i_try_convert)) {
1845
+ mod = json->decimal_class;
1846
+ method_id = i_try_convert;
1847
+ } else if (rb_respond_to(json->decimal_class, i_new)) {
1848
+ mod = json->decimal_class;
1849
+ method_id = i_new;
1850
+ } else if (RB_TYPE_P(json->decimal_class, T_CLASS)) {
1851
+ VALUE name = rb_class_name(json->decimal_class);
1852
+ const char *name_cstr = RSTRING_PTR(name);
1853
+ const char *last_colon = strrchr(name_cstr, ':');
1854
+ if (last_colon) {
1855
+ const char *mod_path_end = last_colon - 1;
1856
+ VALUE mod_path = rb_str_substr(name, 0, mod_path_end - name_cstr);
1857
+ mod = rb_path_to_class(mod_path);
1858
+
1859
+ const char *method_name_beg = last_colon + 1;
1860
+ long before_len = method_name_beg - name_cstr;
1861
+ long len = RSTRING_LEN(name) - before_len;
1862
+ VALUE method_name = rb_str_substr(name, before_len, len);
1863
+ method_id = SYM2ID(rb_str_intern(method_name));
1864
+ } else {
1865
+ mod = rb_mKernel;
1866
+ method_id = SYM2ID(rb_str_intern(name));
1867
+ }
1868
+ }
1869
+
1870
+ long len = p - json->memo;
1871
+ fbuffer_clear(json->fbuffer);
1872
+ fbuffer_append(json->fbuffer, json->memo, len);
1873
+ fbuffer_append_char(json->fbuffer, '\0');
1874
+
1875
+ if (method_id) {
1876
+ VALUE text = rb_str_new2(FBUFFER_PTR(json->fbuffer));
1877
+ *result = rb_funcallv(mod, method_id, 1, &text);
1878
+ } else {
1879
+ *result = DBL2NUM(rb_cstr_to_dbl(FBUFFER_PTR(json->fbuffer), 1));
1880
+ }
1881
+
1882
+ return p + 1;
1883
+ } else {
1884
+ return NULL;
1125
1885
  }
1126
-
1127
- #line 349 "parser.rl"
1128
-
1129
- if (cs >= JSON_float_first_final) {
1130
- long len = p - json->memo;
1131
- fbuffer_clear(json->fbuffer);
1132
- fbuffer_append(json->fbuffer, json->memo, len);
1133
- fbuffer_append_char(json->fbuffer, '\0');
1134
- if (NIL_P(json->decimal_class)) {
1135
- *result = rb_float_new(rb_cstr_to_dbl(FBUFFER_PTR(json->fbuffer), 1));
1136
- } else {
1137
- VALUE text;
1138
- text = rb_str_new2(FBUFFER_PTR(json->fbuffer));
1139
- *result = rb_funcall(json->decimal_class, i_new, 1, text);
1140
- }
1141
- return p + 1;
1142
- } else {
1143
- return NULL;
1144
- }
1145
1886
  }
1146
1887
 
1147
1888
 
1148
1889
 
1149
- #line 1150 "parser.c"
1150
1890
  enum {JSON_array_start = 1};
1151
1891
  enum {JSON_array_first_final = 17};
1152
1892
  enum {JSON_array_error = 0};
1153
1893
 
1154
1894
  enum {JSON_array_en_main = 1};
1155
1895
 
1896
+ static const char MAYBE_UNUSED(_JSON_array_nfa_targs)[] = {
1897
+ 0, 0
1898
+ };
1156
1899
 
1157
- #line 398 "parser.rl"
1900
+ static const char MAYBE_UNUSED(_JSON_array_nfa_offsets)[] = {
1901
+ 0, 0, 0, 0, 0, 0, 0, 0,
1902
+ 0, 0, 0, 0, 0, 0, 0, 0,
1903
+ 0, 0, 0
1904
+ };
1905
+
1906
+ static const char MAYBE_UNUSED(_JSON_array_nfa_push_actions)[] = {
1907
+ 0, 0
1908
+ };
1909
+
1910
+ static const char MAYBE_UNUSED(_JSON_array_nfa_pop_trans)[] = {
1911
+ 0, 0
1912
+ };
1913
+
1914
+
1915
+ #line 432 "parser.rl"
1158
1916
 
1159
1917
 
1160
1918
  static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting)
1161
1919
  {
1162
- int cs = EVIL;
1163
- VALUE array_class = json->array_class;
1920
+ int cs = EVIL;
1921
+ VALUE array_class = json->array_class;
1164
1922
 
1165
- if (json->max_nesting && current_nesting > json->max_nesting) {
1166
- rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
1167
- }
1168
- *result = NIL_P(array_class) ? rb_ary_new() : rb_class_new_instance(0, 0, array_class);
1923
+ if (json->max_nesting && current_nesting > json->max_nesting) {
1924
+ rb_raise(eNestingError, "nesting of %d is too deep", current_nesting);
1925
+ }
1926
+ *result = NIL_P(array_class) ? rb_ary_new() : rb_class_new_instance(0, 0, array_class);
1169
1927
 
1170
1928
 
1171
- #line 1172 "parser.c"
1172
1929
  {
1173
- cs = JSON_array_start;
1930
+ cs = (int)JSON_array_start;
1174
1931
  }
1175
1932
 
1176
- #line 411 "parser.rl"
1933
+ #line 445 "parser.rl"
1934
+
1177
1935
 
1178
- #line 1179 "parser.c"
1179
1936
  {
1180
- if ( p == pe )
1937
+ if ( p == pe )
1181
1938
  goto _test_eof;
1182
- switch ( cs )
1183
- {
1184
- case 1:
1185
- if ( (*p) == 91 )
1186
- goto st2;
1187
- goto st0;
1188
- st0:
1189
- cs = 0;
1190
- goto _out;
1191
- st2:
1192
- if ( ++p == pe )
1939
+ switch ( cs )
1940
+ {
1941
+ case 1:
1942
+ goto st_case_1;
1943
+ case 0:
1944
+ goto st_case_0;
1945
+ case 2:
1946
+ goto st_case_2;
1947
+ case 3:
1948
+ goto st_case_3;
1949
+ case 4:
1950
+ goto st_case_4;
1951
+ case 5:
1952
+ goto st_case_5;
1953
+ case 6:
1954
+ goto st_case_6;
1955
+ case 7:
1956
+ goto st_case_7;
1957
+ case 8:
1958
+ goto st_case_8;
1959
+ case 9:
1960
+ goto st_case_9;
1961
+ case 10:
1962
+ goto st_case_10;
1963
+ case 11:
1964
+ goto st_case_11;
1965
+ case 12:
1966
+ goto st_case_12;
1967
+ case 17:
1968
+ goto st_case_17;
1969
+ case 13:
1970
+ goto st_case_13;
1971
+ case 14:
1972
+ goto st_case_14;
1973
+ case 15:
1974
+ goto st_case_15;
1975
+ case 16:
1976
+ goto st_case_16;
1977
+ }
1978
+ goto st_out;
1979
+ st_case_1:
1980
+ if ( ( (*( p))) == 91 ) {
1981
+ goto st2;
1982
+ }
1983
+ {
1984
+ goto st0;
1985
+ }
1986
+ st_case_0:
1987
+ st0:
1988
+ cs = 0;
1989
+ goto _out;
1990
+ st2:
1991
+ p+= 1;
1992
+ if ( p == pe )
1193
1993
  goto _test_eof2;
1194
- case 2:
1195
- switch( (*p) ) {
1196
- case 13: goto st2;
1197
- case 32: goto st2;
1198
- case 34: goto tr2;
1199
- case 45: goto tr2;
1200
- case 47: goto st13;
1201
- case 73: goto tr2;
1202
- case 78: goto tr2;
1203
- case 91: goto tr2;
1204
- case 93: goto tr4;
1205
- case 102: goto tr2;
1206
- case 110: goto tr2;
1207
- case 116: goto tr2;
1208
- case 123: goto tr2;
1209
- }
1210
- if ( (*p) > 10 ) {
1211
- if ( 48 <= (*p) && (*p) <= 57 )
1212
- goto tr2;
1213
- } else if ( (*p) >= 9 )
1214
- goto st2;
1215
- goto st0;
1216
- tr2:
1217
- #line 375 "parser.rl"
1218
- {
1219
- VALUE v = Qnil;
1220
- char *np = JSON_parse_value(json, p, pe, &v, current_nesting);
1221
- if (np == NULL) {
1222
- p--; {p++; cs = 3; goto _out;}
1223
- } else {
1224
- if (NIL_P(json->array_class)) {
1225
- rb_ary_push(*result, v);
1226
- } else {
1227
- rb_funcall(*result, i_leftshift, 1, v);
1228
- }
1229
- {p = (( np))-1;}
1230
- }
1231
- }
1232
- goto st3;
1233
- st3:
1234
- if ( ++p == pe )
1235
- goto _test_eof3;
1236
- case 3:
1237
- #line 1238 "parser.c"
1238
- switch( (*p) ) {
1239
- case 13: goto st3;
1240
- case 32: goto st3;
1241
- case 44: goto st4;
1242
- case 47: goto st9;
1243
- case 93: goto tr4;
1244
- }
1245
- if ( 9 <= (*p) && (*p) <= 10 )
1994
+ st_case_2:
1995
+ switch( ( (*( p))) ) {
1996
+ case 13: {
1997
+ goto st2;
1998
+ }
1999
+ case 32: {
2000
+ goto st2;
2001
+ }
2002
+ case 34: {
2003
+ goto ctr2;
2004
+ }
2005
+ case 45: {
2006
+ goto ctr2;
2007
+ }
2008
+ case 47: {
2009
+ goto st13;
2010
+ }
2011
+ case 73: {
2012
+ goto ctr2;
2013
+ }
2014
+ case 78: {
2015
+ goto ctr2;
2016
+ }
2017
+ case 91: {
2018
+ goto ctr2;
2019
+ }
2020
+ case 93: {
2021
+ goto ctr4;
2022
+ }
2023
+ case 102: {
2024
+ goto ctr2;
2025
+ }
2026
+ case 110: {
2027
+ goto ctr2;
2028
+ }
2029
+ case 116: {
2030
+ goto ctr2;
2031
+ }
2032
+ case 123: {
2033
+ goto ctr2;
2034
+ }
2035
+ }
2036
+ if ( ( (*( p))) > 10 ) {
2037
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2038
+ goto ctr2;
2039
+ }
2040
+ } else if ( ( (*( p))) >= 9 ) {
2041
+ goto st2;
2042
+ }
2043
+ {
2044
+ goto st0;
2045
+ }
2046
+ ctr2:
2047
+ {
2048
+ #line 409 "parser.rl"
2049
+
2050
+ VALUE v = Qnil;
2051
+ char *np = JSON_parse_value(json, p, pe, &v, current_nesting);
2052
+ if (np == NULL) {
2053
+ {p = p - 1; } {p+= 1; cs = 3; goto _out;}
2054
+ } else {
2055
+ if (NIL_P(json->array_class)) {
2056
+ rb_ary_push(*result, v);
2057
+ } else {
2058
+ rb_funcall(*result, i_leftshift, 1, v);
2059
+ }
2060
+ {p = (( np))-1;}
2061
+
2062
+ }
2063
+ }
2064
+
1246
2065
  goto st3;
1247
- goto st0;
1248
- st4:
1249
- if ( ++p == pe )
2066
+ st3:
2067
+ p+= 1;
2068
+ if ( p == pe )
2069
+ goto _test_eof3;
2070
+ st_case_3:
2071
+ switch( ( (*( p))) ) {
2072
+ case 13: {
2073
+ goto st3;
2074
+ }
2075
+ case 32: {
2076
+ goto st3;
2077
+ }
2078
+ case 44: {
2079
+ goto st4;
2080
+ }
2081
+ case 47: {
2082
+ goto st9;
2083
+ }
2084
+ case 93: {
2085
+ goto ctr4;
2086
+ }
2087
+ }
2088
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
2089
+ goto st3;
2090
+ }
2091
+ {
2092
+ goto st0;
2093
+ }
2094
+ st4:
2095
+ p+= 1;
2096
+ if ( p == pe )
1250
2097
  goto _test_eof4;
1251
- case 4:
1252
- switch( (*p) ) {
1253
- case 13: goto st4;
1254
- case 32: goto st4;
1255
- case 34: goto tr2;
1256
- case 45: goto tr2;
1257
- case 47: goto st5;
1258
- case 73: goto tr2;
1259
- case 78: goto tr2;
1260
- case 91: goto tr2;
1261
- case 102: goto tr2;
1262
- case 110: goto tr2;
1263
- case 116: goto tr2;
1264
- case 123: goto tr2;
1265
- }
1266
- if ( (*p) > 10 ) {
1267
- if ( 48 <= (*p) && (*p) <= 57 )
1268
- goto tr2;
1269
- } else if ( (*p) >= 9 )
1270
- goto st4;
1271
- goto st0;
1272
- st5:
1273
- if ( ++p == pe )
2098
+ st_case_4:
2099
+ switch( ( (*( p))) ) {
2100
+ case 13: {
2101
+ goto st4;
2102
+ }
2103
+ case 32: {
2104
+ goto st4;
2105
+ }
2106
+ case 34: {
2107
+ goto ctr2;
2108
+ }
2109
+ case 45: {
2110
+ goto ctr2;
2111
+ }
2112
+ case 47: {
2113
+ goto st5;
2114
+ }
2115
+ case 73: {
2116
+ goto ctr2;
2117
+ }
2118
+ case 78: {
2119
+ goto ctr2;
2120
+ }
2121
+ case 91: {
2122
+ goto ctr2;
2123
+ }
2124
+ case 102: {
2125
+ goto ctr2;
2126
+ }
2127
+ case 110: {
2128
+ goto ctr2;
2129
+ }
2130
+ case 116: {
2131
+ goto ctr2;
2132
+ }
2133
+ case 123: {
2134
+ goto ctr2;
2135
+ }
2136
+ }
2137
+ if ( ( (*( p))) > 10 ) {
2138
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2139
+ goto ctr2;
2140
+ }
2141
+ } else if ( ( (*( p))) >= 9 ) {
2142
+ goto st4;
2143
+ }
2144
+ {
2145
+ goto st0;
2146
+ }
2147
+ st5:
2148
+ p+= 1;
2149
+ if ( p == pe )
1274
2150
  goto _test_eof5;
1275
- case 5:
1276
- switch( (*p) ) {
1277
- case 42: goto st6;
1278
- case 47: goto st8;
1279
- }
1280
- goto st0;
1281
- st6:
1282
- if ( ++p == pe )
2151
+ st_case_5:
2152
+ switch( ( (*( p))) ) {
2153
+ case 42: {
2154
+ goto st6;
2155
+ }
2156
+ case 47: {
2157
+ goto st8;
2158
+ }
2159
+ }
2160
+ {
2161
+ goto st0;
2162
+ }
2163
+ st6:
2164
+ p+= 1;
2165
+ if ( p == pe )
1283
2166
  goto _test_eof6;
1284
- case 6:
1285
- if ( (*p) == 42 )
1286
- goto st7;
1287
- goto st6;
1288
- st7:
1289
- if ( ++p == pe )
2167
+ st_case_6:
2168
+ if ( ( (*( p))) == 42 ) {
2169
+ goto st7;
2170
+ }
2171
+ {
2172
+ goto st6;
2173
+ }
2174
+ st7:
2175
+ p+= 1;
2176
+ if ( p == pe )
1290
2177
  goto _test_eof7;
1291
- case 7:
1292
- switch( (*p) ) {
1293
- case 42: goto st7;
1294
- case 47: goto st4;
1295
- }
1296
- goto st6;
1297
- st8:
1298
- if ( ++p == pe )
2178
+ st_case_7:
2179
+ switch( ( (*( p))) ) {
2180
+ case 42: {
2181
+ goto st7;
2182
+ }
2183
+ case 47: {
2184
+ goto st4;
2185
+ }
2186
+ }
2187
+ {
2188
+ goto st6;
2189
+ }
2190
+ st8:
2191
+ p+= 1;
2192
+ if ( p == pe )
1299
2193
  goto _test_eof8;
1300
- case 8:
1301
- if ( (*p) == 10 )
1302
- goto st4;
1303
- goto st8;
1304
- st9:
1305
- if ( ++p == pe )
2194
+ st_case_8:
2195
+ if ( ( (*( p))) == 10 ) {
2196
+ goto st4;
2197
+ }
2198
+ {
2199
+ goto st8;
2200
+ }
2201
+ st9:
2202
+ p+= 1;
2203
+ if ( p == pe )
1306
2204
  goto _test_eof9;
1307
- case 9:
1308
- switch( (*p) ) {
1309
- case 42: goto st10;
1310
- case 47: goto st12;
1311
- }
1312
- goto st0;
1313
- st10:
1314
- if ( ++p == pe )
2205
+ st_case_9:
2206
+ switch( ( (*( p))) ) {
2207
+ case 42: {
2208
+ goto st10;
2209
+ }
2210
+ case 47: {
2211
+ goto st12;
2212
+ }
2213
+ }
2214
+ {
2215
+ goto st0;
2216
+ }
2217
+ st10:
2218
+ p+= 1;
2219
+ if ( p == pe )
1315
2220
  goto _test_eof10;
1316
- case 10:
1317
- if ( (*p) == 42 )
1318
- goto st11;
1319
- goto st10;
1320
- st11:
1321
- if ( ++p == pe )
2221
+ st_case_10:
2222
+ if ( ( (*( p))) == 42 ) {
2223
+ goto st11;
2224
+ }
2225
+ {
2226
+ goto st10;
2227
+ }
2228
+ st11:
2229
+ p+= 1;
2230
+ if ( p == pe )
1322
2231
  goto _test_eof11;
1323
- case 11:
1324
- switch( (*p) ) {
1325
- case 42: goto st11;
1326
- case 47: goto st3;
1327
- }
1328
- goto st10;
1329
- st12:
1330
- if ( ++p == pe )
2232
+ st_case_11:
2233
+ switch( ( (*( p))) ) {
2234
+ case 42: {
2235
+ goto st11;
2236
+ }
2237
+ case 47: {
2238
+ goto st3;
2239
+ }
2240
+ }
2241
+ {
2242
+ goto st10;
2243
+ }
2244
+ st12:
2245
+ p+= 1;
2246
+ if ( p == pe )
1331
2247
  goto _test_eof12;
1332
- case 12:
1333
- if ( (*p) == 10 )
1334
- goto st3;
1335
- goto st12;
1336
- tr4:
1337
- #line 390 "parser.rl"
1338
- { p--; {p++; cs = 17; goto _out;} }
1339
- goto st17;
1340
- st17:
1341
- if ( ++p == pe )
2248
+ st_case_12:
2249
+ if ( ( (*( p))) == 10 ) {
2250
+ goto st3;
2251
+ }
2252
+ {
2253
+ goto st12;
2254
+ }
2255
+ ctr4:
2256
+ {
2257
+ #line 424 "parser.rl"
2258
+ {p = p - 1; } {p+= 1; cs = 17; goto _out;} }
2259
+
2260
+ goto st17;
2261
+ st17:
2262
+ p+= 1;
2263
+ if ( p == pe )
1342
2264
  goto _test_eof17;
1343
- case 17:
1344
- #line 1345 "parser.c"
1345
- goto st0;
1346
- st13:
1347
- if ( ++p == pe )
2265
+ st_case_17:
2266
+ {
2267
+ goto st0;
2268
+ }
2269
+ st13:
2270
+ p+= 1;
2271
+ if ( p == pe )
1348
2272
  goto _test_eof13;
1349
- case 13:
1350
- switch( (*p) ) {
1351
- case 42: goto st14;
1352
- case 47: goto st16;
1353
- }
1354
- goto st0;
1355
- st14:
1356
- if ( ++p == pe )
2273
+ st_case_13:
2274
+ switch( ( (*( p))) ) {
2275
+ case 42: {
2276
+ goto st14;
2277
+ }
2278
+ case 47: {
2279
+ goto st16;
2280
+ }
2281
+ }
2282
+ {
2283
+ goto st0;
2284
+ }
2285
+ st14:
2286
+ p+= 1;
2287
+ if ( p == pe )
1357
2288
  goto _test_eof14;
1358
- case 14:
1359
- if ( (*p) == 42 )
1360
- goto st15;
1361
- goto st14;
1362
- st15:
1363
- if ( ++p == pe )
2289
+ st_case_14:
2290
+ if ( ( (*( p))) == 42 ) {
2291
+ goto st15;
2292
+ }
2293
+ {
2294
+ goto st14;
2295
+ }
2296
+ st15:
2297
+ p+= 1;
2298
+ if ( p == pe )
1364
2299
  goto _test_eof15;
1365
- case 15:
1366
- switch( (*p) ) {
1367
- case 42: goto st15;
1368
- case 47: goto st2;
1369
- }
1370
- goto st14;
1371
- st16:
1372
- if ( ++p == pe )
2300
+ st_case_15:
2301
+ switch( ( (*( p))) ) {
2302
+ case 42: {
2303
+ goto st15;
2304
+ }
2305
+ case 47: {
2306
+ goto st2;
2307
+ }
2308
+ }
2309
+ {
2310
+ goto st14;
2311
+ }
2312
+ st16:
2313
+ p+= 1;
2314
+ if ( p == pe )
1373
2315
  goto _test_eof16;
1374
- case 16:
1375
- if ( (*p) == 10 )
1376
- goto st2;
1377
- goto st16;
1378
- }
1379
- _test_eof2: cs = 2; goto _test_eof;
1380
- _test_eof3: cs = 3; goto _test_eof;
1381
- _test_eof4: cs = 4; goto _test_eof;
1382
- _test_eof5: cs = 5; goto _test_eof;
1383
- _test_eof6: cs = 6; goto _test_eof;
1384
- _test_eof7: cs = 7; goto _test_eof;
1385
- _test_eof8: cs = 8; goto _test_eof;
1386
- _test_eof9: cs = 9; goto _test_eof;
1387
- _test_eof10: cs = 10; goto _test_eof;
1388
- _test_eof11: cs = 11; goto _test_eof;
1389
- _test_eof12: cs = 12; goto _test_eof;
1390
- _test_eof17: cs = 17; goto _test_eof;
1391
- _test_eof13: cs = 13; goto _test_eof;
1392
- _test_eof14: cs = 14; goto _test_eof;
1393
- _test_eof15: cs = 15; goto _test_eof;
1394
- _test_eof16: cs = 16; goto _test_eof;
1395
-
1396
- _test_eof: {}
1397
- _out: {}
2316
+ st_case_16:
2317
+ if ( ( (*( p))) == 10 ) {
2318
+ goto st2;
2319
+ }
2320
+ {
2321
+ goto st16;
2322
+ }
2323
+ st_out:
2324
+ _test_eof2: cs = 2; goto _test_eof;
2325
+ _test_eof3: cs = 3; goto _test_eof;
2326
+ _test_eof4: cs = 4; goto _test_eof;
2327
+ _test_eof5: cs = 5; goto _test_eof;
2328
+ _test_eof6: cs = 6; goto _test_eof;
2329
+ _test_eof7: cs = 7; goto _test_eof;
2330
+ _test_eof8: cs = 8; goto _test_eof;
2331
+ _test_eof9: cs = 9; goto _test_eof;
2332
+ _test_eof10: cs = 10; goto _test_eof;
2333
+ _test_eof11: cs = 11; goto _test_eof;
2334
+ _test_eof12: cs = 12; goto _test_eof;
2335
+ _test_eof17: cs = 17; goto _test_eof;
2336
+ _test_eof13: cs = 13; goto _test_eof;
2337
+ _test_eof14: cs = 14; goto _test_eof;
2338
+ _test_eof15: cs = 15; goto _test_eof;
2339
+ _test_eof16: cs = 16; goto _test_eof;
2340
+
2341
+ _test_eof: {}
2342
+ _out: {}
2343
+ }
2344
+
2345
+ #line 446 "parser.rl"
2346
+
2347
+
2348
+ if(cs >= JSON_array_first_final) {
2349
+ return p + 1;
2350
+ } else {
2351
+ rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
2352
+ return NULL;
1398
2353
  }
1399
-
1400
- #line 412 "parser.rl"
1401
-
1402
- if(cs >= JSON_array_first_final) {
1403
- return p + 1;
1404
- } else {
1405
- rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
1406
- return NULL;
1407
- }
1408
2354
  }
1409
2355
 
1410
- static VALUE json_string_unescape(VALUE result, char *string, char *stringEnd)
2356
+ static const size_t MAX_STACK_BUFFER_SIZE = 128;
2357
+ static VALUE json_string_unescape(char *string, char *stringEnd, int intern, int symbolize)
1411
2358
  {
1412
- char *p = string, *pe = string, *unescape;
1413
- int unescape_len;
1414
- char buf[4];
1415
-
1416
- while (pe < stringEnd) {
1417
- if (*pe == '\\') {
1418
- unescape = (char *) "?";
1419
- unescape_len = 1;
1420
- if (pe > p) rb_str_buf_cat(result, p, pe - p);
1421
- switch (*++pe) {
1422
- case 'n':
1423
- unescape = (char *) "\n";
1424
- break;
1425
- case 'r':
1426
- unescape = (char *) "\r";
1427
- break;
1428
- case 't':
1429
- unescape = (char *) "\t";
1430
- break;
1431
- case '"':
1432
- unescape = (char *) "\"";
1433
- break;
1434
- case '\\':
1435
- unescape = (char *) "\\";
1436
- break;
1437
- case 'b':
1438
- unescape = (char *) "\b";
1439
- break;
1440
- case 'f':
1441
- unescape = (char *) "\f";
1442
- break;
1443
- case 'u':
1444
- if (pe > stringEnd - 4) {
1445
- rb_enc_raise(
1446
- EXC_ENCODING eParserError,
1447
- "%u: incomplete unicode character escape sequence at '%s'", __LINE__, p
1448
- );
1449
- } else {
1450
- UTF32 ch = unescape_unicode((unsigned char *) ++pe);
1451
- pe += 3;
1452
- if (UNI_SUR_HIGH_START == (ch & 0xFC00)) {
1453
- pe++;
1454
- if (pe > stringEnd - 6) {
1455
- rb_enc_raise(
1456
- EXC_ENCODING eParserError,
1457
- "%u: incomplete surrogate pair at '%s'", __LINE__, p
1458
- );
1459
- }
1460
- if (pe[0] == '\\' && pe[1] == 'u') {
1461
- UTF32 sur = unescape_unicode((unsigned char *) pe + 2);
1462
- ch = (((ch & 0x3F) << 10) | ((((ch >> 6) & 0xF) + 1) << 16)
1463
- | (sur & 0x3FF));
1464
- pe += 5;
1465
- } else {
1466
- unescape = (char *) "?";
1467
- break;
1468
- }
1469
- }
1470
- unescape_len = convert_UTF32_to_UTF8(buf, ch);
1471
- unescape = buf;
1472
- }
1473
- break;
1474
- default:
1475
- p = pe;
1476
- continue;
1477
- }
1478
- rb_str_buf_cat(result, unescape, unescape_len);
1479
- p = ++pe;
1480
- } else {
1481
- pe++;
1482
- }
1483
- }
1484
- rb_str_buf_cat(result, p, pe - p);
1485
- return result;
2359
+ VALUE result = Qnil;
2360
+ size_t bufferSize = stringEnd - string;
2361
+ char *p = string, *pe = string, *unescape, *bufferStart, *buffer;
2362
+ int unescape_len;
2363
+ char buf[4];
2364
+
2365
+ if (bufferSize > MAX_STACK_BUFFER_SIZE) {
2366
+ bufferStart = buffer = ALLOC_N(char, bufferSize);
2367
+ } else {
2368
+ bufferStart = buffer = ALLOCA_N(char, bufferSize);
2369
+ }
2370
+
2371
+ while (pe < stringEnd) {
2372
+ if (*pe == '\\') {
2373
+ unescape = (char *) "?";
2374
+ unescape_len = 1;
2375
+ if (pe > p) {
2376
+ MEMCPY(buffer, p, char, pe - p);
2377
+ buffer += pe - p;
2378
+ }
2379
+ switch (*++pe) {
2380
+ case 'n':
2381
+ unescape = (char *) "\n";
2382
+ break;
2383
+ case 'r':
2384
+ unescape = (char *) "\r";
2385
+ break;
2386
+ case 't':
2387
+ unescape = (char *) "\t";
2388
+ break;
2389
+ case '"':
2390
+ unescape = (char *) "\"";
2391
+ break;
2392
+ case '\\':
2393
+ unescape = (char *) "\\";
2394
+ break;
2395
+ case 'b':
2396
+ unescape = (char *) "\b";
2397
+ break;
2398
+ case 'f':
2399
+ unescape = (char *) "\f";
2400
+ break;
2401
+ case 'u':
2402
+ if (pe > stringEnd - 4) {
2403
+ if (bufferSize > MAX_STACK_BUFFER_SIZE) {
2404
+ free(bufferStart);
2405
+ }
2406
+ rb_enc_raise(
2407
+ EXC_ENCODING eParserError,
2408
+ "%u: incomplete unicode character escape sequence at '%s'", __LINE__, p
2409
+ );
2410
+ } else {
2411
+ UTF32 ch = unescape_unicode((unsigned char *) ++pe);
2412
+ pe += 3;
2413
+ if (UNI_SUR_HIGH_START == (ch & 0xFC00)) {
2414
+ pe++;
2415
+ if (pe > stringEnd - 6) {
2416
+ if (bufferSize > MAX_STACK_BUFFER_SIZE) {
2417
+ free(bufferStart);
2418
+ }
2419
+ rb_enc_raise(
2420
+ EXC_ENCODING eParserError,
2421
+ "%u: incomplete surrogate pair at '%s'", __LINE__, p
2422
+ );
2423
+ }
2424
+ if (pe[0] == '\\' && pe[1] == 'u') {
2425
+ UTF32 sur = unescape_unicode((unsigned char *) pe + 2);
2426
+ ch = (((ch & 0x3F) << 10) | ((((ch >> 6) & 0xF) + 1) << 16)
2427
+ | (sur & 0x3FF));
2428
+ pe += 5;
2429
+ } else {
2430
+ unescape = (char *) "?";
2431
+ break;
2432
+ }
2433
+ }
2434
+ unescape_len = convert_UTF32_to_UTF8(buf, ch);
2435
+ unescape = buf;
2436
+ }
2437
+ break;
2438
+ default:
2439
+ p = pe;
2440
+ continue;
2441
+ }
2442
+ MEMCPY(buffer, unescape, char, unescape_len);
2443
+ buffer += unescape_len;
2444
+ p = ++pe;
2445
+ } else {
2446
+ pe++;
2447
+ }
2448
+ }
2449
+
2450
+ if (pe > p) {
2451
+ MEMCPY(buffer, p, char, pe - p);
2452
+ buffer += pe - p;
2453
+ }
2454
+
2455
+ # ifdef HAVE_RB_ENC_INTERNED_STR
2456
+ if (intern) {
2457
+ result = rb_enc_interned_str(bufferStart, (long)(buffer - bufferStart), rb_utf8_encoding());
2458
+ } else {
2459
+ result = rb_utf8_str_new(bufferStart, (long)(buffer - bufferStart));
2460
+ }
2461
+ if (bufferSize > MAX_STACK_BUFFER_SIZE) {
2462
+ free(bufferStart);
2463
+ }
2464
+ # else
2465
+ result = rb_utf8_str_new(bufferStart, (long)(buffer - bufferStart));
2466
+
2467
+ if (bufferSize > MAX_STACK_BUFFER_SIZE) {
2468
+ free(bufferStart);
2469
+ }
2470
+
2471
+ if (intern) {
2472
+ # if STR_UMINUS_DEDUPE_FROZEN
2473
+ // Starting from MRI 2.8 it is preferable to freeze the string
2474
+ // before deduplication so that it can be interned directly
2475
+ // otherwise it would be duplicated first which is wasteful.
2476
+ result = rb_funcall(rb_str_freeze(result), i_uminus, 0);
2477
+ # elif STR_UMINUS_DEDUPE
2478
+ // MRI 2.5 and older do not deduplicate strings that are already
2479
+ // frozen.
2480
+ result = rb_funcall(result, i_uminus, 0);
2481
+ # else
2482
+ result = rb_str_freeze(result);
2483
+ # endif
2484
+ }
2485
+ # endif
2486
+
2487
+ if (symbolize) {
2488
+ result = rb_str_intern(result);
2489
+ }
2490
+
2491
+ return result;
1486
2492
  }
1487
2493
 
1488
2494
 
1489
- #line 1490 "parser.c"
1490
2495
  enum {JSON_string_start = 1};
1491
2496
  enum {JSON_string_first_final = 8};
1492
2497
  enum {JSON_string_error = 0};
1493
2498
 
1494
2499
  enum {JSON_string_en_main = 1};
1495
2500
 
2501
+ static const char MAYBE_UNUSED(_JSON_string_nfa_targs)[] = {
2502
+ 0, 0
2503
+ };
2504
+
2505
+ static const char MAYBE_UNUSED(_JSON_string_nfa_offsets)[] = {
2506
+ 0, 0, 0, 0, 0, 0, 0, 0,
2507
+ 0, 0
2508
+ };
2509
+
2510
+ static const char MAYBE_UNUSED(_JSON_string_nfa_push_actions)[] = {
2511
+ 0, 0
2512
+ };
2513
+
2514
+ static const char MAYBE_UNUSED(_JSON_string_nfa_pop_trans)[] = {
2515
+ 0, 0
2516
+ };
2517
+
1496
2518
 
1497
- #line 519 "parser.rl"
2519
+ #line 612 "parser.rl"
1498
2520
 
1499
2521
 
1500
2522
  static int
1501
2523
  match_i(VALUE regexp, VALUE klass, VALUE memo)
1502
2524
  {
1503
- if (regexp == Qundef) return ST_STOP;
1504
- if (RTEST(rb_funcall(klass, i_json_creatable_p, 0)) &&
1505
- RTEST(rb_funcall(regexp, i_match, 1, rb_ary_entry(memo, 0)))) {
1506
- rb_ary_push(memo, klass);
1507
- return ST_STOP;
1508
- }
1509
- return ST_CONTINUE;
2525
+ if (regexp == Qundef) return ST_STOP;
2526
+ if (RTEST(rb_funcall(klass, i_json_creatable_p, 0)) &&
2527
+ RTEST(rb_funcall(regexp, i_match, 1, rb_ary_entry(memo, 0)))) {
2528
+ rb_ary_push(memo, klass);
2529
+ return ST_STOP;
2530
+ }
2531
+ return ST_CONTINUE;
1510
2532
  }
1511
2533
 
1512
2534
  static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result)
1513
2535
  {
1514
- int cs = EVIL;
1515
- VALUE match_string;
2536
+ int cs = EVIL;
2537
+ VALUE match_string;
1516
2538
 
1517
- *result = rb_str_buf_new(0);
1518
2539
 
1519
- #line 1520 "parser.c"
1520
2540
  {
1521
- cs = JSON_string_start;
2541
+ cs = (int)JSON_string_start;
1522
2542
  }
1523
2543
 
1524
- #line 540 "parser.rl"
1525
- json->memo = p;
2544
+ #line 632 "parser.rl"
2545
+
2546
+ json->memo = p;
1526
2547
 
1527
- #line 1528 "parser.c"
1528
2548
  {
1529
- if ( p == pe )
2549
+ if ( p == pe )
1530
2550
  goto _test_eof;
1531
- switch ( cs )
1532
- {
1533
- case 1:
1534
- if ( (*p) == 34 )
1535
- goto st2;
1536
- goto st0;
1537
- st0:
1538
- cs = 0;
1539
- goto _out;
1540
- st2:
1541
- if ( ++p == pe )
2551
+ switch ( cs )
2552
+ {
2553
+ case 1:
2554
+ goto st_case_1;
2555
+ case 0:
2556
+ goto st_case_0;
2557
+ case 2:
2558
+ goto st_case_2;
2559
+ case 8:
2560
+ goto st_case_8;
2561
+ case 3:
2562
+ goto st_case_3;
2563
+ case 4:
2564
+ goto st_case_4;
2565
+ case 5:
2566
+ goto st_case_5;
2567
+ case 6:
2568
+ goto st_case_6;
2569
+ case 7:
2570
+ goto st_case_7;
2571
+ }
2572
+ goto st_out;
2573
+ st_case_1:
2574
+ if ( ( (*( p))) == 34 ) {
2575
+ goto st2;
2576
+ }
2577
+ {
2578
+ goto st0;
2579
+ }
2580
+ st_case_0:
2581
+ st0:
2582
+ cs = 0;
2583
+ goto _out;
2584
+ st2:
2585
+ p+= 1;
2586
+ if ( p == pe )
1542
2587
  goto _test_eof2;
1543
- case 2:
1544
- switch( (*p) ) {
1545
- case 34: goto tr2;
1546
- case 92: goto st3;
1547
- }
1548
- if ( 0 <= (*p) && (*p) <= 31 )
1549
- goto st0;
1550
- goto st2;
1551
- tr2:
1552
- #line 505 "parser.rl"
1553
- {
1554
- *result = json_string_unescape(*result, json->memo + 1, p);
1555
- if (NIL_P(*result)) {
1556
- p--;
1557
- {p++; cs = 8; goto _out;}
1558
- } else {
1559
- FORCE_UTF8(*result);
1560
- {p = (( p + 1))-1;}
1561
- }
1562
- }
1563
- #line 516 "parser.rl"
1564
- { p--; {p++; cs = 8; goto _out;} }
1565
- goto st8;
1566
- st8:
1567
- if ( ++p == pe )
2588
+ st_case_2:
2589
+ switch( ( (*( p))) ) {
2590
+ case 34: {
2591
+ goto ctr2;
2592
+ }
2593
+ case 92: {
2594
+ goto st3;
2595
+ }
2596
+ }
2597
+ if ( 0 <= (signed char)(*(p)) && (*(p)) <= 31 ) {
2598
+ goto st0;
2599
+ }
2600
+ {
2601
+ goto st2;
2602
+ }
2603
+ ctr2:
2604
+ {
2605
+ #line 599 "parser.rl"
2606
+
2607
+ *result = json_string_unescape(json->memo + 1, p, json->parsing_name || json-> freeze, json->parsing_name && json->symbolize_names);
2608
+ if (NIL_P(*result)) {
2609
+ {p = p - 1; }
2610
+ {p+= 1; cs = 8; goto _out;}
2611
+ } else {
2612
+ {p = (( p + 1))-1;}
2613
+
2614
+ }
2615
+ }
2616
+ {
2617
+ #line 609 "parser.rl"
2618
+ {p = p - 1; } {p+= 1; cs = 8; goto _out;} }
2619
+
2620
+ goto st8;
2621
+ st8:
2622
+ p+= 1;
2623
+ if ( p == pe )
1568
2624
  goto _test_eof8;
1569
- case 8:
1570
- #line 1571 "parser.c"
1571
- goto st0;
1572
- st3:
1573
- if ( ++p == pe )
2625
+ st_case_8:
2626
+ {
2627
+ goto st0;
2628
+ }
2629
+ st3:
2630
+ p+= 1;
2631
+ if ( p == pe )
1574
2632
  goto _test_eof3;
1575
- case 3:
1576
- if ( (*p) == 117 )
1577
- goto st4;
1578
- if ( 0 <= (*p) && (*p) <= 31 )
1579
- goto st0;
1580
- goto st2;
1581
- st4:
1582
- if ( ++p == pe )
2633
+ st_case_3:
2634
+ if ( ( (*( p))) == 117 ) {
2635
+ goto st4;
2636
+ }
2637
+ if ( 0 <= (signed char)(*(p)) && (*(p)) <= 31 ) {
2638
+ goto st0;
2639
+ }
2640
+ {
2641
+ goto st2;
2642
+ }
2643
+ st4:
2644
+ p+= 1;
2645
+ if ( p == pe )
1583
2646
  goto _test_eof4;
1584
- case 4:
1585
- if ( (*p) < 65 ) {
1586
- if ( 48 <= (*p) && (*p) <= 57 )
2647
+ st_case_4:
2648
+ if ( ( (*( p))) < 65 ) {
2649
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2650
+ goto st5;
2651
+ }
2652
+ } else if ( ( (*( p))) > 70 ) {
2653
+ if ( 97 <= ( (*( p))) && ( (*( p))) <= 102 ) {
2654
+ goto st5;
2655
+ }
2656
+ } else {
1587
2657
  goto st5;
1588
- } else if ( (*p) > 70 ) {
1589
- if ( 97 <= (*p) && (*p) <= 102 )
1590
- goto st5;
1591
- } else
1592
- goto st5;
1593
- goto st0;
1594
- st5:
1595
- if ( ++p == pe )
2658
+ }
2659
+ {
2660
+ goto st0;
2661
+ }
2662
+ st5:
2663
+ p+= 1;
2664
+ if ( p == pe )
1596
2665
  goto _test_eof5;
1597
- case 5:
1598
- if ( (*p) < 65 ) {
1599
- if ( 48 <= (*p) && (*p) <= 57 )
1600
- goto st6;
1601
- } else if ( (*p) > 70 ) {
1602
- if ( 97 <= (*p) && (*p) <= 102 )
2666
+ st_case_5:
2667
+ if ( ( (*( p))) < 65 ) {
2668
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2669
+ goto st6;
2670
+ }
2671
+ } else if ( ( (*( p))) > 70 ) {
2672
+ if ( 97 <= ( (*( p))) && ( (*( p))) <= 102 ) {
2673
+ goto st6;
2674
+ }
2675
+ } else {
1603
2676
  goto st6;
1604
- } else
1605
- goto st6;
1606
- goto st0;
1607
- st6:
1608
- if ( ++p == pe )
2677
+ }
2678
+ {
2679
+ goto st0;
2680
+ }
2681
+ st6:
2682
+ p+= 1;
2683
+ if ( p == pe )
1609
2684
  goto _test_eof6;
1610
- case 6:
1611
- if ( (*p) < 65 ) {
1612
- if ( 48 <= (*p) && (*p) <= 57 )
2685
+ st_case_6:
2686
+ if ( ( (*( p))) < 65 ) {
2687
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2688
+ goto st7;
2689
+ }
2690
+ } else if ( ( (*( p))) > 70 ) {
2691
+ if ( 97 <= ( (*( p))) && ( (*( p))) <= 102 ) {
2692
+ goto st7;
2693
+ }
2694
+ } else {
1613
2695
  goto st7;
1614
- } else if ( (*p) > 70 ) {
1615
- if ( 97 <= (*p) && (*p) <= 102 )
1616
- goto st7;
1617
- } else
1618
- goto st7;
1619
- goto st0;
1620
- st7:
1621
- if ( ++p == pe )
2696
+ }
2697
+ {
2698
+ goto st0;
2699
+ }
2700
+ st7:
2701
+ p+= 1;
2702
+ if ( p == pe )
1622
2703
  goto _test_eof7;
1623
- case 7:
1624
- if ( (*p) < 65 ) {
1625
- if ( 48 <= (*p) && (*p) <= 57 )
1626
- goto st2;
1627
- } else if ( (*p) > 70 ) {
1628
- if ( 97 <= (*p) && (*p) <= 102 )
2704
+ st_case_7:
2705
+ if ( ( (*( p))) < 65 ) {
2706
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
2707
+ goto st2;
2708
+ }
2709
+ } else if ( ( (*( p))) > 70 ) {
2710
+ if ( 97 <= ( (*( p))) && ( (*( p))) <= 102 ) {
2711
+ goto st2;
2712
+ }
2713
+ } else {
1629
2714
  goto st2;
1630
- } else
1631
- goto st2;
1632
- goto st0;
2715
+ }
2716
+ {
2717
+ goto st0;
2718
+ }
2719
+ st_out:
2720
+ _test_eof2: cs = 2; goto _test_eof;
2721
+ _test_eof8: cs = 8; goto _test_eof;
2722
+ _test_eof3: cs = 3; goto _test_eof;
2723
+ _test_eof4: cs = 4; goto _test_eof;
2724
+ _test_eof5: cs = 5; goto _test_eof;
2725
+ _test_eof6: cs = 6; goto _test_eof;
2726
+ _test_eof7: cs = 7; goto _test_eof;
2727
+
2728
+ _test_eof: {}
2729
+ _out: {}
2730
+ }
2731
+
2732
+ #line 634 "parser.rl"
2733
+
2734
+
2735
+ if (json->create_additions && RTEST(match_string = json->match_string)) {
2736
+ VALUE klass;
2737
+ VALUE memo = rb_ary_new2(2);
2738
+ rb_ary_push(memo, *result);
2739
+ rb_hash_foreach(match_string, match_i, memo);
2740
+ klass = rb_ary_entry(memo, 1);
2741
+ if (RTEST(klass)) {
2742
+ *result = rb_funcall(klass, i_json_create, 1, *result);
2743
+ }
2744
+ }
2745
+
2746
+ if (cs >= JSON_string_first_final) {
2747
+ return p + 1;
2748
+ } else {
2749
+ return NULL;
1633
2750
  }
1634
- _test_eof2: cs = 2; goto _test_eof;
1635
- _test_eof8: cs = 8; goto _test_eof;
1636
- _test_eof3: cs = 3; goto _test_eof;
1637
- _test_eof4: cs = 4; goto _test_eof;
1638
- _test_eof5: cs = 5; goto _test_eof;
1639
- _test_eof6: cs = 6; goto _test_eof;
1640
- _test_eof7: cs = 7; goto _test_eof;
1641
-
1642
- _test_eof: {}
1643
- _out: {}
1644
- }
1645
-
1646
- #line 542 "parser.rl"
1647
-
1648
- if (json->create_additions && RTEST(match_string = json->match_string)) {
1649
- VALUE klass;
1650
- VALUE memo = rb_ary_new2(2);
1651
- rb_ary_push(memo, *result);
1652
- rb_hash_foreach(match_string, match_i, memo);
1653
- klass = rb_ary_entry(memo, 1);
1654
- if (RTEST(klass)) {
1655
- *result = rb_funcall(klass, i_json_create, 1, *result);
1656
- }
1657
- }
1658
-
1659
- if (json->symbolize_names && json->parsing_name) {
1660
- *result = rb_str_intern(*result);
1661
- } else {
1662
- rb_str_resize(*result, RSTRING_LEN(*result));
1663
- }
1664
- if (cs >= JSON_string_first_final) {
1665
- return p + 1;
1666
- } else {
1667
- return NULL;
1668
- }
1669
2751
  }
1670
2752
 
1671
2753
  /*
1672
- * Document-class: JSON::Ext::Parser
1673
- *
1674
- * This is the JSON parser implemented as a C extension. It can be configured
1675
- * to be used by setting
1676
- *
1677
- * JSON.parser = JSON::Ext::Parser
1678
- *
1679
- * with the method parser= in JSON.
1680
- *
1681
- */
2754
+ * Document-class: JSON::Ext::Parser
2755
+ *
2756
+ * This is the JSON parser implemented as a C extension. It can be configured
2757
+ * to be used by setting
2758
+ *
2759
+ * JSON.parser = JSON::Ext::Parser
2760
+ *
2761
+ * with the method parser= in JSON.
2762
+ *
2763
+ */
1682
2764
 
1683
2765
  static VALUE convert_encoding(VALUE source)
1684
2766
  {
1685
- #ifdef HAVE_RUBY_ENCODING_H
1686
- rb_encoding *enc = rb_enc_get(source);
1687
- if (enc == rb_ascii8bit_encoding()) {
1688
- if (OBJ_FROZEN(source)) {
1689
- source = rb_str_dup(source);
1690
- }
1691
- FORCE_UTF8(source);
1692
- } else {
1693
- source = rb_str_conv_enc(source, rb_enc_get(source), rb_utf8_encoding());
1694
- }
1695
- #endif
1696
- return source;
2767
+ #ifdef HAVE_RUBY_ENCODING_H
2768
+ rb_encoding *enc = rb_enc_get(source);
2769
+ if (enc == rb_ascii8bit_encoding()) {
2770
+ if (OBJ_FROZEN(source)) {
2771
+ source = rb_str_dup(source);
2772
+ }
2773
+ FORCE_UTF8(source);
2774
+ } else {
2775
+ source = rb_str_conv_enc(source, rb_enc_get(source), rb_utf8_encoding());
2776
+ }
2777
+ #endif
2778
+ return source;
1697
2779
  }
1698
2780
 
1699
2781
  /*
1700
- * call-seq: new(source, opts => {})
1701
- *
1702
- * Creates a new JSON::Ext::Parser instance for the string _source_.
1703
- *
1704
- * Creates a new JSON::Ext::Parser instance for the string _source_.
1705
- *
1706
- * It will be configured by the _opts_ hash. _opts_ can have the following
1707
- * keys:
1708
- *
1709
- * _opts_ can have the following keys:
1710
- * * *max_nesting*: The maximum depth of nesting allowed in the parsed data
1711
- * structures. Disable depth checking with :max_nesting => false|nil|0, it
1712
- * defaults to 100.
1713
- * * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
1714
- * defiance of RFC 4627 to be parsed by the Parser. This option defaults to
1715
- * false.
1716
- * * *symbolize_names*: If set to true, returns symbols for the names
1717
- * (keys) in a JSON object. Otherwise strings are returned, which is
1718
- * also the default. It's not possible to use this option in
1719
- * conjunction with the *create_additions* option.
1720
- * * *create_additions*: If set to false, the Parser doesn't create
1721
- * additions even if a matching class and create_id was found. This option
1722
- * defaults to false.
1723
- * * *object_class*: Defaults to Hash
1724
- * * *array_class*: Defaults to Array
1725
- */
2782
+ * call-seq: new(source, opts => {})
2783
+ *
2784
+ * Creates a new JSON::Ext::Parser instance for the string _source_.
2785
+ *
2786
+ * Creates a new JSON::Ext::Parser instance for the string _source_.
2787
+ *
2788
+ * It will be configured by the _opts_ hash. _opts_ can have the following
2789
+ * keys:
2790
+ *
2791
+ * _opts_ can have the following keys:
2792
+ * * *max_nesting*: The maximum depth of nesting allowed in the parsed data
2793
+ * structures. Disable depth checking with :max_nesting => false|nil|0, it
2794
+ * defaults to 100.
2795
+ * * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
2796
+ * defiance of RFC 4627 to be parsed by the Parser. This option defaults to
2797
+ * false.
2798
+ * * *symbolize_names*: If set to true, returns symbols for the names
2799
+ * (keys) in a JSON object. Otherwise strings are returned, which is
2800
+ * also the default. It's not possible to use this option in
2801
+ * conjunction with the *create_additions* option.
2802
+ * * *create_additions*: If set to false, the Parser doesn't create
2803
+ * additions even if a matching class and create_id was found. This option
2804
+ * defaults to false.
2805
+ * * *object_class*: Defaults to Hash
2806
+ * * *array_class*: Defaults to Array
2807
+ */
1726
2808
  static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
1727
2809
  {
1728
- VALUE source, opts;
1729
- GET_PARSER_INIT;
1730
-
1731
- if (json->Vsource) {
1732
- rb_raise(rb_eTypeError, "already initialized instance");
1733
- }
1734
- #ifdef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
1735
- rb_scan_args(argc, argv, "1:", &source, &opts);
1736
- #else
1737
- rb_scan_args(argc, argv, "11", &source, &opts);
1738
- #endif
1739
- if (!NIL_P(opts)) {
1740
- #ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
1741
- opts = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
1742
- if (NIL_P(opts)) {
1743
- rb_raise(rb_eArgError, "opts needs to be like a hash");
1744
- } else {
1745
- #endif
1746
- VALUE tmp = ID2SYM(i_max_nesting);
1747
- if (option_given_p(opts, tmp)) {
1748
- VALUE max_nesting = rb_hash_aref(opts, tmp);
1749
- if (RTEST(max_nesting)) {
1750
- Check_Type(max_nesting, T_FIXNUM);
1751
- json->max_nesting = FIX2INT(max_nesting);
1752
- } else {
1753
- json->max_nesting = 0;
1754
- }
1755
- } else {
1756
- json->max_nesting = 100;
1757
- }
1758
- tmp = ID2SYM(i_allow_nan);
1759
- if (option_given_p(opts, tmp)) {
1760
- json->allow_nan = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
1761
- } else {
1762
- json->allow_nan = 0;
1763
- }
1764
- tmp = ID2SYM(i_symbolize_names);
1765
- if (option_given_p(opts, tmp)) {
1766
- json->symbolize_names = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
1767
- } else {
1768
- json->symbolize_names = 0;
1769
- }
1770
- tmp = ID2SYM(i_create_additions);
1771
- if (option_given_p(opts, tmp)) {
1772
- json->create_additions = RTEST(rb_hash_aref(opts, tmp));
1773
- } else {
1774
- json->create_additions = 0;
1775
- }
1776
- if (json->symbolize_names && json->create_additions) {
1777
- rb_raise(rb_eArgError,
1778
- "options :symbolize_names and :create_additions cannot be "
1779
- " used in conjunction");
1780
- }
1781
- tmp = ID2SYM(i_create_id);
1782
- if (option_given_p(opts, tmp)) {
1783
- json->create_id = rb_hash_aref(opts, tmp);
1784
- } else {
1785
- json->create_id = rb_funcall(mJSON, i_create_id, 0);
1786
- }
1787
- tmp = ID2SYM(i_object_class);
1788
- if (option_given_p(opts, tmp)) {
1789
- json->object_class = rb_hash_aref(opts, tmp);
1790
- } else {
1791
- json->object_class = Qnil;
1792
- }
1793
- tmp = ID2SYM(i_array_class);
1794
- if (option_given_p(opts, tmp)) {
1795
- json->array_class = rb_hash_aref(opts, tmp);
1796
- } else {
1797
- json->array_class = Qnil;
1798
- }
1799
- tmp = ID2SYM(i_decimal_class);
1800
- if (option_given_p(opts, tmp)) {
1801
- json->decimal_class = rb_hash_aref(opts, tmp);
1802
- } else {
1803
- json->decimal_class = Qnil;
1804
- }
1805
- tmp = ID2SYM(i_match_string);
1806
- if (option_given_p(opts, tmp)) {
1807
- VALUE match_string = rb_hash_aref(opts, tmp);
1808
- json->match_string = RTEST(match_string) ? match_string : Qnil;
1809
- } else {
1810
- json->match_string = Qnil;
1811
- }
1812
- #ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
1813
- }
1814
- #endif
1815
- } else {
1816
- json->max_nesting = 100;
1817
- json->allow_nan = 0;
1818
- json->create_additions = 1;
1819
- json->create_id = rb_funcall(mJSON, i_create_id, 0);
1820
- json->object_class = Qnil;
1821
- json->array_class = Qnil;
1822
- json->decimal_class = Qnil;
1823
- }
1824
- source = convert_encoding(StringValue(source));
1825
- StringValue(source);
1826
- json->len = RSTRING_LEN(source);
1827
- json->source = RSTRING_PTR(source);;
1828
- json->Vsource = source;
1829
- return self;
2810
+ VALUE source, opts;
2811
+ GET_PARSER_INIT;
2812
+
2813
+ if (json->Vsource) {
2814
+ rb_raise(rb_eTypeError, "already initialized instance");
2815
+ }
2816
+ #ifdef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
2817
+ rb_scan_args(argc, argv, "1:", &source, &opts);
2818
+ #else
2819
+ rb_scan_args(argc, argv, "11", &source, &opts);
2820
+ #endif
2821
+ if (!NIL_P(opts)) {
2822
+ #ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
2823
+ opts = rb_convert_type(opts, T_HASH, "Hash", "to_hash");
2824
+ if (NIL_P(opts)) {
2825
+ rb_raise(rb_eArgError, "opts needs to be like a hash");
2826
+ } else {
2827
+ #endif
2828
+ VALUE tmp = ID2SYM(i_max_nesting);
2829
+ if (option_given_p(opts, tmp)) {
2830
+ VALUE max_nesting = rb_hash_aref(opts, tmp);
2831
+ if (RTEST(max_nesting)) {
2832
+ Check_Type(max_nesting, T_FIXNUM);
2833
+ json->max_nesting = FIX2INT(max_nesting);
2834
+ } else {
2835
+ json->max_nesting = 0;
2836
+ }
2837
+ } else {
2838
+ json->max_nesting = 100;
2839
+ }
2840
+ tmp = ID2SYM(i_allow_nan);
2841
+ if (option_given_p(opts, tmp)) {
2842
+ json->allow_nan = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
2843
+ } else {
2844
+ json->allow_nan = 0;
2845
+ }
2846
+ tmp = ID2SYM(i_symbolize_names);
2847
+ if (option_given_p(opts, tmp)) {
2848
+ json->symbolize_names = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
2849
+ } else {
2850
+ json->symbolize_names = 0;
2851
+ }
2852
+ tmp = ID2SYM(i_freeze);
2853
+ if (option_given_p(opts, tmp)) {
2854
+ json->freeze = RTEST(rb_hash_aref(opts, tmp)) ? 1 : 0;
2855
+ } else {
2856
+ json->freeze = 0;
2857
+ }
2858
+ tmp = ID2SYM(i_create_additions);
2859
+ if (option_given_p(opts, tmp)) {
2860
+ json->create_additions = RTEST(rb_hash_aref(opts, tmp));
2861
+ } else {
2862
+ json->create_additions = 0;
2863
+ }
2864
+ if (json->symbolize_names && json->create_additions) {
2865
+ rb_raise(rb_eArgError,
2866
+ "options :symbolize_names and :create_additions cannot be "
2867
+ " used in conjunction");
2868
+ }
2869
+ tmp = ID2SYM(i_create_id);
2870
+ if (option_given_p(opts, tmp)) {
2871
+ json->create_id = rb_hash_aref(opts, tmp);
2872
+ } else {
2873
+ json->create_id = rb_funcall(mJSON, i_create_id, 0);
2874
+ }
2875
+ tmp = ID2SYM(i_object_class);
2876
+ if (option_given_p(opts, tmp)) {
2877
+ json->object_class = rb_hash_aref(opts, tmp);
2878
+ } else {
2879
+ json->object_class = Qnil;
2880
+ }
2881
+ tmp = ID2SYM(i_array_class);
2882
+ if (option_given_p(opts, tmp)) {
2883
+ json->array_class = rb_hash_aref(opts, tmp);
2884
+ } else {
2885
+ json->array_class = Qnil;
2886
+ }
2887
+ tmp = ID2SYM(i_decimal_class);
2888
+ if (option_given_p(opts, tmp)) {
2889
+ json->decimal_class = rb_hash_aref(opts, tmp);
2890
+ } else {
2891
+ json->decimal_class = Qnil;
2892
+ }
2893
+ tmp = ID2SYM(i_match_string);
2894
+ if (option_given_p(opts, tmp)) {
2895
+ VALUE match_string = rb_hash_aref(opts, tmp);
2896
+ json->match_string = RTEST(match_string) ? match_string : Qnil;
2897
+ } else {
2898
+ json->match_string = Qnil;
2899
+ }
2900
+ #ifndef HAVE_RB_SCAN_ARGS_OPTIONAL_HASH
2901
+ }
2902
+ #endif
2903
+ } else {
2904
+ json->max_nesting = 100;
2905
+ json->allow_nan = 0;
2906
+ json->create_additions = 0;
2907
+ json->create_id = rb_funcall(mJSON, i_create_id, 0);
2908
+ json->object_class = Qnil;
2909
+ json->array_class = Qnil;
2910
+ json->decimal_class = Qnil;
2911
+ }
2912
+ source = convert_encoding(StringValue(source));
2913
+ StringValue(source);
2914
+ json->len = RSTRING_LEN(source);
2915
+ json->source = RSTRING_PTR(source);;
2916
+ json->Vsource = source;
2917
+ return self;
1830
2918
  }
1831
2919
 
1832
2920
 
1833
- #line 1834 "parser.c"
1834
2921
  enum {JSON_start = 1};
1835
2922
  enum {JSON_first_final = 10};
1836
2923
  enum {JSON_error = 0};
1837
2924
 
1838
2925
  enum {JSON_en_main = 1};
1839
2926
 
2927
+ static const char MAYBE_UNUSED(_JSON_nfa_targs)[] = {
2928
+ 0, 0
2929
+ };
2930
+
2931
+ static const char MAYBE_UNUSED(_JSON_nfa_offsets)[] = {
2932
+ 0, 0, 0, 0, 0, 0, 0, 0,
2933
+ 0, 0, 0, 0
2934
+ };
2935
+
2936
+ static const char MAYBE_UNUSED(_JSON_nfa_push_actions)[] = {
2937
+ 0, 0
2938
+ };
2939
+
2940
+ static const char MAYBE_UNUSED(_JSON_nfa_pop_trans)[] = {
2941
+ 0, 0
2942
+ };
2943
+
1840
2944
 
1841
- #line 742 "parser.rl"
2945
+ #line 835 "parser.rl"
1842
2946
 
1843
2947
 
1844
2948
  /*
1845
- * call-seq: parse()
1846
- *
1847
- * Parses the current JSON text _source_ and returns the complete data
1848
- * structure as a result.
1849
- */
2949
+ * call-seq: parse()
2950
+ *
2951
+ * Parses the current JSON text _source_ and returns the complete data
2952
+ * structure as a result.
2953
+ */
1850
2954
  static VALUE cParser_parse(VALUE self)
1851
2955
  {
1852
- char *p, *pe;
1853
- int cs = EVIL;
1854
- VALUE result = Qnil;
1855
- GET_PARSER;
2956
+ char *p, *pe;
2957
+ int cs = EVIL;
2958
+ VALUE result = Qnil;
2959
+ GET_PARSER;
1856
2960
 
1857
2961
 
1858
- #line 1859 "parser.c"
1859
2962
  {
1860
- cs = JSON_start;
2963
+ cs = (int)JSON_start;
1861
2964
  }
1862
2965
 
1863
- #line 758 "parser.rl"
1864
- p = json->source;
1865
- pe = p + json->len;
2966
+ #line 851 "parser.rl"
2967
+
2968
+ p = json->source;
2969
+ pe = p + json->len;
1866
2970
 
1867
- #line 1868 "parser.c"
1868
2971
  {
1869
- if ( p == pe )
2972
+ if ( p == pe )
1870
2973
  goto _test_eof;
1871
- switch ( cs )
1872
- {
1873
- st1:
1874
- if ( ++p == pe )
2974
+ switch ( cs )
2975
+ {
2976
+ case 1:
2977
+ goto st_case_1;
2978
+ case 0:
2979
+ goto st_case_0;
2980
+ case 10:
2981
+ goto st_case_10;
2982
+ case 2:
2983
+ goto st_case_2;
2984
+ case 3:
2985
+ goto st_case_3;
2986
+ case 4:
2987
+ goto st_case_4;
2988
+ case 5:
2989
+ goto st_case_5;
2990
+ case 6:
2991
+ goto st_case_6;
2992
+ case 7:
2993
+ goto st_case_7;
2994
+ case 8:
2995
+ goto st_case_8;
2996
+ case 9:
2997
+ goto st_case_9;
2998
+ }
2999
+ goto st_out;
3000
+ st1:
3001
+ p+= 1;
3002
+ if ( p == pe )
1875
3003
  goto _test_eof1;
1876
- case 1:
1877
- switch( (*p) ) {
1878
- case 13: goto st1;
1879
- case 32: goto st1;
1880
- case 34: goto tr2;
1881
- case 45: goto tr2;
1882
- case 47: goto st6;
1883
- case 73: goto tr2;
1884
- case 78: goto tr2;
1885
- case 91: goto tr2;
1886
- case 102: goto tr2;
1887
- case 110: goto tr2;
1888
- case 116: goto tr2;
1889
- case 123: goto tr2;
1890
- }
1891
- if ( (*p) > 10 ) {
1892
- if ( 48 <= (*p) && (*p) <= 57 )
1893
- goto tr2;
1894
- } else if ( (*p) >= 9 )
1895
- goto st1;
1896
- goto st0;
1897
- st0:
1898
- cs = 0;
1899
- goto _out;
1900
- tr2:
1901
- #line 734 "parser.rl"
1902
- {
1903
- char *np = JSON_parse_value(json, p, pe, &result, 0);
1904
- if (np == NULL) { p--; {p++; cs = 10; goto _out;} } else {p = (( np))-1;}
1905
- }
1906
- goto st10;
1907
- st10:
1908
- if ( ++p == pe )
1909
- goto _test_eof10;
1910
- case 10:
1911
- #line 1912 "parser.c"
1912
- switch( (*p) ) {
1913
- case 13: goto st10;
1914
- case 32: goto st10;
1915
- case 47: goto st2;
1916
- }
1917
- if ( 9 <= (*p) && (*p) <= 10 )
3004
+ st_case_1:
3005
+ switch( ( (*( p))) ) {
3006
+ case 13: {
3007
+ goto st1;
3008
+ }
3009
+ case 32: {
3010
+ goto st1;
3011
+ }
3012
+ case 34: {
3013
+ goto ctr2;
3014
+ }
3015
+ case 45: {
3016
+ goto ctr2;
3017
+ }
3018
+ case 47: {
3019
+ goto st6;
3020
+ }
3021
+ case 73: {
3022
+ goto ctr2;
3023
+ }
3024
+ case 78: {
3025
+ goto ctr2;
3026
+ }
3027
+ case 91: {
3028
+ goto ctr2;
3029
+ }
3030
+ case 102: {
3031
+ goto ctr2;
3032
+ }
3033
+ case 110: {
3034
+ goto ctr2;
3035
+ }
3036
+ case 116: {
3037
+ goto ctr2;
3038
+ }
3039
+ case 123: {
3040
+ goto ctr2;
3041
+ }
3042
+ }
3043
+ if ( ( (*( p))) > 10 ) {
3044
+ if ( 48 <= ( (*( p))) && ( (*( p))) <= 57 ) {
3045
+ goto ctr2;
3046
+ }
3047
+ } else if ( ( (*( p))) >= 9 ) {
3048
+ goto st1;
3049
+ }
3050
+ {
3051
+ goto st0;
3052
+ }
3053
+ st_case_0:
3054
+ st0:
3055
+ cs = 0;
3056
+ goto _out;
3057
+ ctr2:
3058
+ {
3059
+ #line 827 "parser.rl"
3060
+
3061
+ char *np = JSON_parse_value(json, p, pe, &result, 0);
3062
+ if (np == NULL) { {p = p - 1; } {p+= 1; cs = 10; goto _out;} } else {p = (( np))-1;}
3063
+
3064
+ }
3065
+
1918
3066
  goto st10;
1919
- goto st0;
1920
- st2:
1921
- if ( ++p == pe )
3067
+ st10:
3068
+ p+= 1;
3069
+ if ( p == pe )
3070
+ goto _test_eof10;
3071
+ st_case_10:
3072
+ switch( ( (*( p))) ) {
3073
+ case 13: {
3074
+ goto st10;
3075
+ }
3076
+ case 32: {
3077
+ goto st10;
3078
+ }
3079
+ case 47: {
3080
+ goto st2;
3081
+ }
3082
+ }
3083
+ if ( 9 <= ( (*( p))) && ( (*( p))) <= 10 ) {
3084
+ goto st10;
3085
+ }
3086
+ {
3087
+ goto st0;
3088
+ }
3089
+ st2:
3090
+ p+= 1;
3091
+ if ( p == pe )
1922
3092
  goto _test_eof2;
1923
- case 2:
1924
- switch( (*p) ) {
1925
- case 42: goto st3;
1926
- case 47: goto st5;
1927
- }
1928
- goto st0;
1929
- st3:
1930
- if ( ++p == pe )
3093
+ st_case_2:
3094
+ switch( ( (*( p))) ) {
3095
+ case 42: {
3096
+ goto st3;
3097
+ }
3098
+ case 47: {
3099
+ goto st5;
3100
+ }
3101
+ }
3102
+ {
3103
+ goto st0;
3104
+ }
3105
+ st3:
3106
+ p+= 1;
3107
+ if ( p == pe )
1931
3108
  goto _test_eof3;
1932
- case 3:
1933
- if ( (*p) == 42 )
1934
- goto st4;
1935
- goto st3;
1936
- st4:
1937
- if ( ++p == pe )
3109
+ st_case_3:
3110
+ if ( ( (*( p))) == 42 ) {
3111
+ goto st4;
3112
+ }
3113
+ {
3114
+ goto st3;
3115
+ }
3116
+ st4:
3117
+ p+= 1;
3118
+ if ( p == pe )
1938
3119
  goto _test_eof4;
1939
- case 4:
1940
- switch( (*p) ) {
1941
- case 42: goto st4;
1942
- case 47: goto st10;
1943
- }
1944
- goto st3;
1945
- st5:
1946
- if ( ++p == pe )
3120
+ st_case_4:
3121
+ switch( ( (*( p))) ) {
3122
+ case 42: {
3123
+ goto st4;
3124
+ }
3125
+ case 47: {
3126
+ goto st10;
3127
+ }
3128
+ }
3129
+ {
3130
+ goto st3;
3131
+ }
3132
+ st5:
3133
+ p+= 1;
3134
+ if ( p == pe )
1947
3135
  goto _test_eof5;
1948
- case 5:
1949
- if ( (*p) == 10 )
1950
- goto st10;
1951
- goto st5;
1952
- st6:
1953
- if ( ++p == pe )
3136
+ st_case_5:
3137
+ if ( ( (*( p))) == 10 ) {
3138
+ goto st10;
3139
+ }
3140
+ {
3141
+ goto st5;
3142
+ }
3143
+ st6:
3144
+ p+= 1;
3145
+ if ( p == pe )
1954
3146
  goto _test_eof6;
1955
- case 6:
1956
- switch( (*p) ) {
1957
- case 42: goto st7;
1958
- case 47: goto st9;
1959
- }
1960
- goto st0;
1961
- st7:
1962
- if ( ++p == pe )
3147
+ st_case_6:
3148
+ switch( ( (*( p))) ) {
3149
+ case 42: {
3150
+ goto st7;
3151
+ }
3152
+ case 47: {
3153
+ goto st9;
3154
+ }
3155
+ }
3156
+ {
3157
+ goto st0;
3158
+ }
3159
+ st7:
3160
+ p+= 1;
3161
+ if ( p == pe )
1963
3162
  goto _test_eof7;
1964
- case 7:
1965
- if ( (*p) == 42 )
1966
- goto st8;
1967
- goto st7;
1968
- st8:
1969
- if ( ++p == pe )
3163
+ st_case_7:
3164
+ if ( ( (*( p))) == 42 ) {
3165
+ goto st8;
3166
+ }
3167
+ {
3168
+ goto st7;
3169
+ }
3170
+ st8:
3171
+ p+= 1;
3172
+ if ( p == pe )
1970
3173
  goto _test_eof8;
1971
- case 8:
1972
- switch( (*p) ) {
1973
- case 42: goto st8;
1974
- case 47: goto st1;
1975
- }
1976
- goto st7;
1977
- st9:
1978
- if ( ++p == pe )
3174
+ st_case_8:
3175
+ switch( ( (*( p))) ) {
3176
+ case 42: {
3177
+ goto st8;
3178
+ }
3179
+ case 47: {
3180
+ goto st1;
3181
+ }
3182
+ }
3183
+ {
3184
+ goto st7;
3185
+ }
3186
+ st9:
3187
+ p+= 1;
3188
+ if ( p == pe )
1979
3189
  goto _test_eof9;
1980
- case 9:
1981
- if ( (*p) == 10 )
1982
- goto st1;
1983
- goto st9;
3190
+ st_case_9:
3191
+ if ( ( (*( p))) == 10 ) {
3192
+ goto st1;
3193
+ }
3194
+ {
3195
+ goto st9;
3196
+ }
3197
+ st_out:
3198
+ _test_eof1: cs = 1; goto _test_eof;
3199
+ _test_eof10: cs = 10; goto _test_eof;
3200
+ _test_eof2: cs = 2; goto _test_eof;
3201
+ _test_eof3: cs = 3; goto _test_eof;
3202
+ _test_eof4: cs = 4; goto _test_eof;
3203
+ _test_eof5: cs = 5; goto _test_eof;
3204
+ _test_eof6: cs = 6; goto _test_eof;
3205
+ _test_eof7: cs = 7; goto _test_eof;
3206
+ _test_eof8: cs = 8; goto _test_eof;
3207
+ _test_eof9: cs = 9; goto _test_eof;
3208
+
3209
+ _test_eof: {}
3210
+ _out: {}
3211
+ }
3212
+
3213
+ #line 854 "parser.rl"
3214
+
3215
+
3216
+ if (cs >= JSON_first_final && p == pe) {
3217
+ return result;
3218
+ } else {
3219
+ rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
3220
+ return Qnil;
1984
3221
  }
1985
- _test_eof1: cs = 1; goto _test_eof;
1986
- _test_eof10: cs = 10; goto _test_eof;
1987
- _test_eof2: cs = 2; goto _test_eof;
1988
- _test_eof3: cs = 3; goto _test_eof;
1989
- _test_eof4: cs = 4; goto _test_eof;
1990
- _test_eof5: cs = 5; goto _test_eof;
1991
- _test_eof6: cs = 6; goto _test_eof;
1992
- _test_eof7: cs = 7; goto _test_eof;
1993
- _test_eof8: cs = 8; goto _test_eof;
1994
- _test_eof9: cs = 9; goto _test_eof;
1995
-
1996
- _test_eof: {}
1997
- _out: {}
1998
- }
1999
-
2000
- #line 761 "parser.rl"
2001
-
2002
- if (cs >= JSON_first_final && p == pe) {
2003
- return result;
2004
- } else {
2005
- rb_enc_raise(EXC_ENCODING eParserError, "%u: unexpected token at '%s'", __LINE__, p);
2006
- return Qnil;
2007
- }
2008
3222
  }
2009
3223
 
2010
3224
  static void JSON_mark(void *ptr)
2011
3225
  {
2012
- JSON_Parser *json = ptr;
2013
- rb_gc_mark_maybe(json->Vsource);
2014
- rb_gc_mark_maybe(json->create_id);
2015
- rb_gc_mark_maybe(json->object_class);
2016
- rb_gc_mark_maybe(json->array_class);
2017
- rb_gc_mark_maybe(json->decimal_class);
2018
- rb_gc_mark_maybe(json->match_string);
3226
+ JSON_Parser *json = ptr;
3227
+ rb_gc_mark_maybe(json->Vsource);
3228
+ rb_gc_mark_maybe(json->create_id);
3229
+ rb_gc_mark_maybe(json->object_class);
3230
+ rb_gc_mark_maybe(json->array_class);
3231
+ rb_gc_mark_maybe(json->decimal_class);
3232
+ rb_gc_mark_maybe(json->match_string);
2019
3233
  }
2020
3234
 
2021
3235
  static void JSON_free(void *ptr)
2022
3236
  {
2023
- JSON_Parser *json = ptr;
2024
- fbuffer_free(json->fbuffer);
2025
- ruby_xfree(json);
3237
+ JSON_Parser *json = ptr;
3238
+ fbuffer_free(json->fbuffer);
3239
+ ruby_xfree(json);
2026
3240
  }
2027
3241
 
2028
3242
  static size_t JSON_memsize(const void *ptr)
2029
3243
  {
2030
- const JSON_Parser *json = ptr;
2031
- return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
3244
+ const JSON_Parser *json = ptr;
3245
+ return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
2032
3246
  }
2033
3247
 
2034
3248
  #ifdef NEW_TYPEDDATA_WRAPPER
2035
3249
  static const rb_data_type_t JSON_Parser_type = {
2036
- "JSON/Parser",
2037
- {JSON_mark, JSON_free, JSON_memsize,},
2038
- #ifdef RUBY_TYPED_FREE_IMMEDIATELY
2039
- 0, 0,
2040
- RUBY_TYPED_FREE_IMMEDIATELY,
2041
- #endif
3250
+ "JSON/Parser",
3251
+ {JSON_mark, JSON_free, JSON_memsize,},
3252
+ #ifdef RUBY_TYPED_FREE_IMMEDIATELY
3253
+ 0, 0,
3254
+ RUBY_TYPED_FREE_IMMEDIATELY,
3255
+ #endif
2042
3256
  };
2043
3257
  #endif
2044
3258
 
2045
3259
  static VALUE cJSON_parser_s_allocate(VALUE klass)
2046
3260
  {
2047
- JSON_Parser *json;
2048
- VALUE obj = TypedData_Make_Struct(klass, JSON_Parser, &JSON_Parser_type, json);
2049
- json->fbuffer = fbuffer_alloc(0);
2050
- return obj;
3261
+ JSON_Parser *json;
3262
+ VALUE obj = TypedData_Make_Struct(klass, JSON_Parser, &JSON_Parser_type, json);
3263
+ json->fbuffer = fbuffer_alloc(0);
3264
+ return obj;
2051
3265
  }
2052
3266
 
2053
3267
  /*
2054
- * call-seq: source()
2055
- *
2056
- * Returns a copy of the current _source_ string, that was used to construct
2057
- * this Parser.
2058
- */
3268
+ * call-seq: source()
3269
+ *
3270
+ * Returns a copy of the current _source_ string, that was used to construct
3271
+ * this Parser.
3272
+ */
2059
3273
  static VALUE cParser_source(VALUE self)
2060
3274
  {
2061
- GET_PARSER;
2062
- return rb_str_dup(json->Vsource);
3275
+ GET_PARSER;
3276
+ return rb_str_dup(json->Vsource);
2063
3277
  }
2064
3278
 
2065
3279
  void Init_parser(void)
2066
3280
  {
2067
- rb_require("json/common");
2068
- mJSON = rb_define_module("JSON");
2069
- mExt = rb_define_module_under(mJSON, "Ext");
2070
- cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
2071
- eParserError = rb_path2class("JSON::ParserError");
2072
- eNestingError = rb_path2class("JSON::NestingError");
2073
- rb_define_alloc_func(cParser, cJSON_parser_s_allocate);
2074
- rb_define_method(cParser, "initialize", cParser_initialize, -1);
2075
- rb_define_method(cParser, "parse", cParser_parse, 0);
2076
- rb_define_method(cParser, "source", cParser_source, 0);
2077
-
2078
- CNaN = rb_const_get(mJSON, rb_intern("NaN"));
2079
- CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
2080
- CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
2081
-
2082
- i_json_creatable_p = rb_intern("json_creatable?");
2083
- i_json_create = rb_intern("json_create");
2084
- i_create_id = rb_intern("create_id");
2085
- i_create_additions = rb_intern("create_additions");
2086
- i_chr = rb_intern("chr");
2087
- i_max_nesting = rb_intern("max_nesting");
2088
- i_allow_nan = rb_intern("allow_nan");
2089
- i_symbolize_names = rb_intern("symbolize_names");
2090
- i_object_class = rb_intern("object_class");
2091
- i_array_class = rb_intern("array_class");
2092
- i_decimal_class = rb_intern("decimal_class");
2093
- i_match = rb_intern("match");
2094
- i_match_string = rb_intern("match_string");
2095
- i_key_p = rb_intern("key?");
2096
- i_deep_const_get = rb_intern("deep_const_get");
2097
- i_aset = rb_intern("[]=");
2098
- i_aref = rb_intern("[]");
2099
- i_leftshift = rb_intern("<<");
2100
- i_new = rb_intern("new");
3281
+ #ifdef HAVE_RB_EXT_RACTOR_SAFE
3282
+ rb_ext_ractor_safe(true);
3283
+ #endif
3284
+
3285
+ #undef rb_intern
3286
+ rb_require("json/common");
3287
+ mJSON = rb_define_module("JSON");
3288
+ mExt = rb_define_module_under(mJSON, "Ext");
3289
+ cParser = rb_define_class_under(mExt, "Parser", rb_cObject);
3290
+ eParserError = rb_path2class("JSON::ParserError");
3291
+ eNestingError = rb_path2class("JSON::NestingError");
3292
+ rb_gc_register_mark_object(eParserError);
3293
+ rb_gc_register_mark_object(eNestingError);
3294
+ rb_define_alloc_func(cParser, cJSON_parser_s_allocate);
3295
+ rb_define_method(cParser, "initialize", cParser_initialize, -1);
3296
+ rb_define_method(cParser, "parse", cParser_parse, 0);
3297
+ rb_define_method(cParser, "source", cParser_source, 0);
3298
+
3299
+ CNaN = rb_const_get(mJSON, rb_intern("NaN"));
3300
+ rb_gc_register_mark_object(CNaN);
3301
+
3302
+ CInfinity = rb_const_get(mJSON, rb_intern("Infinity"));
3303
+ rb_gc_register_mark_object(CInfinity);
3304
+
3305
+ CMinusInfinity = rb_const_get(mJSON, rb_intern("MinusInfinity"));
3306
+ rb_gc_register_mark_object(CMinusInfinity);
3307
+
3308
+ i_json_creatable_p = rb_intern("json_creatable?");
3309
+ i_json_create = rb_intern("json_create");
3310
+ i_create_id = rb_intern("create_id");
3311
+ i_create_additions = rb_intern("create_additions");
3312
+ i_chr = rb_intern("chr");
3313
+ i_max_nesting = rb_intern("max_nesting");
3314
+ i_allow_nan = rb_intern("allow_nan");
3315
+ i_symbolize_names = rb_intern("symbolize_names");
3316
+ i_object_class = rb_intern("object_class");
3317
+ i_array_class = rb_intern("array_class");
3318
+ i_decimal_class = rb_intern("decimal_class");
3319
+ i_match = rb_intern("match");
3320
+ i_match_string = rb_intern("match_string");
3321
+ i_key_p = rb_intern("key?");
3322
+ i_deep_const_get = rb_intern("deep_const_get");
3323
+ i_aset = rb_intern("[]=");
3324
+ i_aref = rb_intern("[]");
3325
+ i_leftshift = rb_intern("<<");
3326
+ i_new = rb_intern("new");
3327
+ i_try_convert = rb_intern("try_convert");
3328
+ i_freeze = rb_intern("freeze");
3329
+ i_uminus = rb_intern("-@");
2101
3330
  }
2102
3331
 
2103
3332
  /*
2104
- * Local variables:
2105
- * mode: c
2106
- * c-file-style: ruby
2107
- * indent-tabs-mode: nil
2108
- * End:
2109
- */
3333
+ * Local variables:
3334
+ * mode: c
3335
+ * c-file-style: ruby
3336
+ * indent-tabs-mode: nil
3337
+ * End:
3338
+ */