X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FObject.pm;h=4e967f66552ee0178a3f608551833d1d3e88ad0a;hb=aead17e74252e3884f9f8e39912ca98fdf4b4dd5;hp=fca74198f6908e9cb2629eafc5ce797649b72d61;hpb=6ba6d68c3a6fa915d40a0502e2b6b84a677d6579;p=gitmo%2FMoose.git diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index fca7419..4e967f6 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -3,34 +3,115 @@ package Moose::Object; use strict; use warnings; -use metaclass 'Moose::Meta::Class' => ( - ':attribute_metaclass' => 'Moose::Meta::Attribute' -); -our $VERSION = '0.02'; +use if ( not our $__mx_is_compiled ), 'Moose::Meta::Class'; +use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class'; + +our $VERSION = '0.62'; +$VERSION = eval $VERSION; +our $AUTHORITY = 'cpan:STEVAN'; sub new { - my ($class, %params) = @_; - my $self = $class->meta->new_object(%params); - $self->BUILDALL(%params); - return $self; + my $class = shift; + 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') + || $class->meta->throw_error("Single parameters to new() must be a HASH ref", data => $_[0]); + return {%{$_[0]}}; + } + else { + return {}; # FIXME this is compat behavior, but is it correct? + } + } + else { + return {@_}; + } } sub BUILDALL { - my ($self, %params) = @_; - foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) { - $method->{code}->($self, %params); - } + # NOTE: we ask Perl if we even + # need to do this first, to avoid + # extra meta level calls + return unless $_[0]->can('BUILD'); + my ($self, $params) = @_; + foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) { + $method->{code}->body->($self, $params); + } } sub DEMOLISHALL { - my $self = shift; - foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) { - $method->{code}->($self); - } + my $self = shift; + foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) { + $method->{code}->body->($self); + } } -sub DESTROY { goto &DEMOLISHALL } +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'); + # 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; +} + +# 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 appropiate see Moose::Meta::Role +sub does { + my ($self, $role_name) = @_; + my $meta = $self->meta; + (defined $role_name) + || $meta->throw_error("You much supply a role name to does()"); + foreach my $class ($meta->class_precedence_list) { + my $m = $meta->initialize($class); + return 1 + if $m->can('does_role') && $m->does_role($role_name); + } + return 0; +} + +# RANT: +# Cmon, how many times have you written +# the following code while debugging: +# +# use Data::Dumper; +# warn Dumper \%thing; +# +# It can get seriously annoying, so why +# not just do this ... +sub dump { + my $self = shift; + require Data::Dumper; + local $Data::Dumper::Maxdepth = shift if @_; + Data::Dumper::Dumper $self; +} 1; @@ -63,16 +144,42 @@ 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 -This will call every C method in the inheritance hierarchy. +This will call every C method in the inheritance hierarchy, +and pass it a hash-ref of the the C<%params> passed to C. =item B This will call every C method in the inheritance hierarchy. +=item B + +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: + + use Data::Dumper; + warn Dumper $obj; + +It can get seriously annoying, so why not just use this. + =back =head1 BUGS @@ -87,11 +194,11 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2008 by Infinity Interactive, Inc. L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -=cut \ No newline at end of file +=cut