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