X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FSubContainer.pm;h=8472fc19b8363ec1cd4cc9a1c0a2c6308fa66c53;hb=1f90ca597beb428f6b9d9be207b097701fe36e59;hp=6f241e5860bffaeb70f3b5b7732e12de4e5cb34e;hpb=59aacfa7d98f47411ad0536e54005a996c3b5bf1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/SubContainer.pm b/lib/Catalyst/SubContainer.pm index 6f241e5..8472fc1 100644 --- a/lib/Catalyst/SubContainer.pm +++ b/lib/Catalyst/SubContainer.pm @@ -10,4 +10,32 @@ sub get_component { return $self->resolve( service => $name, parameters => { context => $args } ); } +sub get_component_regexp { + my ( $self, $c, $name, $args ) = @_; + + return + if $c->config->{disable_component_resolution_regex_fallback} && !ref $name; + + my $appclass = ref $c || $c; + my $prefix = ucfirst $self->name; + my $p = substr $prefix, 0, 1; + + my $query = ref $name ? $name : qr{$name}i; + $query =~ s/^${appclass}::($p|$prefix):://i; + + my @comps = $self->get_service_list; + my @result = map { + $self->resolve( service => $_, parameters => { context => $args } ) + } grep { m/$query/ } @comps; + + if (!ref $name && $result[0]) { + $c->log->warn( Carp::shortmess(qq(Found results for "${name}" using regexp fallback)) ); + $c->log->warn( 'Relying on the regexp fallback behavior for component resolution' ); + $c->log->warn( 'is unreliable and unsafe. You have been warned' ); + return $result[0]; + } + + return @result; +} + 1;