X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FEmulate%2FClass%2FAccessor%2FFast.pm;h=b6b4065ea53f7b124975a94f5777925667b98f8f;hb=b41ad5fb702ac48ccff6d10c6fe4bc483038d64f;hp=64955d687ea6807d8b68255917d2324a9ec8ebc8;hpb=144866f7751f8516d55c33c6de407b9086d8c3df;p=gitmo%2FMooseX-Emulate-Class-Accessor-Fast.git diff --git a/lib/MooseX/Emulate/Class/Accessor/Fast.pm b/lib/MooseX/Emulate/Class/Accessor/Fast.pm index 64955d6..b6b4065 100644 --- a/lib/MooseX/Emulate/Class/Accessor/Fast.pm +++ b/lib/MooseX/Emulate/Class/Accessor/Fast.pm @@ -1,8 +1,12 @@ package MooseX::Emulate::Class::Accessor::Fast; use Moose::Role; +use Class::MOP (); +use Scalar::Util (); -our $VERSION = '0.00300'; +use MooseX::Emulate::Class::Accessor::Fast::Meta::Accessor (); + +our $VERSION = '0.00701'; =head1 NAME @@ -67,12 +71,18 @@ store arguments in the instance hashref. =cut +my $locate_metaclass = sub { + my $class = Scalar::Util::blessed($_[0]) || $_[0]; + return Class::MOP::get_metaclass_by_name($class) + || Moose::Meta::Class->initialize($class); +}; + sub BUILD { my $self = shift; my %args; if (scalar @_ == 1 && defined $_[0] && ref($_[0]) eq 'HASH') { %args = %{$_[0]}; - } else { + } elsif( scalar(@_) ) { %args = @_; } my @extra = grep { !exists($self->{$_}) } keys %args; @@ -93,21 +103,37 @@ will be passed. Please see L for more information. sub mk_accessors{ my $self = shift; - my $meta = $self->meta; + my $meta = $locate_metaclass->($self); + my $class = $meta->name; + confess("You are trying to modify ${class}, which has been made immutable, this is ". + "not supported. Try subclassing ${class}, rather than monkeypatching it") + if $meta->is_immutable; + for my $attr_name (@_){ + $meta->remove_attribute($attr_name) + if $meta->find_attribute_by_name($attr_name); my $reader = $self->accessor_name_for($attr_name); my $writer = $self->mutator_name_for( $attr_name); + #dont overwrite existing methods - my @opts = $reader eq $writer ? - ( $self->can($reader) ? () : (accessor => $reader) ) : - ( - ( $self->can($reader) ? () : (reader => $reader) ), - ( $self->can($writer) ? () : (writer => $writer) ), - ); - $meta->add_attribute($attr_name, @opts); - - $meta->add_method("_${attr_name}_accessor", $self->can($reader) ) - if($reader eq $attr_name && !$self->can("_${attr_name}_accessor") ); + if($reader eq $writer){ + my %opts = ( $meta->has_method($reader) ? () : (accessor => $reader) ); + my $attr = $meta->find_attribute_by_name($attr_name) || $meta->add_attribute($attr_name, %opts, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ); + if($attr_name eq $reader){ + my $alias = "_${attr_name}_accessor"; + next if $meta->has_method($alias); + my @alias_method = $attr->process_accessors(accessor => $alias, 0); + $meta->add_method(@alias_method); + } + } else { + my @opts = ( $meta->has_method($writer) ? () : (writer => $writer) ); + push(@opts, (reader => $reader)) unless $meta->has_method($reader); + my $attr = $meta->find_attribute_by_name($attr_name) || $meta->add_attribute($attr_name, @opts, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ); + } } } @@ -119,13 +145,23 @@ Create read-only accessors. sub mk_ro_accessors{ my $self = shift; - my $meta = $self->meta; + my $meta = $locate_metaclass->($self); + my $class = $meta->name; + confess("You are trying to modify ${class}, which has been made immutable, this is ". + "not supported. Try subclassing ${class}, rather than monkeypatching it") + if $meta->is_immutable; for my $attr_name (@_){ + $meta->remove_attribute($attr_name) + if $meta->find_attribute_by_name($attr_name); my $reader = $self->accessor_name_for($attr_name); - $meta->add_attribute($attr_name, - $self->can($reader) ? () : (reader => $reader) ); - $meta->add_method("_${attr_name}_accessor", $meta->find_method_by_name($reader)) - if($reader eq $attr_name && !$self->can("_${attr_name}_accessor") ); + my @opts = ($meta->has_method($reader) ? () : (reader => $reader) ); + my $attr = $meta->add_attribute($attr_name, @opts, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ) if scalar(@opts); + if($reader eq $attr_name && $reader eq $self->mutator_name_for($attr_name)){ + $meta->add_method("_${attr_name}_accessor" => $attr->get_read_method_ref) + unless $meta->has_method("_${attr_name}_accessor"); + } } } @@ -138,12 +174,23 @@ Create write-only accessors. #this is retarded.. but we need it for compatibility or whatever. sub mk_wo_accessors{ my $self = shift; - my $meta = $self->meta; + my $meta = $locate_metaclass->($self); + my $class = $meta->name; + confess("You are trying to modify ${class}, which has been made immutable, this is ". + "not supported. Try subclassing ${class}, rather than monkeypatching it") + if $meta->is_immutable; for my $attr_name (@_){ + $meta->remove_attribute($attr_name) + if $meta->find_attribute_by_name($attr_name); my $writer = $self->mutator_name_for($attr_name); - $meta->add_attribute($attr_name, $self->can($writer) ? () : (writer => $writer) ); - $meta->add_method("_${attr_name}_accessor", $meta->find_method_by_name($writer)) - if($writer eq $attr_name && !$self->can("_${attr_name}_accessor") ); + my @opts = ($meta->has_method($writer) ? () : (writer => $writer) ); + my $attr = $meta->add_attribute($attr_name, @opts, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ) if scalar(@opts); + if($writer eq $attr_name && $writer eq $self->accessor_name_for($attr_name)){ + $meta->add_method("_${attr_name}_accessor" => $attr->get_write_method_ref) + unless $meta->has_method("_${attr_name}_accessor"); + } } } @@ -156,7 +203,7 @@ See original L documentation for more information. sub follow_best_practice{ my $self = shift; - my $meta = $self->meta; + my $meta = $locate_metaclass->($self); $meta->remove_method('mutator_name_for'); $meta->remove_method('accessor_name_for'); @@ -185,11 +232,11 @@ sub set{ my $self = shift; my $k = shift; confess "Wrong number of arguments received" unless scalar @_; + my $meta = $locate_metaclass->($self); - #my $writer = $self->mutator_name_for( $k ); confess "No such attribute '$k'" - unless ( my $attr = $self->meta->find_attribute_by_name($k) ); - my $writer = $attr->writer || $attr->accessor; + unless ( my $attr = $meta->find_attribute_by_name($k) ); + my $writer = $attr->get_write_method; $self->$writer(@_ > 1 ? [@_] : @_); } @@ -202,19 +249,54 @@ See original L documentation for more information. sub get{ my $self = shift; confess "Wrong number of arguments received" unless scalar @_; - + my $meta = $locate_metaclass->($self); my @values; - #while( my $attr = $self->meta->find_attribute_by_name( shift(@_) ){ + for( @_ ){ confess "No such attribute '$_'" - unless ( my $attr = $self->meta->find_attribute_by_name($_) ); - my $reader = $attr->reader || $attr->accessor; + unless ( my $attr = $meta->find_attribute_by_name($_) ); + my $reader = $attr->get_read_method; @_ > 1 ? push(@values, $self->$reader) : return $self->$reader; } return @values; } +sub make_accessor { + my($class, $field) = @_; + my $meta = $locate_metaclass->($class); + my $attr = $meta->find_attribute_by_name($field) || $meta->add_attribute($field, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ); + my $reader = $attr->get_read_method_ref; + my $writer = $attr->get_write_method_ref; + return sub { + my $self = shift; + return $reader->($self) unless @_; + return $writer->($self,(@_ > 1 ? [@_] : @_)); + } +} + + +sub make_ro_accessor { + my($class, $field) = @_; + my $meta = $locate_metaclass->($class); + my $attr = $meta->find_attribute_by_name($field) || $meta->add_attribute($field, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ); + return $attr->get_read_method_ref; +} + + +sub make_wo_accessor { + my($class, $field) = @_; + my $meta = $locate_metaclass->($class); + my $attr = $meta->find_attribute_by_name($field) || $meta->add_attribute($field, + traits => ['MooseX::Emulate::Class::Accessor::Fast::Meta::Role::Attribute'] + ); + return $attr->get_write_method_ref; +} + 1; =head2 meta @@ -228,9 +310,17 @@ See L. L, L, L, L, L, L -=head1 AUTHOR +=head1 AUTHORS + +Guillermo Roditi (groditi) Egroditi@cpan.orgE + +With contributions from: + +=over 4 + +=item Tomas Doran Ebobtfish@bobtfish.netE -Guillermo Roditi (groditi) +=back =head1 LICENSE