(Re-)organize Method Accessor, implementing has ... reader => $r, accessor => $a...
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
CommitLineData
306290e8 1package Mouse::Meta::Attribute;
c3398f5b 2use strict;
3use warnings;
4
6c169c50 5use Scalar::Util ();
684db121 6use Mouse::Meta::TypeConstraint;
90fe520e 7use Mouse::Meta::Method::Accessor;
c3398f5b 8
9sub new {
2608b115 10 my ($class, $name, %options) = @_;
c3398f5b 11
2608b115 12 $options{name} = $name;
2e7e86c6 13
2608b115 14 $options{init_arg} = $name
15 unless exists $options{init_arg};
45959ffa 16
90fe520e 17 my $is = $options{is} ||= '';
18
19 if($is eq 'rw'){
20 $options{accessor} = $name if !exists $options{accessor};
21 }
22 elsif($is eq 'ro'){
23 $options{reader} = $name if !exists $options{reader};
24 }
c3398f5b 25
2608b115 26 bless \%options, $class;
c3398f5b 27}
28
90fe520e 29# readers
30
f6715552 31sub name { $_[0]->{name} }
32sub associated_class { $_[0]->{associated_class} }
90fe520e 33
34sub accessor { $_[0]->{accessor} }
35sub reader { $_[0]->{reader} }
36sub writer { $_[0]->{writer} }
37sub predicate { $_[0]->{predicate} }
38sub clearer { $_[0]->{clearer} }
39sub handles { $_[0]->{handles} }
40
f6715552 41sub _is_metadata { $_[0]->{is} }
42sub is_required { $_[0]->{required} }
43sub default { $_[0]->{default} }
44sub is_lazy { $_[0]->{lazy} }
45sub is_lazy_build { $_[0]->{lazy_build} }
f6715552 46sub is_weak_ref { $_[0]->{weak_ref} }
47sub init_arg { $_[0]->{init_arg} }
48sub type_constraint { $_[0]->{type_constraint} }
4c03ed87 49sub find_type_constraint {
50 Carp::carp("This method was deprecated");
51 $_[0]->type_constraint();
52}
f6715552 53sub trigger { $_[0]->{trigger} }
54sub builder { $_[0]->{builder} }
55sub should_auto_deref { $_[0]->{auto_deref} }
56sub should_coerce { $_[0]->{should_coerce} }
c3398f5b 57
90fe520e 58# predicates
59
60sub has_accessor { exists $_[0]->{accessor} }
61sub has_reader { exists $_[0]->{reader} }
62sub has_writer { exists $_[0]->{writer} }
f6715552 63sub has_predicate { exists $_[0]->{predicate} }
64sub has_clearer { exists $_[0]->{clearer} }
65sub has_handles { exists $_[0]->{handles} }
90fe520e 66
67sub has_default { exists $_[0]->{default} }
f6715552 68sub has_type_constraint { exists $_[0]->{type_constraint} }
69sub has_trigger { exists $_[0]->{trigger} }
70sub has_builder { exists $_[0]->{builder} }
eec1bb49 71
1bfebf5f 72sub _create_args {
73 $_[0]->{_create_args} = $_[1] if @_ > 1;
74 $_[0]->{_create_args}
75}
76
90fe520e 77sub accessor_metaclass { 'Mouse::Meta::Method::Accessor' }
78
b5bc67d9 79sub _inlined_name {
7f7406a5 80 my $self = shift;
b5bc67d9 81 return sprintf '"%s"', quotemeta $self->name;
7f7406a5 82}
83
c3398f5b 84
85sub create {
86 my ($self, $class, $name, %args) = @_;
87
90fe520e 88 $args{name} = $name;
181502b9 89 $args{associated_class} = $class;
1bfebf5f 90
93d190e0 91 %args = $self->canonicalize_args($name, %args);
1bbaa8ed 92 $self->validate_args($name, \%args);
45ea8620 93
32af3489 94 $args{should_coerce} = delete $args{coerce}
4188b837 95 if exists $args{coerce};
96
eec1bb49 97 if (exists $args{isa}) {
98 my $type_constraint = delete $args{isa};
684db121 99 $args{type_constraint}= Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($type_constraint);
eec1bb49 100 }
186657a9 101
2608b115 102 my $attribute = $self->new($name, %args);
1bfebf5f 103
724c77c0 104 $attribute->_create_args(\%args);
c3398f5b 105
724c77c0 106 $class->add_attribute($attribute);
b2500191 107
74be9f76 108 my $associated_methods = 0;
109
90fe520e 110 my $generator_class = $self->accessor_metaclass;
111 foreach my $type(qw(accessor reader writer predicate clearer handles)){
112 if(exists $attribute->{$type}){
113 my $installer = '_install_' . $type;
114 $generator_class->$installer($attribute, $attribute->{$type}, $class);
74be9f76 115 $associated_methods++;
c3398f5b 116 }
117 }
118
90fe520e 119 if($associated_methods == 0 && ($attribute->_is_metadata || '') ne 'bare'){
c8c1aeaf 120 Carp::cluck(qq{Attribute ($name) of class }.$class->name.qq{ has no associated methods (did you mean to provide an "is" argument?)});
a7d31de0 121
74be9f76 122 }
123
c3398f5b 124 return $attribute;
125}
126
93d190e0 127sub canonicalize_args {
128 my $self = shift;
129 my $name = shift;
130 my %args = @_;
131
132 if ($args{lazy_build}) {
133 $args{lazy} = 1;
134 $args{required} = 1;
135 $args{builder} = "_build_${name}"
136 if !exists($args{builder});
137 if ($name =~ /^_/) {
138 $args{clearer} = "_clear${name}" if !exists($args{clearer});
139 $args{predicate} = "_has${name}" if !exists($args{predicate});
140 }
141 else {
142 $args{clearer} = "clear_${name}" if !exists($args{clearer});
143 $args{predicate} = "has_${name}" if !exists($args{predicate});
144 }
145 }
146
147 return %args;
148}
149
8fd9e611 150sub validate_args {
151 my $self = shift;
152 my $name = shift;
1bbaa8ed 153 my $args = shift;
8fd9e611 154
fce211ae 155 $self->throw_error("You can not use lazy_build and default for the same attribute ($name)")
1bbaa8ed 156 if $args->{lazy_build} && exists $args->{default};
93d190e0 157
fce211ae 158 $self->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it")
1bbaa8ed 159 if $args->{lazy}
160 && !exists($args->{default})
161 && !exists($args->{builder});
8fd9e611 162
fce211ae 163 $self->throw_error("References are not allowed as default values, you must wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])")
1bbaa8ed 164 if ref($args->{default})
165 && ref($args->{default}) ne 'CODE';
8fd9e611 166
fce211ae 167 $self->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)")
1bbaa8ed 168 if $args->{auto_deref} && !exists($args->{isa});
8fd9e611 169
fce211ae 170 $self->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)")
1bbaa8ed 171 if $args->{auto_deref}
a3f4f68e 172 && $args->{isa} !~ /^(?:ArrayRef|HashRef)(?:\[.*\])?$/;
8fd9e611 173
506db557 174 if ($args->{trigger}) {
a08e715f 175 if (ref($args->{trigger}) eq 'HASH') {
fce211ae 176 $self->throw_error("HASH-based form of trigger has been removed. Only the coderef form of triggers are now supported.");
844fa049 177 }
506db557 178
fce211ae 179 $self->throw_error("Trigger must be a CODE ref on attribute ($name)")
a08e715f 180 if ref($args->{trigger}) ne 'CODE';
506db557 181 }
6c5498d0 182
8fd9e611 183 return 1;
184}
185
20e25eb9 186sub verify_against_type_constraint {
f55f60dd 187 my ($self, $value) = @_;
188 my $tc = $self->type_constraint;
189 return 1 unless $tc;
5aa30ced 190
f55f60dd 191 local $_ = $value;
192 return 1 if $tc->check($value);
5aa30ced 193
f55f60dd 194 $self->verify_type_constraint_error($self->name, $value, $tc);
b3b74cc6 195}
5aa30ced 196
b3b74cc6 197sub verify_type_constraint_error {
198 my($self, $name, $value, $type) = @_;
fce211ae 199 $self->throw_error("Attribute ($name) does not pass the type constraint because: " . $type->get_message($value));
5aa30ced 200}
201
8a7f2a8a 202sub coerce_constraint { ## my($self, $value) = @_;
203 my $type = $_[0]->{type_constraint}
204 or return $_[1];
684db121 205 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $_[0]->type_constraint, $_[1]);
4188b837 206}
207
af745d5a 208sub _canonicalize_handles {
209 my $self = shift;
210 my $handles = shift;
211
212 if (ref($handles) eq 'HASH') {
213 return %$handles;
214 }
215 elsif (ref($handles) eq 'ARRAY') {
216 return map { $_ => $_ } @$handles;
217 }
218 else {
fce211ae 219 $self->throw_error("Unable to canonicalize the 'handles' option with $handles");
af745d5a 220 }
221}
222
1bfebf5f 223sub clone_parent {
224 my $self = shift;
225 my $class = shift;
226 my $name = shift;
227 my %args = ($self->get_parent_args($class, $name), @_);
228
229 $self->create($class, $name, %args);
230}
231
232sub get_parent_args {
233 my $self = shift;
234 my $class = shift;
235 my $name = shift;
236
724c77c0 237 for my $super ($class->linearized_isa) {
bb733405 238 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 239 or next;
240 return %{ $super_attr->_create_args };
241 }
242
fce211ae 243 $self->throw_error("Could not find an attribute by the name of '$name' to inherit from");
244}
245
246sub throw_error{
247 my $self = shift;
248
249 my $metaclass = (ref $self && $self->associated_class) || 'Mouse::Meta::Class';
250 $metaclass->throw_error(@_, depth => 1);
1bfebf5f 251}
252
c3398f5b 2531;
254
255__END__
256
257=head1 NAME
258
306290e8 259Mouse::Meta::Attribute - attribute metaclass
c3398f5b 260
261=head1 METHODS
262
306290e8 263=head2 new %args -> Mouse::Meta::Attribute
c3398f5b 264
306290e8 265Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 266
306290e8 267=head2 create OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
c3398f5b 268
269Creates a new attribute in OwnerClass. Accessors and helper methods are
270installed. Some error checking is done.
271
272=head2 name -> AttributeName
273
181502b9 274=head2 associated_class -> OwnerClass
c3398f5b 275
ab27a55e 276=head2 is_required -> Bool
c3398f5b 277
ab27a55e 278=head2 default -> Item
c3398f5b 279
ab27a55e 280=head2 has_default -> Bool
281
282=head2 is_lazy -> Bool
283
284=head2 predicate -> MethodName | Undef
285
286=head2 has_predicate -> Bool
287
288=head2 clearer -> MethodName | Undef
289
290=head2 has_clearer -> Bool
c3398f5b 291
292=head2 handles -> { LocalName => RemoteName }
293
ab27a55e 294=head2 has_handles -> Bool
295
3645b316 296=head2 is_weak_ref -> Bool
c3398f5b 297
298=head2 init_arg -> Str
299
ab27a55e 300=head2 type_constraint -> Str
301
302=head2 has_type_constraint -> Bool
303
304=head2 trigger => CODE | Undef
305
306=head2 has_trigger -> Bool
307
308=head2 builder => MethodName | Undef
309
310=head2 has_builder -> Bool
311
93f08899 312=head2 is_lazy_build => Bool
313
0fff36e6 314=head2 should_auto_deref -> Bool
315
c3398f5b 316Informational methods.
317
20e25eb9 318=head2 verify_against_type_constraint Item -> 1 | ERROR
fb706f5c 319
320Checks that the given value passes this attribute's type constraint. Returns 1
321on success, otherwise C<confess>es.
322
93d190e0 323=head2 canonicalize_args Name, %args -> %args
324
325Canonicalizes some arguments to create. In particular, C<lazy_build> is
326canonicalized into C<lazy>, C<builder>, etc.
327
1bbaa8ed 328=head2 validate_args Name, \%args -> 1 | ERROR
93d190e0 329
330Checks that the arguments to create the attribute (ie those specified by
331C<has>) are valid.
332
f7b11a21 333=head2 clone_parent OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
334
335Creates a new attribute in OwnerClass, inheriting options from parent classes.
336Accessors and helper methods are installed. Some error checking is done.
337
338=head2 get_parent_args OwnerClass, AttributeName -> Hash
339
340Returns the options that the parent class of C<OwnerClass> used for attribute
341C<AttributeName>.
342
c3398f5b 343=cut
344