=head1 NAME JSON::XS - JSON serialising/deserialising, done correctly and fast =head1 SYNOPSIS use JSON::XS; =head1 DESCRIPTION This module converts Perl data structures to JSON and vice versa. Its primary goal is to be I and its secondary goal is to be I. To reach the latter goal it was written in C. As this is the n-th-something JSON module on CPAN, what was the reason to write yet another JSON module? While it seems there are many JSON modules, none of them correctly handle all corner cases, and in most cases their maintainers are unresponsive, gone missing, or not listening to bug reports for other reasons. See COMPARISON, below, for a comparison to some other JSON modules. =head2 FEATURES =over 4 =item * correct handling of unicode issues This module knows how to handle Unicode, and even documents how it does so. =item * round-trip integrity When you serialise a perl data structure using only datatypes supported by JSON, the deserialised data structure is identical on the Perl level. (e.g. the string "2.0" doesn't suddenly become "2"). =item * strict checking of JSON correctness There is no guessing, no generating of illegal JSON strings by default, and only JSON is accepted as input (the latter is a security feature). =item * fast compared to other JSON modules, this module compares favourably. =item * simple to use This module has both a simple functional interface as well as an OO interface. =item * reasonably versatile output formats You can choose between the most compact format possible, a pure-ascii format, or a pretty-printed format. Or you can combine those features in whatever way you like. =back =cut package JSON::XS; BEGIN { $VERSION = '0.1'; @ISA = qw(Exporter); @EXPORT = qw(to_json from_json); require Exporter; require XSLoader; XSLoader::load JSON::XS::, $VERSION; } =head1 FUNCTIONAL INTERFACE The following convinience methods are provided by this module. They are exported by default: =over 4 =item $json_string = to_json $perl_scalar Converts the given Perl data structure (a simple scalar or a reference to a hash or array) to a UTF-8 encoded, binary string (that is, the string contains octets only). Croaks on error. This function call is functionally identical to C<< JSON::XS->new->utf8 (1)->encode ($perl_scalar) >>. =item $perl_scalar = from_json $json_string The opposite of C: expects an UTF-8 (binary) string and tries to parse that as an UTF-8 encoded JSON string, returning the resulting simple scalar or reference. Croaks on error. This function call is functionally identical to C<< JSON::XS->new->utf8 (1)->decode ($json_string) >>. =back =head1 OBJECT-ORIENTED INTERFACE The object oriented interface lets you configure your own encoding or decoding style, within the limits of supported formats. =over 4 =item $json = new JSON::XS Creates a new JSON::XS object that can be used to de/encode JSON strings. All boolean flags described below are by default I. The mutators for flags all return the JSON object again and thus calls can be chained: my $json = JSON::XS->new->utf8(1)->pretty(1)->encode ({a => [1,2]}) => {"a" : [1, 2]} =item $json = $json->ascii ($enable) If C<$enable> is true, then the C method will not generate characters outside the code range C<0..127>. Any unicode characters outside that range will be escaped using either a single \uXXXX (BMP characters) or a double \uHHHH\uLLLLL escape sequence, as per RFC4627. If C<$enable> is false, then the C method will not escape Unicode characters unless necessary. =item $json = $json->utf8 ($enable) If C<$enable> is true, then the C method will encode the JSON string into UTF-8, as required by many protocols, while the C method expects to be handled an UTF-8-encoded string. Please note that UTF-8-encoded strings do not contain any characters outside the range C<0..255>, they are thus useful for bytewise/binary I/O. If C<$enable> is false, then the C method will return the JSON string as a (non-encoded) unicode string, while C expects thus a unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs to be done yourself, e.g. using the Encode module. =item $json = $json->pretty ($enabla) This enables (or disables) all of the C, C and C (and in the future possibly more) settings in one call to generate the most readable (or most compact) form possible. =item $json = $json->indent ($enable) If C<$enable> is true, then the C method will use a multiline format as output, putting every array member or object/hash key-value pair into its own line, identing them properly. If C<$enable> is false, no newlines or indenting will be produced, and the resulting JSON strings is guarenteed not to contain any C. This setting has no effect when decoding JSON strings. =item $json = $json->space_before ($enable) If C<$enable> is true, then the C method will add an extra optional space before the C<:> separating keys from values in JSON objects. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON strings. You will also most likely combine this setting with C. =item $json = $json->space_after ($enable) If C<$enable> is true, then the C method will add an extra optional space after the C<:> separating keys from values in JSON objects and extra whitespace after the C<,> separating key-value pairs and array members. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON strings. =item $json = $json->canonical ($enable) If C<$enable> is true, then the C method will output JSON objects by sorting their keys. This is adding a comparatively high overhead. If C<$enable> is false, then the C method will output key-value pairs in the order Perl stores them (which will likely change between runs of the same script). This option is useful if you want the same data structure to be encoded as the same JSON string (given the same overall settings). If it is disabled, the same hash migh be encoded differently even if contains the same data, as key-value pairs have no inherent ordering in Perl. This setting has no effect when decoding JSON strings. =item $json_string = $json->encode ($perl_scalar) Converts the given Perl data structure (a simple scalar or a reference to a hash or array) to its JSON representation. Simple scalars will be converted into JSON string or number sequences, while references to arrays become JSON arrays and references to hashes become JSON objects. Undefined Perl values (e.g. C) become JSON C values. Neither C nor C values will be generated. =item $perl_scalar = $json->decode ($json_string) The opposite of C: expects a JSON string and tries to parse it, returning the resulting simple scalar or reference. Croaks on error. JSON numbers and strings become simple Perl scalars. JSON arrays become Perl arrayrefs and JSON objects become Perl hashrefs. C becomes C<1>, C becomes C<0> and C becomes C. =back =cut 1; =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut