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