use JSON::Syck; # no exports by default my $data = JSON::Syck::Load($json); my $json = JSON::Syck::Dump($data); # $file can be an IO object, or a filename my $data = JSON::Syck::LoadFile($file); JSON::Syck::DumpFile($file, $data); # Dump into a pre-existing buffer my $json; JSON::Syck::DumpInto(\$json, $data);
However, a newer module JSON::XS, has since emerged. It is more flexible, efficient and robust, so please consider using it instead of this module.
Since JSON is a pure-perl module and JSON::Syck is based on libsyck, JSON::Syck is supposed to be very fast and memory efficient. See chansen's benchmark table at <http://idisk.mac.com/christian.hansen/Public/perl/serialize.pl>
JSON.pm comes with dozens of ways to do the same thing and lots of options, while JSON::Syck doesn't. There's only "Load" and "Dump".
Oh, and JSON::Syck doesn't use camelCase method names :-)
JSON::Syck raises an exception when you pass in circular references.
If you want to serialize self refernecing stuff, you should use YAML which supports it.
However, when you set $JSON::Syck::ImplicitUnicode to 1, this module properly decodes UTF-8 binaries and sets UTF-8 flag everywhere, as in:
JSON (UTF-8 bytes) => Perl (UTF-8 flagged) JSON (UTF-8 flagged) => Perl (UTF-8 flagged) Perl (UTF-8 bytes) => JSON (UTF-8 flagged) Perl (UTF-8 flagged) => JSON (UTF-8 flagged)
By default, JSON::Syck::Dump will only transverse up to 512 levels of a datastructure in order to avoid an infinite loop when it is presented with an circular reference.
However, you set $JSON::Syck::MaxLevels to a larger value if you have very complex structures.
Unfortunately, there's no implicit way to dump Perl UTF-8 flagged data structure to utf-8 encoded JSON. To do this, simply use Encode module, e.g.:
use Encode; use JSON::Syck qw(Dump); my $json = encode_utf8( Dump($data) );
Alternatively you can use Encode::JavaScript::UCS to encode Unicode strings as in %uXXXX form.
use Encode; use Encode::JavaScript::UCS; use JSON::Syck qw(Dump); my $json_unicode_escaped = encode( 'JavaScript-UCS', Dump($data) );
Set $JSON::Syck::SingleQuote to 1 will make both "Dump" and "Load" expect single-quoted string literals.
When dumping with "DumpFile", some spacing might be wrong and $JSON::Syck::SingleQuote might be handled incorrectly.
Tatsuhiko Miyagawa <miyagawa@gmail.com>
This software is released under the MIT license cited below.
The libsyck code bundled with this library is released by ``why the lucky stiff'', under a BSD-style license. See the COPYING file for details.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.