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