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.1 by root, Thu Mar 22 16:40:16 2007 UTC vs.
Revision 1.7 by root, Fri Mar 23 15:10:55 2007 UTC

6 6
7 use JSON::XS; 7 use JSON::XS;
8 8
9=head1 DESCRIPTION 9=head1 DESCRIPTION
10 10
11This module converts Perl data structures to JSON and vice versa. Its
12primary goal is to be I<correct> and its secondary goal is to be
13I<fast>. To reach the latter goal it was written in C.
14
15As this is the n-th-something JSON module on CPAN, what was the reason
16to write yet another JSON module? While it seems there are many JSON
17modules, none of them correctly handle all corner cases, and in most cases
18their maintainers are unresponsive, gone missing, or not listening to bug
19reports for other reasons.
20
21See COMPARISON, below, for a comparison to some other JSON modules.
22
23=head2 FEATURES
24
11=over 4 25=over 4
12 26
27=item * correct handling of unicode issues
28
29This module knows how to handle Unicode, and even documents how it does so.
30
31=item * round-trip integrity
32
33When you serialise a perl data structure using only datatypes supported
34by JSON, the deserialised data structure is identical on the Perl level.
35(e.g. the string "2.0" doesn't suddenly become "2").
36
37=item * strict checking of JSON correctness
38
39There is no guessing, no generating of illegal JSON strings by default,
40and only JSON is accepted as input (the latter is a security feature).
41
42=item * fast
43
44compared to other JSON modules, this module compares favourably.
45
46=item * simple to use
47
48This module has both a simple functional interface as well as an OO
49interface.
50
51=item * reasonably versatile output formats
52
53You can choose between the most compact format possible, a pure-ascii
54format, or a pretty-printed format. Or you can combine those features in
55whatever way you like.
56
57=back
58
13=cut 59=cut
14 60
15package JSON::XS; 61package JSON::XS;
16 62
17BEGIN { 63BEGIN {
18 $VERSION = '0.1'; 64 $VERSION = '0.2';
19 @ISA = qw(Exporter); 65 @ISA = qw(Exporter);
20 66
67 @EXPORT = qw(to_json from_json);
21 require Exporter; 68 require Exporter;
22 69
23 require XSLoader; 70 require XSLoader;
24 XSLoader::load JSON::XS::, $VERSION; 71 XSLoader::load JSON::XS::, $VERSION;
25} 72}
26 73
27=item 74=head1 FUNCTIONAL INTERFACE
75
76The following convinience methods are provided by this module. They are
77exported by default:
78
79=over 4
80
81=item $json_string = to_json $perl_scalar
82
83Converts the given Perl data structure (a simple scalar or a reference to
84a hash or array) to a UTF-8 encoded, binary string (that is, the string contains
85octets only). Croaks on error.
86
87This function call is functionally identical to C<< JSON::XS->new->utf8
88(1)->encode ($perl_scalar) >>.
89
90=item $perl_scalar = from_json $json_string
91
92The opposite of C<to_json>: expects an UTF-8 (binary) string and tries to
93parse that as an UTF-8 encoded JSON string, returning the resulting simple
94scalar or reference. Croaks on error.
95
96This function call is functionally identical to C<< JSON::XS->new->utf8
97(1)->decode ($json_string) >>.
98
99=back
100
101=head1 OBJECT-ORIENTED INTERFACE
102
103The object oriented interface lets you configure your own encoding or
104decoding style, within the limits of supported formats.
105
106=over 4
107
108=item $json = new JSON::XS
109
110Creates a new JSON::XS object that can be used to de/encode JSON
111strings. All boolean flags described below are by default I<disabled>.
112
113The mutators for flags all return the JSON object again and thus calls can
114be chained:
115
116 my $json = JSON::XS->new->utf8(1)->space_after(1)->encode ({a => [1,2]})
117 => {"a": [1, 2]}
118
119=item $json = $json->ascii ([$enable])
120
121If C<$enable> is true (or missing), then the C<encode> method will
122not generate characters outside the code range C<0..127>. Any unicode
123characters outside that range will be escaped using either a single
124\uXXXX (BMP characters) or a double \uHHHH\uLLLLL escape sequence, as per
125RFC4627.
126
127If C<$enable> is false, then the C<encode> method will not escape Unicode
128characters unless necessary.
129
130 JSON::XS->new->ascii (1)->encode (chr 0x10401)
131 => \ud801\udc01
132
133=item $json = $json->utf8 ([$enable])
134
135If C<$enable> is true (or missing), then the C<encode> method will encode
136the JSON string into UTF-8, as required by many protocols, while the
137C<decode> method expects to be handled an UTF-8-encoded string. Please
138note that UTF-8-encoded strings do not contain any characters outside the
139range C<0..255>, they are thus useful for bytewise/binary I/O.
140
141If C<$enable> is false, then the C<encode> method will return the JSON
142string as a (non-encoded) unicode string, while C<decode> expects thus a
143unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs
144to be done yourself, e.g. using the Encode module.
145
146=item $json = $json->pretty ([$enable])
147
148This enables (or disables) all of the C<indent>, C<space_before> and
149C<space_after> (and in the future possibly more) flags in one call to
150generate the most readable (or most compact) form possible.
151
152 my $json = JSON::XS->new->pretty(1)->encode ({a => [1,2]})
153 =>
154 {
155 "a" : [
156 1,
157 2
158 ]
159 }
160
161=item $json = $json->indent ([$enable])
162
163If C<$enable> is true (or missing), then the C<encode> method will use a multiline
164format as output, putting every array member or object/hash key-value pair
165into its own line, identing them properly.
166
167If C<$enable> is false, no newlines or indenting will be produced, and the
168resulting JSON strings is guarenteed not to contain any C<newlines>.
169
170This setting has no effect when decoding JSON strings.
171
172=item $json = $json->space_before ([$enable])
173
174If C<$enable> is true (or missing), then the C<encode> method will add an extra
175optional space before the C<:> separating keys from values in JSON objects.
176
177If C<$enable> is false, then the C<encode> method will not add any extra
178space at those places.
179
180This setting has no effect when decoding JSON strings. You will also most
181likely combine this setting with C<space_after>.
182
183=item $json = $json->space_after ([$enable])
184
185If C<$enable> is true (or missing), then the C<encode> method will add an extra
186optional space after the C<:> separating keys from values in JSON objects
187and extra whitespace after the C<,> separating key-value pairs and array
188members.
189
190If C<$enable> is false, then the C<encode> method will not add any extra
191space at those places.
192
193This setting has no effect when decoding JSON strings.
194
195=item $json = $json->canonical ([$enable])
196
197If C<$enable> is true (or missing), then the C<encode> method will output JSON objects
198by sorting their keys. This is adding a comparatively high overhead.
199
200If C<$enable> is false, then the C<encode> method will output key-value
201pairs in the order Perl stores them (which will likely change between runs
202of the same script).
203
204This option is useful if you want the same data structure to be encoded as
205the same JSON string (given the same overall settings). If it is disabled,
206the same hash migh be encoded differently even if contains the same data,
207as key-value pairs have no inherent ordering in Perl.
208
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.
230
231If C<$enable> is true (or missing), the string returned by C<encode> will be shrunk-to-fit,
232while all strings generated by C<decode> will also be shrunk-to-fit.
233
234If C<$enable> is false, then the normal perl allocation algorithms are used.
235If you work with your data, then this is likely to be faster.
236
237In the future, this setting might control other things, such as converting
238strings that look like integers or floats into integers or floats
239internally (there is no difference on the Perl level), saving space.
240
241=item $json_string = $json->encode ($perl_scalar)
242
243Converts the given Perl data structure (a simple scalar or a reference
244to a hash or array) to its JSON representation. Simple scalars will be
245converted into JSON string or number sequences, while references to arrays
246become JSON arrays and references to hashes become JSON objects. Undefined
247Perl values (e.g. C<undef>) become JSON C<null> values. Neither C<true>
248nor C<false> values will be generated.
249
250=item $perl_scalar = $json->decode ($json_string)
251
252The opposite of C<encode>: expects a JSON string and tries to parse it,
253returning the resulting simple scalar or reference. Croaks on error.
254
255JSON numbers and strings become simple Perl scalars. JSON arrays become
256Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes
257C<1>, C<false> becomes C<0> and C<null> becomes C<undef>.
258
259=back
260
261=head1 COMPARISON
262
263As already mentioned, this module was created because none of the existing
264JSON modules could be made to work correctly. First I will describe the
265problems (or pleasures) I encountered with various existing JSON modules,
266followed by some benchmark values. JSON::XS was designed not to suffer
267from any of these problems or limitations.
268
269=over 4
270
271=item JSON 1.07
272
273Slow (but very portable, as it is written in pure Perl).
274
275Undocumented/buggy Unicode handling (how JSON handles unicode values is
276undocumented. One can get far by feeding it unicode strings and doing
277en-/decoding oneself, but unicode escapes are not working properly).
278
279No roundtripping (strings get clobbered if they look like numbers, e.g.
280the string C<2.0> will encode to C<2.0> instead of C<"2.0">, and that will
281decode into the number 2.
282
283=item JSON::PC 0.01
284
285Very fast.
286
287Undocumented/buggy Unicode handling.
288
289No roundtripping.
290
291Has problems handling many Perl values (e.g. regex results and other magic
292values will make it croak).
293
294Does not even generate valid JSON (C<{1,2}> gets converted to C<{1:2}>
295which is not a valid JSON string.
296
297Unmaintained (maintainer unresponsive for many months, bugs are not
298getting fixed).
299
300=item JSON::Syck 0.21
301
302Very buggy (often crashes).
303
304Very inflexible (no human-readable format supported, format pretty much
305undocumented. I need at least a format for easy reading by humans and a
306single-line compact format for use in a protocol, and preferably a way to
307generate ASCII-only JSON strings).
308
309Completely broken (and confusingly documented) Unicode handling (unicode
310escapes are not working properly, you need to set ImplicitUnicode to
311I<different> values on en- and decoding to get symmetric behaviour).
312
313No roundtripping (simple cases work, but this depends on wether the scalar
314value was used in a numeric context or not).
315
316Dumping hashes may skip hash values depending on iterator state.
317
318Unmaintained (maintainer unresponsive for many months, bugs are not
319getting fixed).
320
321Does not check input for validity (i.e. will accept non-JSON input and
322return "something" instead of raising an exception. This is a security
323issue: imagine two banks transfering money between each other using
324JSON. One bank might parse a given non-JSON request and deduct money,
325while the other might reject the transaction with a syntax error. While a
326good protocol will at least recover, that is extra unnecessary work and
327the transaction will still not succeed).
328
329=item JSON::DWIW 0.04
330
331Very fast. Very natural. Very nice.
332
333Undocumented unicode handling (but the best of the pack. Unicode escapes
334still don't get parsed properly).
335
336Very inflexible.
337
338No roundtripping.
339
340Does not generate valid JSON (key strings are often unquoted, empty keys
341result in nothing being output)
342
343Does not check input for validity.
344
345=back
346
347=head2 SPEED
348
349It seems that JSON::XS is surprisingly fast, as shown in the following
350tables. They have been generated with the help of the C<eg/bench> program
351in the JSON::XS distribution, to make it easy to compare on your own
352system.
353
354First is a comparison between various modules using a very simple JSON
355string, showing the number of encodes/decodes per second (JSON::XS is
356the functional interface, while JSON::XS/2 is the OO interface with
357pretty-printing and hashkey sorting enabled).
358
359 module | encode | decode |
360 -----------|------------|------------|
361 JSON | 14006 | 6820 |
362 JSON::DWIW | 200937 | 120386 |
363 JSON::PC | 85065 | 129366 |
364 JSON::Syck | 59898 | 44232 |
365 JSON::XS | 1171478 | 342435 |
366 JSON::XS/2 | 730760 | 328714 |
367 -----------+------------+------------+
368
369That is, JSON::XS is 6 times faster than than JSON::DWIW and about 80
370times faster than JSON, even with pretty-printing and key sorting.
371
372Using a longer test string (roughly 8KB, generated from Yahoo! Locals
373search API (http://nanoref.com/yahooapis/mgPdGg):
374
375 module | encode | decode |
376 -----------|------------|------------|
377 JSON | 673 | 38 |
378 JSON::DWIW | 5271 | 770 |
379 JSON::PC | 9901 | 2491 |
380 JSON::Syck | 2360 | 786 |
381 JSON::XS | 37398 | 3202 |
382 JSON::XS/2 | 13765 | 3153 |
383 -----------+------------+------------+
384
385Again, JSON::XS leads by far in the encoding case, while still beating
386every other module in the decoding case.
387
388Last example is an almost 8MB large hash with many large binary values
389(PNG files), resulting in a lot of escaping:
390
391=head1 BUGS
392
393While the goal of this module is to be correct, that unfortunately does
394not mean its bug-free, only that I think its design is bug-free. It is
395still very young and not well-tested. If you keep reporting bugs they will
396be fixed swiftly, though.
28 397
29=cut 398=cut
30 399
31use JSON::DWIW;
32use Benchmark;
33
34use utf8;
35#my $json = '{"ü":1,"a":[1,{"3":4},2],"b":5,"üü":2}';
36my $json = '{"test":9555555555555555555,"hu" : -1e+5, "arr" : [ 1,2,3,4,5]}';
37
38my $js = JSON::XS->new;
39warn $js->indent (0);
40warn $js->canonical (0);
41warn $js->ascii (0);
42warn $js->space_after (0);
43use Data::Dumper;
44warn Dumper $js->decode ($json);
45warn Dumper $js->encode ($js->decode ($json));
46#my $x = {"üü" => 2, "ü" => 1, "a" => [1,{3,4},2], b => 5};
47
48#my $js2 = JSON::DWIW->new;
49#
50#timethese 200000, {
51# a => sub { $js->encode ($x) },
52# b => sub { $js2->to_json ($x) },
53#};
54
551; 4001;
56
57=back
58 401
59=head1 AUTHOR 402=head1 AUTHOR
60 403
61 Marc Lehmann <schmorp@schmorp.de> 404 Marc Lehmann <schmorp@schmorp.de>
62 http://home.schmorp.de/ 405 http://home.schmorp.de/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines