X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FInstance.pm;h=c82e16edf1e61c03f43ae7855b82a37c4385ff08;hb=a9f48b4b572ccf3a230f06084b27e86e44caa729;hp=be83de22525d2e043f77cd4c45dead100b8efba5;hpb=d499b013d778b1880738b23c77ccdfed44b8c568;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Instance.pm b/lib/Class/MOP/Instance.pm index be83de2..c82e16e 100644 --- a/lib/Class/MOP/Instance.pm +++ b/lib/Class/MOP/Instance.pm @@ -6,12 +6,15 @@ use warnings; use Scalar::Util 'weaken', 'blessed'; -our $VERSION = '0.92_01'; +our $VERSION = '1.11'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Object'; +# make this not a valid method name, to avoid (most) attribute conflicts +my $RESERVED_MOP_SLOT = '<>'; + sub BUILDARGS { my ($class, @args) = @_; @@ -161,6 +164,21 @@ sub is_dependent_on_superclasses { return; # for meta instances that require updates on inherited slot changes } +sub _get_mop_slot { + my ($self, $instance) = @_; + $self->get_slot_value($instance, $RESERVED_MOP_SLOT); +} + +sub _set_mop_slot { + my ($self, $instance, $value) = @_; + $self->set_slot_value($instance, $RESERVED_MOP_SLOT, $value); +} + +sub _clear_mop_slot { + my ($self, $instance) = @_; + $self->deinitialize_slot($instance, $RESERVED_MOP_SLOT); +} + # inlinable operation snippets sub is_inlinable { 1 } @@ -175,6 +193,8 @@ sub inline_slot_access { sprintf q[%s->{"%s"}], $instance, quotemeta($slot_name); } +sub inline_get_is_lvalue { 1 } + sub inline_get_slot_value { my ($self, $instance, $slot_name) = @_; $self->inline_slot_access($instance, $slot_name); @@ -214,6 +234,21 @@ sub inline_rebless_instance_structure { "bless $instance => $class_variable"; } +sub _inline_get_mop_slot { + my ($self, $instance) = @_; + $self->inline_get_slot_value($instance, $RESERVED_MOP_SLOT); +} + +sub _inline_set_mop_slot { + my ($self, $instance, $value) = @_; + $self->inline_set_slot_value($instance, $RESERVED_MOP_SLOT, $value); +} + +sub _inline_clear_mop_slot { + my ($self, $instance) = @_; + $self->inline_deinitialize_slot($instance, $RESERVED_MOP_SLOT); +} + 1; __END__ @@ -360,6 +395,11 @@ actual class name. It returns a snippet of code that creates a new object for the class. This is something like C< bless {}, $class_name >. +=item B<< $metainstance->inline_get_is_lvalue >> + +Returns whether or not C is a valid lvalue. This can be +used to do extra optimizations when generating inlined methods. + =item B<< $metainstance->inline_slot_access($instance_variable, $slot_name) >> =item B<< $metainstance->inline_get_slot_value($instance_variable, $slot_name) >> @@ -415,7 +455,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