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