Fix some issues on attributes
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
CommitLineData
306290e8 1package Mouse::Meta::Class;
bc69ee88 2use Mouse::Util qw/:meta get_linear_isa not_supported/; # enables strict and warnings
c3398f5b 3
cecfb973 4use Scalar::Util qw/blessed weaken/;
6d28c5cf 5
6d28c5cf 6use Mouse::Meta::Method::Constructor;
7use Mouse::Meta::Method::Destructor;
8use Mouse::Meta::Module;
f3bb863f 9our @ISA = qw(Mouse::Meta::Module);
3a63a2e7 10
deb9a0f3 11sub method_metaclass() { 'Mouse::Meta::Method' }
12sub attribute_metaclass() { 'Mouse::Meta::Attribute' }
3a63a2e7 13
380e1cd7 14sub constructor_class() { 'Mouse::Meta::Method::Constructor' }
15sub destructor_class() { 'Mouse::Meta::Method::Destructor' }
16
8e64d0fa 17sub _construct_meta {
88ed7189 18 my($class, %args) = @_;
c3398f5b 19
8536d351 20 $args{attributes} ||= {};
21 $args{methods} ||= {};
22 $args{roles} ||= [];
23
c3398f5b 24 $args{superclasses} = do {
25 no strict 'refs';
88ed7189 26 \@{ $args{package} . '::ISA' };
c3398f5b 27 };
28
8d40c3b8 29 my $self = bless \%args, ref($class) || $class;
7eb3a8d5 30 if(ref($self) ne __PACKAGE__){
9009aca1 31 $self->meta->_initialize_object($self, \%args);
8d40c3b8 32 }
33 return $self;
7a50b450 34}
35
36sub create_anon_class{
37 my $self = shift;
38 return $self->create(undef, @_);
39}
40
41sub is_anon_class{
42 return exists $_[0]->{anon_serial_id};
c3398f5b 43}
44
afc73948 45sub roles { $_[0]->{roles} }
c3398f5b 46
47sub superclasses {
48 my $self = shift;
49
50 if (@_) {
9d0686b2 51 foreach my $super(@_){
52 Mouse::Util::load_class($super);
53 my $meta = Mouse::Util::get_metaclass_by_name($super);
54 if($meta && $meta->isa('Mouse::Meta::Role')){
55 $self->throw_error("You cannot inherit from a Mouse Role ($super)");
56 }
57 }
c3398f5b 58 @{ $self->{superclasses} } = @_;
59 }
60
8e64d0fa 61 return @{ $self->{superclasses} };
62}
63
64sub find_method_by_name{
65 my($self, $method_name) = @_;
66 defined($method_name)
67 or $self->throw_error('You must define a method name to find');
68 foreach my $class( $self->linearized_isa ){
69 my $method = $self->initialize($class)->get_method($method_name);
70 return $method if defined $method;
71 }
72 return undef;
73}
74
75sub get_all_methods {
76 my($self) = @_;
612d3e1a 77 return map{ $self->find_method_by_name($_) } $self->get_all_method_names;
c3398f5b 78}
79
60cfc6ad 80sub get_all_method_names {
81 my $self = shift;
82 my %uniq;
83 return grep { $uniq{$_}++ == 0 }
3a63a2e7 84 map { Mouse::Meta::Class->initialize($_)->get_method_list() }
60cfc6ad 85 $self->linearized_isa;
86}
87
2b908b79 88sub find_attribute_by_name{
89 my($self, $name) = @_;
90 my $attr;
91 foreach my $class($self->linearized_isa){
92 my $meta = Mouse::Util::get_metaclass_by_name($class) or next;
93 $attr = $meta->get_attribute($name) and last;
94 }
95 return $attr;
96}
97
87ca293b 98sub add_attribute {
c3398f5b 99 my $self = shift;
60f6eba9 100
87ca293b 101 my($attr, $name);
1b9e472d 102
87ca293b 103 if(blessed $_[0]){
104 $attr = $_[0];
1b9e472d 105
87ca293b 106 $attr->isa('Mouse::Meta::Attribute')
107 || $self->throw_error("Your attribute must be an instance of Mouse::Meta::Attribute (or a subclass)");
1b9e472d 108
87ca293b 109 $name = $attr->name;
1b9e472d 110 }
111 else{
87ca293b 112 # _process_attribute
113 $name = shift;
1b9e472d 114
87ca293b 115 my %args = (@_ == 1) ? %{$_[0]} : @_;
1b9e472d 116
87ca293b 117 defined($name)
118 or $self->throw_error('You must provide a name for the attribute');
1b9e472d 119
87ca293b 120 if ($name =~ s/^\+//) { # inherited attributes
2b908b79 121 my $inherited_attr = $self->find_attribute_by_name($name)
87ca293b 122 or $self->throw_error("Could not find an attribute by the name of '$name' to inherit from in ".$self->name);
123
8cf51b82 124 $attr = $inherited_attr->clone_and_inherit_options(%args);
87ca293b 125 }
126 else{
8cf51b82 127 my($attribute_class, @traits) = $self->attribute_metaclass->interpolate_class(\%args);
87ca293b 128 $args{traits} = \@traits if @traits;
129
2a464664 130 $attr = $attribute_class->new($name, %args);
87ca293b 131 }
132 }
1b9e472d 133
134 weaken( $attr->{associated_class} = $self );
135
136 $self->{attributes}{$attr->name} = $attr;
137 $attr->install_accessors();
138
04493075 139 if(_MOUSE_VERBOSE && !$attr->{associated_methods} && ($attr->{is} || '') ne 'bare'){
1b9e472d 140 Carp::cluck(qq{Attribute (}.$attr->name.qq{) of class }.$self->name.qq{ has no associated methods (did you mean to provide an "is" argument?)});
60f6eba9 141 }
1b9e472d 142 return $attr;
c3398f5b 143}
144
3a683350 145sub compute_all_applicable_attributes {
146 Carp::cluck('compute_all_applicable_attributes() has been deprecated');
147 return shift->get_all_attributes(@_)
148}
149
d60824af 150sub get_all_attributes {
72b88a88 151 my $self = shift;
152 my (@attr, %seen);
153
154 for my $class ($self->linearized_isa) {
3a683350 155 my $meta = Mouse::Util::get_metaclass_by_name($class)
72b88a88 156 or next;
157
3a683350 158 for my $name ($meta->get_attribute_list) {
72b88a88 159 next if $seen{$name}++;
160 push @attr, $meta->get_attribute($name);
161 }
162 }
163
164 return @attr;
165}
166
8536d351 167sub linearized_isa { @{ get_linear_isa($_[0]->name) } }
168
169sub new_object {
c68b4110 170 my $self = shift;
7a50b450 171 my %args = (@_ == 1 ? %{$_[0]} : @_);
c3398f5b 172
926290ac 173 my $object = bless {}, $self->name;
fce211ae 174
926290ac 175 $self->_initialize_object($object, \%args);
176 return $object;
1b9e472d 177}
178
926290ac 179sub _initialize_object{
180 my($self, $object, $args) = @_;
1b9e472d 181
53c495ce 182 my @triggers_queue;
183
fce211ae 184 foreach my $attribute ($self->get_all_attributes) {
8536d351 185 my $from = $attribute->init_arg;
186 my $key = $attribute->name;
187
1b9e472d 188 if (defined($from) && exists($args->{$from})) {
926290ac 189 $object->{$key} = $attribute->_coerce_and_verify($args->{$from});
8536d351 190
926290ac 191 weaken($object->{$key})
192 if ref($object->{$key}) && $attribute->is_weak_ref;
8536d351 193
194 if ($attribute->has_trigger) {
926290ac 195 push @triggers_queue, [ $attribute->trigger, $object->{$key} ];
8536d351 196 }
197 }
198 else {
199 if ($attribute->has_default || $attribute->has_builder) {
200 unless ($attribute->is_lazy) {
201 my $default = $attribute->default;
202 my $builder = $attribute->builder;
926290ac 203 my $value = $builder ? $object->$builder()
204 : ref($default) eq 'CODE' ? $object->$default()
8215d725 205 : $default;
8536d351 206
8215d725 207 # XXX: we cannot use $attribute->set_value() because it invokes triggers.
926290ac 208 $object->{$key} = $attribute->_coerce_and_verify($value, $object);;
8536d351 209
926290ac 210 weaken($object->{$key})
211 if ref($object->{$key}) && $attribute->is_weak_ref;
8536d351 212 }
213 }
214 else {
215 if ($attribute->is_required) {
fce211ae 216 $self->throw_error("Attribute (".$attribute->name.") is required");
8536d351 217 }
218 }
219 }
220 }
53c495ce 221
222 foreach my $trigger_and_value(@triggers_queue){
223 my($trigger, $value) = @{$trigger_and_value};
926290ac 224 $trigger->($object, $value);
53c495ce 225 }
226
2efc0af1 227 if($self->is_anon_class){
926290ac 228 $object->{__METACLASS__} = $self;
2efc0af1 229 }
230
926290ac 231 return $object;
8536d351 232}
c3398f5b 233
7a59f4e8 234sub clone_object {
926290ac 235 my $class = shift;
236 my $object = shift;
237 my %params = (@_ == 1) ? %{$_[0]} : @_;
7a59f4e8 238
926290ac 239 (blessed($object) && $object->isa($class->name))
240 || $class->throw_error("You must pass an instance of the metaclass (" . $class->name . "), not ($object)");
7a59f4e8 241
926290ac 242 my $cloned = bless { %$object }, ref $object;
243 $class->_initialize_object($cloned, \%params);
7a59f4e8 244
926290ac 245 return $cloned;
2cea7a5f 246}
7a59f4e8 247
2cea7a5f 248sub clone_instance {
249 my ($class, $instance, %params) = @_;
250
04493075 251 Carp::cluck('clone_instance has been deprecated. Use clone_object instead')
252 if _MOUSE_VERBOSE;
2cea7a5f 253 return $class->clone_object($instance, %params);
7a59f4e8 254}
255
fc1d8369 256sub make_immutable {
257 my $self = shift;
6a1d1835 258 my %args = (
259 inline_constructor => 1,
e578d610 260 inline_destructor => 1,
2a464664 261 constructor_name => 'new',
6a1d1835 262 @_,
263 );
264
fc1d8369 265 $self->{is_immutable}++;
c7a6403f 266
6a1d1835 267 if ($args{inline_constructor}) {
380e1cd7 268 $self->add_method($args{constructor_name} =>
269 $self->constructor_class->_generate_constructor($self, \%args));
c7a6403f 270 }
271
8632b6fe 272 if ($args{inline_destructor}) {
380e1cd7 273 $self->add_method(DESTROY =>
274 $self->destructor_class->_generate_destructor($self, \%args));
8632b6fe 275 }
2276cb14 276
277 # Moose's make_immutable returns true allowing calling code to skip setting an explicit true value
278 # at the end of a source file.
279 return 1;
fc1d8369 280}
ad958001 281
fce211ae 282sub make_mutable { not_supported }
ad958001 283
6cfa1e5e 284sub is_immutable { $_[0]->{is_immutable} }
285sub is_mutable { !$_[0]->{is_immutable} }
84ef660f 286
3fbade18 287sub _install_modifier_pp{
8d59c723 288 my( $self, $type, $name, $code ) = @_;
289 my $into = $self->name;
3fbade18 290
291 my $original = $into->can($name)
292 or $self->throw_error("The method '$name' is not found in the inheritance hierarchy for class $into");
293
294 my $modifier_table = $self->{modifiers}{$name};
295
296 if(!$modifier_table){
297 my(@before, @after, @around, $cache, $modified);
298
299 $cache = $original;
300
301 $modified = sub {
302 for my $c (@before) { $c->(@_) }
303
304 if(wantarray){ # list context
305 my @rval = $cache->(@_);
306
307 for my $c(@after){ $c->(@_) }
308 return @rval;
309 }
310 elsif(defined wantarray){ # scalar context
311 my $rval = $cache->(@_);
312
313 for my $c(@after){ $c->(@_) }
314 return $rval;
315 }
316 else{ # void context
317 $cache->(@_);
318
319 for my $c(@after){ $c->(@_) }
320 return;
321 }
322 };
323
324 $self->{modifiers}{$name} = $modifier_table = {
325 original => $original,
326
327 before => \@before,
328 after => \@after,
329 around => \@around,
330
331 cache => \$cache, # cache for around modifiers
332 };
333
334 $self->add_method($name => $modified);
335 }
336
337 if($type eq 'before'){
338 unshift @{$modifier_table->{before}}, $code;
339 }
340 elsif($type eq 'after'){
341 push @{$modifier_table->{after}}, $code;
342 }
343 else{ # around
344 push @{$modifier_table->{around}}, $code;
345
346 my $next = ${ $modifier_table->{cache} };
347 ${ $modifier_table->{cache} } = sub{ $code->($next, @_) };
348 }
349
350 return;
351}
352
4859d490 353sub _install_modifier {
8d59c723 354 my ( $self, $type, $name, $code ) = @_;
4f5b44a0 355
3fbade18 356 # load Class::Method::Modifiers first
7ca5c5fb 357 my $no_cmm_fast = do{
3fbade18 358 local $@;
359 eval q{ require Class::Method::Modifiers::Fast };
360 $@;
4f5b44a0 361 };
4f5b44a0 362
3fbade18 363 my $impl;
364 if($no_cmm_fast){
365 $impl = \&_install_modifier_pp;
366 }
367 else{
368 my $install_modifier = Class::Method::Modifiers::Fast->can('_install_modifier');
369 $impl = sub {
8d59c723 370 my ( $self, $type, $name, $code ) = @_;
371 my $into = $self->name;
95ecd6f1 372 $install_modifier->($into, $type, $name, $code);
373
8d59c723 374 $self->add_method($name => do{
375 no strict 'refs';
376 \&{ $into . '::' . $name };
377 });
6cfa1e5e 378 return;
4f5b44a0 379 };
1b79a118 380 }
4f5b44a0 381
3fbade18 382 # replace this method itself :)
383 {
384 no warnings 'redefine';
385 *_install_modifier = $impl;
386 }
387
8d59c723 388 $self->$impl( $type, $name, $code );
4859d490 389}
390
50dc6ee5 391sub add_before_method_modifier {
4859d490 392 my ( $self, $name, $code ) = @_;
8d59c723 393 $self->_install_modifier( 'before', $name, $code );
50dc6ee5 394}
395
396sub add_around_method_modifier {
4859d490 397 my ( $self, $name, $code ) = @_;
8d59c723 398 $self->_install_modifier( 'around', $name, $code );
50dc6ee5 399}
400
401sub add_after_method_modifier {
4859d490 402 my ( $self, $name, $code ) = @_;
8d59c723 403 $self->_install_modifier( 'after', $name, $code );
50dc6ee5 404}
405
67199842 406sub add_override_method_modifier {
407 my ($self, $name, $code) = @_;
408
768804c0 409 if($self->has_method($name)){
410 $self->throw_error("Cannot add an override method if a local method is already present");
85bd3f44 411 }
412
6cfa1e5e 413 my $package = $self->name;
67199842 414
85bd3f44 415 my $super_body = $package->can($name)
6cfa1e5e 416 or $self->throw_error("You cannot override '$name' because it has no super method");
67199842 417
85bd3f44 418 $self->add_method($name => sub {
419 local $Mouse::SUPER_PACKAGE = $package;
420 local $Mouse::SUPER_BODY = $super_body;
421 local @Mouse::SUPER_ARGS = @_;
422
423 $code->(@_);
424 });
425 return;
67199842 426}
427
768804c0 428sub add_augment_method_modifier {
429 my ($self, $name, $code) = @_;
430 if($self->has_method($name)){
431 $self->throw_error("Cannot add an augment method if a local method is already present");
432 }
433
434 my $super = $self->find_method_by_name($name)
435 or $self->throw_error("You cannot augment '$name' because it has no super method");
436
437 my $super_package = $super->package_name;
438 my $super_body = $super->body;
439
440 $self->add_method($name => sub{
441 local $Mouse::INNER_BODY{$super_package} = $code;
442 local $Mouse::INNER_ARGS{$super_package} = [@_];
443 $super_body->(@_);
444 });
445 return;
446}
447
47f36c05 448sub does_role {
449 my ($self, $role_name) = @_;
ad958001 450
47f36c05 451 (defined $role_name)
fce211ae 452 || $self->throw_error("You must supply a role name to look for");
ad958001 453
f7fec86c 454 for my $class ($self->linearized_isa) {
95ecd6f1 455 my $meta = Mouse::Util::get_metaclass_by_name($class)
456 or next;
3a63a2e7 457
458 for my $role (@{ $meta->roles }) {
ff687069 459
3a63a2e7 460 return 1 if $role->does_role($role_name);
f7fec86c 461 }
47f36c05 462 }
ad958001 463
47f36c05 464 return 0;
465}
466
c3398f5b 4671;
c3398f5b 468__END__
469
470=head1 NAME
471
1820fffe 472Mouse::Meta::Class - The Mouse class metaclass
c3398f5b 473
474=head1 METHODS
475
612d3e1a 476=head2 C<< initialize(ClassName) -> Mouse::Meta::Class >>
c3398f5b 477
31c5194b 478Finds or creates a C<Mouse::Meta::Class> instance for the given ClassName. Only
306290e8 479one instance should exist for a given class.
c3398f5b 480
612d3e1a 481=head2 C<< name -> ClassName >>
c3398f5b 482
483Returns the name of the owner class.
484
612d3e1a 485=head2 C<< superclasses -> ClassNames >> C<< superclass(ClassNames) >>
c3398f5b 486
487Gets (or sets) the list of superclasses of the owner class.
488
31c5194b 489=head2 C<< add_method(name => CodeRef) >>
c3398f5b 490
31c5194b 491Adds a method to the owner class.
c3398f5b 492
31c5194b 493=head2 C<< has_method(name) -> Bool >>
72b88a88 494
31c5194b 495Returns whether we have a method with the given name.
72b88a88 496
31c5194b 497=head2 C<< get_method(name) -> Mouse::Meta::Method | undef >>
c68b4110 498
31c5194b 499Returns a L<Mouse::Meta::Method> with the given name.
500
501Note that you can also use C<< $metaclass->name->can($name) >> for a method body.
502
503=head2 C<< get_method_list -> Names >>
504
505Returns a list of method names which are defined in the local class.
506If you want a list of all applicable methods for a class, use the
507C<get_all_methods> method.
508
509=head2 C<< get_all_methods -> (Mouse::Meta::Method) >>
510
511Return the list of all L<Mouse::Meta::Method> instances associated with
512the class and its superclasses.
513
514=head2 C<< add_attribute(name => spec | Mouse::Meta::Attribute) >>
515
516Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
517class.
c68b4110 518
612d3e1a 519=head2 C<< has_attribute(Name) -> Bool >>
66eea168 520
521Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
522
31c5194b 523=head2 C<< get_attribute Name -> Mouse::Meta::Attribute | undef >>
c3398f5b 524
306290e8 525Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 526
31c5194b 527=head2 C<< get_attribute_list -> Names >>
528
529Returns a list of attribute names which are defined in the local
530class. If you want a list of all applicable attributes for a class,
531use the C<get_all_attributes> method.
532
533=head2 C<< get_all_attributes -> (Mouse::Meta::Attribute) >>
534
535Returns the list of all L<Mouse::Meta::Attribute> instances associated with
536this class and its superclasses.
537
612d3e1a 538=head2 C<< linearized_isa -> [ClassNames] >>
c3398f5b 539
540Returns the list of classes in method dispatch order, with duplicates removed.
541
612d3e1a 542=head2 C<< new_object(Parameters) -> Instance >>
2cea7a5f 543
612d3e1a 544Creates a new instance.
2cea7a5f 545
612d3e1a 546=head2 C<< clone_object(Instance, Parameters) -> Instance >>
f7b11a21 547
31c5194b 548Clones the given instance which must be an instance governed by this
f7b11a21 549metaclass.
550
31c5194b 551=head2 C<< throw_error(Message, Parameters) >>
552
553Throws an error with the given message.
554
1820fffe 555=head1 SEE ALSO
f7b11a21 556
1820fffe 557L<Moose::Meta::Class>
f7b11a21 558
31c5194b 559L<Class::MOP::Class>
560
c3398f5b 561=cut
562