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