JSON::Any (3)
Leading comments
Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) Standard preamble: ========================================================================
NAME
JSON::Any - (DEPRECATED) Wrapper Class for the various JSON classesVERSION
version 1.39SYNOPSIS
use JSON::Any; my $j = JSON::Any->new; my $json = $j->objToJson({foo=>'bar', baz=>'quux'}); my $obj = $j->jsonToObj($json);
DESCRIPTION
This module tries to provide a coherent
use JSON::Any; my $j = JSON::Any->new; $json = $j->objToJson({foo=>'bar', baz=>'quux'}); $obj = $j->jsonToObj($json);
or
$json = $j->encode({foo=>'bar', baz=>'quux'}); $obj = $j->decode($json);
or
$json = $j->Dump({foo=>'bar', baz=>'quux'}); $obj = $j->Load($json);
or
$json = $j->to_json({foo=>'bar', baz=>'quux'}); $obj = $j->from_json($json);
or without creating an object:
$json = JSON::Any->objToJson({foo=>'bar', baz=>'quux'}); $obj = JSON::Any->jsonToObj($json);
On load, JSON::Any will find a valid
Cpanel::JSON::XS JSON::XS JSON::PP JSON JSON::DWIW
And loading the first one it finds.
You may change the order by specifying it on the "use JSON::Any" line:
use JSON::Any qw(DWIW XS CPANEL JSON PP);
Specifying an order that is missing modules will prevent those module from being used:
use JSON::Any qw(CPANEL PP); # same as JSON::MaybeXS
This will check in that order, and will never attempt to load
JSON::Syck has been deprecated by its author, but in the attempt to still stay relevant as a ``Compatibility Layer'' JSON::Any still supports it. This support however has been made optional starting with JSON::Any 1.19. In deference to a bug request starting with
use JSON::Any qw(Syck XS JSON);
or
$ENV{JSON_ANY_ORDER} = 'Syck XS JSON';
At install time, JSON::Any will attempt to install
use JSON::Any ();
It will skip the
DEPRECATION NOTICE
The original need for JSON::Any has been solved (quite some time ago actually). If you're producing new code it is recommended to use JSON::MaybeXS which will optionally use Cpanel::JSON::XS for speed purposes.JSON::Any will continue to be maintained for compatibility with existing code, but for new code you should strongly consider using JSON::MaybeXS instead.
WARNING
This situation should only come up with JSON::Any if you have
If you run into an issue where you're getting recursive inheritance errors in a Types::Serialiser package, please try upgrading
METHODS
new
Will take any of the parameters for the underlying system and pass them through. However these values don't map betweenThe one parameter that is universally supported (to the extent that is supported by the underlying
Also note that the "allow_blessed" parameter is recognised by all the modules that throw exceptions when a blessed reference is given them meaning that setting it to true works for all modules. Of course, that means that you cannot set it to false intentionally in order to always get such exceptions.
The actual output will vary, for example
handlerType
Takes no arguments, returns a string indicating whichhandler
Takes no arguments, if called on an object returns the internal JSON::* object in use. Otherwise returns the JSON::* package we are using for class methods.true
Takes no arguments, returns the special value that the internalfalse
Takes no arguments, returns the special value that the internalobjToJson
Takes a single argument, a hashref to be converted intoto_json
Dump
encode
Aliases for "objToJson", can be used interchangeably, regardless of the underlyingjsonToObj
Takes a single argument, a string offrom_json
Load
decode
Aliases for "jsonToObj", can be used interchangeably, regardless of the underlyingACKNOWLEDGEMENTS
This module came about after discussions on irc.perl.org about the fact that there were now six separateIn the spirit of Class::Any, JSON::Any was created with the considerable help of Matt 'mst' Trout.
Simon Wistow graciously supplied a patch for backwards compatibility with
San Dimas High School Football Rules!
AUTHORS
- *
- Chris Thompson <cthom@cpan.org>
- *
- Chris Prather <chris@prather.org>
- *
- Robin Berjon <robin@berjon.com>
- *
- Marc Mims <marc@questright.com>
- *
- Tomas Doran <bobtfish@bobtfish.net>
CONTRIBUTORS
- *
- Karen Etheridge <ether@cpan.org>
- *
-
XXXX XXX'XX(Yuval Kogman) <nothingmuch@woobling.org>
- *
- Dagfinn Ilmari Mannsa°ker <ilmari@ilmari.org>
- *
- Justin Hunter <justin.d.hunter@gmail.com>
- *
- Todd Rinaldo <toddr@cpan.org>
- *
- Matthew Horsfall <wolfsage@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2007 by Chris Thompson.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.