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.76 by root, Sun Dec 2 15:34:13 2007 UTC vs.
Revision 1.86 by root, Wed Mar 19 03:17:38 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 = '2.0'; 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
455The 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>
456returns other blessed objects, those will be handled in the same 485returns other blessed objects, those will be handled in the same
457way. 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
458(== 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
459methods 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
460usually 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>
461function. 490function or method.
462 491
463This 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
464future, global hooks might get installed that influence C<decode> and are 493future, global hooks might get installed that influence C<decode> and are
465enabled by this setting. 494enabled by this setting.
466 495
680 709
681A JSON number becomes either an integer, numeric (floating point) or 710A JSON number becomes either an integer, numeric (floating point) or
682string 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
683the 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
684the conversion details, but an integer may take slightly less memory and 713the conversion details, but an integer may take slightly less memory and
685might represent more values exactly than (floating point) numbers. 714might represent more values exactly than floating point numbers.
686 715
687If 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
688it 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
689a numeric (floating point) value if that is possible without loss of 718a numeric (floating point) value if that is possible without loss of
690precision. 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).
691 722
692Numbers containing a fractional or exponential part will always be 723Numbers containing a fractional or exponential part will always be
693represented as numeric (floating point) values, possibly at a loss of 724represented as numeric (floating point) values, possibly at a loss of
694precision. 725precision (in which case you might lose perfect roundtripping ability, but
695 726the JSON number will still be re-encoded as a JSON number).
696This might create round-tripping problems as numbers might become strings,
697but as Perl is typeless there is no other way to do it.
698 727
699=item true, false 728=item true, false
700 729
701These 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>,
702respectively. They are overloaded to act almost exactly like the numbers 731respectively. They are overloaded to act almost exactly like the numbers
739Other unblessed references are generally not allowed and will cause an 768Other unblessed references are generally not allowed and will cause an
740exception 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
741C<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
742also 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.
743 772
744 to_json [\0,JSON::XS::true] # yields [false,true] 773 encode_json [\0,JSON::XS::true] # yields [false,true]
745 774
746=item JSON::XS::true, JSON::XS::false 775=item JSON::XS::true, JSON::XS::false
747 776
748These special values become JSON true and JSON false values, 777These special values become JSON true and JSON false values,
749respectively. 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.
750 779
751=item blessed objects 780=item blessed objects
752 781
753Blessed objects are not allowed. JSON::XS currently tries to encode their 782Blessed objects are not directly representable in JSON. See the
754underlying representation (hash- or arrayref), but this behaviour might 783C<allow_blessed> and C<convert_blessed> methods on various options on
755change 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.
756 787
757=item simple scalars 788=item simple scalars
758 789
759Simple 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
760difficult objects to encode: JSON::XS will encode undefined scalars as 791difficult objects to encode: JSON::XS will encode undefined scalars as
761JSON 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
762before encoding as JSON strings and anything else as number value: 793before encoding as JSON strings, and anything else as number value:
763 794
764 # dump as number 795 # dump as number
765 to_json [2] # yields [2] 796 encode_json [2] # yields [2]
766 to_json [-3.0e17] # yields [-3e+17] 797 encode_json [-3.0e17] # yields [-3e+17]
767 my $value = 5; to_json [$value] # yields [5] 798 my $value = 5; encode_json [$value] # yields [5]
768 799
769 # used as string, so dump as string 800 # used as string, so dump as string
770 print $value; 801 print $value;
771 to_json [$value] # yields ["5"] 802 encode_json [$value] # yields ["5"]
772 803
773 # undef becomes null 804 # undef becomes null
774 to_json [undef] # yields [null] 805 encode_json [undef] # yields [null]
775 806
776You 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:
777 808
778 my $x = 3.1; # some variable containing a number 809 my $x = 3.1; # some variable containing a number
779 "$x"; # stringified 810 "$x"; # stringified
785 my $x = "3"; # some variable containing a string 816 my $x = "3"; # some variable containing a string
786 $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
787 $x *= 1; # same thing, the choice is yours. 818 $x *= 1; # same thing, the choice is yours.
788 819
789You 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
790if 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.
791 921
792=back 922=back
793 923
794 924
795=head1 COMPARISON 925=head1 COMPARISON
799problems (or pleasures) I encountered with various existing JSON modules, 929problems (or pleasures) I encountered with various existing JSON modules,
800followed by some benchmark values. JSON::XS was designed not to suffer 930followed by some benchmark values. JSON::XS was designed not to suffer
801from any of these problems or limitations. 931from any of these problems or limitations.
802 932
803=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.
804 945
805=item JSON 1.07 946=item JSON 1.07
806 947
807Slow (but very portable, as it is written in pure Perl). 948Slow (but very portable, as it is written in pure Perl).
808 949
879=back 1020=back
880 1021
881 1022
882=head2 JSON and YAML 1023=head2 JSON and YAML
883 1024
884You 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
885however, 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
886no 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.
887 1029
888If 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
889algorithm (subject to change in future versions): 1031algorithm (subject to change in future versions):
890 1032
891 my $to_yaml = JSON::XS->new->utf8->space_after (1); 1033 my $to_yaml = JSON::XS->new->utf8->space_after (1);
892 my $yaml = $to_yaml->encode ($ref) . "\n"; 1034 my $yaml = $to_yaml->encode ($ref) . "\n";
893 1035
894This will usually generate JSON texts that also parse as valid 1036This will I<usually> generate JSON texts that also parse as valid
895YAML. Please note that YAML has hardcoded limits on (simple) object key 1037YAML. Please note that YAML has hardcoded limits on (simple) object key
896lengths 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
897keys 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).
898 1044
899There 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
900you 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
901or 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
902that 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
903 1077
904 1078
905=head2 SPEED 1079=head2 SPEED
906 1080
907It 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
984 1158
985Third, JSON::XS recurses using the C stack when decoding objects and 1159Third, JSON::XS recurses using the C stack when decoding objects and
986arrays. The C stack is a limited resource: for instance, on my amd64 1160arrays. The C stack is a limited resource: for instance, on my amd64
987machine with 8MB of stack size I can decode around 180k nested arrays but 1161machine with 8MB of stack size I can decode around 180k nested arrays but
988only 14k nested JSON objects (due to perl itself recursing deeply on croak 1162only 14k nested JSON objects (due to perl itself recursing deeply on croak
989to free the temporary). If that is exceeded, the program crashes. to be 1163to free the temporary). If that is exceeded, the program crashes. To be
990conservative, the default nesting limit is set to 512. If your process 1164conservative, the default nesting limit is set to 512. If your process
991has a smaller stack, you should adjust this setting accordingly with the 1165has a smaller stack, you should adjust this setting accordingly with the
992C<max_depth> method. 1166C<max_depth> method.
993 1167
994And last but least, something else could bomb you that I forgot to think 1168Something else could bomb you, too, that I forgot to think of. In that
995of. In that case, you get to keep the pieces. I am always open for hints, 1169case, you get to keep the pieces. I am always open for hints, though...
996though... 1170
1171Also keep in mind that JSON::XS might leak contents of your Perl data
1172structures in its error messages, so when you serialise sensitive
1173information you might want to make sure that exceptions thrown by JSON::XS
1174will not end up in front of untrusted eyes.
997 1175
998If you are using JSON::XS to return packets to consumption 1176If you are using JSON::XS to return packets to consumption
999by JavaScript scripts in a browser you should have a look at 1177by JavaScript scripts in a browser you should have a look at
1000L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether 1178L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether
1001you are vulnerable to some common attack vectors (which really are browser 1179you are vulnerable to some common attack vectors (which really are browser
1002design bugs, but it is still you who will have to deal with it, as major 1180design bugs, but it is still you who will have to deal with it, as major
1003browser developers care only for features, not about doing security 1181browser developers care only for features, not about getting security
1004right). 1182right).
1005 1183
1006 1184
1007=head1 THREADS 1185=head1 THREADS
1008 1186

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines