ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/README
(Generate patch)

Comparing JSON-XS/README (file contents):
Revision 1.8 by root, Sun Mar 25 22:11:06 2007 UTC vs.
Revision 1.12 by root, Wed Jun 6 18:17:13 2007 UTC

112 $json = $json->ascii ([$enable]) 112 $json = $json->ascii ([$enable])
113 If $enable is true (or missing), then the "encode" method will not 113 If $enable is true (or missing), then the "encode" method will not
114 generate characters outside the code range 0..127 (which is ASCII). 114 generate characters outside the code range 0..127 (which is ASCII).
115 Any unicode characters outside that range will be escaped using 115 Any unicode characters outside that range will be escaped using
116 either a single \uXXXX (BMP characters) or a double \uHHHH\uLLLLL 116 either a single \uXXXX (BMP characters) or a double \uHHHH\uLLLLL
117 escape sequence, as per RFC4627. 117 escape sequence, as per RFC4627. The resulting encoded JSON text can
118 be treated as a native unicode string, an ascii-encoded,
119 latin1-encoded or UTF-8 encoded string, or any other superset of
120 ASCII.
118 121
119 If $enable is false, then the "encode" method will not escape 122 If $enable is false, then the "encode" method will not escape
120 Unicode characters unless required by the JSON syntax. This results 123 Unicode characters unless required by the JSON syntax or other
121 in a faster and more compact format. 124 flags. This results in a faster and more compact format.
125
126 The main use for this flag is to produce JSON texts that can be
127 transmitted over a 7-bit channel, as the encoded JSON texts will not
128 contain any 8 bit characters.
122 129
123 JSON::XS->new->ascii (1)->encode ([chr 0x10401]) 130 JSON::XS->new->ascii (1)->encode ([chr 0x10401])
124 => ["\ud801\udc01"] 131 => ["\ud801\udc01"]
132
133 $json = $json->latin1 ([$enable])
134 If $enable is true (or missing), then the "encode" method will
135 encode the resulting JSON text as latin1 (or iso-8859-1), escaping
136 any characters outside the code range 0..255. The resulting string
137 can be treated as a latin1-encoded JSON text or a native unicode
138 string. The "decode" method will not be affected in any way by this
139 flag, as "decode" by default expects unicode, which is a strict
140 superset of latin1.
141
142 If $enable is false, then the "encode" method will not escape
143 Unicode characters unless required by the JSON syntax or other
144 flags.
145
146 The main use for this flag is efficiently encoding binary data as
147 JSON text, as most octets will not be escaped, resulting in a
148 smaller encoded size. The disadvantage is that the resulting JSON
149 text is encoded in latin1 (and must correctly be treated as such
150 when storing and transfering), a rare encoding for JSON. It is
151 therefore most useful when you want to store data structures known
152 to contain binary data efficiently in files or databases, not when
153 talking to other JSON encoders/decoders.
154
155 JSON::XS->new->latin1->encode (["\x{89}\x{abc}"]
156 => ["\x{89}\\u0abc"] # (perl syntax, U+abc escaped, U+89 not)
125 157
126 $json = $json->utf8 ([$enable]) 158 $json = $json->utf8 ([$enable])
127 If $enable is true (or missing), then the "encode" method will 159 If $enable is true (or missing), then the "encode" method will
128 encode the JSON result into UTF-8, as required by many protocols, 160 encode the JSON result into UTF-8, as required by many protocols,
129 while the "decode" method expects to be handled an UTF-8-encoded 161 while the "decode" method expects to be handled an UTF-8-encoded
245 "encode" or "decode" to their minimum size possible. This can save 277 "encode" or "decode" to their minimum size possible. This can save
246 memory when your JSON texts are either very very long or you have 278 memory when your JSON texts are either very very long or you have
247 many short strings. It will also try to downgrade any strings to 279 many short strings. It will also try to downgrade any strings to
248 octet-form if possible: perl stores strings internally either in an 280 octet-form if possible: perl stores strings internally either in an
249 encoding called UTF-X or in octet-form. The latter cannot store 281 encoding called UTF-X or in octet-form. The latter cannot store
250 everything but uses less space in general. 282 everything but uses less space in general (and some buggy Perl or C
283 code might even rely on that internal representation being used).
284
285 The actual definition of what shrink does might change in future
286 versions, but it will always try to save space at the expense of
287 time.
251 288
252 If $enable is true (or missing), the string returned by "encode" 289 If $enable is true (or missing), the string returned by "encode"
253 will be shrunk-to-fit, while all strings generated by "decode" will 290 will be shrunk-to-fit, while all strings generated by "decode" will
254 also be shrunk-to-fit. 291 also be shrunk-to-fit.
255 292
260 converting strings that look like integers or floats into integers 297 converting strings that look like integers or floats into integers
261 or floats internally (there is no difference on the Perl level), 298 or floats internally (there is no difference on the Perl level),
262 saving space. 299 saving space.
263 300
264 $json = $json->max_depth ([$maximum_nesting_depth]) 301 $json = $json->max_depth ([$maximum_nesting_depth])
265 Sets the maximum nesting level (default 8192) accepted while 302 Sets the maximum nesting level (default 512) accepted while encoding
266 encoding or decoding. If the JSON text or Perl data structure has an 303 or decoding. If the JSON text or Perl data structure has an equal or
267 equal or higher nesting level then this limit, then the encoder and 304 higher nesting level then this limit, then the encoder and decoder
268 decoder will stop and croak at that point. 305 will stop and croak at that point.
269 306
270 Nesting level is defined by number of hash- or arrayrefs that the 307 Nesting level is defined by number of hash- or arrayrefs that the
271 encoder needs to traverse to reach a given point or the number of 308 encoder needs to traverse to reach a given point or the number of
272 "{" or "[" characters without their matching closing parenthesis 309 "{" or "[" characters without their matching closing parenthesis
273 crossed to reach a given character in a string. 310 crossed to reach a given character in a string.
296 333
297 JSON numbers and strings become simple Perl scalars. JSON arrays 334 JSON numbers and strings become simple Perl scalars. JSON arrays
298 become Perl arrayrefs and JSON objects become Perl hashrefs. "true" 335 become Perl arrayrefs and JSON objects become Perl hashrefs. "true"
299 becomes 1, "false" becomes 0 and "null" becomes "undef". 336 becomes 1, "false" becomes 0 and "null" becomes "undef".
300 337
338 ($perl_scalar, $characters) = $json->decode_prefix ($json_text)
339 This works like the "decode" method, but instead of raising an
340 exception when there is trailing garbage after the first JSON
341 object, it will silently stop parsing there and return the number of
342 characters consumed so far.
343
344 This is useful if your JSON texts are not delimited by an outer
345 protocol (which is not the brightest thing to do in the first place)
346 and you need to know where the JSON text ends.
347
348 JSON::XS->new->decode_prefix ("[1] the tail")
349 => ([], 3)
350
301MAPPING 351MAPPING
302 This section describes how JSON::XS maps Perl values to JSON values and 352 This section describes how JSON::XS maps Perl values to JSON values and
303 vice versa. These mappings are designed to "do the right thing" in most 353 vice versa. These mappings are designed to "do the right thing" in most
304 circumstances automatically, preserving round-tripping characteristics 354 circumstances automatically, preserving round-tripping characteristics
305 (what you put in comes out as something equivalent). 355 (what you put in comes out as something equivalent).
344 truly typeless language, so we can only guess which JSON type is meant 394 truly typeless language, so we can only guess which JSON type is meant
345 by a Perl value. 395 by a Perl value.
346 396
347 hash references 397 hash references
348 Perl hash references become JSON objects. As there is no inherent 398 Perl hash references become JSON objects. As there is no inherent
349 ordering in hash keys, they will usually be encoded in a 399 ordering in hash keys (or JSON objects), they will usually be
350 pseudo-random order that can change between runs of the same program 400 encoded in a pseudo-random order that can change between runs of the
351 but stays generally the same within a single run of a program. 401 same program but stays generally the same within a single run of a
352 JSON::XS can optionally sort the hash keys (determined by the 402 program. JSON::XS can optionally sort the hash keys (determined by
353 *canonical* flag), so the same datastructure will serialise to the 403 the *canonical* flag), so the same datastructure will serialise to
354 same JSON text (given same settings and version of JSON::XS), but 404 the same JSON text (given same settings and version of JSON::XS),
355 this incurs a runtime overhead. 405 but this incurs a runtime overhead and is only rarely useful, e.g.
406 when you want to compare some JSON text against another for
407 equality.
356 408
357 array references 409 array references
358 Perl array references become JSON arrays. 410 Perl array references become JSON arrays.
411
412 other references
413 Other unblessed references are generally not allowed and will cause
414 an exception to be thrown, except for references to the integers 0
415 and 1, which get turned into "false" and "true" atoms in JSON. You
416 can also use "JSON::XS::false" and "JSON::XS::true" to improve
417 readability.
418
419 to_json [\0,JSON::XS::true] # yields [false,true]
359 420
360 blessed objects 421 blessed objects
361 Blessed objects are not allowed. JSON::XS currently tries to encode 422 Blessed objects are not allowed. JSON::XS currently tries to encode
362 their underlying representation (hash- or arrayref), but this 423 their underlying representation (hash- or arrayref), but this
363 behaviour might change in future versions. 424 behaviour might change in future versions.
394 $x += 0; # numify it, ensuring it will be dumped as a number 455 $x += 0; # numify it, ensuring it will be dumped as a number
395 $x *= 1; # same thing, the choise is yours. 456 $x *= 1; # same thing, the choise is yours.
396 457
397 You can not currently output JSON booleans or force the type in 458 You can not currently output JSON booleans or force the type in
398 other, less obscure, ways. Tell me if you need this capability. 459 other, less obscure, ways. Tell me if you need this capability.
399
400 circular data structures
401 Those will be encoded until memory or stackspace runs out.
402 460
403COMPARISON 461COMPARISON
404 As already mentioned, this module was created because none of the 462 As already mentioned, this module was created because none of the
405 existing JSON modules could be made to work correctly. First I will 463 existing JSON modules could be made to work correctly. First I will
406 describe the problems (or pleasures) I encountered with various existing 464 describe the problems (or pleasures) I encountered with various existing
483 It seems that JSON::XS is surprisingly fast, as shown in the following 541 It seems that JSON::XS is surprisingly fast, as shown in the following
484 tables. They have been generated with the help of the "eg/bench" program 542 tables. They have been generated with the help of the "eg/bench" program
485 in the JSON::XS distribution, to make it easy to compare on your own 543 in the JSON::XS distribution, to make it easy to compare on your own
486 system. 544 system.
487 545
488 First comes a comparison between various modules using a very short JSON 546 First comes a comparison between various modules using a very short
489 string: 547 single-line JSON string:
490 548
491 {"method": "handleMessage", "params": ["user1", "we were just talking"], "id": null} 549 {"method": "handleMessage", "params": ["user1", "we were just talking"], \
550 "id": null, "array":[1,11,234,-5,1e5,1e7, true, false]}
492 551
493 It shows the number of encodes/decodes per second (JSON::XS uses the 552 It shows the number of encodes/decodes per second (JSON::XS uses the
494 functional interface, while JSON::XS/2 uses the OO interface with 553 functional interface, while JSON::XS/2 uses the OO interface with
495 pretty-printing and hashkey sorting enabled). Higher is better: 554 pretty-printing and hashkey sorting enabled). Higher is better:
496 555
497 module | encode | decode | 556 module | encode | decode |
498 -----------|------------|------------| 557 -----------|------------|------------|
499 JSON | 11488.516 | 7823.035 | 558 JSON | 7645.468 | 4208.613 |
500 JSON::DWIW | 94708.054 | 129094.260 | 559 JSON::DWIW | 68534.379 | 79437.576 |
501 JSON::PC | 63884.157 | 128528.212 | 560 JSON::PC | 65948.176 | 78251.940 |
502 JSON::Syck | 34898.677 | 42096.911 | 561 JSON::Syck | 23379.621 | 28416.694 |
503 JSON::XS | 654027.064 | 396423.669 | 562 JSON::XS | 388361.481 | 199728.762 |
504 JSON::XS/2 | 371564.190 | 371725.613 | 563 JSON::XS/2 | 218453.333 | 192399.266 |
564 JSON::XS/3 | 338250.323 | 192399.266 |
565 Storable | 15732.573 | 28571.553 |
505 -----------+------------+------------+ 566 -----------+------------+------------+
506 567
507 That is, JSON::XS is more than six times faster than JSON::DWIW on 568 That is, JSON::XS is about five times faster than JSON::DWIW on
508 encoding, more than three times faster on decoding, and about thirty 569 encoding, about three times faster on decoding, and over fourty times
509 times faster than JSON, even with pretty-printing and key sorting. 570 faster than JSON, even with pretty-printing and key sorting. It also
571 compares favourably to Storable for small amounts of data.
510 572
511 Using a longer test string (roughly 18KB, generated from Yahoo! Locals 573 Using a longer test string (roughly 18KB, generated from Yahoo! Locals
512 search API (http://nanoref.com/yahooapis/mgPdGg): 574 search API (http://nanoref.com/yahooapis/mgPdGg):
513 575
514 module | encode | decode | 576 module | encode | decode |
515 -----------|------------|------------| 577 -----------|------------|------------|
516 JSON | 273.023 | 44.674 | 578 JSON | 254.685 | 37.665 |
517 JSON::DWIW | 1089.383 | 1145.704 | 579 JSON::DWIW | 1014.244 | 1087.678 |
580 JSON::PC | 3602.116 | 2307.352 |
581 JSON::Syck | 558.035 | 776.263 |
518 JSON::PC | 3097.419 | 2393.921 | 582 JSON::XS | 5747.196 | 3543.684 |
519 JSON::Syck | 514.060 | 843.053 |
520 JSON::XS | 6479.668 | 3636.364 |
521 JSON::XS/2 | 3774.221 | 3599.124 | 583 JSON::XS/2 | 3968.121 | 3589.170 |
584 JSON::XS/3 | 6105.246 | 3561.134 |
585 Storable | 4456.337 | 5320.020 |
522 -----------+------------+------------+ 586 -----------+------------+------------+
523 587
524 Again, JSON::XS leads by far. 588 Again, JSON::XS leads by far.
525 589
526 On large strings containing lots of high unicode characters, some 590 On large strings containing lots of high unicode characters, some
545 required to decode it into a Perl structure. 609 required to decode it into a Perl structure.
546 610
547 Third, JSON::XS recurses using the C stack when decoding objects and 611 Third, JSON::XS recurses using the C stack when decoding objects and
548 arrays. The C stack is a limited resource: for instance, on my amd64 612 arrays. The C stack is a limited resource: for instance, on my amd64
549 machine with 8MB of stack size I can decode around 180k nested arrays 613 machine with 8MB of stack size I can decode around 180k nested arrays
550 but only 14k nested JSON objects. If that is exceeded, the program 614 but only 14k nested JSON objects (due to perl itself recursing deeply on
615 croak to free the temporary). If that is exceeded, the program crashes.
551 crashes. Thats why the default nesting limit is set to 8192. If your 616 to be conservative, the default nesting limit is set to 512. If your
552 process has a smaller stack, you should adjust this setting accordingly 617 process has a smaller stack, you should adjust this setting accordingly
553 with the "max_depth" method. 618 with the "max_depth" method.
554 619
555 And last but least, something else could bomb you that I forgot to think 620 And last but least, something else could bomb you that I forgot to think
556 of. In that case, you get to keep the pieces. I am alway sopen for 621 of. In that case, you get to keep the pieces. I am always open for
557 hints, though... 622 hints, though...
558 623
559BUGS 624BUGS
560 While the goal of this module is to be correct, that unfortunately does 625 While the goal of this module is to be correct, that unfortunately does
561 not mean its bug-free, only that I think its design is bug-free. It is 626 not mean its bug-free, only that I think its design is bug-free. It is

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines