X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FObject.pm;h=fe22744ab32349e1c3abcea13bd0ec880d0bb6a8;hb=1edfdf1c2c930faea9d3b5e9fed40928fec420b0;hp=3639c561f42ea7103305c7557134ec861fc551b4;hpb=e522431d8d7dfeffe645a28a045fa85fae03c8f0;p=gitmo%2FMoose.git diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 3639c56..fe22744 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -4,36 +4,86 @@ package Moose::Object; use strict; use warnings; -use metaclass 'Moose::Meta::Class' => ( - ':attribute_metaclass' => 'Moose::Meta::Attribute' -); +use Moose::Meta::Class; +use metaclass 'Moose::Meta::Class'; -our $VERSION = '0.01'; +use Carp 'confess'; + +our $VERSION = '0.09'; +our $AUTHORITY = 'cpan:STEVAN'; sub new { - my $class = shift; - my %params = @_; + my $class = shift; + my %params; + if (scalar @_ == 1) { + if (defined $_[0]) { + (ref($_[0]) eq 'HASH') + || confess "Single parameters to new() must be a HASH ref"; + %params = %{$_[0]}; + } + } + else { + %params = @_; + } my $self = $class->meta->new_object(%params); - $self->BUILDALL(%params); + $self->BUILDALL(\%params); return $self; } sub BUILDALL { - my ($self, %params) = @_; - foreach my $method ($self->meta->find_all_methods_by_name('BUILD')) { - $method->{method}->($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}->($self, $params); } } sub DEMOLISHALL { - my $self = shift; + # 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->{method}->($self); + $method->{code}->($self); } } sub DESTROY { goto &DEMOLISHALL } +# 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()"; + my $meta = $self->meta; + foreach my $class ($meta->class_precedence_list) { + return 1 + if $meta->initialize($class)->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; + $Data::Dumper::Maxdepth = shift if @_; + Data::Dumper::Dumper $self; +} + 1; __END__ @@ -44,28 +94,52 @@ __END__ Moose::Object - The base object for Moose -=head1 SYNOPSIS - =head1 DESCRIPTION +This serves as the base object for all Moose classes. Every +effort will be made to ensure that all classes which C +will inherit from this class. It provides a default constructor +and destructor, which run all the BUILD and DEMOLISH methods in +the class tree. + +You don't actually I to inherit from this in order to +use Moose though. It is just here to make life easier. + =head1 METHODS =over 4 =item B +This will return the metaclass associated with the given class. + =item B This will create a new instance and call 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 + +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 @@ -80,7 +154,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006, 2007 by Infinity Interactive, Inc. L