27512682bbb12ae7568dd1200fc44bd54b1cd27f
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / SubContainer.pm
1 package Catalyst::IOC::SubContainer;
2 use Bread::Board;
3 use Moose;
4 use Catalyst::IOC::BlockInjection;
5
6 extends 'Bread::Board::Container';
7
8 has default_component => (
9     isa => 'Str|Undef',
10     is  => 'ro',
11     required => 0,
12 );
13
14 sub get_component {
15     my ( $self, $name, @args ) = @_;
16
17     return $self->resolve(
18         service    => $name,
19         parameters => { accept_context_args => \@args },
20     );
21 }
22
23 sub get_component_regexp {
24     my ( $self, $query, $c, @args ) = @_;
25
26     my @result = map {
27         $self->get_component( $_, $c, @args )
28     } grep { m/$query/ } $self->get_service_list;
29
30     return @result;
31 }
32
33 1;
34
35 __END__
36
37 =pod
38
39 =head1 NAME
40
41 Catalyst::IOC::SubContainer - Container for models, controllers and views
42
43 =head1 METHODS
44
45 =head2 get_component
46
47 =head2 get_component_regexp
48
49 =head1 AUTHORS
50
51 Catalyst Contributors, see Catalyst.pm
52
53 =head1 COPYRIGHT
54
55 This library is free software. You can redistribute it and/or modify it under
56 the same terms as Perl itself.
57
58 =cut