line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
401
|
|
|
401
|
|
2702
|
use strict; |
|
401
|
|
|
|
|
805
|
|
|
401
|
|
|
|
|
11518
|
|
2
|
401
|
|
|
401
|
|
1926
|
use warnings; |
|
401
|
|
|
|
|
785
|
|
|
401
|
|
|
|
|
18798
|
|
3
|
|
|
|
|
|
|
package Moose::Meta::Attribute; |
4
|
|
|
|
|
|
|
our $VERSION = '2.2203'; |
5
|
|
|
|
|
|
|
|
6
|
401
|
|
|
401
|
|
2477
|
use B (); |
|
401
|
|
|
|
|
838
|
|
|
401
|
|
|
|
|
9125
|
|
7
|
401
|
|
|
401
|
|
2207
|
use Scalar::Util 'blessed'; |
|
401
|
|
|
|
|
844
|
|
|
401
|
|
|
|
|
22973
|
|
8
|
401
|
|
|
401
|
|
2569
|
use List::Util 1.33 'any'; |
|
401
|
|
|
|
|
8788
|
|
|
401
|
|
|
|
|
22923
|
|
9
|
401
|
|
|
401
|
|
2582
|
use Try::Tiny; |
|
401
|
|
|
|
|
1912
|
|
|
401
|
|
|
|
|
19861
|
|
10
|
401
|
|
|
401
|
|
3490
|
use overload (); |
|
401
|
|
|
|
|
1892
|
|
|
401
|
|
|
|
|
8495
|
|
11
|
|
|
|
|
|
|
|
12
|
401
|
|
|
401
|
|
4257
|
use Moose::Deprecated; |
|
401
|
|
|
|
|
2064
|
|
|
401
|
|
|
|
|
5016
|
|
13
|
401
|
|
|
401
|
|
180242
|
use Moose::Meta::Method::Accessor; |
|
401
|
|
|
|
|
964
|
|
|
401
|
|
|
|
|
13812
|
|
14
|
401
|
|
|
401
|
|
165570
|
use Moose::Meta::Method::Delegation; |
|
401
|
|
|
|
|
1003
|
|
|
401
|
|
|
|
|
14786
|
|
15
|
401
|
|
|
401
|
|
3612
|
use Moose::Util 'throw_exception'; |
|
401
|
|
|
|
|
924
|
|
|
401
|
|
|
|
|
1871
|
|
16
|
401
|
|
|
401
|
|
268376
|
use Moose::Util::TypeConstraints (); |
|
401
|
|
|
|
|
1333
|
|
|
401
|
|
|
|
|
12996
|
|
17
|
401
|
|
|
401
|
|
2874
|
use Class::MOP::MiniTrait; |
|
401
|
|
|
|
|
803
|
|
|
401
|
|
|
|
|
10184
|
|
18
|
|
|
|
|
|
|
|
19
|
401
|
|
|
401
|
|
2181
|
use parent 'Class::MOP::Attribute', 'Moose::Meta::Mixin::AttributeCore'; |
|
401
|
|
|
|
|
789
|
|
|
401
|
|
|
|
|
2843
|
|
20
|
|
|
|
|
|
|
|
21
|
401
|
|
|
401
|
|
24276
|
use Carp 'confess'; |
|
401
|
|
|
|
|
925
|
|
|
401
|
|
|
|
|
2534817
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Class::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait'); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__PACKAGE__->meta->add_attribute('traits' => ( |
26
|
|
|
|
|
|
|
reader => 'applied_traits', |
27
|
|
|
|
|
|
|
predicate => 'has_applied_traits', |
28
|
|
|
|
|
|
|
Class::MOP::_definition_context(), |
29
|
|
|
|
|
|
|
)); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__PACKAGE__->meta->add_attribute('role_attribute' => ( |
32
|
|
|
|
|
|
|
reader => 'role_attribute', |
33
|
|
|
|
|
|
|
predicate => 'has_role_attribute', |
34
|
|
|
|
|
|
|
Class::MOP::_definition_context(), |
35
|
|
|
|
|
|
|
)); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# we need to have a ->does method in here to |
38
|
|
|
|
|
|
|
# more easily support traits, and the introspection |
39
|
|
|
|
|
|
|
# of those traits. We extend the does check to look |
40
|
|
|
|
|
|
|
# for metatrait aliases. |
41
|
|
|
|
|
|
|
sub does { |
42
|
217
|
|
|
217
|
1
|
680
|
my ($self, $role_name) = @_; |
43
|
|
|
|
|
|
|
my $name = try { |
44
|
217
|
|
|
217
|
|
5800
|
Moose::Util::resolve_metatrait_alias(Attribute => $role_name) |
45
|
217
|
|
|
|
|
1536
|
}; |
46
|
217
|
100
|
|
|
|
3028
|
return 0 if !defined($name); # failed to load class |
47
|
215
|
|
|
|
|
1419
|
return $self->Moose::Object::does($name); |
48
|
|
|
|
|
|
|
} |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
sub _inline_throw_exception { |
51
|
4072
|
|
|
4072
|
|
9643
|
my ( $self, $exception_type, $throw_args ) = @_; |
52
|
4072
|
|
50
|
|
|
45265
|
return 'die Module::Runtime::use_module("Moose::Exception::' . $exception_type . '")->new(' . ($throw_args || '') . ')'; |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
sub new { |
56
|
2756
|
|
|
2756
|
1
|
11001
|
my ($class, $name, %options) = @_; |
57
|
2756
|
100
|
|
|
|
14209
|
$class->_process_options($name, \%options) unless $options{__hack_no_process_options}; # used from clone()... YECHKKK FIXME ICKY YUCK GROSS |
58
|
|
|
|
|
|
|
|
59
|
2732
|
|
|
|
|
5555
|
delete $options{__hack_no_process_options}; |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
my %attrs = |
62
|
79426
|
|
|
|
|
119766
|
( map { $_ => 1 } |
63
|
79426
|
|
|
|
|
100579
|
grep { defined } |
64
|
2732
|
|
|
|
|
11701
|
map { $_->init_arg() } |
|
79426
|
|
|
|
|
152371
|
|
65
|
|
|
|
|
|
|
$class->meta()->get_all_attributes() |
66
|
|
|
|
|
|
|
); |
67
|
|
|
|
|
|
|
|
68
|
2732
|
|
|
|
|
14613
|
my @bad = sort grep { ! $attrs{$_} } keys %options; |
|
16511
|
|
|
|
|
27786
|
|
69
|
|
|
|
|
|
|
|
70
|
2732
|
100
|
|
|
|
8535
|
if (@bad) |
71
|
|
|
|
|
|
|
{ |
72
|
1
|
50
|
|
|
|
4
|
my $s = @bad > 1 ? 's' : ''; |
73
|
1
|
|
|
|
|
3
|
my $list = join "', '", @bad; |
74
|
|
|
|
|
|
|
|
75
|
1
|
|
|
|
|
2
|
my $package = $options{definition_context}{package}; |
76
|
|
|
|
|
|
|
my $context = $options{definition_context}{context} |
77
|
1
|
|
50
|
|
|
4
|
|| 'attribute constructor'; |
78
|
1
|
|
50
|
|
|
3
|
my $type = $options{definition_context}{type} || 'class'; |
79
|
|
|
|
|
|
|
|
80
|
1
|
|
|
|
|
2
|
my $location = ''; |
81
|
1
|
50
|
|
|
|
3
|
if (defined($package)) { |
82
|
1
|
|
|
|
|
2
|
$location = " in "; |
83
|
1
|
50
|
|
|
|
3
|
$location .= "$type " if $type; |
84
|
1
|
|
|
|
|
2
|
$location .= $package; |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
1
|
|
|
|
|
202
|
Carp::cluck "Found unknown argument$s '$list' in the $context for '$name'$location"; |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
2732
|
|
|
|
|
16108
|
return $class->SUPER::new($name, %options); |
91
|
|
|
|
|
|
|
} |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
sub interpolate_class_and_new { |
94
|
2322
|
|
|
2322
|
1
|
4470
|
my $class = shift; |
95
|
2322
|
|
|
|
|
3627
|
my $name = shift; |
96
|
|
|
|
|
|
|
|
97
|
2322
|
100
|
|
|
|
6797
|
throw_exception( MustPassEvenNumberOfAttributeOptions => attribute_name => $name, |
98
|
|
|
|
|
|
|
options => \@_ |
99
|
|
|
|
|
|
|
) |
100
|
|
|
|
|
|
|
if @_ % 2 == 1; |
101
|
|
|
|
|
|
|
|
102
|
2320
|
|
|
|
|
9408
|
my %args = @_; |
103
|
|
|
|
|
|
|
|
104
|
2320
|
|
|
|
|
7790
|
my ( $new_class, @traits ) = $class->interpolate_class(\%args); |
105
|
2318
|
100
|
|
|
|
13356
|
$new_class->new($name, %args, ( scalar(@traits) ? ( traits => \@traits ) : () ) ); |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
sub interpolate_class { |
109
|
2360
|
|
|
2360
|
0
|
5063
|
my ($class, $options) = @_; |
110
|
|
|
|
|
|
|
|
111
|
2360
|
|
66
|
|
|
8917
|
$class = ref($class) || $class; |
112
|
|
|
|
|
|
|
|
113
|
2360
|
100
|
|
|
|
7027
|
if ( my $metaclass_name = delete $options->{metaclass} ) { |
114
|
10
|
|
|
|
|
39
|
my $new_class = Moose::Util::resolve_metaclass_alias( Attribute => $metaclass_name ); |
115
|
|
|
|
|
|
|
|
116
|
10
|
50
|
|
|
|
48
|
if ( $class ne $new_class ) { |
117
|
10
|
100
|
|
|
|
87
|
if ( $new_class->can("interpolate_class") ) { |
118
|
9
|
|
|
|
|
47
|
return $new_class->interpolate_class($options); |
119
|
|
|
|
|
|
|
} else { |
120
|
1
|
|
|
|
|
2
|
$class = $new_class; |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
} |
123
|
|
|
|
|
|
|
} |
124
|
|
|
|
|
|
|
|
125
|
2351
|
|
|
|
|
3656
|
my @traits; |
126
|
|
|
|
|
|
|
|
127
|
2351
|
100
|
|
|
|
5865
|
if (my $traits = $options->{traits}) { |
128
|
203
|
|
|
|
|
449
|
my $i = 0; |
129
|
203
|
|
|
|
|
373
|
my $has_foreign_options = 0; |
130
|
|
|
|
|
|
|
|
131
|
203
|
|
|
|
|
769
|
while ($i < @$traits) { |
132
|
212
|
|
|
|
|
523
|
my $trait = $traits->[$i++]; |
133
|
212
|
50
|
|
|
|
609
|
next if ref($trait); # options to a trait we discarded |
134
|
|
|
|
|
|
|
|
135
|
212
|
|
33
|
|
|
935
|
$trait = Moose::Util::resolve_metatrait_alias(Attribute => $trait) |
136
|
|
|
|
|
|
|
|| $trait; |
137
|
|
|
|
|
|
|
|
138
|
210
|
50
|
|
|
|
1138
|
next if $class->does($trait); |
139
|
|
|
|
|
|
|
|
140
|
210
|
|
|
|
|
533
|
push @traits, $trait; |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
# are there options? |
143
|
210
|
100
|
100
|
|
|
1150
|
if ($traits->[$i] && ref($traits->[$i])) { |
144
|
|
|
|
|
|
|
$has_foreign_options = 1 |
145
|
5
|
100
|
|
6
|
|
16
|
if any { $_ ne '-alias' && $_ ne '-excludes' } keys %{ $traits->[$i] }; |
|
6
|
100
|
|
|
|
29
|
|
|
5
|
|
|
|
|
26
|
|
146
|
|
|
|
|
|
|
|
147
|
5
|
|
|
|
|
22
|
push @traits, $traits->[$i++]; |
148
|
|
|
|
|
|
|
} |
149
|
|
|
|
|
|
|
} |
150
|
|
|
|
|
|
|
|
151
|
201
|
50
|
|
|
|
623
|
if (@traits) { |
152
|
201
|
|
|
|
|
944
|
my %options = ( |
153
|
|
|
|
|
|
|
superclasses => [ $class ], |
154
|
|
|
|
|
|
|
roles => [ @traits ], |
155
|
|
|
|
|
|
|
); |
156
|
|
|
|
|
|
|
|
157
|
201
|
100
|
|
|
|
599
|
if ($has_foreign_options) { |
158
|
1
|
|
|
|
|
3
|
$options{weaken} = 0; |
159
|
|
|
|
|
|
|
} |
160
|
|
|
|
|
|
|
else { |
161
|
200
|
|
|
|
|
513
|
$options{cache} = 1; |
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
201
|
|
|
|
|
1496
|
my $anon_class = Moose::Meta::Class->create_anon_class(%options); |
165
|
201
|
|
|
|
|
1137
|
$class = $anon_class->name; |
166
|
|
|
|
|
|
|
} |
167
|
|
|
|
|
|
|
} |
168
|
|
|
|
|
|
|
|
169
|
2349
|
50
|
|
|
|
8967
|
return ( wantarray ? ( $class, @traits ) : $class ); |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
# ... |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
# method-generating options shouldn't be overridden |
175
|
|
|
|
|
|
|
sub illegal_options_for_inheritance { |
176
|
38
|
|
|
38
|
1
|
131
|
qw(reader writer accessor clearer predicate) |
177
|
|
|
|
|
|
|
} |
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
# NOTE/TODO |
180
|
|
|
|
|
|
|
# This method *must* be able to handle |
181
|
|
|
|
|
|
|
# Class::MOP::Attribute instances as |
182
|
|
|
|
|
|
|
# well. Yes, I know that is wrong, but |
183
|
|
|
|
|
|
|
# apparently we didn't realize it was |
184
|
|
|
|
|
|
|
# doing that and now we have some code |
185
|
|
|
|
|
|
|
# which is dependent on it. The real |
186
|
|
|
|
|
|
|
# solution of course is to push this |
187
|
|
|
|
|
|
|
# feature back up into Class::MOP::Attribute |
188
|
|
|
|
|
|
|
# but I not right now, I am too lazy. |
189
|
|
|
|
|
|
|
# However if you are reading this and |
190
|
|
|
|
|
|
|
# looking for something to do,.. please |
191
|
|
|
|
|
|
|
# be my guest. |
192
|
|
|
|
|
|
|
# - stevan |
193
|
|
|
|
|
|
|
sub clone_and_inherit_options { |
194
|
37
|
|
|
37
|
1
|
109
|
my ($self, %options) = @_; |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
# NOTE: |
197
|
|
|
|
|
|
|
# we may want to extends a Class::MOP::Attribute |
198
|
|
|
|
|
|
|
# in which case we need to be able to use the |
199
|
|
|
|
|
|
|
# core set of legal options that have always |
200
|
|
|
|
|
|
|
# been here. But we allows Moose::Meta::Attribute |
201
|
|
|
|
|
|
|
# instances to changes them. |
202
|
|
|
|
|
|
|
# - SL |
203
|
37
|
50
|
|
|
|
171
|
my @illegal_options = $self->can('illegal_options_for_inheritance') |
204
|
|
|
|
|
|
|
? $self->illegal_options_for_inheritance |
205
|
|
|
|
|
|
|
: (); |
206
|
|
|
|
|
|
|
|
207
|
37
|
100
|
100
|
|
|
81
|
my @found_illegal_options = grep { exists $options{$_} && exists $self->{$_} ? $_ : undef } @illegal_options; |
|
188
|
|
|
|
|
421
|
|
208
|
37
|
100
|
|
|
|
119
|
(scalar @found_illegal_options == 0) |
209
|
|
|
|
|
|
|
|| throw_exception( IllegalInheritedOptions => illegal_options => \@found_illegal_options, |
210
|
|
|
|
|
|
|
params => \%options |
211
|
|
|
|
|
|
|
); |
212
|
|
|
|
|
|
|
|
213
|
31
|
|
|
|
|
130
|
$self->_process_isa_option( $self->name, \%options ); |
214
|
31
|
|
|
|
|
123
|
$self->_process_does_option( $self->name, \%options ); |
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
# NOTE: |
217
|
|
|
|
|
|
|
# this doesn't apply to Class::MOP::Attributes, |
218
|
|
|
|
|
|
|
# so we can ignore it for them. |
219
|
|
|
|
|
|
|
# - SL |
220
|
31
|
50
|
|
|
|
110
|
if ($self->can('interpolate_class')) { |
221
|
31
|
|
|
|
|
74
|
( $options{metaclass}, my @traits ) = $self->interpolate_class(\%options); |
222
|
|
|
|
|
|
|
|
223
|
31
|
|
|
|
|
49
|
my %seen; |
224
|
31
|
100
|
|
|
|
43
|
my @all_traits = grep { $seen{$_}++ } @{ $self->applied_traits || [] }, @traits; |
|
3
|
|
|
|
|
10
|
|
|
31
|
|
|
|
|
941
|
|
225
|
31
|
50
|
|
|
|
102
|
$options{traits} = \@all_traits if @all_traits; |
226
|
|
|
|
|
|
|
} |
227
|
|
|
|
|
|
|
|
228
|
|
|
|
|
|
|
# This method can be called on a CMOP::Attribute object, so we need to |
229
|
|
|
|
|
|
|
# make sure we can call this method. |
230
|
31
|
50
|
|
|
|
182
|
$self->_process_lazy_build_option( $self->name, \%options ) |
231
|
|
|
|
|
|
|
if $self->can('_process_lazy_build_option'); |
232
|
|
|
|
|
|
|
|
233
|
31
|
|
|
|
|
115
|
$self->clone(%options); |
234
|
|
|
|
|
|
|
} |
235
|
|
|
|
|
|
|
|
236
|
|
|
|
|
|
|
sub clone { |
237
|
31
|
|
|
31
|
1
|
97
|
my ( $self, %params ) = @_; |
238
|
|
|
|
|
|
|
|
239
|
31
|
|
33
|
|
|
87
|
my $class = delete $params{metaclass} || ref $self; |
240
|
|
|
|
|
|
|
|
241
|
31
|
|
|
|
|
50
|
my ( @init, @non_init ); |
242
|
|
|
|
|
|
|
|
243
|
31
|
|
|
|
|
96
|
foreach my $attr ( grep { $_->has_value($self) } Class::MOP::class_of($self)->get_all_attributes ) { |
|
902
|
|
|
|
|
1477
|
|
244
|
309
|
50
|
|
|
|
352
|
push @{ $attr->has_init_arg ? \@init : \@non_init }, $attr; |
|
309
|
|
|
|
|
483
|
|
245
|
|
|
|
|
|
|
} |
246
|
|
|
|
|
|
|
|
247
|
31
|
|
|
|
|
86
|
my %new_params = ( ( map { $_->init_arg => $_->get_value($self) } @init ), %params ); |
|
309
|
|
|
|
|
677
|
|
248
|
|
|
|
|
|
|
|
249
|
31
|
|
|
|
|
125
|
my $name = delete $new_params{name}; |
250
|
|
|
|
|
|
|
|
251
|
31
|
|
|
|
|
127
|
my $clone = $class->new($name, %new_params, __hack_no_process_options => 1 ); |
252
|
|
|
|
|
|
|
|
253
|
31
|
|
|
|
|
95
|
foreach my $attr ( @non_init ) { |
254
|
0
|
|
|
|
|
0
|
$attr->set_value($clone, $attr->get_value($self)); |
255
|
|
|
|
|
|
|
} |
256
|
|
|
|
|
|
|
|
257
|
31
|
|
|
|
|
220
|
return $clone; |
258
|
|
|
|
|
|
|
} |
259
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
sub _process_options { |
261
|
2724
|
|
|
2724
|
|
5808
|
my ( $class, $name, $options ) = @_; |
262
|
|
|
|
|
|
|
|
263
|
2724
|
|
|
|
|
8517
|
$class->_process_is_option( $name, $options ); |
264
|
2721
|
|
|
|
|
8454
|
$class->_process_isa_option( $name, $options ); |
265
|
2716
|
|
|
|
|
11479
|
$class->_process_does_option( $name, $options ); |
266
|
2716
|
|
|
|
|
8293
|
$class->_process_coerce_option( $name, $options ); |
267
|
2710
|
|
|
|
|
8476
|
$class->_process_trigger_option( $name, $options ); |
268
|
2707
|
|
|
|
|
7851
|
$class->_process_auto_deref_option( $name, $options ); |
269
|
2705
|
|
|
|
|
8088
|
$class->_process_lazy_build_option( $name, $options ); |
270
|
2704
|
|
|
|
|
8337
|
$class->_process_lazy_option( $name, $options ); |
271
|
2702
|
|
|
|
|
6825
|
$class->_process_required_option( $name, $options ); |
272
|
|
|
|
|
|
|
} |
273
|
|
|
|
|
|
|
|
274
|
|
|
|
|
|
|
sub _process_is_option { |
275
|
2724
|
|
|
2724
|
|
5358
|
my ( $class, $name, $options ) = @_; |
276
|
|
|
|
|
|
|
|
277
|
2724
|
100
|
|
|
|
7009
|
return unless $options->{is}; |
278
|
|
|
|
|
|
|
|
279
|
|
|
|
|
|
|
### ------------------------- |
280
|
|
|
|
|
|
|
## is => ro, writer => _foo # turns into (reader => foo, writer => _foo) as before |
281
|
|
|
|
|
|
|
## is => rw, writer => _foo # turns into (reader => foo, writer => _foo) |
282
|
|
|
|
|
|
|
## is => rw, accessor => _foo # turns into (accessor => _foo) |
283
|
|
|
|
|
|
|
## is => ro, accessor => _foo # error, accesor is rw |
284
|
|
|
|
|
|
|
### ------------------------- |
285
|
|
|
|
|
|
|
|
286
|
2202
|
100
|
|
|
|
6387
|
if ( $options->{is} eq 'ro' ) { |
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
287
|
|
|
|
|
|
|
throw_exception("AccessorMustReadWrite" => attribute_name => $name, |
288
|
|
|
|
|
|
|
params => $options, |
289
|
|
|
|
|
|
|
) |
290
|
1901
|
100
|
|
|
|
4758
|
if exists $options->{accessor}; |
291
|
1899
|
|
66
|
|
|
7704
|
$options->{reader} ||= $name; |
292
|
|
|
|
|
|
|
} |
293
|
|
|
|
|
|
|
elsif ( $options->{is} eq 'rw' ) { |
294
|
274
|
100
|
|
|
|
861
|
if ( ! $options->{accessor} ) { |
295
|
271
|
100
|
|
|
|
724
|
if ( $options->{writer}) { |
296
|
1
|
|
33
|
|
|
6
|
$options->{reader} ||= $name; |
297
|
|
|
|
|
|
|
} |
298
|
|
|
|
|
|
|
else { |
299
|
270
|
|
|
|
|
696
|
$options->{accessor} = $name; |
300
|
|
|
|
|
|
|
} |
301
|
|
|
|
|
|
|
} |
302
|
|
|
|
|
|
|
} |
303
|
|
|
|
|
|
|
elsif ( $options->{is} eq 'bare' ) { |
304
|
26
|
|
|
|
|
59
|
return; |
305
|
|
|
|
|
|
|
# do nothing, but don't complain (later) about missing methods |
306
|
|
|
|
|
|
|
} |
307
|
|
|
|
|
|
|
else { |
308
|
1
|
|
|
|
|
4
|
throw_exception( InvalidValueForIs => attribute_name => $name, |
309
|
|
|
|
|
|
|
params => $options, |
310
|
|
|
|
|
|
|
); |
311
|
|
|
|
|
|
|
} |
312
|
|
|
|
|
|
|
} |
313
|
|
|
|
|
|
|
|
314
|
|
|
|
|
|
|
sub _process_isa_option { |
315
|
2752
|
|
|
2752
|
|
5567
|
my ( $class, $name, $options ) = @_; |
316
|
|
|
|
|
|
|
|
317
|
2752
|
100
|
|
|
|
6766
|
return unless exists $options->{isa}; |
318
|
|
|
|
|
|
|
|
319
|
2042
|
100
|
|
|
|
4924
|
if ( exists $options->{does} ) { |
320
|
5
|
100
|
|
5
|
|
27
|
if ( try { $options->{isa}->can('does') } ) { |
|
5
|
|
|
|
|
138
|
|
321
|
3
|
100
|
|
|
|
42
|
( $options->{isa}->does( $options->{does} ) ) |
322
|
|
|
|
|
|
|
|| throw_exception( IsaDoesNotDoTheRole => attribute_name => $name, |
323
|
|
|
|
|
|
|
params => $options, |
324
|
|
|
|
|
|
|
); |
325
|
|
|
|
|
|
|
} |
326
|
|
|
|
|
|
|
else { |
327
|
2
|
|
|
|
|
26
|
throw_exception( IsaLacksDoesMethod => attribute_name => $name, |
328
|
|
|
|
|
|
|
params => $options, |
329
|
|
|
|
|
|
|
); |
330
|
|
|
|
|
|
|
} |
331
|
|
|
|
|
|
|
} |
332
|
|
|
|
|
|
|
|
333
|
|
|
|
|
|
|
# allow for anon-subtypes here ... |
334
|
|
|
|
|
|
|
# |
335
|
|
|
|
|
|
|
# There are a _lot_ of methods that we expect from TC objects, but |
336
|
|
|
|
|
|
|
# checking for a specific parent class via ->isa is gross, so we'll check |
337
|
|
|
|
|
|
|
# for at least one method. |
338
|
2038
|
100
|
66
|
|
|
8564
|
if ( blessed( $options->{isa} ) |
339
|
|
|
|
|
|
|
&& $options->{isa}->can('has_coercion') ) { |
340
|
|
|
|
|
|
|
|
341
|
84
|
|
|
|
|
323
|
$options->{type_constraint} = $options->{isa}; |
342
|
|
|
|
|
|
|
} |
343
|
|
|
|
|
|
|
else { |
344
|
|
|
|
|
|
|
$options->{type_constraint} |
345
|
|
|
|
|
|
|
= Moose::Util::TypeConstraints::find_or_create_isa_type_constraint( |
346
|
|
|
|
|
|
|
$options->{isa}, |
347
|
|
|
|
|
|
|
{ package_defined_in => $options->{definition_context}->{package} } |
348
|
1954
|
|
|
|
|
10090
|
); |
349
|
|
|
|
|
|
|
} |
350
|
|
|
|
|
|
|
} |
351
|
|
|
|
|
|
|
|
352
|
|
|
|
|
|
|
sub _process_does_option { |
353
|
2747
|
|
|
2747
|
|
5823
|
my ( $class, $name, $options ) = @_; |
354
|
|
|
|
|
|
|
|
355
|
2747
|
100
|
100
|
|
|
9144
|
return unless exists $options->{does} && ! exists $options->{isa}; |
356
|
|
|
|
|
|
|
|
357
|
|
|
|
|
|
|
# allow for anon-subtypes here ... |
358
|
18
|
100
|
66
|
|
|
113
|
if ( blessed( $options->{does} ) |
359
|
|
|
|
|
|
|
&& $options->{does}->can('has_coercion') ) { |
360
|
|
|
|
|
|
|
|
361
|
1
|
|
|
|
|
4
|
$options->{type_constraint} = $options->{does}; |
362
|
|
|
|
|
|
|
} |
363
|
|
|
|
|
|
|
else { |
364
|
|
|
|
|
|
|
$options->{type_constraint} |
365
|
|
|
|
|
|
|
= Moose::Util::TypeConstraints::find_or_create_does_type_constraint( |
366
|
|
|
|
|
|
|
$options->{does}, |
367
|
|
|
|
|
|
|
{ package_defined_in => $options->{definition_context}->{package} } |
368
|
17
|
|
|
|
|
111
|
); |
369
|
|
|
|
|
|
|
} |
370
|
|
|
|
|
|
|
} |
371
|
|
|
|
|
|
|
|
372
|
|
|
|
|
|
|
sub _process_coerce_option { |
373
|
2716
|
|
|
2716
|
|
5694
|
my ( $class, $name, $options ) = @_; |
374
|
|
|
|
|
|
|
|
375
|
2716
|
100
|
|
|
|
7094
|
return unless $options->{coerce}; |
376
|
|
|
|
|
|
|
|
377
|
|
|
|
|
|
|
( exists $options->{type_constraint} ) |
378
|
41
|
100
|
|
|
|
136
|
|| throw_exception( CoercionNeedsTypeConstraint => attribute_name => $name, |
379
|
|
|
|
|
|
|
params => $options, |
380
|
|
|
|
|
|
|
); |
381
|
|
|
|
|
|
|
|
382
|
|
|
|
|
|
|
throw_exception( CannotCoerceAWeakRef => attribute_name => $name, |
383
|
|
|
|
|
|
|
params => $options, |
384
|
|
|
|
|
|
|
) |
385
|
40
|
100
|
|
|
|
129
|
if $options->{weak_ref}; |
386
|
|
|
|
|
|
|
|
387
|
39
|
100
|
|
|
|
1200
|
unless ( $options->{type_constraint}->has_coercion ) { |
388
|
4
|
|
|
|
|
94
|
my $type = $options->{type_constraint}->name; |
389
|
|
|
|
|
|
|
|
390
|
4
|
|
|
|
|
19
|
throw_exception( CannotCoerceAttributeWhichHasNoCoercion => attribute_name => $name, |
391
|
|
|
|
|
|
|
type_name => $type, |
392
|
|
|
|
|
|
|
params => $options |
393
|
|
|
|
|
|
|
); |
394
|
|
|
|
|
|
|
} |
395
|
|
|
|
|
|
|
} |
396
|
|
|
|
|
|
|
|
397
|
|
|
|
|
|
|
sub _process_trigger_option { |
398
|
2710
|
|
|
2710
|
|
5310
|
my ( $class, $name, $options ) = @_; |
399
|
|
|
|
|
|
|
|
400
|
2710
|
100
|
|
|
|
6964
|
return unless exists $options->{trigger}; |
401
|
|
|
|
|
|
|
|
402
|
|
|
|
|
|
|
( 'CODE' eq ref $options->{trigger} ) |
403
|
29
|
100
|
|
|
|
133
|
|| throw_exception( TriggerMustBeACodeRef => attribute_name => $name, |
404
|
|
|
|
|
|
|
params => $options, |
405
|
|
|
|
|
|
|
); |
406
|
|
|
|
|
|
|
} |
407
|
|
|
|
|
|
|
|
408
|
|
|
|
|
|
|
sub _process_auto_deref_option { |
409
|
2707
|
|
|
2707
|
|
5243
|
my ( $class, $name, $options ) = @_; |
410
|
|
|
|
|
|
|
|
411
|
2707
|
100
|
|
|
|
7073
|
return unless $options->{auto_deref}; |
412
|
|
|
|
|
|
|
|
413
|
|
|
|
|
|
|
( exists $options->{type_constraint} ) |
414
|
13
|
100
|
|
|
|
36
|
|| throw_exception( CannotAutoDerefWithoutIsa => attribute_name => $name, |
415
|
|
|
|
|
|
|
params => $options, |
416
|
|
|
|
|
|
|
); |
417
|
|
|
|
|
|
|
|
418
|
|
|
|
|
|
|
( $options->{type_constraint}->is_a_type_of('ArrayRef') |
419
|
12
|
100
|
100
|
|
|
50
|
|| $options->{type_constraint}->is_a_type_of('HashRef') ) |
420
|
|
|
|
|
|
|
|| throw_exception( AutoDeRefNeedsArrayRefOrHashRef => attribute_name => $name, |
421
|
|
|
|
|
|
|
params => $options, |
422
|
|
|
|
|
|
|
); |
423
|
|
|
|
|
|
|
} |
424
|
|
|
|
|
|
|
|
425
|
|
|
|
|
|
|
sub _process_lazy_build_option { |
426
|
2736
|
|
|
2736
|
|
5298
|
my ( $class, $name, $options ) = @_; |
427
|
|
|
|
|
|
|
|
428
|
2736
|
100
|
|
|
|
6725
|
return unless $options->{lazy_build}; |
429
|
|
|
|
|
|
|
|
430
|
|
|
|
|
|
|
throw_exception( CannotUseLazyBuildAndDefaultSimultaneously => attribute_name => $name, |
431
|
|
|
|
|
|
|
params => $options, |
432
|
|
|
|
|
|
|
) |
433
|
24
|
100
|
|
|
|
79
|
if exists $options->{default}; |
434
|
|
|
|
|
|
|
|
435
|
23
|
|
|
|
|
52
|
$options->{lazy} = 1; |
436
|
23
|
|
33
|
|
|
177
|
$options->{builder} ||= "_build_${name}"; |
437
|
|
|
|
|
|
|
|
438
|
23
|
100
|
|
|
|
81
|
if ( $name =~ /^_/ ) { |
439
|
1
|
|
33
|
|
|
9
|
$options->{clearer} ||= "_clear${name}"; |
440
|
1
|
|
33
|
|
|
5
|
$options->{predicate} ||= "_has${name}"; |
441
|
|
|
|
|
|
|
} |
442
|
|
|
|
|
|
|
else { |
443
|
22
|
|
33
|
|
|
140
|
$options->{clearer} ||= "clear_${name}"; |
444
|
22
|
|
33
|
|
|
128
|
$options->{predicate} ||= "has_${name}"; |
445
|
|
|
|
|
|
|
} |
446
|
|
|
|
|
|
|
} |
447
|
|
|
|
|
|
|
|
448
|
|
|
|
|
|
|
sub _process_lazy_option { |
449
|
2704
|
|
|
2704
|
|
5259
|
my ( $class, $name, $options ) = @_; |
450
|
|
|
|
|
|
|
|
451
|
2704
|
100
|
|
|
|
6555
|
return unless $options->{lazy}; |
452
|
|
|
|
|
|
|
|
453
|
|
|
|
|
|
|
( exists $options->{default} || defined $options->{builder} ) |
454
|
525
|
100
|
100
|
|
|
2832
|
|| throw_exception( LazyAttributeNeedsADefault => params => $options, |
455
|
|
|
|
|
|
|
attribute_name => $name, |
456
|
|
|
|
|
|
|
); |
457
|
|
|
|
|
|
|
} |
458
|
|
|
|
|
|
|
|
459
|
|
|
|
|
|
|
sub _process_required_option { |
460
|
2702
|
|
|
2702
|
|
5301
|
my ( $class, $name, $options ) = @_; |
461
|
|
|
|
|
|
|
|
462
|
2702
|
100
|
33
|
|
|
12422
|
if ( |
|
|
|
100
|
|
|
|
|
463
|
|
|
|
|
|
|
$options->{required} |
464
|
|
|
|
|
|
|
&& !( |
465
|
|
|
|
|
|
|
( !exists $options->{init_arg} || defined $options->{init_arg} ) |
466
|
|
|
|
|
|
|
|| exists $options->{default} |
467
|
|
|
|
|
|
|
|| defined $options->{builder} |
468
|
|
|
|
|
|
|
) |
469
|
|
|
|
|
|
|
) { |
470
|
1
|
|
|
|
|
4
|
throw_exception( RequiredAttributeNeedsADefault => params => $options, |
471
|
|
|
|
|
|
|
attribute_name => $name, |
472
|
|
|
|
|
|
|
); |
473
|
|
|
|
|
|
|
} |
474
|
|
|
|
|
|
|
} |
475
|
|
|
|
|
|
|
|
476
|
|
|
|
|
|
|
sub initialize_instance_slot { |
477
|
6170
|
|
|
6170
|
1
|
11571
|
my ($self, $meta_instance, $instance, $params) = @_; |
478
|
6170
|
|
|
|
|
14782
|
my $init_arg = $self->init_arg(); |
479
|
|
|
|
|
|
|
# try to fetch the init arg from the %params ... |
480
|
|
|
|
|
|
|
|
481
|
6170
|
|
|
|
|
8461
|
my $val; |
482
|
|
|
|
|
|
|
my $value_is_set; |
483
|
6170
|
100
|
100
|
|
|
20262
|
if ( defined($init_arg) and exists $params->{$init_arg}) { |
484
|
1932
|
|
|
|
|
3157
|
$val = $params->{$init_arg}; |
485
|
1932
|
|
|
|
|
2565
|
$value_is_set = 1; |
486
|
|
|
|
|
|
|
} |
487
|
|
|
|
|
|
|
else { |
488
|
|
|
|
|
|
|
# skip it if it's lazy |
489
|
4238
|
100
|
|
|
|
130278
|
return if $self->is_lazy; |
490
|
|
|
|
|
|
|
# and die if it's required and doesn't have a default value |
491
|
3932
|
|
|
|
|
11111
|
my $class_name = blessed( $instance ); |
492
|
3932
|
50
|
100
|
|
|
105224
|
throw_exception( |
|
|
100
|
100
|
|
|
|
|
493
|
|
|
|
|
|
|
'AttributeIsRequired', |
494
|
|
|
|
|
|
|
attribute_name => $self->name, |
495
|
|
|
|
|
|
|
( defined $init_arg ? ( attribute_init_arg => $init_arg ) : () ), |
496
|
|
|
|
|
|
|
class_name => $class_name, |
497
|
|
|
|
|
|
|
params => $params, |
498
|
|
|
|
|
|
|
) |
499
|
|
|
|
|
|
|
if $self->is_required |
500
|
|
|
|
|
|
|
&& !$self->has_default |
501
|
|
|
|
|
|
|
&& !$self->has_builder; |
502
|
|
|
|
|
|
|
|
503
|
|
|
|
|
|
|
# if nothing was in the %params, we can use the |
504
|
|
|
|
|
|
|
# attribute's default value (if it has one) |
505
|
3880
|
100
|
|
|
|
9518
|
if ($self->has_default) { |
|
|
100
|
|
|
|
|
|
506
|
2289
|
|
|
|
|
4900
|
$val = $self->default($instance); |
507
|
2289
|
|
|
|
|
8222
|
$value_is_set = 1; |
508
|
|
|
|
|
|
|
} |
509
|
|
|
|
|
|
|
elsif ($self->has_builder) { |
510
|
14
|
|
|
|
|
45
|
$val = $self->_call_builder($instance); |
511
|
12
|
|
|
|
|
53
|
$value_is_set = 1; |
512
|
|
|
|
|
|
|
} |
513
|
|
|
|
|
|
|
} |
514
|
|
|
|
|
|
|
|
515
|
5810
|
100
|
|
|
|
12778
|
return unless $value_is_set; |
516
|
|
|
|
|
|
|
|
517
|
4233
|
|
|
|
|
8535
|
$val = $self->_coerce_and_verify( $val, $instance ); |
518
|
|
|
|
|
|
|
|
519
|
3289
|
|
|
|
|
10943
|
$self->set_initial_value($instance, $val); |
520
|
|
|
|
|
|
|
|
521
|
3289
|
100
|
100
|
|
|
84206
|
if ( ref $val && $self->is_weak_ref ) { |
522
|
47
|
|
|
|
|
190
|
$self->_weaken_value($instance); |
523
|
|
|
|
|
|
|
} |
524
|
|
|
|
|
|
|
} |
525
|
|
|
|
|
|
|
|
526
|
|
|
|
|
|
|
sub _call_builder { |
527
|
14
|
|
|
14
|
|
34
|
my ( $self, $instance ) = @_; |
528
|
|
|
|
|
|
|
|
529
|
14
|
|
|
|
|
43
|
my $builder = $self->builder(); |
530
|
|
|
|
|
|
|
|
531
|
14
|
100
|
|
|
|
135
|
return $instance->$builder() |
532
|
|
|
|
|
|
|
if $instance->can( $self->builder ); |
533
|
|
|
|
|
|
|
|
534
|
2
|
|
|
|
|
9
|
throw_exception( BuilderDoesNotExist => instance => $instance, |
535
|
|
|
|
|
|
|
attribute => $self, |
536
|
|
|
|
|
|
|
); |
537
|
|
|
|
|
|
|
} |
538
|
|
|
|
|
|
|
|
539
|
|
|
|
|
|
|
## Slot management |
540
|
|
|
|
|
|
|
|
541
|
|
|
|
|
|
|
sub _make_initializer_writer_callback { |
542
|
9
|
|
|
9
|
|
16
|
my $self = shift; |
543
|
9
|
|
|
|
|
15
|
my ($meta_instance, $instance, $slot_name) = @_; |
544
|
9
|
|
|
|
|
32
|
my $old_callback = $self->SUPER::_make_initializer_writer_callback(@_); |
545
|
|
|
|
|
|
|
return sub { |
546
|
9
|
|
|
9
|
|
8542
|
$old_callback->($self->_coerce_and_verify($_[0], $instance)); |
547
|
9
|
|
|
|
|
32
|
}; |
548
|
|
|
|
|
|
|
} |
549
|
|
|
|
|
|
|
|
550
|
|
|
|
|
|
|
sub set_value { |
551
|
53
|
|
|
53
|
1
|
1037
|
my ($self, $instance, @args) = @_; |
552
|
53
|
|
|
|
|
82
|
my $value = $args[0]; |
553
|
|
|
|
|
|
|
|
554
|
53
|
|
|
|
|
137
|
my $class_name = blessed( $instance ); |
555
|
53
|
100
|
66
|
|
|
1667
|
if ($self->is_required and not @args) { |
556
|
1
|
50
|
|
|
|
8
|
throw_exception( |
557
|
|
|
|
|
|
|
'AttributeIsRequired', |
558
|
|
|
|
|
|
|
attribute_name => $self->name, |
559
|
|
|
|
|
|
|
( |
560
|
|
|
|
|
|
|
defined $self->init_arg |
561
|
|
|
|
|
|
|
? ( attribute_init_arg => $self->init_arg ) |
562
|
|
|
|
|
|
|
: () |
563
|
|
|
|
|
|
|
), |
564
|
|
|
|
|
|
|
class_name => $class_name, |
565
|
|
|
|
|
|
|
); |
566
|
|
|
|
|
|
|
} |
567
|
|
|
|
|
|
|
|
568
|
52
|
|
|
|
|
121
|
$value = $self->_coerce_and_verify( $value, $instance ); |
569
|
|
|
|
|
|
|
|
570
|
52
|
|
|
|
|
73
|
my @old; |
571
|
52
|
100
|
100
|
|
|
1400
|
if ( $self->has_trigger && $self->has_value($instance) ) { |
572
|
1
|
|
|
|
|
5
|
@old = $self->get_value($instance, 'for trigger'); |
573
|
|
|
|
|
|
|
} |
574
|
|
|
|
|
|
|
|
575
|
52
|
|
|
|
|
195
|
$self->SUPER::set_value($instance, $value); |
576
|
|
|
|
|
|
|
|
577
|
52
|
50
|
33
|
|
|
113
|
if ( ref $value && $self->is_weak_ref ) { |
578
|
0
|
|
|
|
|
0
|
$self->_weaken_value($instance); |
579
|
|
|
|
|
|
|
} |
580
|
|
|
|
|
|
|
|
581
|
52
|
100
|
|
|
|
1530
|
if ($self->has_trigger) { |
582
|
2
|
|
|
|
|
49
|
$self->trigger->($instance, $value, @old); |
583
|
|
|
|
|
|
|
} |
584
|
|
|
|
|
|
|
} |
585
|
|
|
|
|
|
|
|
586
|
|
|
|
|
|
|
sub _inline_set_value { |
587
|
3648
|
|
|
3648
|
|
6479
|
my $self = shift; |
588
|
3648
|
|
|
|
|
8355
|
my ($instance, $value, $tc, $coercion, $message, $for_constructor) = @_; |
589
|
|
|
|
|
|
|
|
590
|
3648
|
|
|
|
|
5781
|
my $old = '@old'; |
591
|
3648
|
|
|
|
|
5249
|
my $copy = '$val'; |
592
|
3648
|
|
100
|
|
|
10191
|
$tc ||= '$type_constraint'; |
593
|
3648
|
|
100
|
|
|
8779
|
$coercion ||= '$type_coercion'; |
594
|
3648
|
|
100
|
|
|
8670
|
$message ||= '$type_message'; |
595
|
|
|
|
|
|
|
|
596
|
3648
|
|
|
|
|
4945
|
my @code; |
597
|
3648
|
100
|
|
|
|
8291
|
if ($self->_writer_value_needs_copy) { |
598
|
42
|
|
|
|
|
213
|
push @code, $self->_inline_copy_value($value, $copy); |
599
|
42
|
|
|
|
|
96
|
$value = $copy; |
600
|
|
|
|
|
|
|
} |
601
|
|
|
|
|
|
|
|
602
|
|
|
|
|
|
|
# constructors already handle required checks |
603
|
3648
|
100
|
|
|
|
10227
|
push @code, $self->_inline_check_required |
604
|
|
|
|
|
|
|
unless $for_constructor; |
605
|
|
|
|
|
|
|
|
606
|
3648
|
|
|
|
|
10334
|
push @code, $self->_inline_tc_code($value, $tc, $coercion, $message); |
607
|
|
|
|
|
|
|
|
608
|
|
|
|
|
|
|
# constructors do triggers all at once at the end |
609
|
3648
|
100
|
|
|
|
11249
|
push @code, $self->_inline_get_old_value_for_trigger($instance, $old) |
610
|
|
|
|
|
|
|
unless $for_constructor; |
611
|
|
|
|
|
|
|
|
612
|
3648
|
|
|
|
|
13736
|
push @code, ( |
613
|
|
|
|
|
|
|
$self->SUPER::_inline_set_value($instance, $value), |
614
|
|
|
|
|
|
|
$self->_inline_weaken_value($instance, $value), |
615
|
|
|
|
|
|
|
); |
616
|
|
|
|
|
|
|
|
617
|
|
|
|
|
|
|
# constructors do triggers all at once at the end |
618
|
3648
|
100
|
|
|
|
11264
|
push @code, $self->_inline_trigger($instance, $value, $old) |
619
|
|
|
|
|
|
|
unless $for_constructor; |
620
|
|
|
|
|
|
|
|
621
|
3648
|
|
|
|
|
13876
|
return @code; |
622
|
|
|
|
|
|
|
} |
623
|
|
|
|
|
|
|
|
624
|
|
|
|
|
|
|
sub _writer_value_needs_copy { |
625
|
4362
|
|
|
4362
|
|
6336
|
my $self = shift; |
626
|
4362
|
|
|
|
|
114489
|
return $self->should_coerce; |
627
|
|
|
|
|
|
|
} |
628
|
|
|
|
|
|
|
|
629
|
|
|
|
|
|
|
sub _inline_copy_value { |
630
|
42
|
|
|
42
|
|
81
|
my $self = shift; |
631
|
42
|
|
|
|
|
104
|
my ($value, $copy) = @_; |
632
|
|
|
|
|
|
|
|
633
|
42
|
|
|
|
|
189
|
return 'my ' . $copy . ' = ' . $value . ';' |
634
|
|
|
|
|
|
|
} |
635
|
|
|
|
|
|
|
|
636
|
|
|
|
|
|
|
sub _inline_check_required { |
637
|
1078
|
|
|
1078
|
|
1971
|
my $self = shift; |
638
|
|
|
|
|
|
|
|
639
|
1078
|
100
|
|
|
|
13390
|
return unless $self->is_required; |
640
|
|
|
|
|
|
|
|
641
|
13
|
|
|
|
|
103
|
my $throw_params = sprintf( <<'EOF', quotemeta( $self->name ) ); |
642
|
|
|
|
|
|
|
attribute_name => "%s", |
643
|
|
|
|
|
|
|
class_name => $class_name, |
644
|
|
|
|
|
|
|
EOF |
645
|
13
|
50
|
|
|
|
120
|
$throw_params .= sprintf( |
646
|
|
|
|
|
|
|
'attribute_init_arg => "%s",', |
647
|
|
|
|
|
|
|
quotemeta( $self->init_arg ) |
648
|
|
|
|
|
|
|
) if defined $self->init_arg; |
649
|
|
|
|
|
|
|
|
650
|
13
|
|
|
|
|
50
|
my $throw = $self->_inline_throw_exception( |
651
|
|
|
|
|
|
|
'AttributeIsRequired', |
652
|
|
|
|
|
|
|
$throw_params |
653
|
|
|
|
|
|
|
); |
654
|
|
|
|
|
|
|
|
655
|
13
|
|
|
|
|
48
|
return sprintf( <<'EOF', $throw ); |
656
|
|
|
|
|
|
|
if ( @_ < 2 ) { |
657
|
|
|
|
|
|
|
%s; |
658
|
|
|
|
|
|
|
} |
659
|
|
|
|
|
|
|
EOF |
660
|
|
|
|
|
|
|
} |
661
|
|
|
|
|
|
|
|
662
|
|
|
|
|
|
|
sub _inline_tc_code { |
663
|
3762
|
|
|
3762
|
|
5808
|
my $self = shift; |
664
|
3762
|
|
|
|
|
8064
|
my ($value, $tc, $coercion, $message, $is_lazy) = @_; |
665
|
|
|
|
|
|
|
return ( |
666
|
3762
|
|
|
|
|
8968
|
$self->_inline_check_coercion( |
667
|
|
|
|
|
|
|
$value, $tc, $coercion, $is_lazy, |
668
|
|
|
|
|
|
|
), |
669
|
|
|
|
|
|
|
$self->_inline_check_constraint( |
670
|
|
|
|
|
|
|
$value, $tc, $message, $is_lazy, |
671
|
|
|
|
|
|
|
), |
672
|
|
|
|
|
|
|
); |
673
|
|
|
|
|
|
|
} |
674
|
|
|
|
|
|
|
|
675
|
|
|
|
|
|
|
sub _inline_check_coercion { |
676
|
4498
|
|
|
4498
|
|
6704
|
my $self = shift; |
677
|
4498
|
|
|
|
|
8493
|
my ($value, $tc, $coercion) = @_; |
678
|
|
|
|
|
|
|
|
679
|
4498
|
100
|
66
|
|
|
106128
|
return unless $self->should_coerce && $self->type_constraint->has_coercion; |
680
|
|
|
|
|
|
|
|
681
|
146
|
100
|
|
|
|
3694
|
if ( $self->type_constraint->can_be_inlined ) { |
682
|
|
|
|
|
|
|
return ( |
683
|
38
|
|
|
|
|
1114
|
'if (! (' . $self->type_constraint->_inline_check($value) . ')) {', |
684
|
|
|
|
|
|
|
$value . ' = ' . $coercion . '->(' . $value . ');', |
685
|
|
|
|
|
|
|
'}', |
686
|
|
|
|
|
|
|
); |
687
|
|
|
|
|
|
|
} |
688
|
|
|
|
|
|
|
else { |
689
|
|
|
|
|
|
|
return ( |
690
|
108
|
|
|
|
|
716
|
'if (!' . $tc . '->(' . $value . ')) {', |
691
|
|
|
|
|
|
|
$value . ' = ' . $coercion . '->(' . $value . ');', |
692
|
|
|
|
|
|
|
'}', |
693
|
|
|
|
|
|
|
); |
694
|
|
|
|
|
|
|
} |
695
|
|
|
|
|
|
|
} |
696
|
|
|
|
|
|
|
|
697
|
|
|
|
|
|
|
sub _inline_check_constraint { |
698
|
4498
|
|
|
4498
|
|
7437
|
my $self = shift; |
699
|
4498
|
|
|
|
|
8537
|
my ($value, $tc, $message) = @_; |
700
|
|
|
|
|
|
|
|
701
|
4498
|
100
|
|
|
|
115002
|
return unless $self->has_type_constraint; |
702
|
|
|
|
|
|
|
|
703
|
3590
|
|
|
|
|
11554
|
my $attr_name = quotemeta($self->name); |
704
|
|
|
|
|
|
|
|
705
|
3590
|
100
|
|
|
|
92706
|
if ( $self->type_constraint->can_be_inlined ) { |
706
|
|
|
|
|
|
|
return ( |
707
|
3377
|
|
|
|
|
84362
|
'if (! (' . $self->type_constraint->_inline_check($value) . ')) {', |
708
|
|
|
|
|
|
|
'my $msg = do { local $_ = ' . $value . '; ' |
709
|
|
|
|
|
|
|
. $message . '->(' . $value . ');' |
710
|
|
|
|
|
|
|
. '};'. |
711
|
|
|
|
|
|
|
$self->_inline_throw_exception( ValidationFailedForInlineTypeConstraint => |
712
|
|
|
|
|
|
|
'type_constraint_message => $msg , '. |
713
|
|
|
|
|
|
|
'class_name => $class_name, '. |
714
|
|
|
|
|
|
|
'attribute_name => "'.$attr_name.'",'. |
715
|
|
|
|
|
|
|
'value => '.$value |
716
|
|
|
|
|
|
|
).';', |
717
|
|
|
|
|
|
|
'}', |
718
|
|
|
|
|
|
|
); |
719
|
|
|
|
|
|
|
} |
720
|
|
|
|
|
|
|
else { |
721
|
|
|
|
|
|
|
return ( |
722
|
213
|
|
|
|
|
1241
|
'if (!' . $tc . '->(' . $value . ')) {', |
723
|
|
|
|
|
|
|
'my $msg = do { local $_ = ' . $value . '; ' |
724
|
|
|
|
|
|
|
. $message . '->(' . $value . ');' |
725
|
|
|
|
|
|
|
. '};'. |
726
|
|
|
|
|
|
|
$self->_inline_throw_exception( ValidationFailedForInlineTypeConstraint => |
727
|
|
|
|
|
|
|
'type_constraint_message => $msg , '. |
728
|
|
|
|
|
|
|
'class_name => $class_name, '. |
729
|
|
|
|
|
|
|
'attribute_name => "'.$attr_name.'",'. |
730
|
|
|
|
|
|
|
'value => '.$value |
731
|
|
|
|
|
|
|
).';', |
732
|
|
|
|
|
|
|
'}', |
733
|
|
|
|
|
|
|
); |
734
|
|
|
|
|
|
|
} |
735
|
|
|
|
|
|
|
} |
736
|
|
|
|
|
|
|
|
737
|
|
|
|
|
|
|
sub _inline_get_old_value_for_trigger { |
738
|
1334
|
|
|
1334
|
|
2511
|
my $self = shift; |
739
|
1334
|
|
|
|
|
2964
|
my ($instance, $old) = @_; |
740
|
|
|
|
|
|
|
|
741
|
1334
|
100
|
|
|
|
19457
|
return unless $self->has_trigger; |
742
|
|
|
|
|
|
|
|
743
|
|
|
|
|
|
|
return ( |
744
|
58
|
|
|
|
|
324
|
'my ' . $old . ' = ' . $self->_inline_instance_has($instance), |
745
|
|
|
|
|
|
|
'? ' . $self->_inline_instance_get($instance), |
746
|
|
|
|
|
|
|
': ();', |
747
|
|
|
|
|
|
|
); |
748
|
|
|
|
|
|
|
} |
749
|
|
|
|
|
|
|
|
750
|
|
|
|
|
|
|
sub _inline_weaken_value { |
751
|
4310
|
|
|
4310
|
|
7919
|
my $self = shift; |
752
|
4310
|
|
|
|
|
7800
|
my ($instance, $value) = @_; |
753
|
|
|
|
|
|
|
|
754
|
4310
|
100
|
|
|
|
116458
|
return unless $self->is_weak_ref; |
755
|
|
|
|
|
|
|
|
756
|
783
|
|
|
|
|
3475
|
my $mi = $self->associated_class->get_meta_instance; |
757
|
|
|
|
|
|
|
return ( |
758
|
783
|
|
|
|
|
3962
|
$mi->inline_weaken_slot_value($instance, $self->name), |
759
|
|
|
|
|
|
|
'if ref ' . $value . ';', |
760
|
|
|
|
|
|
|
); |
761
|
|
|
|
|
|
|
} |
762
|
|
|
|
|
|
|
|
763
|
|
|
|
|
|
|
sub _inline_trigger { |
764
|
1691
|
|
|
1691
|
|
3243
|
my $self = shift; |
765
|
1691
|
|
|
|
|
3666
|
my ($instance, $value, $old) = @_; |
766
|
|
|
|
|
|
|
|
767
|
1691
|
100
|
|
|
|
30827
|
return unless $self->has_trigger; |
768
|
|
|
|
|
|
|
|
769
|
93
|
|
|
|
|
418
|
return '$trigger->(' . $instance . ', ' . $value . ', ' . $old . ');'; |
770
|
|
|
|
|
|
|
} |
771
|
|
|
|
|
|
|
|
772
|
|
|
|
|
|
|
sub _eval_environment { |
773
|
4290
|
|
|
4290
|
|
7067
|
my $self = shift; |
774
|
|
|
|
|
|
|
|
775
|
4290
|
|
|
|
|
7629
|
my $env = { }; |
776
|
|
|
|
|
|
|
|
777
|
4290
|
100
|
|
|
|
123504
|
$env->{'$trigger'} = \($self->trigger) |
778
|
|
|
|
|
|
|
if $self->has_trigger; |
779
|
4290
|
100
|
|
|
|
18520
|
$env->{'$attr_default'} = \($self->default) |
780
|
|
|
|
|
|
|
if $self->has_default; |
781
|
|
|
|
|
|
|
|
782
|
4290
|
100
|
|
|
|
112251
|
if ($self->has_type_constraint) { |
783
|
3211
|
|
|
|
|
81987
|
my $tc_obj = $self->type_constraint; |
784
|
|
|
|
|
|
|
|
785
|
3211
|
100
|
|
|
|
10844
|
$env->{'$type_constraint'} = \( |
786
|
|
|
|
|
|
|
$tc_obj->_compiled_type_constraint |
787
|
|
|
|
|
|
|
) unless $tc_obj->can_be_inlined; |
788
|
|
|
|
|
|
|
# these two could probably get inlined versions too |
789
|
3211
|
100
|
|
|
|
88709
|
$env->{'$type_coercion'} = \( |
790
|
|
|
|
|
|
|
$tc_obj->coercion->_compiled_type_coercion |
791
|
|
|
|
|
|
|
) if $tc_obj->has_coercion; |
792
|
3211
|
100
|
|
|
|
84763
|
$env->{'$type_message'} = \( |
793
|
|
|
|
|
|
|
$tc_obj->has_message ? $tc_obj->message : $tc_obj->_default_message |
794
|
|
|
|
|
|
|
); |
795
|
|
|
|
|
|
|
|
796
|
3211
|
|
|
|
|
10324
|
$env = { %$env, %{ $tc_obj->inline_environment } }; |
|
3211
|
|
|
|
|
8273
|
|
797
|
|
|
|
|
|
|
} |
798
|
|
|
|
|
|
|
|
799
|
4290
|
|
|
|
|
24484
|
$env->{'$class_name'} = \($self->associated_class->name); |
800
|
|
|
|
|
|
|
|
801
|
|
|
|
|
|
|
# XXX ugh, fix these |
802
|
4290
|
100
|
100
|
|
|
13481
|
$env->{'$attr'} = \$self |
803
|
|
|
|
|
|
|
if $self->has_initializer && $self->is_lazy; |
804
|
|
|
|
|
|
|
# pretty sure this is only going to be closed over if you use a custom |
805
|
|
|
|
|
|
|
# error class at this point, but we should still get rid of this |
806
|
|
|
|
|
|
|
# at some point |
807
|
4290
|
|
|
|
|
12689
|
$env->{'$meta'} = \($self->associated_class); |
808
|
|
|
|
|
|
|
|
809
|
4290
|
|
|
|
|
12104
|
return $env; |
810
|
|
|
|
|
|
|
} |
811
|
|
|
|
|
|
|
|
812
|
|
|
|
|
|
|
sub _weaken_value { |
813
|
48
|
|
|
48
|
|
126
|
my ( $self, $instance ) = @_; |
814
|
|
|
|
|
|
|
|
815
|
48
|
|
|
|
|
271
|
my $meta_instance = Class::MOP::Class->initialize( blessed($instance) ) |
816
|
|
|
|
|
|
|
->get_meta_instance; |
817
|
|
|
|
|
|
|
|
818
|
48
|
|
|
|
|
301
|
$meta_instance->weaken_slot_value( $instance, $self->name ); |
819
|
|
|
|
|
|
|
} |
820
|
|
|
|
|
|
|
|
821
|
|
|
|
|
|
|
sub get_value { |
822
|
69
|
|
|
69
|
1
|
568
|
my ($self, $instance, $for_trigger) = @_; |
823
|
|
|
|
|
|
|
|
824
|
69
|
100
|
|
|
|
2194
|
if ($self->is_lazy) { |
825
|
7
|
100
|
|
|
|
31
|
unless ($self->has_value($instance)) { |
826
|
3
|
|
|
|
|
6
|
my $value; |
827
|
3
|
50
|
|
|
|
10
|
if ($self->has_default) { |
|
|
0
|
|
|
|
|
|
828
|
3
|
|
|
|
|
9
|
$value = $self->default($instance); |
829
|
|
|
|
|
|
|
} elsif ( $self->has_builder ) { |
830
|
0
|
|
|
|
|
0
|
$value = $self->_call_builder($instance); |
831
|
|
|
|
|
|
|
} |
832
|
|
|
|
|
|
|
|
833
|
3
|
|
|
|
|
16
|
$value = $self->_coerce_and_verify( $value, $instance ); |
834
|
|
|
|
|
|
|
|
835
|
3
|
|
|
|
|
30
|
$self->set_initial_value($instance, $value); |
836
|
|
|
|
|
|
|
|
837
|
3
|
100
|
66
|
|
|
54
|
if ( ref $value && $self->is_weak_ref ) { |
838
|
1
|
|
|
|
|
4
|
$self->_weaken_value($instance); |
839
|
|
|
|
|
|
|
} |
840
|
|
|
|
|
|
|
} |
841
|
|
|
|
|
|
|
} |
842
|
|
|
|
|
|
|
|
843
|
69
|
100
|
66
|
|
|
2039
|
if ( $self->should_auto_deref && ! $for_trigger ) { |
844
|
|
|
|
|
|
|
|
845
|
1
|
|
|
|
|
27
|
my $type_constraint = $self->type_constraint; |
846
|
|
|
|
|
|
|
|
847
|
1
|
50
|
|
|
|
5
|
if ($type_constraint->is_a_type_of('ArrayRef')) { |
|
|
50
|
|
|
|
|
|
848
|
0
|
|
|
|
|
0
|
my $rv = $self->SUPER::get_value($instance); |
849
|
0
|
0
|
|
|
|
0
|
return unless defined $rv; |
850
|
0
|
0
|
|
|
|
0
|
return wantarray ? @{ $rv } : $rv; |
|
0
|
|
|
|
|
0
|
|
851
|
|
|
|
|
|
|
} |
852
|
|
|
|
|
|
|
elsif ($type_constraint->is_a_type_of('HashRef')) { |
853
|
0
|
|
|
|
|
0
|
my $rv = $self->SUPER::get_value($instance); |
854
|
0
|
0
|
|
|
|
0
|
return unless defined $rv; |
855
|
0
|
0
|
|
|
|
0
|
return wantarray ? %{ $rv } : $rv; |
|
0
|
|
|
|
|
0
|
|
856
|
|
|
|
|
|
|
} |
857
|
|
|
|
|
|
|
else { |
858
|
1
|
|
|
|
|
24
|
throw_exception( CannotAutoDereferenceTypeConstraint => type_name => $type_constraint->name, |
859
|
|
|
|
|
|
|
instance => $instance, |
860
|
|
|
|
|
|
|
attribute => $self |
861
|
|
|
|
|
|
|
); |
862
|
|
|
|
|
|
|
} |
863
|
|
|
|
|
|
|
|
864
|
|
|
|
|
|
|
} |
865
|
|
|
|
|
|
|
else { |
866
|
|
|
|
|
|
|
|
867
|
68
|
|
|
|
|
249
|
return $self->SUPER::get_value($instance); |
868
|
|
|
|
|
|
|
} |
869
|
|
|
|
|
|
|
} |
870
|
|
|
|
|
|
|
|
871
|
|
|
|
|
|
|
sub _inline_get_value { |
872
|
3002
|
|
|
3002
|
|
6170
|
my $self = shift; |
873
|
3002
|
|
|
|
|
6954
|
my ($instance, $tc, $coercion, $message) = @_; |
874
|
|
|
|
|
|
|
|
875
|
3002
|
|
|
|
|
11577
|
my $slot_access = $self->_inline_instance_get($instance); |
876
|
3002
|
|
50
|
|
|
14572
|
$tc ||= '$type_constraint'; |
877
|
3002
|
|
50
|
|
|
11584
|
$coercion ||= '$type_coercion'; |
878
|
3002
|
|
50
|
|
|
11661
|
$message ||= '$type_message'; |
879
|
|
|
|
|
|
|
|
880
|
|
|
|
|
|
|
return ( |
881
|
3002
|
|
|
|
|
9227
|
$self->_inline_check_lazy($instance, $tc, $coercion, $message), |
882
|
|
|
|
|
|
|
$self->_inline_return_auto_deref($slot_access), |
883
|
|
|
|
|
|
|
); |
884
|
|
|
|
|
|
|
} |
885
|
|
|
|
|
|
|
|
886
|
|
|
|
|
|
|
sub _inline_check_lazy { |
887
|
4118
|
|
|
4118
|
|
7101
|
my $self = shift; |
888
|
4118
|
|
|
|
|
9192
|
my ($instance, $tc, $coercion, $message) = @_; |
889
|
|
|
|
|
|
|
|
890
|
4118
|
100
|
|
|
|
115314
|
return unless $self->is_lazy; |
891
|
|
|
|
|
|
|
|
892
|
662
|
|
|
|
|
3134
|
my $slot_exists = $self->_inline_instance_has($instance); |
893
|
|
|
|
|
|
|
|
894
|
|
|
|
|
|
|
return ( |
895
|
662
|
|
|
|
|
3916
|
'if (!' . $slot_exists . ') {', |
896
|
|
|
|
|
|
|
$self->_inline_init_from_default($instance, '$default', $tc, $coercion, $message, 'lazy'), |
897
|
|
|
|
|
|
|
'}', |
898
|
|
|
|
|
|
|
); |
899
|
|
|
|
|
|
|
} |
900
|
|
|
|
|
|
|
|
901
|
|
|
|
|
|
|
sub _inline_init_from_default { |
902
|
662
|
|
|
662
|
|
1293
|
my $self = shift; |
903
|
662
|
|
|
|
|
1817
|
my ($instance, $default, $tc, $coercion, $message, $for_lazy) = @_; |
904
|
|
|
|
|
|
|
|
905
|
662
|
50
|
66
|
|
|
2552
|
if (!($self->has_default || $self->has_builder)) { |
906
|
0
|
|
|
|
|
0
|
throw_exception( LazyAttributeNeedsADefault => attribute => $self ); |
907
|
|
|
|
|
|
|
} |
908
|
|
|
|
|
|
|
|
909
|
|
|
|
|
|
|
return ( |
910
|
662
|
100
|
|
|
|
2186
|
$self->_inline_generate_default($instance, $default), |
911
|
|
|
|
|
|
|
# intentionally not using _inline_tc_code, since that can be overridden |
912
|
|
|
|
|
|
|
# to do things like possibly only do member tc checks, which isn't |
913
|
|
|
|
|
|
|
# appropriate for checking the result of a default |
914
|
|
|
|
|
|
|
$self->has_type_constraint |
915
|
|
|
|
|
|
|
? ($self->_inline_check_coercion($default, $tc, $coercion, $for_lazy), |
916
|
|
|
|
|
|
|
$self->_inline_check_constraint($default, $tc, $message, $for_lazy)) |
917
|
|
|
|
|
|
|
: (), |
918
|
|
|
|
|
|
|
$self->_inline_init_slot($instance, $default), |
919
|
|
|
|
|
|
|
$self->_inline_weaken_value($instance, $default), |
920
|
|
|
|
|
|
|
); |
921
|
|
|
|
|
|
|
} |
922
|
|
|
|
|
|
|
|
923
|
|
|
|
|
|
|
sub _inline_generate_default { |
924
|
678
|
|
|
678
|
|
1510
|
my $self = shift; |
925
|
678
|
|
|
|
|
1474
|
my ($instance, $default) = @_; |
926
|
|
|
|
|
|
|
|
927
|
678
|
100
|
|
|
|
2200
|
if ($self->has_default) { |
|
|
50
|
|
|
|
|
|
928
|
209
|
|
|
|
|
472
|
my $source = 'my ' . $default . ' = $attr_default'; |
929
|
209
|
100
|
|
|
|
563
|
$source .= '->(' . $instance . ')' |
930
|
|
|
|
|
|
|
if $self->is_default_a_coderef; |
931
|
209
|
|
|
|
|
6849
|
return $source . ';'; |
932
|
|
|
|
|
|
|
} |
933
|
|
|
|
|
|
|
elsif ($self->has_builder) { |
934
|
469
|
|
|
|
|
3364
|
my $builder = B::perlstring($self->builder); |
935
|
469
|
|
|
|
|
1666
|
my $builder_str = quotemeta($self->builder); |
936
|
469
|
|
|
|
|
1740
|
my $attr_name_str = quotemeta($self->name); |
937
|
|
|
|
|
|
|
return ( |
938
|
469
|
|
|
|
|
4688
|
'my ' . $default . ';', |
939
|
|
|
|
|
|
|
'if (my $builder = ' . $instance . '->can(' . $builder . ')) {', |
940
|
|
|
|
|
|
|
$default . ' = ' . $instance . '->$builder;', |
941
|
|
|
|
|
|
|
'}', |
942
|
|
|
|
|
|
|
'else {', |
943
|
|
|
|
|
|
|
'my $class = ref(' . $instance . ') || ' . $instance . ';', |
944
|
|
|
|
|
|
|
$self->_inline_throw_exception( |
945
|
|
|
|
|
|
|
BuilderMethodNotSupportedForInlineAttribute => |
946
|
|
|
|
|
|
|
'class_name => $class,'. |
947
|
|
|
|
|
|
|
'attribute_name => "'.$attr_name_str.'",'. |
948
|
|
|
|
|
|
|
'instance => '.$instance.','. |
949
|
|
|
|
|
|
|
'builder => "'.$builder_str.'"' |
950
|
|
|
|
|
|
|
) . ';', |
951
|
|
|
|
|
|
|
'}', |
952
|
|
|
|
|
|
|
); |
953
|
|
|
|
|
|
|
} |
954
|
|
|
|
|
|
|
else { |
955
|
0
|
|
|
|
|
0
|
confess( |
956
|
|
|
|
|
|
|
"Can't generate a default for " . $self->name |
957
|
|
|
|
|
|
|
. " since no default or builder was specified" |
958
|
|
|
|
|
|
|
); |
959
|
|
|
|
|
|
|
} |
960
|
|
|
|
|
|
|
} |
961
|
|
|
|
|
|
|
|
962
|
|
|
|
|
|
|
sub _inline_init_slot { |
963
|
662
|
|
|
662
|
|
1318
|
my $self = shift; |
964
|
662
|
|
|
|
|
1454
|
my ($inv, $value) = @_; |
965
|
|
|
|
|
|
|
|
966
|
662
|
100
|
|
|
|
2761
|
if ($self->has_initializer) { |
967
|
2
|
|
|
|
|
9
|
return '$attr->set_initial_value(' . $inv . ', ' . $value . ');'; |
968
|
|
|
|
|
|
|
} |
969
|
|
|
|
|
|
|
else { |
970
|
660
|
|
|
|
|
2737
|
return $self->_inline_instance_set($inv, $value) . ';'; |
971
|
|
|
|
|
|
|
} |
972
|
|
|
|
|
|
|
} |
973
|
|
|
|
|
|
|
|
974
|
|
|
|
|
|
|
sub _inline_return_auto_deref { |
975
|
3002
|
|
|
3002
|
|
5598
|
my $self = shift; |
976
|
|
|
|
|
|
|
|
977
|
3002
|
|
|
|
|
8318
|
return 'return ' . $self->_auto_deref(@_) . ';'; |
978
|
|
|
|
|
|
|
} |
979
|
|
|
|
|
|
|
|
980
|
|
|
|
|
|
|
sub _auto_deref { |
981
|
3002
|
|
|
3002
|
|
4686
|
my $self = shift; |
982
|
3002
|
|
|
|
|
5909
|
my ($ref_value) = @_; |
983
|
|
|
|
|
|
|
|
984
|
3002
|
100
|
|
|
|
72096
|
return $ref_value unless $self->should_auto_deref; |
985
|
|
|
|
|
|
|
|
986
|
10
|
|
|
|
|
261
|
my $type_constraint = $self->type_constraint; |
987
|
|
|
|
|
|
|
|
988
|
10
|
|
|
|
|
17
|
my $sigil; |
989
|
10
|
100
|
|
|
|
35
|
if ($type_constraint->is_a_type_of('ArrayRef')) { |
|
|
50
|
|
|
|
|
|
990
|
7
|
|
|
|
|
16
|
$sigil = '@'; |
991
|
|
|
|
|
|
|
} |
992
|
|
|
|
|
|
|
elsif ($type_constraint->is_a_type_of('HashRef')) { |
993
|
3
|
|
|
|
|
7
|
$sigil = '%'; |
994
|
|
|
|
|
|
|
} |
995
|
|
|
|
|
|
|
else { |
996
|
0
|
|
|
|
|
0
|
confess( |
997
|
|
|
|
|
|
|
'Can not auto de-reference the type constraint \'' |
998
|
|
|
|
|
|
|
. $type_constraint->name |
999
|
|
|
|
|
|
|
. '\'' |
1000
|
|
|
|
|
|
|
); |
1001
|
|
|
|
|
|
|
} |
1002
|
|
|
|
|
|
|
|
1003
|
10
|
|
|
|
|
81
|
return 'wantarray ' |
1004
|
|
|
|
|
|
|
. '? ' . $sigil . '{ (' . $ref_value . ') || return } ' |
1005
|
|
|
|
|
|
|
. ': (' . $ref_value . ')'; |
1006
|
|
|
|
|
|
|
} |
1007
|
|
|
|
|
|
|
|
1008
|
|
|
|
|
|
|
## installing accessors |
1009
|
|
|
|
|
|
|
|
1010
|
5323
|
|
|
5323
|
1
|
32575
|
sub accessor_metaclass { 'Moose::Meta::Method::Accessor' } |
1011
|
|
|
|
|
|
|
|
1012
|
|
|
|
|
|
|
sub install_accessors { |
1013
|
3118
|
|
|
3118
|
1
|
6047
|
my $self = shift; |
1014
|
3118
|
|
|
|
|
13633
|
$self->SUPER::install_accessors(@_); |
1015
|
3118
|
100
|
|
|
|
86025
|
$self->install_delegation if $self->has_handles; |
1016
|
3100
|
|
|
|
|
13320
|
return; |
1017
|
|
|
|
|
|
|
} |
1018
|
|
|
|
|
|
|
|
1019
|
|
|
|
|
|
|
sub _check_associated_methods { |
1020
|
2311
|
|
|
2311
|
|
4194
|
my $self = shift; |
1021
|
2311
|
100
|
100
|
|
|
3412
|
unless ( |
|
|
|
100
|
|
|
|
|
1022
|
2311
|
|
|
|
|
13124
|
@{ $self->associated_methods } |
1023
|
|
|
|
|
|
|
|| ($self->_is_metadata || '') eq 'bare' |
1024
|
|
|
|
|
|
|
) { |
1025
|
2
|
|
|
|
|
282
|
Carp::cluck( |
1026
|
|
|
|
|
|
|
'Attribute (' . $self->name . ') of class ' |
1027
|
|
|
|
|
|
|
. $self->associated_class->name |
1028
|
|
|
|
|
|
|
. ' has no associated methods' |
1029
|
|
|
|
|
|
|
. ' (did you mean to provide an "is" argument?)' |
1030
|
|
|
|
|
|
|
. "\n" |
1031
|
|
|
|
|
|
|
) |
1032
|
|
|
|
|
|
|
} |
1033
|
|
|
|
|
|
|
} |
1034
|
|
|
|
|
|
|
|
1035
|
|
|
|
|
|
|
sub _process_accessors { |
1036
|
3261
|
|
|
3261
|
|
6046
|
my $self = shift; |
1037
|
3261
|
|
|
|
|
7133
|
my ($type, $accessor, $generate_as_inline_methods) = @_; |
1038
|
|
|
|
|
|
|
|
1039
|
3261
|
50
|
50
|
|
|
14867
|
$accessor = ( keys %$accessor )[0] if ( ref($accessor) || '' ) eq 'HASH'; |
1040
|
3261
|
|
|
|
|
13458
|
my $method = $self->associated_class->get_method($accessor); |
1041
|
|
|
|
|
|
|
|
1042
|
3261
|
100
|
100
|
|
|
10253
|
if ( $method |
1043
|
|
|
|
|
|
|
&& $method->isa('Class::MOP::Method::Accessor') ) { |
1044
|
|
|
|
|
|
|
|
1045
|
|
|
|
|
|
|
# This is a special case that is very unlikely to occur outside of the |
1046
|
|
|
|
|
|
|
# Moose bootstrapping process. We do not want to warn if the method |
1047
|
|
|
|
|
|
|
# we're about to replace is for this same attribute, _and_ we're |
1048
|
|
|
|
|
|
|
# replacing a non-inline method with an inlined version. |
1049
|
|
|
|
|
|
|
# |
1050
|
|
|
|
|
|
|
# This would never occur in normal user code because Moose inlines all |
1051
|
|
|
|
|
|
|
# accessors. However, Moose metaclasses are instances of |
1052
|
|
|
|
|
|
|
# Class::MOP::Class, which _does not_ inline accessors by |
1053
|
|
|
|
|
|
|
# default. However, in Class::MOP & Moose.pm, we iterate over all of |
1054
|
|
|
|
|
|
|
# our internal metaclasses and make them immutable after they're fully |
1055
|
|
|
|
|
|
|
# defined. This ends up replacing the attribute accessors. |
1056
|
390
|
100
|
66
|
|
|
1925
|
unless ( $method->associated_attribute->name eq $self->name |
|
|
|
100
|
|
|
|
|
1057
|
|
|
|
|
|
|
&& ( $generate_as_inline_methods && !$method->is_inline ) ) { |
1058
|
|
|
|
|
|
|
|
1059
|
2
|
|
|
|
|
5
|
my $other_attr = $method->associated_attribute; |
1060
|
|
|
|
|
|
|
|
1061
|
2
|
|
|
|
|
6
|
my $msg = sprintf( |
1062
|
|
|
|
|
|
|
'You are overwriting a %s (%s) for the %s attribute', |
1063
|
|
|
|
|
|
|
$method->accessor_type, |
1064
|
|
|
|
|
|
|
$accessor, |
1065
|
|
|
|
|
|
|
$other_attr->name, |
1066
|
|
|
|
|
|
|
); |
1067
|
|
|
|
|
|
|
|
1068
|
2
|
50
|
|
|
|
9
|
if ( my $method_context = $method->definition_context ) { |
1069
|
|
|
|
|
|
|
$msg .= sprintf( |
1070
|
|
|
|
|
|
|
' (defined at %s line %s)', |
1071
|
|
|
|
|
|
|
$method_context->{file}, |
1072
|
|
|
|
|
|
|
$method_context->{line}, |
1073
|
|
|
|
|
|
|
) |
1074
|
|
|
|
|
|
|
if defined $method_context->{file} |
1075
|
2
|
50
|
33
|
|
|
15
|
&& $method_context->{line}; |
1076
|
|
|
|
|
|
|
} |
1077
|
|
|
|
|
|
|
|
1078
|
2
|
|
|
|
|
8
|
$msg .= sprintf( |
1079
|
|
|
|
|
|
|
' with a new %s method for the %s attribute', |
1080
|
|
|
|
|
|
|
$type, |
1081
|
|
|
|
|
|
|
$self->name, |
1082
|
|
|
|
|
|
|
); |
1083
|
|
|
|
|
|
|
|
1084
|
2
|
50
|
|
|
|
8
|
if ( my $self_context = $self->definition_context ) { |
1085
|
|
|
|
|
|
|
$msg .= sprintf( |
1086
|
|
|
|
|
|
|
' (defined at %s line %s)', |
1087
|
|
|
|
|
|
|
$self_context->{file}, |
1088
|
|
|
|
|
|
|
$self_context->{line}, |
1089
|
|
|
|
|
|
|
) |
1090
|
|
|
|
|
|
|
if defined $self_context->{file} |
1091
|
2
|
50
|
33
|
|
|
14
|
&& $self_context->{line}; |
1092
|
|
|
|
|
|
|
} |
1093
|
|
|
|
|
|
|
|
1094
|
2
|
|
|
|
|
306
|
Carp::cluck($msg); |
1095
|
|
|
|
|
|
|
} |
1096
|
|
|
|
|
|
|
} |
1097
|
|
|
|
|
|
|
|
1098
|
3261
|
100
|
100
|
|
|
10164
|
if ( |
|
|
|
100
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
1099
|
|
|
|
|
|
|
$method |
1100
|
|
|
|
|
|
|
&& !$method->is_stub |
1101
|
|
|
|
|
|
|
&& !$method->isa('Class::MOP::Method::Accessor') |
1102
|
|
|
|
|
|
|
&& ( !$self->definition_context |
1103
|
|
|
|
|
|
|
|| $method->package_name eq $self->definition_context->{package} ) |
1104
|
|
|
|
|
|
|
) { |
1105
|
|
|
|
|
|
|
|
1106
|
5
|
|
|
|
|
631
|
Carp::cluck( |
1107
|
|
|
|
|
|
|
"You are overwriting a locally defined method ($accessor) with " |
1108
|
|
|
|
|
|
|
. "an accessor" ); |
1109
|
|
|
|
|
|
|
} |
1110
|
|
|
|
|
|
|
|
1111
|
3261
|
100
|
100
|
|
|
16851
|
if ( !$self->associated_class->has_method($accessor) |
1112
|
|
|
|
|
|
|
&& $self->associated_class->has_package_symbol( '&' . $accessor ) ) { |
1113
|
|
|
|
|
|
|
|
1114
|
1
|
|
|
|
|
104
|
Carp::cluck( |
1115
|
|
|
|
|
|
|
"You are overwriting a locally defined function ($accessor) with " |
1116
|
|
|
|
|
|
|
. "an accessor" ); |
1117
|
|
|
|
|
|
|
} |
1118
|
|
|
|
|
|
|
|
1119
|
3261
|
|
|
|
|
13877
|
$self->SUPER::_process_accessors(@_); |
1120
|
|
|
|
|
|
|
} |
1121
|
|
|
|
|
|
|
|
1122
|
|
|
|
|
|
|
sub remove_accessors { |
1123
|
54
|
|
|
54
|
1
|
92
|
my $self = shift; |
1124
|
54
|
|
|
|
|
273
|
$self->SUPER::remove_accessors(@_); |
1125
|
54
|
100
|
|
|
|
1903
|
$self->remove_delegation if $self->has_handles; |
1126
|
37
|
|
|
|
|
108
|
return; |
1127
|
|
|
|
|
|
|
} |
1128
|
|
|
|
|
|
|
|
1129
|
|
|
|
|
|
|
sub install_delegation { |
1130
|
230
|
|
|
230
|
1
|
485
|
my $self = shift; |
1131
|
|
|
|
|
|
|
|
1132
|
|
|
|
|
|
|
# NOTE: |
1133
|
|
|
|
|
|
|
# Here we canonicalize the 'handles' option |
1134
|
|
|
|
|
|
|
# this will sort out any details and always |
1135
|
|
|
|
|
|
|
# return an hash of methods which we want |
1136
|
|
|
|
|
|
|
# to delegate to, see that method for details |
1137
|
230
|
|
|
|
|
884
|
my %handles = $self->_canonicalize_handles; |
1138
|
|
|
|
|
|
|
|
1139
|
|
|
|
|
|
|
# install the delegation ... |
1140
|
216
|
|
|
|
|
961
|
my $associated_class = $self->associated_class; |
1141
|
216
|
|
|
|
|
815
|
my $class_name = $associated_class->name; |
1142
|
|
|
|
|
|
|
|
1143
|
216
|
|
|
|
|
1174
|
foreach my $handle ( sort keys %handles ) { |
1144
|
1119
|
|
|
|
|
2464
|
my $method_to_call = $handles{$handle}; |
1145
|
1119
|
|
|
|
|
2331
|
my $name = "${class_name}::${handle}"; |
1146
|
|
|
|
|
|
|
|
1147
|
1119
|
100
|
|
|
|
2878
|
if ( my $method = $associated_class->get_method($handle) ) { |
1148
|
6
|
100
|
|
|
|
287
|
throw_exception( |
1149
|
|
|
|
|
|
|
CannotDelegateLocalMethodIsPresent => attribute => $self, |
1150
|
|
|
|
|
|
|
method => $method, |
1151
|
|
|
|
|
|
|
) unless $method->is_stub; |
1152
|
|
|
|
|
|
|
} |
1153
|
|
|
|
|
|
|
|
1154
|
|
|
|
|
|
|
# NOTE: |
1155
|
|
|
|
|
|
|
# handles is not allowed to delegate |
1156
|
|
|
|
|
|
|
# any of these methods, as they will |
1157
|
|
|
|
|
|
|
# override the ones in your class, which |
1158
|
|
|
|
|
|
|
# is almost certainly not what you want. |
1159
|
|
|
|
|
|
|
|
1160
|
|
|
|
|
|
|
# FIXME warn when $handle was explicitly specified, but not if the source is a regex or something |
1161
|
|
|
|
|
|
|
#cluck("Not delegating method '$handle' because it is a core method") and |
1162
|
|
|
|
|
|
|
next |
1163
|
1115
|
100
|
100
|
|
|
14540
|
if $class_name->isa("Moose::Object") |
|
|
|
100
|
|
|
|
|
1164
|
|
|
|
|
|
|
and $handle =~ /^BUILD|DEMOLISH$/ || Moose::Object->can($handle); |
1165
|
|
|
|
|
|
|
|
1166
|
1082
|
|
|
|
|
3740
|
my $method = $self->_make_delegation_method($handle, $method_to_call); |
1167
|
|
|
|
|
|
|
|
1168
|
1082
|
|
|
|
|
9484
|
$self->associated_class->add_method($method->name, $method); |
1169
|
1082
|
|
|
|
|
3623
|
$self->associate_method($method); |
1170
|
|
|
|
|
|
|
} |
1171
|
|
|
|
|
|
|
} |
1172
|
|
|
|
|
|
|
|
1173
|
|
|
|
|
|
|
sub remove_delegation { |
1174
|
24
|
|
|
24
|
1
|
45
|
my $self = shift; |
1175
|
24
|
|
|
|
|
59
|
my %handles = $self->_canonicalize_handles; |
1176
|
7
|
|
|
|
|
52
|
my $associated_class = $self->associated_class; |
1177
|
7
|
|
|
|
|
30
|
foreach my $handle (keys %handles) { |
1178
|
41
|
|
|
41
|
|
87
|
next unless any { $handle eq $_ } |
1179
|
44
|
|
|
|
|
111
|
map { $_->name } |
1180
|
22
|
100
|
|
|
|
65
|
@{ $self->associated_methods }; |
|
22
|
|
|
|
|
69
|
|
1181
|
5
|
|
|
|
|
26
|
$self->associated_class->remove_method($handle); |
1182
|
|
|
|
|
|
|
} |
1183
|
|
|
|
|
|
|
} |
1184
|
|
|
|
|
|
|
|
1185
|
|
|
|
|
|
|
# private methods to help delegation ... |
1186
|
|
|
|
|
|
|
|
1187
|
|
|
|
|
|
|
sub _canonicalize_handles { |
1188
|
73
|
|
|
73
|
|
112
|
my $self = shift; |
1189
|
73
|
|
|
|
|
1819
|
my $handles = $self->handles; |
1190
|
73
|
100
|
|
|
|
219
|
if (my $handle_type = ref($handles)) { |
1191
|
68
|
100
|
100
|
|
|
317
|
if ($handle_type eq 'HASH') { |
|
|
100
|
66
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
1192
|
7
|
|
|
|
|
10
|
return %{$handles}; |
|
7
|
|
|
|
|
33
|
|
1193
|
|
|
|
|
|
|
} |
1194
|
|
|
|
|
|
|
elsif ($handle_type eq 'ARRAY') { |
1195
|
20
|
|
|
|
|
35
|
return map { $_ => $_ } @{$handles}; |
|
23
|
|
|
|
|
100
|
|
|
20
|
|
|
|
|
46
|
|
1196
|
|
|
|
|
|
|
} |
1197
|
|
|
|
|
|
|
elsif ($handle_type eq 'Regexp') { |
1198
|
29
|
100
|
|
|
|
824
|
($self->has_type_constraint) |
1199
|
|
|
|
|
|
|
|| throw_exception( CannotDelegateWithoutIsa => attribute => $self ); |
1200
|
25
|
|
|
|
|
59
|
return map { ($_ => $_) } |
1201
|
23
|
|
|
|
|
70
|
grep { /$handles/ } $self->_get_delegate_method_list; |
|
43
|
|
|
|
|
123
|
|
1202
|
|
|
|
|
|
|
} |
1203
|
|
|
|
|
|
|
elsif ($handle_type eq 'CODE') { |
1204
|
8
|
|
|
|
|
24
|
return $handles->($self, $self->_find_delegate_metaclass); |
1205
|
|
|
|
|
|
|
} |
1206
|
|
|
|
|
|
|
elsif (blessed($handles) && $handles->isa('Moose::Meta::TypeConstraint::DuckType')) { |
1207
|
1
|
|
|
|
|
2
|
return map { $_ => $_ } @{ $handles->methods }; |
|
2
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
33
|
|
1208
|
|
|
|
|
|
|
} |
1209
|
|
|
|
|
|
|
elsif (blessed($handles) && $handles->isa('Moose::Meta::TypeConstraint::Role')) { |
1210
|
1
|
|
|
|
|
30
|
$handles = $handles->role; |
1211
|
|
|
|
|
|
|
} |
1212
|
|
|
|
|
|
|
else { |
1213
|
2
|
|
|
|
|
7
|
throw_exception( UnableToCanonicalizeHandles => attribute => $self, |
1214
|
|
|
|
|
|
|
handles => $handles |
1215
|
|
|
|
|
|
|
); |
1216
|
|
|
|
|
|
|
} |
1217
|
|
|
|
|
|
|
} |
1218
|
|
|
|
|
|
|
|
1219
|
6
|
|
|
|
|
24
|
Moose::Util::_load_user_class($handles); |
1220
|
6
|
|
|
|
|
284
|
my $role_meta = Class::MOP::class_of($handles); |
1221
|
|
|
|
|
|
|
|
1222
|
6
|
100
|
66
|
|
|
58
|
(blessed $role_meta && $role_meta->isa('Moose::Meta::Role')) |
1223
|
|
|
|
|
|
|
|| throw_exception( UnableToCanonicalizeNonRolePackage => attribute => $self, |
1224
|
|
|
|
|
|
|
handles => $handles |
1225
|
|
|
|
|
|
|
); |
1226
|
|
|
|
|
|
|
|
1227
|
6
|
|
|
|
|
19
|
return map { $_ => $_ } |
1228
|
6
|
|
|
|
|
126
|
map { $_->name } |
1229
|
4
|
|
|
|
|
17
|
grep { !$_->isa('Class::MOP::Method::Meta') } ( |
|
10
|
|
|
|
|
43
|
|
1230
|
|
|
|
|
|
|
$role_meta->_get_local_methods, |
1231
|
|
|
|
|
|
|
$role_meta->get_required_method_list, |
1232
|
|
|
|
|
|
|
); |
1233
|
|
|
|
|
|
|
} |
1234
|
|
|
|
|
|
|
|
1235
|
|
|
|
|
|
|
sub _get_delegate_method_list { |
1236
|
23
|
|
|
23
|
|
35
|
my $self = shift; |
1237
|
23
|
|
|
|
|
53
|
my $meta = $self->_find_delegate_metaclass; |
1238
|
9
|
100
|
|
|
|
51
|
if ($meta->isa('Class::MOP::Class')) { |
|
|
50
|
|
|
|
|
|
1239
|
43
|
|
|
|
|
99
|
return map { $_->name } # NOTE: !never! delegate &meta |
1240
|
7
|
100
|
|
|
|
29
|
grep { $_->package_name ne 'Moose::Object' && !$_->isa('Class::MOP::Method::Meta') } |
|
88
|
|
|
|
|
299
|
|
1241
|
|
|
|
|
|
|
$meta->get_all_methods; |
1242
|
|
|
|
|
|
|
} |
1243
|
|
|
|
|
|
|
elsif ($meta->isa('Moose::Meta::Role')) { |
1244
|
0
|
|
|
|
|
0
|
return $meta->get_method_list; |
1245
|
|
|
|
|
|
|
} |
1246
|
|
|
|
|
|
|
else { |
1247
|
2
|
|
|
|
|
9
|
throw_exception( UnableToRecognizeDelegateMetaclass => attribute => $self, |
1248
|
|
|
|
|
|
|
delegate_metaclass => $meta |
1249
|
|
|
|
|
|
|
); |
1250
|
|
|
|
|
|
|
} |
1251
|
|
|
|
|
|
|
} |
1252
|
|
|
|
|
|
|
|
1253
|
|
|
|
|
|
|
sub _find_delegate_metaclass { |
1254
|
31
|
|
|
31
|
|
44
|
my $self = shift; |
1255
|
31
|
|
|
|
|
919
|
my $class = $self->_isa_metadata; |
1256
|
31
|
|
|
|
|
840
|
my $role = $self->_does_metadata; |
1257
|
|
|
|
|
|
|
|
1258
|
31
|
100
|
|
|
|
79
|
if ( $class ) { |
|
|
100
|
|
|
|
|
|
1259
|
|
|
|
|
|
|
# make sure isa is actually a class |
1260
|
23
|
100
|
|
|
|
545
|
unless ( $self->type_constraint->isa("Moose::Meta::TypeConstraint::Class") ) { |
1261
|
4
|
|
|
|
|
11
|
throw_exception( DelegationToATypeWhichIsNotAClass => attribute => $self ); |
1262
|
|
|
|
|
|
|
} |
1263
|
|
|
|
|
|
|
|
1264
|
|
|
|
|
|
|
# make sure the class is loaded |
1265
|
19
|
100
|
|
|
|
74
|
unless ( Moose::Util::_is_package_loaded($class) ) { |
1266
|
4
|
|
|
|
|
91
|
throw_exception( DelegationToAClassWhichIsNotLoaded => attribute => $self, |
1267
|
|
|
|
|
|
|
class_name => $class |
1268
|
|
|
|
|
|
|
); |
1269
|
|
|
|
|
|
|
} |
1270
|
|
|
|
|
|
|
# we might be dealing with a non-Moose class, |
1271
|
|
|
|
|
|
|
# and need to make our own metaclass. if there's |
1272
|
|
|
|
|
|
|
# already a metaclass, it will be returned |
1273
|
15
|
|
|
|
|
346
|
return Class::MOP::Class->initialize($class); |
1274
|
|
|
|
|
|
|
} |
1275
|
|
|
|
|
|
|
elsif ( $role ) { |
1276
|
4
|
50
|
|
|
|
13
|
unless ( Moose::Util::_is_package_loaded($role) ) { |
1277
|
4
|
|
|
|
|
84
|
throw_exception( DelegationToARoleWhichIsNotLoaded => attribute => $self, |
1278
|
|
|
|
|
|
|
role_name => $role |
1279
|
|
|
|
|
|
|
); |
1280
|
|
|
|
|
|
|
} |
1281
|
|
|
|
|
|
|
|
1282
|
0
|
|
|
|
|
0
|
return Class::MOP::class_of($role); |
1283
|
|
|
|
|
|
|
} |
1284
|
|
|
|
|
|
|
else { |
1285
|
4
|
|
|
|
|
15
|
throw_exception( CannotFindDelegateMetaclass => attribute => $self ); |
1286
|
|
|
|
|
|
|
} |
1287
|
|
|
|
|
|
|
} |
1288
|
|
|
|
|
|
|
|
1289
|
2114
|
|
|
2114
|
1
|
10912
|
sub delegation_metaclass { 'Moose::Meta::Method::Delegation' } |
1290
|
|
|
|
|
|
|
|
1291
|
|
|
|
|
|
|
sub _make_delegation_method { |
1292
|
50
|
|
|
50
|
|
106
|
my ( $self, $handle_name, $method_to_call ) = @_; |
1293
|
|
|
|
|
|
|
|
1294
|
50
|
|
|
|
|
77
|
my @curried_arguments; |
1295
|
|
|
|
|
|
|
|
1296
|
50
|
100
|
|
|
|
198
|
($method_to_call, @curried_arguments) = @$method_to_call |
1297
|
|
|
|
|
|
|
if 'ARRAY' eq ref($method_to_call); |
1298
|
|
|
|
|
|
|
|
1299
|
50
|
|
|
|
|
116
|
return $self->delegation_metaclass->new( |
1300
|
|
|
|
|
|
|
name => $handle_name, |
1301
|
|
|
|
|
|
|
package_name => $self->associated_class->name, |
1302
|
|
|
|
|
|
|
attribute => $self, |
1303
|
|
|
|
|
|
|
delegate_to_method => $method_to_call, |
1304
|
|
|
|
|
|
|
curried_arguments => \@curried_arguments, |
1305
|
|
|
|
|
|
|
); |
1306
|
|
|
|
|
|
|
} |
1307
|
|
|
|
|
|
|
|
1308
|
|
|
|
|
|
|
sub _coerce_and_verify { |
1309
|
4297
|
|
|
4297
|
|
5659
|
my $self = shift; |
1310
|
4297
|
|
|
|
|
5630
|
my $val = shift; |
1311
|
4297
|
|
|
|
|
5023
|
my $instance = shift; |
1312
|
|
|
|
|
|
|
|
1313
|
4297
|
100
|
|
|
|
135887
|
return $val unless $self->has_type_constraint; |
1314
|
|
|
|
|
|
|
|
1315
|
4043
|
100
|
66
|
|
|
106517
|
$val = $self->type_constraint->coerce($val) |
1316
|
|
|
|
|
|
|
if $self->should_coerce && $self->type_constraint->has_coercion; |
1317
|
|
|
|
|
|
|
|
1318
|
4043
|
|
|
|
|
11116
|
$self->verify_against_type_constraint($val, instance => $instance); |
1319
|
|
|
|
|
|
|
|
1320
|
3098
|
|
|
|
|
150747
|
return $val; |
1321
|
|
|
|
|
|
|
} |
1322
|
|
|
|
|
|
|
|
1323
|
|
|
|
|
|
|
sub verify_against_type_constraint { |
1324
|
4046
|
|
|
4046
|
1
|
5842
|
my $self = shift; |
1325
|
4046
|
|
|
|
|
5173
|
my $val = shift; |
1326
|
|
|
|
|
|
|
|
1327
|
4046
|
100
|
|
|
|
112938
|
return 1 if !$self->has_type_constraint; |
1328
|
|
|
|
|
|
|
|
1329
|
4045
|
|
|
|
|
97288
|
my $type_constraint = $self->type_constraint; |
1330
|
|
|
|
|
|
|
|
1331
|
4045
|
100
|
|
|
|
12016
|
$type_constraint->check($val) |
1332
|
|
|
|
|
|
|
|| throw_exception( ValidationFailedForTypeConstraint => type => $type_constraint, |
1333
|
|
|
|
|
|
|
value => $val, |
1334
|
|
|
|
|
|
|
attribute => $self, |
1335
|
|
|
|
|
|
|
); |
1336
|
|
|
|
|
|
|
} |
1337
|
|
|
|
|
|
|
|
1338
|
|
|
|
|
|
|
package # hide from PAUSE |
1339
|
|
|
|
|
|
|
Moose::Meta::Attribute::Custom::Moose; |
1340
|
|
|
|
|
|
|
|
1341
|
0
|
|
|
0
|
|
|
sub register_implementation { 'Moose::Meta::Attribute' } |
1342
|
|
|
|
|
|
|
1; |
1343
|
|
|
|
|
|
|
|
1344
|
|
|
|
|
|
|
# ABSTRACT: The Moose attribute metaclass |
1345
|
|
|
|
|
|
|
|
1346
|
|
|
|
|
|
|
__END__ |
1347
|
|
|
|
|
|
|
|
1348
|
|
|
|
|
|
|
=pod |
1349
|
|
|
|
|
|
|
|
1350
|
|
|
|
|
|
|
=encoding UTF-8 |
1351
|
|
|
|
|
|
|
|
1352
|
|
|
|
|
|
|
=head1 NAME |
1353
|
|
|
|
|
|
|
|
1354
|
|
|
|
|
|
|
Moose::Meta::Attribute - The Moose attribute metaclass |
1355
|
|
|
|
|
|
|
|
1356
|
|
|
|
|
|
|
=head1 VERSION |
1357
|
|
|
|
|
|
|
|
1358
|
|
|
|
|
|
|
version 2.2203 |
1359
|
|
|
|
|
|
|
|
1360
|
|
|
|
|
|
|
=head1 DESCRIPTION |
1361
|
|
|
|
|
|
|
|
1362
|
|
|
|
|
|
|
This class is a subclass of L<Class::MOP::Attribute> that provides |
1363
|
|
|
|
|
|
|
additional Moose-specific functionality. |
1364
|
|
|
|
|
|
|
|
1365
|
|
|
|
|
|
|
To really understand this class, you will need to start with the |
1366
|
|
|
|
|
|
|
L<Class::MOP::Attribute> documentation. This class can be understood |
1367
|
|
|
|
|
|
|
as a set of additional features on top of the basic feature provided |
1368
|
|
|
|
|
|
|
by that parent class. |
1369
|
|
|
|
|
|
|
|
1370
|
|
|
|
|
|
|
=head1 INHERITANCE |
1371
|
|
|
|
|
|
|
|
1372
|
|
|
|
|
|
|
C<Moose::Meta::Attribute> is a subclass of L<Class::MOP::Attribute>. |
1373
|
|
|
|
|
|
|
|
1374
|
|
|
|
|
|
|
=head1 METHODS |
1375
|
|
|
|
|
|
|
|
1376
|
|
|
|
|
|
|
Many of the documented below override methods in |
1377
|
|
|
|
|
|
|
L<Class::MOP::Attribute> and add Moose specific features. |
1378
|
|
|
|
|
|
|
|
1379
|
|
|
|
|
|
|
=head2 Creation |
1380
|
|
|
|
|
|
|
|
1381
|
|
|
|
|
|
|
=over 4 |
1382
|
|
|
|
|
|
|
|
1383
|
|
|
|
|
|
|
=item B<< Moose::Meta::Attribute->new($name, %options) >> |
1384
|
|
|
|
|
|
|
|
1385
|
|
|
|
|
|
|
This method overrides the L<Class::MOP::Attribute> constructor. |
1386
|
|
|
|
|
|
|
|
1387
|
|
|
|
|
|
|
Many of the options below are described in more detail in the |
1388
|
|
|
|
|
|
|
L<Moose::Manual::Attributes> document. |
1389
|
|
|
|
|
|
|
|
1390
|
|
|
|
|
|
|
It adds the following options to the constructor: |
1391
|
|
|
|
|
|
|
|
1392
|
|
|
|
|
|
|
=over 8 |
1393
|
|
|
|
|
|
|
|
1394
|
|
|
|
|
|
|
=item * is => 'ro', 'rw', 'bare' |
1395
|
|
|
|
|
|
|
|
1396
|
|
|
|
|
|
|
This provides a shorthand for specifying the C<reader>, C<writer>, or |
1397
|
|
|
|
|
|
|
C<accessor> names. If the attribute is read-only ('ro') then it will |
1398
|
|
|
|
|
|
|
have a C<reader> method with the same attribute as the name. |
1399
|
|
|
|
|
|
|
|
1400
|
|
|
|
|
|
|
If it is read-write ('rw') then it will have an C<accessor> method |
1401
|
|
|
|
|
|
|
with the same name. If you provide an explicit C<writer> for a |
1402
|
|
|
|
|
|
|
read-write attribute, then you will have a C<reader> with the same |
1403
|
|
|
|
|
|
|
name as the attribute, and a C<writer> with the name you provided. |
1404
|
|
|
|
|
|
|
|
1405
|
|
|
|
|
|
|
Use 'bare' when you are deliberately not installing any methods |
1406
|
|
|
|
|
|
|
(accessor, reader, etc.) associated with this attribute; otherwise, |
1407
|
|
|
|
|
|
|
Moose will issue a warning when this attribute is added to a |
1408
|
|
|
|
|
|
|
metaclass. |
1409
|
|
|
|
|
|
|
|
1410
|
|
|
|
|
|
|
=item * isa => $type |
1411
|
|
|
|
|
|
|
|
1412
|
|
|
|
|
|
|
This option accepts a type. The type can be a string, which should be |
1413
|
|
|
|
|
|
|
a type name. If the type name is unknown, it is assumed to be a class |
1414
|
|
|
|
|
|
|
name. |
1415
|
|
|
|
|
|
|
|
1416
|
|
|
|
|
|
|
This option can also accept a L<Moose::Meta::TypeConstraint> object. |
1417
|
|
|
|
|
|
|
|
1418
|
|
|
|
|
|
|
If you I<also> provide a C<does> option, then your C<isa> option must |
1419
|
|
|
|
|
|
|
be a class name, and that class must do the role specified with |
1420
|
|
|
|
|
|
|
C<does>. |
1421
|
|
|
|
|
|
|
|
1422
|
|
|
|
|
|
|
=item * does => $role |
1423
|
|
|
|
|
|
|
|
1424
|
|
|
|
|
|
|
This is short-hand for saying that the attribute's type must be an |
1425
|
|
|
|
|
|
|
object which does the named role. |
1426
|
|
|
|
|
|
|
|
1427
|
|
|
|
|
|
|
=item * coerce => $bool |
1428
|
|
|
|
|
|
|
|
1429
|
|
|
|
|
|
|
This option is only valid for objects with a type constraint |
1430
|
|
|
|
|
|
|
(C<isa>) that defined a coercion. If this is true, then coercions will be applied whenever |
1431
|
|
|
|
|
|
|
this attribute is set. |
1432
|
|
|
|
|
|
|
|
1433
|
|
|
|
|
|
|
You cannot make both this and the C<weak_ref> option true. |
1434
|
|
|
|
|
|
|
|
1435
|
|
|
|
|
|
|
=item * trigger => $sub |
1436
|
|
|
|
|
|
|
|
1437
|
|
|
|
|
|
|
This option accepts a subroutine reference, which will be called after |
1438
|
|
|
|
|
|
|
the attribute is set. |
1439
|
|
|
|
|
|
|
|
1440
|
|
|
|
|
|
|
=item * required => $bool |
1441
|
|
|
|
|
|
|
|
1442
|
|
|
|
|
|
|
An attribute which is required must be provided to the constructor. An |
1443
|
|
|
|
|
|
|
attribute which is required can also have a C<default> or C<builder>, |
1444
|
|
|
|
|
|
|
which will satisfy its required-ness. |
1445
|
|
|
|
|
|
|
|
1446
|
|
|
|
|
|
|
A required attribute must have a C<default>, C<builder> or a |
1447
|
|
|
|
|
|
|
non-C<undef> C<init_arg> |
1448
|
|
|
|
|
|
|
|
1449
|
|
|
|
|
|
|
=item * lazy => $bool |
1450
|
|
|
|
|
|
|
|
1451
|
|
|
|
|
|
|
A lazy attribute must have a C<default> or C<builder>. When an |
1452
|
|
|
|
|
|
|
attribute is lazy, the default value will not be calculated until the |
1453
|
|
|
|
|
|
|
attribute is read. |
1454
|
|
|
|
|
|
|
|
1455
|
|
|
|
|
|
|
=item * weak_ref => $bool |
1456
|
|
|
|
|
|
|
|
1457
|
|
|
|
|
|
|
If this is true, the attribute's value will be stored as a weak |
1458
|
|
|
|
|
|
|
reference. |
1459
|
|
|
|
|
|
|
|
1460
|
|
|
|
|
|
|
=item * documentation |
1461
|
|
|
|
|
|
|
|
1462
|
|
|
|
|
|
|
An arbitrary string that can be retrieved later by calling C<< |
1463
|
|
|
|
|
|
|
$attr->documentation >>. |
1464
|
|
|
|
|
|
|
|
1465
|
|
|
|
|
|
|
=item * auto_deref => $bool |
1466
|
|
|
|
|
|
|
|
1467
|
|
|
|
|
|
|
B<Note that in cases where you want this feature you are often better served |
1468
|
|
|
|
|
|
|
by using a L<Moose::Meta::Attribute::Native> trait instead>. |
1469
|
|
|
|
|
|
|
|
1470
|
|
|
|
|
|
|
If this is true, then the reader will dereference the value when it is |
1471
|
|
|
|
|
|
|
called. The attribute must have a type constraint which defines the |
1472
|
|
|
|
|
|
|
attribute as an array or hash reference. |
1473
|
|
|
|
|
|
|
|
1474
|
|
|
|
|
|
|
=item * lazy_build => $bool |
1475
|
|
|
|
|
|
|
|
1476
|
|
|
|
|
|
|
B<Note that use of this feature is strongly discouraged.> Some documentation |
1477
|
|
|
|
|
|
|
used to encourage use of this feature as a best practice, but we have changed |
1478
|
|
|
|
|
|
|
our minds. |
1479
|
|
|
|
|
|
|
|
1480
|
|
|
|
|
|
|
Setting this to true makes the attribute lazy and provides a number of |
1481
|
|
|
|
|
|
|
default methods. |
1482
|
|
|
|
|
|
|
|
1483
|
|
|
|
|
|
|
has 'size' => ( |
1484
|
|
|
|
|
|
|
is => 'ro', |
1485
|
|
|
|
|
|
|
lazy_build => 1, |
1486
|
|
|
|
|
|
|
); |
1487
|
|
|
|
|
|
|
|
1488
|
|
|
|
|
|
|
is equivalent to this: |
1489
|
|
|
|
|
|
|
|
1490
|
|
|
|
|
|
|
has 'size' => ( |
1491
|
|
|
|
|
|
|
is => 'ro', |
1492
|
|
|
|
|
|
|
lazy => 1, |
1493
|
|
|
|
|
|
|
builder => '_build_size', |
1494
|
|
|
|
|
|
|
clearer => 'clear_size', |
1495
|
|
|
|
|
|
|
predicate => 'has_size', |
1496
|
|
|
|
|
|
|
); |
1497
|
|
|
|
|
|
|
|
1498
|
|
|
|
|
|
|
If your attribute name starts with an underscore (C<_>), then the clearer |
1499
|
|
|
|
|
|
|
and predicate will as well: |
1500
|
|
|
|
|
|
|
|
1501
|
|
|
|
|
|
|
has '_size' => ( |
1502
|
|
|
|
|
|
|
is => 'ro', |
1503
|
|
|
|
|
|
|
lazy_build => 1, |
1504
|
|
|
|
|
|
|
); |
1505
|
|
|
|
|
|
|
|
1506
|
|
|
|
|
|
|
becomes: |
1507
|
|
|
|
|
|
|
|
1508
|
|
|
|
|
|
|
has '_size' => ( |
1509
|
|
|
|
|
|
|
is => 'ro', |
1510
|
|
|
|
|
|
|
lazy => 1, |
1511
|
|
|
|
|
|
|
builder => '_build__size', |
1512
|
|
|
|
|
|
|
clearer => '_clear_size', |
1513
|
|
|
|
|
|
|
predicate => '_has_size', |
1514
|
|
|
|
|
|
|
); |
1515
|
|
|
|
|
|
|
|
1516
|
|
|
|
|
|
|
Note the doubled underscore in the builder name. Internally, Moose |
1517
|
|
|
|
|
|
|
simply prepends the attribute name with "_build_" to come up with the |
1518
|
|
|
|
|
|
|
builder name. |
1519
|
|
|
|
|
|
|
|
1520
|
|
|
|
|
|
|
=item * role_attribute => $role_attribute |
1521
|
|
|
|
|
|
|
|
1522
|
|
|
|
|
|
|
If provided, this should be a L<Moose::Meta::Role::Attribute> object. |
1523
|
|
|
|
|
|
|
|
1524
|
|
|
|
|
|
|
=back |
1525
|
|
|
|
|
|
|
|
1526
|
|
|
|
|
|
|
=item B<< $attr->clone(%options) >> |
1527
|
|
|
|
|
|
|
|
1528
|
|
|
|
|
|
|
This creates a new attribute based on attribute being cloned. You must |
1529
|
|
|
|
|
|
|
supply a C<name> option to provide a new name for the attribute. |
1530
|
|
|
|
|
|
|
|
1531
|
|
|
|
|
|
|
The C<%options> can only specify options handled by |
1532
|
|
|
|
|
|
|
L<Class::MOP::Attribute>. |
1533
|
|
|
|
|
|
|
|
1534
|
|
|
|
|
|
|
=back |
1535
|
|
|
|
|
|
|
|
1536
|
|
|
|
|
|
|
=head2 Value management |
1537
|
|
|
|
|
|
|
|
1538
|
|
|
|
|
|
|
=over 4 |
1539
|
|
|
|
|
|
|
|
1540
|
|
|
|
|
|
|
=item B<< $attr->initialize_instance_slot($meta_instance, $instance, $params) >> |
1541
|
|
|
|
|
|
|
|
1542
|
|
|
|
|
|
|
This method is used internally to initialize the attribute's slot in |
1543
|
|
|
|
|
|
|
the object C<$instance>. |
1544
|
|
|
|
|
|
|
|
1545
|
|
|
|
|
|
|
This overrides the L<Class::MOP::Attribute> method to handle lazy |
1546
|
|
|
|
|
|
|
attributes, weak references, and type constraints. |
1547
|
|
|
|
|
|
|
|
1548
|
|
|
|
|
|
|
=item B<get_value> |
1549
|
|
|
|
|
|
|
|
1550
|
|
|
|
|
|
|
=item B<set_value> |
1551
|
|
|
|
|
|
|
|
1552
|
|
|
|
|
|
|
eval { $point->meta->get_attribute('x')->set_value($point, 'forty-two') }; |
1553
|
|
|
|
|
|
|
if($@) { |
1554
|
|
|
|
|
|
|
print "Oops: $@\n"; |
1555
|
|
|
|
|
|
|
} |
1556
|
|
|
|
|
|
|
|
1557
|
|
|
|
|
|
|
I<Attribute (x) does not pass the type constraint (Int) with 'forty-two'> |
1558
|
|
|
|
|
|
|
|
1559
|
|
|
|
|
|
|
Before setting the value, a check is made on the type constraint of |
1560
|
|
|
|
|
|
|
the attribute, if it has one, to see if the value passes it. If the |
1561
|
|
|
|
|
|
|
value fails to pass, the set operation dies. |
1562
|
|
|
|
|
|
|
|
1563
|
|
|
|
|
|
|
Any coercion to convert values is done before checking the type constraint. |
1564
|
|
|
|
|
|
|
|
1565
|
|
|
|
|
|
|
To check a value against a type constraint before setting it, fetch the |
1566
|
|
|
|
|
|
|
attribute instance using L<Class::MOP::Class/find_attribute_by_name>, |
1567
|
|
|
|
|
|
|
fetch the type_constraint from the attribute using L<Moose::Meta::Attribute/type_constraint> |
1568
|
|
|
|
|
|
|
and call L<Moose::Meta::TypeConstraint/check>. See L<Moose::Cookbook::Basics::Company_Subtypes> |
1569
|
|
|
|
|
|
|
for an example. |
1570
|
|
|
|
|
|
|
|
1571
|
|
|
|
|
|
|
=back |
1572
|
|
|
|
|
|
|
|
1573
|
|
|
|
|
|
|
=head2 Attribute Accessor generation |
1574
|
|
|
|
|
|
|
|
1575
|
|
|
|
|
|
|
=over 4 |
1576
|
|
|
|
|
|
|
|
1577
|
|
|
|
|
|
|
=item B<< $attr->install_accessors >> |
1578
|
|
|
|
|
|
|
|
1579
|
|
|
|
|
|
|
This method overrides the parent to also install delegation methods. |
1580
|
|
|
|
|
|
|
|
1581
|
|
|
|
|
|
|
If, after installing all methods, the attribute object has no associated |
1582
|
|
|
|
|
|
|
methods, it throws an error unless C<< is => 'bare' >> was passed to the |
1583
|
|
|
|
|
|
|
attribute constructor. (Trying to add an attribute that has no associated |
1584
|
|
|
|
|
|
|
methods is almost always an error.) |
1585
|
|
|
|
|
|
|
|
1586
|
|
|
|
|
|
|
=item B<< $attr->remove_accessors >> |
1587
|
|
|
|
|
|
|
|
1588
|
|
|
|
|
|
|
This method overrides the parent to also remove delegation methods. |
1589
|
|
|
|
|
|
|
|
1590
|
|
|
|
|
|
|
=item B<< $attr->inline_set($instance_var, $value_var) >> |
1591
|
|
|
|
|
|
|
|
1592
|
|
|
|
|
|
|
This method return a code snippet suitable for inlining the relevant |
1593
|
|
|
|
|
|
|
operation. It expect strings containing variable names to be used in the |
1594
|
|
|
|
|
|
|
inlining, like C<'$self'> or C<'$_[1]'>. |
1595
|
|
|
|
|
|
|
|
1596
|
|
|
|
|
|
|
=item B<< $attr->install_delegation >> |
1597
|
|
|
|
|
|
|
|
1598
|
|
|
|
|
|
|
This method adds its delegation methods to the attribute's associated |
1599
|
|
|
|
|
|
|
class, if it has any to add. |
1600
|
|
|
|
|
|
|
|
1601
|
|
|
|
|
|
|
=item B<< $attr->remove_delegation >> |
1602
|
|
|
|
|
|
|
|
1603
|
|
|
|
|
|
|
This method remove its delegation methods from the attribute's |
1604
|
|
|
|
|
|
|
associated class. |
1605
|
|
|
|
|
|
|
|
1606
|
|
|
|
|
|
|
=item B<< $attr->accessor_metaclass >> |
1607
|
|
|
|
|
|
|
|
1608
|
|
|
|
|
|
|
Returns the accessor metaclass name, which defaults to |
1609
|
|
|
|
|
|
|
L<Moose::Meta::Method::Accessor>. |
1610
|
|
|
|
|
|
|
|
1611
|
|
|
|
|
|
|
=item B<< $attr->delegation_metaclass >> |
1612
|
|
|
|
|
|
|
|
1613
|
|
|
|
|
|
|
Returns the delegation metaclass name, which defaults to |
1614
|
|
|
|
|
|
|
L<Moose::Meta::Method::Delegation>. |
1615
|
|
|
|
|
|
|
|
1616
|
|
|
|
|
|
|
=back |
1617
|
|
|
|
|
|
|
|
1618
|
|
|
|
|
|
|
=head2 Additional Moose features |
1619
|
|
|
|
|
|
|
|
1620
|
|
|
|
|
|
|
These methods are not found in the superclass. They support features |
1621
|
|
|
|
|
|
|
provided by Moose. |
1622
|
|
|
|
|
|
|
|
1623
|
|
|
|
|
|
|
=over 4 |
1624
|
|
|
|
|
|
|
|
1625
|
|
|
|
|
|
|
=item B<< $attr->does($role) >> |
1626
|
|
|
|
|
|
|
|
1627
|
|
|
|
|
|
|
This indicates whether the I<attribute itself> does the given |
1628
|
|
|
|
|
|
|
role. The role can be given as a full class name, or as a resolvable |
1629
|
|
|
|
|
|
|
trait name. |
1630
|
|
|
|
|
|
|
|
1631
|
|
|
|
|
|
|
Note that this checks the attribute itself, not its type constraint, |
1632
|
|
|
|
|
|
|
so it is checking the attribute's metaclass and any traits applied to |
1633
|
|
|
|
|
|
|
the attribute. |
1634
|
|
|
|
|
|
|
|
1635
|
|
|
|
|
|
|
=item B<< Moose::Meta::Class->interpolate_class_and_new($name, %options) >> |
1636
|
|
|
|
|
|
|
|
1637
|
|
|
|
|
|
|
This is an alternate constructor that handles the C<metaclass> and |
1638
|
|
|
|
|
|
|
C<traits> options. |
1639
|
|
|
|
|
|
|
|
1640
|
|
|
|
|
|
|
Effectively, this method is a factory that finds or creates the |
1641
|
|
|
|
|
|
|
appropriate class for the given C<metaclass> and/or C<traits>. |
1642
|
|
|
|
|
|
|
|
1643
|
|
|
|
|
|
|
Once it has the appropriate class, it will call C<< $class->new($name, |
1644
|
|
|
|
|
|
|
%options) >> on that class. |
1645
|
|
|
|
|
|
|
|
1646
|
|
|
|
|
|
|
=item B<< $attr->clone_and_inherit_options(%options) >> |
1647
|
|
|
|
|
|
|
|
1648
|
|
|
|
|
|
|
This method supports the C<has '+foo'> feature. It does various bits |
1649
|
|
|
|
|
|
|
of processing on the supplied C<%options> before ultimately calling |
1650
|
|
|
|
|
|
|
the C<clone> method. |
1651
|
|
|
|
|
|
|
|
1652
|
|
|
|
|
|
|
One of its main tasks is to make sure that the C<%options> provided |
1653
|
|
|
|
|
|
|
does not include the options returned by the |
1654
|
|
|
|
|
|
|
C<illegal_options_for_inheritance> method. |
1655
|
|
|
|
|
|
|
|
1656
|
|
|
|
|
|
|
=item B<< $attr->illegal_options_for_inheritance >> |
1657
|
|
|
|
|
|
|
|
1658
|
|
|
|
|
|
|
This returns a blacklist of options that can not be overridden in a |
1659
|
|
|
|
|
|
|
subclass's attribute definition. |
1660
|
|
|
|
|
|
|
|
1661
|
|
|
|
|
|
|
This exists to allow a custom metaclass to change or add to the list |
1662
|
|
|
|
|
|
|
of options which can not be changed. |
1663
|
|
|
|
|
|
|
|
1664
|
|
|
|
|
|
|
=item B<< $attr->type_constraint >> |
1665
|
|
|
|
|
|
|
|
1666
|
|
|
|
|
|
|
Returns the L<Moose::Meta::TypeConstraint> object for this attribute, |
1667
|
|
|
|
|
|
|
if it has one. |
1668
|
|
|
|
|
|
|
|
1669
|
|
|
|
|
|
|
=item B<< $attr->has_type_constraint >> |
1670
|
|
|
|
|
|
|
|
1671
|
|
|
|
|
|
|
Returns true if this attribute has a type constraint. |
1672
|
|
|
|
|
|
|
|
1673
|
|
|
|
|
|
|
=item B<< $attr->verify_against_type_constraint($value) >> |
1674
|
|
|
|
|
|
|
|
1675
|
|
|
|
|
|
|
Given a value, this method returns true if the value is valid for the |
1676
|
|
|
|
|
|
|
attribute's type constraint. If the value is not valid, it throws an |
1677
|
|
|
|
|
|
|
error. |
1678
|
|
|
|
|
|
|
|
1679
|
|
|
|
|
|
|
=item B<< $attr->handles >> |
1680
|
|
|
|
|
|
|
|
1681
|
|
|
|
|
|
|
This returns the value of the C<handles> option passed to the |
1682
|
|
|
|
|
|
|
constructor. |
1683
|
|
|
|
|
|
|
|
1684
|
|
|
|
|
|
|
=item B<< $attr->has_handles >> |
1685
|
|
|
|
|
|
|
|
1686
|
|
|
|
|
|
|
Returns true if this attribute performs delegation. |
1687
|
|
|
|
|
|
|
|
1688
|
|
|
|
|
|
|
=item B<< $attr->is_weak_ref >> |
1689
|
|
|
|
|
|
|
|
1690
|
|
|
|
|
|
|
Returns true if this attribute stores its value as a weak reference. |
1691
|
|
|
|
|
|
|
|
1692
|
|
|
|
|
|
|
=item B<< $attr->is_required >> |
1693
|
|
|
|
|
|
|
|
1694
|
|
|
|
|
|
|
Returns true if this attribute is required to have a value. |
1695
|
|
|
|
|
|
|
|
1696
|
|
|
|
|
|
|
=item B<< $attr->is_lazy >> |
1697
|
|
|
|
|
|
|
|
1698
|
|
|
|
|
|
|
Returns true if this attribute is lazy. |
1699
|
|
|
|
|
|
|
|
1700
|
|
|
|
|
|
|
=item B<< $attr->is_lazy_build >> |
1701
|
|
|
|
|
|
|
|
1702
|
|
|
|
|
|
|
Returns true if the C<lazy_build> option was true when passed to the |
1703
|
|
|
|
|
|
|
constructor. |
1704
|
|
|
|
|
|
|
|
1705
|
|
|
|
|
|
|
=item B<< $attr->should_coerce >> |
1706
|
|
|
|
|
|
|
|
1707
|
|
|
|
|
|
|
Returns true if the C<coerce> option passed to the constructor was |
1708
|
|
|
|
|
|
|
true. |
1709
|
|
|
|
|
|
|
|
1710
|
|
|
|
|
|
|
=item B<< $attr->should_auto_deref >> |
1711
|
|
|
|
|
|
|
|
1712
|
|
|
|
|
|
|
Returns true if the C<auto_deref> option passed to the constructor was |
1713
|
|
|
|
|
|
|
true. |
1714
|
|
|
|
|
|
|
|
1715
|
|
|
|
|
|
|
=item B<< $attr->trigger >> |
1716
|
|
|
|
|
|
|
|
1717
|
|
|
|
|
|
|
This is the subroutine reference that was in the C<trigger> option |
1718
|
|
|
|
|
|
|
passed to the constructor, if any. |
1719
|
|
|
|
|
|
|
|
1720
|
|
|
|
|
|
|
=item B<< $attr->has_trigger >> |
1721
|
|
|
|
|
|
|
|
1722
|
|
|
|
|
|
|
Returns true if this attribute has a trigger set. |
1723
|
|
|
|
|
|
|
|
1724
|
|
|
|
|
|
|
=item B<< $attr->documentation >> |
1725
|
|
|
|
|
|
|
|
1726
|
|
|
|
|
|
|
Returns the value that was in the C<documentation> option passed to |
1727
|
|
|
|
|
|
|
the constructor, if any. |
1728
|
|
|
|
|
|
|
|
1729
|
|
|
|
|
|
|
=item B<< $attr->has_documentation >> |
1730
|
|
|
|
|
|
|
|
1731
|
|
|
|
|
|
|
Returns true if this attribute has any documentation. |
1732
|
|
|
|
|
|
|
|
1733
|
|
|
|
|
|
|
=item B<< $attr->role_attribute >> |
1734
|
|
|
|
|
|
|
|
1735
|
|
|
|
|
|
|
Returns the L<Moose::Meta::Role::Attribute> object from which this attribute |
1736
|
|
|
|
|
|
|
was created, if any. This may return C<undef>. |
1737
|
|
|
|
|
|
|
|
1738
|
|
|
|
|
|
|
=item B<< $attr->has_role_attribute >> |
1739
|
|
|
|
|
|
|
|
1740
|
|
|
|
|
|
|
Returns true if this attribute has an associated role attribute. |
1741
|
|
|
|
|
|
|
|
1742
|
|
|
|
|
|
|
=item B<< $attr->applied_traits >> |
1743
|
|
|
|
|
|
|
|
1744
|
|
|
|
|
|
|
This returns an array reference of all the traits which were applied |
1745
|
|
|
|
|
|
|
to this attribute. If none were applied, this returns C<undef>. |
1746
|
|
|
|
|
|
|
|
1747
|
|
|
|
|
|
|
=item B<< $attr->has_applied_traits >> |
1748
|
|
|
|
|
|
|
|
1749
|
|
|
|
|
|
|
Returns true if this attribute has any traits applied. |
1750
|
|
|
|
|
|
|
|
1751
|
|
|
|
|
|
|
=back |
1752
|
|
|
|
|
|
|
|
1753
|
|
|
|
|
|
|
=head1 BUGS |
1754
|
|
|
|
|
|
|
|
1755
|
|
|
|
|
|
|
See L<Moose/BUGS> for details on reporting bugs. |
1756
|
|
|
|
|
|
|
|
1757
|
|
|
|
|
|
|
=head1 AUTHORS |
1758
|
|
|
|
|
|
|
|
1759
|
|
|
|
|
|
|
=over 4 |
1760
|
|
|
|
|
|
|
|
1761
|
|
|
|
|
|
|
=item * |
1762
|
|
|
|
|
|
|
|
1763
|
|
|
|
|
|
|
Stevan Little <stevan@cpan.org> |
1764
|
|
|
|
|
|
|
|
1765
|
|
|
|
|
|
|
=item * |
1766
|
|
|
|
|
|
|
|
1767
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
1768
|
|
|
|
|
|
|
|
1769
|
|
|
|
|
|
|
=item * |
1770
|
|
|
|
|
|
|
|
1771
|
|
|
|
|
|
|
Jesse Luehrs <doy@cpan.org> |
1772
|
|
|
|
|
|
|
|
1773
|
|
|
|
|
|
|
=item * |
1774
|
|
|
|
|
|
|
|
1775
|
|
|
|
|
|
|
Shawn M Moore <sartak@cpan.org> |
1776
|
|
|
|
|
|
|
|
1777
|
|
|
|
|
|
|
=item * |
1778
|
|
|
|
|
|
|
|
1779
|
|
|
|
|
|
|
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org> |
1780
|
|
|
|
|
|
|
|
1781
|
|
|
|
|
|
|
=item * |
1782
|
|
|
|
|
|
|
|
1783
|
|
|
|
|
|
|
Karen Etheridge <ether@cpan.org> |
1784
|
|
|
|
|
|
|
|
1785
|
|
|
|
|
|
|
=item * |
1786
|
|
|
|
|
|
|
|
1787
|
|
|
|
|
|
|
Florian Ragwitz <rafl@debian.org> |
1788
|
|
|
|
|
|
|
|
1789
|
|
|
|
|
|
|
=item * |
1790
|
|
|
|
|
|
|
|
1791
|
|
|
|
|
|
|
Hans Dieter Pearcey <hdp@cpan.org> |
1792
|
|
|
|
|
|
|
|
1793
|
|
|
|
|
|
|
=item * |
1794
|
|
|
|
|
|
|
|
1795
|
|
|
|
|
|
|
Chris Prather <chris@prather.org> |
1796
|
|
|
|
|
|
|
|
1797
|
|
|
|
|
|
|
=item * |
1798
|
|
|
|
|
|
|
|
1799
|
|
|
|
|
|
|
Matt S Trout <mstrout@cpan.org> |
1800
|
|
|
|
|
|
|
|
1801
|
|
|
|
|
|
|
=back |
1802
|
|
|
|
|
|
|
|
1803
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
1804
|
|
|
|
|
|
|
|
1805
|
|
|
|
|
|
|
This software is copyright (c) 2006 by Infinity Interactive, Inc. |
1806
|
|
|
|
|
|
|
|
1807
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
1808
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
1809
|
|
|
|
|
|
|
|
1810
|
|
|
|
|
|
|
=cut |