Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Config files in CPAN modules?

by hobbs (Monk)
on Jul 24, 2006 at 18:49 UTC ( [id://563355]=note: print w/replies, xml ) Need Help??


in reply to Config files in CPAN modules?

Here's a "Clever" solution ;)
  • Define a config format that begins with "1;\n__END__\n", and continues with whatever sort of config data you like.
  • Have your users put "myapp.conf" anywhere in @INC. Optionally recognize a special environment var (say, MYAPP_HOME) to temporarily push onto @INC, just in case they don't feel like fooling around with PERL5LIB :)
  • In your code:
    { local @INC = @INC; unshift @INC, $ENV{MYAPP_HOME} if defined $ENV{MYAPP_HOME}; require 'myapp.conf'; } open my $conf, '<', $INC{'myapp.conf'} or die 'Flaming death'; 1 while <$conf> ne "__END__\n"; enjoy($conf);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://563355]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-26 00:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found