foo
[gitmo/Class-MOP.git] / lib / Class / MOP / Class.pm
1
2 package Class::MOP::Class;
3
4 use strict;
5 use warnings;
6
7 use Carp         'confess';
8 use Scalar::Util 'blessed', 'reftype';
9 use Sub::Name    'subname';
10 use B            'svref_2object';
11
12 our $VERSION = '0.14';
13
14 use Class::MOP::Instance;
15
16 # Self-introspection 
17
18 sub meta { Class::MOP::Class->initialize(blessed($_[0]) || $_[0]) }
19
20 # Creation
21
22 {
23     # Metaclasses are singletons, so we cache them here.
24     # there is no need to worry about destruction though
25     # because they should die only when the program dies.
26     # After all, do package definitions even get reaped?
27     my %METAS;  
28     
29     # means of accessing all the metaclasses that have 
30     # been initialized thus far (for mugwumps obj browser)
31     sub get_all_metaclasses         {        %METAS }            
32     sub get_all_metaclass_instances { values %METAS } 
33     sub get_all_metaclass_names     { keys   %METAS }     
34     
35     sub initialize {
36         my $class        = shift;
37         my $package_name = shift;
38         (defined $package_name && $package_name && !blessed($package_name))
39             || confess "You must pass a package name and it cannot be blessed";    
40         $class->construct_class_instance(':package' => $package_name, @_);
41     }
42     
43     sub reinitialize {
44         my $class        = shift;
45         my $package_name = shift;
46         (defined $package_name && $package_name && !blessed($package_name))
47             || confess "You must pass a package name and it cannot be blessed";    
48         $METAS{$package_name} = undef;
49         $class->construct_class_instance(':package' => $package_name, @_);
50     }    
51     
52     # NOTE: (meta-circularity) 
53     # this is a special form of &construct_instance 
54     # (see below), which is used to construct class
55     # meta-object instances for any Class::MOP::* 
56     # class. All other classes will use the more 
57     # normal &construct_instance.
58     sub construct_class_instance {
59         my $class        = shift;
60         my %options      = @_;
61         my $package_name = $options{':package'};
62         (defined $package_name && $package_name)
63             || confess "You must pass a package name";  
64         # NOTE:
65         # return the metaclass if we have it cached, 
66         # and it is still defined (it has not been 
67         # reaped by DESTROY yet, which can happen 
68         # annoyingly enough during global destruction)
69         return $METAS{$package_name} 
70             if exists $METAS{$package_name} && defined $METAS{$package_name};  
71         $class = blessed($class) || $class;
72         # now create the metaclass
73         my $meta;
74         if ($class =~ /^Class::MOP::/) {    
75             $meta = bless { 
76                 '$:package'             => $package_name, 
77                 '%:attributes'          => {},
78                 '$:attribute_metaclass' => $options{':attribute_metaclass'} || 'Class::MOP::Attribute',
79                 '$:method_metaclass'    => $options{':method_metaclass'}    || 'Class::MOP::Method',
80                 '$:instance_metaclass'  => $options{':instance_metaclass'}  || 'Class::MOP::Instance',    
81             } => $class;
82         }
83         else {
84             # NOTE:
85             # it is safe to use meta here because
86             # class will always be a subclass of 
87             # Class::MOP::Class, which defines meta
88             $meta = $class->meta->construct_instance(%options)
89         }
90         # and check the metaclass compatibility
91         $meta->check_metaclass_compatability();
92         $METAS{$package_name} = $meta;
93     }
94     
95     sub check_metaclass_compatability {
96         my $self = shift;
97
98         # this is always okay ...
99         return if blessed($self)            eq 'Class::MOP::Class'   && 
100                   $self->instance_metaclass eq 'Class::MOP::Instance';
101
102         my @class_list = $self->class_precedence_list;
103         shift @class_list; # shift off $self->name
104
105         foreach my $class_name (@class_list) { 
106             my $meta = $METAS{$class_name} || next;
107             ($self->isa(blessed($meta)))
108                 || confess $self->name . "->meta => (" . (blessed($self)) . ")" . 
109                            " is not compatible with the " . 
110                            $class_name . "->meta => (" . (blessed($meta)) . ")";
111             # NOTE:
112             # we also need to check that instance metaclasses
113             # are compatabile in the same the class.
114             ($self->instance_metaclass->isa($meta->instance_metaclass))
115                 || confess $self->name . "->meta => (" . ($self->instance_metaclass) . ")" . 
116                            " is not compatible with the " . 
117                            $class_name . "->meta => (" . ($meta->instance_metaclass) . ")";                           
118         }        
119     } 
120 }
121
122 sub create {
123     my ($class, $package_name, $package_version, %options) = @_;
124     (defined $package_name && $package_name)
125         || confess "You must pass a package name";
126     my $code = "package $package_name;";
127     $code .= "\$$package_name\:\:VERSION = '$package_version';" 
128         if defined $package_version;
129     eval $code;
130     confess "creation of $package_name failed : $@" if $@;    
131     my $meta = $class->initialize($package_name);
132     
133     $meta->add_method('meta' => sub { 
134         Class::MOP::Class->initialize(blessed($_[0]) || $_[0]);
135     });
136     
137     $meta->superclasses(@{$options{superclasses}})
138         if exists $options{superclasses};
139     # NOTE:
140     # process attributes first, so that they can 
141     # install accessors, but locally defined methods
142     # can then overwrite them. It is maybe a little odd, but
143     # I think this should be the order of things.
144     if (exists $options{attributes}) {
145         foreach my $attr (@{$options{attributes}}) {
146             $meta->add_attribute($attr);
147         }
148     }        
149     if (exists $options{methods}) {
150         foreach my $method_name (keys %{$options{methods}}) {
151             $meta->add_method($method_name, $options{methods}->{$method_name});
152         }
153     }  
154     return $meta;
155 }
156
157     
158 sub create_anon_class {
159     my ($class, %options) = @_;   
160     return Class::MOP::Class::__ANON__->create(%options);
161 }
162
163 ## Attribute readers
164
165 # NOTE:
166 # all these attribute readers will be bootstrapped 
167 # away in the Class::MOP bootstrap section
168
169 sub name                { $_[0]->{'$:package'}             }
170 sub get_attribute_map   { $_[0]->{'%:attributes'}          }
171 sub attribute_metaclass { $_[0]->{'$:attribute_metaclass'} }
172 sub method_metaclass    { $_[0]->{'$:method_metaclass'}    }
173 sub instance_metaclass  { $_[0]->{'$:instance_metaclass'}  }
174
175 # Instance Construction & Cloning
176
177 sub new_object {
178     my $class = shift;
179     # NOTE:
180     # we need to protect the integrity of the 
181     # Class::MOP::Class singletons here, so we
182     # delegate this to &construct_class_instance
183     # which will deal with the singletons
184     return $class->construct_class_instance(@_)
185         if $class->name->isa('Class::MOP::Class');
186     return $class->construct_instance(@_);
187 }
188
189 sub construct_instance {
190     my ($class, %params) = @_;
191     my $meta_instance = $class->get_meta_instance();
192     my $instance = $meta_instance->create_instance();
193     foreach my $attr ($class->compute_all_applicable_attributes()) {
194         $attr->initialize_instance_slot($meta_instance, $instance, \%params);
195     }
196     return $instance;
197 }
198
199 sub get_meta_instance {
200     my $class = shift;
201     return $class->instance_metaclass->new(
202         $class, 
203         $class->compute_all_applicable_attributes()
204     );
205 }
206
207 sub clone_object {
208     my $class    = shift;
209     my $instance = shift; 
210     (blessed($instance) && $instance->isa($class->name))
211         || confess "You must pass an instance ($instance) of the metaclass (" . $class->name . ")";
212     # NOTE:
213     # we need to protect the integrity of the 
214     # Class::MOP::Class singletons here, they 
215     # should not be cloned.
216     return $instance if $instance->isa('Class::MOP::Class');   
217     $class->clone_instance($instance, @_);
218 }
219
220 sub clone_instance {
221     my ($class, $instance, %params) = @_;
222     (blessed($instance))
223         || confess "You can only clone instances, \$self is not a blessed instance";
224     my $meta_instance = $class->get_meta_instance();
225     my $clone = $meta_instance->clone_instance($instance);        
226     foreach my $key (%params) {
227         next unless $meta_instance->is_valid_slot($key);
228         $meta_instance->set_slot_value($clone, $key, $params{$key});
229     }
230     return $clone;    
231 }
232
233 # Informational 
234
235 # &name should be here too, but it is above
236 # because it gets bootstrapped away
237
238 sub version {  
239     my $self = shift;
240     ${$self->get_package_variable('$VERSION')};
241 }
242
243 # Inheritance
244
245 sub superclasses {
246     my $self = shift;
247     no strict 'refs';
248     if (@_) {
249         my @supers = @_;
250         @{$self->name . '::ISA'} = @supers;
251         # NOTE:
252         # we need to check the metaclass 
253         # compatability here so that we can 
254         # be sure that the superclass is 
255         # not potentially creating an issues 
256         # we don't know about
257         $self->check_metaclass_compatability();
258     }
259     @{$self->name . '::ISA'};
260 }
261
262 sub class_precedence_list {
263     my $self = shift;
264     # NOTE:
265     # We need to check for ciruclar inheirtance here.
266     # This will do nothing if all is well, and blow
267     # up otherwise. Yes, it's an ugly hack, better 
268     # suggestions are welcome.
269     { ($self->name || return)->isa('This is a test for circular inheritance') }
270     # ... and now back to our regularly scheduled program
271     (
272         $self->name, 
273         map { 
274             $self->initialize($_)->class_precedence_list()
275         } $self->superclasses()
276     );   
277 }
278
279 ## Methods
280
281 sub add_method {
282     my ($self, $method_name, $method) = @_;
283     (defined $method_name && $method_name)
284         || confess "You must define a method name";
285     # use reftype here to allow for blessed subs ...
286     ('CODE' eq (reftype($method) || ''))
287         || confess "Your code block must be a CODE reference";
288     my $full_method_name = ($self->name . '::' . $method_name);    
289
290     $method = $self->method_metaclass->wrap($method) unless blessed($method);
291     
292     no strict 'refs';
293     no warnings 'redefine';
294     *{$full_method_name} = subname $full_method_name => $method;
295 }
296
297 {
298     my $fetch_and_prepare_method = sub {
299         my ($self, $method_name) = @_;
300         # fetch it locally
301         my $method = $self->get_method($method_name);
302         # if we dont have local ...
303         unless ($method) {
304             # make sure this method even exists ...
305             ($self->find_next_method_by_name($method_name))
306                 || confess "The method '$method_name' is not found in the inherience hierarchy for this class";
307             # if so, then create a local which just 
308             # calls the next applicable method ...              
309             $self->add_method($method_name => sub {
310                 $self->find_next_method_by_name($method_name)->(@_);
311             });
312             $method = $self->get_method($method_name);
313         }
314         
315         # now make sure we wrap it properly 
316         # (if it isnt already)
317         unless ($method->isa('Class::MOP::Method::Wrapped')) {
318             $method = Class::MOP::Method::Wrapped->wrap($method);
319             $self->add_method($method_name => $method); 
320         }       
321         return $method;
322     };
323
324     sub add_before_method_modifier {
325         my ($self, $method_name, $method_modifier) = @_;
326         (defined $method_name && $method_name)
327             || confess "You must pass in a method name";    
328         my $method = $fetch_and_prepare_method->($self, $method_name);
329         $method->add_before_modifier(subname ':before' => $method_modifier);
330     }
331
332     sub add_after_method_modifier {
333         my ($self, $method_name, $method_modifier) = @_;
334         (defined $method_name && $method_name)
335             || confess "You must pass in a method name";    
336         my $method = $fetch_and_prepare_method->($self, $method_name);
337         $method->add_after_modifier(subname ':after' => $method_modifier);
338     }
339     
340     sub add_around_method_modifier {
341         my ($self, $method_name, $method_modifier) = @_;
342         (defined $method_name && $method_name)
343             || confess "You must pass in a method name";
344         my $method = $fetch_and_prepare_method->($self, $method_name);
345         $method->add_around_modifier(subname ':around' => $method_modifier);
346     }   
347
348     # NOTE: 
349     # the methods above used to be named like this:
350     #    ${pkg}::${method}:(before|after|around)
351     # but this proved problematic when using one modifier
352     # to wrap multiple methods (something which is likely
353     # to happen pretty regularly IMO). So instead of naming
354     # it like this, I have chosen to just name them purely 
355     # with their modifier names, like so:
356     #    :(before|after|around)
357     # The fact is that in a stack trace, it will be fairly 
358     # evident from the context what method they are attached
359     # to, and so don't need the fully qualified name.
360 }
361
362 sub alias_method {
363     my ($self, $method_name, $method) = @_;
364     (defined $method_name && $method_name)
365         || confess "You must define a method name";
366     # use reftype here to allow for blessed subs ...
367     ('CODE' eq (reftype($method) || ''))
368         || confess "Your code block must be a CODE reference";
369     my $full_method_name = ($self->name . '::' . $method_name);
370
371     $method = $self->method_metaclass->wrap($method) unless blessed($method);    
372         
373     no strict 'refs';
374     no warnings 'redefine';
375     *{$full_method_name} = $method;
376 }
377
378 sub has_method {
379     my ($self, $method_name) = @_;
380     (defined $method_name && $method_name)
381         || confess "You must define a method name";    
382
383     my $sub_name = ($self->name . '::' . $method_name);   
384     
385     no strict 'refs';
386     return 0 if !defined(&{$sub_name});        
387     my $method = \&{$sub_name};
388     return 0 if (svref_2object($method)->GV->STASH->NAME || '') ne $self->name &&
389                 (svref_2object($method)->GV->NAME || '')        ne '__ANON__';      
390     
391     # at this point we are relatively sure 
392     # it is our method, so we bless/wrap it 
393     $self->method_metaclass->wrap($method) unless blessed($method);
394     return 1;
395 }
396
397 sub get_method {
398     my ($self, $method_name) = @_;
399     (defined $method_name && $method_name)
400         || confess "You must define a method name";
401
402     return unless $self->has_method($method_name);
403
404     no strict 'refs';    
405     return \&{$self->name . '::' . $method_name};
406 }
407
408 sub remove_method {
409     my ($self, $method_name) = @_;
410     (defined $method_name && $method_name)
411         || confess "You must define a method name";
412     
413     my $removed_method = $self->get_method($method_name);    
414     
415     no strict 'refs';
416     delete ${$self->name . '::'}{$method_name}
417         if defined $removed_method;
418         
419     return $removed_method;
420 }
421
422 sub get_method_list {
423     my $self = shift;
424     no strict 'refs';
425     grep { $self->has_method($_) } keys %{$self->name . '::'};
426 }
427
428 sub compute_all_applicable_methods {
429     my $self = shift;
430     my @methods;
431     # keep a record of what we have seen
432     # here, this will handle all the 
433     # inheritence issues because we are 
434     # using the &class_precedence_list
435     my (%seen_class, %seen_method);
436     foreach my $class ($self->class_precedence_list()) {
437         next if $seen_class{$class};
438         $seen_class{$class}++;
439         # fetch the meta-class ...
440         my $meta = $self->initialize($class);
441         foreach my $method_name ($meta->get_method_list()) { 
442             next if exists $seen_method{$method_name};
443             $seen_method{$method_name}++;
444             push @methods => {
445                 name  => $method_name, 
446                 class => $class,
447                 code  => $meta->get_method($method_name)
448             };
449         }
450     }
451     return @methods;
452 }
453
454 sub find_all_methods_by_name {
455     my ($self, $method_name) = @_;
456     (defined $method_name && $method_name)
457         || confess "You must define a method name to find";    
458     my @methods;
459     # keep a record of what we have seen
460     # here, this will handle all the 
461     # inheritence issues because we are 
462     # using the &class_precedence_list
463     my %seen_class;
464     foreach my $class ($self->class_precedence_list()) {
465         next if $seen_class{$class};
466         $seen_class{$class}++;
467         # fetch the meta-class ...
468         my $meta = $self->initialize($class);
469         push @methods => {
470             name  => $method_name, 
471             class => $class,
472             code  => $meta->get_method($method_name)
473         } if $meta->has_method($method_name);
474     }
475     return @methods;
476 }
477
478 sub find_next_method_by_name {
479     my ($self, $method_name) = @_;
480     (defined $method_name && $method_name)
481         || confess "You must define a method name to find"; 
482     # keep a record of what we have seen
483     # here, this will handle all the 
484     # inheritence issues because we are 
485     # using the &class_precedence_list
486     my %seen_class;
487     my @cpl = $self->class_precedence_list();
488     shift @cpl; # discard ourselves
489     foreach my $class (@cpl) {
490         next if $seen_class{$class};
491         $seen_class{$class}++;
492         # fetch the meta-class ...
493         my $meta = $self->initialize($class);
494         return $meta->get_method($method_name) 
495             if $meta->has_method($method_name);
496     }
497     return;
498 }
499
500 ## Attributes
501
502 sub add_attribute {
503     my $self      = shift;
504     # either we have an attribute object already
505     # or we need to create one from the args provided
506     my $attribute = blessed($_[0]) ? $_[0] : $self->attribute_metaclass->new(@_);
507     # make sure it is derived from the correct type though
508     ($attribute->isa('Class::MOP::Attribute'))
509         || confess "Your attribute must be an instance of Class::MOP::Attribute (or a subclass)";    
510     $attribute->attach_to_class($self);
511     $attribute->install_accessors();
512     $self->get_attribute_map->{$attribute->name} = $attribute;
513
514         # FIXME
515         # in theory we have to tell everyone the slot structure may have changed
516 }
517
518 sub has_attribute {
519     my ($self, $attribute_name) = @_;
520     (defined $attribute_name && $attribute_name)
521         || confess "You must define an attribute name";
522     exists $self->get_attribute_map->{$attribute_name} ? 1 : 0;    
523
524
525 sub get_attribute {
526     my ($self, $attribute_name) = @_;
527     (defined $attribute_name && $attribute_name)
528         || confess "You must define an attribute name";
529     return $self->get_attribute_map->{$attribute_name} 
530         if $self->has_attribute($attribute_name);   
531     return; 
532
533
534 sub remove_attribute {
535     my ($self, $attribute_name) = @_;
536     (defined $attribute_name && $attribute_name)
537         || confess "You must define an attribute name";
538     my $removed_attribute = $self->get_attribute_map->{$attribute_name};    
539     return unless defined $removed_attribute;
540     delete $self->get_attribute_map->{$attribute_name};        
541     $removed_attribute->remove_accessors(); 
542     $removed_attribute->detach_from_class();
543     return $removed_attribute;
544
545
546 sub get_attribute_list {
547     my $self = shift;
548     keys %{$self->get_attribute_map};
549
550
551 sub compute_all_applicable_attributes {
552     my $self = shift;
553     my @attrs;
554     # keep a record of what we have seen
555     # here, this will handle all the 
556     # inheritence issues because we are 
557     # using the &class_precedence_list
558     my (%seen_class, %seen_attr);
559     foreach my $class ($self->class_precedence_list()) {
560         next if $seen_class{$class};
561         $seen_class{$class}++;
562         # fetch the meta-class ...
563         my $meta = $self->initialize($class);
564         foreach my $attr_name ($meta->get_attribute_list()) { 
565             next if exists $seen_attr{$attr_name};
566             $seen_attr{$attr_name}++;
567             push @attrs => $meta->get_attribute($attr_name);
568         }
569     }
570     return @attrs;    
571 }
572
573 sub find_attribute_by_name {
574     my ($self, $attr_name) = @_;
575     # keep a record of what we have seen
576     # here, this will handle all the 
577     # inheritence issues because we are 
578     # using the &class_precedence_list
579     my %seen_class;
580     foreach my $class ($self->class_precedence_list()) {
581         next if $seen_class{$class};
582         $seen_class{$class}++;
583         # fetch the meta-class ...
584         my $meta = $self->initialize($class);
585         return $meta->get_attribute($attr_name)
586             if $meta->has_attribute($attr_name);
587     }
588     return;
589 }
590
591 # Class attributes
592
593 sub add_package_variable {
594     my ($self, $variable, $initial_value) = @_;
595     (defined $variable && $variable =~ /^[\$\@\%]/)
596         || confess "variable name does not have a sigil";
597     
598     my ($sigil, $name) = ($variable =~ /^(.)(.*)$/); 
599     if (defined $initial_value) {
600         no strict 'refs';
601         *{$self->name . '::' . $name} = $initial_value;
602     }
603     else {
604         my $e;
605         {        
606             # NOTE:
607             # We HAVE to localize $@ or all 
608             # hell breaks loose. It is not 
609             # good, believe me, not good.
610             local $@;
611             eval $sigil . $self->name . '::' . $name;
612             $e = $@ if $@;            
613         }
614         confess "Could not create package variable ($variable) because : $e" if $e;
615     }
616 }
617
618 sub has_package_variable {
619     my ($self, $variable) = @_;
620     (defined $variable && $variable =~ /^[\$\@\%]/)
621         || confess "variable name does not have a sigil";
622     my ($sigil, $name) = ($variable =~ /^(.)(.*)$/); 
623     no strict 'refs';
624     defined ${$self->name . '::'}{$name} ? 1 : 0;
625 }
626
627 sub get_package_variable {
628     my ($self, $variable) = @_;
629     (defined $variable && $variable =~ /^[\$\@\%]/)
630         || confess "variable name does not have a sigil";
631     my ($sigil, $name) = ($variable =~ /^(.)(.*)$/); 
632     my ($ref, $e);
633     {
634         # NOTE:
635         # We HAVE to localize $@ or all 
636         # hell breaks loose. It is not 
637         # good, believe me, not good.
638         local $@;        
639         $ref = eval '\\' . $sigil . $self->name . '::' . $name;
640         $e = $@ if $@;
641     }
642     confess "Could not get the package variable ($variable) because : $e" if $e;    
643     # if we didn't die, then we can return it
644     return $ref;
645 }
646
647 sub remove_package_variable {
648     my ($self, $variable) = @_;
649     (defined $variable && $variable =~ /^[\$\@\%]/)
650         || confess "variable name does not have a sigil";
651     my ($sigil, $name) = ($variable =~ /^(.)(.*)$/); 
652     no strict 'refs';
653     delete ${$self->name . '::'}{$name};
654 }
655
656 package Class::MOP::Class::__ANON__;
657
658 use strict;
659 use warnings;
660
661 use Scalar::Util 'weaken';
662
663 our $VERSION = '0.01';
664
665 use base 'Class::MOP::Class';
666     
667 {
668     # NOTE:
669     # we hold a weakened cache here
670     my %ANON_METAS;    
671     
672     # NOTE:
673     # this should be sufficient, if you have a 
674     # use case where it is not, write a test and 
675     # I will change it.
676     my $ANON_CLASS_SERIAL = 0;
677
678     sub create {
679         my ($class, %options) = @_;   
680         my $package_name = __PACKAGE__ . '::SERIAL::' . ++$ANON_CLASS_SERIAL;
681         return $class->SUPER::create($package_name, '0.00', %options);
682     }
683
684     sub construct_class_instance {
685         my ($class, %options) = @_;
686         my $package_name = $options{':package'};
687         # NOTE:
688         # we cache the anon metaclasses as well
689         # but we weaken them (see below)
690         return $ANON_METAS{$package_name} 
691             if exists  $ANON_METAS{$package_name} && 
692                defined $ANON_METAS{$package_name};            
693         my $meta = $class->meta->construct_instance(%options);
694         $meta->check_metaclass_compatability();
695         # weaken the metaclass cache so that 
696         # DESTROY gets called as expected
697         weaken($ANON_METAS{$package_name} = $meta);
698         return $meta;
699     }
700 }
701
702 sub DESTROY {
703     my $self = shift;
704     my $prefix = __PACKAGE__ . '::SERIAL::';
705     my ($serial_id) = ($self->name =~ /$prefix(\d+)/);
706     no strict 'refs';
707     foreach my $key (keys %{$prefix . $serial_id}) {
708         delete ${$prefix . $serial_id}{$key};
709     }
710     delete ${'main::' . $prefix}{$serial_id . '::'};
711 }
712
713 1;
714
715 __END__
716
717 =pod
718
719 =head1 NAME 
720
721 Class::MOP::Class - Class Meta Object
722
723 =head1 SYNOPSIS
724
725   # assuming that class Foo 
726   # has been defined, you can
727   
728   # use this for introspection ...
729   
730   # add a method to Foo ...
731   Foo->meta->add_method('bar' => sub { ... })
732   
733   # get a list of all the classes searched 
734   # the method dispatcher in the correct order 
735   Foo->meta->class_precedence_list()
736   
737   # remove a method from Foo
738   Foo->meta->remove_method('bar');
739   
740   # or use this to actually create classes ...
741   
742   Class::MOP::Class->create('Bar' => '0.01' => (
743       superclasses => [ 'Foo' ],
744       attributes => [
745           Class::MOP:::Attribute->new('$bar'),
746           Class::MOP:::Attribute->new('$baz'),          
747       ],
748       methods => {
749           calculate_bar => sub { ... },
750           construct_baz => sub { ... }          
751       }
752   ));
753
754 =head1 DESCRIPTION
755
756 This is the largest and currently most complex part of the Perl 5 
757 meta-object protocol. It controls the introspection and 
758 manipulation of Perl 5 classes (and it can create them too). The 
759 best way to understand what this module can do, is to read the 
760 documentation for each of it's methods.
761
762 =head1 METHODS
763
764 =head2 Self Introspection
765
766 =over 4
767
768 =item B<meta>
769
770 This will return a B<Class::MOP::Class> instance which is related 
771 to this class. Thereby allowing B<Class::MOP::Class> to actually 
772 introspect itself.
773
774 As with B<Class::MOP::Attribute>, B<Class::MOP> will actually 
775 bootstrap this module by installing a number of attribute meta-objects 
776 into it's metaclass. This will allow this class to reap all the benifits 
777 of the MOP when subclassing it. 
778
779 =item B<get_all_metaclasses>
780
781 This will return an hash of all the metaclass instances that have 
782 been cached by B<Class::MOP::Class> keyed by the package name. 
783
784 =item B<get_all_metaclass_instances>
785
786 This will return an array of all the metaclass instances that have 
787 been cached by B<Class::MOP::Class>.
788
789 =item B<get_all_metaclass_names>
790
791 This will return an array of all the metaclass names that have 
792 been cached by B<Class::MOP::Class>.
793
794 =back
795
796 =head2 Class construction
797
798 These methods will handle creating B<Class::MOP::Class> objects, 
799 which can be used to both create new classes, and analyze 
800 pre-existing classes. 
801
802 This module will internally store references to all the instances 
803 you create with these methods, so that they do not need to be 
804 created any more than nessecary. Basically, they are singletons.
805
806 =over 4
807
808 =item B<create ($package_name, ?$package_version,
809                 superclasses =E<gt> ?@superclasses, 
810                 methods      =E<gt> ?%methods, 
811                 attributes   =E<gt> ?%attributes)>
812
813 This returns a B<Class::MOP::Class> object, bringing the specified 
814 C<$package_name> into existence and adding any of the 
815 C<$package_version>, C<@superclasses>, C<%methods> and C<%attributes> 
816 to it.
817
818 =item B<create_anon_class (superclasses =E<gt> ?@superclasses, 
819                            methods      =E<gt> ?%methods, 
820                            attributes   =E<gt> ?%attributes)>
821
822 This will create an anonymous class, it works much like C<create> but 
823 it does not need a C<$package_name>. Instead it will create a suitably 
824 unique package name for you to stash things into.
825
826 =item B<initialize ($package_name, %options)>
827
828 This initializes and returns returns a B<Class::MOP::Class> object 
829 for a given a C<$package_name>.
830
831 =item B<reinitialize ($package_name, %options)>
832
833 This removes the old metaclass, and creates a new one in it's place.
834 Do B<not> use this unless you really know what you are doing, it could 
835 very easily make a very large mess of your program. 
836
837 =item B<construct_class_instance (%options)>
838
839 This will construct an instance of B<Class::MOP::Class>, it is 
840 here so that we can actually "tie the knot" for B<Class::MOP::Class> 
841 to use C<construct_instance> once all the bootstrapping is done. This 
842 method is used internally by C<initialize> and should never be called
843 from outside of that method really.
844
845 =item B<check_metaclass_compatability>
846
847 This method is called as the very last thing in the 
848 C<construct_class_instance> method. This will check that the 
849 metaclass you are creating is compatible with the metaclasses of all 
850 your ancestors. For more inforamtion about metaclass compatibility 
851 see the C<About Metaclass compatibility> section in L<Class::MOP>.
852
853 =back
854
855 =head2 Object instance construction and cloning
856
857 These methods are B<entirely optional>, it is up to you whether you want 
858 to use them or not.
859
860 =over 4
861
862 =item B<instance_metaclass>
863
864 =item B<get_meta_instance>
865
866 =item B<new_object (%params)>
867
868 This is a convience method for creating a new object of the class, and 
869 blessing it into the appropriate package as well. Ideally your class 
870 would call a C<new> this method like so:
871
872   sub MyClass::new { 
873       my ($class, %param) = @_;
874       $class->meta->new_object(%params);
875   }
876
877 Of course the ideal place for this would actually be in C<UNIVERSAL::> 
878 but that is considered bad style, so we do not do that.
879
880 =item B<construct_instance (%params)>
881
882 This method is used to construct an instace structure suitable for 
883 C<bless>-ing into your package of choice. It works in conjunction 
884 with the Attribute protocol to collect all applicable attributes.
885
886 This will construct and instance using a HASH ref as storage 
887 (currently only HASH references are supported). This will collect all 
888 the applicable attributes and layout out the fields in the HASH ref, 
889 it will then initialize them using either use the corresponding key 
890 in C<%params> or any default value or initializer found in the 
891 attribute meta-object.
892
893 =item B<clone_object ($instance, %params)>
894
895 This is a convience method for cloning an object instance, then  
896 blessing it into the appropriate package. This method will call 
897 C<clone_instance>, which performs a shallow copy of the object, 
898 see that methods documentation for more details. Ideally your 
899 class would call a C<clone> this method like so:
900
901   sub MyClass::clone {
902       my ($self, %param) = @_;
903       $self->meta->clone_object($self, %params);
904   }
905
906 Of course the ideal place for this would actually be in C<UNIVERSAL::> 
907 but that is considered bad style, so we do not do that.
908
909 =item B<clone_instance($instance, %params)>
910
911 This method is a compliment of C<construct_instance> (which means if 
912 you override C<construct_instance>, you need to override this one too), 
913 and clones the instance shallowly.
914
915 The cloned structure returned is (like with C<construct_instance>) an 
916 unC<bless>ed HASH reference, it is your responsibility to then bless 
917 this cloned structure into the right class (which C<clone_object> will
918 do for you).
919
920 As of 0.11, this method will clone the C<$instance> structure shallowly, 
921 as opposed to the deep cloning implemented in prior versions. After much 
922 thought, research and discussion, I have decided that anything but basic 
923 shallow cloning is outside the scope of the meta-object protocol. I 
924 think Yuval "nothingmuch" Kogman put it best when he said that cloning 
925 is too I<context-specific> to be part of the MOP.
926
927 =back
928
929 =head2 Informational 
930
931 =over 4
932
933 =item B<name>
934
935 This is a read-only attribute which returns the package name for the 
936 given B<Class::MOP::Class> instance.
937
938 =item B<version>
939
940 This is a read-only attribute which returns the C<$VERSION> of the 
941 package for the given B<Class::MOP::Class> instance.
942
943 =back
944
945 =head2 Inheritance Relationships
946
947 =over 4
948
949 =item B<superclasses (?@superclasses)>
950
951 This is a read-write attribute which represents the superclass 
952 relationships of the class the B<Class::MOP::Class> instance is
953 associated with. Basically, it can get and set the C<@ISA> for you.
954
955 B<NOTE:>
956 Perl will occasionally perform some C<@ISA> and method caching, if 
957 you decide to change your superclass relationship at runtime (which 
958 is quite insane and very much not recommened), then you should be 
959 aware of this and the fact that this module does not make any 
960 attempt to address this issue.
961
962 =item B<class_precedence_list>
963
964 This computes the a list of all the class's ancestors in the same order 
965 in which method dispatch will be done. This is similair to 
966 what B<Class::ISA::super_path> does, but we don't remove duplicate names.
967
968 =back
969
970 =head2 Methods
971
972 =over 4
973
974 =item B<method_metaclass>
975
976 =item B<add_method ($method_name, $method)>
977
978 This will take a C<$method_name> and CODE reference to that 
979 C<$method> and install it into the class's package. 
980
981 B<NOTE>: 
982 This does absolutely nothing special to C<$method> 
983 other than use B<Sub::Name> to make sure it is tagged with the 
984 correct name, and therefore show up correctly in stack traces and 
985 such.
986
987 =item B<alias_method ($method_name, $method)>
988
989 This will take a C<$method_name> and CODE reference to that 
990 C<$method> and alias the method into the class's package. 
991
992 B<NOTE>: 
993 Unlike C<add_method>, this will B<not> try to name the 
994 C<$method> using B<Sub::Name>, it only aliases the method in 
995 the class's package. 
996
997 =item B<has_method ($method_name)>
998
999 This just provides a simple way to check if the class implements 
1000 a specific C<$method_name>. It will I<not> however, attempt to check 
1001 if the class inherits the method (use C<UNIVERSAL::can> for that).
1002
1003 This will correctly handle functions defined outside of the package 
1004 that use a fully qualified name (C<sub Package::name { ... }>).
1005
1006 This will correctly handle functions renamed with B<Sub::Name> and 
1007 installed using the symbol tables. However, if you are naming the 
1008 subroutine outside of the package scope, you must use the fully 
1009 qualified name, including the package name, for C<has_method> to 
1010 correctly identify it. 
1011
1012 This will attempt to correctly ignore functions imported from other 
1013 packages using B<Exporter>. It breaks down if the function imported 
1014 is an C<__ANON__> sub (such as with C<use constant>), which very well 
1015 may be a valid method being applied to the class. 
1016
1017 In short, this method cannot always be trusted to determine if the 
1018 C<$method_name> is actually a method. However, it will DWIM about 
1019 90% of the time, so it's a small trade off I think.
1020
1021 =item B<get_method ($method_name)>
1022
1023 This will return a CODE reference of the specified C<$method_name>, 
1024 or return undef if that method does not exist.
1025
1026 =item B<remove_method ($method_name)>
1027
1028 This will attempt to remove a given C<$method_name> from the class. 
1029 It will return the CODE reference that it has removed, and will 
1030 attempt to use B<Sub::Name> to clear the methods associated name.
1031
1032 =item B<get_method_list>
1033
1034 This will return a list of method names for all I<locally> defined 
1035 methods. It does B<not> provide a list of all applicable methods, 
1036 including any inherited ones. If you want a list of all applicable 
1037 methods, use the C<compute_all_applicable_methods> method.
1038
1039 =item B<compute_all_applicable_methods>
1040
1041 This will return a list of all the methods names this class will 
1042 respond to, taking into account inheritance. The list will be a list of 
1043 HASH references, each one containing the following information; method 
1044 name, the name of the class in which the method lives and a CODE 
1045 reference for the actual method.
1046
1047 =item B<find_all_methods_by_name ($method_name)>
1048
1049 This will traverse the inheritence hierarchy and locate all methods 
1050 with a given C<$method_name>. Similar to 
1051 C<compute_all_applicable_methods> it returns a list of HASH references 
1052 with the following information; method name (which will always be the 
1053 same as C<$method_name>), the name of the class in which the method 
1054 lives and a CODE reference for the actual method.
1055
1056 The list of methods produced is a distinct list, meaning there are no 
1057 duplicates in it. This is especially useful for things like object 
1058 initialization and destruction where you only want the method called 
1059 once, and in the correct order.
1060
1061 =item B<find_next_method_by_name ($method_name)>
1062
1063 This will return the first method to match a given C<$method_name> in 
1064 the superclasses, this is basically equivalent to calling 
1065 C<SUPER::$method_name>, but it can be dispatched at runtime.
1066
1067 =back
1068
1069 =head2 Method Modifiers
1070
1071 Method modifiers are a concept borrowed from CLOS, in which a method 
1072 can be wrapped with I<before>, I<after> and I<around> method modifiers 
1073 that will be called everytime the method is called. 
1074
1075 =head3 How method modifiers work?
1076
1077 Method modifiers work by wrapping the original method and then replacing 
1078 it in the classes symbol table. The wrappers will handle calling all the 
1079 modifiers in the appropariate orders and preserving the calling context 
1080 for the original method. 
1081
1082 Each method modifier serves a particular purpose, which may not be 
1083 obvious to users of other method wrapping modules. To start with, the 
1084 return values of I<before> and I<after> modifiers are ignored. This is 
1085 because thier purpose is B<not> to filter the input and output of the 
1086 primary method (this is done with an I<around> modifier). This may seem 
1087 like an odd restriction to some, but doing this allows for simple code 
1088 to be added at the begining or end of a method call without jeapordizing 
1089 the normal functioning of the primary method or placing any extra 
1090 responsibility on the code of the modifier. Of course if you have more 
1091 complex needs, then use the I<around> modifier, which uses a variation 
1092 of continutation passing style to allow for a high degree of flexibility. 
1093
1094 Before and around modifiers are called in last-defined-first-called order, 
1095 while after modifiers are called in first-defined-first-called order. So 
1096 the call tree might looks something like this:
1097   
1098   before 2
1099    before 1
1100     around 2
1101      around 1
1102       primary
1103      after 1
1104     after 2
1105
1106 To see examples of using method modifiers, see the following examples 
1107 included in the distribution; F<InstanceCountingClass>, F<Perl6Attribute>, 
1108 F<AttributesWithHistory> and F<C3MethodDispatchOrder>. There is also a 
1109 classic CLOS usage example in the test F<017_add_method_modifier.t>.
1110
1111 =head3 What is the performance impact?
1112
1113 Of course there is a performance cost associated with method modifiers, 
1114 but we have made every effort to make that cost be directly proportional 
1115 to the amount of modifier features you utilize.
1116
1117 The wrapping method does it's best to B<only> do as much work as it 
1118 absolutely needs to. In order to do this we have moved some of the 
1119 performance costs to set-up time, where they are easier to amortize.
1120
1121 All this said, my benchmarks have indicated the following:
1122
1123   simple wrapper with no modifiers             100% slower
1124   simple wrapper with simple before modifier   400% slower
1125   simple wrapper with simple after modifier    450% slower
1126   simple wrapper with simple around modifier   500-550% slower
1127   simple wrapper with all 3 modifiers          1100% slower
1128
1129 These numbers may seem daunting, but you must remember, every feature 
1130 comes with some cost. To put things in perspective, just doing a simple 
1131 C<AUTOLOAD> which does nothing but extract the name of the method called
1132 and return it costs about 400% over a normal method call. 
1133
1134 =over 4
1135
1136 =item B<add_before_method_modifier ($method_name, $code)>
1137
1138 This will wrap the method at C<$method_name> and the supplied C<$code> 
1139 will be passed the C<@_> arguments, and called before the original 
1140 method is called. As specified above, the return value of the I<before> 
1141 method modifiers is ignored, and it's ability to modify C<@_> is 
1142 fairly limited. If you need to do either of these things, use an 
1143 C<around> method modifier.
1144
1145 =item B<add_after_method_modifier ($method_name, $code)>
1146
1147 This will wrap the method at C<$method_name> so that the original 
1148 method will be called, it's return values stashed, and then the 
1149 supplied C<$code> will be passed the C<@_> arguments, and called.
1150 As specified above, the return value of the I<after> method 
1151 modifiers is ignored, and it cannot modify the return values of 
1152 the original method. If you need to do either of these things, use an 
1153 C<around> method modifier.
1154
1155 =item B<add_around_method_modifier ($method_name, $code)>
1156
1157 This will wrap the method at C<$method_name> so that C<$code> 
1158 will be called and passed the original method as an extra argument 
1159 at the begining of the C<@_> argument list. This is a variation of 
1160 continuation passing style, where the function prepended to C<@_> 
1161 can be considered a continuation. It is up to C<$code> if it calls 
1162 the original method or not, there is no restriction on what the 
1163 C<$code> can or cannot do.
1164
1165 =back
1166
1167 =head2 Attributes
1168
1169 It should be noted that since there is no one consistent way to define 
1170 the attributes of a class in Perl 5. These methods can only work with 
1171 the information given, and can not easily discover information on 
1172 their own. See L<Class::MOP::Attribute> for more details.
1173
1174 =over 4
1175
1176 =item B<attribute_metaclass>
1177
1178 =item B<get_attribute_map>
1179
1180 =item B<add_attribute ($attribute_name, $attribute_meta_object)>
1181
1182 This stores a C<$attribute_meta_object> in the B<Class::MOP::Class> 
1183 instance associated with the given class, and associates it with 
1184 the C<$attribute_name>. Unlike methods, attributes within the MOP 
1185 are stored as meta-information only. They will be used later to 
1186 construct instances from (see C<construct_instance> above).
1187 More details about the attribute meta-objects can be found in the 
1188 L<Class::MOP::Attribute> or the L<Class::MOP/The Attribute protocol>
1189 section.
1190
1191 It should be noted that any accessor, reader/writer or predicate 
1192 methods which the C<$attribute_meta_object> has will be installed 
1193 into the class at this time.
1194
1195 =item B<has_attribute ($attribute_name)>
1196
1197 Checks to see if this class has an attribute by the name of 
1198 C<$attribute_name> and returns a boolean.
1199
1200 =item B<get_attribute ($attribute_name)>
1201
1202 Returns the attribute meta-object associated with C<$attribute_name>, 
1203 if none is found, it will return undef. 
1204
1205 =item B<remove_attribute ($attribute_name)>
1206
1207 This will remove the attribute meta-object stored at 
1208 C<$attribute_name>, then return the removed attribute meta-object. 
1209
1210 B<NOTE:> 
1211 Removing an attribute will only affect future instances of 
1212 the class, it will not make any attempt to remove the attribute from 
1213 any existing instances of the class.
1214
1215 It should be noted that any accessor, reader/writer or predicate 
1216 methods which the attribute meta-object stored at C<$attribute_name> 
1217 has will be removed from the class at this time. This B<will> make 
1218 these attributes somewhat inaccessable in previously created 
1219 instances. But if you are crazy enough to do this at runtime, then 
1220 you are crazy enough to deal with something like this :).
1221
1222 =item B<get_attribute_list>
1223
1224 This returns a list of attribute names which are defined in the local 
1225 class. If you want a list of all applicable attributes for a class, 
1226 use the C<compute_all_applicable_attributes> method.
1227
1228 =item B<compute_all_applicable_attributes>
1229
1230 This will traverse the inheritance heirachy and return a list of all 
1231 the applicable attributes for this class. It does not construct a 
1232 HASH reference like C<compute_all_applicable_methods> because all 
1233 that same information is discoverable through the attribute 
1234 meta-object itself.
1235
1236 =item B<find_attribute_by_name ($attr_name)>
1237
1238 This method will traverse the inheritance heirachy and find the 
1239 first attribute whose name matches C<$attr_name>, then return it. 
1240 It will return undef if nothing is found.
1241
1242 =back
1243
1244 =head2 Package Variables
1245
1246 Since Perl's classes are built atop the Perl package system, it is 
1247 fairly common to use package scoped variables for things like static 
1248 class variables. The following methods are convience methods for 
1249 the creation and inspection of package scoped variables.
1250
1251 =over 4
1252
1253 =item B<add_package_variable ($variable_name, ?$initial_value)>
1254
1255 Given a C<$variable_name>, which must contain a leading sigil, this 
1256 method will create that variable within the package which houses the 
1257 class. It also takes an optional C<$initial_value>, which must be a 
1258 reference of the same type as the sigil of the C<$variable_name> 
1259 implies.
1260
1261 =item B<get_package_variable ($variable_name)>
1262
1263 This will return a reference to the package variable in 
1264 C<$variable_name>. 
1265
1266 =item B<has_package_variable ($variable_name)>
1267
1268 Returns true (C<1>) if there is a package variable defined for 
1269 C<$variable_name>, and false (C<0>) otherwise.
1270
1271 =item B<remove_package_variable ($variable_name)>
1272
1273 This will attempt to remove the package variable at C<$variable_name>.
1274
1275 =back
1276
1277 =head1 AUTHOR
1278
1279 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1280
1281 =head1 COPYRIGHT AND LICENSE
1282
1283 Copyright 2006 by Infinity Interactive, Inc.
1284
1285 L<http://www.iinteractive.com>
1286
1287 This library is free software; you can redistribute it and/or modify
1288 it under the same terms as Perl itself. 
1289
1290 =cut