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