From: gfx Date: Sat, 13 Feb 2010 07:29:34 +0000 (+0900) Subject: Mouse::Meta::Attribute->new warns about unknown, or misspelled, arguments (compat... X-Git-Tag: 0.50_01~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=7d2a0f10529e2effdb18d9f85a157700bf6236a7 Mouse::Meta::Attribute->new warns about unknown, or misspelled, arguments (compat to Moose 0.84) --- diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 0624a57..c1cb2fe 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -5,6 +5,44 @@ use Carp (); use Mouse::Meta::TypeConstraint; +my %valid_options = map { $_ => undef } ( + 'accessor', + 'auto_deref', + 'builder', + 'clearer', + 'coerce', + 'default', + 'documentation', + 'does', + 'handles', + 'init_arg', + 'is', + 'isa', + 'lazy', + 'lazy_build', + 'name', + 'predicate', + 'reader', + 'required', + 'traits', + 'trigger', + 'type_constraint', + 'weak_ref', + 'writer', + + # internally used + 'associated_class', + 'associated_methods', + + # Moose defines, but Mouse doesn't + #'definition_context', + #'initializer', + #'insertion_order', + + # special case for AttributeHelpers + 'provides', + 'curries', +); sub new { my $class = shift; @@ -21,6 +59,27 @@ sub new { $args->{name} = $name; + # check options + # (1) known by core + my @bad = grep{ !exists $valid_options{$_} } keys %{$args}; + + # (2) known by subclasses + if(@bad && $class ne __PACKAGE__){ + my %valid_attrs = ( + map { $_ => undef } + grep { defined } + map { $_->init_arg() } + $class->meta->get_all_attributes() + ); + @bad = grep{ !exists $valid_attrs{$_} } @bad; + } + + # (3) bad options found + if(@bad){ + @bad = sort @bad; + Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad"); + } + my $self = bless $args, $class; # extra attributes @@ -28,13 +87,6 @@ sub new { $class->meta->_initialize_object($self, $args); } -# XXX: there is no fast way to check attribute validity -# my @bad = ...; -# if(@bad){ -# @bad = sort @bad; -# Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad"); -# } - return $self; } @@ -147,6 +199,14 @@ sub clone_and_inherit_options{ $args->{$name} = $self->{$name}; } } + + # remove temporary caches + foreach my $attr(keys %{$args}){ + if($attr =~ /\A _/xms){ + delete $args->{$attr}; + } + } + return $attribute_class->new($self->name, $args); }