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.4 by root, Thu Mar 22 21:13:58 2007 UTC vs.
Revision 1.14 by root, Fri Mar 23 19:02:02 2007 UTC

3JSON::XS - JSON serialising/deserialising, done correctly and fast 3JSON::XS - JSON serialising/deserialising, done correctly and fast
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use JSON::XS; 7 use JSON::XS;
8
9 # exported functions, croak on error
10
11 $utf8_encoded_json_text = to_json $perl_hash_or_arrayref;
12 $perl_hash_or_arrayref = from_json $utf8_encoded_json_text;
13
14 # oo-interface
15
16 $coder = JSON::XS->new->ascii->pretty->allow_nonref;
17 $pretty_printed_unencoded = $coder->encode ($perl_scalar);
18 $perl_scalar = $coder->decode ($unicode_json_text);
8 19
9=head1 DESCRIPTION 20=head1 DESCRIPTION
10 21
11This module converts Perl data structures to JSON and vice versa. Its 22This 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 23primary goal is to be I<correct> and its secondary goal is to be
18their maintainers are unresponsive, gone missing, or not listening to bug 29their maintainers are unresponsive, gone missing, or not listening to bug
19reports for other reasons. 30reports for other reasons.
20 31
21See COMPARISON, below, for a comparison to some other JSON modules. 32See COMPARISON, below, for a comparison to some other JSON modules.
22 33
34See MAPPING, below, on how JSON::XS maps perl values to JSON values and
35vice versa.
36
23=head2 FEATURES 37=head2 FEATURES
24 38
25=over 4 39=over 4
26 40
27=item * correct handling of unicode issues 41=item * correct handling of unicode issues
28 42
29This module knows how to handle Unicode, and even documents how it does so. 43This module knows how to handle Unicode, and even documents how and when
44it does so.
30 45
31=item * round-trip integrity 46=item * round-trip integrity
32 47
33When you serialise a perl data structure using only datatypes supported 48When you serialise a perl data structure using only datatypes supported
34by JSON, the deserialised data structure is identical on the Perl level. 49by JSON, the deserialised data structure is identical on the Perl level.
35(e.g. the string "2.0" doesn't suddenly become "2"). 50(e.g. the string "2.0" doesn't suddenly become "2").
36 51
37=item * strict checking of JSON correctness 52=item * strict checking of JSON correctness
38 53
39There is no guessing, no generating of illegal JSON strings by default, 54There is no guessing, no generating of illegal JSON strings by default,
40and only JSON is accepted as input (the latter is a security feature). 55and only JSON is accepted as input by default (the latter is a security
56feature).
41 57
42=item * fast 58=item * fast
43 59
44compared to other JSON modules, this module compares favourably. 60Compared to other JSON modules, this module compares favourably in terms
61of speed, too.
45 62
46=item * simple to use 63=item * simple to use
47 64
48This module has both a simple functional interface as well as an OO 65This module has both a simple functional interface as well as an OO
49interface. 66interface.
50 67
51=item * reasonably versatile output formats 68=item * reasonably versatile output formats
52 69
53You can choose between the most compact format possible, a pure-ascii 70You can choose between the most compact guarenteed single-line format
54format, or a pretty-printed format. Or you can combine those features in 71possible (nice for simple line-based protocols), a pure-ascii format (for
72when your transport is not 8-bit clean), or a pretty-printed format (for
73when you want to read that stuff). Or you can combine those features in
55whatever way you like. 74whatever way you like.
56 75
57=back 76=back
58 77
59=cut 78=cut
60 79
61package JSON::XS; 80package JSON::XS;
62 81
63BEGIN { 82BEGIN {
64 $VERSION = '0.1'; 83 $VERSION = '0.3';
65 @ISA = qw(Exporter); 84 @ISA = qw(Exporter);
66 85
67 @EXPORT = qw(to_json from_json); 86 @EXPORT = qw(to_json from_json);
68 require Exporter; 87 require Exporter;
69 88
82 101
83Converts the given Perl data structure (a simple scalar or a reference to 102Converts 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 103a hash or array) to a UTF-8 encoded, binary string (that is, the string contains
85octets only). Croaks on error. 104octets only). Croaks on error.
86 105
87This function call is functionally identical to C<< JSON::XS->new->utf8 106This function call is functionally identical to C<< JSON::XS->new->utf8->encode ($perl_scalar) >>.
88(1)->encode ($perl_scalar) >>.
89 107
90=item $perl_scalar = from_json $json_string 108=item $perl_scalar = from_json $json_string
91 109
92The opposite of C<to_json>: expects an UTF-8 (binary) string and tries to 110The 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 111parse that as an UTF-8 encoded JSON string, returning the resulting simple
94scalar or reference. Croaks on error. 112scalar or reference. Croaks on error.
95 113
96This function call is functionally identical to C<< JSON::XS->new->utf8 114This function call is functionally identical to C<< JSON::XS->new->utf8->decode ($json_string) >>.
97(1)->decode ($json_string) >>.
98 115
99=back 116=back
100 117
101=head1 OBJECT-ORIENTED INTERFACE 118=head1 OBJECT-ORIENTED INTERFACE
102 119
114be chained: 131be chained:
115 132
116 my $json = JSON::XS->new->utf8(1)->space_after(1)->encode ({a => [1,2]}) 133 my $json = JSON::XS->new->utf8(1)->space_after(1)->encode ({a => [1,2]})
117 => {"a": [1, 2]} 134 => {"a": [1, 2]}
118 135
119=item $json = $json->ascii ($enable) 136=item $json = $json->ascii ([$enable])
120 137
121If C<$enable> is true, then the C<encode> method will not generate 138If C<$enable> is true (or missing), then the C<encode> method will
122characters outside the code range C<0..127>. Any unicode characters 139not generate characters outside the code range C<0..127>. Any unicode
123outside that range will be escaped using either a single \uXXXX (BMP 140characters outside that range will be escaped using either a single
124characters) or a double \uHHHH\uLLLLL escape sequence, as per RFC4627. 141\uXXXX (BMP characters) or a double \uHHHH\uLLLLL escape sequence, as per
142RFC4627.
125 143
126If C<$enable> is false, then the C<encode> method will not escape Unicode 144If C<$enable> is false, then the C<encode> method will not escape Unicode
127characters unless necessary. 145characters unless necessary.
128 146
129 JSON::XS->new->ascii (1)->encode (chr 0x10401) 147 JSON::XS->new->ascii (1)->encode (chr 0x10401)
130 => \ud801\udc01 148 => \ud801\udc01
131 149
132=item $json = $json->utf8 ($enable) 150=item $json = $json->utf8 ([$enable])
133 151
134If C<$enable> is true, then the C<encode> method will encode the JSON 152If C<$enable> is true (or missing), then the C<encode> method will encode
135string into UTF-8, as required by many protocols, while the C<decode> 153the JSON string into UTF-8, as required by many protocols, while the
136method expects to be handled an UTF-8-encoded string. Please note that 154C<decode> method expects to be handled an UTF-8-encoded string. Please
137UTF-8-encoded strings do not contain any characters outside the range 155note that UTF-8-encoded strings do not contain any characters outside the
138C<0..255>, they are thus useful for bytewise/binary I/O. 156range C<0..255>, they are thus useful for bytewise/binary I/O.
139 157
140If C<$enable> is false, then the C<encode> method will return the JSON 158If C<$enable> is false, then the C<encode> method will return the JSON
141string as a (non-encoded) unicode string, while C<decode> expects thus a 159string as a (non-encoded) unicode string, while C<decode> expects thus a
142unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs 160unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs
143to be done yourself, e.g. using the Encode module. 161to be done yourself, e.g. using the Encode module.
144 162
163Example, output UTF-16-encoded JSON:
164
145=item $json = $json->pretty ($enable) 165=item $json = $json->pretty ([$enable])
146 166
147This enables (or disables) all of the C<indent>, C<space_before> and 167This enables (or disables) all of the C<indent>, C<space_before> and
148C<space_after> (and in the future possibly more) flags in one call to 168C<space_after> (and in the future possibly more) flags in one call to
149generate the most readable (or most compact) form possible. 169generate the most readable (or most compact) form possible.
170
171Example, pretty-print some simple structure:
150 172
151 my $json = JSON::XS->new->pretty(1)->encode ({a => [1,2]}) 173 my $json = JSON::XS->new->pretty(1)->encode ({a => [1,2]})
152 => 174 =>
153 { 175 {
154 "a" : [ 176 "a" : [
155 1, 177 1,
156 2 178 2
157 ] 179 ]
158 } 180 }
159 181
160=item $json = $json->indent ($enable) 182=item $json = $json->indent ([$enable])
161 183
162If C<$enable> is true, then the C<encode> method will use a multiline 184If C<$enable> is true (or missing), then the C<encode> method will use a multiline
163format as output, putting every array member or object/hash key-value pair 185format as output, putting every array member or object/hash key-value pair
164into its own line, identing them properly. 186into its own line, identing them properly.
165 187
166If C<$enable> is false, no newlines or indenting will be produced, and the 188If C<$enable> is false, no newlines or indenting will be produced, and the
167resulting JSON strings is guarenteed not to contain any C<newlines>. 189resulting JSON strings is guarenteed not to contain any C<newlines>.
168 190
169This setting has no effect when decoding JSON strings. 191This setting has no effect when decoding JSON strings.
170 192
171=item $json = $json->space_before ($enable) 193=item $json = $json->space_before ([$enable])
172 194
173If C<$enable> is true, then the C<encode> method will add an extra 195If C<$enable> is true (or missing), then the C<encode> method will add an extra
174optional space before the C<:> separating keys from values in JSON objects. 196optional space before the C<:> separating keys from values in JSON objects.
175 197
176If C<$enable> is false, then the C<encode> method will not add any extra 198If C<$enable> is false, then the C<encode> method will not add any extra
177space at those places. 199space at those places.
178 200
179This setting has no effect when decoding JSON strings. You will also most 201This setting has no effect when decoding JSON strings. You will also most
180likely combine this setting with C<space_after>. 202likely combine this setting with C<space_after>.
181 203
204Example, space_before enabled, space_after and indent disabled:
205
206 {"key" :"value"}
207
182=item $json = $json->space_after ($enable) 208=item $json = $json->space_after ([$enable])
183 209
184If C<$enable> is true, then the C<encode> method will add an extra 210If C<$enable> is true (or missing), then the C<encode> method will add an extra
185optional space after the C<:> separating keys from values in JSON objects 211optional space after the C<:> separating keys from values in JSON objects
186and extra whitespace after the C<,> separating key-value pairs and array 212and extra whitespace after the C<,> separating key-value pairs and array
187members. 213members.
188 214
189If C<$enable> is false, then the C<encode> method will not add any extra 215If C<$enable> is false, then the C<encode> method will not add any extra
190space at those places. 216space at those places.
191 217
192This setting has no effect when decoding JSON strings. 218This setting has no effect when decoding JSON strings.
193 219
220Example, space_before and indent disabled, space_after enabled:
221
222 {"key": "value"}
223
194=item $json = $json->canonical ($enable) 224=item $json = $json->canonical ([$enable])
195 225
196If C<$enable> is true, then the C<encode> method will output JSON objects 226If C<$enable> is true (or missing), then the C<encode> method will output JSON objects
197by sorting their keys. This is adding a comparatively high overhead. 227by sorting their keys. This is adding a comparatively high overhead.
198 228
199If C<$enable> is false, then the C<encode> method will output key-value 229If C<$enable> is false, then the C<encode> method will output key-value
200pairs in the order Perl stores them (which will likely change between runs 230pairs in the order Perl stores them (which will likely change between runs
201of the same script). 231of the same script).
205the same hash migh be encoded differently even if contains the same data, 235the same hash migh be encoded differently even if contains the same data,
206as key-value pairs have no inherent ordering in Perl. 236as key-value pairs have no inherent ordering in Perl.
207 237
208This setting has no effect when decoding JSON strings. 238This setting has no effect when decoding JSON strings.
209 239
210=item $json = $json->allow_nonref ($enable) 240=item $json = $json->allow_nonref ([$enable])
211 241
212If C<$enable> is true, then the C<encode> method can convert a 242If C<$enable> is true (or missing), then the C<encode> method can convert a
213non-reference into its corresponding string, number or null JSON value, 243non-reference into its corresponding string, number or null JSON value,
214which is an extension to RFC4627. Likewise, C<decode> will accept those JSON 244which is an extension to RFC4627. Likewise, C<decode> will accept those JSON
215values instead of croaking. 245values instead of croaking.
216 246
217If C<$enable> is false, then the C<encode> method will croak if it isn't 247If C<$enable> is false, then the C<encode> method will croak if it isn't
218passed an arrayref or hashref, as JSON strings must either be an object 248passed an arrayref or hashref, as JSON strings must either be an object
219or array. Likewise, C<decode> will croak if given something that is not a 249or array. Likewise, C<decode> will croak if given something that is not a
220JSON object or array. 250JSON object or array.
251
252Example, encode a Perl scalar as JSON value with enabled C<allow_nonref>,
253resulting in an invalid JSON text:
254
255 JSON::XS->new->allow_nonref->encode ("Hello, World!")
256 => "Hello, World!"
257
258=item $json = $json->shrink ([$enable])
259
260Perl usually over-allocates memory a bit when allocating space for
261strings. This flag optionally resizes strings generated by either
262C<encode> or C<decode> to their minimum size possible. This can save
263memory when your JSON strings are either very very long or you have many
264short strings. It will also try to downgrade any strings to octet-form
265if possible: perl stores strings internally either in an encoding called
266UTF-X or in octet-form. The latter cannot store everything but uses less
267space in general.
268
269If C<$enable> is true (or missing), the string returned by C<encode> will be shrunk-to-fit,
270while all strings generated by C<decode> will also be shrunk-to-fit.
271
272If C<$enable> is false, then the normal perl allocation algorithms are used.
273If you work with your data, then this is likely to be faster.
274
275In the future, this setting might control other things, such as converting
276strings that look like integers or floats into integers or floats
277internally (there is no difference on the Perl level), saving space.
221 278
222=item $json_string = $json->encode ($perl_scalar) 279=item $json_string = $json->encode ($perl_scalar)
223 280
224Converts the given Perl data structure (a simple scalar or a reference 281Converts the given Perl data structure (a simple scalar or a reference
225to a hash or array) to its JSON representation. Simple scalars will be 282to a hash or array) to its JSON representation. Simple scalars will be
237Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes 294Perl arrayrefs and JSON objects become Perl hashrefs. C<true> becomes
238C<1>, C<false> becomes C<0> and C<null> becomes C<undef>. 295C<1>, C<false> becomes C<0> and C<null> becomes C<undef>.
239 296
240=back 297=back
241 298
299=head1 MAPPING
300
301This section describes how JSON::XS maps Perl values to JSON values and
302vice versa. These mappings are designed to "do the right thing" in most
303circumstances automatically, preserving round-tripping characteristics
304(what you put in comes out as something equivalent).
305
306For the more enlightened: note that in the following descriptions,
307lowercase I<perl> refers to the Perl interpreter, while uppcercase I<Perl>
308refers to the abstract Perl language itself.
309
310=head2 JSON -> PERL
311
312=over 4
313
314=item object
315
316A JSON object becomes a reference to a hash in Perl. No ordering of object
317keys is preserved (JSON does not preserver object key ordering itself).
318
319=item array
320
321A JSON array becomes a reference to an array in Perl.
322
323=item string
324
325A JSON string becomes a string scalar in Perl - Unicode codepoints in JSON
326are represented by the same codepoints in the Perl string, so no manual
327decoding is necessary.
328
329=item number
330
331A JSON number becomes either an integer or numeric (floating point)
332scalar in perl, depending on its range and any fractional parts. On the
333Perl level, there is no difference between those as Perl handles all the
334conversion details, but an integer may take slightly less memory and might
335represent more values exactly than (floating point) numbers.
336
337=item true, false
338
339These JSON atoms become C<0>, C<1>, respectively. Information is lost in
340this process. Future versions might represent those values differently,
341but they will be guarenteed to act like these integers would normally in
342Perl.
343
344=item null
345
346A JSON null atom becomes C<undef> in Perl.
347
348=back
349
350=head2 PERL -> JSON
351
352The mapping from Perl to JSON is slightly more difficult, as Perl is a
353truly typeless language, so we can only guess which JSON type is meant by
354a Perl value.
355
356=over 4
357
358=item hash references
359
360Perl hash references become JSON objects. As there is no inherent ordering
361in hash keys, they will usually be encoded in a pseudo-random order that
362can change between runs of the same program but stays generally the same
363within a single run of a program. JSON::XS can optionally sort the hash
364keys (determined by the I<canonical> flag), so the same datastructure
365will serialise to the same JSON text (given same settings and version of
366JSON::XS), but this incurs a runtime overhead.
367
368=item array references
369
370Perl array references become JSON arrays.
371
372=item blessed objects
373
374Blessed objects are not allowed. JSON::XS currently tries to encode their
375underlying representation (hash- or arrayref), but this behaviour might
376change in future versions.
377
378=item simple scalars
379
380Simple Perl scalars (any scalar that is not a reference) are the most
381difficult objects to encode: JSON::XS will encode undefined scalars as
382JSON null value, scalars that have last been used in a string context
383before encoding as JSON strings and anything else as number value:
384
385 # dump as number
386 to_json [2] # yields [2]
387 to_json [-3.0e17] # yields [-3e+17]
388 my $value = 5; to_json [$value] # yields [5]
389
390 # used as string, so dump as string
391 print $value;
392 to_json [$value] # yields ["5"]
393
394 # undef becomes null
395 to_json [undef] # yields [null]
396
397You can force the type to be a string by stringifying it:
398
399 my $x = 3.1; # some variable containing a number
400 "$x"; # stringified
401 $x .= ""; # another, more awkward way to stringify
402 print $x; # perl does it for you, too, quite often
403
404You can force the type to be a number by numifying it:
405
406 my $x = "3"; # some variable containing a string
407 $x += 0; # numify it, ensuring it will be dumped as a number
408 $x *= 1; # same thing, the choise is yours.
409
410You can not currently output JSON booleans or force the type in other,
411less obscure, ways. Tell me if you need this capability.
412
413=item circular data structures
414
415Those will be encoded until memory or stackspace runs out.
416
417=back
418
242=head1 COMPARISON 419=head1 COMPARISON
243 420
244As already mentioned, this module was created because none of the existing 421As already mentioned, this module was created because none of the existing
245JSON modules could be made to work correctly. First I will describe the 422JSON modules could be made to work correctly. First I will describe the
246problems (or pleasures) I encountered with various existing JSON modules, 423problems (or pleasures) I encountered with various existing JSON modules,
247followed by some benchmark values. JSON::XS was designed not to suffer 424followed by some benchmark values. JSON::XS was designed not to suffer
248from any of these problems or limitations. 425from any of these problems or limitations.
249 426
250=over 4 427=over 4
251 428
252=item JSON 429=item JSON 1.07
253 430
254Slow (but very portable, as it is written in pure Perl). 431Slow (but very portable, as it is written in pure Perl).
255 432
256Undocumented/buggy Unicode handling (how JSON handles unicode values is 433Undocumented/buggy Unicode handling (how JSON handles unicode values is
257undocumented. One can get far by feeding it unicode strings and doing 434undocumented. One can get far by feeding it unicode strings and doing
259 436
260No roundtripping (strings get clobbered if they look like numbers, e.g. 437No roundtripping (strings get clobbered if they look like numbers, e.g.
261the string C<2.0> will encode to C<2.0> instead of C<"2.0">, and that will 438the string C<2.0> will encode to C<2.0> instead of C<"2.0">, and that will
262decode into the number 2. 439decode into the number 2.
263 440
264=item JSON::PC 441=item JSON::PC 0.01
265 442
266Very fast. 443Very fast.
267 444
268Undocumented/buggy Unicode handling. 445Undocumented/buggy Unicode handling.
269 446
276which is not a valid JSON string. 453which is not a valid JSON string.
277 454
278Unmaintained (maintainer unresponsive for many months, bugs are not 455Unmaintained (maintainer unresponsive for many months, bugs are not
279getting fixed). 456getting fixed).
280 457
281=item JSON::Syck 458=item JSON::Syck 0.21
282 459
283Very buggy (often crashes). 460Very buggy (often crashes).
284 461
285Very inflexible (no human-readable format supported, format pretty much 462Very inflexible (no human-readable format supported, format pretty much
286undocumented. I need at least a format for easy reading by humans and a 463undocumented. I need at least a format for easy reading by humans and a
305JSON. One bank might parse a given non-JSON request and deduct money, 482JSON. One bank might parse a given non-JSON request and deduct money,
306while the other might reject the transaction with a syntax error. While a 483while the other might reject the transaction with a syntax error. While a
307good protocol will at least recover, that is extra unnecessary work and 484good protocol will at least recover, that is extra unnecessary work and
308the transaction will still not succeed). 485the transaction will still not succeed).
309 486
310=item JSON::DWIW 487=item JSON::DWIW 0.04
311 488
312Very fast. Very natural. Very nice. 489Very fast. Very natural. Very nice.
313 490
314Undocumented unicode handling (but the best of the pack. Unicode escapes 491Undocumented unicode handling (but the best of the pack. Unicode escapes
315still don't get parsed properly). 492still don't get parsed properly).
330It seems that JSON::XS is surprisingly fast, as shown in the following 507It seems that JSON::XS is surprisingly fast, as shown in the following
331tables. They have been generated with the help of the C<eg/bench> program 508tables. They have been generated with the help of the C<eg/bench> program
332in the JSON::XS distribution, to make it easy to compare on your own 509in the JSON::XS distribution, to make it easy to compare on your own
333system. 510system.
334 511
335First is a comparison between various modules using a very simple JSON 512First comes a comparison between various modules using a very short JSON
336string, showing the number of encodes/decodes per second (JSON::XS is 513string (83 bytes), showing the number of encodes/decodes per second
337the functional interface, while JSON::XS/2 is the OO interface with 514(JSON::XS is the functional interface, while JSON::XS/2 is the OO
338pretty-printing and hashkey sorting enabled). 515interface with pretty-printing and hashkey sorting enabled). Higher is
516better:
339 517
340 module | encode | decode | 518 module | encode | decode |
341 -----------|------------|------------| 519 -----------|------------|------------|
342 JSON | 14006 | 6820 | 520 JSON | 14006 | 6820 |
343 JSON::DWIW | 200937 | 120386 | 521 JSON::DWIW | 200937 | 120386 |
348 -----------+------------+------------+ 526 -----------+------------+------------+
349 527
350That is, JSON::XS is 6 times faster than than JSON::DWIW and about 80 528That is, JSON::XS is 6 times faster than than JSON::DWIW and about 80
351times faster than JSON, even with pretty-printing and key sorting. 529times faster than JSON, even with pretty-printing and key sorting.
352 530
353Using a longer test string (roughly 8KB, generated from Yahoo! Locals 531Using a longer test string (roughly 18KB, generated from Yahoo! Locals
354search API (http://nanoref.com/yahooapis/mgPdGg): 532search API (http://nanoref.com/yahooapis/mgPdGg):
355 533
356 module | encode | decode | 534 module | encode | decode |
357 -----------|------------|------------| 535 -----------|------------|------------|
358 JSON | 673 | 38 | 536 JSON | 673 | 38 |
364 -----------+------------+------------+ 542 -----------+------------+------------+
365 543
366Again, JSON::XS leads by far in the encoding case, while still beating 544Again, JSON::XS leads by far in the encoding case, while still beating
367every other module in the decoding case. 545every other module in the decoding case.
368 546
369Last example is an almost 8MB large hash with many large binary values 547On large strings containing lots of unicode characters, some modules
370(PNG files), resulting in a lot of escaping: 548(such as JSON::PC) decode faster than JSON::XS, but the result will be
549broken due to missing unicode handling. Others refuse to decode or encode
550properly, so it was impossible to prepare a fair comparison table for that
551case.
552
553=head1 RESOURCE LIMITS
554
555JSON::XS does not impose any limits on the size of JSON texts or Perl
556values they represent - if your machine can handle it, JSON::XS will
557encode or decode it. Future versions might optionally impose structure
558depth and memory use resource limits.
371 559
372=head1 BUGS 560=head1 BUGS
373 561
374While the goal of this module is to be correct, that unfortunately does 562While the goal of this module is to be correct, that unfortunately does
375not mean its bug-free, only that I think its design is bug-free. It is 563not 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