X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FIOC%2FContainer.pm;h=93c6110212d5dcddabed2298b2e12cd23002e690;hb=41c0e09a56ab8ea4cc2dc249e7989101169189d0;hp=a1ca69a3359b6f3b51a32455e6dc406b3c123273;hpb=8697f11669be14108294ead3f14bbf4054fa7210;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/IOC/Container.pm b/lib/Catalyst/IOC/Container.pm index a1ca69a..93c6110 100644 --- a/lib/Catalyst/IOC/Container.pm +++ b/lib/Catalyst/IOC/Container.pm @@ -4,10 +4,12 @@ use Moose; use Config::Any; use Data::Visitor::Callback; use Catalyst::Utils (); +use List::Util qw(first); use Devel::InnerPackage (); use Hash::Util qw/lock_hash/; use MooseX::Types::LoadableClass qw/ LoadableClass /; use Moose::Util; +use Scalar::Util qw/refaddr/; use Catalyst::IOC::BlockInjection; use Catalyst::IOC::ConstructorInjection; use Module::Pluggable::Object (); @@ -82,6 +84,16 @@ sub BUILD { my $config = $self->resolve( service => 'config' ); + # don't force default_component to be undef if the config wasn't set + my @default_view = $config->{default_view} + ? ( default_component => $config->{default_view} ) + : ( ) + ; + my @default_model = $config->{default_model} + ? ( default_component => $config->{default_model} ) + : ( ) + ; + $self->add_sub_container( $self->build_component_subcontainer ); @@ -91,16 +103,20 @@ sub BUILD { ); $self->add_sub_container( - $self->build_view_subcontainer( - default_component => $config->{default_view}, - ) + $self->build_view_subcontainer( @default_view ) ); $self->add_sub_container( - $self->build_model_subcontainer( - default_component => $config->{default_model}, - ) + $self->build_model_subcontainer( @default_model ) ); + + { + no strict 'refs'; + no warnings 'once'; + my $class = ref $self; + ${ $class . '::customise_container' }->($self) + if ${ $class . '::customise_container' }; + } } sub build_model_subcontainer { @@ -441,6 +457,21 @@ sub setup_components { my %comps = map { $_ => 1 } @comps; my $deprecatedcatalyst_component_names = 0; + my $app_locate_components_addr = refaddr( + $class->can('locate_components') + ); + my $cat_locate_components_addr = refaddr( + Catalyst->can('locate_components') + ); + + if ($app_locate_components_addr != $cat_locate_components_addr) { + # FIXME - why not just say: @comps = $class->locate_components() ? + $class->log->warn(qq{You have overridden locate_components. That } . + qq{no longer works. Please refer to the documentation to achieve } . + qq{similar results.\n} + ); + } + for my $component ( @comps ) { # We pass ignore_loaded here so that overlay files for (e.g.) @@ -575,7 +606,7 @@ sub find_component { } # one last search for things like $c->comp(qr/::M::/) - @result = $self->find_component_regexp( + @result = $self->_find_component_regexp( $component, @args ) if !@result and ref $component; @@ -583,17 +614,17 @@ sub find_component { return @result; } -sub find_component_regexp { - my ( $self, $component, @args ) = @_; +sub _find_component_regexp { + my ( $self, $component, $ctx, @args ) = @_; my @result; - my @components = grep { m{$component} } keys %{ $self->get_all_components }; + my @components = grep { m{$component} } keys %{ $self->get_all_components($ctx) }; for (@components) { my ($type, $name) = _get_component_type_name($_); push @result, $self->get_component_from_sub_container( - $type, $name, @args + $type, $name, $ctx, @args ) if $type; } @@ -601,17 +632,23 @@ sub find_component_regexp { } sub get_all_components { - my $self = shift; + my ($self, $class) = @_; my %components; - my $container = $self->get_sub_container('component'); + # FIXME - if we're getting from these containers, we need to either: + # - pass 'ctx' and 'accept_context_args' OR + # - make these params optional + # big problem when setting up the dispatcher - this method is called + # as $container->get_all_components('MyApp'). What to do with Request + # life cycles? + foreach my $type (qw/model view controller /) { + my $container = $self->get_sub_container($type); - for my $component ($container->get_service_list) { - my $comp = $container->resolve( - service => $component - ); - my $comp_name = ref $comp || $comp; - $components{$comp_name} = $comp; + for my $component ($container->get_service_list) { + my $comp_service = $container->get_service($component); + + $components{$comp_service->catalyst_component_name} = $comp_service->get(ctx => $class); + } } return lock_hash %components; @@ -623,8 +660,6 @@ sub add_component { return unless $type; - my $component_service_name = "${type}_${name}"; - # The 'component' sub-container will create the object, and store it's # instance, which, by default, will live throughout the application. # The model/view/controller sub-containers only reference the instance @@ -633,30 +668,34 @@ sub add_component { my $instance_container = $self->get_sub_container('component'); my $accept_context_container = $self->get_sub_container($type); + # Custom containers might have added the service already + # We don't want to override that + return if $accept_context_container->has_service( $name ); + + my $component_service_name = "${type}_${name}"; + $instance_container->add_service( Catalyst::IOC::ConstructorInjection->new( name => $component_service_name, + catalyst_component_name => $component, class => $component, lifecycle => 'Singleton', dependencies => [ depends_on( '/application_name' ), - depends_on( '/config' ), ], ) - ) unless $instance_container->has_service( $component_service_name ); - # ^ custom containers might have added the service already. - # we don't want to override that. + ); $accept_context_container->add_service( Catalyst::IOC::BlockInjection->new( name => $name, + catalyst_component_name => $component, dependencies => [ depends_on( "/component/$component_service_name" ), ], block => sub { shift->param($component_service_name) }, ) - ) unless $accept_context_container->has_service( $name ); - # ^ same as above + ); } # FIXME: should this sub exist? @@ -664,21 +703,16 @@ sub add_component { # or replaced by something already existing there? sub _get_component_type_name { my ( $component ) = @_; + my $result; - my @parts = split /::/, $component; - - while (my $type = shift @parts) { - return ('controller', join '::', @parts) - if $type =~ /^(c|controller)$/i; - - return ('model', join '::', @parts) - if $type =~ /^(m|model)$/i; - - return ('view', join '::', @parts) - if $type =~ /^(v|view)$/i; + while ( !$result and (my $index = index $component, '::') > 0 ) { + my $type = lc substr $component, 0, $index; + $component = substr $component, $index + 2; + $result = first { $type eq $_ or $type eq substr($_, 0, 1) } + qw{ model view controller }; } - return (undef, $component); + return ($result, $component); } sub expand_component_module { @@ -702,7 +736,7 @@ Catalyst::Container - IOC for Catalyst components =head1 METHODS -=head1 Building Containers +=head1 Methods for Building Containers =head2 build_component_subcontainer @@ -725,7 +759,7 @@ Same as L, but for views. Same as L, but for controllers. -=head1 Building Services +=head1 Methods for Building Services =head2 build_application_name_service @@ -859,12 +893,6 @@ 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. -=head2 get_components_names_types - -Gets all components from all containers and returns them as an array of -arrayrefs containing the component name and the component type (i.e., whether -it's an instance or a class). - =head2 get_all_components Fetches all the components, in each of the sub_containers model, view and @@ -881,12 +909,8 @@ by the component name given. Searches 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. - -=head2 find_component_regexp - -Finds components that match a given regexp. Used internally, by find_component. +$component is a regexp it calls _find_component_regexp and matches all +components against that regexp. =head2 expand_component_module @@ -895,6 +919,9 @@ is expected to return a list of component (package) names to be set up. =head2 setup_components +Uses locate_components service to list the components, and adds them to the +appropriate subcontainers, using add_component(). + =head1 AUTHORS Catalyst Contributors, see Catalyst.pm