Move initializer later in the docs
[gitmo/Moose.git] / lib / Moose / Manual / Attributes.pod
CommitLineData
8d38e631 1=pod
2
3=head1 NAME
4
5Moose::Manual::Attribute - Object attributes with Moose
6
7=head1 INTRODUCTION
8
9Attributes are the most feature-rich part of Moose, and also one of
10the most useful. It's easy to imagine a class without roles or method
11modifiers, but almost every class has attributes.
12
13Attributes are properties that every member of a class has. For
14example, we might say that "every Person object has a first name and
15last name. Attributes can be optional, so that we can say "some Person
16objects have a social security number (and some don't)".
17
18At its simplest, an attribute can be thought of slot in hash that can
19be read and set. However, attributes, can also have things like
20default values, laziness, type constraints, delegation and much more.
21
22=head1 ATTRIBUTE 101
23
24Use the C<has> function to declare an attribute:
25
26 package Person;
27
28 use Moose;
29
30 has 'first_name' => ( is => 'rw' );
31
32This says that all person objects have an optional "first_name"
33attribute that can be both read and set on the object.
34
35=head2 Read-write Vs Read-only
36
37The code inside the parentheses defines the details of the
38attribute. There are a lot of options you can put here, but in the
39simplest form you just need to include C<is>, which can be either
40C<rw> (read-write) or C<ro> (read-only).
41
42(In fact, you could even omit C<is>, but that leaves you with an
43attribute that has no accessors, which is pointless unless you're
44doing some deep, dark magic).
45
46=head2 Accessor Methods
47
48Each attribute has one or more accessor methods. An accessor lets you
49read and write the value of the attribute for an object.
50
51By default, the accessor method has the same name as the attribute. If
52you declared your attribute as C<ro> then your accessor will be
53read-only. If you declared it read-write, you get a read-write
54accessor. Simple.
55
56So with our Person example above, we now have a single C<first_name>
57accessor that can set or return a person object's first name.
58
59If you want, you can also explicitly specify the method names to be
60used for getting and setting an attribute's value. This is
61particularly handy when you'd like an attribute to be publically
62readable, but only privately settable. For example:
63
64 has 'weight' =>
65 ( is => 'rw',
66 writer => '_set_weight',
67 );
68
69This might be useful if weight is calculated based on other methods,
70for example every time the C<eat> method is called, we might adjust
71weight. This lets us hide the implementation details of weight
72changes, but still provide the weight value to users of the class.
73
74Some people might prefer to have distinct methods for getting and
75setting, even when setting is a public method. In I<Perl Best
76Practices>, Damian Conway recommends that getter methods start with
77"get_" and setter methods start with "set_".
78
79We can do exactly that by providing names for both the C<reader> and
80C<writer> methods:
81
82 has 'weight' =>
83 ( is => 'rw',
84 reader => 'get_weight',
85 writer => 'set_weight',
86 );
87
88If you're thinking that doing this over and over would be insanely
89tedious, you're right! Fortunately, Moose provides a powerful
90extension system that lets you do things like override the default
91accessor method conventions. See L<Moose::Manual::MooseX> for more
92details.
93
94=head2 Predicate and Clearer Methods
95
96Moose is able to explicitly distinguish between false or undefined
97values, and an attribute which is not set. If you want to be able to
98access and manipulate these states, you also need to define clearer
99and predicate methods for your attributes.
100
101A predicate method can be used to determine whether or not a given
102attribute is currently set. Note that even if the attribute was
103explicitly set to undef or some other false value, the predicate will
104return true.
105
106The clearer method unsets the attribute. This is I<not> the
107same as setting the value to C<undef>, but you can only distinguish
108between them if you define a predicate method!
109
110Here's some code to illustrate the relationship between an accessor,
111predicate, and clearer method.
112
113 package Person;
114
115 use Moose;
116
117 has 'ssn' =>
118 ( is => 'rw',
119 clearer => 'clear_ssn',
120 predicate => 'has_ssn',
121 );
122
123 ...
124
125 my $person = Person->new();
126 $person->has_ssn; # false
127
128 $person->ssn(undef);
129 $person->ssn; # returns undef
130 $person->has_ssn; # true
131
132 $person->clear_ssn;
133 $person->ssn; # returns undef
134 $person->has_ssn; # false
135
136 $person->ssn('123-45-6789');
137 $person->ssn; # returns '123-45-6789'
138 $person->has_ssn; # true
139
140 my $person2 = Person->new( ssn => '111-22-3333');
141 $person2->has_ssn; # true
142
143Note that by default, Moose does not make a predicate or clearer for
144you. You have to explicitly provide a method name for the ones you
145want.
146
147=head2 Required or Not?
148
149By default, all attributes are optional. That means that they do not
150need to be provided at object construction time. If you want to make
151an attribute required, simply set the required option to true:
152
153 has 'name' =>
154 ( is => 'rw',
155 required => 1,
156 );
157
158There are a couple caveats worth mentioning in regards to what
159required actually means.
160
161Basically, all it says is that this attribute must be provided to the
162constructor. It does not say anything about its value, so it could be
163C<undef>.
164
165If you define a clearer method on a required attribute, the clearer
166I<will> work. So even though something is defined as required, you can
167remove it after object construction.
168
169So if you do make an attribute required, that probably means that
170providing a clearer doesn't make much sense. In some cases, it might
171be handy to have a I<private> clearer and predicate for a required
172attribute.
173
174=head2 Default and Builder Methods
175
176Attributes can have default values, and there are several ways to
177specify this.
178
179In the simplest form, you simply provide a non-reference scalar value
180for the "default" option:
181
182 has 'size' =>
183 ( is => 'rw',
184 default => 'medium',
185 predicate => 'has_size',
186 );
187
188If the size attribute is not provided to the constructor, then it ends
189up being set to "medium":
190
191 my $person = Person->new();
192 $person->size; # medium
193 $person->has_size; # true
194
195You can also provide a subroutine reference for default. This
196reference will be called a method on the object.
197
198 has 'size' =>
199 ( is => 'rw',
200 default =>
201 sub { ('small', 'medium', 'large')[ int( rand 3 ) ] },
202 predicate => 'has_size',
203 );
204
205This is dumb example, but it illustrates the point that the subroutine
206will be called for every new object created.
207
208Of course, if it's called during object construction, it may be before
209other attributes have been set. If your default is dependent on other
210parts of the object's state, you can make the default lazy, which is
211covered in the next section.
212
213If you want to use a reference of any sort as the default value, you
214must return it from a subroutine. This is necessary because otherwise
215Perl would instantiate the reference exactly once, and it would be
216shared by all objects:
217
218 has 'mapping' =>
219 ( is => 'rw',
220 default => {}, # wrong!
221 );
222
223If Moose allowed this then the default mapping attribute could easily
224end up shared across many objects. Instead, wrap it in a subroutine
225reference:
226
227 has 'mapping' =>
228 ( is => 'rw',
229 default => sub { {} }, # right!
230 );
231
232This is a bit awkward, but it's just the way Perl works.
233
234As an alternative to using a subroutine reference, you can instead
235supply a builder method for your attribute:
236
237 has 'size' =>
238 ( is => 'rw',
239 builder => '_build_size',
240 predicate => 'has_size',
241 );
242
243 sub _build_size {
244 return ('small', 'medium', 'large')[ int( rand 3 ) ];
245 }
246
247This has several advantages. First, it moves a chunk of code to its
248own named method, which improves readability and code
249organization. Second, the C<_build_size> method can be overridden in
250subclasses.
251
252We strongly recommend that you use a builder instead of a default for
253anything beyond the most trivial default.
254
255=head2 Laziness and lazy_build
256
257Moose lets you defer attribute population by making an attribute lazy:
258
259 has 'size' =>
260 ( is => 'rw',
261 lazy => 1,
262 builder => '_build_size',
263 );
264
265When the lazy option is true, the attribute is not populated until the
266reader method is called, rather than at object construction
267time. There are several reasons you might choose to do this.
268
269First, if the default value for this attribute depends on some other
270attributes, then the attribute I<must> be lazy. During object
271construction, default subroutine references are not called in any
272particular order, so you cannot count on other attribute being
273populated at that time.
274
275Second, there's often no reason to spend program time calculating a
276default before its needed. Making an attribute lazy lets you defer the
277cost until the attribute is needed. If the attribute is I<never>
278needed, you save some CPU time.
279
280We recommend that you make any attribute with a builder or non-trivial
281default lazy as a matter of course.
282
283To facilitate this, you can simply specify the C<lazy_build> attribute
284option. This bundles up a number of options together:
285
286 has 'size' =>
287 ( is => 'rw',
288 lazy_build => 1,
289 );
290
291This is the same as specifying all of these options:
292
293 has 'size' =>
294 ( is => 'rw',
295 lazy => 1,
296 builder => '_build_size',
297 clearer => 'clear_size',
298 predicate => 'has_size',
299 );
300
301If your attribute name starts with an underscore (_), then the clearer
302and predicate will as well:
303
304 has '_size' =>
305 ( is => 'rw',
306 lazy_build => 1,
307 );
308
309becomes ...
310
311 has '_size' =>
312 ( is => 'rw',
313 lazy => 1,
314 builder => '_build__size',
315 clearer => '_clear_size',
316 predicate => '_has_size',
317 );
318
319Note the doubled underscore in the builder name. The lazy_build simply
320prepends the attribute name with "_build_" to come up with the builder
321name.
322
323=head2 Private Attributes