If the parent type is ArrayRef and the type itself is also parameterizable, we need...
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait.pm
CommitLineData
e3c07b19 1
c466e58f 2package Moose::Meta::Attribute::Native::Trait;
e3c07b19 3use Moose::Role;
4use Moose::Util::TypeConstraints;
5
b6cca0d5 6our $VERSION = '1.14';
e3c07b19 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
2e069f5a 10requires '_helper_type';
e3c07b19 11
2edb73d9 12before '_process_options' => sub {
13 my ( $self, $name, $options ) = @_;
e3c07b19 14
2edb73d9 15 $self->_check_helper_type( $options, $name );
e3c07b19 16
2edb73d9 17 $options->{is} = $self->_default_is
d4dc38ed 18 if !exists $options->{is} && $self->can('_default_is');
e3c07b19 19
2edb73d9 20 $options->{default} = $self->_default_default
d4dc38ed 21 if !exists $options->{default} && $self->can('_default_default');
2edb73d9 22};
e3c07b19 23
2edb73d9 24sub _check_helper_type {
25 my ( $self, $options, $name ) = @_;
e3c07b19 26
2e069f5a 27 my $type = $self->_helper_type;
2edb73d9 28
2e069f5a 29 $options->{isa} = $type
2edb73d9 30 unless exists $options->{isa};
31
32 my $isa = Moose::Util::TypeConstraints::find_or_create_type_constraint(
33 $options->{isa} );
34
35 ( $isa->is_a_type_of($type) )
36 || confess
37 "The type constraint for $name must be a subtype of $type but it's a $isa";
38}
e3c07b19 39
2edb73d9 40before 'install_accessors' => sub { (shift)->_check_handles_values };
5404f169 41
2edb73d9 42sub _check_handles_values {
e3c07b19 43 my $self = shift;
44
45 my $method_constructors = $self->method_constructors;
46
5404f169 47 my %handles = $self->_canonicalize_handles;
e3c07b19 48
046c8b5e 49 for my $original_method ( values %handles ) {
5404f169 50 my $name = $original_method->[0];
f7fd22b6 51
52 my $accessor_class
53 = $self->_native_accessor_class_root . '::' . $name;
54
55 ( $accessor_class->can('new') || exists $method_constructors->{$name} )
5404f169 56 || confess "$name is an unsupported method type";
e3c07b19 57 }
5404f169 58}
e3c07b19 59
d4dc38ed 60around '_canonicalize_handles' => sub {
61 shift;
62 my $self = shift;
63 my $handles = $self->handles;
64
65 return unless $handles;
66
67 unless ( 'HASH' eq ref $handles ) {
68 $self->throw_error(
69 "The 'handles' option must be a HASH reference, not $handles");
70 }
71
72 return map {
73 my $to = $handles->{$_};
74 $to = [$to] unless ref $to;
75 $_ => $to
76 } keys %$handles;
77};
78
18281451 79around '_make_delegation_method' => sub {
80 my $next = shift;
046c8b5e 81 my ( $self, $handle_name, $method_to_call ) = @_;
18281451 82
3c573ca4 83 my ( $name, @curried_args ) = @$method_to_call;
18281451 84
f7fd22b6 85 my $accessor_class
86 = $self->_native_accessor_class_root . '::' . $name;
18281451 87
f7fd22b6 88 if ( $accessor_class->can('new') ) {
89 return $accessor_class->new(
90 name => $handle_name,
91 package_name => $self->associated_class->name,
92 attribute => $self,
93 curried_arguments => \@curried_args,
94 );
95 }
96 else {
97 my $method_constructors = $self->method_constructors;
98
99 my $code = $method_constructors->{$name}->(
100 $self,
101 $self->get_read_method_ref,
102 $self->get_write_method_ref,
103 );
104
105 return $next->(
106 $self,
107 $handle_name,
108 sub {
109 my $instance = shift;
110 return $code->( $instance, @curried_args, @_ );
111 }
112 );
113 }
18281451 114};
115
f7fd22b6 116sub _native_accessor_class_root {
117 my $self = shift;
118
119 return 'Moose::Meta::Method::Accessor::Native::' . $self->_native_type;
120}
121
122has 'method_constructors' => (
123 is => 'ro',
124 isa => 'HashRef',
125 lazy => 1,
126 default => sub {
127 my $self = shift;
a7821be5 128 return +{}
129 unless $self->can('has_method_provider')
130 && $self->has_method_provider;
f7fd22b6 131
132 # or grab them from the role/class
133 my $method_provider = $self->method_provider->meta;
134 return +{ map { $_->name => $_ }
135 $method_provider->_get_local_methods };
136 },
137);
138
e3c07b19 139no Moose::Role;
140no Moose::Util::TypeConstraints;
141
1421;
143
144__END__
145
146=head1 NAME
147
2420461c 148Moose::Meta::Attribute::Native::Trait - Base role for helpers
e3c07b19 149
e3c07b19 150=head1 BUGS
151
d4048ef3 152See L<Moose/BUGS> for details on reporting bugs.
e3c07b19 153
1af5d116 154=head1 SEE ALSO
155
156Documentation for Moose native traits starts at L<Moose::Meta::Attribute Native>
157
e3c07b19 158=head1 AUTHORS
159
160Yuval Kogman
161
162Shawn M Moore
163
164Jesse Luehrs
165
166=head1 COPYRIGHT AND LICENSE
167
168Copyright 2007-2009 by Infinity Interactive, Inc.
169
170L<http://www.iinteractive.com>
171
172This library is free software; you can redistribute it and/or modify
173it under the same terms as Perl itself.
174
175=cut