X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny.pm;h=14b31a7eb5d9d4aad124bebc599b955cb2b248fa;hp=708936aa14a106c16666d96f22232158ef6040bf;hb=92c29326caaebb0ded4acf22cf92f4d6fb707eba;hpb=a918b0b8b7952db918dfabb8dc72bf34832d43d0 diff --git a/lib/Config/Any.pm b/lib/Config/Any.pm index 708936a..14b31a7 100644 --- a/lib/Config/Any.pm +++ b/lib/Config/Any.pm @@ -6,16 +6,12 @@ use warnings; use Carp; use Module::Pluggable::Object (); -our $VERSION = '0.09_01'; +our $VERSION = '0.12'; =head1 NAME Config::Any - Load configuration from different file formats, transparently -=head1 VERSION - -This document describes Config::Any version 0.09 - =head1 SYNOPSIS use Config::Any; @@ -25,7 +21,7 @@ This document describes Config::Any version 0.09 my $cfg = Config::Any->load_files({files => \@filepaths, ... }); for (@$cfg) { - my ($filename, $config) = each %$_; + my ($filename, $config) = %$_; $class->config($config); warn "loaded config from file: $filename"; } @@ -133,19 +129,20 @@ sub _load { my ( $class, $args ) = @_; croak "_load requires a arrayref of file paths" unless $args->{ files }; - if( !defined $args->{ use_ext } ) { - warn "use_ext argument was not explicitly set, as of 0.09, this is true by default"; + my $force = defined $args->{ force_plugins }; + if ( !$force and !defined $args->{ use_ext } ) { + warn + "use_ext argument was not explicitly set, as of 0.09, this is true by default"; $args->{ use_ext } = 1; } # figure out what plugins we're using - my $force = defined $args->{ force_plugins }; my @plugins = $force ? @{ $args->{ force_plugins } } : $class->plugins; # map extensions if we have to - my( %extension_lut, $extension_re ); + my ( %extension_lut, $extension_re ); my $use_ext_lut = !$force && $args->{ use_ext }; - if( $use_ext_lut ) { + if ( $use_ext_lut ) { for my $plugin ( @plugins ) { $extension_lut{ $_ } = $plugin for $plugin->extensions; } @@ -162,24 +159,28 @@ sub _load { } my @results; + warn $@ if $@; for my $filename ( @{ $args->{ files } } ) { + # don't even bother if it's not there next unless -f $filename; my @try_plugins = @plugins; - if( $use_ext_lut ) { + if ( $use_ext_lut ) { $filename =~ m{\.($extension_re)\z}; next unless $1; @try_plugins = $extension_lut{ $1 }; } for my $loader ( @try_plugins ) { - my @configs = eval { $loader->load( $filename, $loader_args{ $loader } ); }; + next unless $loader->is_supported; + my @configs + = eval { $loader->load( $filename, $loader_args{ $loader } ); }; # fatal error if we used extension matching - croak "Error parsing file: $filename" if $@ and $use_ext_lut; + croak "Error parsing $filename: $@" if $@ and $use_ext_lut; next if $@ or !@configs; # post-process config with a filter callback @@ -187,7 +188,8 @@ sub _load { $args->{ filter }->( $_ ) for @configs; } - push @results, { $filename => @configs == 1 ? $configs[ 0 ] : \@configs }; + push @results, + { $filename => @configs == 1 ? $configs[ 0 ] : \@configs }; last; } }