Add a placeholder to remind me to write a recipe for BUILD & BUILDARGS
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
CommitLineData
c0e30cf5 1
2package Moose::Meta::Class;
3
4use strict;
5use warnings;
6
0addec44 7use Class::MOP;
648e79ae 8
11c86f15 9use Carp ();
f8b6827f 10use List::Util qw( first );
8b1d510f 11use List::MoreUtils qw( any all uniq );
21f1e231 12use Scalar::Util 'weaken', 'blessed';
a15dff8d 13
e606ae5f 14our $VERSION = '0.57';
15$VERSION = eval $VERSION;
d44714be 16our $AUTHORITY = 'cpan:STEVAN';
bc1e29b5 17
8ee73eeb 18use Moose::Meta::Method::Overriden;
3f9e4b0a 19use Moose::Meta::Method::Augmented;
bf6fa6b3 20use Moose::Error::Default;
8ee73eeb 21
c0e30cf5 22use base 'Class::MOP::Class';
23
598340d5 24__PACKAGE__->meta->add_attribute('roles' => (
ef333f17 25 reader => 'roles',
26 default => sub { [] }
27));
28
e606ae5f 29__PACKAGE__->meta->add_attribute('constructor_class' => (
30 accessor => 'constructor_class',
e0001338 31 default => 'Moose::Meta::Method::Constructor',
e606ae5f 32));
33
34__PACKAGE__->meta->add_attribute('destructor_class' => (
35 accessor => 'destructor_class',
e0001338 36 default => 'Moose::Meta::Method::Destructor',
e606ae5f 37));
38
11c86f15 39__PACKAGE__->meta->add_attribute('error_class' => (
bf6fa6b3 40 accessor => 'error_class',
41 default => 'Moose::Error::Default',
11c86f15 42));
43
44
590868a3 45sub initialize {
46 my $class = shift;
47 my $pkg = shift;
685f7e44 48 return Class::MOP::get_metaclass_by_name($pkg)
49 || $class->SUPER::initialize($pkg,
50 'attribute_metaclass' => 'Moose::Meta::Attribute',
51 'method_metaclass' => 'Moose::Meta::Method',
52 'instance_metaclass' => 'Moose::Meta::Instance',
53 @_
54 );
ac2dc464 55}
590868a3 56
61bdd94f 57sub create {
58 my ($self, $package_name, %options) = @_;
59
60 (ref $options{roles} eq 'ARRAY')
11c86f15 61 || $self->throw_error("You must pass an ARRAY ref of roles", data => $options{roles})
61bdd94f 62 if exists $options{roles};
310ba883 63 my $roles = delete $options{roles};
dd37a5be 64
61bdd94f 65 my $class = $self->SUPER::create($package_name, %options);
dd37a5be 66
310ba883 67 if ($roles) {
68 Moose::Util::apply_all_roles( $class, @$roles );
61bdd94f 69 }
70
71 return $class;
72}
73
2b72f3b4 74sub check_metaclass_compatibility {
75 my $self = shift;
76
77 if ( my @supers = $self->superclasses ) {
78 $self->_fix_metaclass_incompatibility(@supers);
79 }
80
81 $self->SUPER::check_metaclass_compatibility(@_);
82}
83
17594769 84my %ANON_CLASSES;
85
86sub create_anon_class {
87 my ($self, %options) = @_;
88
89 my $cache_ok = delete $options{cache};
17594769 90
91 # something like Super::Class|Super::Class::2=Role|Role::1
92 my $cache_key = join '=' => (
6d5cbd2b 93 join('|', sort @{$options{superclasses} || []}),
94 join('|', sort @{$options{roles} || []}),
17594769 95 );
96
6d5cbd2b 97 if ($cache_ok && defined $ANON_CLASSES{$cache_key}) {
17594769 98 return $ANON_CLASSES{$cache_key};
99 }
100
101 my $new_class = $self->SUPER::create_anon_class(%options);
102
6d5cbd2b 103 $ANON_CLASSES{$cache_key} = $new_class
104 if $cache_ok;
17594769 105
106 return $new_class;
107}
108
ef333f17 109sub add_role {
110 my ($self, $role) = @_;
111 (blessed($role) && $role->isa('Moose::Meta::Role'))
11c86f15 112 || $self->throw_error("Roles must be instances of Moose::Meta::Role", data => $role);
ef333f17 113 push @{$self->roles} => $role;
114}
115
b8aeb4dc 116sub calculate_all_roles {
117 my $self = shift;
118 my %seen;
119 grep { !$seen{$_->name}++ } map { $_->calculate_all_roles } @{ $self->roles };
120}
121
ef333f17 122sub does_role {
123 my ($self, $role_name) = @_;
124 (defined $role_name)
11c86f15 125 || $self->throw_error("You must supply a role name to look for");
9c429218 126 foreach my $class ($self->class_precedence_list) {
81c3738f 127 next unless $class->can('meta') && $class->meta->can('roles');
9c429218 128 foreach my $role (@{$class->meta->roles}) {
129 return 1 if $role->does_role($role_name);
130 }
ef333f17 131 }
132 return 0;
133}
134
d79e62fd 135sub excludes_role {
136 my ($self, $role_name) = @_;
137 (defined $role_name)
11c86f15 138 || $self->throw_error("You must supply a role name to look for");
ac2dc464 139 foreach my $class ($self->class_precedence_list) {
140 next unless $class->can('meta');
5cb193ed 141 # NOTE:
142 # in the pretty rare instance when a Moose metaclass
ac2dc464 143 # is itself extended with a role, this check needs to
5cb193ed 144 # be done since some items in the class_precedence_list
ac2dc464 145 # might in fact be Class::MOP based still.
146 next unless $class->meta->can('roles');
9c429218 147 foreach my $role (@{$class->meta->roles}) {
148 return 1 if $role->excludes_role($role_name);
149 }
d79e62fd 150 }
151 return 0;
152}
153
8c9d74e7 154sub new_object {
e606ae5f 155 my $class = shift;
156 my $params = @_ == 1 ? $_[0] : {@_};
157 my $self = $class->SUPER::new_object($params);
8c9d74e7 158 foreach my $attr ($class->compute_all_applicable_attributes()) {
4078709c 159 # if we have a trigger, then ...
160 if ($attr->can('has_trigger') && $attr->has_trigger) {
161 # make sure we have an init-arg ...
162 if (defined(my $init_arg = $attr->init_arg)) {
163 # now make sure an init-arg was passes ...
e606ae5f 164 if (exists $params->{$init_arg}) {
4078709c 165 # and if get here, fire the trigger
166 $attr->trigger->(
167 $self,
168 # check if there is a coercion
169 ($attr->should_coerce
170 # and if so, we need to grab the
171 # value that is actually been stored
172 ? $attr->get_read_method_ref->($self)
173 # otherwise, just get the value from
174 # the constructor params
e606ae5f 175 : $params->{$init_arg}),
4078709c 176 $attr
177 );
178 }
179 }
625d571f 180 }
8c9d74e7 181 }
ac2dc464 182 return $self;
8c9d74e7 183}
184
a15dff8d 185sub construct_instance {
e606ae5f 186 my $class = shift;
187 my $params = @_ == 1 ? $_[0] : {@_};
ddd0ec20 188 my $meta_instance = $class->get_meta_instance;
575db57d 189 # FIXME:
190 # the code below is almost certainly incorrect
191 # but this is foreign inheritence, so we might
ac2dc464 192 # have to kludge it in the end.
e606ae5f 193 my $instance = $params->{'__INSTANCE__'} || $meta_instance->create_instance();
ac2dc464 194 foreach my $attr ($class->compute_all_applicable_attributes()) {
e606ae5f 195 $attr->initialize_instance_slot($meta_instance, $instance, $params);
a15dff8d 196 }
197 return $instance;
198}
199
093b12c2 200# FIXME:
201# This is ugly
ac2dc464 202sub get_method_map {
093b12c2 203 my $self = shift;
53dd42d8 204
e606ae5f 205 my $current = Class::MOP::check_package_cache_flag($self->name);
206
207 if (defined $self->{'_package_cache_flag'} && $self->{'_package_cache_flag'} == $current) {
208 return $self->{'methods'};
53dd42d8 209 }
210
e606ae5f 211 $self->{_package_cache_flag} = $current;
212
213 my $map = $self->{'methods'};
ac2dc464 214
093b12c2 215 my $class_name = $self->name;
216 my $method_metaclass = $self->method_metaclass;
ac2dc464 217
0addec44 218 my %all_code = $self->get_all_package_symbols('CODE');
ac2dc464 219
0addec44 220 foreach my $symbol (keys %all_code) {
221 my $code = $all_code{$symbol};
ac2dc464 222
223 next if exists $map->{$symbol} &&
224 defined $map->{$symbol} &&
225 $map->{$symbol}->body == $code;
226
53dd42d8 227 my ($pkg, $name) = Class::MOP::get_code_info($code);
ac2dc464 228
53dd42d8 229 if ($pkg->can('meta')
4f8f3aab 230 # NOTE:
231 # we don't know what ->meta we are calling
53dd42d8 232 # here, so we need to be careful cause it
233 # just might blow up at us, or just complain
234 # loudly (in the case of Curses.pm) so we
4f8f3aab 235 # just be a little overly cautious here.
236 # - SL
237 && eval { no warnings; blessed($pkg->meta) }
238 && $pkg->meta->isa('Moose::Meta::Role')) {
093b12c2 239 #my $role = $pkg->meta->name;
240 #next unless $self->does_role($role);
241 }
242 else {
2887c827 243
244 # NOTE:
245 # in 5.10 constant.pm the constants show up
246 # as being in the right package, but in pre-5.10
247 # they show up as constant::__ANON__ so we
248 # make an exception here to be sure that things
249 # work as expected in both.
250 # - SL
251 unless ($pkg eq 'constant' && $name eq '__ANON__') {
252 next if ($pkg || '') ne $class_name ||
253 (($name || '') ne '__ANON__' && ($pkg || '') ne $class_name);
254 }
53dd42d8 255
093b12c2 256 }
ac2dc464 257
1b2aea39 258 $map->{$symbol} = $method_metaclass->wrap(
259 $code,
260 package_name => $class_name,
261 name => $symbol
262 );
093b12c2 263 }
ac2dc464 264
093b12c2 265 return $map;
a7d0cd00 266}
267
093b12c2 268### ---------------------------------------------
269
a2eec5e7 270sub add_attribute {
271 my $self = shift;
e472c9a5 272 $self->SUPER::add_attribute(
273 (blessed $_[0] && $_[0]->isa('Class::MOP::Attribute')
274 ? $_[0]
275 : $self->_process_attribute(@_))
276 );
a2eec5e7 277}
278
78cd1d3b 279sub add_override_method_modifier {
280 my ($self, $name, $method, $_super_package) = @_;
18c2ec0e 281
d05cd563 282 (!$self->has_method($name))
11c86f15 283 || $self->throw_error("Cannot add an override method if a local method is already present");
18c2ec0e 284
285 $self->add_method($name => Moose::Meta::Method::Overriden->new(
3f9e4b0a 286 method => $method,
287 class => $self,
288 package => $_super_package, # need this for roles
289 name => $name,
18c2ec0e 290 ));
78cd1d3b 291}
292
293sub add_augment_method_modifier {
ac2dc464 294 my ($self, $name, $method) = @_;
d05cd563 295 (!$self->has_method($name))
11c86f15 296 || $self->throw_error("Cannot add an augment method if a local method is already present");
3f9e4b0a 297
298 $self->add_method($name => Moose::Meta::Method::Augmented->new(
299 method => $method,
300 class => $self,
301 name => $name,
302 ));
78cd1d3b 303}
304
1341f10c 305## Private Utility methods ...
306
05d9eaf6 307sub _find_next_method_by_name_which_is_not_overridden {
308 my ($self, $name) = @_;
68efb014 309 foreach my $method ($self->find_all_methods_by_name($name)) {
ac2dc464 310 return $method->{code}
05d9eaf6 311 if blessed($method->{code}) && !$method->{code}->isa('Moose::Meta::Method::Overriden');
312 }
313 return undef;
314}
315
41419b9e 316sub _fix_metaclass_incompatibility {
1341f10c 317 my ($self, @superclasses) = @_;
e606ae5f 318
1341f10c 319 foreach my $super (@superclasses) {
f8b6827f 320 next if $self->_superclass_meta_is_compatible($super);
e606ae5f 321
322 unless ( $self->is_pristine ) {
f8b6827f 323 $self->throw_error(
324 "Cannot attempt to reinitialize metaclass for "
325 . $self->name
326 . ", it isn't pristine" );
1341f10c 327 }
e606ae5f 328
0635500e 329 $self->_reconcile_with_superclass_meta($super);
f8b6827f 330 }
f8b6827f 331}
332
333sub _superclass_meta_is_compatible {
334 my ($self, $super) = @_;
335
336 my $super_meta = Class::MOP::Class->initialize($super)
337 or return 1;
338
339 next unless $super_meta->isa("Class::MOP::Class");
340
341 my $super_meta_name
342 = $super_meta->is_immutable
343 ? $super_meta->get_mutable_metaclass_name
344 : ref($super_meta);
345
346 return 1
347 if $self->isa($super_meta_name)
348 and
349 $self->instance_metaclass->isa( $super_meta->instance_metaclass );
350}
351
352# I don't want to have to type this >1 time
353my @MetaClassTypes =
8b1d510f 354 qw( attribute_metaclass method_metaclass instance_metaclass
355 constructor_class destructor_class error_class );
f8b6827f 356
357sub _reconcile_with_superclass_meta {
358 my ($self, $super) = @_;
359
360 my $super_meta = $super->meta;
361
dd37a5be 362 my $super_meta_name
f8b6827f 363 = $super_meta->is_immutable
364 ? $super_meta->get_mutable_metaclass_name
365 : ref($super_meta);
e606ae5f 366
f8b6827f 367 my $self_metaclass = ref $self;
368
369 # If neither of these is true we have a more serious
370 # incompatibility that we just cannot fix (yet?).
dd37a5be 371 if ( $super_meta_name->isa( ref $self )
f8b6827f 372 && all { $super_meta->$_->isa( $self->$_ ) } @MetaClassTypes ) {
0635500e 373 $self->_reinitialize_with($super_meta);
f8b6827f 374 }
375 elsif ( $self->_all_metaclasses_differ_by_roles_only($super_meta) ) {
0635500e 376 $self->_reconcile_role_differences($super_meta);
1341f10c 377 }
1341f10c 378}
379
f8b6827f 380sub _reinitialize_with {
381 my ( $self, $new_meta ) = @_;
382
0635500e 383 my $new_self = $new_meta->reinitialize(
f8b6827f 384 $self->name,
385 attribute_metaclass => $new_meta->attribute_metaclass,
386 method_metaclass => $new_meta->method_metaclass,
387 instance_metaclass => $new_meta->instance_metaclass,
388 );
389
8b1d510f 390 $new_self->$_( $new_meta->$_ )
391 for qw( constructor_class destructor_class error_class );
f8b6827f 392
0635500e 393 %$self = %$new_self;
394
395 bless $self, ref $new_self;
396
4c5fcc12 397 # We need to replace the cached metaclass instance or else when it
398 # goes out of scope Class::MOP::Class destroy's the namespace for
399 # the metaclass's class, causing much havoc.
0635500e 400 Class::MOP::store_metaclass_by_name( $self->name, $self );
4c5fcc12 401 Class::MOP::weaken_metaclass( $self->name ) if $self->is_anon_class;
f8b6827f 402}
403
404# In the more complex case, we share a common ancestor with our
405# superclass's metaclass, but each metaclass (ours and the parent's)
406# has a different set of roles applied. We reconcile this by first
407# reinitializing into the parent class, and _then_ applying our own
408# roles.
409sub _all_metaclasses_differ_by_roles_only {
410 my ($self, $super_meta) = @_;
411
412 for my $pair (
413 [ ref $self, ref $super_meta ],
414 map { [ $self->$_, $super_meta->$_ ] } @MetaClassTypes
415 ) {
416
417 next if $pair->[0] eq $pair->[1];
418
419 my $self_meta_meta = Class::MOP::Class->initialize( $pair->[0] );
420 my $super_meta_meta = Class::MOP::Class->initialize( $pair->[1] );
421
422 my $common_ancestor
423 = _find_common_ancestor( $self_meta_meta, $super_meta_meta );
424
425 return unless $common_ancestor;
426
427 return
428 unless _is_role_only_subclass_of(
429 $self_meta_meta,
430 $common_ancestor,
431 )
432 && _is_role_only_subclass_of(
433 $super_meta_meta,
434 $common_ancestor,
435 );
436 }
437
438 return 1;
439}
440
441# This, and some other functions, could be called as methods, but
442# they're not for two reasons. One, we just end up ignoring the first
443# argument, because we can't call these directly on one of the real
444# arguments, because one of them could be a Class::MOP::Class object
445# and not a Moose::Meta::Class. Second, only a completely insane
446# person would attempt to subclass this stuff!
447sub _find_common_ancestor {
448 my ($meta1, $meta2) = @_;
449
450 # FIXME? This doesn't account for multiple inheritance (not sure
451 # if it needs to though). For example, is somewhere in $meta1's
452 # history it inherits from both ClassA and ClassB, and $meta
453 # inherits from ClassB & ClassA, does it matter? And what crazy
454 # fool would do that anyway?
455
456 my %meta1_parents = map { $_ => 1 } $meta1->linearized_isa;
457
458 return first { $meta1_parents{$_} } $meta2->linearized_isa;
459}
460
461sub _is_role_only_subclass_of {
462 my ($meta, $ancestor) = @_;
463
464 return 1 if $meta->name eq $ancestor;
465
466 my @roles = _all_roles_until( $meta, $ancestor );
467
468 my %role_packages = map { $_->name => 1 } @roles;
469
470 my $ancestor_meta = Class::MOP::Class->initialize($ancestor);
471
472 my %shared_ancestors = map { $_ => 1 } $ancestor_meta->linearized_isa;
473
474 for my $method ( $meta->get_all_methods() ) {
475 next if $method->name eq 'meta';
476 next if $method->can('associated_attribute');
477
478 next
479 if $role_packages{ $method->original_package_name }
480 || $shared_ancestors{ $method->original_package_name };
481
482 return 0;
483 }
484
485 # FIXME - this really isn't right. Just because an attribute is
486 # defined in a role doesn't mean it isn't _also_ defined in the
487 # subclass.
488 for my $attr ( $meta->get_all_attributes ) {
489 next if $shared_ancestors{ $attr->associated_class->name };
490
491 next if any { $_->has_attribute( $attr->name ) } @roles;
492
493 return 0;
494 }
495
496 return 1;
497}
498
499sub _all_roles {
500 my $meta = shift;
501
502 return _all_roles_until($meta);
503}
504
505sub _all_roles_until {
506 my ($meta, $stop_at_class) = @_;
507
508 return unless $meta->can('calculate_all_roles');
509
510 my @roles = $meta->calculate_all_roles;
511
512 for my $class ( $meta->linearized_isa ) {
513 last if $stop_at_class && $stop_at_class eq $class;
514
515 my $meta = Class::MOP::Class->initialize($class);
516 last unless $meta->can('calculate_all_roles');
517
518 push @roles, $meta->calculate_all_roles;
519 }
520
8b1d510f 521 return uniq @roles;
f8b6827f 522}
523
524sub _reconcile_role_differences {
525 my ($self, $super_meta) = @_;
526
527 my $self_meta = $self->meta;
528
529 my %roles;
530
531 if ( my @roles = map { $_->name } _all_roles($self_meta) ) {
532 $roles{metaclass_roles} = \@roles;
533 }
534
535 for my $thing (@MetaClassTypes) {
536 my $name = $self->$thing();
537
538 my $thing_meta = Class::MOP::Class->initialize($name);
539
540 my @roles = map { $_->name } _all_roles($thing_meta)
541 or next;
542
543 $roles{ $thing . '_roles' } = \@roles;
544 }
545
2b72f3b4 546 $self->_reinitialize_with($super_meta);
f8b6827f 547
548 Moose::Util::MetaRole::apply_metaclass_roles(
549 for_class => $self->name,
550 %roles,
551 );
552
553 return $self;
554}
555
d7d8a8c7 556# NOTE:
d9bb6c63 557# this was crap anyway, see
558# Moose::Util::apply_all_roles
d7d8a8c7 559# instead
4498537c 560sub _apply_all_roles {
547dda77 561 Carp::croak 'DEPRECATED: use Moose::Util::apply_all_roles($meta, @roles) instead'
4498537c 562}
1341f10c 563
564sub _process_attribute {
a3738e5b 565 my ( $self, $name, @args ) = @_;
7e59b803 566
567 @args = %{$args[0]} if scalar @args == 1 && ref($args[0]) eq 'HASH';
d9bb6c63 568
f9b5f5f8 569 if (($name || '') =~ /^\+(.*)/) {
7e59b803 570 return $self->_process_inherited_attribute($1, @args);
1341f10c 571 }
572 else {
7e59b803 573 return $self->_process_new_attribute($name, @args);
574 }
575}
576
577sub _process_new_attribute {
578 my ( $self, $name, @args ) = @_;
7e59b803 579
d5c30e52 580 $self->attribute_metaclass->interpolate_class_and_new($name, @args);
1341f10c 581}
582
583sub _process_inherited_attribute {
584 my ($self, $attr_name, %options) = @_;
585 my $inherited_attr = $self->find_attribute_by_name($attr_name);
586 (defined $inherited_attr)
11c86f15 587 || $self->throw_error("Could not find an attribute by the name of '$attr_name' to inherit from", data => $attr_name);
1341f10c 588 if ($inherited_attr->isa('Moose::Meta::Attribute')) {
d7d8a8c7 589 return $inherited_attr->clone_and_inherit_options(%options);
1341f10c 590 }
591 else {
592 # NOTE:
593 # kind of a kludge to handle Class::MOP::Attributes
d7d8a8c7 594 return $inherited_attr->Moose::Meta::Attribute::clone_and_inherit_options(%options);
ac2dc464 595 }
1341f10c 596}
597
5cf3dbcf 598## -------------------------------------------------
599
600use Moose::Meta::Method::Constructor;
1f779926 601use Moose::Meta::Method::Destructor;
5cf3dbcf 602
ac2dc464 603# This could be done by using SUPER and altering ->options
604# I am keeping it this way to make it more explicit.
605sub create_immutable_transformer {
606 my $self = shift;
607 my $class = Class::MOP::Immutable->new($self, {
e606ae5f 608 read_only => [qw/superclasses/],
609 cannot_call => [qw/
610 add_method
611 alias_method
612 remove_method
613 add_attribute
614 remove_attribute
615 remove_package_symbol
616 add_role
617 /],
618 memoize => {
619 class_precedence_list => 'ARRAY',
620 linearized_isa => 'ARRAY', # FIXME perl 5.10 memoizes this on its own, no need?
621 get_all_methods => 'ARRAY',
622 #get_all_attributes => 'ARRAY', # it's an alias, no need, but maybe in the future
623 compute_all_applicable_attributes => 'ARRAY',
624 get_meta_instance => 'SCALAR',
625 get_method_map => 'SCALAR',
626 calculate_all_roles => 'ARRAY',
627 },
628 # NOTE:
629 # this is ugly, but so are typeglobs,
630 # so whattayahgonnadoboutit
631 # - SL
632 wrapped => {
633 add_package_symbol => sub {
634 my $original = shift;
635 $self->throw_error("Cannot add package symbols to an immutable metaclass")
636 unless (caller(2))[3] eq 'Class::MOP::Package::get_package_symbol';
637 goto $original->body;
638 },
639 },
ac2dc464 640 });
641 return $class;
642}
643
644sub make_immutable {
645 my $self = shift;
646 $self->SUPER::make_immutable
647 (
e606ae5f 648 constructor_class => $self->constructor_class,
649 destructor_class => $self->destructor_class,
ac2dc464 650 inline_destructor => 1,
651 # NOTE:
652 # no need to do this,
653 # Moose always does it
654 inline_accessors => 0,
655 @_,
656 );
5cf3dbcf 657}
658
bf6fa6b3 659our $error_level;
11c86f15 660
661sub throw_error {
662 my ( $self, @args ) = @_;
bf6fa6b3 663 local $error_level = ($error_level || 0) + 1;
11c86f15 664 $self->raise_error($self->create_error(@args));
665}
666
667sub raise_error {
668 my ( $self, @args ) = @_;
669 die @args;
670}
671
672sub create_error {
673 my ( $self, @args ) = @_;
674
18748ad6 675 require Carp::Heavy;
676
bf6fa6b3 677 local $error_level = ($error_level || 0 ) + 1;
18748ad6 678
11c86f15 679 if ( @args % 2 == 1 ) {
680 unshift @args, "message";
681 }
682
fcab1742 683 my %args = ( metaclass => $self, last_error => $@, @args );
11c86f15 684
bf6fa6b3 685 $args{depth} += $error_level;
11c86f15 686
bf6fa6b3 687 my $class = ref $self ? $self->error_class : "Moose::Error::Default";
11c86f15 688
a810a01f 689 Class::MOP::load_class($class);
690
11c86f15 691 $class->new(
bf6fa6b3 692 Carp::caller_info($args{depth}),
693 %args
11c86f15 694 );
695}
696
c0e30cf5 6971;
698
699__END__
700
701=pod
702
703=head1 NAME
704
e522431d 705Moose::Meta::Class - The Moose metaclass
c0e30cf5 706
c0e30cf5 707=head1 DESCRIPTION
708
ac2dc464 709This is a subclass of L<Class::MOP::Class> with Moose specific
e522431d 710extensions.
711
ac2dc464 712For the most part, the only time you will ever encounter an
713instance of this class is if you are doing some serious deep
714introspection. To really understand this class, you need to refer
6ba6d68c 715to the L<Class::MOP::Class> documentation.
716
c0e30cf5 717=head1 METHODS
718
719=over 4
720
590868a3 721=item B<initialize>
722
61bdd94f 723=item B<create>
724
17594769 725Overrides original to accept a list of roles to apply to
61bdd94f 726the created class.
727
17594769 728 my $metaclass = Moose::Meta::Class->create( 'New::Class', roles => [...] );
729
730=item B<create_anon_class>
731
732Overrides original to support roles and caching.
733
734 my $metaclass = Moose::Meta::Class->create_anon_class(
735 superclasses => ['Foo'],
736 roles => [qw/Some Roles Go Here/],
737 cache => 1,
738 );
739
5cf3dbcf 740=item B<make_immutable>
741
ac2dc464 742Override original to add default options for inlining destructor
743and altering the Constructor metaclass.
744
745=item B<create_immutable_transformer>
746
747Override original to lock C<add_role> and memoize C<calculate_all_roles>
748
8c9d74e7 749=item B<new_object>
750
02a0fb52 751We override this method to support the C<trigger> attribute option.
752
a15dff8d 753=item B<construct_instance>
754
ac2dc464 755This provides some Moose specific extensions to this method, you
756almost never call this method directly unless you really know what
757you are doing.
6ba6d68c 758
759This method makes sure to handle the moose weak-ref, type-constraint
ac2dc464 760and type coercion features.
ef1d5f4b 761
093b12c2 762=item B<get_method_map>
e9ec68d6 763
ac2dc464 764This accommodates Moose::Meta::Role::Method instances, which are
765aliased, instead of added, but still need to be counted as valid
e9ec68d6 766methods.
767
78cd1d3b 768=item B<add_override_method_modifier ($name, $method)>
769
ac2dc464 770This will create an C<override> method modifier for you, and install
02a0fb52 771it in the package.
772
78cd1d3b 773=item B<add_augment_method_modifier ($name, $method)>
774
ac2dc464 775This will create an C<augment> method modifier for you, and install
02a0fb52 776it in the package.
777
2b14ac61 778=item B<calculate_all_roles>
779
ef333f17 780=item B<roles>
781
ac2dc464 782This will return an array of C<Moose::Meta::Role> instances which are
02a0fb52 783attached to this class.
784
ef333f17 785=item B<add_role ($role)>
786
ac2dc464 787This takes an instance of C<Moose::Meta::Role> in C<$role>, and adds it
02a0fb52 788to the list of associated roles.
789
ef333f17 790=item B<does_role ($role_name)>
791
ac2dc464 792This will test if this class C<does> a given C<$role_name>. It will
793not only check it's local roles, but ask them as well in order to
02a0fb52 794cascade down the role hierarchy.
795
d79e62fd 796=item B<excludes_role ($role_name)>
797
ac2dc464 798This will test if this class C<excludes> a given C<$role_name>. It will
799not only check it's local roles, but ask them as well in order to
d79e62fd 800cascade down the role hierarchy.
801
9e93dd19 802=item B<add_attribute ($attr_name, %params|$params)>
4e848edb 803
9e93dd19 804This method does the same thing as L<Class::MOP::Class::add_attribute>, but adds
805support for taking the C<$params> as a HASH ref.
ac1ef2f9 806
e606ae5f 807=item B<constructor_class ($class_name)>
808
809=item B<destructor_class ($class_name)>
810
811These are the names of classes used when making a class
812immutable. These default to L<Moose::Meta::Method::Constructor> and
813L<Moose::Meta::Method::Destructor> respectively. These accessors are
814read-write, so you can use them to change the class name.
815
8b1d510f 816=item B<error_class ($class_name)>
817
818The name of the class used to throw errors. This default to
819L<Moose::Error::Default>, which generates an error with a stacktrace
820just like C<Carp::confess>.
821
4fb87686 822=item B<check_metaclass_compatibility>
823
824Moose overrides this method from C<Class::MOP::Class> and attempts to
825fix some incompatibilities before doing the check.
826
11c86f15 827=item B<throw_error $message, %extra>
828
829Throws the error created by C<create_error> using C<raise_error>
830
831=item B<create_error $message, %extra>
832
833Creates an error message or object.
834
835The default behavior is C<create_error_confess>.
836
837If C<error_class> is set uses C<create_error_object>. Otherwise uses
838C<error_builder> (a code reference or variant name), and calls the appropriate
839C<create_error_$builder> method.
840
841=item B<error_builder $builder_name>
842
843Get or set the error builder. Defaults to C<confess>.
844
845=item B<error_class $class_name>
846
847Get or set the error class. Has no default.
848
849=item B<create_error_confess %args>
850
851Creates an error using L<Carp/longmess>
852
853=item B<create_error_croak %args>
854
855Creates an error using L<Carp/shortmess>
856
857=item B<create_error_object %args>
858
859Calls C<new> on the C<class> parameter in C<%args>. Usable with C<error_class>
860to support custom error objects for your meta class.
861
862=item B<raise_error $error>
863
864Dies with an error object or string.
865
c0e30cf5 866=back
867
868=head1 BUGS
869
ac2dc464 870All complex software has bugs lurking in it, and this module is no
c0e30cf5 871exception. If you find a bug please either email me, or add the bug
872to cpan-RT.
873
c0e30cf5 874=head1 AUTHOR
875
876Stevan Little E<lt>stevan@iinteractive.comE<gt>
877
878=head1 COPYRIGHT AND LICENSE
879
778db3ac 880Copyright 2006-2008 by Infinity Interactive, Inc.
c0e30cf5 881
882L<http://www.iinteractive.com>
883
884This library is free software; you can redistribute it and/or modify
ac2dc464 885it under the same terms as Perl itself.
c0e30cf5 886
8a7a9c53 887=cut
1a563243 888