X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FComponent.pm;h=1301fc850b8f5241cc6c1a970747e10ab1d29df2;hb=7e2ec16eafb1be1daead8ed4b975ab42b79e31cb;hp=1f1fbb509f5b6cb0930dc59f4f6c3809c7b936e5;hpb=2ef599586739f410da035904753378000a368a44;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Component.pm b/lib/Catalyst/Component.pm index 1f1fbb5..1301fc8 100644 --- a/lib/Catalyst/Component.pm +++ b/lib/Catalyst/Component.pm @@ -2,8 +2,9 @@ package Catalyst::Component; use Moose; use Class::MOP; -use MooseX::Adopt::Class::Accessor::Fast; +use Class::MOP::Object; use Catalyst::Utils; +use Class::C3::Adopt::NEXT; use MRO::Compat; use mro 'c3'; @@ -68,8 +69,6 @@ sub BUILDARGS { return $args; } -no Moose; - sub COMPONENT { my ( $self, $c ) = @_; @@ -78,8 +77,10 @@ sub COMPONENT { if( my $next = $self->next::can ){ my $class = blessed $self || $self; my ($next_package) = Class::MOP::get_code_info($next); - warn "There is a COMPONENT method resolving after Catalyst::Component in ${next_package}. This behavior is deprecated and will stop working in future releases."; - return $next->($self, $arguments); + warn "There is a COMPONENT method resolving after Catalyst::Component in ${next_package}.\n"; + warn "This behavior can no longer be supported, and so your application is probably broken.\n"; + warn "Your linearised isa hierarchy is: " . join(', ', mro::get_linear_isa($class)) . "\n"; + warn "Please see perldoc Catalyst::Upgrading for more information about this issue.\n"; } return $self->new($c, $arguments); } @@ -98,8 +99,8 @@ sub config { # work in a subclass. If we don't have the package symbol in the # current class we know we need to copy up to ours, which calling # the setter will do for us. - - unless ($self->meta->has_package_symbol('$_config')) { + my $meta = $self->Class::MOP::Object::meta(); + unless ($meta->has_package_symbol('$_config')) { $config = $self->merge_config_hashes( $config, {} ); $self->_config( $config ); @@ -120,6 +121,7 @@ sub process { . " did not override Catalyst::Component::process" ); } +no Moose; __PACKAGE__->meta->make_immutable; 1; @@ -183,11 +185,9 @@ calling code in the application rather than the component itself. L, L, L, L. -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Marcus Ramberg, C -Matt S Trout, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT