I've done a lot of research but no luck...

I want to have a config file with some default or generic values in it. Then have other config files INCLUDE that default config, and overwrite variables if needed.

example:

Default.cfg :

[${name}]
   bin      = /bin/1   
   tmp_dir  = /tmp
   tmp_file = /tmp/${name}_tmp_file

------------------------------

myProc.cfg :

name  = Test_proc

[${name}]    
   bin   = /bin/TEST

This way, myProc.cfg uses the same tmp_dir defined in the default.cfg but defines the "name" and redefines bin dir.

Well, this example is very simple but I have gizillion configs that share the same lines of cfg but differ a little and I'm trying to consolidate configs.

My app is in Perl and already using AppConfig.

Thank you in advance for any help.

link|improve this question
feedback

2 Answers

YAML can handle multiple "documents" in a file. So it's possible to use YAML to separate several AppConfig documents.

I haven't done real diving into AppConfig, but something like the following should--when tuned--work.

use strict;
use warnings;

use English qw<$RS>;
use YAML qw<LoadFile>;

sub open_strings {
    my @results = map { 
        open( my $h, '<', \$_ );
        $h;
    } @_;
    return wantarray ? @results 
         : @_ == 1   ? $results[0] 
         :             \@results
         ;
}

my @cfgs 
    = map { my $c = AppConfig->new(); $c->file( $_ ); $c } 
      open_strings( LoadFile( $fh_or_fname ))
    ;

The code below shows how you can separate them up into documents, and that you might not even have to. The third document is a mapping of file to text.

--- | 

  [${name}]
     bin      = /bin/1   
     tmp_dir  = /tmp
     tmp_file = /tmp/${name}_tmp_file

--- > 

  name  = Test_proc

  [${name}]    
     bin   = /bin/TEST

---
Default.cfg : |
  [${name}]
     bin      = /bin/1   
     tmp_dir  = /tmp
     tmp_file = /tmp/${name}_tmp_file

Myproc.cfg : | 

  name  = Test_proc

  [${name}]    
     bin   = /bin/TEST
link|improve this answer
feedback

Config::General ought to be able to handle this, but if you wish to stick with AppConfig, simply create a subclass, that preprocesses the config file, by manually processing includes , say s/_my_special_include_syntax = (.+)$/IncludeThis($1)/ge; afaik, this should work without any other modifications, since last assignment wins, thus, the last assignment overrides defaults

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.