Implement get_all_attributes in XS
[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{
170 my($self, $object, $args) = @_;
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
211 foreach my $trigger_and_value(@triggers_queue){
212 my($trigger, $value) = @{$trigger_and_value};
926290ac 213 $trigger->($object, $value);
53c495ce 214 }
215
2efc0af1 216 if($self->is_anon_class){
926290ac 217 $object->{__METACLASS__} = $self;
2efc0af1 218 }
219
926290ac 220 return $object;
8536d351 221}
c3398f5b 222
7a59f4e8 223sub clone_object {
926290ac 224 my $class = shift;
225 my $object = shift;
226 my %params = (@_ == 1) ? %{$_[0]} : @_;
7a59f4e8 227
926290ac 228 (blessed($object) && $object->isa($class->name))
229 || $class->throw_error("You must pass an instance of the metaclass (" . $class->name . "), not ($object)");
7a59f4e8 230
926290ac 231 my $cloned = bless { %$object }, ref $object;
232 $class->_initialize_object($cloned, \%params);
7a59f4e8 233
926290ac 234 return $cloned;
2cea7a5f 235}
7a59f4e8 236
2cea7a5f 237sub clone_instance {
238 my ($class, $instance, %params) = @_;
239
04493075 240 Carp::cluck('clone_instance has been deprecated. Use clone_object instead')
241 if _MOUSE_VERBOSE;
2cea7a5f 242 return $class->clone_object($instance, %params);
7a59f4e8 243}
244
fc1d8369 245sub make_immutable {
246 my $self = shift;
6a1d1835 247 my %args = (
248 inline_constructor => 1,
e578d610 249 inline_destructor => 1,
2a464664 250 constructor_name => 'new',
6a1d1835 251 @_,
252 );
253
fc1d8369 254 $self->{is_immutable}++;
c7a6403f 255
6a1d1835 256 if ($args{inline_constructor}) {
380e1cd7 257 $self->add_method($args{constructor_name} =>
258 $self->constructor_class->_generate_constructor($self, \%args));
c7a6403f 259 }
260
8632b6fe 261 if ($args{inline_destructor}) {
380e1cd7 262 $self->add_method(DESTROY =>
263 $self->destructor_class->_generate_destructor($self, \%args));
8632b6fe 264 }
2276cb14 265
266 # Moose's make_immutable returns true allowing calling code to skip setting an explicit true value
267 # at the end of a source file.
268 return 1;
fc1d8369 269}
ad958001 270
fce211ae 271sub make_mutable { not_supported }
ad958001 272
6cfa1e5e 273sub is_immutable { $_[0]->{is_immutable} }
274sub is_mutable { !$_[0]->{is_immutable} }
84ef660f 275
3fbade18 276sub _install_modifier_pp{
8d59c723 277 my( $self, $type, $name, $code ) = @_;
278 my $into = $self->name;
3fbade18 279
280 my $original = $into->can($name)
281 or $self->throw_error("The method '$name' is not found in the inheritance hierarchy for class $into");
282
283 my $modifier_table = $self->{modifiers}{$name};
284
285 if(!$modifier_table){
286 my(@before, @after, @around, $cache, $modified);
287
288 $cache = $original;
289
290 $modified = sub {
291 for my $c (@before) { $c->(@_) }
292
293 if(wantarray){ # list context
294 my @rval = $cache->(@_);
295
296 for my $c(@after){ $c->(@_) }
297 return @rval;
298 }
299 elsif(defined wantarray){ # scalar context
300 my $rval = $cache->(@_);
301
302 for my $c(@after){ $c->(@_) }
303 return $rval;
304 }
305 else{ # void context
306 $cache->(@_);
307
308 for my $c(@after){ $c->(@_) }
309 return;
310 }
311 };
312
313 $self->{modifiers}{$name} = $modifier_table = {
314 original => $original,
315
316 before => \@before,
317 after => \@after,
318 around => \@around,
319
320 cache => \$cache, # cache for around modifiers
321 };
322
323 $self->add_method($name => $modified);
324 }
325
326 if($type eq 'before'){
327 unshift @{$modifier_table->{before}}, $code;
328 }
329 elsif($type eq 'after'){
330 push @{$modifier_table->{after}}, $code;
331 }
332 else{ # around
333 push @{$modifier_table->{around}}, $code;
334
335 my $next = ${ $modifier_table->{cache} };
336 ${ $modifier_table->{cache} } = sub{ $code->($next, @_) };
337 }
338
339 return;
340}
341
4859d490 342sub _install_modifier {
8d59c723 343 my ( $self, $type, $name, $code ) = @_;
4f5b44a0 344
3fbade18 345 # load Class::Method::Modifiers first
7ca5c5fb 346 my $no_cmm_fast = do{
3fbade18 347 local $@;
348 eval q{ require Class::Method::Modifiers::Fast };
349 $@;
4f5b44a0 350 };
4f5b44a0 351
3fbade18 352 my $impl;
353 if($no_cmm_fast){
354 $impl = \&_install_modifier_pp;
355 }
356 else{
357 my $install_modifier = Class::Method::Modifiers::Fast->can('_install_modifier');
358 $impl = sub {
8d59c723 359 my ( $self, $type, $name, $code ) = @_;
360 my $into = $self->name;
95ecd6f1 361 $install_modifier->($into, $type, $name, $code);
362
8d59c723 363 $self->add_method($name => do{
364 no strict 'refs';
365 \&{ $into . '::' . $name };
366 });
6cfa1e5e 367 return;
4f5b44a0 368 };
1b79a118 369 }
4f5b44a0 370
3fbade18 371 # replace this method itself :)
372 {
373 no warnings 'redefine';
374 *_install_modifier = $impl;
375 }
376
8d59c723 377 $self->$impl( $type, $name, $code );
4859d490 378}
379
50dc6ee5 380sub add_before_method_modifier {
4859d490 381 my ( $self, $name, $code ) = @_;
8d59c723 382 $self->_install_modifier( 'before', $name, $code );
50dc6ee5 383}
384
385sub add_around_method_modifier {
4859d490 386 my ( $self, $name, $code ) = @_;
8d59c723 387 $self->_install_modifier( 'around', $name, $code );
50dc6ee5 388}
389
390sub add_after_method_modifier {
4859d490 391 my ( $self, $name, $code ) = @_;
8d59c723 392 $self->_install_modifier( 'after', $name, $code );
50dc6ee5 393}
394
67199842 395sub add_override_method_modifier {
396 my ($self, $name, $code) = @_;
397
768804c0 398 if($self->has_method($name)){
399 $self->throw_error("Cannot add an override method if a local method is already present");
85bd3f44 400 }
401
6cfa1e5e 402 my $package = $self->name;
67199842 403
85bd3f44 404 my $super_body = $package->can($name)
6cfa1e5e 405 or $self->throw_error("You cannot override '$name' because it has no super method");
67199842 406
85bd3f44 407 $self->add_method($name => sub {
408 local $Mouse::SUPER_PACKAGE = $package;
409 local $Mouse::SUPER_BODY = $super_body;
410 local @Mouse::SUPER_ARGS = @_;
411
412 $code->(@_);
413 });
414 return;
67199842 415}
416
768804c0 417sub add_augment_method_modifier {
418 my ($self, $name, $code) = @_;
419 if($self->has_method($name)){
420 $self->throw_error("Cannot add an augment method if a local method is already present");
421 }
422
423 my $super = $self->find_method_by_name($name)
424 or $self->throw_error("You cannot augment '$name' because it has no super method");
425
426 my $super_package = $super->package_name;
427 my $super_body = $super->body;
428
429 $self->add_method($name => sub{
430 local $Mouse::INNER_BODY{$super_package} = $code;
431 local $Mouse::INNER_ARGS{$super_package} = [@_];
432 $super_body->(@_);
433 });
434 return;
435}
436
47f36c05 437sub does_role {
438 my ($self, $role_name) = @_;
ad958001 439
47f36c05 440 (defined $role_name)
fce211ae 441 || $self->throw_error("You must supply a role name to look for");
ad958001 442
f7fec86c 443 for my $class ($self->linearized_isa) {
95ecd6f1 444 my $meta = Mouse::Util::get_metaclass_by_name($class)
445 or next;
3a63a2e7 446
447 for my $role (@{ $meta->roles }) {
ff687069 448
3a63a2e7 449 return 1 if $role->does_role($role_name);
f7fec86c 450 }
47f36c05 451 }
ad958001 452
47f36c05 453 return 0;
454}
455
c3398f5b 4561;
c3398f5b 457__END__
458
459=head1 NAME
460
1820fffe 461Mouse::Meta::Class - The Mouse class metaclass
c3398f5b 462
a25ca8d6 463=head1 VERSION
464
6e168432 465This document describes Mouse version 0.40_05
a25ca8d6 466
c3398f5b 467=head1 METHODS
468
612d3e1a 469=head2 C<< initialize(ClassName) -> Mouse::Meta::Class >>
c3398f5b 470
31c5194b 471Finds or creates a C<Mouse::Meta::Class> instance for the given ClassName. Only
306290e8 472one instance should exist for a given class.
c3398f5b 473
612d3e1a 474=head2 C<< name -> ClassName >>
c3398f5b 475
476Returns the name of the owner class.
477
612d3e1a 478=head2 C<< superclasses -> ClassNames >> C<< superclass(ClassNames) >>
c3398f5b 479
480Gets (or sets) the list of superclasses of the owner class.
481
31c5194b 482=head2 C<< add_method(name => CodeRef) >>
c3398f5b 483
31c5194b 484Adds a method to the owner class.
c3398f5b 485
31c5194b 486=head2 C<< has_method(name) -> Bool >>
72b88a88 487
31c5194b 488Returns whether we have a method with the given name.
72b88a88 489
31c5194b 490=head2 C<< get_method(name) -> Mouse::Meta::Method | undef >>
c68b4110 491
31c5194b 492Returns a L<Mouse::Meta::Method> with the given name.
493
494Note that you can also use C<< $metaclass->name->can($name) >> for a method body.
495
496=head2 C<< get_method_list -> Names >>
497
498Returns a list of method names which are defined in the local class.
499If you want a list of all applicable methods for a class, use the
500C<get_all_methods> method.
501
502=head2 C<< get_all_methods -> (Mouse::Meta::Method) >>
503
504Return the list of all L<Mouse::Meta::Method> instances associated with
505the class and its superclasses.
506
507=head2 C<< add_attribute(name => spec | Mouse::Meta::Attribute) >>
508
509Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
510class.
c68b4110 511
612d3e1a 512=head2 C<< has_attribute(Name) -> Bool >>
66eea168 513
514Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
515
31c5194b 516=head2 C<< get_attribute Name -> Mouse::Meta::Attribute | undef >>
c3398f5b 517
306290e8 518Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 519
31c5194b 520=head2 C<< get_attribute_list -> Names >>
521
522Returns a list of attribute names which are defined in the local
523class. If you want a list of all applicable attributes for a class,
524use the C<get_all_attributes> method.
525
526=head2 C<< get_all_attributes -> (Mouse::Meta::Attribute) >>
527
528Returns the list of all L<Mouse::Meta::Attribute> instances associated with
529this class and its superclasses.
530
612d3e1a 531=head2 C<< linearized_isa -> [ClassNames] >>
c3398f5b 532
533Returns the list of classes in method dispatch order, with duplicates removed.
534
612d3e1a 535=head2 C<< new_object(Parameters) -> Instance >>
2cea7a5f 536
612d3e1a 537Creates a new instance.
2cea7a5f 538
612d3e1a 539=head2 C<< clone_object(Instance, Parameters) -> Instance >>
f7b11a21 540
31c5194b 541Clones the given instance which must be an instance governed by this
f7b11a21 542metaclass.
543
31c5194b 544=head2 C<< throw_error(Message, Parameters) >>
545
546Throws an error with the given message.
547
1820fffe 548=head1 SEE ALSO
f7b11a21 549
1820fffe 550L<Moose::Meta::Class>
f7b11a21 551
31c5194b 552L<Class::MOP::Class>
553
c3398f5b 554=cut
555