TOML::Tiny(3pm) | User Contributed Perl Documentation | TOML::Tiny(3pm) |
TOML::Tiny - a minimal, pure perl TOML parser and serializer
version 0.15
use TOML::Tiny qw(from_toml to_toml); binmode STDIN, ':encoding(UTF-8)'; binmode STDOUT, ':encoding(UTF-8)'; # Decoding TOML my $toml = do{ local $/; <STDIN> }; my ($parsed, $error) = from_toml $toml; # Encoding TOML say to_toml({ stuff => { about => ['other', 'stuff'], }, }); # Object API my $parser = TOML::Tiny->new; my $data = $parser->decode($toml); say $parser->encode($data);
"TOML::Tiny" implements a pure-perl parser and generator for the TOML <https://github.com/toml-lang/toml> data format. It conforms to TOML v1.0 (with a few caveats; see "strict").
"TOML::Tiny" strives to maintain an interface compatible to the TOML and TOML::Parser modules, and could even be used to override $TOML::Parser:
use TOML; use TOML::Tiny; local $TOML::Parser = TOML::Tiny->new(...); say to_toml(...);
"TOML::Tiny" exports the following to functions for compatibility with the TOML module. See "FUNCTIONS" in TOML.
Parses a string of "TOML"-formatted source and returns the resulting data structure. Any arguments after the first are passed to TOML::Tiny::Parser's constructor.
If there is a syntax error in the "TOML" source, "from_toml" will die with an explanation which includes the line number of the error.
my $result = eval{ from_toml($toml_string) };
Alternately, this routine may be called in list context, in which case syntax errors will result in returning two values, "undef" and an error message.
my ($result, $error) = from_toml($toml_string);
Additional arguments may be passed after the toml source string; see "new".
GOTCHAS
my $toml = TOML::Tiny->new( inflate_float => sub{ return do_something_else_with_floats( $_[0] ); }; );
Encodes a hash ref as a "TOML"-formatted string.
my $toml = to_toml({foo => {'bar' => 'bat'}}); # [foo] # bar="bat"
mapping perl to TOML types
table
array
boolean
numeric types
These are tricky in perl. When encountering a "Math::Big[Int|Float]", that representation is used.
If the value is a defined (non-ref) scalar with the "SVf_IOK" or "SVf_NOK" flags set, the value will be emitted unchanged. This is in line with most other packages, so the normal hinting hacks for typed output apply:
number => 0 + $number, string => "" . $string,
datetime
string
All other non-ref scalars are treated as strings.
use DateTime::Format::RFC3339; my $parser = TOML::Tiny->new( inflate_datetime => sub{ my ($dt_string) = @_; # DateTime::Format::RFC3339 will set the resulting DateTime's formatter # to itself. Fallback is the DateTime default, ISO8601, with a possibly # floating time zone. return eval{ DateTime::Format::RFC3339->parse_datetime($dt_string) } || DateTime::Format::ISO8601->parse_datetime($dt_string); }, );
If you wish to override this, you can provide your own routine to generate values:
my $parser = TOML::Tiny->new( inflate_boolean => sub{ my $bool = shift; if ($bool eq 'true') { return 'The Truth'; } else { return 'A Lie'; } }, );
my $parser = TOML::Tiny->new( inflate_integer => sub{ my $parsed = shift; return sprintf 'the number "%d"', $parsed; }; );
my $parser = TOML::Tiny->new( inflate_float => sub{ my $parsed = shift; return sprintf '"%0.8f" is a float', $parsed; }; );
Note: "strict" was previously called "strict_arrays". Both are accepted for backward compatibility, although enforcement of homogenous arrays is no longer supported as it has been dropped from the spec.
Decodes "TOML" and returns a hash ref. Dies on parse error.
Encodes a perl hash ref as a "TOML"-formatted string.
Alias for "decode" to provide compatibility with "TOML::Parser" when overriding the parser by setting $TOML::Parser.
"TOML::Tiny" differs in a few significant ways from the TOML module, particularly in adding support for newer "TOML" features and strictness.
TOML defaults to lax parsing and provides "strict_mode" to (slightly) tighten things up. "TOML::Tiny" defaults to (somehwat) stricter parsing, enabling some extra strictures with "strict".
"TOML::Tiny" supports a number of options which do not exist in TOML: "inflate_integer", "inflate_float", and "strict".
"TOML::Tiny" ignores invalid surrogate pairs within basic and multiline strings (TOML may attempt to decode an invalid pair). Additionally, only those character escapes officially supported by TOML are interpreted as such by "TOML::Tiny".
"TOML::Tiny" supports stripping initial whitespace and handles lines terminating with a backslash correctly in multilne strings:
# TOML input x=""" foo""" y="""\ how now \ brown \ bureaucrat.\ """ # Perl output {x => 'foo', y => 'how now brown bureaucrat.'}
"TOML::Tiny" includes support for integers specified in binary, octal or hex as well as the special float values "inf" and "nan".
Thanks to ZipRecruiter <https://www.ziprecruiter.com> for encouraging their employees to contribute back to the open source ecosystem. Without their dedication to quality software development this distribution would not exist.
A big thank you to those who have contributed code or bug reports:
Jeff Ober <sysread@fastmail.fm>
This software is copyright (c) 2021 by Jeff Ober.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2021-09-19 | perl v5.32.1 |