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