mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-17 04:31:00 +01:00
whitespaces in option names.
- changed the save() calls in the test script (t/run.t)
to save_file()
- removed new() from ::Interpolated and ::Extended.
This may break existing code (they will need to
move to the flags of Config::General::new() ), but
this decision must be made. The problem was that
both the old way of directly using the subclasses
and the enw way did not work together. So, now
subclasses are only method holders and used by
Config::General on request. Direct use of subclasses
is prohibited. (you receive a warning if you do).
git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@28 be1acefe-a474-0410-9a34-9b3221f2030f
217 lines
5.2 KiB
Perl
217 lines
5.2 KiB
Perl
package Config::General::Interpolated;
|
|
$Config::General::Interpolated::VERSION = "1.3";
|
|
|
|
use strict;
|
|
use Carp;
|
|
use Config::General;
|
|
use Exporter ();
|
|
|
|
|
|
# Import stuff from Config::General
|
|
use vars qw(@ISA @EXPORT);
|
|
@ISA = qw(Config::General Exporter);
|
|
@EXPORT=qw(_set_regex _vars);
|
|
|
|
sub new {
|
|
#
|
|
# overwrite new() with our own version
|
|
# and call the parent class new()
|
|
#
|
|
|
|
croak "Deprecated method Config::General::Interpolated::new() called.\n"
|
|
."Use Config::General::new() instead and set the -InterPolateVars flag.\n";
|
|
}
|
|
|
|
|
|
|
|
sub _set_regex {
|
|
#
|
|
# set the regex for finding vars
|
|
#
|
|
|
|
# the following regex is provided by Autrijus Tang
|
|
# <autrijus@autrijus.org>, and I made some modifications.
|
|
# thanx, autrijus. :)
|
|
my $regex = qr{
|
|
(^|[^\\]) # can be the beginning of the line
|
|
# but can't begin with a '\'
|
|
\$ # dollar sign
|
|
(\{)? # $1: optional opening curly
|
|
([a-zA-Z_]\w*) # $2: capturing variable name
|
|
(
|
|
?(2) # $3: if there's the opening curly...
|
|
\} # ... match closing curly
|
|
)
|
|
}x;
|
|
return $regex;
|
|
}
|
|
|
|
|
|
|
|
sub _vars {
|
|
my ($this, $config, $stack) = @_;
|
|
my %varstack;
|
|
|
|
$stack = {} unless defined $stack; # make sure $stack is assigned.
|
|
|
|
# collect values that don't need to be substituted first
|
|
while (my ($key, $value) = each %{$config}) {
|
|
$varstack{$key} = $value
|
|
unless ref($value) or $value =~ /$this->{regex}/;
|
|
}
|
|
|
|
my $sub_interpolate = sub {
|
|
my ($value) = @_;
|
|
|
|
# this is a scalar
|
|
if ($value =~ m/^'/ and $value =~ m/'$/) {
|
|
# single-quote, remove it and don't do variable interpolation
|
|
$value =~ s/^'//; $value =~ s/'$//;
|
|
}
|
|
else {
|
|
$value =~ s{$this->{regex}}{
|
|
my $v = $varstack{$3} || $stack->{$3};
|
|
$v = '' if ref($v);
|
|
$1 . $v;
|
|
}egx;
|
|
}
|
|
|
|
return $value;
|
|
};
|
|
|
|
# interpolate variables
|
|
while (my ($key, $value) = each %{$config}) {
|
|
if (my $reftype = ref($value)) {
|
|
next unless $reftype eq 'ARRAY';
|
|
|
|
# we encounter multiple options
|
|
@{$value} = map { $sub_interpolate->($_) } @{$value};
|
|
}
|
|
else {
|
|
$value = $sub_interpolate->($value);
|
|
$config->{$key} = $value;
|
|
$varstack{$key} = $value;
|
|
}
|
|
}
|
|
|
|
# traverse the hierarchy part
|
|
while (my ($key, $value) = each %{$config}) {
|
|
# this is not a scalar recursive call to myself
|
|
if (ref($value) eq 'HASH') {
|
|
# called via Gonfig::General procedural
|
|
_vars($this, $value, {%{$stack}, %varstack});
|
|
}
|
|
}
|
|
|
|
return $config;
|
|
}
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
|
|
=head1 NAME
|
|
|
|
Config::General::Interpolated - Parse variables within Config files
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use Config::General;
|
|
$conf = new Config::General(
|
|
-CinfigFile => 'configfile',
|
|
-InterPolateVars => 1
|
|
);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This is an internal module which makes it possible to interpolate
|
|
perl style variables in your config file (i.e. C<$variable>
|
|
or C<${variable}>).
|
|
|
|
Normally you don't call it directly.
|
|
|
|
|
|
=head1 VARIABLES
|
|
|
|
Variables can be defined everywhere in the config and can be used
|
|
afterwards. If you define a variable inside a block or a named block
|
|
then it is only visible within this block or within blocks which
|
|
are defined inside this block. Well - let's take a look to an example:
|
|
|
|
# sample config which uses variables
|
|
basedir = /opt/ora
|
|
user = t_space
|
|
sys = unix
|
|
<table intern>
|
|
instance = INTERN
|
|
owner = $user # "t_space"
|
|
logdir = $basedir/log # "/opt/ora/log"
|
|
sys = macos
|
|
<procs>
|
|
misc1 = ${sys}_${instance} # macos_INTERN
|
|
misc2 = $user # "t_space"
|
|
</procs>
|
|
</table>
|
|
|
|
This will result in the following structure:
|
|
|
|
{
|
|
'basedir' => '/opt/ora',
|
|
'user' => 't_space'
|
|
'sys' => 'unix',
|
|
'table' => {
|
|
'intern' => {
|
|
'sys' => 'macos',
|
|
'logdir' => '/opt/ora/log',
|
|
'instance' => 'INTERN',
|
|
'owner' => 't_space',
|
|
'procs' => {
|
|
'misc1' => 'macos_INTERN',
|
|
'misc2' => 't_space'
|
|
}
|
|
}
|
|
}
|
|
|
|
As you can see, the variable B<sys> has been defined twice. Inside
|
|
the <procs> block a variable ${sys} has been used, which then were
|
|
interpolated into the value of B<sys> defined inside the <table>
|
|
block, not the sys variable one level above. If sys were not defined
|
|
inside the <table> block then the "global" variable B<sys> would have
|
|
been used instead with the value of "unix".
|
|
|
|
Variables inside double quotes will be interpolated, but variables
|
|
inside single quotes will B<not> interpolated. This is the same
|
|
behavior as you know of perl itself.
|
|
|
|
In addition you can surround variable names with curly braces to
|
|
avoid misinterpretation by the parser.
|
|
|
|
=head1 SEE ALSO
|
|
|
|
L<Config::General>
|
|
|
|
=head1 AUTHORS
|
|
|
|
Thomas Linden <tom@daemon.de>
|
|
Autrijus Tang <autrijus@autrijus.org>
|
|
Wei-Hon Chen <plasmaball@pchome.com.tw>
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
Copyright 2001 by Wei-Hon Chen E<lt>plasmaball@pchome.com.twE<gt>.
|
|
Copyright 2002 by Thomas Linden <tom@daemon.de>.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the same terms as Perl itself.
|
|
|
|
See L<http://www.perl.com/perl/misc/Artistic.html>
|
|
|
|
=head1 VERSION
|
|
|
|
1.3
|
|
|
|
=cut
|
|
|