ea2abce6dc9a7cc26a07660ad94456a90a9bfa24
[p5sagit/Config-Any.git] / lib / Config / Any / INI.pm
1 package Config::Any::INI;
2
3 use strict;
4 use warnings;
5
6 our $MAP_SECTION_SPACE_TO_NESTED_KEY = 1;
7
8 =head1 NAME
9
10 Config::Any::INI - Load INI config files
11
12 =head1 DESCRIPTION
13
14 Loads INI files. Example:
15
16     name=TestApp
17     
18     [Controller::Foo]
19     foo=bar
20     
21     [Model::Baz]
22     qux=xyzzy
23
24 =head1 METHODS
25
26 =head2 extensions( )
27
28 return an array of valid extensions (C<ini>).
29
30 =cut
31
32 sub extensions {
33     return qw( ini );
34 }
35
36 =head2 load( $file )
37
38 Attempts to load C<$file> as an INI file.
39
40 =cut
41
42 sub load {
43     my $class = shift;
44     my $file  = shift;
45
46     require Config::Tiny;
47     my $config = Config::Tiny->read( $file );
48
49     my $main = delete $config->{ _ };
50     my $out;
51     $out->{ $_ } = $main->{ $_ } for keys %$main;
52
53     for my $k ( keys %$config ) {
54         my @keys = split /\s+/, $k if $MAP_SECTION_SPACE_TO_NESTED_KEY;
55         my $ref = $config->{ $k };
56
57         if ( @keys > 1 ) {
58             my ( $a, $b ) = @keys[ 0, 1 ];
59             $out->{ $a }->{ $b } = $ref;
60         }
61         else {
62             $out->{ $k } = $ref;
63         }
64     }
65     return $out;
66 }
67
68 =head1 PACKAGE VARIABLES
69
70 =over 4
71
72 =item $MAP_SECTION_SPACE_TO_NESTED_KEY (boolean)
73
74 This variable controls whether spaces in INI section headings will be expanded into nested hash keys.
75 e.g. it controls whether [Full Power] maps to $config->{'Full Power'} or $config->{'Full'}->{'Power'}
76
77 By default it is set to 1 (i.e. true). 
78
79 Set it to 0 to preserve literal spaces in section headings:
80
81     use Config::Any;
82     use Config::Any::INI;
83     $Config::Any::INI::MAP_SECTION_SPACE_TO_NESTED_KEY = 0;
84
85 =back
86
87 =head1 AUTHOR
88
89 =over 4 
90
91 =item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>
92
93 =item * Joel Bernstein E<lt>rataxis@cpan.orgE<gt>
94
95 =back
96
97 =head1 COPYRIGHT AND LICENSE
98
99 Copyright 2006 by Brian Cassidy, portions copyright 2006, 2007 by Joel Bernstein
100
101 This library is free software; you can redistribute it and/or modify
102 it under the same terms as Perl itself. 
103
104 =head1 SEE ALSO
105
106 =over 4 
107
108 =item * L<Catalyst>
109
110 =item * L<Config::Any>
111
112 =item * L<Config::Tiny>
113
114 =back
115
116 =cut
117
118 1;