Tidy this code
[gitmo/Moose.git] / lib / Moose / Cookbook.pod
CommitLineData
471c4f09 1
2=pod
3
4=head1 NAME
5
6Moose::Cookbook - How to cook a Moose
7
8=head1 DESCRIPTION
9
ad248e00 10The Moose cookbook is a series of recipes showing various Moose
11features. Most recipes present some code demonstrating some feature,
12and then explain the details of the code.
471c4f09 13
ad248e00 14You should probably read the L<Moose::Manual> first. The manual
15explains Moose concepts without being too code-heavy.
734d1752 16
471c4f09 17=head1 RECIPES
18
496b74ab 19=head2 Basic Moose
20
4eec354b 21These recipes will give you a good idea of what Moose is capable,
22starting with simple attribute declaration, and moving on to more
23powerful features like laziness, types, type coercion, method
24modifiers, and more.
25
471c4f09 26=over 4
27
021b8139 28=item L<Moose::Cookbook::Basics::Recipe1> - The (always classic) B<Point> example
471c4f09 29
f7f3648d 30A simple Moose-based class. Demonstrated Moose attributes and subclassing.
cb2478d4 31
021b8139 32=item L<Moose::Cookbook::Basics::Recipe2> - A simple B<BankAccount> example
471c4f09 33
f7f3648d 34A slightly more complex Moose class. Demonstrates using a method
35modifier in a subclass.
cb2478d4 36
021b8139 37=item L<Moose::Cookbook::Basics::Recipe3> - A lazy B<BinaryTree> example
471c4f09 38
f7f3648d 39Demonstrates several attribute features, including types, weak
0fde1850 40references, predicates ("does this object have a foo?"), defaults,
41laziness, and triggers.
cb2478d4 42
021b8139 43=item L<Moose::Cookbook::Basics::Recipe4> - Subtypes, and modeling a simple B<Company> class hierarchy
471c4f09 44
f7f3648d 45Introduces the creation and use of custom types, a C<BUILD> method,
46and the use of C<override> in a subclass.
cb2478d4 47
021b8139 48=item L<Moose::Cookbook::Basics::Recipe5> - More subtypes, coercion in a B<Request> class
471c4f09 49
f7f3648d 50More type examples, including the use of type coercions.
cb2478d4 51
021b8139 52=item L<Moose::Cookbook::Basics::Recipe6> - The augment/inner example
496b74ab 53
f7f3648d 54Demonstrates the use of C<augment> method modifiers, a way of turning
55the usual method overriding style "inside-out".
cb2478d4 56
021b8139 57=item L<Moose::Cookbook::Basics::Recipe7> - Making Moose fast with immutable
496b74ab 58
5de2944f 59Making a class immutable greatly increases the speed of accessors and
60object construction.
cb2478d4 61
021b8139 62=item L<Moose::Cookbook::Basics::Recipe8> - Managing complex relations with trigger (TODO)
496b74ab 63
cb2478d4 64I<abstract goes here>
65
2be55428 66Work off of this http://code2.0beta.co.uk/moose/svn/Moose/trunk/t/200_examples/007_Child_Parent_attr_inherit.t
67
021b8139 68=item L<Moose::Cookbook::Basics::Recipe9> - Builder methods and lazy_build
496b74ab 69
fbd7ad7a 70The builder feature provides an inheritable and role-composable way to
71provide a default attribute value.
cb2478d4 72
58d129ba 73=item L<Moose::Cookbook::Basics::Recipe10> - Operator overloading, subtypes, and coercion
c2a0627f 74
48757542 75Demonstrates using operator overloading, coercion, and subtypes to
a8b3fe62 76model how eye color is determined during reproduction.
c2a0627f 77
45ef8386 78=item L<Moose::Cookbook::Basics::Recipe11> - BUILD and BUILDARGS (TODO)
79
80We need a good recipe demonstrating how these work.
81
496b74ab 82=back
83
84=head2 Moose Roles
85
4eec354b 86These recipes will show you how to use Moose roles.
87
496b74ab 88=over 4
89
13dbfe49 90=item L<Moose::Cookbook::Roles::Recipe1> - The Moose::Role example
496b74ab 91
f7f3648d 92Demonstrates roles, which are also sometimes known as traits or
93mix-ins. Roles provide a method of code re-use which is orthogonal to
94subclassing.
cb2478d4 95
13dbfe49 96=item L<Moose::Cookbook::Roles::Recipe2> - Advanced Role Composition - method exclusion and aliasing
496b74ab 97
2e3d0a0a 98Sometimes you just want to include part of a role in your
99class. Sometimes you want the whole role but one if its methods
100conflicts with one in your class. With method exclusion and aliasing,
101you can work around these problems.
cb2478d4 102
13dbfe49 103=item L<Moose::Cookbook::Roles::Recipe3> - Runtime Role Composition (TODO)
104379bc 104
cb2478d4 105I<abstract goes here>
106
496b74ab 107=back
108
109=head2 Meta Moose
110
4eec354b 111These recipes show you how to write your own meta classes, which lets
112you extend the object system provide by Moose.
113
496b74ab 114=over 4
115
17a65b17 116=item L<Moose::Cookbook::Meta::Recipe1> - Welcome to the meta-world (Why Go Meta?)
496b74ab 117
38031ac8 118If you're wondering what all this "meta" stuff is, and why you should
119care about it, read this "recipe".
cb2478d4 120
43aa5bf9 121=item L<Moose::Cookbook::Meta::Recipe2> - A meta-attribute, attributes with labels
496b74ab 122
f7f3648d 123One way to extend Moose is to provide your own attribute
124metaclasses. Attribute metaclasses let you extend attribute
125declarations (with C<has>) and behavior to provide additional
126attribute functionality.
cb2478d4 127
43aa5bf9 128=item L<Moose::Cookbook::Meta::Recipe3> - Labels implemented via attribute traits
a7d0cd00 129
aff0421c 130Extending Moose's attribute metaclass is a great way to add
131functionality. However, attributes can only have one metaclass.
132Applying roles to the attribute metaclass lets you provide
133composable attribute functionality.
cb2478d4 134
3f002851 135=item L<Moose::Cookbook::Meta::Recipe4> - Adding a "table" attribute to the metaclass
136
137If you want to store more information about your classes, you'll have
138to extend C<Moose::Meta::Class>. Doing so is simple, but you'll
139probably also want to provide some sugar, so see
c5b9daec 140L<Moose::Cookbook::Extending::Recipe2> as well.
3f002851 141
c5b9daec 142=item L<Moose::Cookbook::Meta::Recipe5> - The "table" attribute implemented as a metaclass trait
24a8fe99 143
c5b9daec 144This example takes the class metaclass we saw in the previous recipe
145and reimplements it as a metaclass trait.
cb2478d4 146
1acd5999 147=item L<Moose::Cookbook::Meta::Recipe6> - Hooking into the immutabilization system (TODO)
148
149Moose has a feature known as "immutabilization". By calling C<<
150__PACKAGE__->meta()->make_immutable() >> after defining your class
151(attributes, roles, etc), you tell Moose to optimize things like
152object creation, attribute access, and so on.
153
154If you are creating your own metaclasses, you may need to hook into
155the immutabilization system. This cuts across a number of spots,
156including the metaclass class, meta method classes, and possibly the
157meta-instance class as well.
158
159This recipe shows you how to write extensions which immutabilize
160properly.
161
162=item L<Moose::Cookbook::Meta::Recipe7> - I<meta-instance> (TODO)
1edfdf1c 163
cb2478d4 164I<abstract goes here>
165
49f6b0ac 166=back
167
6fa0a13f 168=head2 Extending Moose
169
4eec354b 170These recipes cover some more ways to extend Moose, and will be useful
171if you plan to write your own C<MooseX> module.
172
49f6b0ac 173=over 4
174
c8d5f1e1 175=item L<Moose::Cookbook::Extending::Recipe1> - Moose extension overview
176
177There are quite a number of ways to extend Moose. This recipe explains
178provides an overview of each method, and provides recommendations for
179when each is appropriate.
180
f3ce0579 181=item L<Moose::Cookbook::Extending::Recipe2> - Providing a base object class role
c8d5f1e1 182
183Many base object class extensions can be implemented as roles. This
f3ce0579 184example shows how to provide a base object class debugging role that
185is applied to any class that uses a notional C<MooseX::Debugging>
186module.
c8d5f1e1 187
188=item L<Moose::Cookbook::Extending::Recipe3> - Providing an alternate base object class
6fa0a13f 189
190You may find that you want to provide an alternate base object class
191along with a meta extension, or maybe you just want to add some
192functionality to all your classes without typing C<extends
193'MyApp::Base'> over and over.
194
c8d5f1e1 195=item L<Moose::Cookbook::Extending::Recipe4> - Acting like Moose.pm and providing sugar Moose-style
6fa0a13f 196
c5b9daec 197This recipe shows how to provide a replacement for C<Moose.pm>. You
198may want to do this as part of the API for a C<MooseX> module,
5583dc1c 199especially if you want to default to a new metaclass class or base
200object class.
6fa0a13f 201
cb2478d4 202=back
203
204=head1 SNACKS
205
206=over 4
207
f4ebf54f 208=item L<Moose::Cookbook::Snack::Keywords>
209
cb2478d4 210=item L<Moose::Cookbook::Snack::Types>
211
471c4f09 212=back
213
214=head1 SEE ALSO
215
216=over 4
217
8bdc7f13 218=item L<http://www.gsph.com/index.php?Lang=En&ID=291>
471c4f09 219
220=back
221
222=head1 AUTHOR
223
224Stevan Little E<lt>stevan@iinteractive.comE<gt>
225
226=head1 COPYRIGHT AND LICENSE
227
2840a3b2 228Copyright 2006-2009 by Infinity Interactive, Inc.
471c4f09 229
230L<http://www.iinteractive.com>
231
232This library is free software; you can redistribute it and/or modify
233it under the same terms as Perl itself.
234
f7f3648d 235=cut