json 2.7.1 → 2.7.3.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/BSDL +22 -0
- data/CHANGES.md +35 -17
- data/LEGAL +60 -0
- data/README.md +13 -174
- data/ext/json/ext/fbuffer/fbuffer.h +21 -62
- data/ext/json/ext/generator/extconf.rb +8 -2
- data/ext/json/ext/generator/generator.c +492 -664
- data/ext/json/ext/generator/generator.h +16 -64
- data/ext/json/ext/parser/extconf.rb +3 -1
- data/ext/json/ext/parser/parser.c +279 -253
- data/ext/json/ext/parser/parser.h +4 -40
- data/ext/json/ext/parser/parser.rl +208 -182
- data/json.gemspec +42 -49
- data/lib/json/add/bigdecimal.rb +1 -1
- data/lib/json/add/complex.rb +1 -1
- data/lib/json/add/core.rb +1 -1
- data/lib/json/add/date.rb +1 -1
- data/lib/json/add/date_time.rb +1 -1
- data/lib/json/add/exception.rb +1 -1
- data/lib/json/add/ostruct.rb +6 -3
- data/lib/json/add/range.rb +1 -1
- data/lib/json/add/rational.rb +1 -1
- data/lib/json/add/regexp.rb +1 -1
- data/lib/json/add/struct.rb +1 -1
- data/lib/json/add/symbol.rb +1 -2
- data/lib/json/add/time.rb +3 -10
- data/lib/json/common.rb +76 -44
- data/lib/json/ext/generator/state.rb +135 -0
- data/lib/json/ext.rb +18 -5
- data/lib/json/generic_object.rb +7 -3
- data/lib/json/pure/generator.rb +87 -16
- data/lib/json/pure/parser.rb +13 -19
- data/lib/json/pure.rb +1 -0
- data/lib/json/version.rb +3 -7
- data/lib/json.rb +1 -1
- metadata +14 -15
- data/ext/json/ext/generator/depend +0 -1
- data/ext/json/ext/parser/depend +0 -1
- data/ext/json/extconf.rb +0 -3
- /data/{LICENSE → COPYING} +0 -0
data/lib/json/pure/generator.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#frozen_string_literal:
|
1
|
+
# frozen_string_literal: true
|
2
2
|
module JSON
|
3
3
|
MAP = {
|
4
4
|
"\x0" => '\u0000',
|
@@ -35,7 +35,7 @@ module JSON
|
|
35
35
|
"\x1f" => '\u001f',
|
36
36
|
'"' => '\"',
|
37
37
|
'\\' => '\\\\',
|
38
|
-
} # :nodoc:
|
38
|
+
}.freeze # :nodoc:
|
39
39
|
|
40
40
|
ESCAPE_PATTERN = /[\/"\\\x0-\x1f]/n # :nodoc:
|
41
41
|
|
@@ -43,7 +43,7 @@ module JSON
|
|
43
43
|
'/' => '\\/',
|
44
44
|
"\u2028".b => '\u2028',
|
45
45
|
"\u2029".b => '\u2029',
|
46
|
-
)
|
46
|
+
).freeze
|
47
47
|
|
48
48
|
SCRIPT_SAFE_ESCAPE_PATTERN = Regexp.union(ESCAPE_PATTERN, "\u2028".b, "\u2029".b)
|
49
49
|
|
@@ -75,7 +75,7 @@ module JSON
|
|
75
75
|
[\x80-\xc1\xf5-\xff] # invalid
|
76
76
|
)/nx) { |c|
|
77
77
|
c.size == 1 and raise GeneratorError, "invalid utf8 byte: '#{c}'"
|
78
|
-
s =
|
78
|
+
s = c.encode(::Encoding::UTF_16BE, ::Encoding::UTF_8).unpack('H*')[0]
|
79
79
|
s.force_encoding(::Encoding::ASCII_8BIT)
|
80
80
|
s.gsub!(/.{4}/n, '\\\\u\&')
|
81
81
|
s.force_encoding(::Encoding::UTF_8)
|
@@ -219,7 +219,9 @@ module JSON
|
|
219
219
|
@script_safe
|
220
220
|
end
|
221
221
|
|
222
|
-
# Returns true, if
|
222
|
+
# Returns true, if strict mode is enabled. Otherwise returns false.
|
223
|
+
# Strict mode only allow serializing JSON native types: Hash, Array,
|
224
|
+
# String, Integer, Float, true, false and nil.
|
223
225
|
def strict?
|
224
226
|
@strict
|
225
227
|
end
|
@@ -237,6 +239,8 @@ module JSON
|
|
237
239
|
opts.each do |key, value|
|
238
240
|
instance_variable_set "@#{key}", value
|
239
241
|
end
|
242
|
+
|
243
|
+
# NOTE: If adding new instance variables here, check whether #generate should check them for #generate_json
|
240
244
|
@indent = opts[:indent] if opts.key?(:indent)
|
241
245
|
@space = opts[:space] if opts.key?(:space)
|
242
246
|
@space_before = opts[:space_before] if opts.key?(:space_before)
|
@@ -286,12 +290,71 @@ module JSON
|
|
286
290
|
# created this method raises a
|
287
291
|
# GeneratorError exception.
|
288
292
|
def generate(obj)
|
289
|
-
|
293
|
+
if @indent.empty? and @space.empty? and @space_before.empty? and @object_nl.empty? and @array_nl.empty? and
|
294
|
+
!@ascii_only and !@script_safe and @max_nesting == 0 and !@strict
|
295
|
+
result = generate_json(obj, ''.dup)
|
296
|
+
else
|
297
|
+
result = obj.to_json(self)
|
298
|
+
end
|
290
299
|
JSON.valid_utf8?(result) or raise GeneratorError,
|
291
300
|
"source sequence #{result.inspect} is illegal/malformed utf-8"
|
292
301
|
result
|
293
302
|
end
|
294
303
|
|
304
|
+
# Handles @allow_nan, @buffer_initial_length, other ivars must be the default value (see above)
|
305
|
+
private def generate_json(obj, buf)
|
306
|
+
case obj
|
307
|
+
when Hash
|
308
|
+
buf << '{'
|
309
|
+
first = true
|
310
|
+
obj.each_pair do |k,v|
|
311
|
+
buf << ',' unless first
|
312
|
+
fast_serialize_string(k.to_s, buf)
|
313
|
+
buf << ':'
|
314
|
+
generate_json(v, buf)
|
315
|
+
first = false
|
316
|
+
end
|
317
|
+
buf << '}'
|
318
|
+
when Array
|
319
|
+
buf << '['
|
320
|
+
first = true
|
321
|
+
obj.each do |e|
|
322
|
+
buf << ',' unless first
|
323
|
+
generate_json(e, buf)
|
324
|
+
first = false
|
325
|
+
end
|
326
|
+
buf << ']'
|
327
|
+
when String
|
328
|
+
fast_serialize_string(obj, buf)
|
329
|
+
when Integer
|
330
|
+
buf << obj.to_s
|
331
|
+
else
|
332
|
+
# Note: Float is handled this way since Float#to_s is slow anyway
|
333
|
+
buf << obj.to_json(self)
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
337
|
+
# Assumes !@ascii_only, !@script_safe
|
338
|
+
if Regexp.method_defined?(:match?)
|
339
|
+
private def fast_serialize_string(string, buf) # :nodoc:
|
340
|
+
buf << '"'
|
341
|
+
string = string.encode(::Encoding::UTF_8) unless string.encoding == ::Encoding::UTF_8
|
342
|
+
raise GeneratorError, "source sequence is illegal/malformed utf-8" unless string.valid_encoding?
|
343
|
+
|
344
|
+
if /["\\\x0-\x1f]/n.match?(string)
|
345
|
+
buf << string.gsub(/["\\\x0-\x1f]/n, MAP)
|
346
|
+
else
|
347
|
+
buf << string
|
348
|
+
end
|
349
|
+
buf << '"'
|
350
|
+
end
|
351
|
+
else
|
352
|
+
# Ruby 2.3 compatibility
|
353
|
+
private def fast_serialize_string(string, buf) # :nodoc:
|
354
|
+
buf << string.to_json(self)
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
295
358
|
# Return the value returned by method +name+.
|
296
359
|
def [](name)
|
297
360
|
if respond_to?(name)
|
@@ -316,8 +379,8 @@ module JSON
|
|
316
379
|
# Converts this object to a string (calling #to_s), converts
|
317
380
|
# it to a JSON string, and returns the result. This is a fallback, if no
|
318
381
|
# special method #to_json was defined for some object.
|
319
|
-
def to_json(
|
320
|
-
if
|
382
|
+
def to_json(state = nil, *)
|
383
|
+
if state && State.from_state(state).strict?
|
321
384
|
raise GeneratorError, "#{self.class} not allowed in JSON"
|
322
385
|
else
|
323
386
|
to_s.to_json
|
@@ -347,6 +410,7 @@ module JSON
|
|
347
410
|
def json_transform(state)
|
348
411
|
delim = ",#{state.object_nl}"
|
349
412
|
result = "{#{state.object_nl}"
|
413
|
+
result = result.dup if result.frozen? # RUBY_VERSION < 3.0
|
350
414
|
depth = state.depth += 1
|
351
415
|
first = true
|
352
416
|
indent = !state.object_nl.empty?
|
@@ -354,7 +418,8 @@ module JSON
|
|
354
418
|
result << delim unless first
|
355
419
|
result << state.indent * depth if indent
|
356
420
|
result = "#{result}#{key.to_s.to_json(state)}#{state.space_before}:#{state.space}"
|
357
|
-
if
|
421
|
+
result = result.dup if result.frozen? # RUBY_VERSION < 3.0
|
422
|
+
if state.strict? && !(false == value || true == value || nil == value || String === value || Array === value || Hash === value || Integer === value || Float === value)
|
358
423
|
raise GeneratorError, "#{value.class} not allowed in JSON"
|
359
424
|
elsif value.respond_to?(:to_json)
|
360
425
|
result << value.to_json(state)
|
@@ -387,17 +452,20 @@ module JSON
|
|
387
452
|
private
|
388
453
|
|
389
454
|
def json_transform(state)
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
455
|
+
result = '['.dup
|
456
|
+
if state.array_nl.empty?
|
457
|
+
delim = ","
|
458
|
+
else
|
459
|
+
result << state.array_nl
|
460
|
+
delim = ",#{state.array_nl}"
|
461
|
+
end
|
394
462
|
depth = state.depth += 1
|
395
463
|
first = true
|
396
464
|
indent = !state.array_nl.empty?
|
397
465
|
each { |value|
|
398
466
|
result << delim unless first
|
399
467
|
result << state.indent * depth if indent
|
400
|
-
if state.strict?
|
468
|
+
if state.strict? && !(false == value || true == value || nil == value || String === value || Array === value || Hash === value || Integer === value || Float === value)
|
401
469
|
raise GeneratorError, "#{value.class} not allowed in JSON"
|
402
470
|
elsif value.respond_to?(:to_json)
|
403
471
|
result << value.to_json(state)
|
@@ -448,14 +516,17 @@ module JSON
|
|
448
516
|
def to_json(state = nil, *args)
|
449
517
|
state = State.from_state(state)
|
450
518
|
if encoding == ::Encoding::UTF_8
|
519
|
+
unless valid_encoding?
|
520
|
+
raise GeneratorError, "source sequence is illegal/malformed utf-8"
|
521
|
+
end
|
451
522
|
string = self
|
452
523
|
else
|
453
524
|
string = encode(::Encoding::UTF_8)
|
454
525
|
end
|
455
526
|
if state.ascii_only?
|
456
|
-
|
527
|
+
%("#{JSON.utf8_to_json_ascii(string, state.script_safe)}")
|
457
528
|
else
|
458
|
-
|
529
|
+
%("#{JSON.utf8_to_json(string, state.script_safe)}")
|
459
530
|
end
|
460
531
|
end
|
461
532
|
|
data/lib/json/pure/parser.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#frozen_string_literal:
|
1
|
+
#frozen_string_literal: true
|
2
2
|
require 'strscan'
|
3
3
|
|
4
4
|
module JSON
|
@@ -39,11 +39,8 @@ module JSON
|
|
39
39
|
//[^\n\r]*[\n\r]| # line comments
|
40
40
|
/\* # c-style comments
|
41
41
|
(?:
|
42
|
-
[
|
43
|
-
|
44
|
-
\*[^/]| # asterisks that do not end this comment
|
45
|
-
/(?=\*/) # single slash before this comment's end
|
46
|
-
)*
|
42
|
+
[\s\S]*? # any char, repeated lazily
|
43
|
+
)
|
47
44
|
\*/ # the End of this comment
|
48
45
|
|[ \t\r\n]+ # whitespaces: space, horizontal tab, lf, cr
|
49
46
|
)+
|
@@ -70,12 +67,16 @@ module JSON
|
|
70
67
|
# * *create_additions*: If set to true, the Parser creates
|
71
68
|
# additions when a matching class and create_id are found. This
|
72
69
|
# option defaults to false.
|
73
|
-
# * *object_class*: Defaults to Hash
|
74
|
-
#
|
70
|
+
# * *object_class*: Defaults to Hash. If another type is provided, it will be used
|
71
|
+
# instead of Hash to represent JSON objects. The type must respond to
|
72
|
+
# +new+ without arguments, and return an object that respond to +[]=+.
|
73
|
+
# * *array_class*: Defaults to Array If another type is provided, it will be used
|
74
|
+
# instead of Hash to represent JSON arrays. The type must respond to
|
75
|
+
# +new+ without arguments, and return an object that respond to +<<+.
|
75
76
|
# * *decimal_class*: Specifies which class to use instead of the default
|
76
77
|
# (Float) when parsing decimal numbers. This class must accept a single
|
77
78
|
# string argument in its constructor.
|
78
|
-
def initialize(source, opts =
|
79
|
+
def initialize(source, opts = nil)
|
79
80
|
opts ||= {}
|
80
81
|
source = convert_encoding source
|
81
82
|
super source
|
@@ -160,11 +161,6 @@ module JSON
|
|
160
161
|
?u => nil,
|
161
162
|
})
|
162
163
|
|
163
|
-
EMPTY_8BIT_STRING = ''
|
164
|
-
if ::String.method_defined?(:encode)
|
165
|
-
EMPTY_8BIT_STRING.force_encoding Encoding::ASCII_8BIT
|
166
|
-
end
|
167
|
-
|
168
164
|
STR_UMINUS = ''.respond_to?(:-@)
|
169
165
|
def parse_string
|
170
166
|
if scan(STRING)
|
@@ -173,18 +169,16 @@ module JSON
|
|
173
169
|
if u = UNESCAPE_MAP[$&[1]]
|
174
170
|
u
|
175
171
|
else # \uXXXX
|
176
|
-
bytes =
|
172
|
+
bytes = ''.b
|
177
173
|
i = 0
|
178
174
|
while c[6 * i] == ?\\ && c[6 * i + 1] == ?u
|
179
175
|
bytes << c[6 * i + 2, 2].to_i(16) << c[6 * i + 4, 2].to_i(16)
|
180
176
|
i += 1
|
181
177
|
end
|
182
|
-
|
178
|
+
bytes.encode(Encoding::UTF_8, Encoding::UTF_16BE).force_encoding(::Encoding::BINARY)
|
183
179
|
end
|
184
180
|
end
|
185
|
-
|
186
|
-
string.force_encoding(::Encoding::UTF_8)
|
187
|
-
end
|
181
|
+
string.force_encoding(::Encoding::UTF_8)
|
188
182
|
|
189
183
|
if @freeze
|
190
184
|
if STR_UMINUS
|
data/lib/json/pure.rb
CHANGED
data/lib/json/version.rb
CHANGED
@@ -1,9 +1,5 @@
|
|
1
|
-
# frozen_string_literal:
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module JSON
|
3
|
-
|
4
|
-
VERSION = '2.7.1'
|
5
|
-
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
|
6
|
-
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
|
7
|
-
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
|
8
|
-
VERSION_BUILD = VERSION_ARRAY[2] # :nodoc:
|
4
|
+
VERSION = '2.7.3.rc1'
|
9
5
|
end
|
data/lib/json.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.3.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This is a JSON implementation as a Ruby extension in C.
|
14
14
|
email: flori@ping.de
|
@@ -16,24 +16,22 @@ executables: []
|
|
16
16
|
extensions:
|
17
17
|
- ext/json/ext/generator/extconf.rb
|
18
18
|
- ext/json/ext/parser/extconf.rb
|
19
|
-
- ext/json/extconf.rb
|
20
19
|
extra_rdoc_files:
|
21
20
|
- README.md
|
22
21
|
files:
|
22
|
+
- BSDL
|
23
23
|
- CHANGES.md
|
24
|
-
-
|
24
|
+
- COPYING
|
25
|
+
- LEGAL
|
25
26
|
- README.md
|
26
27
|
- ext/json/ext/fbuffer/fbuffer.h
|
27
|
-
- ext/json/ext/generator/depend
|
28
28
|
- ext/json/ext/generator/extconf.rb
|
29
29
|
- ext/json/ext/generator/generator.c
|
30
30
|
- ext/json/ext/generator/generator.h
|
31
|
-
- ext/json/ext/parser/depend
|
32
31
|
- ext/json/ext/parser/extconf.rb
|
33
32
|
- ext/json/ext/parser/parser.c
|
34
33
|
- ext/json/ext/parser/parser.h
|
35
34
|
- ext/json/ext/parser/parser.rl
|
36
|
-
- ext/json/extconf.rb
|
37
35
|
- json.gemspec
|
38
36
|
- lib/json.rb
|
39
37
|
- lib/json/add/bigdecimal.rb
|
@@ -52,21 +50,22 @@ files:
|
|
52
50
|
- lib/json/add/time.rb
|
53
51
|
- lib/json/common.rb
|
54
52
|
- lib/json/ext.rb
|
53
|
+
- lib/json/ext/generator/state.rb
|
55
54
|
- lib/json/generic_object.rb
|
56
55
|
- lib/json/pure.rb
|
57
56
|
- lib/json/pure/generator.rb
|
58
57
|
- lib/json/pure/parser.rb
|
59
58
|
- lib/json/version.rb
|
60
|
-
homepage: https://
|
59
|
+
homepage: https://ruby.github.io/json
|
61
60
|
licenses:
|
62
61
|
- Ruby
|
63
62
|
metadata:
|
64
|
-
bug_tracker_uri: https://github.com/
|
65
|
-
changelog_uri: https://github.com/
|
66
|
-
documentation_uri: https://
|
67
|
-
homepage_uri: https://
|
68
|
-
source_code_uri: https://github.com/
|
69
|
-
wiki_uri: https://github.com/
|
63
|
+
bug_tracker_uri: https://github.com/ruby/json/issues
|
64
|
+
changelog_uri: https://github.com/ruby/json/blob/master/CHANGES.md
|
65
|
+
documentation_uri: https://ruby.github.io/json/doc/index.html
|
66
|
+
homepage_uri: https://ruby.github.io/json
|
67
|
+
source_code_uri: https://github.com/ruby/json
|
68
|
+
wiki_uri: https://github.com/ruby/json/wiki
|
70
69
|
post_install_message:
|
71
70
|
rdoc_options:
|
72
71
|
- "--title"
|
@@ -86,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
85
|
- !ruby/object:Gem::Version
|
87
86
|
version: '0'
|
88
87
|
requirements: []
|
89
|
-
rubygems_version: 3.5.
|
88
|
+
rubygems_version: 3.5.17
|
90
89
|
signing_key:
|
91
90
|
specification_version: 4
|
92
91
|
summary: JSON Implementation for Ruby
|
@@ -1 +0,0 @@
|
|
1
|
-
generator.o: generator.c generator.h $(srcdir)/../fbuffer/fbuffer.h
|
data/ext/json/ext/parser/depend
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
parser.o: parser.c parser.h $(srcdir)/../fbuffer/fbuffer.h
|
data/ext/json/extconf.rb
DELETED
/data/{LICENSE → COPYING}
RENAMED
File without changes
|