X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FClass%2FImmutable%2FTrait.pm;h=925111992dfc286c66028512e9fe17f2c05fb3b8;hb=1af3d9e7321d3d561b1c6da5c943af9a64032cee;hp=f19b6c79107e2a249a008371999f06848c161d24;hpb=db8e5eee303c3cca41c93e77065abedba9ed91fa;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Class/Immutable/Trait.pm b/lib/Class/MOP/Class/Immutable/Trait.pm index f19b6c7..9251119 100644 --- a/lib/Class/MOP/Class/Immutable/Trait.pm +++ b/lib/Class/MOP/Class/Immutable/Trait.pm @@ -8,68 +8,85 @@ use MRO::Compat; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; -our $VERSION = '0.87'; +our $VERSION = '1.00'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; # the original class of the metaclass instance -sub get_mutable_metaclass_name { $_[0]{__immutable}{original_class} } +sub _get_mutable_metaclass_name { $_[0]{__immutable}{original_class} } -sub immutable_options { %{ $_[0]{__immutable}{options} } } +sub is_mutable { 0 } +sub is_immutable { 1 } -sub is_mutable {0} -sub is_immutable {1} +sub _immutable_metaclass { ref $_[1] } sub superclasses { - confess "This method is read-only" if @_ > 1; - $_[0]->next::method; + my $orig = shift; + my $self = shift; + confess "This method is read-only" if @_; + $self->$orig; } sub _immutable_cannot_call { - Carp::confess "This method cannot be called on an immutable instance"; + my $name = shift; + Carp::confess "The '$name' method cannot be called on an immutable instance"; } -sub add_method { shift->_immutable_cannot_call } -sub alias_method { shift->_immutable_cannot_call } -sub remove_method { shift->_immutable_cannot_call } -sub add_attribute { shift->_immutable_cannot_call } -sub remove_attribute { shift->_immutable_cannot_call } -sub remove_package_symbol { shift->_immutable_cannot_call } +for my $name (qw/add_method alias_method remove_method add_attribute remove_attribute remove_package_symbol/) { + no strict 'refs'; + *{__PACKAGE__."::$name"} = sub { _immutable_cannot_call($name) }; +} sub class_precedence_list { - @{ $_[0]{__immutable}{class_precedence_list} - ||= [ shift->next::method ] }; + my $orig = shift; + my $self = shift; + @{ $self->{__immutable}{class_precedence_list} + ||= [ $self->$orig ] }; } sub linearized_isa { - @{ $_[0]{__immutable}{linearized_isa} ||= [ shift->next::method ] }; + my $orig = shift; + my $self = shift; + @{ $self->{__immutable}{linearized_isa} ||= [ $self->$orig ] }; } sub get_all_methods { - @{ $_[0]{__immutable}{get_all_methods} ||= [ shift->next::method ] }; + my $orig = shift; + my $self = shift; + @{ $self->{__immutable}{get_all_methods} ||= [ $self->$orig ] }; } sub get_all_method_names { - @{ $_[0]{__immutable}{get_all_method_names} ||= [ shift->next::method ] }; + my $orig = shift; + my $self = shift; + @{ $self->{__immutable}{get_all_method_names} ||= [ $self->$orig ] }; } sub get_all_attributes { - @{ $_[0]{__immutable}{get_all_attributes} ||= [ shift->next::method ] }; + my $orig = shift; + my $self = shift; + @{ $self->{__immutable}{get_all_attributes} ||= [ $self->$orig ] }; } sub get_meta_instance { - $_[0]{__immutable}{get_meta_instance} ||= shift->next::method; + my $orig = shift; + my $self = shift; + $self->{__immutable}{get_meta_instance} ||= $self->$orig; } -sub get_method_map { - $_[0]{__immutable}{get_method_map} ||= shift->next::method; +sub _get_method_map { + my $orig = shift; + my $self = shift; + $self->{__immutable}{_get_method_map} ||= $self->$orig; } sub add_package_symbol { + my $orig = shift; + my $self = shift; confess "Cannot add package symbols to an immutable metaclass" - unless ( caller(1) )[3] eq 'Class::MOP::Package::get_package_symbol'; + unless ( caller(3) )[3] eq 'Class::MOP::Package::get_package_symbol'; - shift->next::method(@_); + $self->$orig(@_); } 1;