App::Conf::File

App::Conf::File is a Perl module to load and access configuration data.
Download

App::Conf::File Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Stephen Adkins
  • Publisher web site:
  • http://search.cpan.org/~spadkins/

App::Conf::File Tags


App::Conf::File Description

App::Conf::File is a Perl module to load and access configuration data. App::Conf::File is a Perl module to load and access configuration data.SYNOPSIS use App::Conf; $config = App::Conf->new(); $config = App::Conf->new(configFile => $file); print $config->dump(), "n"; # use Data::Dumper to spit out the Perl representation # accessors $property_value = $config->get($property_name); $branch = $config->get_branch($branch_name); # get hashref of properties # on-demand loading helper methods (private methods) $config->overlay($config2); # merge the two config structures using overlay rules $config->overlay($config1, $config2); # merge $config2 onto $config1 $config->graft($branch_name, $config2); # graft new config structure onto branch # By convention, the configurations for each App-Context service will be located # two levels under the hash ref as shown. $config->{Conf} # config settings for all Conf services $config->{Conf}{default} # config settings for the default Conf service $config->{Security} # config settings for all Security services $config->{Security}{default} # config settings for the default Security service $config->{Template}{tt} # config settings for the Template service named "tt" # The default driver (if "configClass" not supplied) reads in a Perl # data structure from the file. Alternate drivers can read a Storable, # unvalidated XML, DTD-validated XML, RDF-validated XML, or any other # file format or data source anyone cares to write a driver for. $conf = { 'Standard' => { 'Log-Dispatch' => { 'logdir' => '/var/p5ee', } }, 'Authen' => { 'passwd' => '/etc/passwd', 'seed' => '303292', }, }; # A comparable unvalidating XML file would look like this. < conf> < Standard> < Log-Dispatch logdir="/var/p5ee"/> < /Standard> < Authen passwd="/etc/passwd" seed="303292"/> < /conf> # A comparable ini file (.ini) would look like this. logdir = /var/p5ee passwd = /etc/passwd seed = 303292 # A comparable Java properties-like file would look like this. Standard.Log-Dispatch.logdir = /var/p5ee Authen.passwd = /etc/passwd Authen.seed = 303292 Requirements: · Perl


App::Conf::File Related Software