X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FComponent.pm;h=116aa9ad8dab10a71f01adf705a69f49d0f6502a;hp=9926298d2fef92d0c59a8f41a9d4c927786a4b32;hb=e8b9f2a92084b3b9dab6b2b879900481b8548b3b;hpb=7cd1a42bb51b6004005cbadc304b3bb5849e2a4f diff --git a/lib/Catalyst/Component.pm b/lib/Catalyst/Component.pm index 9926298..116aa9a 100644 --- a/lib/Catalyst/Component.pm +++ b/lib/Catalyst/Component.pm @@ -60,7 +60,7 @@ sub new { my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {}; return $self->NEXT::new( - $self->merge_config_hashes( $self->config, $arguments ) ); + $self->merge_config_hashes( $self->config, $arguments ) ); } sub COMPONENT { @@ -79,7 +79,7 @@ sub COMPONENT { else { my $class = ref $self || $self; my $new = $self->merge_config_hashes( - $self->config, $arguments ); + $self->config, $arguments ); return bless $new, $class; } } @@ -87,15 +87,29 @@ sub COMPONENT { sub config { my $self = shift; - my $config = $self->_config; - unless ($config) { - $self->_config( $config = {} ); - } + my $config_sub = $self->can('_config'); + my $config = $self->$config_sub() || {}; if (@_) { my $newconfig = { %{@_ > 1 ? {@_} : $_[0]} }; $self->_config( $self->merge_config_hashes( $config, $newconfig ) ); + } else { + # this is a bit of a kludge, required to make + # __PACKAGE__->config->{foo} = 'bar'; + # work in a subclass. Calling the Class::Data::Inheritable setter + # will create a new _config method in the current class if it's + # currently inherited from the superclass. So, the can() call will + # return a different subref in that case and that means we know to + # copy and reset the value stored in the class data. + + $self->_config( $config ); + + if ((my $config_sub_now = $self->can('_config')) ne $config_sub) { + + $config = $self->merge_config_hashes( $config, {} ); + $self->$config_sub_now( $config ); + } } return $config; } @@ -184,4 +198,4 @@ Matt S Trout, C This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. -=cut \ No newline at end of file +=cut