croak if Config::General is too old
[p5sagit/Config-Any.git] / lib / Config / Any / General.pm
CommitLineData
f0e3c221 1package Config::Any::General;
2
3use strict;
4use warnings;
82222ecc 5use Carp;
f0e3c221 6
dcfb1d1d 7use base 'Config::Any::Base';
8
f0e3c221 9=head1 NAME
10
11Config::Any::General - Load Config::General files
12
13=head1 DESCRIPTION
14
15Loads Config::General files. Example:
16
17 name = TestApp
18 <Component Controller::Foo>
19 foo bar
7adf5673 20 bar [ arrayref-value ]
f0e3c221 21 </Component>
22 <Model Baz>
23 qux xyzzy
24 </Model>
25
26=head1 METHODS
27
28=head2 extensions( )
29
30return an array of valid extensions (C<cnf>, C<conf>).
31
32=cut
33
34sub extensions {
35 return qw( cnf conf );
36}
37
38=head2 load( $file )
39
40Attempts to load C<$file> via Config::General.
41
42=cut
43
44sub load {
45 my $class = shift;
46 my $file = shift;
e0c0c283 47 my $args = shift || {};
f0e3c221 48
49 # work around bug (?) in Config::General
92a04e78 50 # return if $class->_test_perl($file);
f0e3c221 51
92a04e78 52 $args->{ -ConfigFile } = $file;
e0c0c283 53
e3c5f84b 54 require Config::General;
55
82222ecc 56 croak "Config::General 2.47 or later required"
57 unless Config::General->VERSION('2.47');
58
7adf5673 59 $args->{ -ForceArray } = 1 unless exists $args->{ -ForceArray };
60
e0c0c283 61 my $configfile = Config::General->new( %$args );
f0e3c221 62 my $config = { $configfile->getall };
92a04e78 63
f0e3c221 64 return $config;
65}
66
67# this is a bit of a hack but necessary, because Config::General is *far* too lax
68# about what it will load -- specifically, it seems to be quite happy to load a Perl
69# config file (ie, a file which is valid Perl and creates a hashref) as if it were
70# an Apache-style configuration file, presumably due to laziness on the part of the
71# developer.
72
73sub _test_perl {
92a04e78 74 my ( $class, $file ) = @_;
f0e3c221 75 my $is_perl_src;
76 eval { $is_perl_src = do "$file"; };
92a04e78 77 delete $INC{ $file }; # so we don't screw stuff later on
f0e3c221 78 return defined $is_perl_src;
79}
80
dcfb1d1d 81=head2 requires_all_of( )
72628dc7 82
dcfb1d1d 83Specifies that this module requires L<Config::General> in order to work.
72628dc7 84
85=cut
86
82222ecc 87sub requires_all_of { [ 'Config::General' ] }
72628dc7 88
f0e3c221 89=head1 AUTHOR
90
a918b0b8 91Brian Cassidy E<lt>bricas@cpan.orgE<gt>
f0e3c221 92
93=head1 CONTRIBUTORS
94
a918b0b8 95Joel Bernstein C<< <rataxis@cpan.org> >>
f0e3c221 96
97=head1 COPYRIGHT AND LICENSE
98
f07b7a17 99Copyright 2006-2010 by Brian Cassidy
f0e3c221 100
101Portions Copyright 2006 Portugal Telecom
102
103This library is free software; you can redistribute it and/or modify
104it under the same terms as Perl itself.
105
106=head1 SEE ALSO
107
108=over 4
109
110=item * L<Catalyst>
111
112=item * L<Config::Any>
113
114=item * L<Config::General>
115
116=back
117
118=cut
119
1201;
121