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