Config::IOD::Base - Base class for Config::IOD and Config::IOD::Reader
This document describes version 0.345 of Config::IOD::Base (from Perl distribution Config-IOD-Reader), released on 2022-05-02.
Expression allows you to do things like:
[section1] foo=1 bar="monkey" [section2] baz =!e 1+1 qux =!e "grease" . val("section1.bar") quux=!e val("qux") . " " . val('baz')
And the result will be:
{ section1 => {foo=>1, bar=>"monkey"}, section2 => {baz=>2, qux=>"greasemonkey", quux=>"greasemonkey 2"}, }
For safety, you'll need to set enable_expr attribute to 1 first to enable this feature.
enable_expr
The syntax of the expression (the expr encoding) is not officially specified yet in the IOD specification. It will probably be Expr (see Language::Expr::Manual::Syntax). At the moment, this module implements a very limited subset that is compatible (lowest common denominator) with Perl syntax and uses eval() to evaluate the expression. However, only the limited subset is allowed (checked by Perl 5.10 regular expression).
expr
eval()
The supported terms:
number string (double-quoted and single-quoted) undef literal simple variable ($abc, no namespace, no array/hash sigil, no special variables) function call (only the 'val' function is supported) grouping (parenthesis)
The supported operators are:
+ - . * / % x ** unary -, unary +, !, ~
The val() function refers to the configuration key. If the argument contains ".", it will be assumed as SECTIONNAME.KEYNAME, otherwise it will access the current section's key. Since parsing is done in a single pass, you can only refer to the already mentioned key.
val()
SECTIONNAME.KEYNAME
Code will be compiled using Perl's eval() in the Config::IOD::Expr::_Compiled namespace, with no strict, no warnings.
Config::IOD::Expr::_Compiled
no strict
no warnings
GLOBAL
If a key line is specified before any section line, this is the section that the key will be put in.
If set to false, then directives will not be parsed. Lines such as below will be considered a regular comment:
;!include foo.ini
and lines such as below will be considered a syntax error (regardless of the allow_bang_only setting):
allow_bang_only
!include foo.ini
NOTE: Turning this setting off violates IOD specification.
If set to false, then encoding notation will be ignored and key value will be parsed as verbatim. Example:
name = !json null
With enable_encoding turned off, value will not be undef but will be string with the value of (as Perl literal) "!json null".
enable_encoding
"!json null"
If set to false, then quotes on key value will be ignored and key value will be parsed as verbatim. Example:
name = "line 1\nline2"
With enable_quoting turned off, value will not be a two-line string, but will be a one line string with the value of (as Perl literal) "line 1\\nline2".
enable_quoting
"line 1\\nline2"
If set to false, then JSON literal array will be parsed as verbatim. Example:
name = [1,2,3]
With enable_bracket turned off, value will not be a three-element array, but will be a string with the value of (as Perl literal) "[1,2,3]".
enable_bracket
"[1,2,3]"
If set to false, then JSON literal object (hash) will be parsed as verbatim. Example:
name = {"a":1,"b":2}
With enable_brace turned off, value will not be a hash with two pairs, but will be a string with the value of (as Perl literal) '{"a":1,"b":2}'.
enable_brace
'{"a":1,"b":2}'
If set to true (the default), then value that starts with ~ (tilde) will be assumed to use !path encoding, unless an explicit encoding has been otherwise specified.
~
Example:
log_dir = ~/logs ; ~ will be resolved to current user's home directory
With enable_tilde turned off, value will still be literally ~/logs.
enable_tilde
~/logs
If defined, set list of allowed encodings. Note that if disallow_encodings is also set, an encoding must also not be in that list.
disallow_encodings
Also note that, for safety reason, if you want to enable expr encoding, you'll also need to set enable_expr to 1.
If defined, set list of disallowed encodings. Note that if allow_encodings is also set, an encoding must also be in that list.
allow_encodings
Whether to enable expr encoding. By default this is turned off, for safety. Please see "EXPRESSION" for more details.
If defined, only directives listed here are allowed. Note that if disallow_directives is also set, a directive must also not be in that list.
disallow_directives
If defined, directives listed here are not allowed. Note that if allow_directives is also set, a directive must also be in that list.
allow_directives
Since the mistake of specifying a directive like this:
!foo
instead of the correct:
;!foo
is very common, the spec allows it. This reader, however, can be configured to be more strict.
If set to 0, you can forbid duplicate key, e.g.:
[section] a=1 a=2
or:
[section] a=1 b=2 c=3 a=10
In traditional INI file, to specify an array you specify multiple keys. But when there is only a single key, it is unclear if the value is a single-element array or a scalar. You can use this setting to avoid this array/scalar ambiguity in config file and force user to use JSON encoding or bracket to specify array:
[section] a=[1,2]
If set to true, will not die if an unknown directive is encountered. It will simply be ignored as a regular comment.
NOTE: Turning this setting on violates IOD specification.
Emit warning if configuration contains key line like these:
foo=>"bar" foo => 123,
which suggest user is assuming configuration is in Perl format instead of INI.
If you enable this option, but happens to have a value that begins with ">", to avoid this warning you can quote the value first:
foo=">the value does begins with a greater-than sign" bar=">the value does begins with a greater-than sign and ends with a comma,"
Read IOD configuration from a file. Die on errors.
Read IOD configuration from a string. Die on errors.
Please visit the project's homepage at https://metacpan.org/release/Config-IOD-Reader.
Source repository is at https://github.com/perlancar/perl-Config-IOD-Reader.
perlancar <perlancar@cpan.org>
To contribute, you can send patches by email/via RT, or send pull requests on GitHub.
Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required beyond that are considered a bug and can be reported to me.
This software is copyright (c) 2022, 2021, 2019, 2018, 2017, 2016, 2015, 2014 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Config-IOD-Reader
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
To install Config::IOD::Reader, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Config::IOD::Reader
CPAN shell
perl -MCPAN -e shell install Config::IOD::Reader
For more information on module installation, please visit the detailed CPAN module installation guide.