if its only used internally, it should be private
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / Container.pm
1 package Catalyst::IOC::Container;
2 use Bread::Board;
3 use Moose;
4 use Config::Any;
5 use Data::Visitor::Callback;
6 use Catalyst::Utils ();
7 use Devel::InnerPackage ();
8 use Hash::Util qw/lock_hash/;
9 use MooseX::Types::LoadableClass qw/ LoadableClass /;
10 use Moose::Util;
11 use Catalyst::IOC::BlockInjection;
12 use Catalyst::IOC::ConstructorInjection;
13 use Module::Pluggable::Object ();
14 use namespace::autoclean;
15
16 extends 'Bread::Board::Container';
17
18 has config_local_suffix => (
19     is      => 'ro',
20     isa     => 'Str',
21     default => 'local',
22 );
23
24 has driver => (
25     is      => 'ro',
26     isa     => 'HashRef',
27     default => sub { +{} },
28 );
29
30 has file => (
31     is      => 'ro',
32     isa     => 'Str',
33     default => '',
34 );
35
36 has substitutions => (
37     is      => 'ro',
38     isa     => 'HashRef',
39     default => sub { +{} },
40 );
41
42 has application_name => (
43     is       => 'ro',
44     isa      => 'Str',
45     required => 1,
46 );
47
48 has sub_container_class => (
49     isa     => LoadableClass,
50     is      => 'ro',
51     coerce  => 1,
52     default => 'Catalyst::IOC::SubContainer',
53     handles => {
54         new_sub_container => 'new',
55     }
56 );
57
58 sub BUILD {
59     my ( $self, $params ) = @_;
60
61     $self->add_service(
62         $self->${\"build_${_}_service"}
63     ) for qw/
64         substitutions
65         file
66         driver
67         application_name
68         prefix
69         extensions
70         path
71         config
72         raw_config
73         global_files
74         local_files
75         global_config
76         local_config
77         class_config
78         config_local_suffix
79         config_path
80         locate_components
81     /;
82
83     my $config = $self->resolve( service => 'config' );
84
85     # don't force default_component to be undef if the config wasn't set
86     my @default_view  = $config->{default_view}
87                       ? ( default_component => $config->{default_view} )
88                       : ( )
89                       ;
90     my @default_model = $config->{default_model}
91                       ? ( default_component => $config->{default_model} )
92                       : ( )
93                       ;
94
95     $self->add_sub_container(
96         $self->build_component_subcontainer
97     );
98
99     $self->add_sub_container(
100         $self->build_controller_subcontainer
101     );
102
103     $self->add_sub_container(
104         $self->build_view_subcontainer( @default_view )
105     );
106
107     $self->add_sub_container(
108         $self->build_model_subcontainer( @default_model )
109     );
110 }
111
112 sub build_model_subcontainer {
113     my $self = shift;
114
115     return $self->new_sub_container( @_,
116         name => 'model',
117     );
118 }
119
120 sub build_view_subcontainer {
121     my $self = shift;
122
123     return $self->new_sub_container( @_,
124         name => 'view',
125     );
126 }
127
128 sub build_controller_subcontainer {
129     my $self = shift;
130
131     return $self->new_sub_container(
132         name => 'controller',
133     );
134 }
135
136 sub build_component_subcontainer {
137     my $self = shift;
138
139     return Bread::Board::Container->new(
140         name => 'component',
141     );
142 }
143
144 sub build_application_name_service {
145     my $self = shift;
146
147     return Bread::Board::Literal->new( name => 'application_name', value => $self->application_name );
148 }
149
150 sub build_driver_service {
151     my $self = shift;
152
153     return Bread::Board::Literal->new( name => 'driver', value => $self->driver );
154 }
155
156 sub build_file_service {
157     my $self = shift;
158
159     return Bread::Board::Literal->new( name => 'file', value => $self->file );
160 }
161
162 sub build_substitutions_service {
163     my $self = shift;
164
165     return Bread::Board::Literal->new( name => 'substitutions', value => $self->substitutions );
166 }
167
168 sub build_extensions_service {
169     my $self = shift;
170
171     return Bread::Board::BlockInjection->new(
172         lifecycle => 'Singleton',
173         name => 'extensions',
174         block => sub {
175             return \@{Config::Any->extensions};
176         },
177     );
178 }
179
180 sub build_prefix_service {
181     my $self = shift;
182
183     return Bread::Board::BlockInjection->new(
184         lifecycle => 'Singleton',
185         name => 'prefix',
186         block => sub {
187             return Catalyst::Utils::appprefix( shift->param('application_name') );
188         },
189         dependencies => [ depends_on('application_name') ],
190     );
191 }
192
193 sub build_path_service {
194     my $self = shift;
195
196     return Bread::Board::BlockInjection->new(
197         lifecycle => 'Singleton',
198         name => 'path',
199         block => sub {
200             my $s = shift;
201
202             return Catalyst::Utils::env_value( $s->param('application_name'), 'CONFIG' )
203             || $s->param('file')
204             || $s->param('application_name')->path_to( $s->param('prefix') );
205         },
206         dependencies => [ depends_on('file'), depends_on('application_name'), depends_on('prefix') ],
207     );
208 }
209
210 sub build_config_service {
211     my $self = shift;
212
213     return Bread::Board::BlockInjection->new(
214         lifecycle => 'Singleton',
215         name => 'config',
216         block => sub {
217             my $s = shift;
218
219             my $v = Data::Visitor::Callback->new(
220                 plain_value => sub {
221                     return unless defined $_;
222                     return $self->_config_substitutions( $s->param('application_name'), $s->param('substitutions'), $_ );
223                 }
224
225             );
226             $v->visit( $s->param('raw_config') );
227         },
228         dependencies => [ depends_on('application_name'), depends_on('raw_config'), depends_on('substitutions') ],
229     );
230 }
231
232 sub build_raw_config_service {
233     my $self = shift;
234
235     return Bread::Board::BlockInjection->new(
236         lifecycle => 'Singleton',
237         name => 'raw_config',
238         block => sub {
239             my $s = shift;
240
241             my @global = @{$s->param('global_config')};
242             my @locals = @{$s->param('local_config')};
243
244             my $config = $s->param('class_config');
245
246             for my $cfg (@global, @locals) {
247                 for (keys %$cfg) {
248                     $config = Catalyst::Utils::merge_hashes( $config, $cfg->{$_} );
249                 }
250             }
251
252             return $config;
253         },
254         dependencies => [ depends_on('global_config'), depends_on('local_config'), depends_on('class_config') ],
255     );
256 }
257
258 sub build_global_files_service {
259     my $self = shift;
260
261     return Bread::Board::BlockInjection->new(
262         lifecycle => 'Singleton',
263         name => 'global_files',
264         block => sub {
265             my $s = shift;
266
267             my ( $path, $extension ) = @{$s->param('config_path')};
268
269             my @extensions = @{$s->param('extensions')};
270
271             my @files;
272             if ( $extension ) {
273                 die "Unable to handle files with the extension '${extension}'" unless grep { $_ eq $extension } @extensions;
274                 push @files, $path;
275             } else {
276                 @files = map { "$path.$_" } @extensions;
277             }
278             return \@files;
279         },
280         dependencies => [ depends_on('extensions'), depends_on('config_path') ],
281     );
282 }
283
284 sub build_local_files_service {
285     my $self = shift;
286
287     return Bread::Board::BlockInjection->new(
288         lifecycle => 'Singleton',
289         name => 'local_files',
290         block => sub {
291             my $s = shift;
292
293             my ( $path, $extension ) = @{$s->param('config_path')};
294             my $suffix = $s->param('config_local_suffix');
295
296             my @extensions = @{$s->param('extensions')};
297
298             my @files;
299             if ( $extension ) {
300                 die "Unable to handle files with the extension '${extension}'" unless grep { $_ eq $extension } @extensions;
301                 $path =~ s{\.$extension}{_$suffix.$extension};
302                 push @files, $path;
303             } else {
304                 @files = map { "${path}_${suffix}.$_" } @extensions;
305             }
306             return \@files;
307         },
308         dependencies => [ depends_on('extensions'), depends_on('config_path'), depends_on('config_local_suffix') ],
309     );
310 }
311
312 sub build_class_config_service {
313     my $self = shift;
314
315     return Bread::Board::BlockInjection->new(
316         lifecycle => 'Singleton',
317         name => 'class_config',
318         block => sub {
319             my $s   = shift;
320             my $app = $s->param('application_name');
321
322             # Container might be called outside Catalyst context
323             return {} unless Class::MOP::is_class_loaded($app);
324
325             # config might not have been defined
326             return $app->config || {};
327         },
328         dependencies => [ depends_on('application_name') ],
329     );
330 }
331
332 sub build_global_config_service {
333     my $self = shift;
334
335     return Bread::Board::BlockInjection->new(
336         lifecycle => 'Singleton',
337         name => 'global_config',
338         block => sub {
339             my $s = shift;
340
341             return Config::Any->load_files({
342                 files       => $s->param('global_files'),
343                 filter      => \&_fix_syntax,
344                 use_ext     => 1,
345                 driver_args => $s->param('driver'),
346             });
347         },
348         dependencies => [ depends_on('global_files') ],
349     );
350 }
351
352 sub build_local_config_service {
353     my $self = shift;
354
355     return Bread::Board::BlockInjection->new(
356         lifecycle => 'Singleton',
357         name => 'local_config',
358         block => sub {
359             my $s = shift;
360
361             return Config::Any->load_files({
362                 files       => $s->param('local_files'),
363                 filter      => \&_fix_syntax,
364                 use_ext     => 1,
365                 driver_args => $s->param('driver'),
366             });
367         },
368         dependencies => [ depends_on('local_files') ],
369     );
370 }
371
372 sub build_config_path_service {
373     my $self = shift;
374
375     return Bread::Board::BlockInjection->new(
376         lifecycle => 'Singleton',
377         name => 'config_path',
378         block => sub {
379             my $s = shift;
380
381             my $path = $s->param('path');
382             my $prefix = $s->param('prefix');
383
384             my ( $extension ) = ( $path =~ m{\.(.{1,4})$} );
385
386             if ( -d $path ) {
387                 $path =~ s{[\/\\]$}{};
388                 $path .= "/$prefix";
389             }
390
391             return [ $path, $extension ];
392         },
393         dependencies => [ depends_on('prefix'), depends_on('path') ],
394     );
395 }
396
397 sub build_config_local_suffix_service {
398     my $self = shift;
399
400     return Bread::Board::BlockInjection->new(
401         lifecycle => 'Singleton',
402         name => 'config_local_suffix',
403         block => sub {
404             my $s = shift;
405             my $suffix = Catalyst::Utils::env_value( $s->param('application_name'), 'CONFIG_LOCAL_SUFFIX' ) || $self->config_local_suffix;
406
407             return $suffix;
408         },
409         dependencies => [ depends_on('application_name') ],
410     );
411 }
412
413 sub build_locate_components_service {
414     my $self = shift;
415
416     return Bread::Board::BlockInjection->new(
417         lifecycle => 'Singleton',
418         name      => 'locate_components',
419         block     => sub {
420             my $s      = shift;
421             my $class  = $s->param('application_name');
422             my $config = $s->param('config')->{ setup_components };
423
424             Catalyst::Exception->throw(
425                 qq{You are using search_extra config option. That option is\n} .
426                 qq{deprecated, please refer to the documentation for\n} .
427                 qq{other ways of achieving the same results.\n}
428             ) if delete $config->{ search_extra };
429
430             my @paths = qw( ::Controller ::C ::Model ::M ::View ::V );
431
432             my $locator = Module::Pluggable::Object->new(
433                 search_path => [ map { s/^(?=::)/$class/; $_; } @paths ],
434                 %$config
435             );
436
437             return [ $locator->plugins ];
438         },
439         dependencies => [ depends_on('application_name'), depends_on('config') ],
440     );
441 }
442
443 sub setup_components {
444     my $self = shift;
445     my $class = $self->resolve( service => 'application_name' );
446     my @comps = @{ $self->resolve( service => 'locate_components' ) };
447     my %comps = map { $_ => 1 } @comps;
448     my $deprecatedcatalyst_component_names = 0;
449
450     for my $component ( @comps ) {
451
452         # We pass ignore_loaded here so that overlay files for (e.g.)
453         # Model::DBI::Schema sub-classes are loaded - if it's in @comps
454         # we know M::P::O found a file on disk so this is safe
455
456         Catalyst::Utils::ensure_class_loaded( $component, { ignore_loaded => 1 } );
457     }
458
459     for my $component (@comps) {
460         $self->add_component( $component );
461         # FIXME - $instance->expand_modules() is broken
462         my @expanded_components = $self->expand_component_module( $component );
463
464         if (
465             !$deprecatedcatalyst_component_names &&
466             ($deprecatedcatalyst_component_names = $component =~ m/::[CMV]::/) ||
467             ($deprecatedcatalyst_component_names = grep { /::[CMV]::/ } @expanded_components)
468         ) {
469             # FIXME - should I be calling warn here?
470             # Maybe it's time to remove it, or become fatal
471             $class->log->warn(qq{Your application is using the deprecated ::[MVC]:: type naming scheme.\n}.
472                 qq{Please switch your class names to ::Model::, ::View:: and ::Controller: as appropriate.\n}
473             );
474         }
475
476         for my $component (@expanded_components) {
477             $self->add_component( $component )
478                 unless $comps{$component};
479         }
480     }
481 }
482
483 sub _fix_syntax {
484     my $config     = shift;
485     my @components = (
486         map +{
487             prefix => $_ eq 'Component' ? '' : $_ . '::',
488             values => delete $config->{ lc $_ } || delete $config->{ $_ }
489         },
490         grep { ref $config->{ lc $_ } || ref $config->{ $_ } }
491             qw( Component Model M View V Controller C Plugin )
492     );
493
494     foreach my $comp ( @components ) {
495         my $prefix = $comp->{ prefix };
496         foreach my $element ( keys %{ $comp->{ values } } ) {
497             $config->{ "$prefix$element" } = $comp->{ values }->{ $element };
498         }
499     }
500 }
501
502 sub _config_substitutions {
503     my ( $self, $name, $subs, $arg ) = @_;
504
505     $subs->{ HOME } ||= sub { shift->path_to( '' ); };
506     $subs->{ ENV } ||=
507         sub {
508             my ( $c, $v ) = @_;
509             if (! defined($ENV{$v})) {
510                 Catalyst::Exception->throw( message =>
511                     "Missing environment variable: $v" );
512                 return "";
513             } else {
514                 return $ENV{ $v };
515             }
516         };
517     $subs->{ path_to } ||= sub { shift->path_to( @_ ); };
518     $subs->{ literal } ||= sub { return $_[ 1 ]; };
519     my $subsre = join( '|', keys %$subs );
520
521     $arg =~ s{__($subsre)(?:\((.+?)\))?__}{ $subs->{ $1 }->( $name, $2 ? split( /,/, $2 ) : () ) }eg;
522     return $arg;
523 }
524
525 sub get_component_from_sub_container {
526     my ( $self, $sub_container_name, $name, $c, @args ) = @_;
527
528     my $sub_container = $self->get_sub_container( $sub_container_name );
529
530     if (!$name) {
531         my $default = $sub_container->default_component;
532
533         return $sub_container->get_component( $default, $c, @args )
534             if $default && $sub_container->has_service( $default );
535
536         # FIXME - should I be calling $c->log->warn here?
537         # this is never a controller, so this is safe
538         $c->log->warn( "Calling \$c->$sub_container_name() is not supported unless you specify one of:" );
539         $c->log->warn( "* \$c->config(default_$sub_container_name => 'the name of the default $sub_container_name to use')" );
540         $c->log->warn( "* \$c->stash->{current_$sub_container_name} # the name of the view to use for this request" );
541         $c->log->warn( "* \$c->stash->{current_${sub_container_name}_instance} # the instance of the $sub_container_name to use for this request" );
542
543         return;
544     }
545
546     return $sub_container->get_component_regexp( $name, $c, @args )
547         if ref $name;
548
549     return $sub_container->get_component( $name, $c, @args )
550         if $sub_container->has_service( $name );
551
552     $c->log->warn(
553         "Attempted to use $sub_container_name '$name', " .
554         "but it does not exist"
555     );
556
557     return;
558 }
559
560 sub find_component {
561     my ( $self, $component, @args ) = @_;
562     my ( $type, $name ) = _get_component_type_name($component);
563     my @result;
564
565     return $self->get_component_from_sub_container(
566         $type, $name, @args
567     ) if $type;
568
569     my $query = ref $component
570               ? $component
571               : qr{^$component$}
572               ;
573
574     for my $subcontainer_name (qw/model view controller/) {
575         my $subcontainer = $self->get_sub_container( $subcontainer_name );
576         my @components   = $subcontainer->get_service_list;
577         @result          = grep { m{$component} } @components;
578
579         return map { $subcontainer->get_component( $_, @args ) } @result
580             if @result;
581     }
582
583     # one last search for things like $c->comp(qr/::M::/)
584     @result = $self->_find_component_regexp(
585         $component, @args
586     ) if !@result and ref $component;
587
588     # it expects an empty list on failed searches
589     return @result;
590 }
591
592 sub _find_component_regexp {
593     my ( $self, $component, @args ) = @_;
594     my @result;
595
596     my @components = grep { m{$component} } keys %{ $self->get_all_components };
597
598     for (@components) {
599         my ($type, $name) = _get_component_type_name($_);
600
601         push @result, $self->get_component_from_sub_container(
602             $type, $name, @args
603         ) if $type;
604     }
605
606     return @result;
607 }
608
609 sub get_all_components {
610     my $self = shift;
611     my %components;
612
613     my $container = $self->get_sub_container('component');
614
615     for my $component ($container->get_service_list) {
616         my $comp = $container->resolve(
617             service => $component
618         );
619         my $comp_name = ref $comp || $comp;
620         $components{$comp_name} = $comp;
621     }
622
623     return lock_hash %components;
624 }
625
626 sub add_component {
627     my ( $self, $component ) = @_;
628     my ( $type, $name ) = _get_component_type_name($component);
629
630     return unless $type;
631
632     my $component_service_name = "${type}_${name}";
633
634     # The 'component' sub-container will create the object, and store it's
635     # instance, which, by default, will live throughout the application.
636     # The model/view/controller sub-containers only reference the instance
637     # held in the aforementioned sub-container, and execute the ACCEPT_CONTEXT
638     # sub every time they are called, when it exists.
639     my $instance_container       = $self->get_sub_container('component');
640     my $accept_context_container = $self->get_sub_container($type);
641
642     $instance_container->add_service(
643         Catalyst::IOC::ConstructorInjection->new(
644             name      => $component_service_name,
645             class     => $component,
646             lifecycle => 'Singleton',
647             dependencies => [
648                 depends_on( '/application_name' ),
649                 depends_on( '/config' ),
650             ],
651         )
652     ) unless $instance_container->has_service( $component_service_name );
653     # ^ custom containers might have added the service already.
654     # we don't want to override that.
655
656     $accept_context_container->add_service(
657         Catalyst::IOC::BlockInjection->new(
658             name         => $name,
659             dependencies => [
660                 depends_on( "/component/$component_service_name" ),
661             ],
662             block => sub { shift->param($component_service_name) },
663         )
664     ) unless $accept_context_container->has_service( $name );
665     # ^ same as above
666 }
667
668 # FIXME: should this sub exist?
669 # should it be moved to Catalyst::Utils,
670 # or replaced by something already existing there?
671 sub _get_component_type_name {
672     my ( $component ) = @_;
673
674     my @parts = split /::/, $component;
675
676     while (scalar @parts > 1) {
677         my $type = shift @parts;
678
679         return ('controller', join '::', @parts)
680             if $type =~ /^(c|controller)$/i;
681
682         return ('model', join '::', @parts)
683             if $type =~ /^(m|model)$/i;
684
685         return ('view', join '::', @parts)
686             if $type =~ /^(v|view)$/i;
687     }
688
689     return (undef, $component);
690 }
691
692 sub expand_component_module {
693     my ( $class, $module ) = @_;
694     return Devel::InnerPackage::list_packages( $module );
695 }
696
697 1;
698
699 __END__
700
701 =pod
702
703 =head1 NAME
704
705 Catalyst::Container - IOC for Catalyst components
706
707 =head1 SYNOPSIS
708
709 =head1 DESCRIPTION
710
711 =head1 METHODS
712
713 =head1 Building Containers
714
715 =head2 build_component_subcontainer
716
717 Container that stores all components, i.e. all models, views and controllers
718 together. Each service is an instance of the actual component, and by default
719 it lives while the application is running. Retrieving components from this
720 subcontainer will instantiate the component, if it hasn't been instantiated
721 already, but will not execute ACCEPT_CONTEXT.
722
723 =head2 build_model_subcontainer
724
725 Container that stores references for all models that are inside the components
726 subcontainer. Retrieving a model triggers ACCEPT_CONTEXT, if it exists.
727
728 =head2 build_view_subcontainer
729
730 Same as L<build_model_subcontainer>, but for views.
731
732 =head2 build_controller_subcontainer
733
734 Same as L<build_model_subcontainer>, but for controllers.
735
736 =head1 Building Services
737
738 =head2 build_application_name_service
739
740 Name of the application (such as MyApp).
741
742 =head2 build_driver_service
743
744 Config options passed directly to the driver being used.
745
746 =head2 build_file_service
747
748 ?
749
750 =head2 build_substitutions_service
751
752 This method substitutes macros found with calls to a function. There are a
753 number of default macros:
754
755 =over
756
757 =item * C<__HOME__> - replaced with C<$c-E<gt>path_to('')>
758
759 =item * C<__ENV(foo)__> - replaced with the value of C<$ENV{foo}>
760
761 =item * C<__path_to(foo/bar)__> - replaced with C<$c-E<gt>path_to('foo/bar')>
762
763 =item * C<__literal(__FOO__)__> - leaves __FOO__ alone (allows you to use
764 C<__DATA__> as a config value, for example)
765
766 =back
767
768 The parameter list is split on comma (C<,>). You can override this method to
769 do your own string munging, or you can define your own macros in
770 C<< <MyApp->config( 'Plugin::ConfigLoader' => { substitutions => { ... } } ) >>.
771 Example:
772
773     MyApp->config( 'Plugin::ConfigLoader' => {
774         substitutions => {
775             baz => sub { my $c = shift; qux( @_ ); },
776         },
777     });
778
779 The above will respond to C<__baz(x,y)__> in config strings.
780
781 =head2 build_extensions_service
782
783 Config::Any's available config file extensions (e.g. xml, json, pl, etc).
784
785 =head2 build_prefix_service
786
787 The prefix, based on the application name, that will be used to lookup the
788 config files (which will be in the format $prefix.$extension). If the app is
789 MyApp::Foo, the prefix will be myapp_foo.
790
791 =head2 build_path_service
792
793 The path to the config file (or environment variable, if defined).
794
795 =head2 build_config_service
796
797 The resulting configuration for the application, after it has successfully
798 been loaded, and all substitutions have been made.
799
800 =head2 build_raw_config_service
801
802 The merge of local_config and global_config hashes, before substitutions.
803
804 =head2 build_global_files_service
805
806 Gets all files for config that don't have the local_suffix, such as myapp.conf.
807
808 =head2 build_local_files_service
809
810 Gets all files for config that have the local_suffix, such as myapp_local.conf.
811
812 =head2 build_global_config_service
813
814 Reads config from global_files.
815
816 =head2 build_local_config_service
817
818 Reads config from local_files.
819
820 =head2 build_class_config_service
821
822 Reads config set from the application's class attribute config,
823 i.e. MyApp->config( name => 'MyApp', ... )
824
825 =head2 build_config_path_service
826
827 Splits the path to the config file, and returns on array ref containing
828 the path to the config file minus the extension in the first position,
829 and the extension in the second.
830
831 =head2 build_config_local_suffix_service
832
833 Determines the suffix of files used to override the main config. By default
834 this value is C<local>, which will load C<myapp_local.conf>.  The suffix can
835 be specified in the following order of preference:
836
837 =over
838
839 =item * C<$ENV{ MYAPP_CONFIG_LOCAL_SUFFIX }>
840
841 =item * C<$ENV{ CATALYST_CONFIG_LOCAL_SUFFIX }>
842
843 =back
844
845 The first one of these values found replaces the default of C<local> in the
846 name of the local config file to be loaded.
847
848 For example, if C< $ENV{ MYAPP_CONFIG_LOCAL_SUFFIX }> is set to C<testing>,
849 ConfigLoader will try and load C<myapp_testing.conf> instead of
850 C<myapp_local.conf>.
851
852 =head2 build_locate_components_service
853
854 This method is meant to provide a list of component modules that should be
855 setup for the application.  By default, it will use L<Module::Pluggable>.
856
857 Specify a C<setup_components> config option to pass additional options directly
858 to L<Module::Pluggable>.
859
860 =head1 Other methods
861
862 =head2 get_component_from_sub_container($sub_container, $name, $c, @args)
863
864 Looks for components in a given subcontainer (such as controller, model or
865 view), and returns the searched component. If $name is undef, it returns the
866 default component (such as default_view, if $sub_container is 'view'). If
867 $name is a regexp, it returns an array of matching components. Otherwise, it
868 looks for the component with name $name.
869
870 =head2 get_all_components
871
872 Fetches all the components, in each of the sub_containers model, view and
873 controller, and returns a readonly hash. The keys are the class names, and
874 the values are the blessed objects. This is what is returned by $c->components.
875
876 =head2 add_component
877
878 Adds a component to the appropriate subcontainer. The subcontainer is guessed
879 by the component name given.
880
881 =head2 find_component
882
883 Searches for components in all containers. If $component is the full class
884 name, the subcontainer is guessed, and it gets the searched component in there.
885 Otherwise, it looks for a component with that name in all subcontainers. If
886 $component is a regexp it calls _find_component_regexp and matches all
887 components against that regexp.
888
889 =head2 expand_component_module
890
891 Components found by C<locate_components> will be passed to this method, which
892 is expected to return a list of component (package) names to be set up.
893
894 =head2 setup_components
895
896 =head1 AUTHORS
897
898 Catalyst Contributors, see Catalyst.pm
899
900 =head1 COPYRIGHT
901
902 This library is free software. You can redistribute it and/or modify it under
903 the same terms as Perl itself.
904
905 =cut