/[Frey]/trunk/lib/Frey/Config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/lib/Frey/Config.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 383 - (hide annotations)
Mon Nov 17 19:33:29 2008 UTC (15 years, 6 months ago) by dpavlin
File size: 1262 byte(s)
cleanup debug in Frey::Config and move cludge to A3C::Schema
1 dpavlin 221 package Frey::Config;
2     use Moose::Role;
3    
4 dpavlin 383 #requires 'debug';
5    
6 dpavlin 221 use YAML qw/LoadFile/;
7     use Hash::Merge qw/merge/;
8     use Data::Dump qw/dump/;
9    
10     =head1 NAME
11    
12     Frey::Config - read configuration YAML files
13    
14     =head1 SYNOPSYS
15    
16     Foo::Bar->config->{'baz'} == 42
17    
18     If C<etc/site_config.yml> or C<etc/config.yml> have:
19    
20     'Foo::Bar':
21     baz: 42
22    
23     or C<etc/Foo/Bar.yml> has
24    
25     baz: 42
26    
27     You can also force config re-load with
28    
29     Foo::Bar->load_config('custom');
30    
31     which will load C<etc/custom.yml> as most specific
32     configuration.
33    
34     =cut
35    
36     our %config;
37    
38     sub load_config {
39     my $self = shift;
40     foreach my $name ( 'config', 'site_config', ref($self), @_ ) {
41     my $path = "etc/$name.yml";
42     if ( $path =~ s{::}{/}g ) {
43     # load under Package name
44     %config = %{ merge( { ref($self) => LoadFile($path) }, \%config ) } if -e $path;
45     } else {
46     %config = %{ merge( LoadFile($path) , \%config ) } if -e $path;
47     }
48 dpavlin 383 warn "## load_config $path current config = ",dump( %config ) if $self->debug;
49 dpavlin 221 }
50     }
51    
52     sub config {
53 dpavlin 322 my ( $self, $key ) = @_;
54     $key ||= ref($self);
55 dpavlin 221 warn "## config $key" if $self->debug;
56     $self->load_config unless defined %config;
57 dpavlin 229 #confess "$key doesn't exist in config" unless defined $config{ $key };
58     return unless defined $config{ $key };
59 dpavlin 221 return $config{ $key };
60     }
61    
62     1;

  ViewVC Help
Powered by ViewVC 1.1.26