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

Comparing JSON-XS/XS.pm (file contents):
Revision 1.2 by root, Thu Mar 22 17:28:50 2007 UTC vs.
Revision 1.9 by root, Fri Mar 23 16:00:19 2007 UTC

59=cut 59=cut
60 60
61package JSON::XS; 61package JSON::XS;
62 62
63BEGIN { 63BEGIN {
64 $VERSION = '0.1'; 64 $VERSION = '0.3';
65 @ISA = qw(Exporter); 65 @ISA = qw(Exporter);
66 66
67 @EXPORT = qw(to_json from_json); 67 @EXPORT = qw(to_json from_json);
68 require Exporter; 68 require Exporter;
69 69
111strings. All boolean flags described below are by default I<disabled>. 111strings. All boolean flags described below are by default I<disabled>.
112 112
113The mutators for flags all return the JSON object again and thus calls can 113The mutators for flags all return the JSON object again and thus calls can
114be chained: 114be chained:
115 115
116 my $json = JSON::XS->new->utf8(1)->pretty(1)->encode ({a => [1,2]}) 116 my $json = JSON::XS->new->utf8(1)->space_after(1)->encode ({a => [1,2]})
117 => {"a" : [1, 2]} 117 => {"a": [1, 2]}
118 118
119=item $json = $json->ascii ($enable) 119=item $json = $json->ascii ([$enable])
120 120
121If C<$enable> is true, then the C<encode> method will not generate 121If C<$enable> is true (or missing), then the C<encode> method will
122characters outside the code range C<0..127>. Any unicode characters 122not generate characters outside the code range C<0..127>. Any unicode
123outside that range will be escaped using either a single \uXXXX (BMP 123characters outside that range will be escaped using either a single
124characters) or a double \uHHHH\uLLLLL escape sequence, as per RFC4627. 124\uXXXX (BMP characters) or a double \uHHHH\uLLLLL escape sequence, as per
125RFC4627.
125 126
126If C<$enable> is false, then the C<encode> method will not escape Unicode 127If C<$enable> is false, then the C<encode> method will not escape Unicode
127characters unless necessary. 128characters unless necessary.
128 129
130 JSON::XS->new->ascii (1)->encode (chr 0x10401)
131 => \ud801\udc01
132
129=item $json = $json->utf8 ($enable) 133=item $json = $json->utf8 ([$enable])
130 134
131If C<$enable> is true, then the C<encode> method will encode the JSON 135If C<$enable> is true (or missing), then the C<encode> method will encode
132string into UTF-8, as required by many protocols, while the C<decode> 136the JSON string into UTF-8, as required by many protocols, while the
133method expects to be handled an UTF-8-encoded string. Please note that 137C<decode> method expects to be handled an UTF-8-encoded string. Please
134UTF-8-encoded strings do not contain any characters outside the range 138note that UTF-8-encoded strings do not contain any characters outside the
135C<0..255>, they are thus useful for bytewise/binary I/O. 139range C<0..255>, they are thus useful for bytewise/binary I/O.
136 140
137If C<$enable> is false, then the C<encode> method will return the JSON 141If C<$enable> is false, then the C<encode> method will return the JSON
138string as a (non-encoded) unicode string, while C<decode> expects thus a 142string as a (non-encoded) unicode string, while C<decode> expects thus a
139unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs 143unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs
140to be done yourself, e.g. using the Encode module. 144to be done yourself, e.g. using the Encode module.
141 145
142=item $json = $json->pretty ($enabla) 146=item $json = $json->pretty ([$enable])
143 147
144This enables (or disables) all of the C<indent>, C<space_before> and 148This enables (or disables) all of the C<indent>, C<space_before> and
145C<space_after> (and in the future possibly more) settings in one call to 149C<space_after> (and in the future possibly more) flags in one call to
146generate the most readable (or most compact) form possible. 150generate the most readable (or most compact) form possible.
147 151
152 my $json = JSON::XS->new->pretty(1)->encode ({a => [1,2]})
153 =>
154 {
155 "a" : [
156 1,
157 2
158 ]
159 }
160
148=item $json = $json->indent ($enable) 161=item $json = $json->indent ([$enable])
149 162
150If C<$enable> is true, then the C<encode> method will use a multiline 163If C<$enable> is true (or missing), then the C<encode> method will use a multiline
151format as output, putting every array member or object/hash key-value pair 164format as output, putting every array member or object/hash key-value pair
152into its own line, identing them properly. 165into its own line, identing them properly.
153 166
154If C<$enable> is false, no newlines or indenting will be produced, and the 167If C<$enable> is false, no newlines or indenting will be produced, and the
155resulting JSON strings is guarenteed not to contain any C<newlines>. 168resulting JSON strings is guarenteed not to contain any C<newlines>.
156 169
157This setting has no effect when decoding JSON strings. 170This setting has no effect when decoding JSON strings.
158 171
159=item $json = $json->space_before ($enable) 172=item $json = $json->space_before ([$enable])
160 173
161If C<$enable> is true, then the C<encode> method will add an extra 174If C<$enable> is true (or missing), then the C<encode> method will add an extra
162optional space before the C<:> separating keys from values in JSON objects. 175optional space before the C<:> separating keys from values in JSON objects.
163 176
164If C<$enable> is false, then the C<encode> method will not add any extra 177If C<$enable> is false, then the C<encode> method will not add any extra
165space at those places. 178space at those places.
166 179
167This setting has no effect when decoding JSON strings. You will also most 180This setting has no effect when decoding JSON strings. You will also most
168likely combine this setting with C<space_after>. 181likely combine this setting with C<space_after>.
169 182
170=item $json = $json->space_after ($enable) 183=item $json = $json->space_after ([$enable])
171 184
172If C<$enable> is true, then the C<encode> method will add an extra 185If C<$enable> is true (or missing), then the C<encode> method will add an extra
173optional space after the C<:> separating keys from values in JSON objects 186optional space after the C<:> separating keys from values in JSON objects
174and extra whitespace after the C<,> separating key-value pairs and array 187and extra whitespace after the C<,> separating key-value pairs and array
175members. 188members.
176 189
177If C<$enable> is false, then the C<encode> method will not add any extra 190If C<$enable> is false, then the C<encode> method will not add any extra
178space at those places. 191space at those places.
179 192
180This setting has no effect when decoding JSON strings. 193This setting has no effect when decoding JSON strings.
181 194
182=item $json = $json->canonical ($enable) 195=item $json = $json->canonical ([$enable])
183 196
184If C<$enable> is true, then the C<encode> method will output JSON objects 197If C<$enable> is true (or missing), then the C<encode> method will output JSON objects
185by sorting their keys. This is adding a comparatively high overhead. 198by sorting their keys. This is adding a comparatively high overhead.
186 199
187If C<$enable> is false, then the C<encode> method will output key-value 200If C<$enable> is false, then the C<encode> method will output key-value
188pairs in the order Perl stores them (which will likely change between runs 201pairs in the order Perl stores them (which will likely change between runs
189of the same script). 202of the same script).
192the same JSON string (given the same overall settings). If it is disabled, 205the same JSON string (given the same overall settings). If it is disabled,
193the same hash migh be encoded differently even if contains the same data, 206the same hash migh be encoded differently even if contains the same data,
194as key-value pairs have no inherent ordering in Perl. 207as key-value pairs have no inherent ordering in Perl.
195 208
196This setting has no effect when decoding JSON strings. 209This setting has no effect when decoding JSON strings.
210
211=item $json = $json->allow_nonref ([$enable])
212
213If C<$enable> is true (or missing), then the C<encode> method can convert a
214non-reference into its corresponding string, number or null JSON value,
215which is an extension to RFC4627. Likewise, C<decode> will accept those JSON
216values instead of croaking.
217
218If C<$enable> is false, then the C<encode> method will croak if it isn't
219passed an arrayref or hashref, as JSON strings must either be an object
220or array. Likewise, C<decode> will croak if given something that is not a
221JSON object or array.
222
223=item $json = $json->shrink ([$enable])
224
225Perl usually over-allocates memory a bit when allocating space for
226strings. This flag optionally resizes strings generated by either
227C<encode> or C<decode> to their minimum size possible. This can save
228memory when your JSON strings are either very very long or you have many
229short strings. It will also try to downgrade any strings to octet-form
230if possible: perl stores strings internally either in an encoding called
231UTF-X or in octet-form. The latter cannot store everything but uses less
232space in general.
233
234If C<$enable> is true (or missing), the string returned by C<encode> will be shrunk-to-fit,
235while all strings generated by C<decode> will also be shrunk-to-fit.
236
237If C<$enable> is false, then the normal perl allocation algorithms are used.
238If you work with your data, then this is likely to be faster.
239
240In the future, this setting might control other things, such as converting
241strings that look like integers or floats into integers or floats
242internally (there is no difference on the Perl level), saving space.
197 243
198=item $json_string = $json->encode ($perl_scalar) 244=item $json_string = $json->encode ($perl_scalar)
199 245
200Converts the given Perl data structure (a simple scalar or a reference 246Converts the given Perl data structure (a simple scalar or a reference
201to a hash or array) to its JSON representation. Simple scalars will be 247to a hash or array) to its JSON representation. Simple scalars will be
213Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes 259Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes
214C<1>, C<false> becomes C<0> and C<null> becomes C<undef>. 260C<1>, C<false> becomes C<0> and C<null> becomes C<undef>.
215 261
216=back 262=back
217 263
264=head1 COMPARISON
265
266As already mentioned, this module was created because none of the existing
267JSON modules could be made to work correctly. First I will describe the
268problems (or pleasures) I encountered with various existing JSON modules,
269followed by some benchmark values. JSON::XS was designed not to suffer
270from any of these problems or limitations.
271
272=over 4
273
274=item JSON 1.07
275
276Slow (but very portable, as it is written in pure Perl).
277
278Undocumented/buggy Unicode handling (how JSON handles unicode values is
279undocumented. One can get far by feeding it unicode strings and doing
280en-/decoding oneself, but unicode escapes are not working properly).
281
282No roundtripping (strings get clobbered if they look like numbers, e.g.
283the string C<2.0> will encode to C<2.0> instead of C<"2.0">, and that will
284decode into the number 2.
285
286=item JSON::PC 0.01
287
288Very fast.
289
290Undocumented/buggy Unicode handling.
291
292No roundtripping.
293
294Has problems handling many Perl values (e.g. regex results and other magic
295values will make it croak).
296
297Does not even generate valid JSON (C<{1,2}> gets converted to C<{1:2}>
298which is not a valid JSON string.
299
300Unmaintained (maintainer unresponsive for many months, bugs are not
301getting fixed).
302
303=item JSON::Syck 0.21
304
305Very buggy (often crashes).
306
307Very inflexible (no human-readable format supported, format pretty much
308undocumented. I need at least a format for easy reading by humans and a
309single-line compact format for use in a protocol, and preferably a way to
310generate ASCII-only JSON strings).
311
312Completely broken (and confusingly documented) Unicode handling (unicode
313escapes are not working properly, you need to set ImplicitUnicode to
314I<different> values on en- and decoding to get symmetric behaviour).
315
316No roundtripping (simple cases work, but this depends on wether the scalar
317value was used in a numeric context or not).
318
319Dumping hashes may skip hash values depending on iterator state.
320
321Unmaintained (maintainer unresponsive for many months, bugs are not
322getting fixed).
323
324Does not check input for validity (i.e. will accept non-JSON input and
325return "something" instead of raising an exception. This is a security
326issue: imagine two banks transfering money between each other using
327JSON. One bank might parse a given non-JSON request and deduct money,
328while the other might reject the transaction with a syntax error. While a
329good protocol will at least recover, that is extra unnecessary work and
330the transaction will still not succeed).
331
332=item JSON::DWIW 0.04
333
334Very fast. Very natural. Very nice.
335
336Undocumented unicode handling (but the best of the pack. Unicode escapes
337still don't get parsed properly).
338
339Very inflexible.
340
341No roundtripping.
342
343Does not generate valid JSON (key strings are often unquoted, empty keys
344result in nothing being output)
345
346Does not check input for validity.
347
348=back
349
350=head2 SPEED
351
352It seems that JSON::XS is surprisingly fast, as shown in the following
353tables. They have been generated with the help of the C<eg/bench> program
354in the JSON::XS distribution, to make it easy to compare on your own
355system.
356
357First is a comparison between various modules using a very simple JSON
358string, showing the number of encodes/decodes per second (JSON::XS is
359the functional interface, while JSON::XS/2 is the OO interface with
360pretty-printing and hashkey sorting enabled).
361
362 module | encode | decode |
363 -----------|------------|------------|
364 JSON | 14006 | 6820 |
365 JSON::DWIW | 200937 | 120386 |
366 JSON::PC | 85065 | 129366 |
367 JSON::Syck | 59898 | 44232 |
368 JSON::XS | 1171478 | 342435 |
369 JSON::XS/2 | 730760 | 328714 |
370 -----------+------------+------------+
371
372That is, JSON::XS is 6 times faster than than JSON::DWIW and about 80
373times faster than JSON, even with pretty-printing and key sorting.
374
375Using a longer test string (roughly 8KB, generated from Yahoo! Locals
376search API (http://nanoref.com/yahooapis/mgPdGg):
377
378 module | encode | decode |
379 -----------|------------|------------|
380 JSON | 673 | 38 |
381 JSON::DWIW | 5271 | 770 |
382 JSON::PC | 9901 | 2491 |
383 JSON::Syck | 2360 | 786 |
384 JSON::XS | 37398 | 3202 |
385 JSON::XS/2 | 13765 | 3153 |
386 -----------+------------+------------+
387
388Again, JSON::XS leads by far in the encoding case, while still beating
389every other module in the decoding case.
390
391Last example is an almost 8MB large hash with many large binary values
392(PNG files), resulting in a lot of escaping:
393
394=head1 BUGS
395
396While the goal of this module is to be correct, that unfortunately does
397not mean its bug-free, only that I think its design is bug-free. It is
398still very young and not well-tested. If you keep reporting bugs they will
399be fixed swiftly, though.
400
218=cut 401=cut
219 402
2201; 4031;
221 404
222=head1 AUTHOR 405=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines