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