changelog
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Collection.pm
CommitLineData
44babf1f 1package Moose::Meta::Method::Accessor::Native::Collection;
2
3use strict;
4use warnings;
5
8b9641b8 6use Moose::Role;
7
8requires qw( _adds_members );
9
53a4677c 10sub _inline_coerce_new_values {
7bf5e58d 11 my $self = shift;
12
53a4677c 13 return unless $self->associated_attribute->should_coerce;
7bf5e58d 14
53a4677c 15 return unless $self->_tc_member_type_can_coerce;
7bf5e58d 16
53a4677c 17 return (
18 '(' . $self->_new_members . ') = map { $member_tc_obj->coerce($_) }',
19 $self->_new_members . ';',
20 );
21}
7bf5e58d 22
23sub _tc_member_type_can_coerce {
24 my $self = shift;
25
26 my $member_tc = $self->_tc_member_type;
27
28 return $member_tc && $member_tc->has_coercion;
29}
30
31sub _tc_member_type {
32 my $self = shift;
33
53a4677c 34 my $tc = $self->associated_attribute->type_constraint;
35 while ($tc) {
7bf5e58d 36 return $tc->type_parameter
37 if $tc->can('type_parameter');
53a4677c 38 $tc = $tc->parent;
7bf5e58d 39 }
40
41 return;
42}
43
6e50f7e9 44sub _writer_value_needs_copy {
44babf1f 45 my $self = shift;
46
47 return $self->_constraint_must_be_checked
48 && !$self->_check_new_members_only;
53a4677c 49}
44babf1f 50
53a4677c 51sub _inline_tc_code {
52 my $self = shift;
a619fc2f 53 my ($value, $tc, $coercion, $message, $is_lazy) = @_;
44babf1f 54
53a4677c 55 return unless $self->_constraint_must_be_checked;
44babf1f 56
53a4677c 57 if ($self->_check_new_members_only) {
58 return unless $self->_adds_members;
44babf1f 59
53a4677c 60 return $self->_inline_check_member_constraint($self->_new_members);
44babf1f 61 }
62 else {
53a4677c 63 return (
c40e4359 64 $self->_inline_check_coercion($value, $tc, $coercion, $is_lazy),
a619fc2f 65 $self->_inline_check_constraint($value, $tc, $message, $is_lazy),
53a4677c 66 );
44babf1f 67 }
53a4677c 68}
44babf1f 69
70sub _check_new_members_only {
71 my $self = shift;
72
73 my $attr = $self->associated_attribute;
74
75 my $tc = $attr->type_constraint;
76
77 # If we have a coercion, we could come up with an entirely new value after
78 # coercing, so we need to check everything,
79 return 0 if $attr->should_coerce && $tc->has_coercion;
80
81 # If the parent is our root type (ArrayRef, HashRef, etc), that means we
82 # can just check the new members of the collection, because we know that
83 # we will always be generating an appropriate collection type.
84 #
85 # However, if this type has its own constraint (it's Parameteriz_able_,
86 # not Paramet_erized_), we don't know what is being checked by the
87 # constraint, so we need to check the whole value, not just the members.
88 return 1
89 if $self->_is_root_type( $tc->parent )
90 && $tc->isa('Moose::Meta::TypeConstraint::Parameterized');
91
92 return 0;
93}
94
95sub _inline_check_member_constraint {
53a4677c 96 my $self = shift;
97 my ($new_value) = @_;
44babf1f 98
99 my $attr_name = $self->associated_attribute->name;
100
31056177 101 my $check
7c047a36 102 = $self->_tc_member_type->can_be_inlined
0e8cddd7 103 ? '! (' . $self->_tc_member_type->_inline_check('$new_val') . ')'
104 : ' !$member_tc->($new_val) ';
31056177 105
53a4677c 106 return (
0e8cddd7 107 'for my $new_val (' . $new_value . ') {',
31056177 108 "if ($check) {",
53a4677c 109 $self->_inline_throw_error(
110 '"A new member value for ' . $attr_name
111 . ' does not pass its type constraint because: "'
0e8cddd7 112 . ' . $member_tc_obj->get_message($new_val)',
113 'data => $new_val',
53a4677c 114 ) . ';',
115 '}',
116 '}',
117 );
44babf1f 118}
119
53a4677c 120sub _inline_get_old_value_for_trigger {
121 my $self = shift;
122 my ($instance, $old) = @_;
44babf1f 123
124 my $attr = $self->associated_attribute;
53a4677c 125 return unless $attr->has_trigger;
44babf1f 126
53a4677c 127 return (
1e2c801e 128 'my ' . $old . ' = ' . $self->_has_value($instance),
129 '? ' . $self->_copy_old_value($self->_get_value($instance)),
53a4677c 130 ': ();',
131 );
132}
44babf1f 133
8b9641b8 134around _eval_environment => sub {
44babf1f 135 my $orig = shift;
136 my $self = shift;
137
138 my $env = $self->$orig(@_);
139
7bf5e58d 140 my $member_tc = $self->_tc_member_type;
141
142 return $env unless $member_tc;
143
144 $env->{'$member_tc_obj'} = \($member_tc);
44babf1f 145
7bf5e58d 146 $env->{'$member_tc'} = \( $member_tc->_compiled_type_constraint );
44babf1f 147
0e8cddd7 148 my $tc_env = $member_tc->inline_environment();
149
150 $env = { %{$env}, %{$tc_env} };
151
44babf1f 152 return $env;
8b9641b8 153};
44babf1f 154
155no Moose::Role;
156
1571;