use YAML::XS; my $yaml = Dump [ 1..4 ]; my $array = Load $yaml;
This module is a Perl XS binding to libyaml which offers Perl the best YAML support to date.
This module exports the functions "Dump", "Load", "DumpFile" and "LoadFile". These functions are intended to work exactly like "YAML.pm"'s corresponding functions. Only "Load" and "Dump" are exported by default.
When set to false, it will not bless data into objects, which can be a security problem, when loading YAML from an untrusted source. It will silently ignore the tag and just load the data unblessed.
In PyYAML, this is called SafeLoad.
If set to true, it will load the following YAML as objects:
--- local: !Foo::Bar [a] perl: !!perl/hash:Foo::Bar { a: 1 } regex: !!perl/regexp:Foo::Bar pattern
Note that support for loading code was added in version 0.75, although $LoadCode was documented already in earlier versions.
This ensures leading that things like leading zeros and other formatting are preserved.
When set to "JSON::PP" or "boolean", the plain (unquoted) strings "true" and "false" will be loaded as "JSON::PP::Boolean" or "boolean.pm" objects. Those objects will be dumped again as plain ``true'' or ``false''.
It will try to load JSON::PP or boolean and die if it can't be loaded.
With that it's possible to add new ``real'' booleans to a data structure:
local $YAML::XS::Boolean = "JSON::PP"; # or "boolean" my $data = Load("booltrue: true"); $data->{boolfalse} = JSON::PP::false; my $yaml = Dump($data); # boolfalse: false # booltrue: true
It also lets booleans survive when loading YAML via YAML::XS and encode it in JSON via one of the various JSON encoders, which mostly support JSON::PP booleans.
Please note that JSON::PP::Boolean and boolean.pm behave a bit differently. Ideally you should only use them in boolean context.
If not set, booleans are loaded as special perl variables "PL_sv_yes" and "PL_sv_no", which have the disadvantage that they are readonly, and you can't add those to an existing data structure with pure perl.
If you simply need to load ``perl booleans'' that are true or false in boolean context, you will be fine with the default setting.
Sets the number of spaces for indentation for "Dump".
$perl = Load($utf8_octets); $utf8_octets = Dump($perl);
There are many, many places where things can go wrong with unicode. If you are having problems, use Devel::Peek on all the possible data points.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>