Refactor attribute constructor
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
CommitLineData
306290e8 1package Mouse::Meta::Attribute;
c3398f5b 2use strict;
3use warnings;
4
2efc0af1 5use Carp ();
6use Scalar::Util qw(weaken);
7
6d28c5cf 8use Mouse::Util;
9
684db121 10use Mouse::Meta::TypeConstraint;
90fe520e 11use Mouse::Meta::Method::Accessor;
c3398f5b 12
87ca293b 13sub _process_options{
14 my($class, $name, $args) = @_;
c3398f5b 15
2efc0af1 16 # taken from Class::MOP::Attribute::new
17
18 defined($name)
19 or $class->throw_error('You must provide a name for the attribute');
2e7e86c6 20
1b9e472d 21 if(!exists $args->{init_arg}){
22 $args->{init_arg} = $name;
2efc0af1 23 }
24
25 # 'required' requires eigher 'init_arg', 'builder', or 'default'
1b9e472d 26 my $can_be_required = defined( $args->{init_arg} );
2efc0af1 27
1b9e472d 28 if(exists $args->{builder}){
121acb8a 29 $class->throw_error('builder must be a defined scalar value which is a method name')
1b9e472d 30 if ref $args->{builder} || !(defined $args->{builder});
2efc0af1 31
32 $can_be_required++;
33 }
1b9e472d 34 elsif(exists $args->{default}){
35 if(ref $args->{default} && ref($args->{default}) ne 'CODE'){
2efc0af1 36 $class->throw_error("References are not allowed as default values, you must "
37 . "wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])");
38 }
39 $can_be_required++;
40 }
41
1b9e472d 42 if( $args->{required} && !$can_be_required ) {
121acb8a 43 $class->throw_error("You cannot have a required attribute ($name) without a default, builder, or an init_arg");
2efc0af1 44 }
45
1b9e472d 46 # taken from Mouse::Meta::Attribute->new and _process_args->
2efc0af1 47
1b9e472d 48 if(exists $args->{is}){
49 my $is = $args->{is};
2efc0af1 50
51 if($is eq 'ro'){
1b9e472d 52 $args->{reader} ||= $name;
2efc0af1 53 }
54 elsif($is eq 'rw'){
1b9e472d 55 if(exists $args->{writer}){
56 $args->{reader} ||= $name;
2efc0af1 57 }
58 else{
1b9e472d 59 $args->{accessor} ||= $name;
2efc0af1 60 }
61 }
62 elsif($is eq 'bare'){
63 # do nothing, but don't complain (later) about missing methods
64 }
65 else{
66 $is = 'undef' if !defined $is;
67 $class->throw_error("I do not understand this option (is => $is) on attribute ($name)");
68 }
69 }
70
71 my $tc;
1b9e472d 72 if(exists $args->{isa}){
73 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($args->{isa});
2efc0af1 74 }
1b9e472d 75 elsif(exists $args->{does}){
76 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
2efc0af1 77 }
1b9e472d 78 $tc = $args->{type_constraint};
2efc0af1 79
1b9e472d 80 if($args->{coerce}){
2efc0af1 81 defined($tc)
82 || $class->throw_error("You cannot have coercion without specifying a type constraint on attribute ($name)");
83
1b9e472d 84 $args->{weak_ref}
121acb8a 85 && $class->throw_error("You cannot have a weak reference to a coerced value on attribute ($name)");
2efc0af1 86 }
87
1b9e472d 88 if ($args->{lazy_build}) {
89 exists($args->{default})
121acb8a 90 && $class->throw_error("You can not use lazy_build and default for the same attribute ($name)");
91
1b9e472d 92 $args->{lazy} = 1;
93 $args->{builder} ||= "_build_${name}";
121acb8a 94 if ($name =~ /^_/) {
1b9e472d 95 $args->{clearer} ||= "_clear${name}";
96 $args->{predicate} ||= "_has${name}";
121acb8a 97 }
98 else {
1b9e472d 99 $args->{clearer} ||= "clear_${name}";
100 $args->{predicate} ||= "has_${name}";
121acb8a 101 }
2efc0af1 102 }
103
1b9e472d 104 if ($args->{auto_deref}) {
121acb8a 105 defined($tc)
106 || $class->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)");
2efc0af1 107
121acb8a 108 ( $tc->is_a_type_of('ArrayRef') || $tc->is_a_type_of('HashRef') )
109 || $class->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)");
2efc0af1 110 }
111
1b9e472d 112 if (exists $args->{trigger}) {
113 ('CODE' eq ref $args->{trigger})
121acb8a 114 || $class->throw_error("Trigger must be a CODE ref on attribute ($name)");
2efc0af1 115 }
45959ffa 116
1b9e472d 117 if ($args->{lazy}) {
118 (exists $args->{default} || defined $args->{builder})
121acb8a 119 || $class->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it");
2efc0af1 120 }
90fe520e 121
87ca293b 122 # XXX: for backward compatibility (with method modifiers)
123 if($class->can('canonicalize_args') != \&canonicalize_args){
124 %{$args} = $class->canonicalize_args($name, %{$args});
125 }
126 return;
127}
128
129sub new {
130 my $class = shift;
131 my $name = shift;
132
133 my %args = (@_ == 1) ? %{ $_[0] } : @_;
134
135 $class->_process_options($name, \%args);
136
137 $args{name} = $name;
138
139 my $instance = bless \%args, $class;
2efc0af1 140
1b9e472d 141 # extra attributes
142 if($class ne __PACKAGE__){
87ca293b 143 $class->meta->_initialize_instance($instance,\%args);
90fe520e 144 }
c3398f5b 145
2efc0af1 146# XXX: there is no fast way to check attribute validity
1b9e472d 147# my @bad = ...;
2efc0af1 148# if(@bad){
149# @bad = sort @bad;
150# Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad");
151# }
152
1b9e472d 153 return $instance
c3398f5b 154}
155
1b9e472d 156sub does {
157 my ($self, $role_name) = @_;
158 my $meta = Mouse::Meta::Class->initialize(ref($self) || $self);
159
160 (defined $role_name)
161 || $meta->throw_error("You must supply a role name to does()");
162
163 return $meta->does_role($role_name);
164};
165
90fe520e 166# readers
167
f6715552 168sub name { $_[0]->{name} }
169sub associated_class { $_[0]->{associated_class} }
90fe520e 170
171sub accessor { $_[0]->{accessor} }
172sub reader { $_[0]->{reader} }
173sub writer { $_[0]->{writer} }
174sub predicate { $_[0]->{predicate} }
175sub clearer { $_[0]->{clearer} }
176sub handles { $_[0]->{handles} }
177
f6715552 178sub _is_metadata { $_[0]->{is} }
179sub is_required { $_[0]->{required} }
180sub default { $_[0]->{default} }
181sub is_lazy { $_[0]->{lazy} }
182sub is_lazy_build { $_[0]->{lazy_build} }
f6715552 183sub is_weak_ref { $_[0]->{weak_ref} }
184sub init_arg { $_[0]->{init_arg} }
185sub type_constraint { $_[0]->{type_constraint} }
2efc0af1 186
f6715552 187sub trigger { $_[0]->{trigger} }
188sub builder { $_[0]->{builder} }
189sub should_auto_deref { $_[0]->{auto_deref} }
2efc0af1 190sub should_coerce { $_[0]->{coerce} }
c3398f5b 191
1b9e472d 192sub get_read_method { $_[0]->{reader} || $_[0]->{accessor} }
193sub get_write_method { $_[0]->{writer} || $_[0]->{accessor} }
194
90fe520e 195# predicates
196
197sub has_accessor { exists $_[0]->{accessor} }
198sub has_reader { exists $_[0]->{reader} }
199sub has_writer { exists $_[0]->{writer} }
f6715552 200sub has_predicate { exists $_[0]->{predicate} }
201sub has_clearer { exists $_[0]->{clearer} }
202sub has_handles { exists $_[0]->{handles} }
90fe520e 203
204sub has_default { exists $_[0]->{default} }
f6715552 205sub has_type_constraint { exists $_[0]->{type_constraint} }
206sub has_trigger { exists $_[0]->{trigger} }
207sub has_builder { exists $_[0]->{builder} }
eec1bb49 208
1b9e472d 209sub has_read_method { exists $_[0]->{reader} || exists $_[0]->{accessor} }
210sub has_write_method { exists $_[0]->{writer} || exists $_[0]->{accessor} }
211
1bfebf5f 212sub _create_args {
213 $_[0]->{_create_args} = $_[1] if @_ > 1;
214 $_[0]->{_create_args}
215}
216
90fe520e 217sub accessor_metaclass { 'Mouse::Meta::Method::Accessor' }
218
87ca293b 219sub interpolate_class{
1b9e472d 220 my($class, $name, $args) = @_;
c3398f5b 221
1b9e472d 222 if(my $metaclass = delete $args->{metaclass}){
223 $class = Mouse::Util::resolve_metaclass_alias( Attribute => $metaclass );
224 }
1bfebf5f 225
87ca293b 226 my @traits;
1b9e472d 227 if(my $traits_ref = delete $args->{traits}){
87ca293b 228
1b9e472d 229 for (my $i = 0; $i < @{$traits_ref}; $i++) {
230 my $trait = Mouse::Util::resolve_metaclass_alias(Attribute => $traits_ref->[$i], trait => 1);
b2500191 231
1b9e472d 232 next if $class->does($trait);
74be9f76 233
1b9e472d 234 push @traits, $trait;
235
236 # are there options?
237 push @traits, $traits_ref->[++$i]
238 if ref($traits_ref->[$i+1]);
c3398f5b 239 }
c3398f5b 240
1b9e472d 241 if (@traits) {
242 $class = Mouse::Meta::Class->create_anon_class(
243 superclasses => [ $class ],
244 roles => \@traits,
245 cache => 1,
246 )->name;
1b9e472d 247 }
74be9f76 248 }
249
87ca293b 250 return( $class, @traits );
1b9e472d 251}
252
253sub canonicalize_args{
254 my ($self, $name, %args) = @_;
255
256 Carp::cluck("$self->canonicalize_args has been deprecated."
87ca293b 257 . "Use \$self->_process_options instead.");
1b9e472d 258
259 return %args;
260}
261
262sub create {
263 my ($self, $class, $name, %args) = @_;
264
265 Carp::cluck("$self->create has been deprecated."
266 . "Use \$meta->add_attribute and \$attr->install_accessors instead.");
267
268 # noop
269 return $self;
c3398f5b 270}
271
20e25eb9 272sub verify_against_type_constraint {
f55f60dd 273 my ($self, $value) = @_;
274 my $tc = $self->type_constraint;
275 return 1 unless $tc;
5aa30ced 276
f55f60dd 277 local $_ = $value;
278 return 1 if $tc->check($value);
5aa30ced 279
f55f60dd 280 $self->verify_type_constraint_error($self->name, $value, $tc);
b3b74cc6 281}
5aa30ced 282
b3b74cc6 283sub verify_type_constraint_error {
284 my($self, $name, $value, $type) = @_;
fce211ae 285 $self->throw_error("Attribute ($name) does not pass the type constraint because: " . $type->get_message($value));
5aa30ced 286}
287
8a7f2a8a 288sub coerce_constraint { ## my($self, $value) = @_;
289 my $type = $_[0]->{type_constraint}
290 or return $_[1];
684db121 291 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $_[0]->type_constraint, $_[1]);
4188b837 292}
293
af745d5a 294sub _canonicalize_handles {
295 my $self = shift;
296 my $handles = shift;
297
298 if (ref($handles) eq 'HASH') {
299 return %$handles;
300 }
301 elsif (ref($handles) eq 'ARRAY') {
302 return map { $_ => $_ } @$handles;
303 }
304 else {
fce211ae 305 $self->throw_error("Unable to canonicalize the 'handles' option with $handles");
af745d5a 306 }
307}
308
1b9e472d 309sub clone_and_inherit_options{
310 my $self = shift;
311 my $name = shift;
312
313 return ref($self)->new($name, %{$self}, @_ == 1 ? %{$_[0]} : @_);
314}
315
1bfebf5f 316sub clone_parent {
317 my $self = shift;
318 my $class = shift;
319 my $name = shift;
320 my %args = ($self->get_parent_args($class, $name), @_);
321
1b9e472d 322 Carp::cluck("$self->clone_parent has been deprecated."
323 . "Use \$meta->add_attribute and \$attr->install_accessors instead.");
324
325
1bfebf5f 326 $self->create($class, $name, %args);
327}
328
329sub get_parent_args {
330 my $self = shift;
331 my $class = shift;
332 my $name = shift;
333
724c77c0 334 for my $super ($class->linearized_isa) {
bb733405 335 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 336 or next;
337 return %{ $super_attr->_create_args };
338 }
339
fce211ae 340 $self->throw_error("Could not find an attribute by the name of '$name' to inherit from");
341}
342
1b9e472d 343sub install_accessors{
344 my($attribute) = @_;
345
346 my $metaclass = $attribute->{associated_class};
347 my $generator_class = $attribute->accessor_metaclass;
348
349 foreach my $type(qw(accessor reader writer predicate clearer handles)){
350 if(exists $attribute->{$type}){
351 my $installer = '_install_' . $type;
352 $generator_class->$installer($attribute, $attribute->{$type}, $metaclass);
353 $attribute->{associated_methods}++;
354 }
355 }
356
357 if($attribute->can('create') != \&create){
358 $attribute->create($metaclass, $attribute->name, %{$attribute});
359 }
360
361 return;
362}
363
fce211ae 364sub throw_error{
365 my $self = shift;
366
367 my $metaclass = (ref $self && $self->associated_class) || 'Mouse::Meta::Class';
368 $metaclass->throw_error(@_, depth => 1);
1bfebf5f 369}
370
c3398f5b 3711;
372
373__END__
374
375=head1 NAME
376
306290e8 377Mouse::Meta::Attribute - attribute metaclass
c3398f5b 378
379=head1 METHODS
380
306290e8 381=head2 new %args -> Mouse::Meta::Attribute
c3398f5b 382
306290e8 383Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 384
306290e8 385=head2 create OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
c3398f5b 386
387Creates a new attribute in OwnerClass. Accessors and helper methods are
388installed. Some error checking is done.
389
390=head2 name -> AttributeName
391
181502b9 392=head2 associated_class -> OwnerClass
c3398f5b 393
ab27a55e 394=head2 is_required -> Bool
c3398f5b 395
ab27a55e 396=head2 default -> Item
c3398f5b 397
ab27a55e 398=head2 has_default -> Bool
399
400=head2 is_lazy -> Bool
401
402=head2 predicate -> MethodName | Undef
403
404=head2 has_predicate -> Bool
405
406=head2 clearer -> MethodName | Undef
407
408=head2 has_clearer -> Bool
c3398f5b 409
410=head2 handles -> { LocalName => RemoteName }
411
ab27a55e 412=head2 has_handles -> Bool
413
3645b316 414=head2 is_weak_ref -> Bool
c3398f5b 415
416=head2 init_arg -> Str
417
ab27a55e 418=head2 type_constraint -> Str
419
420=head2 has_type_constraint -> Bool
421
422=head2 trigger => CODE | Undef
423
424=head2 has_trigger -> Bool
425
426=head2 builder => MethodName | Undef
427
428=head2 has_builder -> Bool
429
93f08899 430=head2 is_lazy_build => Bool
431
0fff36e6 432=head2 should_auto_deref -> Bool
433
c3398f5b 434Informational methods.
435
20e25eb9 436=head2 verify_against_type_constraint Item -> 1 | ERROR
fb706f5c 437
438Checks that the given value passes this attribute's type constraint. Returns 1
439on success, otherwise C<confess>es.
440
93d190e0 441=head2 canonicalize_args Name, %args -> %args
442
443Canonicalizes some arguments to create. In particular, C<lazy_build> is
444canonicalized into C<lazy>, C<builder>, etc.
445
1bbaa8ed 446=head2 validate_args Name, \%args -> 1 | ERROR
93d190e0 447
448Checks that the arguments to create the attribute (ie those specified by
449C<has>) are valid.
450
f7b11a21 451=head2 clone_parent OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
452
453Creates a new attribute in OwnerClass, inheriting options from parent classes.
454Accessors and helper methods are installed. Some error checking is done.
455
456=head2 get_parent_args OwnerClass, AttributeName -> Hash
457
458Returns the options that the parent class of C<OwnerClass> used for attribute
459C<AttributeName>.
460
c3398f5b 461=cut
462