improve docs for isa and coerce
[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
c4074652 374Since L<Moo> does B<not> run the C<isa> check before C<coerce> if a coercion
375subroutine has been supplied, C<isa> checks are not structural to your code
376and can, if desired, be omitted on non-debug builds (although if this results
377in an uncaught bug causing your program to break, the L<Moo> authors guarantee
378nothing except that you get to keep both halves).
379
71db76ce 380If you want L<MooseX::Types> style named types, look at
381L<MooX::Types::MooseLike>.
382
383To cause your C<isa> entries to be automatically mapped to named
384L<Moose::Meta::TypeConstraint> objects (rather than the default behaviour
385of creating an anonymous type), set:
386
387 $Moo::HandleMoose::TYPE_MAP{$isa_coderef} = sub {
388 require MooseX::Types::Something;
389 return MooseX::Types::Something::TypeName();
390 };
391
392Note that this example is purely illustrative; anything that returns a
393L<Moose::Meta::TypeConstraint> object or something similar enough to it to
394make L<Moose> happy is fine.
395
8146585e 396=item * coerce
397
398Takes a coderef which is meant to coerce the attribute. The basic idea is to
399do something like the following:
400
401 coerce => quote_sub q{
402 $_[0] + 1 unless $_[0] % 2
403 },
404
c4074652 405Note that L<Moo> will always fire your coercion - this is to permit
406isa entries to be used purely for bug trapping, whereas coercions are
407always structural to your code. We do, however, apply any supplied C<isa>
408check after the coercion has run to ensure that it returned a valid value.
8146585e 409
23a3e34e 410L<Sub::Quote aware|/SUB QUOTE AWARE>
2e575bcd 411
e1efec09 412=item * handles
413
414Takes a string
415
69673ca7 416 handles => 'RobotRole'
417
418Where C<RobotRole> is a role (L<Moo::Role>) that defines an interface which
419becomes the list of methods to handle.
e1efec09 420
421Takes a list of methods
422
423 handles => [ qw( one two ) ]
424
425Takes a hashref
426
427 handles => {
428 un => 'one',
429 }
430
8146585e 431=item * trigger
432
6fe5100d 433Takes a coderef which will get called any time the attribute is set. This
434includes the constructor. Coderef will be invoked against the object with the
435new value as an argument.
8146585e 436
71db76ce 437If you set this to just C<1>, it generates a trigger which calls the
438C<_trigger_${attr_name}> method on C<$self>. This feature comes from
439L<MooseX::AttributeShortcuts>.
440
2e575bcd 441Note that Moose also passes the old value, if any; this feature is not yet
442supported.
443
8146585e 444L<Sub::Quote aware|/SUB QUOTE AWARE>
445
446=item * default
447
2e575bcd 448Takes a coderef which will get called with $self as its only argument
449to populate an attribute if no value is supplied to the constructor - or
450if the attribute is lazy, when the attribute is first retrieved if no
451value has yet been provided.
452
453Note that if your default is fired during new() there is no guarantee that
454other attributes have been populated yet so you should not rely on their
455existence.
8146585e 456
457L<Sub::Quote aware|/SUB QUOTE AWARE>
458
459=item * predicate
460
2e575bcd 461Takes a method name which will return true if an attribute has a value.
8146585e 462
71db76ce 463If you set this to just C<1>, the predicate is automatically named
464C<has_${attr_name}> if your attribute's name does not start with an
465underscore, or <_has_${attr_name_without_the_underscore}> if it does.
466This feature comes from L<MooseX::AttributeShortcuts>.
8146585e 467
468=item * builder
469
2e575bcd 470Takes a method name which will be called to create the attribute - functions
471exactly like default except that instead of calling
472
473 $default->($self);
474
475Moo will call
476
477 $self->$builder;
8146585e 478
71db76ce 479If you set this to just C<1>, the predicate is automatically named
480C<_build_${attr_name}>. This feature comes from L<MooseX::AttributeShortcuts>.
481
8146585e 482=item * clearer
483
484Takes a method name which will clear the attribute.
485
71db76ce 486If you set this to just C<1>, the clearer is automatically named
487C<clear_${attr_name}> if your attribute's name does not start with an
488underscore, or <_clear_${attr_name_without_the_underscore}> if it does.
489This feature comes from L<MooseX::AttributeShortcuts>.
490
8146585e 491=item * lazy
492
493B<Boolean>. Set this if you want values for the attribute to be grabbed
494lazily. This is usually a good idea if you have a L</builder> which requires
495another attribute to be set.
496
497=item * required
498
499B<Boolean>. Set this if the attribute must be passed on instantiation.
500
1eba910c 501=item * reader
502
503The value of this attribute will be the name of the method to get the value of
504the attribute. If you like Java style methods, you might set this to
505C<get_foo>
506
507=item * writer
508
509The value of this attribute will be the name of the method to set the value of
510the attribute. If you like Java style methods, you might set this to
511C<set_foo>
512
8146585e 513=item * weak_ref
514
515B<Boolean>. Set this if you want the reference that the attribute contains to
516be weakened; use this when circular references are possible, which will cause
517leaks.
518
519=item * init_arg
520
521Takes the name of the key to look for at instantiation time of the object. A
522common use of this is to make an underscored attribute have a non-underscored
523initialization name. C<undef> means that passing the value in on instantiation
71db76ce 524is ignored.
8146585e 525
526=back
527
528=head2 before
529
530 before foo => sub { ... };
531
532See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
533documentation.
534
535=head2 around
536
537 around foo => sub { ... };
538
539See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
540documentation.
541
542=head2 after
543
544 after foo => sub { ... };
545
546See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
547documentation.
548
8146585e 549=head1 SUB QUOTE AWARE
550
551L<Sub::Quote/quote_sub> allows us to create coderefs that are "inlineable,"
552giving us a handy, XS-free speed boost. Any option that is L<Sub::Quote>
553aware can take advantage of this.
554
2e575bcd 555=head1 INCOMPATIBILITIES WITH MOOSE
8146585e 556
5902c1fc 557There is no built in type system. C<isa> is verified with a coderef, if you
8146585e 558need complex types, just make a library of coderefs, or better yet, functions
5902c1fc 559that return quoted subs. L<MooX::Types::MooseLike> provides a similar API
560to L<MooseX::Types::Moose> so that you can write
561
562 has days_to_live => (is => 'ro', isa => Int);
563
564and have it work with both; it is hoped that providing only subrefs as an
565API will encourage the use of other type systems as well, since it's
566probably the weakest part of Moose design-wise.
8146585e 567
2e575bcd 568C<initializer> is not supported in core since the author considers it to be a
f88623a1 569bad idea but may be supported by an extension in future. Meanwhile C<trigger> or
570C<coerce> are more likely to be able to fulfill your needs.
8146585e 571
572There is no meta object. If you need this level of complexity you wanted
2e575bcd 573L<Moose> - Moo succeeds at being small because it explicitly does not
f9755246 574provide a metaprotocol. However, if you load L<Moose>, then
575
576 Class::MOP::class_of($moo_class_or_role)
577
578will return an appropriate metaclass pre-populated by L<Moo>.
8146585e 579
2e575bcd 580No support for C<super>, C<override>, C<inner>, or C<augment> - override can
581be handled by around albeit with a little more typing, and the author considers
582augment to be a bad idea.
8146585e 583
f2eac33e 584The C<dump> method is not provided by default. The author suggests loading
c96a6326 585L<Devel::Dwarn> into C<main::> (via C<perl -MDevel::Dwarn ...> for example) and
586using C<$obj-E<gt>$::Dwarn()> instead.
587
8146585e 588L</default> only supports coderefs, because doing otherwise is usually a
589mistake anyway.
590
f9755246 591C<lazy_build> is not supported; you are instead encouraged to use the
592C<is => 'lazy'> option supported by L<Moo> and L<MooseX::AttributeShortcuts>.
8146585e 593
2e575bcd 594C<auto_deref> is not supported since the author considers it a bad idea.
8146585e 595
f9755246 596C<documentation> will show up in a L<Moose> metaclass created from your class
c4074652 597but is otherwise ignored. Then again, L<Moose> ignores it as well, so this
f9755246 598is arguably not an incompatibility.
40f3e3aa 599
c4074652 600Since C<coerce> does not require C<isa> to be defined but L<Moose> does
601require it, the metaclass inflation for coerce-alone is a trifle insane
602and if you attempt to subtype the result will almost certainly break.
603
69673ca7 604Handling of warnings: when you C<use Moo> we enable FATAL warnings. The nearest
605similar invocation for L<Moose> would be:
606
607 use Moose;
608 use warnings FATAL => "all";
609
610Additionally, L<Moo> supports a set of attribute option shortcuts intended to
611reduce common boilerplate. The set of shortcuts is the same as in the L<Moose>
239d4711 612module L<MooseX::AttributeShortcuts> as of its version 0.009+. So if you:
69673ca7 613
614 package MyClass;
615 use Moo;
616
617The nearest L<Moose> invocation would be:
618
619 package MyClass;
620
621 use Moose;
622 use warnings FATAL => "all";
623 use MooseX::AttributeShortcuts;
624
5902c1fc 625or, if you're inheriting from a non-Moose class,
626
627 package MyClass;
628
629 use Moose;
630 use MooseX::NonMoose;
631 use warnings FATAL => "all";
632 use MooseX::AttributeShortcuts;
633
634Finally, Moose requires you to call
635
636 __PACKAGE__->meta->make_immutable;
637
638at the end of your class to get an inlined (i.e. not horribly slow)
639constructor. Moo does it automatically the first time ->new is called
640on your class.
641
660f3db2 642=head1 SUPPORT
643
644IRC: #web-simple on irc.perl.org
645
40f3e3aa 646=head1 AUTHOR
647
648mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
649
650=head1 CONTRIBUTORS
651
5da684a2 652dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
653
654frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
655
656hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
657
658jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
659
660ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
40f3e3aa 661
11f7a042 662chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
663
a17be455 664ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
665
7b8177f8 666doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
667
1fb2de92 668perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
669
40f3e3aa 670=head1 COPYRIGHT
671
a958e36d 672Copyright (c) 2010-2011 the Moo L</AUTHOR> and L</CONTRIBUTORS>
40f3e3aa 673as listed above.
674
675=head1 LICENSE
676
677This library is free software and may be distributed under the same terms
678as perl itself.
679
680=cut