json_pure 2.4.0 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +27 -5
  3. data/README.md +3 -3
  4. data/VERSION +1 -1
  5. data/json_pure.gemspec +43 -21
  6. data/lib/json/common.rb +34 -13
  7. data/lib/json/pure/parser.rb +1 -1
  8. data/lib/json/version.rb +1 -1
  9. data/lib/json.rb +1 -1
  10. metadata +14 -123
  11. data/.gitignore +0 -18
  12. data/.travis.yml +0 -23
  13. data/Gemfile +0 -14
  14. data/README-json-jruby.md +0 -33
  15. data/Rakefile +0 -334
  16. data/diagrams/.keep +0 -0
  17. data/ext/json/ext/fbuffer/fbuffer.h +0 -187
  18. data/ext/json/ext/generator/depend +0 -1
  19. data/ext/json/ext/generator/extconf.rb +0 -4
  20. data/ext/json/ext/generator/generator.c +0 -1612
  21. data/ext/json/ext/generator/generator.h +0 -174
  22. data/ext/json/ext/parser/depend +0 -1
  23. data/ext/json/ext/parser/extconf.rb +0 -31
  24. data/ext/json/ext/parser/parser.c +0 -2164
  25. data/ext/json/ext/parser/parser.h +0 -92
  26. data/ext/json/ext/parser/parser.rl +0 -924
  27. data/ext/json/extconf.rb +0 -3
  28. data/install.rb +0 -23
  29. data/java/src/json/ext/ByteListTranscoder.java +0 -166
  30. data/java/src/json/ext/Generator.java +0 -447
  31. data/java/src/json/ext/GeneratorMethods.java +0 -231
  32. data/java/src/json/ext/GeneratorService.java +0 -42
  33. data/java/src/json/ext/GeneratorState.java +0 -520
  34. data/java/src/json/ext/OptionsReader.java +0 -113
  35. data/java/src/json/ext/Parser.java +0 -2374
  36. data/java/src/json/ext/Parser.rl +0 -905
  37. data/java/src/json/ext/ParserService.java +0 -34
  38. data/java/src/json/ext/RuntimeInfo.java +0 -116
  39. data/java/src/json/ext/StringDecoder.java +0 -166
  40. data/java/src/json/ext/StringEncoder.java +0 -117
  41. data/java/src/json/ext/Utils.java +0 -88
  42. data/json-java.gemspec +0 -38
  43. data/json.gemspec +0 -140
  44. data/lib/json/ext/.keep +0 -0
  45. data/references/rfc7159.txt +0 -899
  46. data/tests/fixtures/fail10.json +0 -1
  47. data/tests/fixtures/fail11.json +0 -1
  48. data/tests/fixtures/fail12.json +0 -1
  49. data/tests/fixtures/fail13.json +0 -1
  50. data/tests/fixtures/fail14.json +0 -1
  51. data/tests/fixtures/fail18.json +0 -1
  52. data/tests/fixtures/fail19.json +0 -1
  53. data/tests/fixtures/fail2.json +0 -1
  54. data/tests/fixtures/fail20.json +0 -1
  55. data/tests/fixtures/fail21.json +0 -1
  56. data/tests/fixtures/fail22.json +0 -1
  57. data/tests/fixtures/fail23.json +0 -1
  58. data/tests/fixtures/fail24.json +0 -1
  59. data/tests/fixtures/fail25.json +0 -1
  60. data/tests/fixtures/fail27.json +0 -2
  61. data/tests/fixtures/fail28.json +0 -2
  62. data/tests/fixtures/fail3.json +0 -1
  63. data/tests/fixtures/fail4.json +0 -1
  64. data/tests/fixtures/fail5.json +0 -1
  65. data/tests/fixtures/fail6.json +0 -1
  66. data/tests/fixtures/fail7.json +0 -1
  67. data/tests/fixtures/fail8.json +0 -1
  68. data/tests/fixtures/fail9.json +0 -1
  69. data/tests/fixtures/obsolete_fail1.json +0 -1
  70. data/tests/fixtures/pass1.json +0 -56
  71. data/tests/fixtures/pass15.json +0 -1
  72. data/tests/fixtures/pass16.json +0 -1
  73. data/tests/fixtures/pass17.json +0 -1
  74. data/tests/fixtures/pass2.json +0 -1
  75. data/tests/fixtures/pass26.json +0 -1
  76. data/tests/fixtures/pass3.json +0 -6
  77. data/tests/json_addition_test.rb +0 -199
  78. data/tests/json_common_interface_test.rb +0 -169
  79. data/tests/json_encoding_test.rb +0 -107
  80. data/tests/json_ext_parser_test.rb +0 -15
  81. data/tests/json_fixtures_test.rb +0 -40
  82. data/tests/json_generator_test.rb +0 -432
  83. data/tests/json_generic_object_test.rb +0 -82
  84. data/tests/json_parser_test.rb +0 -497
  85. data/tests/json_string_matching_test.rb +0 -38
  86. data/tests/test_helper.rb +0 -17
  87. data/tools/diff.sh +0 -18
  88. data/tools/fuzz.rb +0 -131
  89. data/tools/server.rb +0 -62
@@ -1,520 +0,0 @@
1
- /*
2
- * This code is copyrighted work by Daniel Luz <dev at mernen dot com>.
3
- *
4
- * Distributed under the Ruby license: https://www.ruby-lang.org/en/about/license.txt
5
- */
6
- package json.ext;
7
-
8
- import org.jruby.Ruby;
9
- import org.jruby.RubyBoolean;
10
- import org.jruby.RubyClass;
11
- import org.jruby.RubyHash;
12
- import org.jruby.RubyInteger;
13
- import org.jruby.RubyNumeric;
14
- import org.jruby.RubyObject;
15
- import org.jruby.RubyString;
16
- import org.jruby.anno.JRubyMethod;
17
- import org.jruby.runtime.Block;
18
- import org.jruby.runtime.ObjectAllocator;
19
- import org.jruby.runtime.ThreadContext;
20
- import org.jruby.runtime.Visibility;
21
- import org.jruby.runtime.builtin.IRubyObject;
22
- import org.jruby.util.ByteList;
23
-
24
- /**
25
- * The <code>JSON::Ext::Generator::State</code> class.
26
- *
27
- * <p>This class is used to create State instances, that are use to hold data
28
- * while generating a JSON text from a a Ruby data structure.
29
- *
30
- * @author mernen
31
- */
32
- public class GeneratorState extends RubyObject {
33
- /**
34
- * The indenting unit string. Will be repeated several times for larger
35
- * indenting levels.
36
- */
37
- private ByteList indent = ByteList.EMPTY_BYTELIST;
38
- /**
39
- * The spacing to be added after a semicolon on a JSON object.
40
- * @see #spaceBefore
41
- */
42
- private ByteList space = ByteList.EMPTY_BYTELIST;
43
- /**
44
- * The spacing to be added before a semicolon on a JSON object.
45
- * @see #space
46
- */
47
- private ByteList spaceBefore = ByteList.EMPTY_BYTELIST;
48
- /**
49
- * Any suffix to be added after the comma for each element on a JSON object.
50
- * It is assumed to be a newline, if set.
51
- */
52
- private ByteList objectNl = ByteList.EMPTY_BYTELIST;
53
- /**
54
- * Any suffix to be added after the comma for each element on a JSON Array.
55
- * It is assumed to be a newline, if set.
56
- */
57
- private ByteList arrayNl = ByteList.EMPTY_BYTELIST;
58
-
59
- /**
60
- * The maximum level of nesting of structures allowed.
61
- * <code>0</code> means disabled.
62
- */
63
- private int maxNesting = DEFAULT_MAX_NESTING;
64
- static final int DEFAULT_MAX_NESTING = 100;
65
- /**
66
- * Whether special float values (<code>NaN</code>, <code>Infinity</code>,
67
- * <code>-Infinity</code>) are accepted.
68
- * If set to <code>false</code>, an exception will be thrown upon
69
- * encountering one.
70
- */
71
- private boolean allowNaN = DEFAULT_ALLOW_NAN;
72
- static final boolean DEFAULT_ALLOW_NAN = false;
73
- /**
74
- * If set to <code>true</code> all JSON documents generated do not contain
75
- * any other characters than ASCII characters.
76
- */
77
- private boolean asciiOnly = DEFAULT_ASCII_ONLY;
78
- static final boolean DEFAULT_ASCII_ONLY = false;
79
- /**
80
- * If set to <code>true</code> all JSON values generated might not be
81
- * RFC-conform JSON documents.
82
- */
83
- private boolean quirksMode = DEFAULT_QUIRKS_MODE;
84
- static final boolean DEFAULT_QUIRKS_MODE = false;
85
- /**
86
- * If set to <code>true</code> the forward slash will be escaped in
87
- * json output.
88
- */
89
- private boolean escapeSlash = DEFAULT_ESCAPE_SLASH;
90
- static final boolean DEFAULT_ESCAPE_SLASH = false;
91
- /**
92
- * The initial buffer length of this state. (This isn't really used on all
93
- * non-C implementations.)
94
- */
95
- private int bufferInitialLength = DEFAULT_BUFFER_INITIAL_LENGTH;
96
- static final int DEFAULT_BUFFER_INITIAL_LENGTH = 1024;
97
-
98
- /**
99
- * The current depth (inside a #to_json call)
100
- */
101
- private int depth = 0;
102
-
103
- static final ObjectAllocator ALLOCATOR = new ObjectAllocator() {
104
- public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
105
- return new GeneratorState(runtime, klazz);
106
- }
107
- };
108
-
109
- public GeneratorState(Ruby runtime, RubyClass metaClass) {
110
- super(runtime, metaClass);
111
- }
112
-
113
- /**
114
- * <code>State.from_state(opts)</code>
115
- *
116
- * <p>Creates a State object from <code>opts</code>, which ought to be
117
- * {@link RubyHash Hash} to create a new <code>State</code> instance
118
- * configured by <codes>opts</code>, something else to create an
119
- * unconfigured instance. If <code>opts</code> is a <code>State</code>
120
- * object, it is just returned.
121
- * @param clazzParam The receiver of the method call
122
- * ({@link RubyClass} <code>State</code>)
123
- * @param opts The object to use as a base for the new <code>State</code>
124
- * @param block The block passed to the method
125
- * @return A <code>GeneratorState</code> as determined above
126
- */
127
- @JRubyMethod(meta=true)
128
- public static IRubyObject from_state(ThreadContext context,
129
- IRubyObject klass, IRubyObject opts) {
130
- return fromState(context, opts);
131
- }
132
-
133
- static GeneratorState fromState(ThreadContext context, IRubyObject opts) {
134
- return fromState(context, RuntimeInfo.forRuntime(context.getRuntime()), opts);
135
- }
136
-
137
- static GeneratorState fromState(ThreadContext context, RuntimeInfo info,
138
- IRubyObject opts) {
139
- RubyClass klass = info.generatorStateClass.get();
140
- if (opts != null) {
141
- // if the given parameter is a Generator::State, return itself
142
- if (klass.isInstance(opts)) return (GeneratorState)opts;
143
-
144
- // if the given parameter is a Hash, pass it to the instantiator
145
- if (context.getRuntime().getHash().isInstance(opts)) {
146
- return (GeneratorState)klass.newInstance(context,
147
- new IRubyObject[] {opts}, Block.NULL_BLOCK);
148
- }
149
- }
150
-
151
- // for other values, return the safe prototype
152
- return (GeneratorState)info.getSafeStatePrototype(context).dup();
153
- }
154
-
155
- /**
156
- * <code>State#initialize(opts = {})</code>
157
- *
158
- * Instantiates a new <code>State</code> object, configured by <code>opts</code>.
159
- *
160
- * <code>opts</code> can have the following keys:
161
- *
162
- * <dl>
163
- * <dt><code>:indent</code>
164
- * <dd>a {@link RubyString String} used to indent levels (default: <code>""</code>)
165
- * <dt><code>:space</code>
166
- * <dd>a String that is put after a <code>':'</code> or <code>','</code>
167
- * delimiter (default: <code>""</code>)
168
- * <dt><code>:space_before</code>
169
- * <dd>a String that is put before a <code>":"</code> pair delimiter
170
- * (default: <code>""</code>)
171
- * <dt><code>:object_nl</code>
172
- * <dd>a String that is put at the end of a JSON object (default: <code>""</code>)
173
- * <dt><code>:array_nl</code>
174
- * <dd>a String that is put at the end of a JSON array (default: <code>""</code>)
175
- * <dt><code>:allow_nan</code>
176
- * <dd><code>true</code> if <code>NaN</code>, <code>Infinity</code>, and
177
- * <code>-Infinity</code> should be generated, otherwise an exception is
178
- * thrown if these values are encountered.
179
- * This options defaults to <code>false</code>.
180
- * <dt><code>:escape_slash</code>
181
- * <dd>set to <code>true</code> if the forward slashes should be escaped
182
- * in the json output (default: <code>false</code>)
183
- */
184
- @JRubyMethod(optional=1, visibility=Visibility.PRIVATE)
185
- public IRubyObject initialize(ThreadContext context, IRubyObject[] args) {
186
- configure(context, args.length > 0 ? args[0] : null);
187
- return this;
188
- }
189
-
190
- @JRubyMethod
191
- public IRubyObject initialize_copy(ThreadContext context, IRubyObject vOrig) {
192
- Ruby runtime = context.getRuntime();
193
- if (!(vOrig instanceof GeneratorState)) {
194
- throw runtime.newTypeError(vOrig, getType());
195
- }
196
- GeneratorState orig = (GeneratorState)vOrig;
197
- this.indent = orig.indent;
198
- this.space = orig.space;
199
- this.spaceBefore = orig.spaceBefore;
200
- this.objectNl = orig.objectNl;
201
- this.arrayNl = orig.arrayNl;
202
- this.maxNesting = orig.maxNesting;
203
- this.allowNaN = orig.allowNaN;
204
- this.asciiOnly = orig.asciiOnly;
205
- this.quirksMode = orig.quirksMode;
206
- this.escapeSlash = orig.escapeSlash;
207
- this.bufferInitialLength = orig.bufferInitialLength;
208
- this.depth = orig.depth;
209
- return this;
210
- }
211
-
212
- /**
213
- * Generates a valid JSON document from object <code>obj</code> and returns
214
- * the result. If no valid JSON document can be created this method raises
215
- * a GeneratorError exception.
216
- */
217
- @JRubyMethod
218
- public IRubyObject generate(ThreadContext context, IRubyObject obj) {
219
- RubyString result = Generator.generateJson(context, obj, this);
220
- RuntimeInfo info = RuntimeInfo.forRuntime(context.getRuntime());
221
- result.force_encoding(context, info.utf8.get());
222
- return result;
223
- }
224
-
225
- private static boolean matchClosingBrace(ByteList bl, int pos, int len,
226
- int brace) {
227
- for (int endPos = len - 1; endPos > pos; endPos--) {
228
- int b = bl.get(endPos);
229
- if (Character.isWhitespace(b)) continue;
230
- return b == brace;
231
- }
232
- return false;
233
- }
234
-
235
- @JRubyMethod(name="[]", required=1)
236
- public IRubyObject op_aref(ThreadContext context, IRubyObject vName) {
237
- String name = vName.asJavaString();
238
- if (getMetaClass().isMethodBound(name, true)) {
239
- return send(context, vName, Block.NULL_BLOCK);
240
- } else {
241
- IRubyObject value = getInstanceVariables().getInstanceVariable("@" + name);
242
- return value == null ? context.nil : value;
243
- }
244
- }
245
-
246
- @JRubyMethod(name="[]=", required=2)
247
- public IRubyObject op_aset(ThreadContext context, IRubyObject vName, IRubyObject value) {
248
- String name = vName.asJavaString();
249
- String nameWriter = name + "=";
250
- if (getMetaClass().isMethodBound(nameWriter, true)) {
251
- return send(context, context.getRuntime().newString(nameWriter), value, Block.NULL_BLOCK);
252
- } else {
253
- getInstanceVariables().setInstanceVariable("@" + name, value);
254
- }
255
- return context.getRuntime().getNil();
256
- }
257
-
258
- public ByteList getIndent() {
259
- return indent;
260
- }
261
-
262
- @JRubyMethod(name="indent")
263
- public RubyString indent_get(ThreadContext context) {
264
- return context.getRuntime().newString(indent);
265
- }
266
-
267
- @JRubyMethod(name="indent=")
268
- public IRubyObject indent_set(ThreadContext context, IRubyObject indent) {
269
- this.indent = prepareByteList(context, indent);
270
- return indent;
271
- }
272
-
273
- public ByteList getSpace() {
274
- return space;
275
- }
276
-
277
- @JRubyMethod(name="space")
278
- public RubyString space_get(ThreadContext context) {
279
- return context.getRuntime().newString(space);
280
- }
281
-
282
- @JRubyMethod(name="space=")
283
- public IRubyObject space_set(ThreadContext context, IRubyObject space) {
284
- this.space = prepareByteList(context, space);
285
- return space;
286
- }
287
-
288
- public ByteList getSpaceBefore() {
289
- return spaceBefore;
290
- }
291
-
292
- @JRubyMethod(name="space_before")
293
- public RubyString space_before_get(ThreadContext context) {
294
- return context.getRuntime().newString(spaceBefore);
295
- }
296
-
297
- @JRubyMethod(name="space_before=")
298
- public IRubyObject space_before_set(ThreadContext context,
299
- IRubyObject spaceBefore) {
300
- this.spaceBefore = prepareByteList(context, spaceBefore);
301
- return spaceBefore;
302
- }
303
-
304
- public ByteList getObjectNl() {
305
- return objectNl;
306
- }
307
-
308
- @JRubyMethod(name="object_nl")
309
- public RubyString object_nl_get(ThreadContext context) {
310
- return context.getRuntime().newString(objectNl);
311
- }
312
-
313
- @JRubyMethod(name="object_nl=")
314
- public IRubyObject object_nl_set(ThreadContext context,
315
- IRubyObject objectNl) {
316
- this.objectNl = prepareByteList(context, objectNl);
317
- return objectNl;
318
- }
319
-
320
- public ByteList getArrayNl() {
321
- return arrayNl;
322
- }
323
-
324
- @JRubyMethod(name="array_nl")
325
- public RubyString array_nl_get(ThreadContext context) {
326
- return context.getRuntime().newString(arrayNl);
327
- }
328
-
329
- @JRubyMethod(name="array_nl=")
330
- public IRubyObject array_nl_set(ThreadContext context,
331
- IRubyObject arrayNl) {
332
- this.arrayNl = prepareByteList(context, arrayNl);
333
- return arrayNl;
334
- }
335
-
336
- @JRubyMethod(name="check_circular?")
337
- public RubyBoolean check_circular_p(ThreadContext context) {
338
- return context.getRuntime().newBoolean(maxNesting != 0);
339
- }
340
-
341
- /**
342
- * Returns the maximum level of nesting configured for this state.
343
- */
344
- public int getMaxNesting() {
345
- return maxNesting;
346
- }
347
-
348
- @JRubyMethod(name="max_nesting")
349
- public RubyInteger max_nesting_get(ThreadContext context) {
350
- return context.getRuntime().newFixnum(maxNesting);
351
- }
352
-
353
- @JRubyMethod(name="max_nesting=")
354
- public IRubyObject max_nesting_set(IRubyObject max_nesting) {
355
- maxNesting = RubyNumeric.fix2int(max_nesting);
356
- return max_nesting;
357
- }
358
-
359
- /**
360
- * Returns true if forward slashes are escaped in the json output.
361
- */
362
- public boolean escapeSlash() {
363
- return escapeSlash;
364
- }
365
-
366
- @JRubyMethod(name="escape_slash")
367
- public RubyBoolean escape_slash_get(ThreadContext context) {
368
- return context.getRuntime().newBoolean(escapeSlash);
369
- }
370
-
371
- @JRubyMethod(name="escape_slash=")
372
- public IRubyObject escape_slash_set(IRubyObject escape_slash) {
373
- escapeSlash = escape_slash.isTrue();
374
- return escape_slash.getRuntime().newBoolean(escapeSlash);
375
- }
376
-
377
- public boolean allowNaN() {
378
- return allowNaN;
379
- }
380
-
381
- @JRubyMethod(name="allow_nan?")
382
- public RubyBoolean allow_nan_p(ThreadContext context) {
383
- return context.getRuntime().newBoolean(allowNaN);
384
- }
385
-
386
- public boolean asciiOnly() {
387
- return asciiOnly;
388
- }
389
-
390
- @JRubyMethod(name="ascii_only?")
391
- public RubyBoolean ascii_only_p(ThreadContext context) {
392
- return context.getRuntime().newBoolean(asciiOnly);
393
- }
394
-
395
- @JRubyMethod(name="buffer_initial_length")
396
- public RubyInteger buffer_initial_length_get(ThreadContext context) {
397
- return context.getRuntime().newFixnum(bufferInitialLength);
398
- }
399
-
400
- @JRubyMethod(name="buffer_initial_length=")
401
- public IRubyObject buffer_initial_length_set(IRubyObject buffer_initial_length) {
402
- int newLength = RubyNumeric.fix2int(buffer_initial_length);
403
- if (newLength > 0) bufferInitialLength = newLength;
404
- return buffer_initial_length;
405
- }
406
-
407
- public int getDepth() {
408
- return depth;
409
- }
410
-
411
- @JRubyMethod(name="depth")
412
- public RubyInteger depth_get(ThreadContext context) {
413
- return context.getRuntime().newFixnum(depth);
414
- }
415
-
416
- @JRubyMethod(name="depth=")
417
- public IRubyObject depth_set(IRubyObject vDepth) {
418
- depth = RubyNumeric.fix2int(vDepth);
419
- return vDepth;
420
- }
421
-
422
- private ByteList prepareByteList(ThreadContext context, IRubyObject value) {
423
- RubyString str = value.convertToString();
424
- RuntimeInfo info = RuntimeInfo.forRuntime(context.getRuntime());
425
- if (str.encoding(context) != info.utf8.get()) {
426
- str = (RubyString)str.encode(context, info.utf8.get());
427
- }
428
- return str.getByteList().dup();
429
- }
430
-
431
- /**
432
- * <code>State#configure(opts)</code>
433
- *
434
- * <p>Configures this State instance with the {@link RubyHash Hash}
435
- * <code>opts</code>, and returns itself.
436
- * @param vOpts The options hash
437
- * @return The receiver
438
- */
439
- @JRubyMethod(alias = "merge")
440
- public IRubyObject configure(ThreadContext context, IRubyObject vOpts) {
441
- OptionsReader opts = new OptionsReader(context, vOpts);
442
-
443
- ByteList indent = opts.getString("indent");
444
- if (indent != null) this.indent = indent;
445
-
446
- ByteList space = opts.getString("space");
447
- if (space != null) this.space = space;
448
-
449
- ByteList spaceBefore = opts.getString("space_before");
450
- if (spaceBefore != null) this.spaceBefore = spaceBefore;
451
-
452
- ByteList arrayNl = opts.getString("array_nl");
453
- if (arrayNl != null) this.arrayNl = arrayNl;
454
-
455
- ByteList objectNl = opts.getString("object_nl");
456
- if (objectNl != null) this.objectNl = objectNl;
457
-
458
- maxNesting = opts.getInt("max_nesting", DEFAULT_MAX_NESTING);
459
- allowNaN = opts.getBool("allow_nan", DEFAULT_ALLOW_NAN);
460
- asciiOnly = opts.getBool("ascii_only", DEFAULT_ASCII_ONLY);
461
- escapeSlash = opts.getBool("escape_slash", DEFAULT_ESCAPE_SLASH);
462
- bufferInitialLength = opts.getInt("buffer_initial_length", DEFAULT_BUFFER_INITIAL_LENGTH);
463
-
464
- depth = opts.getInt("depth", 0);
465
-
466
- return this;
467
- }
468
-
469
- /**
470
- * <code>State#to_h()</code>
471
- *
472
- * <p>Returns the configuration instance variables as a hash, that can be
473
- * passed to the configure method.
474
- * @return the hash
475
- */
476
- @JRubyMethod(alias = "to_hash")
477
- public RubyHash to_h(ThreadContext context) {
478
- Ruby runtime = context.getRuntime();
479
- RubyHash result = RubyHash.newHash(runtime);
480
-
481
- result.op_aset(context, runtime.newSymbol("indent"), indent_get(context));
482
- result.op_aset(context, runtime.newSymbol("space"), space_get(context));
483
- result.op_aset(context, runtime.newSymbol("space_before"), space_before_get(context));
484
- result.op_aset(context, runtime.newSymbol("object_nl"), object_nl_get(context));
485
- result.op_aset(context, runtime.newSymbol("array_nl"), array_nl_get(context));
486
- result.op_aset(context, runtime.newSymbol("allow_nan"), allow_nan_p(context));
487
- result.op_aset(context, runtime.newSymbol("ascii_only"), ascii_only_p(context));
488
- result.op_aset(context, runtime.newSymbol("max_nesting"), max_nesting_get(context));
489
- result.op_aset(context, runtime.newSymbol("escape_slash"), escape_slash_get(context));
490
- result.op_aset(context, runtime.newSymbol("depth"), depth_get(context));
491
- result.op_aset(context, runtime.newSymbol("buffer_initial_length"), buffer_initial_length_get(context));
492
- for (String name: getInstanceVariableNameList()) {
493
- result.op_aset(context, runtime.newSymbol(name.substring(1)), getInstanceVariables().getInstanceVariable(name));
494
- }
495
- return result;
496
- }
497
-
498
- public int increaseDepth() {
499
- depth++;
500
- checkMaxNesting();
501
- return depth;
502
- }
503
-
504
- public int decreaseDepth() {
505
- return --depth;
506
- }
507
-
508
- /**
509
- * Checks if the current depth is allowed as per this state's options.
510
- * @param context
511
- * @param depth The corrent depth
512
- */
513
- private void checkMaxNesting() {
514
- if (maxNesting != 0 && depth > maxNesting) {
515
- depth--;
516
- throw Utils.newException(getRuntime().getCurrentContext(),
517
- Utils.M_NESTING_ERROR, "nesting of " + depth + " is too deep");
518
- }
519
- }
520
- }
@@ -1,113 +0,0 @@
1
- /*
2
- * This code is copyrighted work by Daniel Luz <dev at mernen dot com>.
3
- *
4
- * Distributed under the Ruby license: https://www.ruby-lang.org/en/about/license.txt
5
- */
6
- package json.ext;
7
-
8
- import org.jruby.Ruby;
9
- import org.jruby.RubyClass;
10
- import org.jruby.RubyHash;
11
- import org.jruby.RubyNumeric;
12
- import org.jruby.RubyString;
13
- import org.jruby.runtime.ThreadContext;
14
- import org.jruby.runtime.builtin.IRubyObject;
15
- import org.jruby.util.ByteList;
16
-
17
- final class OptionsReader {
18
- private final ThreadContext context;
19
- private final Ruby runtime;
20
- private final RubyHash opts;
21
- private RuntimeInfo info;
22
-
23
- OptionsReader(ThreadContext context, IRubyObject vOpts) {
24
- this.context = context;
25
- this.runtime = context.getRuntime();
26
- if (vOpts == null || vOpts.isNil()) {
27
- opts = null;
28
- } else if (vOpts.respondsTo("to_hash")) {
29
- opts = vOpts.convertToHash();
30
- } else if (vOpts.respondsTo("to_h")) {
31
- opts = vOpts.callMethod(context, "to_h").convertToHash();
32
- } else {
33
- opts = vOpts.convertToHash(); /* Should just raise the correct TypeError */
34
- }
35
- }
36
-
37
- private RuntimeInfo getRuntimeInfo() {
38
- if (info != null) return info;
39
- info = RuntimeInfo.forRuntime(runtime);
40
- return info;
41
- }
42
-
43
- /**
44
- * Efficiently looks up items with a {@link RubySymbol Symbol} key
45
- * @param key The Symbol name to look up for
46
- * @return The item in the {@link RubyHash Hash}, or <code>null</code>
47
- * if not found
48
- */
49
- IRubyObject get(String key) {
50
- return opts == null ? null : opts.fastARef(runtime.newSymbol(key));
51
- }
52
-
53
- boolean getBool(String key, boolean defaultValue) {
54
- IRubyObject value = get(key);
55
- return value == null ? defaultValue : value.isTrue();
56
- }
57
-
58
- int getInt(String key, int defaultValue) {
59
- IRubyObject value = get(key);
60
- if (value == null) return defaultValue;
61
- if (!value.isTrue()) return 0;
62
- return RubyNumeric.fix2int(value);
63
- }
64
-
65
- /**
66
- * Reads the setting from the options hash. If no entry is set for this
67
- * key or if it evaluates to <code>false</code>, returns null; attempts to
68
- * coerce the value to {@link RubyString String} otherwise.
69
- * @param key The Symbol name to look up for
70
- * @return <code>null</code> if the key is not in the Hash or if
71
- * its value evaluates to <code>false</code>
72
- * @throws RaiseException <code>TypeError</code> if the value does not
73
- * evaluate to <code>false</code> and can't be
74
- * converted to string
75
- */
76
- ByteList getString(String key) {
77
- RubyString str = getString(key, null);
78
- return str == null ? null : str.getByteList().dup();
79
- }
80
-
81
- RubyString getString(String key, RubyString defaultValue) {
82
- IRubyObject value = get(key);
83
- if (value == null || !value.isTrue()) return defaultValue;
84
-
85
- RubyString str = value.convertToString();
86
- RuntimeInfo info = getRuntimeInfo();
87
- if (str.encoding(context) != info.utf8.get()) {
88
- str = (RubyString)str.encode(context, info.utf8.get());
89
- }
90
- return str;
91
- }
92
-
93
- /**
94
- * Reads the setting from the options hash. If it is <code>nil</code> or
95
- * undefined, returns the default value given.
96
- * If not, ensures it is a RubyClass instance and shares the same
97
- * allocator as the default value (i.e. for the basic types which have
98
- * their specific allocators, this ensures the passed value is
99
- * a subclass of them).
100
- */
101
- RubyClass getClass(String key, RubyClass defaultValue) {
102
- IRubyObject value = get(key);
103
-
104
- if (value == null || value.isNil()) return defaultValue;
105
- return (RubyClass)value;
106
- }
107
-
108
- public RubyHash getHash(String key) {
109
- IRubyObject value = get(key);
110
- if (value == null || value.isNil()) return new RubyHash(runtime);
111
- return (RubyHash) value;
112
- }
113
- }