X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FPurePerl.pm;h=535ec983d27f794ae67d036735b5de31eaf82e9a;hb=d6ceb359d08b474a9f0911c7d7c3fd319761b0ae;hp=085b2b41c70c00e15814514396aec5c84e459dab;hpb=1d7d294f575daea3f10963698208eb4a0b813a50;p=gitmo%2FMouse.git diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index 085b2b4..535ec98 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -270,20 +270,45 @@ sub get_all_attributes { } sub new_object { - my $self = shift; + my $meta = shift; my %args = (@_ == 1 ? %{$_[0]} : @_); - my $object = bless {}, $self->name; + my $object = bless {}, $meta->name; + + $meta->_initialize_object($object, \%args); + # BUILDALL + if( $object->can('BUILD') ) { + for my $class (reverse $meta->linearized_isa) { + my $build = Mouse::Util::get_code_ref($class, 'BUILD') + || next; - $self->_initialize_object($object, \%args); + $object->$build(\%args); + } + } return $object; } +sub clone_object { + my $class = shift; + my $object = shift; + my $args = $object->Mouse::Object::BUILDARGS(@_); + + (blessed($object) && $object->isa($class->name)) + || $class->throw_error("You must pass an instance of the metaclass (" . $class->name . "), not ($object)"); + + my $cloned = bless { %$object }, ref $object; + $class->_initialize_object($cloned, $args, 1); + + return $cloned; +} + sub _initialize_object{ my($self, $object, $args, $is_cloning) = @_; my @triggers_queue; + my $used = 0; + foreach my $attribute ($self->get_all_attributes) { my $init_arg = $attribute->init_arg; my $slot = $attribute->name; @@ -297,6 +322,7 @@ sub _initialize_object{ if ($attribute->has_trigger) { push @triggers_queue, [ $attribute->trigger, $object->{$slot} ]; } + $used++; } else { # no init arg if ($attribute->has_default || $attribute->has_builder) { @@ -319,6 +345,10 @@ sub _initialize_object{ } } + if($used < keys %{$args} && $self->strict_constructor) { + $self->_report_unknown_args([ $self->get_all_attributes ], $args); + } + if(@triggers_queue){ foreach my $trigger_and_value(@triggers_queue){ my($trigger, $value) = @{$trigger_and_value}; @@ -335,7 +365,47 @@ sub _initialize_object{ sub is_immutable { $_[0]->{is_immutable} } -sub __strict_constructor{ $_[0]->{strict_constructor} } +sub strict_constructor{ + my $self = shift; + if(@_) { + $self->{strict_constructor} = shift; + } + + foreach my $class($self->linearized_isa) { + my $meta = Mouse::Util::get_metaclass_by_name($class) + or next; + + if(exists $meta->{strict_constructor}) { + return $meta->{strict_constructor}; + } + } + + return 0; # false +} + +sub _report_unknown_args { + my($metaclass, $attrs, $args) = @_; + + my @unknowns; + my %init_args; + foreach my $attr(@{$attrs}){ + my $init_arg = $attr->init_arg; + if(defined $init_arg){ + $init_args{$init_arg}++; + } + } + + while(my $key = each %{$args}){ + if(!exists $init_args{$key}){ + push @unknowns, $key; + } + } + + $metaclass->throw_error( sprintf + "Unknown attribute passed to the constructor of %s: %s", + $metaclass->name, Mouse::Util::english_list(@unknowns), + ); +} package Mouse::Meta::Role; @@ -647,19 +717,7 @@ sub new { my $args = $class->BUILDARGS(@_); my $meta = Mouse::Meta::Class->initialize($class); - my $self = $meta->new_object($args); - - # BUILDALL - if( $self->can('BUILD') ) { - for my $class (reverse $meta->linearized_isa) { - my $build = Mouse::Util::get_code_ref($class, 'BUILD') - || next; - - $self->$build($args); - } - } - - return $self; + return $meta->new_object($args); } sub DESTROY { @@ -720,7 +778,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.57 +This document describes Mouse version 0.63 =head1 SEE ALSO