8bac82986e6549f6548b8677ba83c70e58a2977a
[gitmo/Moose.git] / lib / Moose.pm
1
2 package Moose;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.14';
8
9 use Scalar::Util 'blessed', 'reftype';
10 use Carp         'confess';
11 use Sub::Name    'subname';
12 use B            'svref_2object';
13
14 use Sub::Exporter;
15
16 use Class::MOP;
17
18 use Moose::Meta::Class;
19 use Moose::Meta::TypeConstraint;
20 use Moose::Meta::TypeCoercion;
21 use Moose::Meta::Attribute;
22 use Moose::Meta::Instance;
23
24 use Moose::Object;
25 use Moose::Util::TypeConstraints;
26
27 {
28     my $CALLER;
29
30     sub _init_meta {
31         my $class = $CALLER;
32
33         # make a subtype for each Moose class
34         subtype $class
35             => as 'Object'
36             => where { $_->isa($class) }
37         unless find_type_constraint($class);
38
39         my $meta;
40         if ($class->can('meta')) {
41             # NOTE:
42             # this is the case where the metaclass pragma 
43             # was used before the 'use Moose' statement to 
44             # override a specific class
45             $meta = $class->meta();
46             (blessed($meta) && $meta->isa('Moose::Meta::Class'))
47                 || confess "You already have a &meta function, but it does not return a Moose::Meta::Class";
48         }
49         else {
50             # NOTE:
51             # this is broken currently, we actually need 
52             # to allow the possiblity of an inherited 
53             # meta, which will not be visible until the 
54             # user 'extends' first. This needs to have 
55             # more intelligence to it 
56             $meta = Moose::Meta::Class->initialize($class);
57             $meta->add_method('meta' => sub {
58                 # re-initialize so it inherits properly
59                 Moose::Meta::Class->initialize(blessed($_[0]) || $_[0]);
60             })
61         }
62
63         # make sure they inherit from Moose::Object
64         $meta->superclasses('Moose::Object')
65            unless $meta->superclasses();
66     }
67
68     my %exports = (
69         extends => sub {
70             my $class = $CALLER;
71             return subname 'Moose::extends' => sub (@) {
72                 confess "Must derive at least one class" unless @_;
73                 _load_all_classes(@_);
74                 # this checks the metaclass to make sure 
75                 # it is correct, sometimes it can get out 
76                 # of sync when the classes are being built
77                 my $meta = $class->meta->_fix_metaclass_incompatability(@_);
78                 $meta->superclasses(@_);
79             };
80         },
81         with => sub {
82             my $class = $CALLER;
83             return subname 'Moose::with' => sub (@) {
84                 my (@roles) = @_;
85                 confess "Must specify at least one role" unless @roles;
86                 _load_all_classes(@roles);
87                 $class->meta->_apply_all_roles(@roles);
88             };
89         },
90         has => sub {
91             my $class = $CALLER;
92             return subname 'Moose::has' => sub ($;%) {
93                 my ($name, %options) = @_;              
94                 $class->meta->_process_attribute($name, %options);
95             };
96         },
97         before => sub {
98             my $class = $CALLER;
99             return subname 'Moose::before' => sub (@&) {
100                 my $code = pop @_;
101                 my $meta = $class->meta;
102                 $meta->add_before_method_modifier($_, $code) for @_;
103             };
104         },
105         after => sub {
106             my $class = $CALLER;
107             return subname 'Moose::after' => sub (@&) {
108                 my $code = pop @_;
109                 my $meta = $class->meta;
110                 $meta->add_after_method_modifier($_, $code) for @_;
111             };
112         },
113         around => sub {
114             my $class = $CALLER;            
115             return subname 'Moose::around' => sub (@&) {
116                 my $code = pop @_;
117                 my $meta = $class->meta;
118                 $meta->add_around_method_modifier($_, $code) for @_;
119             };
120         },
121         super => sub {
122             return subname 'Moose::super' => sub {};
123         },
124         override => sub {
125             my $class = $CALLER;
126             return subname 'Moose::override' => sub ($&) {
127                 my ($name, $method) = @_;
128                 $class->meta->add_override_method_modifier($name => $method);
129             };
130         },
131         inner => sub {
132             return subname 'Moose::inner' => sub {};
133         },
134         augment => sub {
135             my $class = $CALLER;
136             return subname 'Moose::augment' => sub (@&) {
137                 my ($name, $method) = @_;
138                 $class->meta->add_augment_method_modifier($name => $method);
139             };
140         },
141         
142         # NOTE:
143         # this is experimental, but I am not 
144         # happy with it. If you want to try 
145         # it, you will have to uncomment it 
146         # yourself. 
147         # There is a really good chance that 
148         # this will be deprecated, dont get 
149         # too attached
150         # self => sub {
151         #     return subname 'Moose::self' => sub {};
152         # },        
153         # method => sub {
154         #     my $class = $CALLER;
155         #     return subname 'Moose::method' => sub {
156         #         my ($name, $method) = @_;
157         #         $class->meta->add_method($name, sub {
158         #             my $self = shift;
159         #             no strict   'refs';
160         #             no warnings 'redefine';
161         #             local *{$class->meta->name . '::self'} = sub { $self };
162         #             $method->(@_);
163         #         });
164         #     };
165         # },                
166         
167         confess => sub {
168             return \&Carp::confess;
169         },
170         blessed => sub {
171             return \&Scalar::Util::blessed;
172         },
173     );
174
175     my $exporter = Sub::Exporter::build_exporter({ 
176         exports => \%exports,
177         groups  => {
178             default => [':all']
179         }
180     });
181     
182     sub import {     
183         $CALLER = caller();
184         
185         strict->import;
186         warnings->import;        
187
188         # we should never export to main
189         return if $CALLER eq 'main';
190     
191         _init_meta();
192         
193         goto $exporter;
194     }
195     
196     sub unimport {
197         no strict 'refs';        
198         my $class = caller();
199         # loop through the exports ...
200         foreach my $name (keys %exports) {
201             next if $name =~ /inner|super|self/;
202             
203             # if we find one ...
204             if (defined &{$class . '::' . $name}) {
205                 my $keyword = \&{$class . '::' . $name};
206                 
207                 # make sure it is from Moose
208                 my $pkg_name = eval { svref_2object($keyword)->GV->STASH->NAME };
209                 next if $@;
210                 next if $pkg_name ne 'Moose';
211                 
212                 # and if it is from Moose then undef the slot
213                 delete ${$class . '::'}{$name};
214             }
215         }
216     }
217 }
218
219 ## Utility functions
220
221 sub _load_all_classes {
222     foreach my $class (@_) {
223         # see if this is already 
224         # loaded in the symbol table
225         next if _is_class_already_loaded($class);
226         # otherwise require it ...
227         my $file = $class . '.pm';
228         $file =~ s{::}{/}g;
229         eval { CORE::require($file) };
230         confess(
231             "Could not load module '$class' because : $@"
232             ) if $@;
233     }
234 }
235
236 sub _is_class_already_loaded {
237         my $name = shift;
238         no strict 'refs';
239         return 1 if defined ${"${name}::VERSION"} || defined @{"${name}::ISA"};
240         foreach (keys %{"${name}::"}) {
241                 next if substr($_, -2, 2) eq '::';
242                 return 1 if defined &{"${name}::$_"};
243         }
244         return 0;
245 }
246
247 1;
248
249 __END__
250
251 =pod
252
253 =head1 NAME
254
255 Moose - A complete modern object system for Perl 5
256
257 =head1 SYNOPSIS
258
259   package Point;
260   use strict;
261   use warnings;
262   use Moose;
263         
264   has 'x' => (is => 'rw', isa => 'Int');
265   has 'y' => (is => 'rw', isa => 'Int');
266   
267   sub clear {
268       my $self = shift;
269       $self->x(0);
270       $self->y(0);    
271   }
272   
273   package Point3D;
274   use strict;
275   use warnings;  
276   use Moose;
277   
278   extends 'Point';
279   
280   has 'z' => (is => 'rw', isa => 'Int');
281   
282   after 'clear' => sub {
283       my $self = shift;
284       $self->z(0);
285   };
286   
287 =head1 CAVEAT
288
289 Moose is a rapidly maturing module, and is already being used by 
290 a number of people. It's test suite is growing larger by the day, 
291 and the docs should soon follow. 
292
293 This said, Moose is not yet finished, and should still be considered 
294 to be evolving. Much of the outer API is stable, but the internals 
295 are still subject to change (although not without serious thought 
296 given to it).  
297
298 =head1 DESCRIPTION
299
300 Moose is an extension of the Perl 5 object system. 
301
302 =head2 Another object system!?!?
303
304 Yes, I know there has been an explosion recently of new ways to 
305 build object's in Perl 5, most of them based on inside-out objects
306 and other such things. Moose is different because it is not a new 
307 object system for Perl 5, but instead an extension of the existing 
308 object system.
309
310 Moose is built on top of L<Class::MOP>, which is a metaclass system 
311 for Perl 5. This means that Moose not only makes building normal 
312 Perl 5 objects better, but it also provides the power of metaclass 
313 programming.
314
315 =head2 Can I use this in production? Or is this just an experiment?
316
317 Moose is I<based> on the prototypes and experiments I did for the Perl 6
318 meta-model; however Moose is B<NOT> an experiment/prototype, it is 
319 for B<real>. I will be deploying Moose into production environments later 
320 this year, and I have every intentions of using it as my de facto class 
321 builder from now on.
322
323 =head2 Is Moose just Perl 6 in Perl 5?
324
325 No. While Moose is very much inspired by Perl 6, it is not itself Perl 6.
326 Instead, it is an OO system for Perl 5. I built Moose because I was tired or
327 writing the same old boring Perl 5 OO code, and drooling over Perl 6 OO. So
328 instead of switching to Ruby, I wrote Moose :)
329
330 =head1 BUILDING CLASSES WITH MOOSE
331
332 Moose makes every attempt to provide as much convenience as possible during
333 class construction/definition, but still stay out of your way if you want it
334 to. Here are a few items to note when building classes with Moose.
335
336 Unless specified with C<extends>, any class which uses Moose will 
337 inherit from L<Moose::Object>.
338
339 Moose will also manage all attributes (including inherited ones) that 
340 are defined with C<has>. And assuming that you call C<new>, which is 
341 inherited from L<Moose::Object>, then this includes properly initializing 
342 all instance slots, setting defaults where appropriate, and performing any 
343 type constraint checking or coercion. 
344
345 =head1 EXPORTED FUNCTIONS
346
347 Moose will export a number of functions into the class's namespace which 
348 can then be used to set up the class. These functions all work directly 
349 on the current class.
350
351 =over 4
352
353 =item B<meta>
354
355 This is a method which provides access to the current class's metaclass.
356
357 =item B<extends (@superclasses)>
358
359 This function will set the superclass(es) for the current class.
360
361 This approach is recommended instead of C<use base>, because C<use base> 
362 actually C<push>es onto the class's C<@ISA>, whereas C<extends> will 
363 replace it. This is important to ensure that classes which do not have 
364 superclasses still properly inherit from L<Moose::Object>.
365
366 =item B<with (@roles)>
367
368 This will apply a given set of C<@roles> to the local class. Role support 
369 is currently under heavy development; see L<Moose::Role> for more details.
370
371 =item B<has ($name, %options)>
372
373 This will install an attribute of a given C<$name> into the current class. 
374 The list of C<%options> are the same as those provided by 
375 L<Class::MOP::Attribute>, in addition to the list below which are provided 
376 by Moose (L<Moose::Meta::Attribute> to be more specific):
377
378 =over 4
379
380 =item I<is =E<gt> 'rw'|'ro'>
381
382 The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read 
383 only). These will create either a read/write accessor or a read-only 
384 accessor respectively, using the same name as the C<$name> of the attribute.
385
386 If you need more control over how your accessors are named, you can use the 
387 I<reader>, I<writer> and I<accessor> options inherited from L<Class::MOP::Attribute>.
388
389 =item I<isa =E<gt> $type_name>
390
391 The I<isa> option uses Moose's type constraint facilities to set up runtime 
392 type checking for this attribute. Moose will perform the checks during class 
393 construction, and within any accessors. The C<$type_name> argument must be a 
394 string. The string can be either a class name or a type defined using 
395 Moose's type definition features.
396
397 =item I<coerce =E<gt> (1|0)>
398
399 This will attempt to use coercion with the supplied type constraint to change 
400 the value passed into any accessors or constructors. You B<must> have supplied 
401 a type constraint in order for this to work. See L<Moose::Cookbook::Recipe5>
402 for an example usage.
403
404 =item I<does =E<gt> $role_name>
405
406 This will accept the name of a role which the value stored in this attribute 
407 is expected to have consumed.
408
409 =item I<required =E<gt> (1|0)>
410
411 This marks the attribute as being required. This means a value must be supplied 
412 during class construction, and the attribute can never be set to C<undef> with 
413 an accessor. 
414
415 =item I<weak_ref =E<gt> (1|0)>
416
417 This will tell the class to store the value of this attribute as a weakened
418 reference. If an attribute is a weakened reference, it B<cannot> also be
419 coerced.
420
421 =item I<lazy =E<gt> (1|0)>
422
423 This will tell the class to not create this slot until absolutely necessary. 
424 If an attribute is marked as lazy it B<must> have a default supplied.
425
426 =item I<auto_deref =E<gt> (1|0)>
427
428 This tells the accessor whether to automatically dereference the value returned. 
429 This is only legal if your C<isa> option is either an C<ArrayRef> or C<HashRef>.
430
431 =item I<trigger =E<gt> $code>
432
433 The trigger option is a CODE reference which will be called after the value of 
434 the attribute is set. The CODE ref will be passed the instance itself, the 
435 updated value and the attribute meta-object (this is for more advanced fiddling
436 and can typically be ignored in most cases). You B<cannot> have a trigger on
437 a read-only attribute.
438
439 =item I<handles =E<gt> [ @handles ]>
440
441 There is experimental support for attribute delegation using the C<handles> 
442 option. More docs to come later.
443
444 =back
445
446 =item B<before $name|@names =E<gt> sub { ... }>
447
448 =item B<after $name|@names =E<gt> sub { ... }>
449
450 =item B<around $name|@names =E<gt> sub { ... }>
451
452 This three items are syntactic sugar for the before, after, and around method 
453 modifier features that L<Class::MOP> provides. More information on these can 
454 be found in the L<Class::MOP> documentation for now. 
455
456 =item B<super>
457
458 The keyword C<super> is a no-op when called outside of an C<override> method. In  
459 the context of an C<override> method, it will call the next most appropriate 
460 superclass method with the same arguments as the original method.
461
462 =item B<override ($name, &sub)>
463
464 An C<override> method is a way of explicitly saying "I am overriding this 
465 method from my superclass". You can call C<super> within this method, and 
466 it will work as expected. The same thing I<can> be accomplished with a normal 
467 method call and the C<SUPER::> pseudo-package; it is really your choice. 
468
469 =item B<inner>
470
471 The keyword C<inner>, much like C<super>, is a no-op outside of the context of 
472 an C<augment> method. You can think of C<inner> as being the inverse of 
473 C<super>; the details of how C<inner> and C<augment> work is best described in
474 the L<Moose::Cookbook>.
475
476 =item B<augment ($name, &sub)>
477
478 An C<augment> method, is a way of explicitly saying "I am augmenting this 
479 method from my superclass". Once again, the details of how C<inner> and 
480 C<augment> work is best described in the L<Moose::Cookbook>.
481
482 =item B<confess>
483
484 This is the C<Carp::confess> function, and exported here because I use it
485 all the time. This feature may change in the future, so you have been warned. 
486
487 =item B<blessed>
488
489 This is the C<Scalar::Uti::blessed> function, it is exported here because I
490 use it all the time. It is highly recommended that this is used instead of 
491 C<ref> anywhere you need to test for an object's class name.
492
493 =back
494
495 =head1 UNEXPORTING FUNCTIONS
496
497 =head2 B<unimport>
498
499 Moose offers a way of removing the keywords it exports though the C<unimport>
500 method. You simply have to say C<no Moose> at the bottom of your code for this
501 to work. Here is an example:
502
503     package Person;
504     use Moose;
505
506     has 'first_name' => (is => 'rw', isa => 'Str');
507     has 'last_name'  => (is => 'rw', isa => 'Str');
508     
509     sub full_name { 
510         my $self = shift;
511         $self->first_name . ' ' . $self->last_name 
512     }
513     
514     no Moose; # keywords are removed from the Person package    
515
516 =head1 MISC.
517
518 =head2 What does Moose stand for??
519
520 Moose doesn't stand for one thing in particular, however, if you 
521 want, here are a few of my favorites; feel free to contribute
522 more :)
523
524 =over 4
525
526 =item Make Other Object Systems Envious
527
528 =item Makes Object Orientation So Easy
529
530 =item Makes Object Orientation Spiffy- Er  (sorry ingy)
531
532 =item Most Other Object Systems Emasculate
533
534 =item Moose Often Ovulate Sorta Early
535
536 =item Moose Offers Often Super Extensions
537
538 =item Meta Object Orientation Syntax Extensions
539
540 =back
541
542 =head1 CAVEATS
543
544 =over 4
545
546 =item *
547
548 It should be noted that C<super> and C<inner> C<cannot> be used in the same 
549 method. However, they can be combined together with the same class hierarchy;
550 see F<t/014_override_augment_inner_super.t> for an example. 
551
552 The reason for this is that C<super> is only valid within a method 
553 with the C<override> modifier, and C<inner> will never be valid within an 
554 C<override> method. In fact, C<augment> will skip over any C<override> methods 
555 when searching for its appropriate C<inner>.
556
557 This might seem like a restriction, but I am of the opinion that keeping these 
558 two features separate (but interoperable) actually makes them easy to use, since 
559 their behavior is then easier to predict. Time will tell if I am right or not.
560
561 =back
562
563 =head1 ACKNOWLEDGEMENTS
564
565 =over 4
566
567 =item I blame Sam Vilain for introducing me to the insanity that is meta-models.
568
569 =item I blame Audrey Tang for then encouraging my meta-model habit in #perl6.
570
571 =item Without Yuval "nothingmuch" Kogman this module would not be possible, 
572 and it certainly wouldn't have this name ;P
573
574 =item The basis of the TypeContraints module was Rob Kinyon's idea 
575 originally, I just ran with it.
576
577 =item Thanks to mst & chansen and the whole #moose poose for all the 
578 ideas/feature-requests/encouragement
579
580 =item Thanks to David "Theory" Wheeler for meta-discussions and spelling fixes.
581
582 =back
583
584 =head1 SEE ALSO
585
586 =over 4
587
588 =item L<Class::MOP> documentation
589
590 =item The #moose channel on irc.perl.org
591
592 =item The Moose mailing list - moose@perl.org
593
594 =item L<http://forum2.org/moose/>
595
596 =item L<http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf>
597
598 This paper (suggested by lbr on #moose) was what lead to the implementation 
599 of the C<super>/C<overrride> and C<inner>/C<augment> features. If you really 
600 want to understand this feature, I suggest you read this.
601
602 =back
603
604 =head1 BUGS
605
606 All complex software has bugs lurking in it, and this module is no 
607 exception. If you find a bug please either email me, or add the bug
608 to cpan-RT.
609
610 =head1 AUTHOR
611
612 Stevan Little E<lt>stevan@iinteractive.comE<gt>
613
614 Christian Hansen E<lt>chansen@cpan.orgE<gt>
615
616 Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
617
618 =head1 COPYRIGHT AND LICENSE
619
620 Copyright 2006 by Infinity Interactive, Inc.
621
622 L<http://www.iinteractive.com>
623
624 This library is free software; you can redistribute it and/or modify
625 it under the same terms as Perl itself. 
626
627 =cut