revert change to extensions() as we really want *all* extensions. fix 10-branches...
[p5sagit/Config-Any.git] / lib / Config / Any.pm
1 package Config::Any;
2
3 use strict;
4 use warnings;
5
6 use Carp;
7 use Module::Pluggable::Object ();
8
9 our $VERSION = '0.16';
10
11 =head1 NAME
12
13 Config::Any - Load configuration from different file formats, transparently
14
15 =head1 SYNOPSIS
16
17     use Config::Any;
18
19     my $cfg = Config::Any->load_stems({stems => \@filepath_stems, ... });
20     # or
21     my $cfg = Config::Any->load_files({files => \@filepaths, ... });
22
23     for (@$cfg) {
24         my ($filename, $config) = %$_;
25         $class->config($config);
26         warn "loaded config from file: $filename";
27     }
28
29 =head1 DESCRIPTION
30
31 L<Config::Any|Config::Any> provides a facility for Perl applications and libraries
32 to load configuration data from multiple different file formats. It supports XML, YAML,
33 JSON, Apache-style configuration, Windows INI files, and even Perl code.
34
35 The rationale for this module is as follows: Perl programs are deployed on many different
36 platforms and integrated with many different systems. Systems administrators and end 
37 users may prefer different configuration formats than the developers. The flexibility
38 inherent in a multiple format configuration loader allows different users to make 
39 different choices, without generating extra work for the developers. As a developer
40 you only need to learn a single interface to be able to use the power of different
41 configuration formats.
42
43 =head1 INTERFACE 
44
45 =cut
46
47 =head2 load_files( \%args )
48
49     Config::Any->load_files( { files => \@files } );
50     Config::Any->load_files( { files => \@files, filter  => \&filter } );
51     Config::Any->load_files( { files => \@files, use_ext => 1 } );
52     Config::Any->load_files( { files => \@files, flatten_to_hash => 1 } );
53
54 C<load_files()> attempts to load configuration from the list of files passed in
55 the C<files> parameter, if the file exists.
56
57 If the C<filter> parameter is set, it is used as a callback to modify the configuration 
58 data before it is returned. It will be passed a single hash-reference parameter which 
59 it should modify in-place.
60
61 If the C<use_ext> parameter is defined, the loader will attempt to parse the file
62 extension from each filename and will skip the file unless it matches a standard
63 extension for the loading plugins. Only plugins whose standard extensions match the
64 file extension will be used. For efficiency reasons, its use is encouraged, but
65 be aware that you will lose flexibility -- for example, a file called C<myapp.cfg> 
66 containing YAML data will not be offered to the YAML plugin, whereas C<myapp.yml>
67 or C<myapp.yaml> would be.
68
69 When the C<flatten_to_hash> parameter is defined, the loader will return a hash
70 keyed on the file names, as opposed to the usual list of single-key hashes.
71
72 C<load_files()> also supports a 'force_plugins' parameter, whose value should be an
73 arrayref of plugin names like C<Config::Any::INI>. Its intended use is to allow the use 
74 of a non-standard file extension while forcing it to be offered to a particular parser.
75 It is not compatible with 'use_ext'. 
76
77 You can supply a C<driver_args> hashref to pass special options to a particular
78 parser object. Example:
79
80     Config::Any->load_files( { files => \@files, driver_args => {
81         General => { -LowerCaseNames => 1 }
82     } )
83
84 =cut
85
86 sub load_files {
87     my ( $class, $args ) = @_;
88
89     unless ( $args && exists $args->{ files } ) {
90         warn "No files specified!";
91         return;
92     }
93
94     return $class->_load( $args );
95 }
96
97 =head2 load_stems( \%args )
98
99     Config::Any->load_stems( { stems => \@stems } );
100     Config::Any->load_stems( { stems => \@stems, filter  => \&filter } );
101     Config::Any->load_stems( { stems => \@stems, use_ext => 1 } );
102     Config::Any->load_stems( { stems => \@stems, flatten_to_hash => 1 } );
103
104 C<load_stems()> attempts to load configuration from a list of files which it generates
105 by combining the filename stems list passed in the C<stems> parameter with the 
106 potential filename extensions from each loader, which you can check with the
107 C<extensions()> classmethod described below. Once this list of possible filenames is
108 built it is treated exactly as in C<load_files()> above, as which it takes the same
109 parameters. Please read the C<load_files()> documentation before using this method.
110
111 =cut
112
113 sub load_stems {
114     my ( $class, $args ) = @_;
115
116     unless ( $args && exists $args->{ stems } ) {
117         warn "No stems specified!";
118         return;
119     }
120
121     my $stems = delete $args->{ stems };
122     my @files;
123     for my $s ( @$stems ) {
124         for my $ext ( $class->extensions ) {
125             push @files, "$s.$ext";
126         }
127     }
128
129     $args->{ files } = \@files;
130     return $class->_load( $args );
131 }
132
133 sub _load {
134     my ( $class, $args ) = @_;
135     croak "_load requires a arrayref of file paths" unless $args->{ files };
136
137     my $force = defined $args->{ force_plugins };
138     if ( !$force and !defined $args->{ use_ext } ) {
139         warn
140             "use_ext argument was not explicitly set, as of 0.09, this is true by default";
141         $args->{ use_ext } = 1;
142     }
143
144     # figure out what plugins we're using
145     my @plugins = $force ? @{ $args->{ force_plugins } } : $class->plugins;
146
147     # map extensions if we have to
148     my ( %extension_lut, $extension_re );
149     my $use_ext_lut = !$force && $args->{ use_ext };
150     if ( $use_ext_lut ) {
151         for my $plugin ( @plugins ) {
152             for ( $plugin->extensions ) {
153                 $extension_lut{ $_ } ||= [];
154                 push @{ $extension_lut{ $_ } }, $plugin;
155             }
156         }
157
158         $extension_re = join( '|', keys %extension_lut );
159     }
160
161     # map args to plugins
162     my $base_class = __PACKAGE__;
163     my %loader_args;
164     for my $plugin ( @plugins ) {
165         $plugin =~ m{^$base_class\::(.+)};
166         $loader_args{ $plugin } = $args->{ driver_args }->{ $1 } || {};
167     }
168
169     my @results;
170
171     for my $filename ( @{ $args->{ files } } ) {
172
173         # don't even bother if it's not there
174         next unless -f $filename;
175
176         my @try_plugins = @plugins;
177
178         if ( $use_ext_lut ) {
179             $filename =~ m{\.($extension_re)\z};
180
181             if ( !$1 ) {
182                 $filename =~ m{\.([^.]+)\z};
183                 croak "There are no loaders available for .${1} files";
184             }
185
186             @try_plugins = @{ $extension_lut{ $1 } };
187         }
188
189         # not using use_ext means we try all plugins anyway, so we'll
190         # ignore it for the "unsupported" error
191         my $supported = $use_ext_lut ? 0 : 1;
192         for my $loader ( @try_plugins ) {
193             next unless $loader->is_supported;
194             $supported = 1;
195             my @configs
196                 = eval { $loader->load( $filename, $loader_args{ $loader } ); };
197
198             # fatal error if we used extension matching
199             croak "Error parsing $filename: $@" if $@ and $use_ext_lut;
200             next if $@ or !@configs;
201
202             # post-process config with a filter callback
203             if ( $args->{ filter } ) {
204                 $args->{ filter }->( $_ ) for @configs;
205             }
206
207             push @results,
208                 { $filename => @configs == 1 ? $configs[ 0 ] : \@configs };
209             last;
210         }
211
212         if ( !$supported ) {
213             croak
214                 "Cannot load $filename: required support modules are not available.\nPlease install "
215                 . join( " OR ", map { _support_error( $_ ) } @try_plugins );
216         }
217     }
218
219     if ( defined $args->{ flatten_to_hash } ) {
220         my %flattened = map { %$_ } @results;
221         return \%flattened;
222     }
223
224     return \@results;
225 }
226
227 sub _support_error {
228     my $module = shift;
229     if ( $module->can( 'requires_all_of' ) ) {
230         return join( ' and ',
231             map { ref $_ ? join( ' ', @$_ ) : $_ } $module->requires_all_of );
232     }
233     if ( $module->can( 'requires_any_of' ) ) {
234         return 'one of '
235             . join( ' or ',
236             map { ref $_ ? join( ' ', @$_ ) : $_ } $module->requires_any_of );
237     }
238 }
239
240 =head2 finder( )
241
242 The C<finder()> classmethod returns the 
243 L<Module::Pluggable::Object|Module::Pluggable::Object>
244 object which is used to load the plugins. See the documentation for that module for
245 more information.
246
247 =cut
248
249 sub finder {
250     my $class  = shift;
251     my $finder = Module::Pluggable::Object->new(
252         search_path => [ __PACKAGE__ ],
253         except      => [ __PACKAGE__ . '::Base' ],
254         require     => 1
255     );
256     return $finder;
257 }
258
259 =head2 plugins( )
260
261 The C<plugins()> classmethod returns the names of configuration loading plugins as 
262 found by L<Module::Pluggable::Object|Module::Pluggable::Object>.
263
264 =cut
265
266 sub plugins {
267     my $class = shift;
268
269     # filter out things that don't look like our plugins
270     return grep { $_->isa( 'Config::Any::Base' ) } $class->finder->plugins;
271 }
272
273 =head2 extensions( )
274
275 The C<extensions()> classmethod returns the possible file extensions which can be loaded
276 by C<load_stems()> and C<load_files()>. This may be useful if you set the C<use_ext>
277 parameter to those methods.
278
279 =cut
280
281 sub extensions {
282     my $class = shift;
283     my @ext
284         = map { $_->extensions } $class->plugins;
285     return wantarray ? @ext : \@ext;
286 }
287
288 =head1 DIAGNOSTICS
289
290 =over
291
292 =item C<No files specified!> or C<No stems specified!>
293
294 The C<load_files()> and C<load_stems()> methods will issue this warning if
295 called with an empty list of files/stems to load.
296
297 =item C<_load requires a arrayref of file paths>
298
299 This fatal error will be thrown by the internal C<_load> method. It should not occur
300 but is specified here for completeness. If your code dies with this error, please
301 email a failing test case to the authors below.
302
303 =back
304
305 =head1 CONFIGURATION AND ENVIRONMENT
306
307 Config::Any requires no configuration files or environment variables.
308
309 =head1 DEPENDENCIES
310
311 L<Module::Pluggable|Module::Pluggable>
312
313 And at least one of the following:
314 L<Config::General|Config::General>
315 L<Config::Tiny|Config::Tiny>
316 L<JSON|JSON>
317 L<YAML|YAML>
318 L<JSON::Syck|JSON::Syck>
319 L<YAML::Syck|YAML::Syck>
320 L<XML::Simple|XML::Simple>
321
322 =head1 INCOMPATIBILITIES
323
324 None reported.
325
326 =head1 BUGS AND LIMITATIONS
327
328 No bugs have been reported.
329
330 Please report any bugs or feature requests to
331 C<bug-config-any@rt.cpan.org>, or through the web interface at
332 L<http://rt.cpan.org>.
333
334 =head1 AUTHOR
335
336 Joel Bernstein E<lt>rataxis@cpan.orgE<gt>
337
338 =head1 CONTRIBUTORS
339
340 This module was based on the original 
341 L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader>
342 module by Brian Cassidy C<< <bricas@cpan.org> >>.
343
344 With ideas and support from Matt S Trout C<< <mst@shadowcatsystems.co.uk> >>.
345
346 Further enhancements suggested by Evan Kaufman C<< <evank@cpan.org> >>.
347
348 =head1 LICENCE AND COPYRIGHT
349
350 Copyright (c) 2006, Portugal Telecom C<< http://www.sapo.pt/ >>. All rights reserved.
351 Portions copyright 2007, Joel Bernstein C<< <rataxis@cpan.org> >>.
352
353 This module is free software; you can redistribute it and/or
354 modify it under the same terms as Perl itself. See L<perlartistic>.
355
356 =head1 DISCLAIMER OF WARRANTY
357
358 BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
359 FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
360 OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
361 PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
362 EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
363 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
364 ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
365 YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
366 NECESSARY SERVICING, REPAIR, OR CORRECTION.
367
368 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
369 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
370 REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE
371 LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL,
372 OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
373 THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
374 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
375 FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
376 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
377 SUCH DAMAGES.
378
379 =head1 SEE ALSO
380
381 L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader> 
382 -- now a wrapper around this module.
383
384 =cut
385
386 "Drink more beer";