X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FClass.pm;h=51c7d76b892178121b914c9d1caca63f94523b42;hb=e8ad67f0a28dcb7eb4550009e6ef579975ebafec;hp=ba9d417f7bc2267381cc57d27d81a7ee2b612e59;hpb=8d5287a7df12b6fb0bdff2090220684913bdad04;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index ba9d417..51c7d76 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -1,5 +1,5 @@ package Mouse::Meta::Class; -use Mouse::Util qw/:meta get_linear_isa not_supported/; # enables strict and warnings +use Mouse::Util qw/:meta/; # enables strict and warnings use Scalar::Util qw/blessed weaken/; @@ -56,16 +56,25 @@ sub superclasses { if (@_) { foreach my $super(@_){ Mouse::Util::load_class($super); - my $meta = Mouse::Util::get_metaclass_by_name($super); - next if not defined $meta; + my $meta = Mouse::Util::get_metaclass_by_name($super); + unless(defined $meta) { + # checks if $super is a foreign class (i.e. non-Mouse class) + my $mm = $super->can('meta'); + if(!($mm && $mm == \&Mouse::Util::meta)) { + if($super->can('new') or $super->can('DESTROY')) { + $self->inherit_from_foreign_class($super); + } + } + next; + } if(Mouse::Util::is_a_metarole($meta)){ $self->throw_error("You cannot inherit from a Mouse Role ($super)"); } + # checks and fixes in metaclass compatiility next if $self->isa(ref $meta); # _superclass_meta_is_compatible - $self->_reconcile_with_superclass_meta($meta); } @{ $self->{superclasses} } = @_; @@ -73,6 +82,15 @@ sub superclasses { return @{ $self->{superclasses} }; } + +sub inherit_from_foreign_class { + my($class, $super) = @_; + Carp::carp("You inherit from non-Mouse class ($super)," + . " but it is unlikely to work correctly." + . " Please concider to use MouseX::Foreign"); + return; +} + my @MetaClassTypes = ( 'attribute', # Mouse::Meta::Attribute 'method', # Mouse::Meta::Method @@ -136,7 +154,7 @@ sub _collect_roles { } -sub find_method_by_name{ +sub find_method_by_name { my($self, $method_name) = @_; defined($method_name) or $self->throw_error('You must define a method name to find'); @@ -161,14 +179,14 @@ sub get_all_method_names { $self->linearized_isa; } -sub find_attribute_by_name{ +sub find_attribute_by_name { my($self, $name) = @_; - my $attr; - foreach my $class($self->linearized_isa){ - my $meta = Mouse::Util::get_metaclass_by_name($class) or next; - $attr = $meta->get_attribute($name) and last; + defined($name) + or $self->throw_error('You must define an attribute name to find'); + foreach my $attr($self->get_all_attributes) { + return $attr if $attr->name eq $name; } - return $attr; + return undef; } sub add_attribute { @@ -213,8 +231,9 @@ sub add_attribute { $attr->install_accessors(); # then register the attribute to the metaclass - $attr->{insertion_order} = keys %{ $self->{attributes} }; - $self->{attributes}{$attr->name} = $attr; + $attr->{insertion_order} = keys %{ $self->{attributes} }; + $self->{attributes}{$name} = $attr; + delete $self->{_mouse_cache}; # clears internal cache if(!$attr->{associated_methods} && ($attr->{is} || '') ne 'bare'){ Carp::carp(qq{Attribute ($name) of class }.$self->name @@ -223,6 +242,21 @@ sub add_attribute { return $attr; } +sub _calculate_all_attributes { + my($self) = @_; + my %seen; + my @all_attrs; + foreach my $class($self->linearized_isa) { + my $meta = Mouse::Util::get_metaclass_by_name($class) or next; + my @attrs = grep { !$seen{$_->name}++ } values %{$meta->{attributes}}; + @attrs = sort { + $b->{insertion_order} <=> $a->{insertion_order} + } @attrs; + push @all_attrs, @attrs; + } + return [reverse @all_attrs]; +} + sub linearized_isa; sub new_object; @@ -257,8 +291,8 @@ sub make_immutable { ->_generate_destructor($self, \%args)); } - # Moose's make_immutable returns true allowing calling code to skip setting an explicit true value - # at the end of a source file. + # Moose's make_immutable returns true allowing calling code to skip + # setting an explicit true value at the end of a source file. return 1; } @@ -281,12 +315,15 @@ sub _install_modifier { my $modifier_table = $self->{modifiers}{$name}; if(!$modifier_table){ - my(@before, @after, @around, $cache, $modified); - - $cache = $original; - - $modified = sub { - for my $c (@before) { $c->(@_) } + my(@before, @after, @around); + my $cache = $original; + my $modified = sub { + if(@before) { + for my $c (@before) { $c->(@_) } + } + unless(@after) { + return $cache->(@_); + } if(wantarray){ # list context my @rval = $cache->(@_); @@ -424,7 +461,12 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.67 +This document describes Mouse version 0.73 + +=head1 DESCRIPTION + +This class is a meta object protocol for Mouse classes, +which is a subset of Moose::Meta:::Class. =head1 METHODS