X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FAttribute.pm;h=dad65a8d5533ccbf57fcfc7b0b4a3711c05569c8;hb=7e2909e58c70dfb258ca1d10b334eaa6d8422852;hp=2e626b0162f36ff143514d258665b9a52badf281;hpb=306290e864ac23e5f1692c8495b0c173081a1ebb;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 2e626b0..dad65a8 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -17,20 +17,21 @@ sub new { bless \%args, $class; } -sub name { $_[0]->{name} } -sub class { $_[0]->{class} } -sub _is_metadata { $_[0]->{is} } -sub is_required { $_[0]->{required} } -sub default { $_[0]->{default} } -sub is_lazy { $_[0]->{lazy} } -sub predicate { $_[0]->{predicate} } -sub clearer { $_[0]->{clearer} } -sub handles { $_[0]->{handles} } -sub is_weak_ref { $_[0]->{weak_ref} } -sub init_arg { $_[0]->{init_arg} } -sub type_constraint { $_[0]->{type_constraint} } -sub trigger { $_[0]->{trigger} } -sub builder { $_[0]->{builder} } +sub name { $_[0]->{name} } +sub class { $_[0]->{class} } +sub _is_metadata { $_[0]->{is} } +sub is_required { $_[0]->{required} } +sub default { $_[0]->{default} } +sub is_lazy { $_[0]->{lazy} } +sub predicate { $_[0]->{predicate} } +sub clearer { $_[0]->{clearer} } +sub handles { $_[0]->{handles} } +sub is_weak_ref { $_[0]->{weak_ref} } +sub init_arg { $_[0]->{init_arg} } +sub type_constraint { $_[0]->{type_constraint} } +sub trigger { $_[0]->{trigger} } +sub builder { $_[0]->{builder} } +sub should_auto_deref { $_[0]->{auto_deref} } sub has_default { exists $_[0]->{default} } sub has_predicate { exists $_[0]->{predicate} } @@ -93,7 +94,20 @@ sub generate_accessor { $accessor .= ' if !exists($self->{$key});'; } - $accessor .= 'return $self->{$key} + if ($attribute->should_auto_deref) { + if ($attribute->type_constraint eq 'ArrayRef') { + $accessor .= 'if (wantarray) { + return @{ $self->{$key} || [] }; + }'; + } + else { + $accessor .= 'if (wantarray) { + return %{ $self->{$key} || {} }; + }'; + } + } + + $accessor .= 'return $self->{$key}; }'; return eval $accessor; @@ -148,6 +162,14 @@ sub create { if ref($args{default}) && ref($args{default}) ne 'CODE'; + confess "You cannot auto-dereference without specifying a type constraint on attribute $name" + if $args{auto_deref} && !exists($args{isa}); + + confess "You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute $name" + if $args{auto_deref} + && $args{isa} ne 'ArrayRef' + && $args{isa} ne 'HashRef'; + $args{type_constraint} = delete $args{isa} if exists $args{isa}; @@ -285,6 +307,8 @@ installed. Some error checking is done. =head2 has_builder -> Bool +=head2 should_auto_deref -> Bool + Informational methods. =head2 generate_accessor -> CODE