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