correct Sub::Quote docs
[gitmo/Moo.git] / lib / Moo.pm
CommitLineData
b1eebd55 1package Moo;
6c74d087 2
3use strictures 1;
b1eebd55 4use Moo::_Utils;
6c74d087 5
6d71fae7 6our $VERSION = '0.009001'; # 0.9.1
7$VERSION = eval $VERSION;
8
14f32032 9our %MAKERS;
10
6c74d087 11sub import {
12 my $target = caller;
a16d301e 13 my $class = shift;
de3d4906 14 strictures->import;
1ba11455 15 return if $MAKERS{$target}; # already exported into this package
6c74d087 16 *{_getglob("${target}::extends")} = sub {
fb5074f6 17 _load_module($_) for @_;
6c74d087 18 *{_getglob("${target}::ISA")} = \@_;
19 };
20 *{_getglob("${target}::with")} = sub {
b1eebd55 21 require Moo::Role;
6c74d087 22 die "Only one role supported at a time by with" if @_ > 1;
b1eebd55 23 Moo::Role->apply_role_to_package($_[0], $target);
6c74d087 24 };
a16d301e 25 $MAKERS{$target} = {};
14f32032 26 *{_getglob("${target}::has")} = sub {
27 my ($name, %spec) = @_;
28 ($MAKERS{$target}{accessor} ||= do {
29 require Method::Generate::Accessor;
30 Method::Generate::Accessor->new
31 })->generate_method($target, $name, \%spec);
a16d301e 32 $class->_constructor_maker_for($target)
33 ->register_attribute_specs($name, \%spec);
14f32032 34 };
6c74d087 35 foreach my $type (qw(before after around)) {
36 *{_getglob "${target}::${type}"} = sub {
dccea57d 37 require Class::Method::Modifiers;
6c74d087 38 _install_modifier($target, $type, @_);
39 };
40 }
41 {
42 no strict 'refs';
43 @{"${target}::ISA"} = do {
b1eebd55 44 require Moo::Object; ('Moo::Object');
6c74d087 45 } unless @{"${target}::ISA"};
46 }
47}
48
a16d301e 49sub _constructor_maker_for {
50 my ($class, $target) = @_;
51 return unless $MAKERS{$target};
52 $MAKERS{$target}{constructor} ||= do {
53 require Method::Generate::Constructor;
54 Method::Generate::Constructor
55 ->new(
56 package => $target,
57 accessor_generator => do {
58 require Method::Generate::Accessor;
59 Method::Generate::Accessor->new;
60 }
61 )
62 ->install_delayed
63 ->register_attribute_specs(do {
64 my @spec;
5d349892 65 # using the -last- entry in @ISA means that classes created by
66 # Role::Tiny as N roles + superclass will still get the attributes
67 # from the superclass
098a367b 68 if (my $super = do { no strict 'refs'; ${"${target}::ISA"}[-1] }) {
a16d301e 69 if (my $con = $MAKERS{$super}{constructor}) {
70 @spec = %{$con->all_attribute_specs};
71 }
72 }
73 @spec;
74 });
75 }
76}
77
6c74d087 781;
8146585e 79
80=pod
81
82=head1 SYNOPSIS
83
84 package Cat::Food;
85
86 use Moo;
87 use Sub::Quote;
88
89 sub feed_lion {
90 my $self = shift;
91 my $amount = shift || 1;
92
93 $self->pounds( $self->pounds - $amount );
94 }
95
96 has taste => (
97 is => 'ro',
98 );
99
100 has brand => (
101 is => 'ro',
102 isa => sub {
103 die "Only SWEET-TREATZ supported!" unless $_[0] eq 'SWEET-TREATZ'
104 },
105);
106
107 has pounds => (
108 is => 'rw',
109 isa => quote_sub q{ die "$_[0] is too much cat food!" unless $_[0] < 15 },
110 );
111
112 1;
113
114and else where
115
116 my $full = Cat::Food->new(
117 taste => 'DELICIOUS.',
118 brand => 'SWEET-TREATZ',
119 pounds => 10,
120 );
121
122 $full->feed_lion;
123
124 say $full->pounds;
125
126=head1 DESCRIPTION
127
128This module is an extremely light-weight, high-performance L<Moose> replacement.
129It also avoids depending on any XS modules to allow simple deployments. The
130name C<Moo> is based on the idea that it provides almost -but not quite- two
131thirds of L<Moose>.
132
133Unlike C<Mouse> this module does not aim at full L<Moose> compatibility. See
134L</INCOMPATIBILITIES> for more details.
135
136=head1 IMPORTED METHODS
137
138=head2 new
139
140 Foo::Bar->new( attr1 => 3 );
141
142or
143
144 Foo::Bar->new({ attr1 => 3 });
145
146=head2 BUILDALL
147
148Don't override (or probably even call) this method. Instead, you can define
149a C<BUILD> method on your class and the constructor will automatically call the
150C<BUILD> method from parent down to child after the object has been
151instantiated. Typically this is used for object validation or possibly logging.
152
153=head2 does
154
155 if ($foo->does('Some::Role1')) {
156 ...
157 }
158
159Returns true if the object composes in the passed role.
160
161=head1 IMPORTED SUBROUTINES
162
163=head2 extends
164
165 extends 'Parent::Class';
166
167Declares base class
168
169=head2 with
170
171 with 'Some::Role1';
172 with 'Some::Role2';
173
174Composes a L<Role::Tiny> into current class. Only one role may be composed in
175at a time to allow the code to remain as simple as possible.
176
177=head2 has
178
179 has attr => (
180 is => 'ro',
181 );
182
183Declares an attribute for the class.
184
185The options for C<has> are as follows:
186
187=over 2
188
189=item * is
190
191B<required>, must be C<ro> or C<rw>. Unsurprisingly, C<ro> generates an
192accessor that will not respond to arguments; to be clear: a setter only. C<rw>
193will create a perlish getter/setter.
194
195=item * isa
196
197Takes a coderef which is meant to validate the attribute. Unlike L<Moose> Moo
198does not include a basic type system, so instead of doing C<< isa => 'Num' >>,
199one should do
200
201 isa => quote_sub q{
202 die "$_[0] is not a number!" unless looks_like_number $_[0]
203 },
204
205L<Sub::Quote aware|/SUB QUOTE AWARE>
206
207=item * coerce
208
209Takes a coderef which is meant to coerce the attribute. The basic idea is to
210do something like the following:
211
212 coerce => quote_sub q{
213 $_[0] + 1 unless $_[0] % 2
214 },
215
216L<Sub::Quote aware|/SUB QUOTE AWARE>
217
218=item * trigger
219
220Takes a coderef which will get called any time the attribute is set. Coderef
221will be invoked against the object with the new value as an argument.
222
223L<Sub::Quote aware|/SUB QUOTE AWARE>
224
225=item * default
226
227Takes a coderef which will get called to populate an attribute.
228
229L<Sub::Quote aware|/SUB QUOTE AWARE>
230
231=item * predicate
232
233Takes a method name which will return true if an attribute has been set.
234
235A common example of this would be to call it C<has_$foo>, implying that the
236object has a C<$foo> set.
237
238=item * builder
239
240Takes a method name which will be called to create the attribute.
241
242=item * clearer
243
244Takes a method name which will clear the attribute.
245
246=item * lazy
247
248B<Boolean>. Set this if you want values for the attribute to be grabbed
249lazily. This is usually a good idea if you have a L</builder> which requires
250another attribute to be set.
251
252=item * required
253
254B<Boolean>. Set this if the attribute must be passed on instantiation.
255
256=item * weak_ref
257
258B<Boolean>. Set this if you want the reference that the attribute contains to
259be weakened; use this when circular references are possible, which will cause
260leaks.
261
262=item * init_arg
263
264Takes the name of the key to look for at instantiation time of the object. A
265common use of this is to make an underscored attribute have a non-underscored
266initialization name. C<undef> means that passing the value in on instantiation
267
268=back
269
270=head2 before
271
272 before foo => sub { ... };
273
274See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
275documentation.
276
277=head2 around
278
279 around foo => sub { ... };
280
281See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
282documentation.
283
284=head2 after
285
286 after foo => sub { ... };
287
288See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
289documentation.
290
291
292=head1 SUB QUOTE AWARE
293
294L<Sub::Quote/quote_sub> allows us to create coderefs that are "inlineable,"
295giving us a handy, XS-free speed boost. Any option that is L<Sub::Quote>
296aware can take advantage of this.
297
298=head1 INCOMPATIBILITIES
299
300You can only compose one role at a time. If your application is large or
301complex enough to warrant complex composition, you wanted L<Moose>.
302
303There is no complex type system. C<isa> is verified with a coderef, if you
304need complex types, just make a library of coderefs, or better yet, functions
305that return quoted subs.
306
307C<initializer> is not supported in core, but with an extension it is supported.
308
309There is no meta object. If you need this level of complexity you wanted
310L<Moose>.
311
312No support for C<super>, C<override>, C<inner>, or C<augment>.
313
314L</default> only supports coderefs, because doing otherwise is usually a
315mistake anyway.
316
317C<lazy_build> is not supported per se, but of course it will work if you
318manually set all the options it implies.
319
320C<auto_deref> is not supported.
321
322C<documentation> is not supported.