support isa and coerce together for Moose
[gitmo/Moo.git] / lib / Moo.pm
CommitLineData
b1eebd55 1package Moo;
6c74d087 2
3use strictures 1;
b1eebd55 4use Moo::_Utils;
e0e12d16 5use B 'perlstring';
a41e15c3 6use Sub::Defer ();
6c74d087 7
8cf900ae 8our $VERSION = '0.091003'; # 0.91.3
6d71fae7 9$VERSION = eval $VERSION;
10
c2cb1fed 11require Moo::sification;
8c46a8f6 12
14f32032 13our %MAKERS;
14
6c74d087 15sub import {
16 my $target = caller;
a16d301e 17 my $class = shift;
de3d4906 18 strictures->import;
1ba11455 19 return if $MAKERS{$target}; # already exported into this package
167455a0 20 _install_coderef "${target}::extends" => "Moo::extends" => sub {
fb5074f6 21 _load_module($_) for @_;
786e5ba0 22 # Can't do *{...} = \@_ or 5.10.0's mro.pm stops seeing @ISA
23 @{*{_getglob("${target}::ISA")}{ARRAY}} = @_;
3b0d7efd 24 if (my $old = delete $Moo::MAKERS{$target}{constructor}) {
25 delete _getstash($target)->{new};
26 Moo->_constructor_maker_for($target)
27 ->register_attribute_specs(%{$old->all_attribute_specs});
28 }
6c49212f 29 $class->_maybe_reset_handlemoose($target);
6c74d087 30 };
167455a0 31 _install_coderef "${target}::with" => "Moo::with" => sub {
faa9ce11 32 require Moo::Role;
6893ea30 33 Moo::Role->apply_roles_to_package($target, $_[0]);
6c49212f 34 $class->_maybe_reset_handlemoose($target);
6c74d087 35 };
a16d301e 36 $MAKERS{$target} = {};
167455a0 37 _install_coderef "${target}::has" => "Moo::has" => sub {
14f32032 38 my ($name, %spec) = @_;
a16d301e 39 $class->_constructor_maker_for($target)
40 ->register_attribute_specs($name, \%spec);
02e9ef74 41 $class->_accessor_maker_for($target)
42 ->generate_method($target, $name, \%spec);
6c49212f 43 $class->_maybe_reset_handlemoose($target);
14f32032 44 };
6c74d087 45 foreach my $type (qw(before after around)) {
167455a0 46 _install_coderef "${target}::${type}" => "Moo::${type}" => sub {
faa9ce11 47 require Class::Method::Modifiers;
6c74d087 48 _install_modifier($target, $type, @_);
49 };
50 }
51 {
52 no strict 'refs';
53 @{"${target}::ISA"} = do {
faa9ce11 54 require Moo::Object; ('Moo::Object');
6c74d087 55 } unless @{"${target}::ISA"};
56 }
3362e41c 57 if ($INC{'Moo/HandleMoose.pm'}) {
58 Moo::HandleMoose::inject_fake_metaclass_for($target);
59 }
6c74d087 60}
61
6c49212f 62sub _maybe_reset_handlemoose {
63 my ($class, $target) = @_;
64 if ($INC{"Moo/HandleMoose.pm"}) {
65 Moo::HandleMoose::maybe_reinject_fake_metaclass_for($target);
66 }
67}
68
02e9ef74 69sub _accessor_maker_for {
70 my ($class, $target) = @_;
71 return unless $MAKERS{$target};
72 $MAKERS{$target}{accessor} ||= do {
73 my $maker_class = do {
74 if (my $m = do {
75 if (my $defer_target =
76 (Sub::Defer::defer_info($target->can('new'))||[])->[0]
77 ) {
78 my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
79 $MAKERS{$pkg} && $MAKERS{$pkg}{accessor};
80 } else {
81 undef;
82 }
83 }) {
84 ref($m);
85 } else {
86 require Method::Generate::Accessor;
87 'Method::Generate::Accessor'
88 }
89 };
90 $maker_class->new;
91 }
92}
93
a16d301e 94sub _constructor_maker_for {
c4570291 95 my ($class, $target, $select_super) = @_;
a16d301e 96 return unless $MAKERS{$target};
97 $MAKERS{$target}{constructor} ||= do {
faa9ce11 98 require Method::Generate::Constructor;
99 require Sub::Defer;
c4570291 100 my ($moo_constructor, $con);
de5c0e53 101
c4570291 102 if ($select_super && $MAKERS{$select_super}) {
103 $moo_constructor = 1;
104 $con = $MAKERS{$select_super}{constructor};
105 } else {
de5c0e53 106 my $t_new = $target->can('new');
c4570291 107 if ($t_new) {
108 if ($t_new == Moo::Object->can('new')) {
109 $moo_constructor = 1;
110 } elsif (my $defer_target = (Sub::Defer::defer_info($t_new)||[])->[0]) {
111 my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
112 if ($MAKERS{$pkg}) {
113 $moo_constructor = 1;
114 $con = $MAKERS{$pkg}{constructor};
115 }
116 }
117 } else {
118 $moo_constructor = 1; # no other constructor, make a Moo one
119 }
de5c0e53 120 };
02e9ef74 121 ($con ? ref($con) : 'Method::Generate::Constructor')
a16d301e 122 ->new(
123 package => $target,
02e9ef74 124 accessor_generator => $class->_accessor_maker_for($target),
53875e2c 125 construction_string => (
126 $moo_constructor
127 ? ($con ? $con->construction_string : undef)
128 : ('$class->'.$target.'::SUPER::new(@_)')
e0e12d16 129 ),
76ab3977 130 subconstructor_handler => (
131 ' if ($Moo::MAKERS{$class}) {'."\n"
132 .' '.$class.'->_constructor_maker_for($class,'.perlstring($target).');'."\n"
133 .' return $class->new(@_)'.";\n"
134 .' }'."\n"
e0e12d16 135 ),
a16d301e 136 )
137 ->install_delayed
de5c0e53 138 ->register_attribute_specs(%{$con?$con->all_attribute_specs:{}})
a16d301e 139 }
140}
141
6c74d087 1421;
a17be455 143=pod
144
145=encoding utf-8
8146585e 146
505f8b7a 147=head1 NAME
148
149Moo - Minimalist Object Orientation (with Moose compatiblity)
150
8146585e 151=head1 SYNOPSIS
152
153 package Cat::Food;
154
155 use Moo;
156 use Sub::Quote;
157
158 sub feed_lion {
159 my $self = shift;
160 my $amount = shift || 1;
161
162 $self->pounds( $self->pounds - $amount );
163 }
164
165 has taste => (
166 is => 'ro',
167 );
168
169 has brand => (
170 is => 'ro',
171 isa => sub {
172 die "Only SWEET-TREATZ supported!" unless $_[0] eq 'SWEET-TREATZ'
173 },
174);
175
176 has pounds => (
177 is => 'rw',
178 isa => quote_sub q{ die "$_[0] is too much cat food!" unless $_[0] < 15 },
179 );
180
181 1;
182
183and else where
184
185 my $full = Cat::Food->new(
186 taste => 'DELICIOUS.',
187 brand => 'SWEET-TREATZ',
188 pounds => 10,
189 );
190
191 $full->feed_lion;
192
193 say $full->pounds;
194
195=head1 DESCRIPTION
196
197This module is an extremely light-weight, high-performance L<Moose> replacement.
198It also avoids depending on any XS modules to allow simple deployments. The
199name C<Moo> is based on the idea that it provides almost -but not quite- two
200thirds of L<Moose>.
201
202Unlike C<Mouse> this module does not aim at full L<Moose> compatibility. See
203L</INCOMPATIBILITIES> for more details.
204
5d5bb71d 205=head1 WHY MOO EXISTS
206
207If you want a full object system with a rich Metaprotocol, L<Moose> is
208already wonderful.
209
210I've tried several times to use L<Mouse> but it's 3x the size of Moo and
211takes longer to load than most of my Moo based CGI scripts take to run.
212
213If you don't want L<Moose>, you don't want "less metaprotocol" like L<Mouse>,
214you want "as little as possible" - which means "no metaprotocol", which is
215what Moo provides.
216
217By Moo 1.0 I intend to have Moo's equivalent of L<Any::Moose> built in -
218if Moose gets loaded, any Moo class or role will act as a Moose equivalent
219if treated as such.
220
221Hence - Moo exists as its name - Minimal Object Orientation - with a pledge
222to make it smooth to upgrade to L<Moose> when you need more than minimal
223features.
224
1fce5bc9 225=head1 Moo and Moose - NEW, EXPERIMENTAL
226
227If L<Moo> detects L<Moose> being loaded, it will automatically register
228metaclasses for your L<Moo> and L<Moo::Role> packages, so you should be able
229to use them in L<Moose> code without it ever realising you aren't using
230L<Moose> everywhere.
231
232Extending a L<Moose> class or consuming a L<Moose::Role> should also work.
233
660f3db2 234This means that there is no need for anything like L<Any::Moose> for Moo
235code - Moo and Moose code should simply interoperate without problem.
236
237However, these features are new as of 0.91.0 (0.091000) so while serviceable,
238they are absolutely certain to not be 100% yet; please do report bugs.
1fce5bc9 239
240If you need to disable the metaclass creation, add:
241
242 no Moo::sification;
243
244to your code before Moose is loaded, but bear in mind that this switch is
245currently global and turns the mechanism off entirely, so don't put this
246in library code, only in a top level script as a temporary measure while
247you send a bug report.
248
8146585e 249=head1 IMPORTED METHODS
250
251=head2 new
252
253 Foo::Bar->new( attr1 => 3 );
254
255or
256
257 Foo::Bar->new({ attr1 => 3 });
258
2e575bcd 259=head2 BUILDARGS
260
f2eac33e 261 sub BUILDARGS {
a17be455 262 my ( $class, @args ) = @_;
263
264 unshift @args, "attr1" if @args % 2 == 1;
265
f2eac33e 266 return { @args };
a17be455 267 };
268
269 Foo::Bar->new( 3 );
270
271The default implementation of this method accepts a hash or hash reference of
272named parameters. If it receives a single argument that isn't a hash reference
273it throws an error.
274
275You can override this method in your class to handle other types of options
276passed to the constructor.
277
278This method should always return a hash reference of named options.
2e575bcd 279
2d00f3d6 280=head2 BUILD
8146585e 281
2d00f3d6 282Define a C<BUILD> method on your class and the constructor will automatically
283call the C<BUILD> method from parent down to child after the object has
284been instantiated. Typically this is used for object validation or possibly
285logging.
8146585e 286
2d00f3d6 287=head2 DEMOLISH
c2cc003f 288
debb3fcd 289If you have a C<DEMOLISH> method anywhere in your inheritance hierarchy,
290a C<DESTROY> method is created on first object construction which will call
c2cc003f 291C<< $instance->DEMOLISH($in_global_destruction) >> for each C<DEMOLISH>
debb3fcd 292method from child upwards to parents.
293
294Note that the C<DESTROY> method is created on first construction of an object
295of your class in order to not add overhead to classes without C<DEMOLISH>
296methods; this may prove slightly surprising if you try and define your own.
c2cc003f 297
8146585e 298=head2 does
299
300 if ($foo->does('Some::Role1')) {
301 ...
302 }
303
304Returns true if the object composes in the passed role.
305
306=head1 IMPORTED SUBROUTINES
307
308=head2 extends
309
310 extends 'Parent::Class';
311
2e575bcd 312Declares base class. Multiple superclasses can be passed for multiple
313inheritance (but please use roles instead).
314
315Calling extends more than once will REPLACE your superclasses, not add to
316them like 'use base' would.
8146585e 317
318=head2 with
319
320 with 'Some::Role1';
8146585e 321
f9755246 322or
323
324 with 'Some::Role1', 'Some::Role2';
325
326Composes one or more L<Moo::Role> (or L<Role::Tiny>) roles into the current
327class. An error will be raised if these roles have conflicting methods.
8146585e 328
329=head2 has
330
331 has attr => (
332 is => 'ro',
333 );
334
335Declares an attribute for the class.
336
337The options for C<has> are as follows:
338
339=over 2
340
341=item * is
342
71db76ce 343B<required>, may be C<ro>, C<rw>, C<lazy> or C<rwp>.
344
345C<ro> generates an accessor that dies if you attempt to write to it - i.e.
346a getter only - by defaulting C<reader> to the name of the attribute.
347
348C<rw> generates a normal getter/setter by defauting C<accessor> to the
349name of the attribute.
350
351C<lazy> generates a reader like C<ro>, but also sets C<lazy> to 1 and
352C<builder> to C<_build_${attribute_name}> to allow on-demand generated
353attributes. This feature was my attempt to fix my incompetence when
354originally designing C<lazy_build>, and is also implemented by
355L<MooseX::AttributeShortcuts>.
356
357C<rwp> generates a reader like C<ro>, but also sets C<writer> to
358C<_set_${attribute_name}> for attributes that are designed to be written
359from inside of the class, but read-only from outside.
360This feature comes from L<MooseX::AttributeShortcuts>.
8146585e 361
362=item * isa
363
364Takes a coderef which is meant to validate the attribute. Unlike L<Moose> Moo
365does not include a basic type system, so instead of doing C<< isa => 'Num' >>,
366one should do
367
368 isa => quote_sub q{
369 die "$_[0] is not a number!" unless looks_like_number $_[0]
370 },
371
372L<Sub::Quote aware|/SUB QUOTE AWARE>
373
71db76ce 374If you want L<MooseX::Types> style named types, look at
375L<MooX::Types::MooseLike>.
376
377To cause your C<isa> entries to be automatically mapped to named
378L<Moose::Meta::TypeConstraint> objects (rather than the default behaviour
379of creating an anonymous type), set:
380
381 $Moo::HandleMoose::TYPE_MAP{$isa_coderef} = sub {
382 require MooseX::Types::Something;
383 return MooseX::Types::Something::TypeName();
384 };
385
386Note that this example is purely illustrative; anything that returns a
387L<Moose::Meta::TypeConstraint> object or something similar enough to it to
388make L<Moose> happy is fine.
389
8146585e 390=item * coerce
391
392Takes a coderef which is meant to coerce the attribute. The basic idea is to
393do something like the following:
394
395 coerce => quote_sub q{
396 $_[0] + 1 unless $_[0] % 2
397 },
398
71db76ce 399Coerce does not require C<isa> to be defined, but since L<Moose> does
400require it, the metaclass inflation for coerce-alone is a trifle insane
401and if you attempt to subtype the result will almost certainly break.
8146585e 402
23a3e34e 403L<Sub::Quote aware|/SUB QUOTE AWARE>
2e575bcd 404
e1efec09 405=item * handles
406
407Takes a string
408
69673ca7 409 handles => 'RobotRole'
410
411Where C<RobotRole> is a role (L<Moo::Role>) that defines an interface which
412becomes the list of methods to handle.
e1efec09 413
414Takes a list of methods
415
416 handles => [ qw( one two ) ]
417
418Takes a hashref
419
420 handles => {
421 un => 'one',
422 }
423
8146585e 424=item * trigger
425
6fe5100d 426Takes a coderef which will get called any time the attribute is set. This
427includes the constructor. Coderef will be invoked against the object with the
428new value as an argument.
8146585e 429
71db76ce 430If you set this to just C<1>, it generates a trigger which calls the
431C<_trigger_${attr_name}> method on C<$self>. This feature comes from
432L<MooseX::AttributeShortcuts>.
433
2e575bcd 434Note that Moose also passes the old value, if any; this feature is not yet
435supported.
436
8146585e 437L<Sub::Quote aware|/SUB QUOTE AWARE>
438
439=item * default
440
2e575bcd 441Takes a coderef which will get called with $self as its only argument
442to populate an attribute if no value is supplied to the constructor - or
443if the attribute is lazy, when the attribute is first retrieved if no
444value has yet been provided.
445
446Note that if your default is fired during new() there is no guarantee that
447other attributes have been populated yet so you should not rely on their
448existence.
8146585e 449
450L<Sub::Quote aware|/SUB QUOTE AWARE>
451
452=item * predicate
453
2e575bcd 454Takes a method name which will return true if an attribute has a value.
8146585e 455
71db76ce 456If you set this to just C<1>, the predicate is automatically named
457C<has_${attr_name}> if your attribute's name does not start with an
458underscore, or <_has_${attr_name_without_the_underscore}> if it does.
459This feature comes from L<MooseX::AttributeShortcuts>.
8146585e 460
461=item * builder
462
2e575bcd 463Takes a method name which will be called to create the attribute - functions
464exactly like default except that instead of calling
465
466 $default->($self);
467
468Moo will call
469
470 $self->$builder;
8146585e 471
71db76ce 472If you set this to just C<1>, the predicate is automatically named
473C<_build_${attr_name}>. This feature comes from L<MooseX::AttributeShortcuts>.
474
8146585e 475=item * clearer
476
477Takes a method name which will clear the attribute.
478
71db76ce 479If you set this to just C<1>, the clearer is automatically named
480C<clear_${attr_name}> if your attribute's name does not start with an
481underscore, or <_clear_${attr_name_without_the_underscore}> if it does.
482This feature comes from L<MooseX::AttributeShortcuts>.
483
8146585e 484=item * lazy
485
486B<Boolean>. Set this if you want values for the attribute to be grabbed
487lazily. This is usually a good idea if you have a L</builder> which requires
488another attribute to be set.
489
490=item * required
491
492B<Boolean>. Set this if the attribute must be passed on instantiation.
493
1eba910c 494=item * reader
495
496The value of this attribute will be the name of the method to get the value of
497the attribute. If you like Java style methods, you might set this to
498C<get_foo>
499
500=item * writer
501
502The value of this attribute will be the name of the method to set the value of
503the attribute. If you like Java style methods, you might set this to
504C<set_foo>
505
8146585e 506=item * weak_ref
507
508B<Boolean>. Set this if you want the reference that the attribute contains to
509be weakened; use this when circular references are possible, which will cause
510leaks.
511
512=item * init_arg
513
514Takes the name of the key to look for at instantiation time of the object. A
515common use of this is to make an underscored attribute have a non-underscored
516initialization name. C<undef> means that passing the value in on instantiation
71db76ce 517is ignored.
8146585e 518
519=back
520
521=head2 before
522
523 before foo => sub { ... };
524
525See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
526documentation.
527
528=head2 around
529
530 around foo => sub { ... };
531
532See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
533documentation.
534
535=head2 after
536
537 after foo => sub { ... };
538
539See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
540documentation.
541
8146585e 542=head1 SUB QUOTE AWARE
543
544L<Sub::Quote/quote_sub> allows us to create coderefs that are "inlineable,"
545giving us a handy, XS-free speed boost. Any option that is L<Sub::Quote>
546aware can take advantage of this.
547
2e575bcd 548=head1 INCOMPATIBILITIES WITH MOOSE
8146585e 549
5902c1fc 550There is no built in type system. C<isa> is verified with a coderef, if you
8146585e 551need complex types, just make a library of coderefs, or better yet, functions
5902c1fc 552that return quoted subs. L<MooX::Types::MooseLike> provides a similar API
553to L<MooseX::Types::Moose> so that you can write
554
555 has days_to_live => (is => 'ro', isa => Int);
556
557and have it work with both; it is hoped that providing only subrefs as an
558API will encourage the use of other type systems as well, since it's
559probably the weakest part of Moose design-wise.
8146585e 560
2e575bcd 561C<initializer> is not supported in core since the author considers it to be a
f88623a1 562bad idea but may be supported by an extension in future. Meanwhile C<trigger> or
563C<coerce> are more likely to be able to fulfill your needs.
8146585e 564
565There is no meta object. If you need this level of complexity you wanted
2e575bcd 566L<Moose> - Moo succeeds at being small because it explicitly does not
f9755246 567provide a metaprotocol. However, if you load L<Moose>, then
568
569 Class::MOP::class_of($moo_class_or_role)
570
571will return an appropriate metaclass pre-populated by L<Moo>.
8146585e 572
2e575bcd 573No support for C<super>, C<override>, C<inner>, or C<augment> - override can
574be handled by around albeit with a little more typing, and the author considers
575augment to be a bad idea.
8146585e 576
f2eac33e 577The C<dump> method is not provided by default. The author suggests loading
c96a6326 578L<Devel::Dwarn> into C<main::> (via C<perl -MDevel::Dwarn ...> for example) and
579using C<$obj-E<gt>$::Dwarn()> instead.
580
8146585e 581L</default> only supports coderefs, because doing otherwise is usually a
582mistake anyway.
583
f9755246 584C<lazy_build> is not supported; you are instead encouraged to use the
585C<is => 'lazy'> option supported by L<Moo> and L<MooseX::AttributeShortcuts>.
8146585e 586
2e575bcd 587C<auto_deref> is not supported since the author considers it a bad idea.
8146585e 588
f9755246 589C<documentation> will show up in a L<Moose> metaclass created from your class
590but is otherwise ignored. Then again, L<Moose> ignors it as well, so this
591is arguably not an incompatibility.
40f3e3aa 592
69673ca7 593Handling of warnings: when you C<use Moo> we enable FATAL warnings. The nearest
594similar invocation for L<Moose> would be:
595
596 use Moose;
597 use warnings FATAL => "all";
598
599Additionally, L<Moo> supports a set of attribute option shortcuts intended to
600reduce common boilerplate. The set of shortcuts is the same as in the L<Moose>
239d4711 601module L<MooseX::AttributeShortcuts> as of its version 0.009+. So if you:
69673ca7 602
603 package MyClass;
604 use Moo;
605
606The nearest L<Moose> invocation would be:
607
608 package MyClass;
609
610 use Moose;
611 use warnings FATAL => "all";
612 use MooseX::AttributeShortcuts;
613
5902c1fc 614or, if you're inheriting from a non-Moose class,
615
616 package MyClass;
617
618 use Moose;
619 use MooseX::NonMoose;
620 use warnings FATAL => "all";
621 use MooseX::AttributeShortcuts;
622
623Finally, Moose requires you to call
624
625 __PACKAGE__->meta->make_immutable;
626
627at the end of your class to get an inlined (i.e. not horribly slow)
628constructor. Moo does it automatically the first time ->new is called
629on your class.
630
660f3db2 631=head1 SUPPORT
632
633IRC: #web-simple on irc.perl.org
634
40f3e3aa 635=head1 AUTHOR
636
637mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
638
639=head1 CONTRIBUTORS
640
5da684a2 641dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
642
643frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
644
645hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
646
647jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
648
649ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
40f3e3aa 650
11f7a042 651chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
652
a17be455 653ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
654
7b8177f8 655doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
656
1fb2de92 657perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
658
40f3e3aa 659=head1 COPYRIGHT
660
a958e36d 661Copyright (c) 2010-2011 the Moo L</AUTHOR> and L</CONTRIBUTORS>
40f3e3aa 662as listed above.
663
664=head1 LICENSE
665
666This library is free software and may be distributed under the same terms
667as perl itself.
668
669=cut