X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FAccessor%2FNative%2FWriter.pm;h=b14ab4da7a2628f0c2aadfaa1b91f2e06e576fe5;hb=5394a1c721689ae6c3168a22dd92a0499e8d9744;hp=1d124ec88e07e4867e3aa8d2c10b796381d5b09f;hpb=8044d617b558b27881c03f4cdaee0bd25f33b435;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Accessor/Native/Writer.pm b/lib/Moose/Meta/Method/Accessor/Native/Writer.pm index 1d124ec..b14ab4d 100644 --- a/lib/Moose/Meta/Method/Accessor/Native/Writer.pm +++ b/lib/Moose/Meta/Method/Accessor/Native/Writer.pm @@ -3,11 +3,17 @@ package Moose::Meta::Method::Accessor::Native::Writer; use strict; use warnings; -our $VERSION = '1.13'; +use List::MoreUtils qw( any ); + +our $VERSION = '1.15'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; -use base 'Moose::Meta::Method::Accessor::Native'; +use Moose::Role; + +with 'Moose::Meta::Method::Accessor::Native'; + +requires '_potential_value'; sub _generate_method { my $self = shift; @@ -44,13 +50,11 @@ sub _writer_core { $code .= "\n" . $self->_inline_check_lazy($inv); - my $new_value = $self->_new_value($slot_access); my $potential_value = $self->_potential_value($slot_access); - $code .= "\n" . $self->_inline_copy_value( \$potential_value ); + $code .= "\n" . $self->_inline_copy_native_value( \$potential_value ); $code .= "\n" . $self->_inline_tc_code( - $new_value, $potential_value ); @@ -61,7 +65,7 @@ sub _writer_core { $inv, $potential_value, $slot_access, - ); + ) . ';'; $code .= "\n" . $self->_inline_trigger( $inv, $slot_access, '@old' ); $code .= "\n" . $self->_return_value( $slot_access, 'for writer' ); @@ -78,7 +82,25 @@ sub _value_needs_copy { return $self->_constraint_must_be_checked; } -sub _inline_copy_value { +sub _constraint_must_be_checked { + my $self = shift; + + my $attr = $self->associated_attribute; + + return $attr->has_type_constraint + && ( !$self->_is_root_type( $attr->type_constraint ) + || ( $attr->should_coerce && $attr->type_constraint->has_coercion ) ); +} + +sub _is_root_type { + my ($self, $type) = @_; + + my $name = $type->name(); + + return any { $name eq $_ } @{ $self->root_types }; +} + +sub _inline_copy_native_value { my ( $self, $potential_ref ) = @_; return q{} unless $self->_value_needs_copy; @@ -91,7 +113,7 @@ sub _inline_copy_value { } sub _inline_tc_code { - my ( $self, $new_value, $potential_value ) = @_; + my ( $self, $potential_value ) = @_; return q{} unless $self->_constraint_must_be_checked; @@ -100,38 +122,45 @@ sub _inline_tc_code { } sub _inline_check_coercion { - die '_inline_check_coercion must be overridden by ' . ref $_[0]; + my ( $self, $value ) = @_; + + my $attr = $self->associated_attribute; + + return '' + unless $attr->should_coerce && $attr->type_constraint->has_coercion; + + # We want to break the aliasing in @_ in case the coercion tries to make a + # destructive change to an array member. + return "$value = \$type_constraint_obj->coerce($value);"; } -sub _inline_check_constraint { +override _inline_check_constraint => sub { my $self = shift; return q{} unless $self->_constraint_must_be_checked; - return $self->SUPER::_inline_check_constraint( $_[0] ); -} - -sub _constraint_must_be_checked { - die '_constraint_must_be_checked must be overridden by ' . ref $_[0]; -} + return super(); +}; sub _inline_capture_return_value { return q{} } sub _inline_set_new_value { my $self = shift; - return $self->SUPER::_inline_store(@_) - if $self->_value_needs_copy; + return $self->_inline_store(@_) + if $self->_value_needs_copy || !$self->_slot_access_can_be_inlined; return $self->_inline_optimized_set_new_value(@_); -} +}; sub _inline_optimized_set_new_value { my $self = shift; - return $self->SUPER::_inline_store(@_) + return $self->_inline_store(@_); } sub _return_value { return q{} } +no Moose::Role; + 1;