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