NAME

JSON::Parse - Convert JSON into a Perl variable

SYNOPSIS

use JSON::Parse 'json_to_perl';
my $json = '["golden", "fleece"]';
my $perl = json_to_perl ($json);
# Same effect as $perl = ['golden', 'fleece'];

Convert JSON into Perl.

DESCRIPTION

JSON::Parse converts JSON into equivalent Perl. The function "json_to_perl" takes one argument, a string containing JSON, and returns a Perl reference. The input to json_to_perl must be a complete JSON structure.

The module differs from the standard JSON module by simplifying the handling of Unicode. If its input is marked as Unicode characters, the strings in its output are also marked as Unicode characters.

JSON::Parse also provides a high speed validation function, "valid_json".

JSON means "JavaScript Object Notation" and it is specified in "RFC 4627".

FUNCTIONS

json_to_perl

use JSON::Parse 'json_to_perl';
my $perl = json_to_perl ('{"x":1, "y":2}');

This function converts JSON into a Perl structure, either an array reference or a hash reference.

If the first argument does not contain a valid JSON text, json_to_perl throws a fatal error. See "DIAGNOSTICS" for the possible error messages.

If the argument contains valid JSON, the return value is either a hash or an array reference. If the input JSON text is a serialized object, a hash reference is returned:

my $perl = json_to_perl ('{"a":1, "b":2}');
print ref $perl, "\n";
# Prints "HASH".

If the input JSON text is a serialized array, an array reference is returned:

my $perl = json_to_perl ('["a", "b", "c"]');
print ref $perl, "\n";
# Prints "ARRAY".

json_file_to_perl

use JSON::Parse 'json_file_to_perl';
my $p = json_file_to_perl ('filename');

This is exactly the same as "json_to_perl" except that it works on a file name. The file must be in UTF-8.

valid_json

use JSON::Parse 'valid_json';
if (valid_json ($json)) {
    # do something
}

Valid_json returns 1 if its argument is valid JSON and 0 if not.

Because valid_json does not create any Perl data structures, it runs about two or three times faster than "json_to_perl".

Mapping from JSON to Perl

JSON elements are mapped to Perl as follows:

JSON numbers

JSON numbers become Perl strings, rather than numbers. No conversion from the character string to a numerical value is done. For example

my $q = @{json_to_perl ('[0.12345]')}[0];

has the same result as a Perl declaration of the form

my $q = '0.12345';

The conversion is not done because Perl will do the conversion into a numerical value automatically when the scalar is used in a numerical context:

print '0.12345' * 5;
# prints 0.61725

See also "Numbers not checked".

The only exception is plus signs in exponentials, which are stripped out, thus 1.9e+9 in the JSON will be returned to the user as the string "1.9e9", without the meaningless + of the original.

JSON strings

JSON strings become Perl strings. The JSON escape characters such as \t for the tab character (see section 2.5 of "RFC 4627") are mapped to the equivalent ASCII character. Unicode escape characters of the form \uXXXX (see page three of "RFC 4627") are mapped to UTF-8 octets. This is done regardless of what input encoding might be used in the JSON text.

Handling of Unicode

If the input to "json_to_perl" is marked as Unicode characters, the output strings will be marked as Unicode characters. If the input is not marked as Unicode characters, the output strings will not be marked as Unicode characters. Thus,

# The scalar $sasori looks like Unicode to Perl
use utf8;
my $sasori = '["蠍"]';
my $p = json_to_perl ($sasori);
print utf8::is_utf8 ($p->[0]);
# Prints 1.

but

# The scalar $ebi does not look like Unicode to Perl
no utf8;
my $ebi = '["海老"]';
my $p = json_to_perl ($ebi);
print utf8::is_utf8 ($p->[0]);
# Prints nothing.

JSON arrays

JSON arrays become Perl array references. The elements of the Perl array are in the same order as they appear in the JSON.

Thus

my $p = json_to_perl ('["monday", "tuesday", "wednesday"]');

has the same result as a Perl declaration of the form

my $p = [ 'monday', 'tuesday', 'wednesday' ];

JSON objects

JSON objects become Perl hashes. The members of the JSON object become key and value pairs in the Perl hash. The string part of each object member becomes the key of the Perl hash. The value part of each member is mapped to the value of the Perl hash.

Thus

my $j = <<EOF;
{"monday":["blue", "black"],
 "tuesday":["grey", "heart attack"],
 "friday":"Gotta get down on Friday"}
EOF

my $p = json_to_perl ($j);

has the same result as a Perl declaration of the form

my $p = {
    monday => ['blue', 'black'],
    tuesday => ['grey', 'heart attack'],
    friday => 'Gotta get down on Friday',
};

null

The JSON null literal is mapped to the undefined value. See "False = null = undefined value".

true

The JSON true literal is mapped to a Perl string with the value 'true'.

false

The JSON false literal is mapped to the undefined value. See "False = null = undefined value".

RESTRICTIONS

This module imposes the following restrictions on its input.

JSON only

JSON::Parse is a strict parser. It only parses JSON which exactly meets the criteria of "RFC 4627". That means, for example, JSON::Parse does not accept single quotes (') instead of double quotes ("), or numbers with leading zeros, like 0123.

No incremental parsing

JSON::Parse does not do incremental parsing. JSON::Parse only parses fully-formed JSON strings which include opening and closing brackets.

UTF-8 only

Although JSON may come in various encodings of Unicode, JSON::Parse only parses the UTF-8 format. If input is in a different Unicode encoding than UTF-8, convert the input before handing it to this module. For example, for the UTF-16 format,

use Encode 'decode';
my $input_utf8 = decode ('UTF-16', $input);
my $perl = json_to_perl ($input_utf8);

or, for a file,

open my $input, "<:encoding(UTF-16)", 'some-json-file'; 

This module does not attempt to do the determination of the nature of the octet stream, as described in part 3 of "RFC 4627".

BUGS

This is a preliminary version. The following deficiencies are known. These may be resolved in a later version.

False = null = undefined value

At the moment, both of "false" and "null" in JSON are mapped to the undefined value. "true" is mapped to the string "true".

Numbers not checked

The author of this module does not know whether all possible JSON floating point numbers are understood by Perl (see "JSON numbers" above). Most integer and floating point numbers encountered should be OK, but there is a chance that there are some numbers allowed in the JSON format which Perl cannot understand.

DIAGNOSTICS

"valid_json" does not produce error messages. "json_to_perl" may produce the following:

  • Out of memory

  • The JSON is not grammatically correct

  • There are stray characters in the JSON

  • There is a badly-formed \u Unicode escape in the JSON

  • The JSON string is empty

  • The JSON did not start with '{' or '['

  • There is an unknown escape sequence in the JSON

Error messages have the line number and the byte number of the input which caused the problem.

Parsing errors are fatal, so to continue after an error occurs, put the parsing into an eval block:

my $p;                       
eval {                       
    $p = json_to_perl ($j);  
};                           
if ($@) {                    
    # handle error           
}

SEE ALSO

RFC 4627

JSON is specified in http://www.ietf.org/rfc/rfc4627.txt.

EXPORTS

The module exports nothing by default. Functions "json_to_perl" and "valid_json" can be exported on request.

AUTHOR

Ben Bullock, <bkb@cpan.org>

LICENSE

JSON::Parse can be used, copied, modified and redistributed under the same terms as Perl itself.