remove old deprecated code
[gitmo/Moose.git] / lib / Moose.pm
1 package Moose;
2 use strict;
3 use warnings;
4
5 use 5.008;
6
7 use Scalar::Util 'blessed';
8 use Carp         'confess';
9
10 use Moose::Deprecated;
11 use Moose::Exporter;
12
13 use Class::MOP;
14
15 BEGIN {
16     die "Class::MOP version $Moose::VERSION required--this is version $Class::MOP::VERSION"
17         if $Moose::VERSION && $Class::MOP::VERSION ne $Moose::VERSION;
18 }
19
20 use Moose::Meta::Class;
21 use Moose::Meta::TypeConstraint;
22 use Moose::Meta::TypeCoercion;
23 use Moose::Meta::Attribute;
24 use Moose::Meta::Instance;
25
26 use Moose::Object;
27
28 use Moose::Meta::Role;
29 use Moose::Meta::Role::Composite;
30 use Moose::Meta::Role::Application;
31 use Moose::Meta::Role::Application::RoleSummation;
32 use Moose::Meta::Role::Application::ToClass;
33 use Moose::Meta::Role::Application::ToRole;
34 use Moose::Meta::Role::Application::ToInstance;
35
36 use Moose::Util::TypeConstraints;
37 use Moose::Util ();
38
39 use Moose::Meta::Attribute::Native;
40
41 sub throw_error {
42     # FIXME This
43     shift;
44     goto \&confess
45 }
46
47 sub extends {
48     my $meta = shift;
49
50     Moose->throw_error("Must derive at least one class") unless @_;
51
52     # this checks the metaclass to make sure
53     # it is correct, sometimes it can get out
54     # of sync when the classes are being built
55     $meta->superclasses(@_);
56 }
57
58 sub with {
59     Moose::Util::apply_all_roles(shift, @_);
60 }
61
62 sub has {
63     my $meta = shift;
64     my $name = shift;
65
66     Moose->throw_error('Usage: has \'name\' => ( key => value, ... )')
67         if @_ % 2 == 1;
68
69     my %options = ( definition_context => Moose::Util::_caller_info(), @_ );
70     my $attrs = ( ref($name) eq 'ARRAY' ) ? $name : [ ($name) ];
71     $meta->add_attribute( $_, %options ) for @$attrs;
72 }
73
74 sub before {
75     Moose::Util::add_method_modifier(shift, 'before', \@_);
76 }
77
78 sub after {
79     Moose::Util::add_method_modifier(shift, 'after', \@_);
80 }
81
82 sub around {
83     Moose::Util::add_method_modifier(shift, 'around', \@_);
84 }
85
86 our $SUPER_PACKAGE;
87 our $SUPER_BODY;
88 our @SUPER_ARGS;
89
90 sub super {
91     # This check avoids a recursion loop - see
92     # t/bugs/super_recursion.t
93     return if defined $SUPER_PACKAGE && $SUPER_PACKAGE ne caller();
94     return unless $SUPER_BODY; $SUPER_BODY->(@SUPER_ARGS);
95 }
96
97 sub override {
98     my $meta = shift;
99     my ( $name, $method ) = @_;
100     $meta->add_override_method_modifier( $name => $method );
101 }
102
103 sub inner {
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 sub augment {
118     my $meta = shift;
119     my ( $name, $method ) = @_;
120     $meta->add_augment_method_modifier( $name => $method );
121 }
122
123 Moose::Exporter->setup_import_methods(
124     with_meta => [
125         qw( extends with has before after around override augment )
126     ],
127     as_is => [
128         qw( super inner ),
129         \&Carp::confess,
130         \&Scalar::Util::blessed,
131     ],
132 );
133
134 sub init_meta {
135     shift;
136     my %args = @_;
137
138     my $class = $args{for_class}
139         or Moose->throw_error("Cannot call init_meta without specifying a for_class");
140     my $base_class = $args{base_class} || 'Moose::Object';
141     my $metaclass  = $args{metaclass}  || 'Moose::Meta::Class';
142     my $meta_name  = exists $args{meta_name} ? $args{meta_name} : 'meta';
143
144     Moose->throw_error("The Metaclass $metaclass must be a subclass of Moose::Meta::Class.")
145         unless $metaclass->isa('Moose::Meta::Class');
146
147     # make a subtype for each Moose class
148     class_type($class)
149         unless find_type_constraint($class);
150
151     my $meta;
152
153     if ( $meta = Class::MOP::get_metaclass_by_name($class) ) {
154         unless ( $meta->isa("Moose::Meta::Class") ) {
155             my $error_message = "$class already has a metaclass, but it does not inherit $metaclass ($meta).";
156             if ( $meta->isa('Moose::Meta::Role') ) {
157                 Moose->throw_error($error_message . ' You cannot make the same thing a role and a class. Remove either Moose or Moose::Role.');
158             } else {
159                 Moose->throw_error($error_message);
160             }
161         }
162     } else {
163         # no metaclass
164
165         # now we check whether our ancestors have metaclass, and if so borrow that
166         my ( undef, @isa ) = @{ mro::get_linear_isa($class) };
167
168         foreach my $ancestor ( @isa ) {
169             my $ancestor_meta = Class::MOP::get_metaclass_by_name($ancestor) || next;
170
171             my $ancestor_meta_class = $ancestor_meta->_real_ref_name;
172
173             # if we have an ancestor metaclass that inherits $metaclass, we use
174             # that. This is like _fix_metaclass_incompatibility, but we can do it now.
175
176             # the case of having an ancestry is not very common, but arises in
177             # e.g. Reaction
178             unless ( $metaclass->isa( $ancestor_meta_class ) ) {
179                 if ( $ancestor_meta_class->isa($metaclass) ) {
180                     $metaclass = $ancestor_meta_class;
181                 }
182             }
183         }
184
185         $meta = $metaclass->initialize($class);
186     }
187
188     if (defined $meta_name) {
189         # also check for inherited non moose 'meta' method?
190         my $existing = $meta->get_method($meta_name);
191         if ($existing && !$existing->isa('Class::MOP::Method::Meta')) {
192             Carp::cluck "Moose is overwriting an existing method named "
193                       . "$meta_name in class $class with a method "
194                       . "which returns the class's metaclass. If this is "
195                       . "actually what you want, you should remove the "
196                       . "existing method, otherwise, you should rename or "
197                       . "disable this generated method using the "
198                       . "'-meta_name' option to 'use Moose'.";
199         }
200         $meta->_add_meta_method($meta_name);
201     }
202
203     # make sure they inherit from Moose::Object
204     $meta->superclasses($base_class)
205       unless $meta->superclasses();
206
207     return $meta;
208 }
209
210 # This may be used in some older MooseX extensions.
211 sub _get_caller {
212     goto &Moose::Exporter::_get_caller;
213 }
214
215 ## make 'em all immutable
216
217 $_->make_immutable(
218     inline_constructor => 1,
219     constructor_name   => "_new",
220     # these are Class::MOP accessors, so they need inlining
221     inline_accessors => 1
222     ) for grep { $_->is_mutable }
223     map { $_->meta }
224     qw(
225     Moose::Meta::Attribute
226     Moose::Meta::Class
227     Moose::Meta::Instance
228
229     Moose::Meta::TypeCoercion
230     Moose::Meta::TypeCoercion::Union
231
232     Moose::Meta::Method
233     Moose::Meta::Method::Constructor
234     Moose::Meta::Method::Destructor
235     Moose::Meta::Method::Overridden
236     Moose::Meta::Method::Augmented
237
238     Moose::Meta::Role
239     Moose::Meta::Role::Attribute
240     Moose::Meta::Role::Method
241     Moose::Meta::Role::Method::Required
242     Moose::Meta::Role::Method::Conflicting
243
244     Moose::Meta::Role::Composite
245
246     Moose::Meta::Role::Application
247     Moose::Meta::Role::Application::RoleSummation
248     Moose::Meta::Role::Application::ToClass
249     Moose::Meta::Role::Application::ToRole
250     Moose::Meta::Role::Application::ToInstance
251 );
252
253 $_->make_immutable(
254     inline_constructor => 0,
255     constructor_name   => undef,
256     # these are Class::MOP accessors, so they need inlining
257     inline_accessors => 1
258     ) for grep { $_->is_mutable }
259     map { $_->meta }
260     qw(
261     Moose::Meta::Method::Accessor
262     Moose::Meta::Method::Delegation
263     Moose::Meta::Mixin::AttributeCore
264 );
265
266 1;
267
268 # ABSTRACT: A postmodern object system for Perl 5
269
270 __END__
271
272 =pod
273
274 =head1 SYNOPSIS
275
276   package Point;
277   use Moose; # automatically turns on strict and warnings
278
279   has 'x' => (is => 'rw', isa => 'Int');
280   has 'y' => (is => 'rw', isa => 'Int');
281
282   sub clear {
283       my $self = shift;
284       $self->x(0);
285       $self->y(0);
286   }
287
288   package Point3D;
289   use Moose;
290
291   extends 'Point';
292
293   has 'z' => (is => 'rw', isa => 'Int');
294
295   after 'clear' => sub {
296       my $self = shift;
297       $self->z(0);
298   };
299
300 =head1 DESCRIPTION
301
302 Moose is an extension of the Perl 5 object system.
303
304 The main goal of Moose is to make Perl 5 Object Oriented programming
305 easier, more consistent, and less tedious. With Moose you can think
306 more about what you want to do and less about the mechanics of OOP.
307
308 Additionally, Moose is built on top of L<Class::MOP>, which is a
309 metaclass system for Perl 5. This means that Moose not only makes
310 building normal Perl 5 objects better, but it provides the power of
311 metaclass programming as well.
312
313 =head2 New to Moose?
314
315 If you're new to Moose, the best place to start is the
316 L<Moose::Manual> docs, followed by the L<Moose::Cookbook>. The intro
317 will show you what Moose is, and how it makes Perl 5 OO better.
318
319 The cookbook recipes on Moose basics will get you up to speed with
320 many of Moose's features quickly. Once you have an idea of what Moose
321 can do, you can use the API documentation to get more detail on
322 features which interest you.
323
324 =head2 Moose Extensions
325
326 The C<MooseX::> namespace is the official place to find Moose extensions.
327 These extensions can be found on the CPAN.  The easiest way to find them
328 is to search for them (L<http://search.cpan.org/search?query=MooseX::>),
329 or to examine L<Task::Moose> which aims to keep an up-to-date, easily
330 installable list of Moose extensions.
331
332 =head1 TRANSLATIONS
333
334 Much of the Moose documentation has been translated into other languages.
335
336 =over 4
337
338 =item Japanese
339
340 Japanese docs can be found at
341 L<http://perldoc.perlassociation.org/pod/Moose-Doc-JA/index.html>. The
342 source POD files can be found in GitHub:
343 L<http://github.com/jpa/Moose-Doc-JA>
344
345 =back
346
347 =head1 BUILDING CLASSES WITH MOOSE
348
349 Moose makes every attempt to provide as much convenience as possible during
350 class construction/definition, but still stay out of your way if you want it
351 to. Here are a few items to note when building classes with Moose.
352
353 When you C<use Moose>, Moose will set the class's parent class to
354 L<Moose::Object>, I<unless> the class using Moose already has a parent
355 class. In addition, specifying a parent with C<extends> will change the parent
356 class.
357
358 Moose will also manage all attributes (including inherited ones) that are
359 defined with C<has>. And (assuming you call C<new>, which is inherited from
360 L<Moose::Object>) this includes properly initializing all instance slots,
361 setting defaults where appropriate, and performing any type constraint checking
362 or coercion.
363
364 =head1 PROVIDED METHODS
365
366 Moose provides a number of methods to all your classes, mostly through the
367 inheritance of L<Moose::Object>. There is however, one exception.
368
369 =over 4
370
371 =item B<meta>
372
373 This is a method which provides access to the current class's metaclass.
374
375 =back
376
377 =head1 EXPORTED FUNCTIONS
378
379 Moose will export a number of functions into the class's namespace which
380 may then be used to set up the class. These functions all work directly
381 on the current class.
382
383 =over 4
384
385 =item B<extends (@superclasses)>
386
387 This function will set the superclass(es) for the current class.
388
389 This approach is recommended instead of C<use base>, because C<use base>
390 actually C<push>es onto the class's C<@ISA>, whereas C<extends> will
391 replace it. This is important to ensure that classes which do not have
392 superclasses still properly inherit from L<Moose::Object>.
393
394 Each superclass can be followed by a hash reference with options. Currently,
395 only L<-version|Class::MOP/Class Loading Options> is recognized:
396
397     extends 'My::Parent'      => { -version => 0.01 },
398             'My::OtherParent' => { -version => 0.03 };
399
400 An exception will be thrown if the version requirements are not
401 satisfied.
402
403 =item B<with (@roles)>
404
405 This will apply a given set of C<@roles> to the local class.
406
407 Like with C<extends>, each specified role can be followed by a hash
408 reference with a L<-version|Class::MOP/Class Loading Options> option:
409
410     with 'My::Role'      => { -version => 0.32 },
411          'My::Otherrole' => { -version => 0.23 };
412
413 The specified version requirements must be satisfied, otherwise an
414 exception will be thrown.
415
416 If your role takes options or arguments, they can be passed along in the
417 hash reference as well.
418
419 =item B<has $name|@$names =E<gt> %options>
420
421 This will install an attribute of a given C<$name> into the current class. If
422 the first parameter is an array reference, it will create an attribute for
423 every C<$name> in the list. The C<%options> will be passed to the constructor
424 for L<Moose::Meta::Attribute> (which inherits from L<Class::MOP::Attribute>),
425 so the full documentation for the valid options can be found there. These are
426 the most commonly used options:
427
428 =over 4
429
430 =item I<is =E<gt> 'rw'|'ro'>
431
432 The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read
433 only). These will create either a read/write accessor or a read-only
434 accessor respectively, using the same name as the C<$name> of the attribute.
435
436 If you need more control over how your accessors are named, you can
437 use the L<reader|Class::MOP::Attribute/reader>,
438 L<writer|Class::MOP::Attribute/writer> and
439 L<accessor|Class::MOP::Attribute/accessor> options inherited from
440 L<Class::MOP::Attribute>, however if you use those, you won't need the
441 I<is> option.
442
443 =item I<isa =E<gt> $type_name>
444
445 The I<isa> option uses Moose's type constraint facilities to set up runtime
446 type checking for this attribute. Moose will perform the checks during class
447 construction, and within any accessors. The C<$type_name> argument must be a
448 string. The string may be either a class name or a type defined using
449 Moose's type definition features. (Refer to L<Moose::Util::TypeConstraints>
450 for information on how to define a new type, and how to retrieve type meta-data).
451
452 =item I<coerce =E<gt> (1|0)>
453
454 This will attempt to use coercion with the supplied type constraint to change
455 the value passed into any accessors or constructors. You B<must> supply a type
456 constraint, and that type constraint B<must> define a coercion. See
457 L<Moose::Cookbook::Basics::Recipe5> for an example.
458
459 =item I<does =E<gt> $role_name>
460
461 This will accept the name of a role which the value stored in this attribute
462 is expected to have consumed.
463
464 =item I<required =E<gt> (1|0)>
465
466 This marks the attribute as being required. This means a value must be
467 supplied during class construction, I<or> the attribute must be lazy
468 and have either a default or a builder. Note that c<required> does not
469 say anything about the attribute's value, which can be C<undef>.
470
471 =item I<weak_ref =E<gt> (1|0)>
472
473 This will tell the class to store the value of this attribute as a weakened
474 reference. If an attribute is a weakened reference, it B<cannot> also be
475 coerced. Note that when a weak ref expires, the attribute's value becomes
476 undefined, and is still considered to be set for purposes of predicate,
477 default, etc.
478
479 =item I<lazy =E<gt> (1|0)>
480
481 This will tell the class to not create this slot until absolutely necessary.
482 If an attribute is marked as lazy it B<must> have a default or builder
483 supplied.
484
485 =item I<trigger =E<gt> $code>
486
487 The I<trigger> option is a CODE reference which will be called after
488 the value of the attribute is set. The CODE ref is passed the
489 instance itself, the updated value, and the original value if the
490 attribute was already set.
491
492 You B<can> have a trigger on a read-only attribute.
493
494 B<NOTE:> Triggers will only fire when you B<assign> to the attribute,
495 either in the constructor, or using the writer. Default and built values will
496 B<not> cause the trigger to be fired.
497
498 =item I<handles =E<gt> ARRAY | HASH | REGEXP | ROLE | ROLETYPE | DUCKTYPE | CODE>
499
500 The I<handles> option provides Moose classes with automated delegation features.
501 This is a pretty complex and powerful option. It accepts many different option
502 formats, each with its own benefits and drawbacks.
503
504 B<NOTE:> The class being delegated to does not need to be a Moose based class,
505 which is why this feature is especially useful when wrapping non-Moose classes.
506
507 All I<handles> option formats share the following traits:
508
509 You cannot override a locally defined method with a delegated method; an
510 exception will be thrown if you try. That is to say, if you define C<foo> in
511 your class, you cannot override it with a delegated C<foo>. This is almost never
512 something you would want to do, and if it is, you should do it by hand and not
513 use Moose.
514
515 You cannot override any of the methods found in Moose::Object, or the C<BUILD>
516 and C<DEMOLISH> methods. These will not throw an exception, but will silently
517 move on to the next method in the list. My reasoning for this is that you would
518 almost never want to do this, since it usually breaks your class. As with
519 overriding locally defined methods, if you do want to do this, you should do it
520 manually, not with Moose.
521
522 You do not I<need> to have a reader (or accessor) for the attribute in order
523 to delegate to it. Moose will create a means of accessing the value for you,
524 however this will be several times B<less> efficient then if you had given
525 the attribute a reader (or accessor) to use.
526
527 Below is the documentation for each option format:
528
529 =over 4
530
531 =item C<ARRAY>
532
533 This is the most common usage for I<handles>. You basically pass a list of
534 method names to be delegated, and Moose will install a delegation method
535 for each one.
536
537 =item C<HASH>
538
539 This is the second most common usage for I<handles>. Instead of a list of
540 method names, you pass a HASH ref where each key is the method name you
541 want installed locally, and its value is the name of the original method
542 in the class being delegated to.
543
544 This can be very useful for recursive classes like trees. Here is a
545 quick example (soon to be expanded into a Moose::Cookbook recipe):
546
547   package Tree;
548   use Moose;
549
550   has 'node' => (is => 'rw', isa => 'Any');
551
552   has 'children' => (
553       is      => 'ro',
554       isa     => 'ArrayRef',
555       default => sub { [] }
556   );
557
558   has 'parent' => (
559       is          => 'rw',
560       isa         => 'Tree',
561       weak_ref    => 1,
562       handles     => {
563           parent_node => 'node',
564           siblings    => 'children',
565       }
566   );
567
568 In this example, the Tree package gets C<parent_node> and C<siblings> methods,
569 which delegate to the C<node> and C<children> methods (respectively) of the Tree
570 instance stored in the C<parent> slot.
571
572 You may also use an array reference to curry arguments to the original method.
573
574   has 'thing' => (
575       ...
576       handles => { set_foo => [ set => 'foo' ] },
577   );
578
579   # $self->set_foo(...) calls $self->thing->set('foo', ...)
580
581 The first element of the array reference is the original method name, and the
582 rest is a list of curried arguments.
583
584 =item C<REGEXP>
585
586 The regexp option works very similar to the ARRAY option, except that it builds
587 the list of methods for you. It starts by collecting all possible methods of the
588 class being delegated to, then filters that list using the regexp supplied here.
589
590 B<NOTE:> An I<isa> option is required when using the regexp option format. This
591 is so that we can determine (at compile time) the method list from the class.
592 Without an I<isa> this is just not possible.
593
594 =item C<ROLE> or C<ROLETYPE>
595
596 With the role option, you specify the name of a role or a
597 L<role type|Moose::Meta::TypeConstraint::Role> whose "interface" then becomes
598 the list of methods to handle. The "interface" can be defined as; the methods
599 of the role and any required methods of the role. It should be noted that this
600 does B<not> include any method modifiers or generated attribute methods (which
601 is consistent with role composition).
602
603 =item C<DUCKTYPE>
604
605 With the duck type option, you pass a duck type object whose "interface" then
606 becomes the list of methods to handle. The "interface" can be defined as the
607 list of methods passed to C<duck_type> to create a duck type object. For more
608 information on C<duck_type> please check
609 L<Moose::Util::TypeConstraints>.
610
611 =item C<CODE>
612
613 This is the option to use when you really want to do something funky. You should
614 only use it if you really know what you are doing, as it involves manual
615 metaclass twiddling.
616
617 This takes a code reference, which should expect two arguments. The first is the
618 attribute meta-object this I<handles> is attached to. The second is the
619 metaclass of the class being delegated to. It expects you to return a hash (not
620 a HASH ref) of the methods you want mapped.
621
622 =back
623
624 =item I<traits =E<gt> [ @role_names ]>
625
626 This tells Moose to take the list of C<@role_names> and apply them to the
627 attribute meta-object. Custom attribute metaclass traits are useful for
628 extending the capabilities of the I<has> keyword: they are the simplest way to
629 extend the MOP, but they are still a fairly advanced topic and too much to
630 cover here.
631
632 See L<Metaclass and Trait Name Resolution> for details on how a trait name is
633 resolved to a role name.
634
635 Also see L<Moose::Cookbook::Meta::Recipe3> for a metaclass trait
636 example.
637
638 =item I<builder> => Str
639
640 The value of this key is the name of the method that will be called to
641 obtain the value used to initialize the attribute. See the L<builder
642 option docs in Class::MOP::Attribute|Class::MOP::Attribute/builder>
643 and/or L<Moose::Cookbook::Basics::Recipe8> for more information.
644
645 =item I<default> => SCALAR | CODE
646
647 The value of this key is the default value which will initialize the attribute.
648
649 NOTE: If the value is a simple scalar (string or number), then it can
650 be just passed as is.  However, if you wish to initialize it with a
651 HASH or ARRAY ref, then you need to wrap that inside a CODE reference.
652 See the L<default option docs in
653 Class::MOP::Attribute|Class::MOP::Attribute/default> for more
654 information.
655
656 =item I<clearer> => Str
657
658 Creates a method allowing you to clear the value. See the L<clearer option
659 docs in Class::MOP::Attribute|Class::MOP::Attribute/clearer> for more
660 information.
661
662 =item I<predicate> => Str
663
664 Creates a method to perform a basic test to see if a value has been set in the
665 attribute. See the L<predicate option docs in
666 Class::MOP::Attribute|Class::MOP::Attribute/predicate> for more information.
667
668 Note that the predicate will return true even for a C<weak_ref> attribute
669 whose value has expired.
670
671 =item I<documentation> => $string
672
673 An arbitrary string that can be retrieved later by calling C<<
674 $attr->documentation >>.
675
676
677
678 =back
679
680 =item B<has +$name =E<gt> %options>
681
682 This is variation on the normal attribute creator C<has> which allows you to
683 clone and extend an attribute from a superclass or from a role. Here is an
684 example of the superclass usage:
685
686   package Foo;
687   use Moose;
688
689   has 'message' => (
690       is      => 'rw',
691       isa     => 'Str',
692       default => 'Hello, I am a Foo'
693   );
694
695   package My::Foo;
696   use Moose;
697
698   extends 'Foo';
699
700   has '+message' => (default => 'Hello I am My::Foo');
701
702 What is happening here is that B<My::Foo> is cloning the C<message> attribute
703 from its parent class B<Foo>, retaining the C<is =E<gt> 'rw'> and C<isa =E<gt>
704 'Str'> characteristics, but changing the value in C<default>.
705
706 Here is another example, but within the context of a role:
707
708   package Foo::Role;
709   use Moose::Role;
710
711   has 'message' => (
712       is      => 'rw',
713       isa     => 'Str',
714       default => 'Hello, I am a Foo'
715   );
716
717   package My::Foo;
718   use Moose;
719
720   with 'Foo::Role';
721
722   has '+message' => (default => 'Hello I am My::Foo');
723
724 In this case, we are basically taking the attribute which the role supplied
725 and altering it within the bounds of this feature.
726
727 Note that you can only extend an attribute from either a superclass or a role,
728 you cannot extend an attribute in a role that composes over an attribute from
729 another role.
730
731 Aside from where the attributes come from (one from superclass, the other
732 from a role), this feature works exactly the same. This feature is restricted
733 somewhat, so as to try and force at least I<some> sanity into it. Most options work the same, but there are some exceptions:
734
735 =over 4
736
737 =item I<reader>
738
739 =item I<writer>
740
741 =item I<accessor>
742
743 =item I<clearer>
744
745 =item I<predicate>
746
747 These options can be added, but cannot override a superclass definition.
748
749 =item I<traits>
750
751 You are allowed to B<add> additional traits to the C<traits> definition.
752 These traits will be composed into the attribute, but preexisting traits
753 B<are not> overridden, or removed.
754
755 =back
756
757 =item B<before $name|@names|\@names|qr/.../ =E<gt> sub { ... }>
758
759 =item B<after $name|@names|\@names|qr/.../ =E<gt> sub { ... }>
760
761 =item B<around $name|@names|\@names|qr/.../ =E<gt> sub { ... }>
762
763 These three items are syntactic sugar for the before, after, and around method
764 modifier features that L<Class::MOP> provides. More information on these may be
765 found in L<Moose::Manual::MethodModifiers> and the
766 L<Class::MOP::Class documentation|Class::MOP::Class/"Method Modifiers">.
767
768 =item B<override ($name, &sub)>
769
770 An C<override> method is a way of explicitly saying "I am overriding this
771 method from my superclass". You can call C<super> within this method, and
772 it will work as expected. The same thing I<can> be accomplished with a normal
773 method call and the C<SUPER::> pseudo-package; it is really your choice.
774
775 =item B<super>
776
777 The keyword C<super> is a no-op when called outside of an C<override> method. In
778 the context of an C<override> method, it will call the next most appropriate
779 superclass method with the same arguments as the original method.
780
781 =item B<augment ($name, &sub)>
782
783 An C<augment> method, is a way of explicitly saying "I am augmenting this
784 method from my superclass". Once again, the details of how C<inner> and
785 C<augment> work is best described in the L<Moose::Cookbook::Basics::Recipe6>.
786
787 =item B<inner>
788
789 The keyword C<inner>, much like C<super>, is a no-op outside of the context of
790 an C<augment> method. You can think of C<inner> as being the inverse of
791 C<super>; the details of how C<inner> and C<augment> work is best described in
792 the L<Moose::Cookbook::Basics::Recipe6>.
793
794 =item B<blessed>
795
796 This is the C<Scalar::Util::blessed> function. It is highly recommended that
797 this is used instead of C<ref> anywhere you need to test for an object's class
798 name.
799
800 =item B<confess>
801
802 This is the C<Carp::confess> function, and exported here for historical
803 reasons.
804
805 =back
806
807 =head1 METACLASS
808
809 When you use Moose, you can specify traits which will be applied to your
810 metaclass:
811
812     use Moose -traits => 'My::Trait';
813
814 This is very similar to the attribute traits feature. When you do
815 this, your class's C<meta> object will have the specified traits
816 applied to it. See L<Metaclass and Trait Name Resolution> for more
817 details.
818
819 =head2 Metaclass and Trait Name Resolution
820
821 By default, when given a trait name, Moose simply tries to load a
822 class of the same name. If such a class does not exist, it then looks
823 for for a class matching
824 B<Moose::Meta::$type::Custom::Trait::$trait_name>. The C<$type>
825 variable here will be one of B<Attribute> or B<Class>, depending on
826 what the trait is being applied to.
827
828 If a class with this long name exists, Moose checks to see if it has
829 the method C<register_implementation>. This method is expected to
830 return the I<real> class name of the trait. If there is no
831 C<register_implementation> method, it will fall back to using
832 B<Moose::Meta::$type::Custom::Trait::$trait> as the trait name.
833
834 The lookup method for metaclasses is the same, except that it looks
835 for a class matching B<Moose::Meta::$type::Custom::$metaclass_name>.
836
837 If all this is confusing, take a look at
838 L<Moose::Cookbook::Meta::Recipe3>, which demonstrates how to create an
839 attribute trait.
840
841 =head1 UNIMPORTING FUNCTIONS
842
843 =head2 B<unimport>
844
845 Moose offers a way to remove the keywords it exports, through the C<unimport>
846 method. You simply have to say C<no Moose> at the bottom of your code for this
847 to work. Here is an example:
848
849     package Person;
850     use Moose;
851
852     has 'first_name' => (is => 'rw', isa => 'Str');
853     has 'last_name'  => (is => 'rw', isa => 'Str');
854
855     sub full_name {
856         my $self = shift;
857         $self->first_name . ' ' . $self->last_name
858     }
859
860     no Moose; # keywords are removed from the Person package
861
862 =head1 EXTENDING AND EMBEDDING MOOSE
863
864 To learn more about extending Moose, we recommend checking out the
865 "Extending" recipes in the L<Moose::Cookbook>, starting with
866 L<Moose::Cookbook::Extending::Recipe1>, which provides an overview of
867 all the different ways you might extend Moose. L<Moose::Exporter> and
868 L<Moose::Util::MetaRole> are the modules which provide the majority of the
869 extension functionality, so reading their documentation should also be helpful.
870
871 =head2 The MooseX:: namespace
872
873 Generally if you're writing an extension I<for> Moose itself you'll want
874 to put your extension in the C<MooseX::> namespace. This namespace is
875 specifically for extensions that make Moose better or different in some
876 fundamental way. It is traditionally B<not> for a package that just happens
877 to use Moose. This namespace follows from the examples of the C<LWPx::>
878 and C<DBIx::> namespaces that perform the same function for C<LWP> and C<DBI>
879 respectively.
880
881 =head1 METACLASS COMPATIBILITY AND MOOSE
882
883 Metaclass compatibility is a thorny subject. You should start by
884 reading the "About Metaclass compatibility" section in the
885 C<Class::MOP> docs.
886
887 Moose will attempt to resolve a few cases of metaclass incompatibility
888 when you set the superclasses for a class, in addition to the cases that
889 C<Class::MOP> handles.
890
891 Moose tries to determine if the metaclasses only "differ by roles". This
892 means that the parent and child's metaclass share a common ancestor in
893 their respective hierarchies, and that the subclasses under the common
894 ancestor are only different because of role applications. This case is
895 actually fairly common when you mix and match various C<MooseX::*>
896 modules, many of which apply roles to the metaclass.
897
898 If the parent and child do differ by roles, Moose replaces the
899 metaclass in the child with a newly created metaclass. This metaclass
900 is a subclass of the parent's metaclass which does all of the roles that
901 the child's metaclass did before being replaced. Effectively, this
902 means the new metaclass does all of the roles done by both the
903 parent's and child's original metaclasses.
904
905 Ultimately, this is all transparent to you except in the case of an
906 unresolvable conflict.
907
908 =head1 CAVEATS
909
910 =over 4
911
912 =item *
913
914 It should be noted that C<super> and C<inner> B<cannot> be used in the same
915 method. However, they may be combined within the same class hierarchy; see
916 F<t/basics/override_augment_inner_super.t> for an example.
917
918 The reason for this is that C<super> is only valid within a method
919 with the C<override> modifier, and C<inner> will never be valid within an
920 C<override> method. In fact, C<augment> will skip over any C<override> methods
921 when searching for its appropriate C<inner>.
922
923 This might seem like a restriction, but I am of the opinion that keeping these
924 two features separate (yet interoperable) actually makes them easy to use, since
925 their behavior is then easier to predict. Time will tell whether I am right or
926 not (UPDATE: so far so good).
927
928 =back
929
930 =head1 GETTING HELP
931
932 We offer both a mailing list and a very active IRC channel.
933
934 The mailing list is L<moose@perl.org>. You must be subscribed to send
935 a message. To subscribe, send an empty message to
936 L<moose-subscribe@perl.org>
937
938 You can also visit us at C<#moose> on L<irc://irc.perl.org/#moose>
939 This channel is quite active, and questions at all levels (on Moose-related
940 topics ;) are welcome.
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 git repository
970 as well as links to a number of talks and articles on Moose and Moose related
971 technologies.
972
973 =item The Moose is flying, a tutorial by Randal Schwartz
974
975 Part 1 - L<http://www.stonehenge.com/merlyn/LinuxMag/col94.html>
976
977 Part 2 - L<http://www.stonehenge.com/merlyn/LinuxMag/col95.html>
978
979 =item Several Moose extension modules in the C<MooseX::> namespace.
980
981 See L<http://search.cpan.org/search?query=MooseX::> for extensions.
982
983 =back
984
985 =head2 Books
986
987 =over 4
988
989 =item The Art of the MetaObject Protocol
990
991 I mention this in the L<Class::MOP> docs too, as this book was critical in
992 the development of both modules and is highly recommended.
993
994 =back
995
996 =head2 Papers
997
998 =over 4
999
1000 =item L<http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf>
1001
1002 This paper (suggested by lbr on #moose) was what lead to the implementation
1003 of the C<super>/C<override> and C<inner>/C<augment> features. If you really
1004 want to understand them, I suggest you read this.
1005
1006 =back
1007
1008 =head1 BUGS
1009
1010 All complex software has bugs lurking in it, and this module is no
1011 exception.
1012
1013 Please report any bugs to C<bug-moose@rt.cpan.org>, or through the web
1014 interface at L<http://rt.cpan.org>.
1015
1016 You can also discuss feature requests or possible bugs on the Moose mailing
1017 list (moose@perl.org) or on IRC at L<irc://irc.perl.org/#moose>.
1018
1019 =head1 FEATURE REQUESTS
1020
1021 We are very strict about what features we add to the Moose core, especially
1022 the user-visible features. Instead we have made sure that the underlying
1023 meta-system of Moose is as extensible as possible so that you can add your
1024 own features easily.
1025
1026 That said, occasionally there is a feature needed in the meta-system
1027 to support your planned extension, in which case you should either
1028 email the mailing list (moose@perl.org) or join us on IRC at
1029 L<irc://irc.perl.org/#moose> to discuss. The
1030 L<Moose::Manual::Contributing> has more detail about how and when you
1031 can contribute.
1032
1033 =head1 CABAL
1034
1035 There are only a few people with the rights to release a new version
1036 of Moose. The Moose Cabal are the people to go to with questions regarding
1037 the wider purview of Moose. They help maintain not just the code
1038 but the community as well.
1039
1040 Stevan (stevan) Little E<lt>stevan@iinteractive.comE<gt>
1041
1042 Jesse (doy) Luehrs E<lt>doy at tozt dot netE<gt>
1043
1044 Yuval (nothingmuch) Kogman
1045
1046 Shawn (sartak) Moore E<lt>sartak@bestpractical.comE<gt>
1047
1048 Hans Dieter (confound) Pearcey E<lt>hdp@pobox.comE<gt>
1049
1050 Chris (perigrin) Prather
1051
1052 Florian Ragwitz E<lt>rafl@debian.orgE<gt>
1053
1054 Dave (autarch) Rolsky E<lt>autarch@urth.orgE<gt>
1055
1056 =head1 CONTRIBUTORS
1057
1058 Aankhen
1059
1060 Adam (Alias) Kennedy
1061
1062 Anders (Debolaz) Nor Berle
1063
1064 Chris (perigrin) Prather
1065
1066 Christian (chansen) Hansen
1067
1068 Cory (gphat) Watson
1069
1070 Dylan Hardison (doc fixes)
1071
1072 Eric (ewilhelm) Wilhelm
1073
1074 Evan Carroll
1075
1076 Florian (rafl) Ragwitz
1077
1078 Guillermo (groditi) Roditi
1079
1080 Jason May
1081
1082 Jay Hannah
1083
1084 Jess (castaway) Robinson
1085
1086 Jonathan (jrockway) Rockway
1087
1088 Matt (mst) Trout
1089
1090 Nathan (kolibrie) Gray
1091
1092 Paul (frodwith) Driver
1093
1094 Piotr (dexter) Roszatycki
1095
1096 Robert Buels
1097
1098 Robert (phaylon) Sedlacek
1099
1100 Robert (rlb3) Boone
1101
1102 Sam (mugwump) Vilain
1103
1104 Scott (konobi) McWhirter
1105
1106 Shawn (Sartak) Moore
1107
1108 Shlomi (rindolf) Fish
1109
1110 Tom (dec) Lanyon
1111
1112 Wallace (wreis) Reis
1113
1114 ... and many other #moose folks
1115
1116 =cut