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