X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FAccessor.pm;h=cf72aa56d3f2cb1540ab536258a6b031ffc75034;hb=a7e9b05b9505cd4d2d642ead617de0eb7074e23f;hp=a38299917eafcadde5325de9452311a11735a852;hpb=0b26305c71e911cc79c587a8a7cda8f697c7d3ff;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Accessor.pm b/lib/Moose/Meta/Method/Accessor.pm index a382999..cf72aa5 100644 --- a/lib/Moose/Meta/Method/Accessor.pm +++ b/lib/Moose/Meta/Method/Accessor.pm @@ -6,7 +6,8 @@ use warnings; use Carp 'confess'; -our $VERSION = '0.07'; +our $VERSION = '0.55_04'; +$VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method', @@ -14,37 +15,49 @@ use base 'Moose::Meta::Method', ## Inline method generators +sub _eval_code { + my ( $self, $code ) = @_; + + # NOTE: + # set up the environment + my $attr = $self->associated_attribute; + my $attr_name = $attr->name; + + my $type_constraint_obj = $attr->type_constraint; + my $type_constraint_name = $type_constraint_obj && $type_constraint_obj->name; + my $type_constraint = $type_constraint_obj + ? $type_constraint_obj->_compiled_type_constraint + : undef; + + #warn "code for $attr_name =>\n" . $code . "\n"; + my $sub = eval $code; + confess "Could not create writer for '$attr_name' because $@ \n code: $code" if $@; + return $sub; + +} + sub generate_accessor_method_inline { my $self = $_[0]; my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $inv = '$_[0]'; my $slot_access = $self->_inline_access($inv, $attr_name); - my $value_name = $attr->should_coerce ? '$val' : '$_[1]'; + my $value_name = $self->_value_needs_copy ? '$val' : '$_[1]'; - my $code = 'sub { ' . "\n" + $self->_eval_code('sub { ' . "\n" . $self->_inline_pre_body(@_) . "\n" - . 'if (scalar(@_) == 2) {' . "\n" + . 'if (scalar(@_) >= 2) {' . "\n" + . $self->_inline_copy_value . "\n" . $self->_inline_check_required . "\n" . $self->_inline_check_coercion . "\n" . $self->_inline_check_constraint($value_name) . "\n" - . $self->_inline_store($inv, $value_name) . "\n" - . $self->_inline_trigger($inv, $value_name) . "\n" + . $self->_inline_store($inv, $value_name) . "\n" + . $self->_inline_trigger($inv, $value_name) . "\n" . ' }' . "\n" . $self->_inline_check_lazy . "\n" . $self->_inline_post_body(@_) . "\n" . 'return ' . $self->_inline_auto_deref($self->_inline_get($inv)) . "\n" - . ' }'; - - # NOTE: - # set up the environment - my $type_constraint = $attr->type_constraint - ? $attr->type_constraint->_compiled_type_constraint - : undef; - - my $sub = eval $code; - confess "Could not create accessor for '$attr_name' because $@ \n code: $code" if $@; - return $sub; + . ' }'); } sub generate_writer_method_inline { @@ -53,27 +66,18 @@ sub generate_writer_method_inline { my $attr_name = $attr->name; my $inv = '$_[0]'; my $slot_access = $self->_inline_get($inv, $attr_name); - my $value_name = $attr->should_coerce ? '$val' : '$_[1]'; + my $value_name = $self->_value_needs_copy ? '$val' : '$_[1]'; - my $code = 'sub { ' + $self->_eval_code('sub { ' . $self->_inline_pre_body(@_) + . $self->_inline_copy_value . $self->_inline_check_required . $self->_inline_check_coercion - . $self->_inline_check_constraint($value_name) - . $self->_inline_store($inv, $value_name) - . $self->_inline_post_body(@_) - . $self->_inline_trigger($inv, $value_name) - . ' }'; - - # NOTE: - # set up the environment - my $type_constraint = $attr->type_constraint - ? $attr->type_constraint->_compiled_type_constraint - : undef; - - my $sub = eval $code; - confess "Could not create writer for '$attr_name' because $@ \n code: $code" if $@; - return $sub; + . $self->_inline_check_constraint($value_name) + . $self->_inline_store($inv, $value_name) + . $self->_inline_post_body(@_) + . $self->_inline_trigger($inv, $value_name) + . ' }'); } sub generate_reader_method_inline { @@ -83,23 +87,23 @@ sub generate_reader_method_inline { my $inv = '$_[0]'; my $slot_access = $self->_inline_get($inv, $attr_name); - my $code = 'sub {' + $self->_eval_code('sub {' . $self->_inline_pre_body(@_) . 'confess "Cannot assign a value to a read-only accessor" if @_ > 1;' . $self->_inline_check_lazy . $self->_inline_post_body(@_) . 'return ' . $self->_inline_auto_deref( $slot_access ) . ';' - . '}'; + . '}'); +} - # NOTE: - # set up the environment - my $type_constraint = $attr->type_constraint - ? $attr->type_constraint->_compiled_type_constraint - : undef; +sub _inline_copy_value { + return '' unless shift->_value_needs_copy; + return 'my $val = $_[1];' +} - my $sub = eval $code; - confess "Could not create reader for '$attr_name' because $@ \n code: $code" if $@; - return $sub; +sub _value_needs_copy { + my $attr = (shift)->associated_attribute; + return $attr->should_coerce; } sub generate_reader_method { shift->generate_reader_method_inline(@_) } @@ -110,136 +114,151 @@ sub _inline_pre_body { '' } sub _inline_post_body { '' } sub _inline_check_constraint { - my ($self, $value) = @_; - - my $attr = $self->associated_attribute; - - return '' unless $attr->has_type_constraint; - - # FIXME - # This sprintf is insanely annoying, we should - # fix it someday - SL - return sprintf <<'EOF', $value, $value, $value, $value, $value, $value, $value -defined($type_constraint->(%s)) - || confess "Attribute (" . $attr->name . ") does not pass the type constraint (" - . $attr->type_constraint->name . ") with " - . (defined(%s) ? (Scalar::Util::blessed(%s) && overload::Overloaded(%s) ? overload::StrVal(%s) : %s) : "undef") - if defined(%s); + my ($self, $value) = @_; + + my $attr = $self->associated_attribute; + my $attr_name = $attr->name; + + return '' unless $attr->has_type_constraint; + + my $type_constraint_name = $attr->type_constraint->name; + + # FIXME + # This sprintf is insanely annoying, we should + # fix it someday - SL + return sprintf <<'EOF', $value, $attr_name, $value, $value, +$type_constraint->(%s) + || confess "Attribute (%s) does not pass the type constraint because: " + . $type_constraint_obj->get_message(%s); EOF } sub _inline_check_coercion { - my $attr = (shift)->associated_attribute; - - return '' unless $attr->should_coerce; - return 'my $val = $attr->type_constraint->coerce($_[1]);' + my $attr = (shift)->associated_attribute; + + return '' unless $attr->should_coerce; + return '$val = $attr->type_constraint->coerce($_[1]);' } sub _inline_check_required { - my $attr = (shift)->associated_attribute; + my $attr = (shift)->associated_attribute; - return '' unless $attr->is_required; - return 'defined($_[1]) || confess "Attribute ($attr_name) is required, so cannot be set to undef";' + my $attr_name = $attr->name; + + return '' unless $attr->is_required; + return qq{(\@_ >= 2) || confess "Attribute ($attr_name) is required, so cannot be set to undef";} # defined $_[1] is not good enough } sub _inline_check_lazy { my $self = $_[0]; my $attr = $self->associated_attribute; - return '' unless $attr->is_lazy; + return '' unless $attr->is_lazy; my $inv = '$_[0]'; my $slot_access = $self->_inline_access($inv, $attr->name); + my $slot_exists = $self->_inline_has($inv, $attr->name); - if ($attr->has_type_constraint) { - # NOTE: - # this could probably be cleaned - # up and streamlined a little more - return 'unless (' . $slot_exists . ') {' . - ' if ($attr->has_default || $attr->has_builder ) {' . - ' my $default; '. - ' $default = $attr->default(' . $inv . ') if $attr->has_default;' . - ' if ( $attr->has_builder ) { '. - ' if(my $builder = '.$inv.'->can($attr->builder)){ '. - ' $default = '.$inv.'->$builder; '. - ' } else { '. - ' confess(Scalar::Util::blessed('.$inv.')." does not support builder method \'".$attr->builder."\' for attribute \'" . $attr->name . "\'");'. - ' }'. - ' }'. - ($attr->should_coerce - ? '$default = $attr->type_constraint->coerce($default);' - : '') . - ' (defined($type_constraint->($default)))' . - ' || confess "Attribute (" . $attr->name . ") does not pass the type constraint ("' . - ' . $attr->type_constraint->name . ") with " . (defined($default) ? (Scalar::Util::blessed($default) && overload::Overloaded($default) ? overload::StrVal($default) : $default) : "undef")' . - ' if defined($default);' . - ' ' . $slot_access . ' = $default; ' . - ' }' . - ' else {' . - ' ' . $slot_access . ' = undef;' . - ' }' . - '}'; + + my $code = 'unless (' . $slot_exists . ') {' . "\n"; + if ($attr->has_type_constraint) { + if ($attr->has_default || $attr->has_builder) { + if ($attr->has_default) { + $code .= ' my $default = $attr->default(' . $inv . ');'."\n"; + } + elsif ($attr->has_builder) { + $code .= ' my $default;'."\n". + ' if(my $builder = '.$inv.'->can($attr->builder)){ '."\n". + ' $default = '.$inv.'->$builder; '. "\n } else {\n" . + ' confess(Scalar::Util::blessed('.$inv.')." does not support builder method '. + '\'".$attr->builder."\' for attribute \'" . $attr->name . "\'");'. "\n }"; + } + $code .= ' $default = $type_constraint_obj->coerce($default);'."\n" if $attr->should_coerce; + $code .= ' ($type_constraint->($default))' . + ' || confess "Attribute (" . $attr_name . ") does not pass the type constraint ("' . + ' . $type_constraint_name . ") with " . (defined($default) ? overload::StrVal($default) : "undef");' + . "\n"; + $code .= ' ' . $self->_inline_init_slot($attr, $inv, $slot_access, '$default') . "\n"; + } + else { + $code .= ' ' . $self->_inline_init_slot($attr, $inv, $slot_access, 'undef') . "\n"; } - return 'unless ( ' . $slot_exists . ') {' . - ' if ($attr->has_default) { ' . $slot_access . ' = $attr->default(' . $inv . '); }' . - ' elsif ($attr->has_builder) { '. - ' if(my $builder = '.$inv.'->can($attr->builder)){ '. - ' ' . $slot_access . ' = ' . $inv . '->$builder; '. - ' } else { '. - ' confess(Scalar::Util::blessed('.$inv.')." does not support builder method \'".$attr->builder."\' for attribute \'" . $attr->name . "\'");'. - ' }'. - ' } else { ' .$slot_access . ' = undef; } '. - '}'; + } else { + if ($attr->has_default) { + $code .= ' ' . $self->_inline_init_slot($attr, $inv, $slot_access, ('$attr->default(' . $inv . ')')) . "\n"; + } + elsif ($attr->has_builder) { + $code .= ' if (my $builder = '.$inv.'->can($attr->builder)) { ' . "\n" + . ' ' . $self->_inline_init_slot($attr, $inv, $slot_access, ($inv . '->$builder')) + . "\n } else {\n" . + ' confess(Scalar::Util::blessed('.$inv.')." does not support builder method '. + '\'".$attr->builder."\' for attribute \'" . $attr->name . "\'");'. "\n }"; + } + else { + $code .= ' ' . $self->_inline_init_slot($attr, $inv, $slot_access, 'undef') . "\n"; + } + } + $code .= "}\n"; + return $code; } +sub _inline_init_slot { + my ($self, $attr, $inv, $slot_access, $value) = @_; + if ($attr->has_initializer) { + return ('$attr->set_initial_value(' . $inv . ', ' . $value . ');'); + } + else { + return ($slot_access . ' = ' . $value . ';'); + } +} sub _inline_store { - my ($self, $instance, $value) = @_; - my $attr = $self->associated_attribute; - - my $mi = $attr->associated_class->get_meta_instance; - my $slot_name = sprintf "'%s'", $attr->slots; - + my ($self, $instance, $value) = @_; + my $attr = $self->associated_attribute; + + my $mi = $attr->associated_class->get_meta_instance; + my $slot_name = sprintf "'%s'", $attr->slots; + my $code = $mi->inline_set_slot_value($instance, $slot_name, $value) . ";"; - $code .= $mi->inline_weaken_slot_value($instance, $slot_name, $value) . ";" - if $attr->is_weak_ref; + $code .= $mi->inline_weaken_slot_value($instance, $slot_name, $value) . ";" + if $attr->is_weak_ref; return $code; } sub _inline_trigger { - my ($self, $instance, $value) = @_; - my $attr = $self->associated_attribute; - return '' unless $attr->has_trigger; - return sprintf('$attr->trigger->(%s, %s, $attr);', $instance, $value); + my ($self, $instance, $value) = @_; + my $attr = $self->associated_attribute; + return '' unless $attr->has_trigger; + return sprintf('$attr->trigger->(%s, %s, $attr);', $instance, $value); } sub _inline_get { - my ($self, $instance) = @_; - my $attr = $self->associated_attribute; - - my $mi = $attr->associated_class->get_meta_instance; - my $slot_name = sprintf "'%s'", $attr->slots; + my ($self, $instance) = @_; + my $attr = $self->associated_attribute; + + my $mi = $attr->associated_class->get_meta_instance; + my $slot_name = sprintf "'%s'", $attr->slots; return $mi->inline_get_slot_value($instance, $slot_name); } sub _inline_access { - my ($self, $instance) = @_; - my $attr = $self->associated_attribute; - - my $mi = $attr->associated_class->get_meta_instance; - my $slot_name = sprintf "'%s'", $attr->slots; + my ($self, $instance) = @_; + my $attr = $self->associated_attribute; + + my $mi = $attr->associated_class->get_meta_instance; + my $slot_name = sprintf "'%s'", $attr->slots; return $mi->inline_slot_access($instance, $slot_name); } sub _inline_has { - my ($self, $instance) = @_; - my $attr = $self->associated_attribute; - - my $mi = $attr->associated_class->get_meta_instance; - my $slot_name = sprintf "'%s'", $attr->slots; + my ($self, $instance) = @_; + my $attr = $self->associated_attribute; + + my $mi = $attr->associated_class->get_meta_instance; + my $slot_name = sprintf "'%s'", $attr->slots; return $mi->inline_is_slot_initialized($instance, $slot_name); } @@ -318,7 +337,7 @@ Yuval Kogman Enothingmuch@woobling.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006, 2007 by Infinity Interactive, Inc. +Copyright 2006-2008 by Infinity Interactive, Inc. L