Moose::Cookbook::FAQ:
[gitmo/Moose.git] / lib / Moose / Cookbook / FAQ.pod
CommitLineData
e67a0fca 1
2=pod
3
4=head1 NAME
5
4711f5f7 6Moose::Cookbook::FAQ - Frequently asked questions about Moose
e67a0fca 7
8=head1 FREQUENTLY ASKED QUESTIONS
9
2a0f3bd3 10=head2 Module Stability
11
12=head3 Is Moose "production ready"?
13
734d1752 14Yes. I have two medium-to-large-ish web applications in
15production using Moose, they have been running without
16issue now for almost a year.
17
18At $work we are re-writing our core offering to use Moose,
19so it's continued development is assured.
20
21Several other people on #moose either have apps in production
22which use Moose, or are in the process of deploying sites
23which use Moose.
2a0f3bd3 24
25=head3 Is Moose's API stable?
26
27Yes and No. The external API, the one 90% of users will interact
28with, is B<very stable> and any changes B<will be 100% backwards
807f6b7c 29compatible>. The introspection API is I<mostly> stable; I still
2a0f3bd3 30reserve the right to tweak that if needed, but I will do my
4711f5f7 31absolute best to maintain backwards compatibility here as well.
2a0f3bd3 32
734d1752 33=head3 I heard Moose is slow, is this true?
2a0f3bd3 34
35Again, this one is tricky, so Yes I<and> No.
36
37First let me say that I<nothing> in life is free, and that some
38Moose features do cost more than others. It is also the
39policy of Moose to B<only charge you for the features you use>,
40and to do our absolute best to not place any extra burdens on
d44714be 41the execution of your code for features you are not using. Of
42course using Moose itself does involve some overhead, but it
43is mostly compile time. At this point we do have some options
44available for getting the speed you need.
2a0f3bd3 45
734d1752 46Currently we have the option of making your classes immutable
47as a means of boosting speed. This will mean a larger compile
48time cost, but the runtime speed increase (especially in object
4711f5f7 49construction) is pretty significant. This is not very well
807f6b7c 50documented yet, so please ask on the list or on #moose for more
d44714be 51information.
52
807f6b7c 53We are also discussing and experimenting with L<Module::Compile>,
54and the idea of compiling highly optimized C<.pmc> files. In
55addition, we have mapped out some core methods as candidates for
56conversion to XS.
2a0f3bd3 57
807f6b7c 58=head3 When will Moose 1.0 be ready?
2a0f3bd3 59
734d1752 60I had originally said it would be end of 2006, but various bits
61of $work kept me too busy. At this point, I think we are getting
62pretty close and I will likely declare 1.0 within the next few
63releases.
2a0f3bd3 64
734d1752 65When will that be? Hard to say really, but honestly, it is ready
66to use now, the difference between now and 1.0 will be pretty
67minimal.
2a0f3bd3 68
e67a0fca 69=head2 Constructors
70
71=head3 How do I write custom constructors with Moose?
72
73Ideally, you should never write your own C<new> method, and should
74use Moose's other features to handle your specific object construction
75needs. Here are a few scenarios, and the Moose way to solve them;
76
4711f5f7 77If you need to call initialization code post instance construction,
e67a0fca 78then use the C<BUILD> method. This feature is taken directly from
4711f5f7 79Perl 6. Every C<BUILD> method in your inheritance chain is called
e67a0fca 80(in the correct order) immediately after the instance is constructed.
81This allows you to ensure that all your superclasses are initialized
82properly as well. This is the best approach to take (when possible)
4711f5f7 83because it makes sub classing your class much easier.
e67a0fca 84
85If you need to affect the constructor's parameters prior to the
86instance actually being constructed, you have a number of options.
87
88First, there are I<coercions> (See the L<Moose::Cookbook::Recipe5>
89for a complete example and explaination of coercions). With
90coercions it is possible to morph argument values into the correct
91expected types. This approach is the most flexible and robust, but
92does have a slightly higher learning curve.
93
94Second, using an C<around> method modifier on C<new> can be an
95effective way to affect the contents of C<@_> prior to letting
96Moose deal with it. This carries with it the extra burden for
97your subclasses, in that they have to be sure to explicitly
98call your C<new> and/or work around your C<new> to get to the
99version from L<Moose::Object>.
100
101The last approach is to use the standard Perl technique of calling
807f6b7c 102the C<SUPER::new> within your own custom version of C<new>. This,
103of course, brings with it all the issues of the C<around> solution
104as well as any issues C<SUPER::> might add.
e67a0fca 105
106In short, try to use C<BUILD> and coercions, they are your best
107bets.
108
4711f5f7 109=head3 How do I make non-Moose constructors work with Moose?
e67a0fca 110
807f6b7c 111Moose provides its own constructor, but it does it by making all
e67a0fca 112Moose-based classes inherit from L<Moose::Object>. When inheriting
4711f5f7 113from a non-Moose class, the inheritance chain to L<Moose::Object>
e67a0fca 114is broken. The simplest way to fix this is to simply explicitly
115inherit from L<Moose::Object> yourself. However, this does not
116always fix the issue of a constructor. Here is a basic example of
117how this can be worked around:
118
119 package My::HTML::Template;
120 use Moose;
121
4711f5f7 122 # explicit inheritance
e67a0fca 123 extends 'HTML::Template', 'Moose::Object';
124
125 # explicit constructor
126 sub new {
127 my $class = shift;
128 # call HTML::Template's constructor
129 my $obj = $class->SUPER::new(@_);
130 return $class->meta->new_object(
131 # pass in the constructed object
132 # using the special key __INSTANCE__
133 __INSTANCE__ => $obj, @_
134 );
135 }
136
807f6b7c 137Of course, this only works if both your Moose class and the
e67a0fca 138inherited non-Moose class use the same instance type (typically
139HASH refs).
140
141Other techniques can be used as well, such as creating the object
142using C<Moose::Object::new>, but calling the inherited non-Moose
4711f5f7 143class's initialization methods (if available).
e67a0fca 144
807f6b7c 145It is also entirely possible to just rely on HASH autovivification
146to create the slots needed for Moose based attributes, although this
147does restrict use of construction time attribute features somewhat.
e67a0fca 148
149In short, there are several ways to go about this, it is best to
150evaluate each case based on the class you wish to extend, and the
151features you wish to employ. As always, both IRC and the mailing
152list are great ways to get help finding the best approach.
153
154=head2 Accessors
155
156=head3 How do I tell Moose to use get/set accessors?
157
158The easiest way to accomplish this is to use the C<reader> and
159C<writer> attribute options. Here is some example code:
160
161 has 'bar' => (
162 isa => 'Baz',
163 reader => 'get_bar',
164 writer => 'set_bar',
165 );
166
167Moose will still take advantage of type constraints, triggers, etc.
168when creating these methods.
169
807f6b7c 170If you do not like this much typing, and wish it to be a default for
171your class, please see L<Moose::Policy>, and more specifically
172L<Moose::Policy::FollowPBP>. This will allow you to write:
e67a0fca 173
174 has 'bar' => (
175 isa => 'Baz',
176 is => 'rw',
177 );
178
807f6b7c 179And have Moose create seperate C<get_bar> and C<set_bar> methods
180instead of a single C<bar> method.
e67a0fca 181
807f6b7c 182NOTE: This B<cannot> be set globally in Moose, as that would break
e67a0fca 183other classes which are built with Moose.
184
185=head3 How can I get Moose to inflate/deflate values in the accessor?
186
187Well, the first question to ask is if you actually need both inflate
188and deflate.
189
190If you only need to inflate, then I suggest using coercions. Here is
807f6b7c 191some basic sample code for inflating a L<DateTime> object:
e67a0fca 192
193 subtype 'DateTime'
194 => as 'Object'
195 => where { $_->isa('DateTime') };
196
197 coerce 'DateTime'
198 => from 'Str'
199 => via { DateTime::Format::MySQL->parse_datetime($_) };
200
201 has 'timestamp' => (is => 'rw', isa => 'DateTime', coerce => 1);
202
203This creates a custom subtype for L<DateTime> objects, then attaches
204a coercion to that subtype. The C<timestamp> attribute is then told
807f6b7c 205to expect a C<DateTime> type, and to try to coerce it. When a C<Str>
e67a0fca 206type is given to the C<timestamp> accessor, it will attempt to
207coerce the value into a C<DateTime> object using the code in found
208in the C<via> block.
209
807f6b7c 210For a more comprehensive example of using coercions, see the
e67a0fca 211L<Moose::Cookbook::Recipe5>.
212
213If you need to deflate your attribute, the current best practice is to
214add an C<around> modifier to your accessor. Here is some example code:
215
216 # a timestamp which stores as
217 # seconds from the epoch
218 has 'timestamp' => (is => 'rw', isa => 'Int');
219
220 around 'timestamp' => sub {
221 my $next = shift;
222 my ($self, $timestamp) = @_;
223 # assume we get a DateTime object ...
224 $next->($self, $timestamp->epoch);
225 };
226
227It is also possible to do deflation using coercion, but this tends
228to get quite complex and require many subtypes. An example of this
229is outside the scope of this document, ask on #moose or send a mail
230to the list.
231
232Still another option is to write a custom attribute metaclass, which
233is also outside the scope of this document, but I would be happy to
234explain it on #moose or the mailing list.
235
4711f5f7 236=head2 Method Modifiers
e67a0fca 237
238=head3 How can I affect the values in C<@_> using C<before>?
239
807f6b7c 240You can't, actually: C<before> only runs before the main method,
241and it cannot easily affect the method's execution. What you want is
e67a0fca 242an C<around> method.
243
244=head3 Can I use C<before> to stop execution of a method?
245
246Yes, but only if you throw an exception. If this is too drastic a
247measure then I suggest using C<around> instead. The C<around> method
807f6b7c 248modifier is the only modifier which can gracefully prevent execution
e67a0fca 249of the main method. Here is an example:
250
251 around 'baz' => sub {
252 my $next = shift;
253 my ($self, %options) = @_;
807f6b7c 254 unless ($options->{bar} eq 'foo') {
255 return 'bar';
e67a0fca 256 }
807f6b7c 257 $next->($self, %options);
e67a0fca 258 };
259
260By choosing not to call the C<$next> method, you can stop the
261execution of the main method.
262
263=head2 Type Constraints
264
265=head3 How can I have a custom error message for a type constraint?
266
807f6b7c 267Use the C<message> option when building the subtype, like so:
e67a0fca 268
269 subtype 'NaturalLessThanTen'
270 => as 'Natural'
271 => where { $_ < 10 }
272 => message { "This number ($_) is not less than ten!" };
273
274This will be called when a value fails to pass the C<NaturalLessThanTen>
275constraint check.
276
807f6b7c 277=head3 Can I turn off type constraint checking?
734d1752 278
279Not yet, but soon. This option will likely be coming in the next
280release.
281
e67a0fca 282=head1 AUTHOR
283
284Stevan Little E<lt>stevan@iinteractive.comE<gt>
285
286=head1 COPYRIGHT AND LICENSE
287
b77fdbed 288Copyright 2006, 2007 by Infinity Interactive, Inc.
e67a0fca 289
290L<http://www.iinteractive.com>
291
292This library is free software; you can redistribute it and/or modify
293it under the same terms as Perl itself.
294
295=cut