X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FComponent.pm;h=1b601feca0d596a35097f56d5e4799f7cec98c7a;hb=c7a54b4e7f6f28245075dd165fdbf7269ffa9d59;hp=339cab8994a43c350dc3f31231f62952a7b622d4;hpb=e7f1cf73b4e0e5863e901aaa0e6bda2e39bd0edc;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Component.pm b/lib/Catalyst/Component.pm index 339cab8..1b601fe 100644 --- a/lib/Catalyst/Component.pm +++ b/lib/Catalyst/Component.pm @@ -4,7 +4,7 @@ use strict; use base qw/Class::Accessor::Fast Class::Data::Inheritable/; use NEXT; -__PACKAGE__->mk_classdata($_) for qw/_config/; +__PACKAGE__->mk_classdata($_) for qw/_config _plugins/; =head1 NAME @@ -49,9 +49,7 @@ component loader with config() support and a process() method placeholder. =head1 METHODS -=over 4 - -=item new($c) +=head2 new($c) =cut @@ -64,30 +62,56 @@ sub new { return $self->NEXT::new( { %{ $self->config }, %{$arguments} } ); } -# remember to leave blank lines between the consecutive =item's -# otherwise the pod tools don't recognize the subsequent =items +=head2 COMPONENT($c) + +=cut + +sub COMPONENT { + my ( $self, $c ) = @_; + + # Temporary fix, some components does not pass context to constructor + my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {}; + + if ( my $new = $self->NEXT::COMPONENT( $c, $arguments ) ) { + return $new; + } + else { + if ( my $new = $self->new( $c, $arguments ) ) { + return $new; + } + else { + my $class = ref $self || $self; + my $new = { %{ $self->config }, %{$arguments} }; + return bless $new, $class; + } + } +} + +# remember to leave blank lines between the consecutive =head2's +# otherwise the pod tools don't recognize the subsequent =head2s -=item $c->config +=head2 $c->config -=item $c->config($hashref) +=head2 $c->config($hashref) -=item $c->config($key, $value, ...) +=head2 $c->config($key, $value, ...) =cut sub config { my $self = shift; - $self->_config( {} ) unless $self->_config; + my $config = $self->_config; + unless ($config) { + $self->_config( $config = {} ); + } if (@_) { - my $config = @_ > 1 ? {@_} : $_[0]; - while ( my ( $key, $val ) = each %$config ) { - $self->_config->{$key} = $val; - } + $config = { %{$config}, %{@_ > 1 ? {@_} : $_[0]} }; + $self->_config($config); } - return $self->_config; + return $config; } -=item $c->process() +=head2 $c->process() =cut @@ -97,8 +121,6 @@ sub process { . " did not override Catalyst::Component::process" ); } -=back - =head1 SEE ALSO L, L, L, L.