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