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.72 by root, Sun Nov 25 19:11:07 2007 UTC vs.
Revision 1.89 by root, Wed Mar 19 13:54:53 2008 UTC

1=encoding utf-8
2
1=head1 NAME 3=head1 NAME
2 4
3JSON::XS - JSON serialising/deserialising, done correctly and fast 5JSON::XS - JSON serialising/deserialising, done correctly and fast
4 6
5JSON::XS - 正しくて高速な JSON シリアライザ/デシリアライザ 7JSON::XS - 正しくて高速な JSON シリアライザ/デシリアライザ
10 use JSON::XS; 12 use JSON::XS;
11 13
12 # exported functions, they croak on error 14 # exported functions, they croak on error
13 # and expect/generate UTF-8 15 # and expect/generate UTF-8
14 16
15 $utf8_encoded_json_text = to_json $perl_hash_or_arrayref; 17 $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref;
16 $perl_hash_or_arrayref = from_json $utf8_encoded_json_text; 18 $perl_hash_or_arrayref = decode_json $utf8_encoded_json_text;
17 19
18 # OO-interface 20 # OO-interface
19 21
20 $coder = JSON::XS->new->ascii->pretty->allow_nonref; 22 $coder = JSON::XS->new->ascii->pretty->allow_nonref;
21 $pretty_printed_unencoded = $coder->encode ($perl_scalar); 23 $pretty_printed_unencoded = $coder->encode ($perl_scalar);
22 $perl_scalar = $coder->decode ($unicode_json_text); 24 $perl_scalar = $coder->decode ($unicode_json_text);
23 25
26 # Note that JSON version 2.0 and above will automatically use JSON::XS
27 # if available, at virtually no speed overhead either, so you should
28 # be able to just:
29
30 use JSON;
31
32 # and do the same things, except that you have a pure-perl fallback now.
33
24=head1 DESCRIPTION 34=head1 DESCRIPTION
25 35
26This module converts Perl data structures to JSON and vice versa. Its 36This module converts Perl data structures to JSON and vice versa. Its
27primary goal is to be I<correct> and its secondary goal is to be 37primary goal is to be I<correct> and its secondary goal is to be
28I<fast>. To reach the latter goal it was written in C. 38I<fast>. To reach the latter goal it was written in C.
39
40Beginning with version 2.0 of the JSON module, when both JSON and
41JSON::XS are installed, then JSON will fall back on JSON::XS (this can be
42overriden) with no overhead due to emulation (by inheritign constructor
43and methods). If JSON::XS is not available, it will fall back to the
44compatible JSON::PP module as backend, so using JSON instead of JSON::XS
45gives you a portable JSON API that can be fast when you need and doesn't
46require a C compiler when that is a problem.
29 47
30As this is the n-th-something JSON module on CPAN, what was the reason 48As this is the n-th-something JSON module on CPAN, what was the reason
31to write yet another JSON module? While it seems there are many JSON 49to write yet another JSON module? While it seems there are many JSON
32modules, none of them correctly handle all corner cases, and in most cases 50modules, none of them correctly handle all corner cases, and in most cases
33their maintainers are unresponsive, gone missing, or not listening to bug 51their maintainers are unresponsive, gone missing, or not listening to bug
42 60
43=over 4 61=over 4
44 62
45=item * correct Unicode handling 63=item * correct Unicode handling
46 64
47This module knows how to handle Unicode, and even documents how and when 65This module knows how to handle Unicode, documents how and when it does
48it does so. 66so, and even documents what "correct" means.
49 67
50=item * round-trip integrity 68=item * round-trip integrity
51 69
52When you serialise a perl data structure using only datatypes supported 70When you serialise a perl data structure using only datatypes supported
53by JSON, the deserialised data structure is identical on the Perl level. 71by JSON, the deserialised data structure is identical on the Perl level.
54(e.g. the string "2.0" doesn't suddenly become "2" just because it looks 72(e.g. the string "2.0" doesn't suddenly become "2" just because it looks
55like a number). 73like a number). There minor I<are> exceptions to this, read the MAPPING
74section below to learn about those.
56 75
57=item * strict checking of JSON correctness 76=item * strict checking of JSON correctness
58 77
59There is no guessing, no generating of illegal JSON texts by default, 78There is no guessing, no generating of illegal JSON texts by default,
60and only JSON is accepted as input by default (the latter is a security 79and only JSON is accepted as input by default (the latter is a security
61feature). 80feature).
62 81
63=item * fast 82=item * fast
64 83
65Compared to other JSON modules, this module compares favourably in terms 84Compared to other JSON modules and other serialisers such as Storable,
66of speed, too. 85this module usually compares favourably in terms of speed, too.
67 86
68=item * simple to use 87=item * simple to use
69 88
70This module has both a simple functional interface as well as an OO 89This module has both a simple functional interface as well as an objetc
71interface. 90oriented interface interface.
72 91
73=item * reasonably versatile output formats 92=item * reasonably versatile output formats
74 93
75You can choose between the most compact guaranteed single-line format 94You can choose between the most compact guaranteed-single-line format
76possible (nice for simple line-based protocols), a pure-ascii format 95possible (nice for simple line-based protocols), a pure-ascii format
77(for when your transport is not 8-bit clean, still supports the whole 96(for when your transport is not 8-bit clean, still supports the whole
78Unicode range), or a pretty-printed format (for when you want to read that 97Unicode range), or a pretty-printed format (for when you want to read that
79stuff). Or you can combine those features in whatever way you like. 98stuff). Or you can combine those features in whatever way you like.
80 99
84 103
85package JSON::XS; 104package JSON::XS;
86 105
87use strict; 106use strict;
88 107
89our $VERSION = '1.53'; 108our $VERSION = '2.01';
90our @ISA = qw(Exporter); 109our @ISA = qw(Exporter);
91 110
92our @EXPORT = qw(to_json from_json); 111our @EXPORT = qw(encode_json decode_json to_json from_json);
112
113sub to_json($) {
114 require Carp;
115 Carp::croak ("JSON::XS::to_json has been renamed to encode_json, either downgrade to pre-2.0 versions of JSON::XS or rename the call");
116}
117
118sub from_json($) {
119 require Carp;
120 Carp::croak ("JSON::XS::from_json has been renamed to decode_json, either downgrade to pre-2.0 versions of JSON::XS or rename the call");
121}
93 122
94use Exporter; 123use Exporter;
95use XSLoader; 124use XSLoader;
96 125
97=head1 FUNCTIONAL INTERFACE 126=head1 FUNCTIONAL INTERFACE
99The following convenience methods are provided by this module. They are 128The following convenience methods are provided by this module. They are
100exported by default: 129exported by default:
101 130
102=over 4 131=over 4
103 132
104=item $json_text = to_json $perl_scalar 133=item $json_text = encode_json $perl_scalar
105 134
106Converts the given Perl data structure to a UTF-8 encoded, binary string 135Converts the given Perl data structure to a UTF-8 encoded, binary string
107(that is, the string contains octets only). Croaks on error. 136(that is, the string contains octets only). Croaks on error.
108 137
109This function call is functionally identical to: 138This function call is functionally identical to:
110 139
111 $json_text = JSON::XS->new->utf8->encode ($perl_scalar) 140 $json_text = JSON::XS->new->utf8->encode ($perl_scalar)
112 141
113except being faster. 142except being faster.
114 143
115=item $perl_scalar = from_json $json_text 144=item $perl_scalar = decode_json $json_text
116 145
117The opposite of C<to_json>: expects an UTF-8 (binary) string and tries 146The opposite of C<encode_json>: expects an UTF-8 (binary) string and tries
118to parse that as an UTF-8 encoded JSON text, returning the resulting 147to parse that as an UTF-8 encoded JSON text, returning the resulting
119reference. Croaks on error. 148reference. Croaks on error.
120 149
121This function call is functionally identical to: 150This function call is functionally identical to:
122 151
148This enables you to store Unicode characters as single characters in a 177This enables you to store Unicode characters as single characters in a
149Perl string - very natural. 178Perl string - very natural.
150 179
151=item 2. Perl does I<not> associate an encoding with your strings. 180=item 2. Perl does I<not> associate an encoding with your strings.
152 181
153Unless you force it to, e.g. when matching it against a regex, or printing 182... until you force it to, e.g. when matching it against a regex, or
154the scalar to a file, in which case Perl either interprets your string as 183printing the scalar to a file, in which case Perl either interprets your
155locale-encoded text, octets/binary, or as Unicode, depending on various 184string as locale-encoded text, octets/binary, or as Unicode, depending
156settings. In no case is an encoding stored together with your data, it is 185on various settings. In no case is an encoding stored together with your
157I<use> that decides encoding, not any magical metadata. 186data, it is I<use> that decides encoding, not any magical meta data.
158 187
159=item 3. The internal utf-8 flag has no meaning with regards to the 188=item 3. The internal utf-8 flag has no meaning with regards to the
160encoding of your string. 189encoding of your string.
161 190
162Just ignore that flag unless you debug a Perl bug, a module written in 191Just ignore that flag unless you debug a Perl bug, a module written in
276 305
277 use Encode; 306 use Encode;
278 $object = JSON::XS->new->decode (decode "UTF-32LE", $jsontext); 307 $object = JSON::XS->new->decode (decode "UTF-32LE", $jsontext);
279 308
280=item $json = $json->pretty ([$enable]) 309=item $json = $json->pretty ([$enable])
281
282=item $enabled = $json->get_pretty
283 310
284This enables (or disables) all of the C<indent>, C<space_before> and 311This enables (or disables) all of the C<indent>, C<space_before> and
285C<space_after> (and in the future possibly more) flags in one call to 312C<space_after> (and in the future possibly more) flags in one call to
286generate the most readable (or most compact) form possible. 313generate the most readable (or most compact) form possible.
287 314
429 JSON::XS->new->allow_nonref->encode ("Hello, World!") 456 JSON::XS->new->allow_nonref->encode ("Hello, World!")
430 => "Hello, World!" 457 => "Hello, World!"
431 458
432=item $json = $json->allow_blessed ([$enable]) 459=item $json = $json->allow_blessed ([$enable])
433 460
434=item $enabled = $json->get_allow_bless 461=item $enabled = $json->get_allow_blessed
435 462
436If C<$enable> is true (or missing), then the C<encode> method will not 463If C<$enable> is true (or missing), then the C<encode> method will not
437barf when it encounters a blessed reference. Instead, the value of the 464barf when it encounters a blessed reference. Instead, the value of the
438B<convert_blessed> option will decide whether C<null> (C<convert_blessed> 465B<convert_blessed> option will decide whether C<null> (C<convert_blessed>
439disabled or no C<to_json> method found) or a representation of the 466disabled or no C<TO_JSON> method found) or a representation of the
440object (C<convert_blessed> enabled and C<to_json> method found) is being 467object (C<convert_blessed> enabled and C<TO_JSON> method found) is being
441encoded. Has no effect on C<decode>. 468encoded. Has no effect on C<decode>.
442 469
443If C<$enable> is false (the default), then C<encode> will throw an 470If C<$enable> is false (the default), then C<encode> will throw an
444exception when it encounters a blessed object. 471exception when it encounters a blessed object.
445 472
457The C<TO_JSON> method may safely call die if it wants. If C<TO_JSON> 484The C<TO_JSON> method may safely call die if it wants. If C<TO_JSON>
458returns other blessed objects, those will be handled in the same 485returns other blessed objects, those will be handled in the same
459way. C<TO_JSON> must take care of not causing an endless recursion cycle 486way. C<TO_JSON> must take care of not causing an endless recursion cycle
460(== crash) in this case. The name of C<TO_JSON> was chosen because other 487(== crash) in this case. The name of C<TO_JSON> was chosen because other
461methods called by the Perl core (== not by the user of the object) are 488methods called by the Perl core (== not by the user of the object) are
462usually in upper case letters and to avoid collisions with the C<to_json> 489usually in upper case letters and to avoid collisions with any C<to_json>
463function. 490function or method.
464 491
465This setting does not yet influence C<decode> in any way, but in the 492This setting does not yet influence C<decode> in any way, but in the
466future, global hooks might get installed that influence C<decode> and are 493future, global hooks might get installed that influence C<decode> and are
467enabled by this setting. 494enabled by this setting.
468 495
682 709
683A JSON number becomes either an integer, numeric (floating point) or 710A JSON number becomes either an integer, numeric (floating point) or
684string scalar in perl, depending on its range and any fractional parts. On 711string scalar in perl, depending on its range and any fractional parts. On
685the Perl level, there is no difference between those as Perl handles all 712the Perl level, there is no difference between those as Perl handles all
686the conversion details, but an integer may take slightly less memory and 713the conversion details, but an integer may take slightly less memory and
687might represent more values exactly than (floating point) numbers. 714might represent more values exactly than floating point numbers.
688 715
689If the number consists of digits only, JSON::XS will try to represent 716If the number consists of digits only, JSON::XS will try to represent
690it as an integer value. If that fails, it will try to represent it as 717it as an integer value. If that fails, it will try to represent it as
691a numeric (floating point) value if that is possible without loss of 718a numeric (floating point) value if that is possible without loss of
692precision. Otherwise it will preserve the number as a string value. 719precision. Otherwise it will preserve the number as a string value (in
720which case you lose roundtripping ability, as the JSON number will be
721re-encoded toa JSON string).
693 722
694Numbers containing a fractional or exponential part will always be 723Numbers containing a fractional or exponential part will always be
695represented as numeric (floating point) values, possibly at a loss of 724represented as numeric (floating point) values, possibly at a loss of
696precision. 725precision (in which case you might lose perfect roundtripping ability, but
697 726the JSON number will still be re-encoded as a JSON number).
698This might create round-tripping problems as numbers might become strings,
699but as Perl is typeless there is no other way to do it.
700 727
701=item true, false 728=item true, false
702 729
703These JSON atoms become C<JSON::XS::true> and C<JSON::XS::false>, 730These JSON atoms become C<JSON::XS::true> and C<JSON::XS::false>,
704respectively. They are overloaded to act almost exactly like the numbers 731respectively. They are overloaded to act almost exactly like the numbers
741Other unblessed references are generally not allowed and will cause an 768Other unblessed references are generally not allowed and will cause an
742exception to be thrown, except for references to the integers C<0> and 769exception to be thrown, except for references to the integers C<0> and
743C<1>, which get turned into C<false> and C<true> atoms in JSON. You can 770C<1>, which get turned into C<false> and C<true> atoms in JSON. You can
744also use C<JSON::XS::false> and C<JSON::XS::true> to improve readability. 771also use C<JSON::XS::false> and C<JSON::XS::true> to improve readability.
745 772
746 to_json [\0,JSON::XS::true] # yields [false,true] 773 encode_json [\0,JSON::XS::true] # yields [false,true]
747 774
748=item JSON::XS::true, JSON::XS::false 775=item JSON::XS::true, JSON::XS::false
749 776
750These special values become JSON true and JSON false values, 777These special values become JSON true and JSON false values,
751respectively. You can also use C<\1> and C<\0> directly if you want. 778respectively. You can also use C<\1> and C<\0> directly if you want.
752 779
753=item blessed objects 780=item blessed objects
754 781
755Blessed objects are not allowed. JSON::XS currently tries to encode their 782Blessed objects are not directly representable in JSON. See the
756underlying representation (hash- or arrayref), but this behaviour might 783C<allow_blessed> and C<convert_blessed> methods on various options on
757change in future versions. 784how to deal with this: basically, you can choose between throwing an
785exception, encoding the reference as if it weren't blessed, or provide
786your own serialiser method.
758 787
759=item simple scalars 788=item simple scalars
760 789
761Simple Perl scalars (any scalar that is not a reference) are the most 790Simple Perl scalars (any scalar that is not a reference) are the most
762difficult objects to encode: JSON::XS will encode undefined scalars as 791difficult objects to encode: JSON::XS will encode undefined scalars as
763JSON null value, scalars that have last been used in a string context 792JSON C<null> values, scalars that have last been used in a string context
764before encoding as JSON strings and anything else as number value: 793before encoding as JSON strings, and anything else as number value:
765 794
766 # dump as number 795 # dump as number
767 to_json [2] # yields [2] 796 encode_json [2] # yields [2]
768 to_json [-3.0e17] # yields [-3e+17] 797 encode_json [-3.0e17] # yields [-3e+17]
769 my $value = 5; to_json [$value] # yields [5] 798 my $value = 5; encode_json [$value] # yields [5]
770 799
771 # used as string, so dump as string 800 # used as string, so dump as string
772 print $value; 801 print $value;
773 to_json [$value] # yields ["5"] 802 encode_json [$value] # yields ["5"]
774 803
775 # undef becomes null 804 # undef becomes null
776 to_json [undef] # yields [null] 805 encode_json [undef] # yields [null]
777 806
778You can force the type to be a JSON string by stringifying it: 807You can force the type to be a JSON string by stringifying it:
779 808
780 my $x = 3.1; # some variable containing a number 809 my $x = 3.1; # some variable containing a number
781 "$x"; # stringified 810 "$x"; # stringified
787 my $x = "3"; # some variable containing a string 816 my $x = "3"; # some variable containing a string
788 $x += 0; # numify it, ensuring it will be dumped as a number 817 $x += 0; # numify it, ensuring it will be dumped as a number
789 $x *= 1; # same thing, the choice is yours. 818 $x *= 1; # same thing, the choice is yours.
790 819
791You can not currently force the type in other, less obscure, ways. Tell me 820You can not currently force the type in other, less obscure, ways. Tell me
792if you need this capability. 821if you need this capability (but don't forget to explain why its needed
822:).
823
824=back
825
826
827=head1 ENCODING/CODESET FLAG NOTES
828
829The interested reader might have seen a number of flags that signify
830encodings or codesets - C<utf8>, C<latin1> and C<ascii>. There seems to be
831some confusion on what these do, so here is a short comparison:
832
833C<utf8> controls wether the JSON text created by C<encode> (and expected
834by C<decode>) is UTF-8 encoded or not, while C<latin1> and C<ascii> only
835control wether C<encode> escapes character values outside their respective
836codeset range. Neither of these flags conflict with each other, although
837some combinations make less sense than others.
838
839Care has been taken to make all flags symmetrical with respect to
840C<encode> and C<decode>, that is, texts encoded with any combination of
841these flag values will be correctly decoded when the same flags are used
842- in general, if you use different flag settings while encoding vs. when
843decoding you likely have a bug somewhere.
844
845Below comes a verbose discussion of these flags. Note that a "codeset" is
846simply an abstract set of character-codepoint pairs, while an encoding
847takes those codepoint numbers and I<encodes> them, in our case into
848octets. Unicode is (among other things) a codeset, UTF-8 is an encoding,
849and ISO-8859-1 (= latin 1) and ASCII are both codesets I<and> encodings at
850the same time, which can be confusing.
851
852=over 4
853
854=item C<utf8> flag disabled
855
856When C<utf8> is disabled (the default), then C<encode>/C<decode> generate
857and expect Unicode strings, that is, characters with high ordinal Unicode
858values (> 255) will be encoded as such characters, and likewise such
859characters are decoded as-is, no canges to them will be done, except
860"(re-)interpreting" them as Unicode codepoints or Unicode characters,
861respectively (to Perl, these are the same thing in strings unless you do
862funny/weird/dumb stuff).
863
864This is useful when you want to do the encoding yourself (e.g. when you
865want to have UTF-16 encoded JSON texts) or when some other layer does
866the encoding for you (for example, when printing to a terminal using a
867filehandle that transparently encodes to UTF-8 you certainly do NOT want
868to UTF-8 encode your data first and have Perl encode it another time).
869
870=item C<utf8> flag enabled
871
872If the C<utf8>-flag is enabled, C<encode>/C<decode> will encode all
873characters using the corresponding UTF-8 multi-byte sequence, and will
874expect your input strings to be encoded as UTF-8, that is, no "character"
875of the input string must have any value > 255, as UTF-8 does not allow
876that.
877
878The C<utf8> flag therefore switches between two modes: disabled means you
879will get a Unicode string in Perl, enabled means you get an UTF-8 encoded
880octet/binary string in Perl.
881
882=item C<latin1> or C<ascii> flags enabled
883
884With C<latin1> (or C<ascii>) enabled, C<encode> will escape characters
885with ordinal values > 255 (> 127 with C<ascii>) and encode the remaining
886characters as specified by the C<utf8> flag.
887
888If C<utf8> is disabled, then the result is also correctly encoded in those
889character sets (as both are proper subsets of Unicode, meaning that a
890Unicode string with all character values < 256 is the same thing as a
891ISO-8859-1 string, and a Unicode string with all character values < 128 is
892the same thing as an ASCII string in Perl).
893
894If C<utf8> is enabled, you still get a correct UTF-8-encoded string,
895regardless of these flags, just some more characters will be escaped using
896C<\uXXXX> then before.
897
898Note that ISO-8859-1-I<encoded> strings are not compatible with UTF-8
899encoding, while ASCII-encoded strings are. That is because the ISO-8859-1
900encoding is NOT a subset of UTF-8 (despite the ISO-8859-1 I<codeset> being
901a subset of Unicode), while ASCII is.
902
903Surprisingly, C<decode> will ignore these flags and so treat all input
904values as governed by the C<utf8> flag. If it is disabled, this allows you
905to decode ISO-8859-1- and ASCII-encoded strings, as both strict subsets of
906Unicode. If it is enabled, you can correctly decode UTF-8 encoded strings.
907
908So neither C<latin1> nor C<ascii> are incompatible with the C<utf8> flag -
909they only govern when the JSON output engine escapes a character or not.
910
911The main use for C<latin1> is to relatively efficiently store binary data
912as JSON, at the expense of breaking compatibility with most JSON decoders.
913
914The main use for C<ascii> is to force the output to not contain characters
915with values > 127, which means you can interpret the resulting string
916as UTF-8, ISO-8859-1, ASCII, KOI8-R or most about any character set and
9178-bit-encoding, and still get the same data structure back. This is useful
918when your channel for JSON transfer is not 8-bit clean or the encoding
919might be mangled in between (e.g. in mail), and works because ASCII is a
920proper subset of most 8-bit and multibyte encodings in use in the world.
793 921
794=back 922=back
795 923
796 924
797=head1 COMPARISON 925=head1 COMPARISON
801problems (or pleasures) I encountered with various existing JSON modules, 929problems (or pleasures) I encountered with various existing JSON modules,
802followed by some benchmark values. JSON::XS was designed not to suffer 930followed by some benchmark values. JSON::XS was designed not to suffer
803from any of these problems or limitations. 931from any of these problems or limitations.
804 932
805=over 4 933=over 4
934
935=item JSON 2.xx
936
937A marvellous piece of engineering, this module either uses JSON::XS
938directly when available (so will be 100% compatible with it, including
939speed), or it uses JSON::PP, which is basically JSON::XS translated to
940Pure Perl, which should be 100% compatible with JSON::XS, just a bit
941slower.
942
943You cannot really lose by using this module, especially as it tries very
944hard to work even with ancient Perl versions, while JSON::XS does not.
806 945
807=item JSON 1.07 946=item JSON 1.07
808 947
809Slow (but very portable, as it is written in pure Perl). 948Slow (but very portable, as it is written in pure Perl).
810 949
881=back 1020=back
882 1021
883 1022
884=head2 JSON and YAML 1023=head2 JSON and YAML
885 1024
886You often hear that JSON is a subset (or a close subset) of YAML. This is, 1025You often hear that JSON is a subset of YAML. This is, however, a mass
887however, a mass hysteria and very far from the truth. In general, there is 1026hysteria(*) and very far from the truth. In general, there is no way to
888no way to configure JSON::XS to output a data structure as valid YAML. 1027configure JSON::XS to output a data structure as valid YAML that works for
1028all cases.
889 1029
890If you really must use JSON::XS to generate YAML, you should use this 1030If you really must use JSON::XS to generate YAML, you should use this
891algorithm (subject to change in future versions): 1031algorithm (subject to change in future versions):
892 1032
893 my $to_yaml = JSON::XS->new->utf8->space_after (1); 1033 my $to_yaml = JSON::XS->new->utf8->space_after (1);
894 my $yaml = $to_yaml->encode ($ref) . "\n"; 1034 my $yaml = $to_yaml->encode ($ref) . "\n";
895 1035
896This will usually generate JSON texts that also parse as valid 1036This will I<usually> generate JSON texts that also parse as valid
897YAML. Please note that YAML has hardcoded limits on (simple) object key 1037YAML. Please note that YAML has hardcoded limits on (simple) object key
898lengths that JSON doesn't have, so you should make sure that your hash 1038lengths that JSON doesn't have and also has different and incompatible
1039unicode handling, so you should make sure that your hash keys are
899keys are noticeably shorter than the 1024 characters YAML allows. 1040noticeably shorter than the 1024 "stream characters" YAML allows and that
1041you do not have codepoints with values outside the Unicode BMP (basic
1042multilingual page). YAML also does not allow C<\/> sequences in strings
1043(which JSON::XS does not I<currently> generate).
900 1044
901There might be other incompatibilities that I am not aware of. In general 1045There might be other incompatibilities that I am not aware of (or the YAML
1046specification has been changed yet again - it does so quite often). In
902you should not try to generate YAML with a JSON generator or vice versa, 1047general you should not try to generate YAML with a JSON generator or vice
903or try to parse JSON with a YAML parser or vice versa: chances are high 1048versa, or try to parse JSON with a YAML parser or vice versa: chances are
904that you will run into severe interoperability problems. 1049high that you will run into severe interoperability problems when you
1050least expect it.
1051
1052=over 4
1053
1054=item (*)
1055
1056This is spread actively by the YAML team, however. For many years now they
1057claim YAML were a superset of JSON, even when proven otherwise.
1058
1059Even the author of this manpage was at some point accused of providing
1060"incorrect" information, despite the evidence presented (claims ranged
1061from "your documentation contains inaccurate and negative statements about
1062YAML" (the only negative comment is this footnote, and it didn't exist
1063back then; the question on which claims were inaccurate was never answered
1064etc.) to "the YAML spec is not up-to-date" (the *real* and supposedly
1065JSON-compatible spec is apparently not currently publicly available)
1066to actual requests to replace this section by *incorrect* information,
1067suppressing information about the real problem).
1068
1069So whenever you are told that YAML was a superset of JSON, first check
1070wether it is really true (it might be when you check it, but it certainly
1071was not true when this was written). I would much prefer if the YAML team
1072would spent their time on actually making JSON compatibility a truth
1073(JSON, after all, has a very small and simple specification) instead of
1074trying to lobby/force people into reporting untruths.
1075
1076=back
905 1077
906 1078
907=head2 SPEED 1079=head2 SPEED
908 1080
909It seems that JSON::XS is surprisingly fast, as shown in the following 1081It seems that JSON::XS is surprisingly fast, as shown in the following
910tables. They have been generated with the help of the C<eg/bench> program 1082tables. They have been generated with the help of the C<eg/bench> program
911in the JSON::XS distribution, to make it easy to compare on your own 1083in the JSON::XS distribution, to make it easy to compare on your own
912system. 1084system.
913 1085
914First comes a comparison between various modules using a very short 1086First comes a comparison between various modules using
915single-line JSON string: 1087a very short single-line JSON string (also available at
1088L<http://dist.schmorp.de/misc/json/short.json>).
916 1089
917 {"method": "handleMessage", "params": ["user1", "we were just talking"], \ 1090 {"method": "handleMessage", "params": ["user1", "we were just talking"], \
918 "id": null, "array":[1,11,234,-5,1e5,1e7, true, false]} 1091 "id": null, "array":[1,11,234,-5,1e5,1e7, true, false]}
919 1092
920It shows the number of encodes/decodes per second (JSON::XS uses 1093It shows the number of encodes/decodes per second (JSON::XS uses
939about three times faster on decoding, and over forty times faster 1112about three times faster on decoding, and over forty times faster
940than JSON, even with pretty-printing and key sorting. It also compares 1113than JSON, even with pretty-printing and key sorting. It also compares
941favourably to Storable for small amounts of data. 1114favourably to Storable for small amounts of data.
942 1115
943Using a longer test string (roughly 18KB, generated from Yahoo! Locals 1116Using a longer test string (roughly 18KB, generated from Yahoo! Locals
944search API (http://nanoref.com/yahooapis/mgPdGg): 1117search API (L<http://dist.schmorp.de/misc/json/long.json>).
945 1118
946 module | encode | decode | 1119 module | encode | decode |
947 -----------|------------|------------| 1120 -----------|------------|------------|
948 JSON 1.x | 55.260 | 34.971 | 1121 JSON 1.x | 55.260 | 34.971 |
949 JSON::DWIW | 825.228 | 1082.513 | 1122 JSON::DWIW | 825.228 | 1082.513 |
986 1159
987Third, JSON::XS recurses using the C stack when decoding objects and 1160Third, JSON::XS recurses using the C stack when decoding objects and
988arrays. The C stack is a limited resource: for instance, on my amd64 1161arrays. The C stack is a limited resource: for instance, on my amd64
989machine with 8MB of stack size I can decode around 180k nested arrays but 1162machine with 8MB of stack size I can decode around 180k nested arrays but
990only 14k nested JSON objects (due to perl itself recursing deeply on croak 1163only 14k nested JSON objects (due to perl itself recursing deeply on croak
991to free the temporary). If that is exceeded, the program crashes. to be 1164to free the temporary). If that is exceeded, the program crashes. To be
992conservative, the default nesting limit is set to 512. If your process 1165conservative, the default nesting limit is set to 512. If your process
993has a smaller stack, you should adjust this setting accordingly with the 1166has a smaller stack, you should adjust this setting accordingly with the
994C<max_depth> method. 1167C<max_depth> method.
995 1168
996And last but least, something else could bomb you that I forgot to think 1169Something else could bomb you, too, that I forgot to think of. In that
997of. In that case, you get to keep the pieces. I am always open for hints, 1170case, you get to keep the pieces. I am always open for hints, though...
998though... 1171
1172Also keep in mind that JSON::XS might leak contents of your Perl data
1173structures in its error messages, so when you serialise sensitive
1174information you might want to make sure that exceptions thrown by JSON::XS
1175will not end up in front of untrusted eyes.
999 1176
1000If you are using JSON::XS to return packets to consumption 1177If you are using JSON::XS to return packets to consumption
1001by JavaScript scripts in a browser you should have a look at 1178by JavaScript scripts in a browser you should have a look at
1002L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether 1179L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether
1003you are vulnerable to some common attack vectors (which really are browser 1180you are vulnerable to some common attack vectors (which really are browser
1004design bugs, but it is still you who will have to deal with it, as major 1181design bugs, but it is still you who will have to deal with it, as major
1005browser developers care only for features, not about doing security 1182browser developers care only for features, not about getting security
1006right). 1183right).
1007 1184
1008 1185
1009=head1 THREADS 1186=head1 THREADS
1010 1187

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines