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