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