X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FObject.pm;h=8dc841c065553788dcad54271d7993e56dbff803;hb=75b9541431131c67521bd1ec75df80c9707bd719;hp=409db5d6ba1ca6fcd2b150d4d888205e3480ab08;hpb=9922fa6fbb2dddabc660e9e70da543e977b2d2b3;p=gitmo%2FMoose.git diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 409db5d..8dc841c 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -9,25 +9,33 @@ use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class'; use Carp 'confess'; -our $VERSION = '0.09'; +our $VERSION = '0.55_01'; +$VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; sub new { my $class = shift; - my %params; + my $params = $class->BUILDARGS(@_); + my $self = $class->meta->new_object($params); + $self->BUILDALL($params); + return $self; +} + +sub BUILDARGS { + my $class = shift; if (scalar @_ == 1) { if (defined $_[0]) { (ref($_[0]) eq 'HASH') || confess "Single parameters to new() must be a HASH ref"; - %params = %{$_[0]}; + return {%{$_[0]}}; + } + else { + return {}; # FIXME this is compat behavior, but is it correct? } - } + } else { - %params = @_; + return {@_}; } - my $self = $class->meta->new_object(%params); - $self->BUILDALL(\%params); - return $self; } sub BUILDALL { @@ -37,33 +45,56 @@ sub BUILDALL { return unless $_[0]->can('BUILD'); my ($self, $params) = @_; foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) { - $method->{code}->($self, $params); + $method->{code}->body->($self, $params); } } sub DEMOLISHALL { + my $self = shift; + foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) { + $method->{code}->body->($self); + } +} + +sub DESTROY { # NOTE: we ask Perl if we even # need to do this first, to avoid # extra meta level calls - return unless $_[0]->can('DEMOLISH'); - my $self = shift; - foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) { - $method->{code}->($self); - } + return unless $_[0]->can('DEMOLISH'); + # if we have an exception here ... + if ($@) { + # localize the $@ ... + local $@; + # run DEMOLISHALL ourselves, ... + $_[0]->DEMOLISHALL; + # and return ... + return; + } + # otherwise it is normal destruction + $_[0]->DEMOLISHALL; } -sub DESTROY { goto &DEMOLISHALL } +# support for UNIVERSAL::DOES ... +BEGIN { + my $does = UNIVERSAL->can("DOES") ? "SUPER::DOES" : "isa"; + eval 'sub DOES { + my ( $self, $class_or_role_name ) = @_; + return $self->'.$does.'($class_or_role_name) + || $self->does($class_or_role_name); + }'; +} # new does() methods will be created # as approiate see Moose::Meta::Role sub does { my ($self, $role_name) = @_; (defined $role_name) - || confess "You much supply a role name to does()"; + || confess "You must supply a role name to does()"; my $meta = $self->meta; foreach my $class ($meta->class_precedence_list) { + my $m = $meta->initialize($class); return 1 - if $meta->initialize($class)->does_role($role_name); + if $m->can('does_role') && $m->does_role($role_name); } return 0; } @@ -80,7 +111,7 @@ sub does { sub dump { my $self = shift; require Data::Dumper; - $Data::Dumper::Maxdepth = shift if @_; + local $Data::Dumper::Maxdepth = shift if @_; Data::Dumper::Dumper $self; } @@ -115,7 +146,12 @@ This will return the metaclass associated with the given class. =item B -This will create a new instance and call C. +This will call C, create a new instance and call C. + +=item B + +This method processes an argument list into a hash reference. It is used by +C. =item B @@ -131,6 +167,12 @@ This will call every C method in the inheritance hierarchy. This will check if the invocant's class C a given C<$role_name>. This is similar to C for object, but it checks the roles instead. +=item B + +A Moose Role aware implementation of L. + +C is equivalent to C or C. + =item B Cmon, how many times have you written the following code while debugging: