X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FMethod%2FAccessor.pm;h=5464f8f664f6bba5900619fd0e29a78a0dd223c3;hb=5e5102f19ccb1dc52b290577b0363e97dacbd5b3;hp=ac6ebcc9947f46a56993210bfb8d2258ce5f5efa;hpb=d7fe25089fe79be9d93445f25c55dfed82b11e7a;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Method/Accessor.pm b/lib/Class/MOP/Method/Accessor.pm index ac6ebcc..5464f8f 100644 --- a/lib/Class/MOP/Method/Accessor.pm +++ b/lib/Class/MOP/Method/Accessor.pm @@ -6,8 +6,9 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; +use Try::Tiny; -our $VERSION = '0.79'; +our $VERSION = '1.11'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -36,18 +37,35 @@ sub new { # needed weaken($self->{'attribute'}); - $self->initialize_body; + $self->_initialize_body; return $self; } sub _new { my $class = shift; - my $options = @_ == 1 ? $_[0] : {@_}; - $options->{is_inline} ||= 0; + return Class::MOP::Class->initialize($class)->new_object(@_) + if $class ne __PACKAGE__; - return bless $options, $class; + my $params = @_ == 1 ? $_[0] : {@_}; + + return bless { + # inherited from Class::MOP::Method + body => $params->{body}, + associated_metaclass => $params->{associated_metaclass}, + package_name => $params->{package_name}, + name => $params->{name}, + original_method => $params->{original_method}, + + # inherit from Class::MOP::Generated + is_inline => $params->{is_inline} || 0, + definition_context => $params->{definition_context}, + + # defined in this class + attribute => $params->{attribute}, + accessor_type => $params->{accessor_type}, + } => $class; } ## accessors @@ -57,149 +75,154 @@ sub accessor_type { (shift)->{'accessor_type'} } ## factory -sub initialize_body { +sub _initialize_body { my $self = shift; my $method_name = join "_" => ( - 'generate', + '_generate', $self->accessor_type, 'method', ($self->is_inline ? 'inline' : ()) ); - eval { $self->{'body'} = $self->$method_name() }; - die $@ if $@; + $self->{'body'} = $self->$method_name(); } ## generators -sub generate_accessor_method { - my $attr = (shift)->associated_attribute; +sub _generate_accessor_method { + my $self = shift; + my $attr = $self->associated_attribute; + return sub { - $attr->set_value($_[0], $_[1]) if scalar(@_) == 2; + if (@_ >= 2) { + $attr->set_value($_[0], $_[1]); + } $attr->get_value($_[0]); }; } -sub generate_reader_method { - my $attr = (shift)->associated_attribute; - return sub { - confess "Cannot assign a value to a read-only accessor" if @_ > 1; - $attr->get_value($_[0]); +sub _generate_accessor_method_inline { + my $self = shift; + my $attr = $self->associated_attribute; + + return try { + $self->_compile_code([ + 'sub {', + 'if (@_ >= 2) {', + $attr->_inline_set_value('$_[0]', '$_[1]'), + '}', + $attr->_inline_get_value('$_[0]'), + '}', + ]); + } + catch { + confess "Could not generate inline accessor because : $_"; }; } -sub generate_writer_method { - my $attr = (shift)->associated_attribute; +sub _generate_reader_method { + my $self = shift; + my $attr = $self->associated_attribute; + return sub { - $attr->set_value($_[0], $_[1]); + confess "Cannot assign a value to a read-only accessor" + if @_ > 1; + $attr->get_value($_[0]); }; } -sub generate_predicate_method { - my $attr = (shift)->associated_attribute; - return sub { - $attr->has_value($_[0]) +sub _generate_reader_method_inline { + my $self = shift; + my $attr = $self->associated_attribute; + + return try { + $self->_compile_code([ + 'sub {', + 'confess "Cannot assign a value to a read-only accessor"', + 'if @_ > 1;', + $attr->_inline_get_value('$_[0]'), + '}', + ]); + } + catch { + confess "Could not generate inline reader because : $_"; }; } -sub generate_clearer_method { - my $attr = (shift)->associated_attribute; +sub _generate_writer_method { + my $self = shift; + my $attr = $self->associated_attribute; + return sub { - $attr->clear_value($_[0]) + $attr->set_value($_[0], $_[1]); }; } -## Inline methods - - -sub generate_accessor_method_inline { - my $self = shift; - my $attr = $self->associated_attribute; - my $attr_name = $attr->name; - my $meta_instance = $attr->associated_class->instance_metaclass; - - my $code = $self->_eval_closure( - {}, - 'sub {' - . $meta_instance->inline_set_slot_value('$_[0]', $attr_name, '$_[1]') - . ' if scalar(@_) == 2; ' - . $meta_instance->inline_get_slot_value('$_[0]', $attr_name) - . '}' - ); - confess "Could not generate inline accessor because : $@" if $@; - - return $code; +sub _generate_writer_method_inline { + my $self = shift; + my $attr = $self->associated_attribute; + + return try { + $self->_compile_code([ + 'sub {', + $attr->_inline_set_value('$_[0]', '$_[1]'), + '}', + ]); + } + catch { + confess "Could not generate inline writer because : $_"; + }; } -sub generate_reader_method_inline { - my $self = shift; - my $attr = $self->associated_attribute; - my $attr_name = $attr->name; - my $meta_instance = $attr->associated_class->instance_metaclass; - - my $code = $self->_eval_closure( - {}, - 'sub {' - . 'confess "Cannot assign a value to a read-only accessor" if @_ > 1;' - . $meta_instance->inline_get_slot_value('$_[0]', $attr_name) - . '}' - ); - confess "Could not generate inline reader because : $@" if $@; +sub _generate_predicate_method { + my $self = shift; + my $attr = $self->associated_attribute; - return $code; + return sub { + $attr->has_value($_[0]) + }; } -sub generate_writer_method_inline { - my $self = shift; - my $attr = $self->associated_attribute; - my $attr_name = $attr->name; - my $meta_instance = $attr->associated_class->instance_metaclass; - - my $code = $self->_eval_closure( - {}, - 'sub {' - . $meta_instance->inline_set_slot_value('$_[0]', $attr_name, '$_[1]') - . '}' - ); - confess "Could not generate inline writer because : $@" if $@; - - return $code; +sub _generate_predicate_method_inline { + my $self = shift; + my $attr = $self->associated_attribute; + + return try { + $self->_compile_code([ + 'sub {', + $attr->_inline_has_value('$_[0]'), + '}', + ]); + } + catch { + confess "Could not generate inline predicate because : $_"; + }; } +sub _generate_clearer_method { + my $self = shift; + my $attr = $self->associated_attribute; -sub generate_predicate_method_inline { - my $self = shift; - my $attr = $self->associated_attribute; - my $attr_name = $attr->name; - my $meta_instance = $attr->associated_class->instance_metaclass; - - my $code = $self->_eval_closure( - {}, - 'sub {' - . $meta_instance->inline_is_slot_initialized('$_[0]', $attr_name) - . '}' - ); - confess "Could not generate inline predicate because : $@" if $@; - - return $code; + return sub { + $attr->clear_value($_[0]) + }; } -sub generate_clearer_method_inline { - my $self = shift; - my $attr = $self->associated_attribute; - my $attr_name = $attr->name; - my $meta_instance = $attr->associated_class->instance_metaclass; - - my $code = $self->_eval_closure( - {}, - 'sub {' - . $meta_instance->inline_deinitialize_slot('$_[0]', $attr_name) - . '}' - ); - confess "Could not generate inline clearer because : $@" if $@; - - return $code; +sub _generate_clearer_method_inline { + my $self = shift; + my $attr = $self->associated_attribute; + + return try { + $self->_compile_code([ + 'sub {', + $attr->_inline_clear_value('$_[0]'), + '}', + ]); + } + catch { + confess "Could not generate inline clearer because : $_"; + }; } 1; @@ -226,7 +249,7 @@ Class::MOP::Method::Accessor - Method Meta Object for accessors =head1 DESCRIPTION -This is a subclass of which is used by +This is a subclass of C which is used by C to generate accessor code. It handles generation of readers, writers, predicates and clearers. For each type of method, it can either create a subroutine reference, or actually @@ -295,7 +318,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006-2009 by Infinity Interactive, Inc. +Copyright 2006-2010 by Infinity Interactive, Inc. L