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