Switch to Mouse::Exporter
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
CommitLineData
306290e8 1package Mouse::Meta::Attribute;
bc69ee88 2use Mouse::Util qw(:meta); # enables strict and warnings
c3398f5b 3
2efc0af1 4use Carp ();
2efc0af1 5
684db121 6use Mouse::Meta::TypeConstraint;
90fe520e 7use Mouse::Meta::Method::Accessor;
c3398f5b 8
4ab51fb0 9
87ca293b 10sub _process_options{
11 my($class, $name, $args) = @_;
c3398f5b 12
04493075 13
14 # XXX: for backward compatibility (with method modifiers)
15 if($class->can('canonicalize_args') != \&canonicalize_args){
16 %{$args} = $class->canonicalize_args($name, %{$args});
17 }
18
2efc0af1 19 # taken from Class::MOP::Attribute::new
20
21 defined($name)
22 or $class->throw_error('You must provide a name for the attribute');
2e7e86c6 23
1b9e472d 24 if(!exists $args->{init_arg}){
25 $args->{init_arg} = $name;
2efc0af1 26 }
27
28 # 'required' requires eigher 'init_arg', 'builder', or 'default'
1b9e472d 29 my $can_be_required = defined( $args->{init_arg} );
2efc0af1 30
1b9e472d 31 if(exists $args->{builder}){
c6d8f5ca 32 # XXX:
33 # Moose refuses a CODE ref builder, but Mouse doesn't for backward compatibility
34 # This feature will be changed in a future. (gfx)
121acb8a 35 $class->throw_error('builder must be a defined scalar value which is a method name')
c6d8f5ca 36 #if ref $args->{builder} || !defined $args->{builder};
37 if !defined $args->{builder};
2efc0af1 38
39 $can_be_required++;
40 }
1b9e472d 41 elsif(exists $args->{default}){
42 if(ref $args->{default} && ref($args->{default}) ne 'CODE'){
2efc0af1 43 $class->throw_error("References are not allowed as default values, you must "
44 . "wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])");
45 }
46 $can_be_required++;
47 }
48
1b9e472d 49 if( $args->{required} && !$can_be_required ) {
121acb8a 50 $class->throw_error("You cannot have a required attribute ($name) without a default, builder, or an init_arg");
2efc0af1 51 }
52
1b9e472d 53 # taken from Mouse::Meta::Attribute->new and _process_args->
2efc0af1 54
1b9e472d 55 if(exists $args->{is}){
56 my $is = $args->{is};
2efc0af1 57
58 if($is eq 'ro'){
1b9e472d 59 $args->{reader} ||= $name;
2efc0af1 60 }
61 elsif($is eq 'rw'){
1b9e472d 62 if(exists $args->{writer}){
63 $args->{reader} ||= $name;
2efc0af1 64 }
65 else{
1b9e472d 66 $args->{accessor} ||= $name;
2efc0af1 67 }
68 }
69 elsif($is eq 'bare'){
70 # do nothing, but don't complain (later) about missing methods
71 }
72 else{
73 $is = 'undef' if !defined $is;
74 $class->throw_error("I do not understand this option (is => $is) on attribute ($name)");
75 }
76 }
77
78 my $tc;
1b9e472d 79 if(exists $args->{isa}){
80 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($args->{isa});
2efc0af1 81 }
1b9e472d 82 elsif(exists $args->{does}){
4a29b63e 83 # TODO
84 # $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
2efc0af1 85 }
1b9e472d 86 $tc = $args->{type_constraint};
2efc0af1 87
1b9e472d 88 if($args->{coerce}){
2efc0af1 89 defined($tc)
90 || $class->throw_error("You cannot have coercion without specifying a type constraint on attribute ($name)");
91
1b9e472d 92 $args->{weak_ref}
121acb8a 93 && $class->throw_error("You cannot have a weak reference to a coerced value on attribute ($name)");
2efc0af1 94 }
95
1b9e472d 96 if ($args->{lazy_build}) {
97 exists($args->{default})
121acb8a 98 && $class->throw_error("You can not use lazy_build and default for the same attribute ($name)");
99
1b9e472d 100 $args->{lazy} = 1;
101 $args->{builder} ||= "_build_${name}";
121acb8a 102 if ($name =~ /^_/) {
1b9e472d 103 $args->{clearer} ||= "_clear${name}";
104 $args->{predicate} ||= "_has${name}";
121acb8a 105 }
106 else {
1b9e472d 107 $args->{clearer} ||= "clear_${name}";
108 $args->{predicate} ||= "has_${name}";
121acb8a 109 }
2efc0af1 110 }
111
1b9e472d 112 if ($args->{auto_deref}) {
121acb8a 113 defined($tc)
114 || $class->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)");
2efc0af1 115
121acb8a 116 ( $tc->is_a_type_of('ArrayRef') || $tc->is_a_type_of('HashRef') )
117 || $class->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)");
2efc0af1 118 }
119
1b9e472d 120 if (exists $args->{trigger}) {
121 ('CODE' eq ref $args->{trigger})
121acb8a 122 || $class->throw_error("Trigger must be a CODE ref on attribute ($name)");
2efc0af1 123 }
45959ffa 124
1b9e472d 125 if ($args->{lazy}) {
126 (exists $args->{default} || defined $args->{builder})
121acb8a 127 || $class->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it");
2efc0af1 128 }
90fe520e 129
87ca293b 130 return;
131}
132
133sub new {
134 my $class = shift;
135 my $name = shift;
136
137 my %args = (@_ == 1) ? %{ $_[0] } : @_;
138
139 $class->_process_options($name, \%args);
140
141 $args{name} = $name;
142
926290ac 143 my $self = bless \%args, $class;
2efc0af1 144
1b9e472d 145 # extra attributes
146 if($class ne __PACKAGE__){
926290ac 147 $class->meta->_initialize_object($self, \%args);
90fe520e 148 }
c3398f5b 149
2efc0af1 150# XXX: there is no fast way to check attribute validity
1b9e472d 151# my @bad = ...;
2efc0af1 152# if(@bad){
153# @bad = sort @bad;
154# Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad");
155# }
156
926290ac 157 return $self;
c3398f5b 158}
159
90fe520e 160# readers
161
f6715552 162sub name { $_[0]->{name} }
163sub associated_class { $_[0]->{associated_class} }
90fe520e 164
165sub accessor { $_[0]->{accessor} }
166sub reader { $_[0]->{reader} }
167sub writer { $_[0]->{writer} }
168sub predicate { $_[0]->{predicate} }
169sub clearer { $_[0]->{clearer} }
170sub handles { $_[0]->{handles} }
171
f6715552 172sub _is_metadata { $_[0]->{is} }
173sub is_required { $_[0]->{required} }
174sub default { $_[0]->{default} }
175sub is_lazy { $_[0]->{lazy} }
176sub is_lazy_build { $_[0]->{lazy_build} }
f6715552 177sub is_weak_ref { $_[0]->{weak_ref} }
178sub init_arg { $_[0]->{init_arg} }
179sub type_constraint { $_[0]->{type_constraint} }
2efc0af1 180
f6715552 181sub trigger { $_[0]->{trigger} }
182sub builder { $_[0]->{builder} }
183sub should_auto_deref { $_[0]->{auto_deref} }
2efc0af1 184sub should_coerce { $_[0]->{coerce} }
c3398f5b 185
90fe520e 186# predicates
187
188sub has_accessor { exists $_[0]->{accessor} }
189sub has_reader { exists $_[0]->{reader} }
190sub has_writer { exists $_[0]->{writer} }
f6715552 191sub has_predicate { exists $_[0]->{predicate} }
192sub has_clearer { exists $_[0]->{clearer} }
193sub has_handles { exists $_[0]->{handles} }
90fe520e 194
195sub has_default { exists $_[0]->{default} }
f6715552 196sub has_type_constraint { exists $_[0]->{type_constraint} }
197sub has_trigger { exists $_[0]->{trigger} }
198sub has_builder { exists $_[0]->{builder} }
eec1bb49 199
1b9e472d 200sub has_read_method { exists $_[0]->{reader} || exists $_[0]->{accessor} }
201sub has_write_method { exists $_[0]->{writer} || exists $_[0]->{accessor} }
202
df77fd72 203sub _create_args { # DEPRECATED
1bfebf5f 204 $_[0]->{_create_args} = $_[1] if @_ > 1;
205 $_[0]->{_create_args}
206}
207
87ca293b 208sub interpolate_class{
8cf51b82 209 my($class, $args) = @_;
c3398f5b 210
1b9e472d 211 if(my $metaclass = delete $args->{metaclass}){
212 $class = Mouse::Util::resolve_metaclass_alias( Attribute => $metaclass );
213 }
1bfebf5f 214
87ca293b 215 my @traits;
1b9e472d 216 if(my $traits_ref = delete $args->{traits}){
87ca293b 217
1b9e472d 218 for (my $i = 0; $i < @{$traits_ref}; $i++) {
219 my $trait = Mouse::Util::resolve_metaclass_alias(Attribute => $traits_ref->[$i], trait => 1);
b2500191 220
1b9e472d 221 next if $class->does($trait);
74be9f76 222
1b9e472d 223 push @traits, $trait;
224
225 # are there options?
226 push @traits, $traits_ref->[++$i]
227 if ref($traits_ref->[$i+1]);
c3398f5b 228 }
c3398f5b 229
1b9e472d 230 if (@traits) {
231 $class = Mouse::Meta::Class->create_anon_class(
232 superclasses => [ $class ],
233 roles => \@traits,
234 cache => 1,
235 )->name;
1b9e472d 236 }
74be9f76 237 }
238
87ca293b 239 return( $class, @traits );
1b9e472d 240}
241
df77fd72 242sub canonicalize_args{ # DEPRECATED
1b9e472d 243 my ($self, $name, %args) = @_;
244
245 Carp::cluck("$self->canonicalize_args has been deprecated."
04493075 246 . "Use \$self->_process_options instead.")
247 if _MOUSE_VERBOSE;
1b9e472d 248
249 return %args;
250}
251
252sub create {
253 my ($self, $class, $name, %args) = @_;
254
255 Carp::cluck("$self->create has been deprecated."
04493075 256 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
257 if _MOUSE_VERBOSE;
1b9e472d 258
259 # noop
260 return $self;
c3398f5b 261}
262
ffbbf459 263sub _coerce_and_verify {
264 my($self, $value, $instance) = @_;
265
266 my $type_constraint = $self->{type_constraint};
267
268 return $value if !$type_constraint;
269
270 if ($self->should_coerce && $type_constraint->has_coercion) {
271 $value = $type_constraint->coerce($value);
272 }
273
274 return $value if $type_constraint->check($value);
275
276 $self->verify_against_type_constraint($value);
277
278 return $value;
279}
280
20e25eb9 281sub verify_against_type_constraint {
f55f60dd 282 my ($self, $value) = @_;
5aa30ced 283
ffbbf459 284 my $type_constraint = $self->{type_constraint};
285 return 1 if !$type_constraint;;
286 return 1 if $type_constraint->check($value);
5aa30ced 287
ffbbf459 288 $self->verify_type_constraint_error($self->name, $value, $type_constraint);
b3b74cc6 289}
5aa30ced 290
b3b74cc6 291sub verify_type_constraint_error {
292 my($self, $name, $value, $type) = @_;
fce211ae 293 $self->throw_error("Attribute ($name) does not pass the type constraint because: " . $type->get_message($value));
5aa30ced 294}
295
df77fd72 296sub coerce_constraint { # DEPRECATED
8a7f2a8a 297 my $type = $_[0]->{type_constraint}
298 or return $_[1];
e763d56e 299
300 Carp::cluck("coerce_constraint() has been deprecated, which was an internal utility anyway");
301
7ca5c5fb 302 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $type, $_[1]);
4188b837 303}
304
1b9e472d 305sub clone_and_inherit_options{
8cf51b82 306 my($self, %args) = @_;
307
308 my($attribute_class, @traits) = ref($self)->interpolate_class(\%args);
1b9e472d 309
8cf51b82 310 $args{traits} = \@traits if @traits;
311 return $attribute_class->new($self->name, %{$self}, %args);
1b9e472d 312}
313
df77fd72 314sub clone_parent { # DEPRECATED
1bfebf5f 315 my $self = shift;
316 my $class = shift;
317 my $name = shift;
318 my %args = ($self->get_parent_args($class, $name), @_);
319
1b9e472d 320 Carp::cluck("$self->clone_parent has been deprecated."
04493075 321 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
322 if _MOUSE_VERBOSE;
1b9e472d 323
7ca5c5fb 324 $self->clone_and_inherited_args($class, $name, %args);
1bfebf5f 325}
326
df77fd72 327sub get_parent_args { # DEPRECATED
1bfebf5f 328 my $self = shift;
329 my $class = shift;
330 my $name = shift;
331
724c77c0 332 for my $super ($class->linearized_isa) {
bb733405 333 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 334 or next;
335 return %{ $super_attr->_create_args };
336 }
337
fce211ae 338 $self->throw_error("Could not find an attribute by the name of '$name' to inherit from");
339}
340
2a464664 341
df77fd72 342sub get_read_method { # DEPRECATED
343 $_[0]->{reader} || $_[0]->{accessor}
344}
345sub get_write_method { # DEPRECATED
346 $_[0]->{writer} || $_[0]->{accessor}
347}
2a464664 348
349sub get_read_method_ref{
350 my($self) = @_;
351
352 $self->{_read_method_ref} ||= do{
353 my $metaclass = $self->associated_class
354 or $self->throw_error('No asocciated class for ' . $self->name);
355
356 my $reader = $self->{reader} || $self->{accessor};
357 if($reader){
358 $metaclass->name->can($reader);
359 }
360 else{
4ab51fb0 361 $self->accessor_metaclass->_generate_reader($self, $metaclass);
2a464664 362 }
363 };
364}
365
366sub get_write_method_ref{
367 my($self) = @_;
368
369 $self->{_write_method_ref} ||= do{
370 my $metaclass = $self->associated_class
371 or $self->throw_error('No asocciated class for ' . $self->name);
372
373 my $reader = $self->{writer} || $self->{accessor};
374 if($reader){
375 $metaclass->name->can($reader);
376 }
377 else{
4ab51fb0 378 $self->accessor_metaclass->_generate_writer($self, $metaclass);
2a464664 379 }
380 };
381}
382
4ab51fb0 383sub _canonicalize_handles {
384 my($self, $handles) = @_;
385
386 if (ref($handles) eq 'HASH') {
387 return %$handles;
388 }
389 elsif (ref($handles) eq 'ARRAY') {
390 return map { $_ => $_ } @$handles;
391 }
392 else {
393 $self->throw_error("Unable to canonicalize the 'handles' option with $handles");
394 }
395}
396
397
04493075 398sub associate_method{
399 my ($attribute, $method) = @_;
400 $attribute->{associated_methods}++;
401 return;
402}
403
4ab51fb0 404sub accessor_metaclass(){ 'Mouse::Meta::Method::Accessor' }
405
1b9e472d 406sub install_accessors{
407 my($attribute) = @_;
408
4ab51fb0 409 my $metaclass = $attribute->{associated_class};
410 my $accessor_class = $attribute->accessor_metaclass;
1b9e472d 411
4ab51fb0 412 foreach my $type(qw(accessor reader writer predicate clearer)){
1b9e472d 413 if(exists $attribute->{$type}){
4ab51fb0 414 my $generator = '_generate_' . $type;
415 my $code = $accessor_class->$generator($attribute, $metaclass);
416 $metaclass->add_method($attribute->{$type} => $code);
417 $attribute->associate_method($code);
418 }
419 }
7ca5c5fb 420
4ab51fb0 421 # install delegation
422 if(exists $attribute->{handles}){
423 my %handles = $attribute->_canonicalize_handles($attribute->{handles});
424 my $reader = $attribute->get_read_method_ref;
7ca5c5fb 425
4ab51fb0 426 while(my($handle_name, $method_to_call) = each %handles){
427 my $code = $accessor_class->_generate_delegation($attribute, $metaclass,
428 $reader, $handle_name, $method_to_call);
429
430 $metaclass->add_method($handle_name => $code);
431 $attribute->associate_method($code);
1b9e472d 432 }
433 }
434
4ab51fb0 435
1b9e472d 436 if($attribute->can('create') != \&create){
7ca5c5fb 437 # backword compatibility
1b9e472d 438 $attribute->create($metaclass, $attribute->name, %{$attribute});
439 }
440
441 return;
442}
443
fce211ae 444sub throw_error{
445 my $self = shift;
446
447 my $metaclass = (ref $self && $self->associated_class) || 'Mouse::Meta::Class';
448 $metaclass->throw_error(@_, depth => 1);
1bfebf5f 449}
450
c3398f5b 4511;
452
453__END__
454
455=head1 NAME
456
bedd575c 457Mouse::Meta::Attribute - The Mouse attribute metaclass
c3398f5b 458
459=head1 METHODS
460
1820fffe 461=head2 C<< new(%options) -> Mouse::Meta::Attribute >>
c3398f5b 462
306290e8 463Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 464
1820fffe 465It adds the following options to the constructor:
c3398f5b 466
1820fffe 467=over 4
c3398f5b 468
612d3e1a 469=item C<< is => 'ro', 'rw', 'bare' >>
c3398f5b 470
1820fffe 471This provides a shorthand for specifying the C<reader>, C<writer>, or
472C<accessor> names. If the attribute is read-only ('ro') then it will
473have a C<reader> method with the same attribute as the name.
c3398f5b 474
1820fffe 475If it is read-write ('rw') then it will have an C<accessor> method
476with the same name. If you provide an explicit C<writer> for a
477read-write attribute, then you will have a C<reader> with the same
478name as the attribute, and a C<writer> with the name you provided.
c3398f5b 479
1820fffe 480Use 'bare' when you are deliberately not installing any methods
481(accessor, reader, etc.) associated with this attribute; otherwise,
482Moose will issue a deprecation warning when this attribute is added to a
483metaclass.
c3398f5b 484
612d3e1a 485=item C<< isa => Type >>
ab27a55e 486
1820fffe 487This option accepts a type. The type can be a string, which should be
488a type name. If the type name is unknown, it is assumed to be a class
489name.
ab27a55e 490
1820fffe 491This option can also accept a L<Moose::Meta::TypeConstraint> object.
ab27a55e 492
1820fffe 493If you I<also> provide a C<does> option, then your C<isa> option must
494be a class name, and that class must do the role specified with
495C<does>.
ab27a55e 496
612d3e1a 497=item C<< does => Role >>
ab27a55e 498
1820fffe 499This is short-hand for saying that the attribute's type must be an
500object which does the named role.
c3398f5b 501
1820fffe 502B<This option is not yet supported.>
c3398f5b 503
612d3e1a 504=item C<< coerce => Bool >>
ab27a55e 505
1820fffe 506This option is only valid for objects with a type constraint
507(C<isa>). If this is true, then coercions will be applied whenever
508this attribute is set.
c3398f5b 509
1820fffe 510You can make both this and the C<weak_ref> option true.
c3398f5b 511
612d3e1a 512=item C<< trigger => CodeRef >>
ab27a55e 513
1820fffe 514This option accepts a subroutine reference, which will be called after
515the attribute is set.
ab27a55e 516
612d3e1a 517=item C<< required => Bool >>
ab27a55e 518
1820fffe 519An attribute which is required must be provided to the constructor. An
520attribute which is required can also have a C<default> or C<builder>,
521which will satisfy its required-ness.
ab27a55e 522
1820fffe 523A required attribute must have a C<default>, C<builder> or a
524non-C<undef> C<init_arg>
ab27a55e 525
612d3e1a 526=item C<< lazy => Bool >>
ab27a55e 527
1820fffe 528A lazy attribute must have a C<default> or C<builder>. When an
529attribute is lazy, the default value will not be calculated until the
530attribute is read.
93f08899 531
612d3e1a 532=item C<< weak_ref => Bool >>
0fff36e6 533
1820fffe 534If this is true, the attribute's value will be stored as a weak
535reference.
c3398f5b 536
612d3e1a 537=item C<< auto_deref => Bool >>
fb706f5c 538
1820fffe 539If this is true, then the reader will dereference the value when it is
540called. The attribute must have a type constraint which defines the
541attribute as an array or hash reference.
542
612d3e1a 543=item C<< lazy_build => Bool >>
1820fffe 544
545Setting this to true makes the attribute lazy and provides a number of
546default methods.
fb706f5c 547
1820fffe 548 has 'size' => (
549 is => 'ro',
550 lazy_build => 1,
551 );
93d190e0 552
1820fffe 553is equivalent to this:
93d190e0 554
1820fffe 555 has 'size' => (
556 is => 'ro',
557 lazy => 1,
558 builder => '_build_size',
559 clearer => 'clear_size',
560 predicate => 'has_size',
561 );
93d190e0 562
1820fffe 563=back
564
31c5194b 565=head2 C<< associate_method(Method) >>
566
567Associates a method with the attribute. Typically, this is called internally
568when an attribute generates its accessors.
569
570Currently the argument I<Method> is ignored in Mouse.
571
1820fffe 572=head2 C<< verify_against_type_constraint(Item) -> TRUE | ERROR >>
573
574Checks that the given value passes this attribute's type constraint. Returns C<true>
575on success, otherwise C<confess>es.
93d190e0 576
1820fffe 577=head2 C<< clone_and_inherit_options(options) -> Mouse::Meta::Attribute >>
f7b11a21 578
612d3e1a 579Creates a new attribute in the owner class, inheriting options from parent classes.
f7b11a21 580Accessors and helper methods are installed. Some error checking is done.
581
deb9a0f3 582=head2 C<< get_read_method_ref >>\r
df77fd72 583\r
deb9a0f3 584=head2 C<< get_write_method_ref >>\r
df77fd72 585\r
586Returns the subroutine reference of a method suitable for reading or\r
587writing the attribute's value in the associated class. These methods\r
588always return a subroutine reference, regardless of whether or not the\r
589attribute is read- or write-only.
590
1820fffe 591=head1 SEE ALSO
f7b11a21 592
1820fffe 593L<Moose::Meta::Attribute>
f7b11a21 594
31c5194b 595L<Class::MOP::Attribute>
596
c3398f5b 597=cut
598