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