Dzil-ize all the .pod files so they can be pod-woven
[gitmo/Moose.git] / lib / Moose / Manual / BestPractices.pod
CommitLineData
daa0fd7d 1package Moose::Manual::BestPractices;
2
3# ABSTRACT: Get the most out of Moose
696cf5df 4
daa0fd7d 5__END__
f7435595 6
daa0fd7d 7=pod
f7435595 8
fd8a7262 9=head1 RECOMMENDATIONS
10
3bfacd05 11Moose has a lot of features, and there's definitely more than one way
12to do it. However, we think that picking a subset of these features
13and using them consistently makes everyone's life easier.
14
15Of course, as with any list of "best practices", these are really just
16opinions. Feel free to ignore us.
17
1af5d116 18=head2 C<namespace::autoclean> and immutabilize
fd8a7262 19
414ffc43 20We recommend that you remove the Moose sugar and end your Moose class
1af5d116 21definitions by making your class immutable.
fd8a7262 22
23 package Person;
24
25 use Moose;
1af5d116 26 use namespace::autoclean;
fd8a7262 27
28 # extends, roles, attributes, etc.
29
30 # methods
31
fd8a7262 32 __PACKAGE__->meta->make_immutable;
33
34 1;
35
1af5d116 36The C<use namespace::autoclean> bit is simply good code hygiene, as it removes
37imported symbols from you class's namespace at the end of your package's
38compile cycle, including Moose keywords. Once the class has been
052f5abe 39built, these keywords are not needed.
5481b153 40
052f5abe 41The C<make_immutable> call allows Moose to speed up a lot of things, most
42notably object construction. The trade-off is that you can no longer change
43the class definition.
e62951ce 44
1ad2aa8e 45=head2 Never override C<new>
46
47Overriding C<new> is a very bad practice. Instead, you should use a
48C<BUILD> or C<BUILDARGS> methods to do the same thing. When you
49override C<new>, Moose can no longer inline a constructor when your
19320607 50class is immutabilized.
1ad2aa8e 51
46c52442 52There are two good reasons to override C<new>. One, you are writing a
53MooseX extension that provides its own L<Moose::Object> subclass
54I<and> a subclass of L<Moose::Meta::Method::Constructor> to inline the
55constructor. Two, you are subclassing a non-Moose parent.
1ad2aa8e 56
57If you know how to do that, you know when to ignore this best practice
58;)
59
859f64b1 60=head2 Always call the original/parent C<BUILDARGS>
fd8a7262 61
052f5abe 62If you C<override> the C<BUILDARGS> method in your class, make sure to play
63nice and call C<super()> to handle cases you're not checking for explicitly.
3bfacd05 64
65The default C<BUILDARGS> method in L<Moose::Object> handles both a
66list and hashref of named parameters correctly, and also checks for a
67I<non-hashref> single argument.
68
1ad2aa8e 69=head2 Provide defaults whenever possible, otherwise use C<required>
3bfacd05 70
1ad2aa8e 71When your class provides defaults, this makes constructing new objects
72simpler. If you cannot provide a default, consider making the
73attribute C<required>.
74
75If you don't do either, an attribute can simply be left unset,
76increasing the complexity of your object, because it has more possible
77states that you or the user of your class must account for.
3bfacd05 78
d67ce58f 79=head2 Use C<builder> instead of C<default> most of the time
3bfacd05 80
81Builders can be inherited, they have explicit names, and they're just
82plain cleaner.
83
84However, I<do> use a default when the default is a non-reference,
85I<or> when the default is simply an empty reference of some sort.
86
87Also, keep your builder methods private.
fd8a7262 88
052f5abe 89=head2 Be C<lazy>
fd8a7262 90
052f5abe 91Lazy is good, and often solves initialization ordering problems. It's also
92good for deferring work that may never have to be done. Make your attributes
93C<lazy> unless they're C<required> or have trivial defaults.
fd8a7262 94
d67ce58f 95=head2 Consider keeping clearers and predicates private
fd8a7262 96
3bfacd05 97Does everyone I<really> need to be able to clear an attribute?
98Probably not. Don't expose this functionality outside your class
99by default.
b6477964 100
3bfacd05 101Predicates are less problematic, but there's no reason to make your
102public API bigger than it has to be.
fd8a7262 103
d67ce58f 104=head2 Default to read-only, and consider keeping writers private
fd8a7262 105
3bfacd05 106Making attributes mutable just means more complexity to account for in
107your program. The alternative to mutable state is to encourage users
108of your class to simply make new objects as needed.
fd8a7262 109
3bfacd05 110If you I<must> make an attribute read-write, consider making the
111writer a separate private method. Narrower APIs are easy to maintain,
112and mutable state is trouble.
b6477964 113
8a68781d 114In order to declare such attributes, provide a private C<writer>
115parameter:
116
117 has pizza => (
743e0199 118 is => 'ro',
119 isa => 'Pizza',
120 writer => '_pizza',
8a68781d 121 );
122
d67ce58f 123=head2 Think twice before changing an attribute's type in a subclass
541027c5 124
3bfacd05 125Down this path lies great confusion. If the attribute is an object
126itself, at least make sure that it has the same interface as the type
127of object in the parent class.
128
1ad2aa8e 129=head2 Don't use the C<initializer> feature
130
131Don't know what we're talking about? That's fine.
132
e4a134ed 133=head2 Use L<Moose::Meta::Attribute::Native> traits instead of C<auto_deref>
3bfacd05 134
052f5abe 135The C<auto_deref> feature is a bit troublesome. Directly exposing a complex
136attribute is ugly. Instead, consider using L<Moose::Meta::Attribute::Native>
137traits to define an API that only exposes the necessary pieces of
138functionality.
541027c5 139
053c63e0 140=head2 Always call C<inner> in the most specific subclass
141
142When using C<augment> and C<inner>, we recommend that you call
143C<inner> in the most specific subclass of your hierarchy. This makes
144it possible to subclass further and extend the hierarchy without
145changing the parents.
146
d67ce58f 147=head2 Namespace your types
541027c5 148
052f5abe 149Use some sort of namespacing convention for type names. We recommend something
150like "MyApp::Type::Foo". We also recommend considering L<MooseX::Types>.
541027c5 151
1ad2aa8e 152=head2 Do not coerce Moose built-ins directly
153
154If you define a coercion for a Moose built-in like C<ArrayRef>, this
155will affect every application in the Perl interpreter that uses this
156type.
157
158 # very naughty!
159 coerce 'ArrayRef'
160 => from Str
ff51bdc6 161 => via { [ split /,/ ] };
1ad2aa8e 162
163Instead, create a subtype and coerce that:
164
e9be9f68 165 subtype 'My::ArrayRef' => as 'ArrayRef';
1ad2aa8e 166
e9be9f68 167 coerce 'My::ArrayRef'
1ad2aa8e 168 => from 'Str'
ff51bdc6 169 => via { [ split /,/ ] };
1ad2aa8e 170
171=head2 Do not coerce class names directly
172
173Just as with Moose built-in types, a class type is global for the
174entire interpreter. If you add a coercion for that class name, it can
175have magical side effects elsewhere:
176
177 # also very naughty!
178 coerce 'HTTP::Headers'
179 => from 'HashRef'
ff51bdc6 180 => via { HTTP::Headers->new( %{$_} ) };
1ad2aa8e 181
182Instead, we can create an "empty" subtype for the coercion:
183
e9be9f68 184 subtype 'My::HTTP::Headers' => as class_type('HTTP::Headers');
1ad2aa8e 185
e9be9f68 186 coerce 'My::HTTP::Headers'
1ad2aa8e 187 => from 'HashRef'
ff51bdc6 188 => via { HTTP::Headers->new( %{$_} ) };
1ad2aa8e 189
190=head2 Use coercion instead of unions
541027c5 191
3bfacd05 192Consider using a type coercion instead of a type union. This was
052f5abe 193covered in L<Moose::Manual::Types>.
3bfacd05 194
d67ce58f 195=head2 Define all your types in one module
3bfacd05 196
197Define all your types and coercions in one module. This was also
198covered in L<Moose::Manual::Types>.
199
1ad2aa8e 200=head1 BENEFITS OF BEST PRACTICES
201
202Following these practices has a number of benefits.
203
204It helps ensure that your code will play nice with others, making it
205more reusable and easier to extend.
206
207Following an accepted set of idioms will make maintenance easier,
208especially when someone else has to maintain your code. It will also
209make it easier to get support from other Moose users, since your code
210will be easier to digest quickly.
211
212Some of these practices are designed to help Moose do the right thing,
213especially when it comes to immutabilization. This means your code
214will be faster when immutabilized.
215
216Many of these practices also help get the most out of meta
217programming. If you used an overridden C<new> to do type coercion by
218hand, rather than defining a real coercion, there is no introspectable
dab94063 219metadata. This sort of thing is particularly problematic for MooseX
1ad2aa8e 220extensions which rely on introspection to do the right thing.
221
3bfacd05 222=cut