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=8699b55fa1d3c8e0cdca4e13a61531043212423f;hp=de8f6fa105b0d98d3a7a0f3314887847098131a8;hb=5d3ad6eb7bf1f5ac814bf92e9b7098b9b650414a;hpb=d9f07dd8c98d6a34bb5d099fe6aa14b2a57558b2 diff --git a/lib/Config/Any.pm b/lib/Config/Any.pm index de8f6fa..8699b55 100644 --- a/lib/Config/Any.pm +++ b/lib/Config/Any.pm @@ -6,7 +6,7 @@ use warnings; use Carp; use Module::Pluggable::Object (); -our $VERSION = '0.13'; +our $VERSION = '0.17'; =head1 NAME @@ -142,14 +142,19 @@ sub _load { } # figure out what plugins we're using - my @plugins = $force ? @{ $args->{ force_plugins } } : $class->plugins; + my @plugins = $force + ? map { eval "require $_;"; $_; } @{ $args->{ force_plugins } } + : $class->plugins; # map extensions if we have to my ( %extension_lut, $extension_re ); my $use_ext_lut = !$force && $args->{ use_ext }; if ( $use_ext_lut ) { for my $plugin ( @plugins ) { - $extension_lut{ $_ } = $plugin for $plugin->extensions; + for ( $plugin->extensions ) { + $extension_lut{ $_ } ||= []; + push @{ $extension_lut{ $_ } }, $plugin; + } } $extension_re = join( '|', keys %extension_lut ); @@ -174,12 +179,21 @@ sub _load { if ( $use_ext_lut ) { $filename =~ m{\.($extension_re)\z}; - next unless $1; - @try_plugins = $extension_lut{ $1 }; + + if ( !$1 ) { + $filename =~ m{\.([^.]+)\z}; + croak "There are no loaders available for .${1} files"; + } + + @try_plugins = @{ $extension_lut{ $1 } }; } + # not using use_ext means we try all plugins anyway, so we'll + # ignore it for the "unsupported" error + my $supported = $use_ext_lut ? 0 : 1; for my $loader ( @try_plugins ) { next unless $loader->is_supported; + $supported = 1; my @configs = eval { $loader->load( $filename, $loader_args{ $loader } ); }; @@ -196,6 +210,12 @@ sub _load { { $filename => @configs == 1 ? $configs[ 0 ] : \@configs }; last; } + + if ( !$supported ) { + croak + "Cannot load $filename: required support modules are not available.\nPlease install " + . join( " OR ", map { _support_error( $_ ) } @try_plugins ); + } } if ( defined $args->{ flatten_to_hash } ) { @@ -206,6 +226,19 @@ sub _load { return \@results; } +sub _support_error { + my $module = shift; + if ( $module->can( 'requires_all_of' ) ) { + return join( ' and ', + map { ref $_ ? join( ' ', @$_ ) : $_ } $module->requires_all_of ); + } + if ( $module->can( 'requires_any_of' ) ) { + return 'one of ' + . join( ' or ', + map { ref $_ ? join( ' ', @$_ ) : $_ } $module->requires_any_of ); + } +} + =head2 finder( ) The C classmethod returns the @@ -219,6 +252,7 @@ sub finder { my $class = shift; my $finder = Module::Pluggable::Object->new( search_path => [ __PACKAGE__ ], + except => [ __PACKAGE__ . '::Base' ], require => 1 ); return $finder; @@ -233,7 +267,9 @@ found by L. sub plugins { my $class = shift; - return $class->finder->plugins; + + # filter out things that don't look like our plugins + return grep { $_->isa( 'Config::Any::Base' ) } $class->finder->plugins; } =head2 extensions( ) @@ -246,7 +282,8 @@ parameter to those methods. sub extensions { my $class = shift; - my @ext = map { $_->extensions } $class->plugins; + my @ext + = map { $_->extensions } $class->plugins; return wantarray ? @ext : \@ext; }