s/metaclass/__PACKAGE__->meta/
[gitmo/Moose.git] / lib / Moose.pm
1
2 package Moose;
3
4 use strict;
5 use warnings;
6
7 our $VERSION   = '0.40';
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Scalar::Util 'blessed', 'reftype';
11 use Carp         'confess';
12 use Sub::Name    'subname';
13
14 use Sub::Exporter;
15
16 use Class::MOP 0.51;
17
18 use Moose::Meta::Class;
19 use Moose::Meta::TypeConstraint;
20 use Moose::Meta::TypeConstraint::Class;
21 use Moose::Meta::TypeCoercion;
22 use Moose::Meta::Attribute;
23 use Moose::Meta::Instance;
24
25 use Moose::Meta::Role;
26
27 use Moose::Object;
28 use Moose::Util::TypeConstraints;
29 use Moose::Util ();
30
31 {
32     my $CALLER;
33
34     sub init_meta {
35         my ( $class, $base_class, $metaclass ) = @_;
36         $base_class = 'Moose::Object'      unless defined $base_class;
37         $metaclass  = 'Moose::Meta::Class' unless defined $metaclass;
38
39         confess
40             "The Metaclass $metaclass must be a subclass of Moose::Meta::Class."
41             unless $metaclass->isa('Moose::Meta::Class');
42
43         # make a subtype for each Moose class
44         class_type($class)
45             unless find_type_constraint($class);
46
47         my $meta;
48         if ( $class->can('meta') ) {
49             # NOTE:
50             # this is the case where the metaclass pragma
51             # was used before the 'use Moose' statement to
52             # override a specific class
53             $meta = $class->meta();
54             ( blessed($meta) && $meta->isa('Moose::Meta::Class') )
55               || confess "You already have a &meta function, but it does not return a Moose::Meta::Class";
56         }
57         else {
58             # NOTE:
59             # this is broken currently, we actually need
60             # to allow the possiblity of an inherited
61             # meta, which will not be visible until the
62             # user 'extends' first. This needs to have
63             # more intelligence to it
64             $meta = $metaclass->initialize($class);
65             $meta->add_method(
66                 'meta' => sub {
67                     # re-initialize so it inherits properly
68                     $metaclass->initialize( blessed( $_[0] ) || $_[0] );
69                 }
70             );
71         }
72
73         # make sure they inherit from Moose::Object
74         $meta->superclasses($base_class)
75           unless $meta->superclasses();
76          
77         return $meta;
78     }
79
80     my %exports = (
81         extends => sub {
82             my $class = $CALLER;
83             return subname 'Moose::extends' => sub (@) {
84                 confess "Must derive at least one class" unless @_;
85         
86                 my @supers = @_;
87                 foreach my $super (@supers) {
88                     Class::MOP::load_class($super);
89                 }
90
91                 # this checks the metaclass to make sure
92                 # it is correct, sometimes it can get out
93                 # of sync when the classes are being built
94                 my $meta = $class->meta->_fix_metaclass_incompatability(@supers);
95                 $meta->superclasses(@supers);
96             };
97         },
98         with => sub {
99             my $class = $CALLER;
100             return subname 'Moose::with' => sub (@) {
101                 Moose::Util::apply_all_roles($class->meta, @_)
102             };
103         },
104         has => sub {
105             my $class = $CALLER;
106             return subname 'Moose::has' => sub ($;%) {
107                 my $name    = shift;
108                 die 'Usage: has \'name\' => ( key => value, ... )' if @_ == 1;
109                 my %options = @_;
110                 my $attrs = ( ref($name) eq 'ARRAY' ) ? $name : [ ($name) ];
111                 $class->meta->add_attribute( $_, %options ) for @$attrs;
112             };
113         },
114         before => sub {
115             my $class = $CALLER;
116             return subname 'Moose::before' => sub (@&) {
117                 my $code = pop @_;
118                 my $meta = $class->meta;
119                 $meta->add_before_method_modifier( $_, $code ) for @_;
120             };
121         },
122         after => sub {
123             my $class = $CALLER;
124             return subname 'Moose::after' => sub (@&) {
125                 my $code = pop @_;
126                 my $meta = $class->meta;
127                 $meta->add_after_method_modifier( $_, $code ) for @_;
128             };
129         },
130         around => sub {
131             my $class = $CALLER;
132             return subname 'Moose::around' => sub (@&) {
133                 my $code = pop @_;
134                 my $meta = $class->meta;
135                 $meta->add_around_method_modifier( $_, $code ) for @_;
136             };
137         },
138         super => sub {
139             {
140                 our %SUPER_SLOT;
141                 no strict 'refs';
142                 $SUPER_SLOT{$CALLER} = \*{"${CALLER}::super"};
143             }
144             return subname 'Moose::super' => sub { };
145         },
146         override => sub {
147             my $class = $CALLER;
148             return subname 'Moose::override' => sub ($&) {
149                 my ( $name, $method ) = @_;
150                 $class->meta->add_override_method_modifier( $name => $method );
151             };
152         },
153         inner => sub {
154             {
155                 our %INNER_SLOT;
156                 no strict 'refs';
157                 $INNER_SLOT{$CALLER} = \*{"${CALLER}::inner"};
158             }
159             return subname 'Moose::inner' => sub { };
160         },
161         augment => sub {
162             my $class = $CALLER;
163             return subname 'Moose::augment' => sub (@&) {
164                 my ( $name, $method ) = @_;
165                 $class->meta->add_augment_method_modifier( $name => $method );
166             };
167         },
168         make_immutable => sub {
169             my $class = $CALLER;
170             return subname 'Moose::make_immutable' => sub {
171                 warn "Use of make_immutable() is deprecated, please use metaclass->make_immutable now\n";
172                 $class->meta->make_immutable(@_);
173             };            
174         },        
175         confess => sub {
176             return \&Carp::confess;
177         },
178         blessed => sub {
179             return \&Scalar::Util::blessed;
180         },
181     );
182
183     my $exporter = Sub::Exporter::build_exporter(
184         {
185             exports => \%exports,
186             groups  => { default => [':all'] }
187         }
188     );
189
190     # 1 extra level because it's called by import so there's a layer of indirection
191     sub _get_caller{
192         my $offset = 1;
193         return
194             ref $_[1] && defined $_[1]->{into}
195             ? $_[1]->{into}
196             : ref $_[1] && defined $_[1]->{into_level}
197             ? caller($offset + $_[1]->{into_level})
198             : caller($offset);
199     }
200
201     sub import {
202         $CALLER = _get_caller(@_);
203
204         # this works because both pragmas set $^H (see perldoc perlvar)
205         # which affects the current compilation - i.e. the file who use'd
206         # us - which is why we don't need to do anything special to make
207         # it affect that file rather than this one (which is already compiled)
208
209         strict->import;
210         warnings->import;
211
212         # we should never export to main
213         return if $CALLER eq 'main';
214
215         init_meta( $CALLER, 'Moose::Object' );
216
217         goto $exporter;
218     }
219
220     sub unimport {
221         no strict 'refs';
222         my $class = _get_caller(@_);
223
224         # loop through the exports ...
225         foreach my $name ( keys %exports ) {
226
227             # if we find one ...
228             if ( defined &{ $class . '::' . $name } ) {
229                 my $keyword = \&{ $class . '::' . $name };
230
231                 # make sure it is from Moose
232                 my ($pkg_name) = Class::MOP::get_code_info($keyword);
233                 next if $@;
234                 next if $pkg_name ne 'Moose';
235
236                 # and if it is from Moose then undef the slot
237                 delete ${ $class . '::' }{$name};
238             }
239         }
240     }
241
242 }
243
244 ## make 'em all immutable
245
246 $_->meta->make_immutable(
247     inline_constructor => 0,
248     inline_accessors   => 1,  # these are Class::MOP accessors, so they need inlining
249   )
250   for (
251     'Moose::Meta::Attribute',
252     'Moose::Meta::Class',
253     'Moose::Meta::Instance',
254
255     'Moose::Meta::TypeConstraint',
256     'Moose::Meta::TypeConstraint::Union',
257     'Moose::Meta::TypeConstraint::Parameterized',
258     'Moose::Meta::TypeCoercion',
259
260     'Moose::Meta::Method',
261     'Moose::Meta::Method::Accessor',
262     'Moose::Meta::Method::Constructor',
263     'Moose::Meta::Method::Destructor',
264     'Moose::Meta::Method::Overriden',
265
266     'Moose::Meta::Role',
267     'Moose::Meta::Role::Method',
268     'Moose::Meta::Role::Method::Required',
269   );
270
271 1;
272
273 __END__
274
275 =pod
276
277 =head1 NAME
278
279 Moose - A postmodern object system for Perl 5
280
281 =head1 SYNOPSIS
282
283   package Point;
284   use Moose; # automatically turns on strict and warnings
285
286   has 'x' => (is => 'rw', isa => 'Int');
287   has 'y' => (is => 'rw', isa => 'Int');
288
289   sub clear {
290       my $self = shift;
291       $self->x(0);
292       $self->y(0);
293   }
294
295   package Point3D;
296   use Moose;
297
298   extends 'Point';
299
300   has 'z' => (is => 'rw', isa => 'Int');
301
302   after 'clear' => sub {
303       my $self = shift;
304       $self->z(0);
305   };
306
307 =head1 DESCRIPTION
308
309 Moose is an extension of the Perl 5 object system.
310
311 =head2 Another object system!?!?
312
313 Yes, I know there has been an explosion recently of new ways to
314 build object's in Perl 5, most of them based on inside-out objects
315 and other such things. Moose is different because it is not a new
316 object system for Perl 5, but instead an extension of the existing
317 object system.
318
319 Moose is built on top of L<Class::MOP>, which is a metaclass system
320 for Perl 5. This means that Moose not only makes building normal
321 Perl 5 objects better, but it also provides the power of metaclass
322 programming.
323
324 =head2 Is this for real? Or is this just an experiment?
325
326 Moose is I<based> on the prototypes and experiments I did for the Perl 6
327 meta-model. However, Moose is B<NOT> an experiment/prototype; it is for B<real>.
328
329 =head2 Is this ready for use in production?
330
331 Yes, I believe that it is.
332
333 Moose has been used successfully in production environemnts by several people
334 and companies (including the one I work for). There are Moose applications
335 which have been in production with little or no issue now for well over a year.
336 I consider it highly stable and we are commited to keeping it stable.
337
338 Of course, in the end, you need to make this call yourself. If you have
339 any questions or concerns, please feel free to email me, or even the list
340 or just stop by #moose and ask away.
341
342 =head2 Is Moose just Perl 6 in Perl 5?
343
344 No. While Moose is very much inspired by Perl 6, it is not itself Perl 6.
345 Instead, it is an OO system for Perl 5. I built Moose because I was tired of
346 writing the same old boring Perl 5 OO code, and drooling over Perl 6 OO. So
347 instead of switching to Ruby, I wrote Moose :)
348
349 =head2 Wait, I<post> modern, I thought it was just I<modern>?
350
351 So I was reading Larry Wall's talk from the 1999 Linux World entitled 
352 "Perl, the first postmodern computer language" in which he talks about how 
353 he picked the features for Perl because he thought they were cool and he 
354 threw out the ones that he thought sucked. This got me thinking about how 
355 we have done the same thing in Moose. For Moose, we have "borrowed" features 
356 from Perl 6, CLOS (LISP), Smalltalk, Java, BETA, OCaml, Ruby and more, and 
357 the bits we didn't like (cause they sucked) we tossed aside. So for this 
358 reason (and a few others) I have re-dubbed Moose a I<postmodern> object system.
359
360 Nuff Said. 
361
362 =head2 Moose Extensions
363
364 The L<MooseX::> namespace is the official place to find Moose extensions.
365 There are a number of these modules out on CPAN right now the best way to
366 find them is to search for MooseX:: on search.cpan.org.
367
368 =head1 BUILDING CLASSES WITH MOOSE
369
370 Moose makes every attempt to provide as much convenience as possible during
371 class construction/definition, but still stay out of your way if you want it
372 to. Here are a few items to note when building classes with Moose.
373
374 Unless specified with C<extends>, any class which uses Moose will
375 inherit from L<Moose::Object>.
376
377 Moose will also manage all attributes (including inherited ones) that are
378 defined with C<has>. And (assuming you call C<new>, which is inherited from
379 L<Moose::Object>) this includes properly initializing all instance slots,
380 setting defaults where appropriate, and performing any type constraint checking
381 or coercion.
382
383 =head1 EXPORTED FUNCTIONS
384
385 Moose will export a number of functions into the class's namespace which
386 may then be used to set up the class. These functions all work directly
387 on the current class.
388
389 =over 4
390
391 =item B<meta>
392
393 This is a method which provides access to the current class's metaclass.
394
395 =item B<extends (@superclasses)>
396
397 This function will set the superclass(es) for the current class.
398
399 This approach is recommended instead of C<use base>, because C<use base>
400 actually C<push>es onto the class's C<@ISA>, whereas C<extends> will
401 replace it. This is important to ensure that classes which do not have
402 superclasses still properly inherit from L<Moose::Object>.
403
404 =item B<with (@roles)>
405
406 This will apply a given set of C<@roles> to the local class. Role support
407 is currently under heavy development; see L<Moose::Role> for more details.
408
409 =item B<has $name =E<gt> %options>
410
411 This will install an attribute of a given C<$name> into the current class.
412 The C<%options> are the same as those provided by
413 L<Class::MOP::Attribute>, in addition to the list below which are provided
414 by Moose (L<Moose::Meta::Attribute> to be more specific):
415
416 =over 4
417
418 =item I<is =E<gt> 'rw'|'ro'>
419
420 The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read
421 only). These will create either a read/write accessor or a read-only
422 accessor respectively, using the same name as the C<$name> of the attribute.
423
424 If you need more control over how your accessors are named, you can use the
425 I<reader>, I<writer> and I<accessor> options inherited from
426 L<Class::MOP::Attribute>.
427
428 =item I<isa =E<gt> $type_name>
429
430 The I<isa> option uses Moose's type constraint facilities to set up runtime
431 type checking for this attribute. Moose will perform the checks during class
432 construction, and within any accessors. The C<$type_name> argument must be a
433 string. The string may be either a class name or a type defined using
434 Moose's type definition features. (Refer to L<Moose::Util::TypeConstraints>
435 for information on how to define a new type, and how to retrieve type meta-data).
436
437 =item I<coerce =E<gt> (1|0)>
438
439 This will attempt to use coercion with the supplied type constraint to change
440 the value passed into any accessors or constructors. You B<must> have supplied
441 a type constraint in order for this to work. See L<Moose::Cookbook::Recipe5>
442 for an example.
443
444 =item I<does =E<gt> $role_name>
445
446 This will accept the name of a role which the value stored in this attribute
447 is expected to have consumed.
448
449 =item I<required =E<gt> (1|0)>
450
451 This marks the attribute as being required. This means a I<defined> value must be
452 supplied during class construction, and the attribute may never be set to
453 C<undef> with an accessor.
454
455 =item I<weak_ref =E<gt> (1|0)>
456
457 This will tell the class to store the value of this attribute as a weakened
458 reference. If an attribute is a weakened reference, it B<cannot> also be
459 coerced.
460
461 =item I<lazy =E<gt> (1|0)>
462
463 This will tell the class to not create this slot until absolutely necessary.
464 If an attribute is marked as lazy it B<must> have a default supplied.
465
466 =item I<auto_deref =E<gt> (1|0)>
467
468 This tells the accessor whether to automatically dereference the value returned.
469 This is only legal if your C<isa> option is either C<ArrayRef> or C<HashRef>.
470
471 =item I<metaclass =E<gt> $metaclass_name>
472
473 This tells the class to use a custom attribute metaclass for this particular
474 attribute. Custom attribute metaclasses are useful for extending the
475 capabilities of the I<has> keyword: they are the simplest way to extend the MOP,
476 but they are still a fairly advanced topic and too much to cover here. I will
477 try and write a recipe on them soon.
478
479 The default behavior here is to just load C<$metaclass_name>; however, we also
480 have a way to alias to a shorter name. This will first look to see if
481 B<Moose::Meta::Attribute::Custom::$metaclass_name> exists. If it does, Moose
482 will then check to see if that has the method C<register_implementation>, which
483 should return the actual name of the custom attribute metaclass. If there is no
484 C<register_implementation> method, it will fall back to using
485 B<Moose::Meta::Attribute::Custom::$metaclass_name> as the metaclass name.
486
487 =item I<trigger =E<gt> $code>
488
489 The I<trigger> option is a CODE reference which will be called after the value of
490 the attribute is set. The CODE ref will be passed the instance itself, the
491 updated value and the attribute meta-object (this is for more advanced fiddling
492 and can typically be ignored). You B<cannot> have a trigger on a read-only
493 attribute.
494
495 =item I<handles =E<gt> ARRAY | HASH | REGEXP | ROLE | CODE>
496
497 The I<handles> option provides Moose classes with automated delegation features.
498 This is a pretty complex and powerful option. It accepts many different option
499 formats, each with its own benefits and drawbacks.
500
501 B<NOTE:> This feature is no longer experimental, but it may still have subtle
502 bugs lurking in the deeper corners. If you think you have found a bug, you
503 probably have, so please report it to me right away.
504
505 B<NOTE:> The class being delegated to does not need to be a Moose based class,
506 which is why this feature is especially useful when wrapping non-Moose classes.
507
508 All I<handles> option formats share the following traits:
509
510 You cannot override a locally defined method with a delegated method; an
511 exception will be thrown if you try. That is to say, if you define C<foo> in
512 your class, you cannot override it with a delegated C<foo>. This is almost never
513 something you would want to do, and if it is, you should do it by hand and not
514 use Moose.
515
516 You cannot override any of the methods found in Moose::Object, or the C<BUILD>
517 and C<DEMOLISH> methods. These will not throw an exception, but will silently
518 move on to the next method in the list. My reasoning for this is that you would
519 almost never want to do this, since it usually breaks your class. As with
520 overriding locally defined methods, if you do want to do this, you should do it
521 manually, not with Moose.
522
523 You do not I<need> to have a reader (or accessor) for the attribute in order 
524 to delegate to it. Moose will create a means of accessing the value for you, 
525 however this will be several times B<less> efficient then if you had given 
526 the attribute a reader (or accessor) to use.
527
528 Below is the documentation for each option format:
529
530 =over 4
531
532 =item C<ARRAY>
533
534 This is the most common usage for I<handles>. You basically pass a list of
535 method names to be delegated, and Moose will install a delegation method
536 for each one.
537
538 =item C<HASH>
539
540 This is the second most common usage for I<handles>. Instead of a list of
541 method names, you pass a HASH ref where each key is the method name you
542 want installed locally, and its value is the name of the original method
543 in the class being delegated to.
544
545 This can be very useful for recursive classes like trees. Here is a
546 quick example (soon to be expanded into a Moose::Cookbook::Recipe):
547
548   package Tree;
549   use Moose;
550
551   has 'node' => (is => 'rw', isa => 'Any');
552
553   has 'children' => (
554       is      => 'ro',
555       isa     => 'ArrayRef',
556       default => sub { [] }
557   );
558
559   has 'parent' => (
560       is          => 'rw',
561       isa         => 'Tree',
562       weak_ref => 1,
563       handles     => {
564           parent_node => 'node',
565           siblings    => 'children',
566       }
567   );
568
569 In this example, the Tree package gets C<parent_node> and C<siblings> methods,
570 which delegate to the C<node> and C<children> methods (respectively) of the Tree
571 instance stored in the C<parent> slot.
572
573 =item C<REGEXP>
574
575 The regexp option works very similar to the ARRAY option, except that it builds
576 the list of methods for you. It starts by collecting all possible methods of the
577 class being delegated to, then filters that list using the regexp supplied here.
578
579 B<NOTE:> An I<isa> option is required when using the regexp option format. This
580 is so that we can determine (at compile time) the method list from the class.
581 Without an I<isa> this is just not possible.
582
583 =item C<ROLE>
584
585 With the role option, you specify the name of a role whose "interface" then
586 becomes the list of methods to handle. The "interface" can be defined as; the
587 methods of the role and any required methods of the role. It should be noted
588 that this does B<not> include any method modifiers or generated attribute
589 methods (which is consistent with role composition).
590
591 =item C<CODE>
592
593 This is the option to use when you really want to do something funky. You should
594 only use it if you really know what you are doing, as it involves manual
595 metaclass twiddling.
596
597 This takes a code reference, which should expect two arguments. The first is the
598 attribute meta-object this I<handles> is attached to. The second is the
599 metaclass of the class being delegated to. It expects you to return a hash (not
600 a HASH ref) of the methods you want mapped.
601
602 =back
603
604 =back
605
606 =item B<has +$name =E<gt> %options>
607
608 This is variation on the normal attibute creator C<has> which allows you to
609 clone and extend an attribute from a superclass or from a role. Here is an 
610 example of the superclass usage:
611
612   package Foo;
613   use Moose;
614
615   has 'message' => (
616       is      => 'rw',
617       isa     => 'Str',
618       default => 'Hello, I am a Foo'
619   );
620
621   package My::Foo;
622   use Moose;
623
624   extends 'Foo';
625
626   has '+message' => (default => 'Hello I am My::Foo');
627
628 What is happening here is that B<My::Foo> is cloning the C<message> attribute
629 from its parent class B<Foo>, retaining the C<is =E<gt> 'rw'> and C<isa =E<gt>
630 'Str'> characteristics, but changing the value in C<default>.
631
632 Here is another example, but within the context of a role:
633
634   package Foo::Role;
635   use Moose::Role;
636   
637   has 'message' => (
638       is      => 'rw',
639       isa     => 'Str',
640       default => 'Hello, I am a Foo'
641   );
642   
643   package My::Foo;
644   use Moose;
645   
646   with 'Foo::Role';
647   
648   has '+message' => (default => 'Hello I am My::Foo');
649
650 In this case, we are basically taking the attribute which the role supplied 
651 and altering it within the bounds of this feature. 
652
653 Aside from where the attributes come from (one from superclass, the other 
654 from a role), this feature works exactly the same. This feature is restricted 
655 somewhat, so as to try and force at least I<some> sanity into it. You are only 
656 allowed to change the following attributes:
657
658 =over 4
659
660 =item I<default>
661
662 Change the default value of an attribute.
663
664 =item I<coerce>
665
666 Change whether the attribute attempts to coerce a value passed to it.
667
668 =item I<required>
669
670 Change if the attribute is required to have a value.
671
672 =item I<documentation>
673
674 Change the documentation string associated with the attribute.
675
676 =item I<lazy>
677
678 Change if the attribute lazily initializes the slot.
679
680 =item I<isa>
681
682 You I<are> allowed to change the type, B<if and only if> the new type is a
683 subtype of the old type.
684
685 =item I<handles>
686
687 You are allowed to B<add> a new C<handles> definition, but you are B<not>
688 allowed to I<change> one.
689
690 =item I<builder>
691
692 You are allowed to B<add> a new C<builder> definition, but you are B<not>
693 allowed to I<change> one.
694
695 =back
696
697 =item B<before $name|@names =E<gt> sub { ... }>
698
699 =item B<after $name|@names =E<gt> sub { ... }>
700
701 =item B<around $name|@names =E<gt> sub { ... }>
702
703 This three items are syntactic sugar for the before, after, and around method
704 modifier features that L<Class::MOP> provides. More information on these may be
705 found in the L<Class::MOP::Class documentation|Class::MOP::Class/"Method
706 Modifiers"> for now.
707
708 =item B<super>
709
710 The keyword C<super> is a no-op when called outside of an C<override> method. In
711 the context of an C<override> method, it will call the next most appropriate
712 superclass method with the same arguments as the original method.
713
714 =item B<override ($name, &sub)>
715
716 An C<override> method is a way of explicitly saying "I am overriding this
717 method from my superclass". You can call C<super> within this method, and
718 it will work as expected. The same thing I<can> be accomplished with a normal
719 method call and the C<SUPER::> pseudo-package; it is really your choice.
720
721 =item B<inner>
722
723 The keyword C<inner>, much like C<super>, is a no-op outside of the context of
724 an C<augment> method. You can think of C<inner> as being the inverse of
725 C<super>; the details of how C<inner> and C<augment> work is best described in
726 the L<Moose::Cookbook>.
727
728 =item B<augment ($name, &sub)>
729
730 An C<augment> method, is a way of explicitly saying "I am augmenting this
731 method from my superclass". Once again, the details of how C<inner> and
732 C<augment> work is best described in the L<Moose::Cookbook>.
733
734 =item B<confess>
735
736 This is the C<Carp::confess> function, and exported here because I use it
737 all the time. This feature may change in the future, so you have been warned.
738
739 =item B<blessed>
740
741 This is the C<Scalar::Util::blessed> function, it is exported here because I
742 use it all the time. It is highly recommended that this is used instead of
743 C<ref> anywhere you need to test for an object's class name.
744
745 =back
746
747 =head1 UNIMPORTING FUNCTIONS
748
749 =head2 B<unimport>
750
751 Moose offers a way to remove the keywords it exports, through the C<unimport>
752 method. You simply have to say C<no Moose> at the bottom of your code for this
753 to work. Here is an example:
754
755     package Person;
756     use Moose;
757
758     has 'first_name' => (is => 'rw', isa => 'Str');
759     has 'last_name'  => (is => 'rw', isa => 'Str');
760
761     sub full_name {
762         my $self = shift;
763         $self->first_name . ' ' . $self->last_name
764     }
765
766     no Moose; # keywords are removed from the Person package
767
768 =head1 EXTENDING AND EMBEDDING MOOSE
769
770 Moose also offers some options for extending or embedding it into your own
771 framework. The basic premise is to have something that sets up your class'
772 metaclass and export the moose declarators (C<has>, C<with>, C<extends>,...).
773 Here is an example:
774
775     package MyFramework;
776     use Moose;
777
778     sub import {
779         my $CALLER = caller();
780
781         strict->import;
782         warnings->import;
783
784         # we should never export to main
785         return if $CALLER eq 'main';
786         Moose::init_meta( $CALLER, 'MyFramework::Base' );
787         Moose->import({into => $CALLER});
788
789         # Do my custom framework stuff
790
791         return 1;
792     }
793
794 =head2 B<import>
795
796 Moose's C<import> method supports the L<Sub::Exporter> form of C<{into =E<gt> $pkg}>
797 and C<{into_level =E<gt> 1}>
798
799 =head2 B<init_meta ($class, $baseclass, $metaclass)>
800
801 Moose does some boot strapping: it creates a metaclass object for your class,
802 and then injects a C<meta> accessor into your class to retrieve it. Then it
803 sets your baseclass to Moose::Object or the value you pass in unless you already
804 have one. This is all done via C<init_meta> which takes the name of your class
805 and optionally a baseclass and a metaclass as arguments.
806
807 =head1 CAVEATS
808
809 =over 4
810
811 =item *
812
813 It should be noted that C<super> and C<inner> B<cannot> be used in the same
814 method. However, they may be combined within the same class hierarchy; see
815 F<t/014_override_augment_inner_super.t> for an example.
816
817 The reason for this is that C<super> is only valid within a method
818 with the C<override> modifier, and C<inner> will never be valid within an
819 C<override> method. In fact, C<augment> will skip over any C<override> methods
820 when searching for its appropriate C<inner>.
821
822 This might seem like a restriction, but I am of the opinion that keeping these
823 two features separate (yet interoperable) actually makes them easy to use, since
824 their behavior is then easier to predict. Time will tell whether I am right or
825 not (UPDATE: so far so good).
826
827 =back
828
829 =head1 ACKNOWLEDGEMENTS
830
831 =over 4
832
833 =item I blame Sam Vilain for introducing me to the insanity that is meta-models.
834
835 =item I blame Audrey Tang for then encouraging my meta-model habit in #perl6.
836
837 =item Without Yuval "nothingmuch" Kogman this module would not be possible,
838 and it certainly wouldn't have this name ;P
839
840 =item The basis of the TypeContraints module was Rob Kinyon's idea
841 originally, I just ran with it.
842
843 =item Thanks to mst & chansen and the whole #moose poose for all the
844 early ideas/feature-requests/encouragement/bug-finding.
845
846 =item Thanks to David "Theory" Wheeler for meta-discussions and spelling fixes.
847
848 =back
849
850 =head1 SEE ALSO
851
852 =over 4
853
854 =item L<http://www.iinteractive.com/moose>
855
856 This is the official web home of Moose, it contains links to our public SVN repo
857 as well as links to a number of talks and articles on Moose and Moose related
858 technologies.
859
860 =item L<Class::MOP> documentation
861
862 =item The #moose channel on irc.perl.org
863
864 =item The Moose mailing list - moose@perl.org
865
866 =item Moose stats on ohloh.net - L<http://www.ohloh.net/projects/5788>
867
868 =item Several Moose extension modules in the L<MooseX::> namespace.
869
870 =back
871
872 =head2 Papers
873
874 =over 4
875
876 =item L<http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf>
877
878 This paper (suggested by lbr on #moose) was what lead to the implementation
879 of the C<super>/C<override> and C<inner>/C<augment> features. If you really
880 want to understand them, I suggest you read this.
881
882 =back
883
884 =head1 BUGS
885
886 All complex software has bugs lurking in it, and this module is no
887 exception. If you find a bug please either email me, or add the bug
888 to cpan-RT.
889
890 =head1 AUTHOR
891
892 Stevan Little E<lt>stevan@iinteractive.comE<gt>
893
894 B<with contributions from:>
895
896 Aankhen
897
898 Adam (Alias) Kennedy
899
900 Anders (Debolaz) Nor Berle
901
902 Nathan (kolibre) Gray
903
904 Christian (chansen) Hansen
905
906 Hans Dieter (confound) Pearcey
907
908 Eric (ewilhelm) Wilhelm
909
910 Guillermo (groditi) Roditi
911
912 Jess (castaway) Robinson
913
914 Matt (mst) Trout
915
916 Robert (phaylon) Sedlacek
917
918 Robert (rlb3) Boone
919
920 Scott (konobi) McWhirter
921
922 Shlomi (rindolf) Fish
923
924 Yuval (nothingmuch) Kogman
925
926 Chris (perigrin) Prather
927
928 Jonathan (jrockway) Rockway
929
930 Piotr (dexter) Roszatycki
931
932 Sam (mugwump) Vilain
933
934 Shawn (sartak) Moore
935
936 ... and many other #moose folks
937
938 =head1 COPYRIGHT AND LICENSE
939
940 Copyright 2006-2008 by Infinity Interactive, Inc.
941
942 L<http://www.iinteractive.com>
943
944 This library is free software; you can redistribute it and/or modify
945 it under the same terms as Perl itself.
946
947 =cut