mack-javascript 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gems/json_pure-1.1.3/VERSION +1 -0
- data/lib/gems/json_pure-1.1.3/bin/edit_json.rb +10 -0
- data/lib/gems/json_pure-1.1.3/bin/prettify_json.rb +76 -0
- data/lib/gems/json_pure-1.1.3/lib/json/Array.xpm +21 -0
- data/lib/gems/json_pure-1.1.3/lib/json/FalseClass.xpm +21 -0
- data/lib/gems/json_pure-1.1.3/lib/json/Hash.xpm +21 -0
- data/lib/gems/json_pure-1.1.3/lib/json/Key.xpm +73 -0
- data/lib/gems/json_pure-1.1.3/lib/json/NilClass.xpm +21 -0
- data/lib/gems/json_pure-1.1.3/lib/json/Numeric.xpm +28 -0
- data/lib/gems/json_pure-1.1.3/lib/json/String.xpm +96 -0
- data/lib/gems/json_pure-1.1.3/lib/json/TrueClass.xpm +21 -0
- data/lib/gems/json_pure-1.1.3/lib/json/add/core.rb +135 -0
- data/lib/gems/json_pure-1.1.3/lib/json/add/rails.rb +58 -0
- data/lib/gems/json_pure-1.1.3/lib/json/common.rb +354 -0
- data/lib/gems/json_pure-1.1.3/lib/json/editor.rb +1362 -0
- data/lib/gems/json_pure-1.1.3/lib/json/ext.rb +13 -0
- data/lib/gems/json_pure-1.1.3/lib/json/json.xpm +1499 -0
- data/lib/gems/json_pure-1.1.3/lib/json/pure/generator.rb +394 -0
- data/lib/gems/json_pure-1.1.3/lib/json/pure/parser.rb +259 -0
- data/lib/gems/json_pure-1.1.3/lib/json/pure.rb +75 -0
- data/lib/gems/json_pure-1.1.3/lib/json/version.rb +9 -0
- data/lib/gems/json_pure-1.1.3/lib/json.rb +235 -0
- data/lib/gems.rb +13 -0
- data/lib/mack-javascript/generators/templates/javascripts/prototype.js.template +1 -1
- data/lib/mack-javascript/rendering/engine/rjs.rb +3 -0
- data/lib/mack-javascript/rendering/type/js.rb +7 -3
- data/lib/mack-javascript/view_helpers/html_helpers.rb +11 -0
- data/lib/mack-javascript.rb +2 -0
- metadata +50 -16
@@ -0,0 +1,394 @@
|
|
1
|
+
module JSON
|
2
|
+
MAP = {
|
3
|
+
"\x0" => '\u0000',
|
4
|
+
"\x1" => '\u0001',
|
5
|
+
"\x2" => '\u0002',
|
6
|
+
"\x3" => '\u0003',
|
7
|
+
"\x4" => '\u0004',
|
8
|
+
"\x5" => '\u0005',
|
9
|
+
"\x6" => '\u0006',
|
10
|
+
"\x7" => '\u0007',
|
11
|
+
"\b" => '\b',
|
12
|
+
"\t" => '\t',
|
13
|
+
"\n" => '\n',
|
14
|
+
"\xb" => '\u000b',
|
15
|
+
"\f" => '\f',
|
16
|
+
"\r" => '\r',
|
17
|
+
"\xe" => '\u000e',
|
18
|
+
"\xf" => '\u000f',
|
19
|
+
"\x10" => '\u0010',
|
20
|
+
"\x11" => '\u0011',
|
21
|
+
"\x12" => '\u0012',
|
22
|
+
"\x13" => '\u0013',
|
23
|
+
"\x14" => '\u0014',
|
24
|
+
"\x15" => '\u0015',
|
25
|
+
"\x16" => '\u0016',
|
26
|
+
"\x17" => '\u0017',
|
27
|
+
"\x18" => '\u0018',
|
28
|
+
"\x19" => '\u0019',
|
29
|
+
"\x1a" => '\u001a',
|
30
|
+
"\x1b" => '\u001b',
|
31
|
+
"\x1c" => '\u001c',
|
32
|
+
"\x1d" => '\u001d',
|
33
|
+
"\x1e" => '\u001e',
|
34
|
+
"\x1f" => '\u001f',
|
35
|
+
'"' => '\"',
|
36
|
+
'\\' => '\\\\',
|
37
|
+
'/' => '\/',
|
38
|
+
} # :nodoc:
|
39
|
+
|
40
|
+
# Convert a UTF8 encoded Ruby string _string_ to a JSON string, encoded with
|
41
|
+
# UTF16 big endian characters as \u????, and return it.
|
42
|
+
def utf8_to_json(string) # :nodoc:
|
43
|
+
string = string.gsub(/["\\\/\x0-\x1f]/) { MAP[$&] }
|
44
|
+
string.gsub!(/(
|
45
|
+
(?:
|
46
|
+
[\xc2-\xdf][\x80-\xbf] |
|
47
|
+
[\xe0-\xef][\x80-\xbf]{2} |
|
48
|
+
[\xf0-\xf4][\x80-\xbf]{3}
|
49
|
+
)+ |
|
50
|
+
[\x80-\xc1\xf5-\xff] # invalid
|
51
|
+
)/nx) { |c|
|
52
|
+
c.size == 1 and raise GeneratorError, "invalid utf8 byte: '#{c}'"
|
53
|
+
s = JSON::UTF8toUTF16.iconv(c).unpack('H*')[0]
|
54
|
+
s.gsub!(/.{4}/n, '\\\\u\&')
|
55
|
+
}
|
56
|
+
string
|
57
|
+
rescue Iconv::Failure => e
|
58
|
+
raise GeneratorError, "Caught #{e.class}: #{e}"
|
59
|
+
end
|
60
|
+
module_function :utf8_to_json
|
61
|
+
|
62
|
+
module Pure
|
63
|
+
module Generator
|
64
|
+
# This class is used to create State instances, that are use to hold data
|
65
|
+
# while generating a JSON text from a a Ruby data structure.
|
66
|
+
class State
|
67
|
+
# Creates a State object from _opts_, which ought to be Hash to create
|
68
|
+
# a new State instance configured by _opts_, something else to create
|
69
|
+
# an unconfigured instance. If _opts_ is a State object, it is just
|
70
|
+
# returned.
|
71
|
+
def self.from_state(opts)
|
72
|
+
case opts
|
73
|
+
when self
|
74
|
+
opts
|
75
|
+
when Hash
|
76
|
+
new(opts)
|
77
|
+
else
|
78
|
+
new
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# Instantiates a new State object, configured by _opts_.
|
83
|
+
#
|
84
|
+
# _opts_ can have the following keys:
|
85
|
+
#
|
86
|
+
# * *indent*: a string used to indent levels (default: ''),
|
87
|
+
# * *space*: a string that is put after, a : or , delimiter (default: ''),
|
88
|
+
# * *space_before*: a string that is put before a : pair delimiter (default: ''),
|
89
|
+
# * *object_nl*: a string that is put at the end of a JSON object (default: ''),
|
90
|
+
# * *array_nl*: a string that is put at the end of a JSON array (default: ''),
|
91
|
+
# * *check_circular*: true if checking for circular data structures
|
92
|
+
# should be done (the default), false otherwise.
|
93
|
+
# * *check_circular*: true if checking for circular data structures
|
94
|
+
# should be done, false (the default) otherwise.
|
95
|
+
# * *allow_nan*: true if NaN, Infinity, and -Infinity should be
|
96
|
+
# generated, otherwise an exception is thrown, if these values are
|
97
|
+
# encountered. This options defaults to false.
|
98
|
+
def initialize(opts = {})
|
99
|
+
@seen = {}
|
100
|
+
@indent = ''
|
101
|
+
@space = ''
|
102
|
+
@space_before = ''
|
103
|
+
@object_nl = ''
|
104
|
+
@array_nl = ''
|
105
|
+
@check_circular = true
|
106
|
+
@allow_nan = false
|
107
|
+
configure opts
|
108
|
+
end
|
109
|
+
|
110
|
+
# This string is used to indent levels in the JSON text.
|
111
|
+
attr_accessor :indent
|
112
|
+
|
113
|
+
# This string is used to insert a space between the tokens in a JSON
|
114
|
+
# string.
|
115
|
+
attr_accessor :space
|
116
|
+
|
117
|
+
# This string is used to insert a space before the ':' in JSON objects.
|
118
|
+
attr_accessor :space_before
|
119
|
+
|
120
|
+
# This string is put at the end of a line that holds a JSON object (or
|
121
|
+
# Hash).
|
122
|
+
attr_accessor :object_nl
|
123
|
+
|
124
|
+
# This string is put at the end of a line that holds a JSON array.
|
125
|
+
attr_accessor :array_nl
|
126
|
+
|
127
|
+
# This integer returns the maximum level of data structure nesting in
|
128
|
+
# the generated JSON, max_nesting = 0 if no maximum is checked.
|
129
|
+
attr_accessor :max_nesting
|
130
|
+
|
131
|
+
def check_max_nesting(depth) # :nodoc:
|
132
|
+
return if @max_nesting.zero?
|
133
|
+
current_nesting = depth + 1
|
134
|
+
current_nesting > @max_nesting and
|
135
|
+
raise NestingError, "nesting of #{current_nesting} is too deep"
|
136
|
+
end
|
137
|
+
|
138
|
+
# Returns true, if circular data structures should be checked,
|
139
|
+
# otherwise returns false.
|
140
|
+
def check_circular?
|
141
|
+
@check_circular
|
142
|
+
end
|
143
|
+
|
144
|
+
# Returns true if NaN, Infinity, and -Infinity should be considered as
|
145
|
+
# valid JSON and output.
|
146
|
+
def allow_nan?
|
147
|
+
@allow_nan
|
148
|
+
end
|
149
|
+
|
150
|
+
# Returns _true_, if _object_ was already seen during this generating
|
151
|
+
# run.
|
152
|
+
def seen?(object)
|
153
|
+
@seen.key?(object.__id__)
|
154
|
+
end
|
155
|
+
|
156
|
+
# Remember _object_, to find out if it was already encountered (if a
|
157
|
+
# cyclic data structure is if a cyclic data structure is rendered).
|
158
|
+
def remember(object)
|
159
|
+
@seen[object.__id__] = true
|
160
|
+
end
|
161
|
+
|
162
|
+
# Forget _object_ for this generating run.
|
163
|
+
def forget(object)
|
164
|
+
@seen.delete object.__id__
|
165
|
+
end
|
166
|
+
|
167
|
+
# Configure this State instance with the Hash _opts_, and return
|
168
|
+
# itself.
|
169
|
+
def configure(opts)
|
170
|
+
@indent = opts[:indent] if opts.key?(:indent)
|
171
|
+
@space = opts[:space] if opts.key?(:space)
|
172
|
+
@space_before = opts[:space_before] if opts.key?(:space_before)
|
173
|
+
@object_nl = opts[:object_nl] if opts.key?(:object_nl)
|
174
|
+
@array_nl = opts[:array_nl] if opts.key?(:array_nl)
|
175
|
+
@check_circular = !!opts[:check_circular] if opts.key?(:check_circular)
|
176
|
+
@allow_nan = !!opts[:allow_nan] if opts.key?(:allow_nan)
|
177
|
+
if !opts.key?(:max_nesting) # defaults to 19
|
178
|
+
@max_nesting = 19
|
179
|
+
elsif opts[:max_nesting]
|
180
|
+
@max_nesting = opts[:max_nesting]
|
181
|
+
else
|
182
|
+
@max_nesting = 0
|
183
|
+
end
|
184
|
+
self
|
185
|
+
end
|
186
|
+
|
187
|
+
# Returns the configuration instance variables as a hash, that can be
|
188
|
+
# passed to the configure method.
|
189
|
+
def to_h
|
190
|
+
result = {}
|
191
|
+
for iv in %w[indent space space_before object_nl array_nl check_circular allow_nan max_nesting]
|
192
|
+
result[iv.intern] = instance_variable_get("@#{iv}")
|
193
|
+
end
|
194
|
+
result
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
module GeneratorMethods
|
199
|
+
module Object
|
200
|
+
# Converts this object to a string (calling #to_s), converts
|
201
|
+
# it to a JSON string, and returns the result. This is a fallback, if no
|
202
|
+
# special method #to_json was defined for some object.
|
203
|
+
def to_json(*) to_s.to_json end
|
204
|
+
end
|
205
|
+
|
206
|
+
module Hash
|
207
|
+
# Returns a JSON string containing a JSON object, that is unparsed from
|
208
|
+
# this Hash instance.
|
209
|
+
# _state_ is a JSON::State object, that can also be used to configure the
|
210
|
+
# produced JSON string output further.
|
211
|
+
# _depth_ is used to find out nesting depth, to indent accordingly.
|
212
|
+
def to_json(state = nil, depth = 0, *)
|
213
|
+
if state
|
214
|
+
state = JSON.state.from_state(state)
|
215
|
+
state.check_max_nesting(depth)
|
216
|
+
json_check_circular(state) { json_transform(state, depth) }
|
217
|
+
else
|
218
|
+
json_transform(state, depth)
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
222
|
+
private
|
223
|
+
|
224
|
+
def json_check_circular(state)
|
225
|
+
if state and state.check_circular?
|
226
|
+
state.seen?(self) and raise JSON::CircularDatastructure,
|
227
|
+
"circular data structures not supported!"
|
228
|
+
state.remember self
|
229
|
+
end
|
230
|
+
yield
|
231
|
+
ensure
|
232
|
+
state and state.forget self
|
233
|
+
end
|
234
|
+
|
235
|
+
def json_shift(state, depth)
|
236
|
+
state and not state.object_nl.empty? or return ''
|
237
|
+
state.indent * depth
|
238
|
+
end
|
239
|
+
|
240
|
+
def json_transform(state, depth)
|
241
|
+
delim = ','
|
242
|
+
delim << state.object_nl if state
|
243
|
+
result = '{'
|
244
|
+
result << state.object_nl if state
|
245
|
+
result << map { |key,value|
|
246
|
+
s = json_shift(state, depth + 1)
|
247
|
+
s << key.to_s.to_json(state, depth + 1)
|
248
|
+
s << state.space_before if state
|
249
|
+
s << ':'
|
250
|
+
s << state.space if state
|
251
|
+
s << value.to_json(state, depth + 1)
|
252
|
+
}.join(delim)
|
253
|
+
result << state.object_nl if state
|
254
|
+
result << json_shift(state, depth)
|
255
|
+
result << '}'
|
256
|
+
result
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
module Array
|
261
|
+
# Returns a JSON string containing a JSON array, that is unparsed from
|
262
|
+
# this Array instance.
|
263
|
+
# _state_ is a JSON::State object, that can also be used to configure the
|
264
|
+
# produced JSON string output further.
|
265
|
+
# _depth_ is used to find out nesting depth, to indent accordingly.
|
266
|
+
def to_json(state = nil, depth = 0, *)
|
267
|
+
if state
|
268
|
+
state = JSON.state.from_state(state)
|
269
|
+
state.check_max_nesting(depth)
|
270
|
+
json_check_circular(state) { json_transform(state, depth) }
|
271
|
+
else
|
272
|
+
json_transform(state, depth)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
private
|
277
|
+
|
278
|
+
def json_check_circular(state)
|
279
|
+
if state and state.check_circular?
|
280
|
+
state.seen?(self) and raise JSON::CircularDatastructure,
|
281
|
+
"circular data structures not supported!"
|
282
|
+
state.remember self
|
283
|
+
end
|
284
|
+
yield
|
285
|
+
ensure
|
286
|
+
state and state.forget self
|
287
|
+
end
|
288
|
+
|
289
|
+
def json_shift(state, depth)
|
290
|
+
state and not state.array_nl.empty? or return ''
|
291
|
+
state.indent * depth
|
292
|
+
end
|
293
|
+
|
294
|
+
def json_transform(state, depth)
|
295
|
+
delim = ','
|
296
|
+
delim << state.array_nl if state
|
297
|
+
result = '['
|
298
|
+
result << state.array_nl if state
|
299
|
+
result << map { |value|
|
300
|
+
json_shift(state, depth + 1) << value.to_json(state, depth + 1)
|
301
|
+
}.join(delim)
|
302
|
+
result << state.array_nl if state
|
303
|
+
result << json_shift(state, depth)
|
304
|
+
result << ']'
|
305
|
+
result
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
module Integer
|
310
|
+
# Returns a JSON string representation for this Integer number.
|
311
|
+
def to_json(*) to_s end
|
312
|
+
end
|
313
|
+
|
314
|
+
module Float
|
315
|
+
# Returns a JSON string representation for this Float number.
|
316
|
+
def to_json(state = nil, *)
|
317
|
+
case
|
318
|
+
when infinite?
|
319
|
+
if !state || state.allow_nan?
|
320
|
+
to_s
|
321
|
+
else
|
322
|
+
raise GeneratorError, "#{self} not allowed in JSON"
|
323
|
+
end
|
324
|
+
when nan?
|
325
|
+
if !state || state.allow_nan?
|
326
|
+
to_s
|
327
|
+
else
|
328
|
+
raise GeneratorError, "#{self} not allowed in JSON"
|
329
|
+
end
|
330
|
+
else
|
331
|
+
to_s
|
332
|
+
end
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
module String
|
337
|
+
# This string should be encoded with UTF-8 A call to this method
|
338
|
+
# returns a JSON string encoded with UTF16 big endian characters as
|
339
|
+
# \u????.
|
340
|
+
def to_json(*)
|
341
|
+
'"' << JSON.utf8_to_json(self) << '"'
|
342
|
+
end
|
343
|
+
|
344
|
+
# Module that holds the extinding methods if, the String module is
|
345
|
+
# included.
|
346
|
+
module Extend
|
347
|
+
# Raw Strings are JSON Objects (the raw bytes are stored in an array for the
|
348
|
+
# key "raw"). The Ruby String can be created by this module method.
|
349
|
+
def json_create(o)
|
350
|
+
o['raw'].pack('C*')
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
# Extends _modul_ with the String::Extend module.
|
355
|
+
def self.included(modul)
|
356
|
+
modul.extend Extend
|
357
|
+
end
|
358
|
+
|
359
|
+
# This method creates a raw object hash, that can be nested into
|
360
|
+
# other data structures and will be unparsed as a raw string. This
|
361
|
+
# method should be used, if you want to convert raw strings to JSON
|
362
|
+
# instead of UTF-8 strings, e. g. binary data.
|
363
|
+
def to_json_raw_object
|
364
|
+
{
|
365
|
+
JSON.create_id => self.class.name,
|
366
|
+
'raw' => self.unpack('C*'),
|
367
|
+
}
|
368
|
+
end
|
369
|
+
|
370
|
+
# This method creates a JSON text from the result of
|
371
|
+
# a call to to_json_raw_object of this String.
|
372
|
+
def to_json_raw(*args)
|
373
|
+
to_json_raw_object.to_json(*args)
|
374
|
+
end
|
375
|
+
end
|
376
|
+
|
377
|
+
module TrueClass
|
378
|
+
# Returns a JSON string for true: 'true'.
|
379
|
+
def to_json(*) 'true' end
|
380
|
+
end
|
381
|
+
|
382
|
+
module FalseClass
|
383
|
+
# Returns a JSON string for false: 'false'.
|
384
|
+
def to_json(*) 'false' end
|
385
|
+
end
|
386
|
+
|
387
|
+
module NilClass
|
388
|
+
# Returns a JSON string for nil: 'null'.
|
389
|
+
def to_json(*) 'null' end
|
390
|
+
end
|
391
|
+
end
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
@@ -0,0 +1,259 @@
|
|
1
|
+
require 'strscan'
|
2
|
+
|
3
|
+
module JSON
|
4
|
+
module Pure
|
5
|
+
# This class implements the JSON parser that is used to parse a JSON string
|
6
|
+
# into a Ruby data structure.
|
7
|
+
class Parser < StringScanner
|
8
|
+
STRING = /" ((?:[^\x0-\x1f"\\] |
|
9
|
+
\\["\\\/bfnrt] |
|
10
|
+
\\u[0-9a-fA-F]{4} |
|
11
|
+
\\[\x20-\xff])*)
|
12
|
+
"/nx
|
13
|
+
INTEGER = /(-?0|-?[1-9]\d*)/
|
14
|
+
FLOAT = /(-?
|
15
|
+
(?:0|[1-9]\d*)
|
16
|
+
(?:
|
17
|
+
\.\d+(?i:e[+-]?\d+) |
|
18
|
+
\.\d+ |
|
19
|
+
(?i:e[+-]?\d+)
|
20
|
+
)
|
21
|
+
)/x
|
22
|
+
NAN = /NaN/
|
23
|
+
INFINITY = /Infinity/
|
24
|
+
MINUS_INFINITY = /-Infinity/
|
25
|
+
OBJECT_OPEN = /\{/
|
26
|
+
OBJECT_CLOSE = /\}/
|
27
|
+
ARRAY_OPEN = /\[/
|
28
|
+
ARRAY_CLOSE = /\]/
|
29
|
+
PAIR_DELIMITER = /:/
|
30
|
+
COLLECTION_DELIMITER = /,/
|
31
|
+
TRUE = /true/
|
32
|
+
FALSE = /false/
|
33
|
+
NULL = /null/
|
34
|
+
IGNORE = %r(
|
35
|
+
(?:
|
36
|
+
//[^\n\r]*[\n\r]| # line comments
|
37
|
+
/\* # c-style comments
|
38
|
+
(?:
|
39
|
+
[^*/]| # normal chars
|
40
|
+
/[^*]| # slashes that do not start a nested comment
|
41
|
+
\*[^/]| # asterisks that do not end this comment
|
42
|
+
/(?=\*/) # single slash before this comment's end
|
43
|
+
)*
|
44
|
+
\*/ # the End of this comment
|
45
|
+
|[ \t\r\n]+ # whitespaces: space, horicontal tab, lf, cr
|
46
|
+
)+
|
47
|
+
)mx
|
48
|
+
|
49
|
+
UNPARSED = Object.new
|
50
|
+
|
51
|
+
# Creates a new JSON::Pure::Parser instance for the string _source_.
|
52
|
+
#
|
53
|
+
# It will be configured by the _opts_ hash. _opts_ can have the following
|
54
|
+
# keys:
|
55
|
+
# * *max_nesting*: The maximum depth of nesting allowed in the parsed data
|
56
|
+
# structures. Disable depth checking with :max_nesting => false|nil|0,
|
57
|
+
# it defaults to 19.
|
58
|
+
# * *allow_nan*: If set to true, allow NaN, Infinity and -Infinity in
|
59
|
+
# defiance of RFC 4627 to be parsed by the Parser. This option defaults
|
60
|
+
# to false.
|
61
|
+
# * *create_additions*: If set to false, the Parser doesn't create
|
62
|
+
# additions even if a matchin class and create_id was found. This option
|
63
|
+
# defaults to true.
|
64
|
+
def initialize(source, opts = {})
|
65
|
+
super
|
66
|
+
if !opts.key?(:max_nesting) # defaults to 19
|
67
|
+
@max_nesting = 19
|
68
|
+
elsif opts[:max_nesting]
|
69
|
+
@max_nesting = opts[:max_nesting]
|
70
|
+
else
|
71
|
+
@max_nesting = 0
|
72
|
+
end
|
73
|
+
@allow_nan = !!opts[:allow_nan]
|
74
|
+
ca = true
|
75
|
+
ca = opts[:create_additions] if opts.key?(:create_additions)
|
76
|
+
@create_id = ca ? JSON.create_id : nil
|
77
|
+
end
|
78
|
+
|
79
|
+
alias source string
|
80
|
+
|
81
|
+
# Parses the current JSON string _source_ and returns the complete data
|
82
|
+
# structure as a result.
|
83
|
+
def parse
|
84
|
+
reset
|
85
|
+
obj = nil
|
86
|
+
until eos?
|
87
|
+
case
|
88
|
+
when scan(OBJECT_OPEN)
|
89
|
+
obj and raise ParserError, "source '#{peek(20)}' not in JSON!"
|
90
|
+
@current_nesting = 1
|
91
|
+
obj = parse_object
|
92
|
+
when scan(ARRAY_OPEN)
|
93
|
+
obj and raise ParserError, "source '#{peek(20)}' not in JSON!"
|
94
|
+
@current_nesting = 1
|
95
|
+
obj = parse_array
|
96
|
+
when skip(IGNORE)
|
97
|
+
;
|
98
|
+
else
|
99
|
+
raise ParserError, "source '#{peek(20)}' not in JSON!"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
obj or raise ParserError, "source did not contain any JSON!"
|
103
|
+
obj
|
104
|
+
end
|
105
|
+
|
106
|
+
private
|
107
|
+
|
108
|
+
# Unescape characters in strings.
|
109
|
+
UNESCAPE_MAP = Hash.new { |h, k| h[k] = k.chr }
|
110
|
+
UNESCAPE_MAP.update({
|
111
|
+
?" => '"',
|
112
|
+
?\\ => '\\',
|
113
|
+
?/ => '/',
|
114
|
+
?b => "\b",
|
115
|
+
?f => "\f",
|
116
|
+
?n => "\n",
|
117
|
+
?r => "\r",
|
118
|
+
?t => "\t",
|
119
|
+
?u => nil,
|
120
|
+
})
|
121
|
+
|
122
|
+
def parse_string
|
123
|
+
if scan(STRING)
|
124
|
+
return '' if self[1].empty?
|
125
|
+
self[1].gsub(%r((?:\\[\\bfnrt"/]|(?:\\u(?:[A-Fa-f\d]{4}))+|\\[\x20-\xff]))n) do |c|
|
126
|
+
if u = UNESCAPE_MAP[$&[1]]
|
127
|
+
u
|
128
|
+
else # \uXXXX
|
129
|
+
bytes = ''
|
130
|
+
i = 0
|
131
|
+
while c[6 * i] == ?\\ && c[6 * i + 1] == ?u
|
132
|
+
bytes << c[6 * i + 2, 2].to_i(16) << c[6 * i + 4, 2].to_i(16)
|
133
|
+
i += 1
|
134
|
+
end
|
135
|
+
JSON::UTF16toUTF8.iconv(bytes)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
else
|
139
|
+
UNPARSED
|
140
|
+
end
|
141
|
+
rescue Iconv::Failure => e
|
142
|
+
raise GeneratorError, "Caught #{e.class}: #{e}"
|
143
|
+
end
|
144
|
+
|
145
|
+
def parse_value
|
146
|
+
case
|
147
|
+
when scan(FLOAT)
|
148
|
+
Float(self[1])
|
149
|
+
when scan(INTEGER)
|
150
|
+
Integer(self[1])
|
151
|
+
when scan(TRUE)
|
152
|
+
true
|
153
|
+
when scan(FALSE)
|
154
|
+
false
|
155
|
+
when scan(NULL)
|
156
|
+
nil
|
157
|
+
when (string = parse_string) != UNPARSED
|
158
|
+
string
|
159
|
+
when scan(ARRAY_OPEN)
|
160
|
+
@current_nesting += 1
|
161
|
+
ary = parse_array
|
162
|
+
@current_nesting -= 1
|
163
|
+
ary
|
164
|
+
when scan(OBJECT_OPEN)
|
165
|
+
@current_nesting += 1
|
166
|
+
obj = parse_object
|
167
|
+
@current_nesting -= 1
|
168
|
+
obj
|
169
|
+
when @allow_nan && scan(NAN)
|
170
|
+
NaN
|
171
|
+
when @allow_nan && scan(INFINITY)
|
172
|
+
Infinity
|
173
|
+
when @allow_nan && scan(MINUS_INFINITY)
|
174
|
+
MinusInfinity
|
175
|
+
else
|
176
|
+
UNPARSED
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
def parse_array
|
181
|
+
raise NestingError, "nesting of #@current_nesting is to deep" if
|
182
|
+
@max_nesting.nonzero? && @current_nesting > @max_nesting
|
183
|
+
result = []
|
184
|
+
delim = false
|
185
|
+
until eos?
|
186
|
+
case
|
187
|
+
when (value = parse_value) != UNPARSED
|
188
|
+
delim = false
|
189
|
+
result << value
|
190
|
+
skip(IGNORE)
|
191
|
+
if scan(COLLECTION_DELIMITER)
|
192
|
+
delim = true
|
193
|
+
elsif match?(ARRAY_CLOSE)
|
194
|
+
;
|
195
|
+
else
|
196
|
+
raise ParserError, "expected ',' or ']' in array at '#{peek(20)}'!"
|
197
|
+
end
|
198
|
+
when scan(ARRAY_CLOSE)
|
199
|
+
if delim
|
200
|
+
raise ParserError, "expected next element in array at '#{peek(20)}'!"
|
201
|
+
end
|
202
|
+
break
|
203
|
+
when skip(IGNORE)
|
204
|
+
;
|
205
|
+
else
|
206
|
+
raise ParserError, "unexpected token in array at '#{peek(20)}'!"
|
207
|
+
end
|
208
|
+
end
|
209
|
+
result
|
210
|
+
end
|
211
|
+
|
212
|
+
def parse_object
|
213
|
+
raise NestingError, "nesting of #@current_nesting is to deep" if
|
214
|
+
@max_nesting.nonzero? && @current_nesting > @max_nesting
|
215
|
+
result = {}
|
216
|
+
delim = false
|
217
|
+
until eos?
|
218
|
+
case
|
219
|
+
when (string = parse_string) != UNPARSED
|
220
|
+
skip(IGNORE)
|
221
|
+
unless scan(PAIR_DELIMITER)
|
222
|
+
raise ParserError, "expected ':' in object at '#{peek(20)}'!"
|
223
|
+
end
|
224
|
+
skip(IGNORE)
|
225
|
+
unless (value = parse_value).equal? UNPARSED
|
226
|
+
result[string] = value
|
227
|
+
delim = false
|
228
|
+
skip(IGNORE)
|
229
|
+
if scan(COLLECTION_DELIMITER)
|
230
|
+
delim = true
|
231
|
+
elsif match?(OBJECT_CLOSE)
|
232
|
+
;
|
233
|
+
else
|
234
|
+
raise ParserError, "expected ',' or '}' in object at '#{peek(20)}'!"
|
235
|
+
end
|
236
|
+
else
|
237
|
+
raise ParserError, "expected value in object at '#{peek(20)}'!"
|
238
|
+
end
|
239
|
+
when scan(OBJECT_CLOSE)
|
240
|
+
if delim
|
241
|
+
raise ParserError, "expected next name, value pair in object at '#{peek(20)}'!"
|
242
|
+
end
|
243
|
+
if @create_id and klassname = result[@create_id]
|
244
|
+
klass = JSON.deep_const_get klassname
|
245
|
+
break unless klass and klass.json_creatable?
|
246
|
+
result = klass.json_create(result)
|
247
|
+
end
|
248
|
+
break
|
249
|
+
when skip(IGNORE)
|
250
|
+
;
|
251
|
+
else
|
252
|
+
raise ParserError, "unexpected token in object at '#{peek(20)}'!"
|
253
|
+
end
|
254
|
+
end
|
255
|
+
result
|
256
|
+
end
|
257
|
+
end
|
258
|
+
end
|
259
|
+
end
|