I'm parsing a single configuration file with both Perl and PHP, and I want to make absolutely sure that they get exactly the same result. Therefore I'd like to either export the parsed configuration to another file or (preferably) just print it (sorted alphabetically by key). Is there some simple way to do this without some ugly parsing of the $config->varlist(".") or $config->_dump() results? These both contain junk like hash() keys, some key called 1 and the values of the AppConfig configuration options like PEDANTIC.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Ended up with the following code which works with strict, warning and taint mode:

my %config_state = (
    CASE => 1,
    PEDANTIC => 1);
my %config_defs = ('db_user=s' => {}, ...);
...
my $config = AppConfig->new(%config_state);
for my $key (keys %config_defs) {
    $config->define($key => $config_defs{ $key })
}
...
# Dump configuration to temporary file
open CONFIG, '>configuration.ini' or die $!;
my $varname;
for my $key (sort keys %config_defs) {
    $varname = substr $key, 0, -2;
    print CONFIG "$varname = ";
    print CONFIG $config->get($varname) if defined($config->get($varname));
    print CONFIG "\n";
}
close CONFIG or die $!;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.