changelog
[gitmo/Moose.git] / lib / Moose / Manual / Types.pod
CommitLineData
daa0fd7d 1package Moose::Manual::Types;
2
3# ABSTRACT: Moose's type system
ecd7cc3e 4
daa0fd7d 5__END__
ecd7cc3e 6
daa0fd7d 7=pod
ecd7cc3e 8
9=head1 TYPES IN PERL?
10
0c551c67 11Moose provides its own type system for attributes. You can also use
12these types to validate method parameters with the help of a MooseX
13module.
ecd7cc3e 14
15Moose's type system is based on a combination of Perl 5's own
909103e1 16I<implicit> types and some Perl 6 concepts. You can create your
0c551c67 17own subtypes with custom constraints, making it easy to express any
18sort of validation.
ecd7cc3e 19
0c551c67 20Types have names, and you can re-use them by name, making it easy to
ecd7cc3e 21share types throughout a large application.
22
909103e1 23However, this is not a "real" type system. Moose does not magically make Perl
24start associating types with variables. This is just an advanced parameter
25checking system which allows you to associate a name with a constraint.
ecd7cc3e 26
27That said, it's still pretty damn useful, and we think it's one of the
28things that makes Moose both fun and powerful. Taking advantage of the
29type system makes it much easier to ensure that you are getting valid
30data, and it also contributes greatly to code maintainability.
31
32=head1 THE TYPES
33
34The basic Moose type hierarchy looks like this
35
36 Any
37 Item
38 Bool
39 Maybe[`a]
40 Undef
41 Defined
42 Value
ecd7cc3e 43 Str
909103e1 44 Num
45 Int
46 ClassName
47 RoleName
ecd7cc3e 48 Ref
977a5e90 49 ScalarRef[`a]
ecd7cc3e 50 ArrayRef[`a]
51 HashRef[`a]
52 CodeRef
53 RegexpRef
54 GlobRef
909103e1 55 FileHandle
ecd7cc3e 56 Object
ecd7cc3e 57
58In practice, the only difference between C<Any> and C<Item> is
59conceptual. C<Item> is used as the top-level type in the hierarchy.
60
f91b2a92 61The rest of these types correspond to existing Perl concepts.
62In particular:
63
64=over 4
65
909103e1 66=item
f91b2a92 67
909103e1 68C<Bool> accepts C<1> for true, and undef, 0, or the empty string as false.
f91b2a92 69
909103e1 70=item
f91b2a92 71
909103e1 72C<Maybe[`a]> accepts either C<`a> or C<undef>.
f91b2a92 73
909103e1 74=item
f91b2a92 75
909103e1 76C<Num> accepts anything that perl thinks looks like a number (see L<Scalar::Util/looks_like_number>).
77
78=item
79
80C<ClassName> and C<RoleName> accept strings that are either the name of a class or the name of a role. The class/role must already be loaded when the constraint is checked.
81
82=item
83
84C<FileHandle> accepts either an L<IO::Handle> object or a builtin perl filehandle (see L<Scalar::Util/openhandle>).
85
86=item
87
88C<Object> accepts any blessed reference.
f91b2a92 89
90=back
ecd7cc3e 91
92The types followed by "[`a]" can be parameterized. So instead of just
93plain C<ArrayRef> we can say that we want C<ArrayRef[Int]> instead. We
94can even do something like C<HashRef[ArrayRef[Str]]>.
95
96The C<Maybe[`a]> type deserves a special mention. Used by itself, it
97doesn't really mean anything (and is equivalent to C<Item>). When it
98is parameterized, it means that the value is either C<undef> or the
5a3fb5fc 99parameterized type. So C<Maybe[Int]> means an integer or C<undef>.
ecd7cc3e 100
101For more details on the type hierarchy, see
102L<Moose::Util::TypeConstraints>.
103
104=head1 WHAT IS A TYPE?
105
106It's important to realize that types are not classes (or
107packages). Types are just objects (L<Moose::Meta::TypeConstraint>
0c551c67 108objects, to be exact) with a name and a constraint. Moose maintains a
6549b0d1 109global type registry that lets it convert names like C<Num> into the
0c551c67 110appropriate object.
ecd7cc3e 111
112However, class names I<can be> type names. When you define a new class
113using Moose, it defines an associated type name behind the scenes:
114
115 package MyApp::User;
116
117 use Moose;
118
119Now you can use C<'MyApp::User'> as a type name:
120
121 has creator => (
6c5b976f 122 is => 'ro',
ecd7cc3e 123 isa => 'MyApp::User',
124 );
125
126However, for non-Moose classes there's no magic. You may have to
127explicitly declare the class type. This is a bit muddled because Moose
128assumes that any unknown type name passed as the C<isa> value for an
129attribute is a class. So this works:
130
131 has 'birth_date' => (
6c5b976f 132 is => 'ro',
ecd7cc3e 133 isa => 'DateTime',
134 );
135
136In general, when Moose is presented with an unknown name, it assumes
137that the name is a class:
138
139 subtype 'ModernDateTime'
140 => as 'DateTime'
141 => where { $_->year() >= 1980 }
142 => message { 'The date you provided is not modern enough' };
143
144 has 'valid_dates' => (
145 is => 'ro',
146 isa => 'ArrayRef[DateTime]',
147 );
148
0c39debe 149Moose will assume that C<DateTime> is a class name in both of these
0c551c67 150instances.
ecd7cc3e 151
152=head1 SUBTYPES
153
dab94063 154Moose uses subtypes in its built-in hierarchy. For example, C<Int> is
155a child of C<Num>.
ecd7cc3e 156
157A subtype is defined in terms of a parent type and a constraint. Any
dab94063 158constraints defined by the parent(s) will be checked first, followed by
159constraints defined by the subtype. A value must pass I<all> of these
160checks to be valid for the subtype.
ecd7cc3e 161
0c551c67 162Typically, a subtype takes the parent's constraint and makes it more
ecd7cc3e 163specific.
164
165A subtype can also define its own constraint failure message. This
166lets you do things like have an error "The value you provided (20),
167was not a valid rating, which must be a number from 1-10." This is
168much friendlier than the default error, which just says that the value
169failed a validation check for the type.
170
171Here's a simple (and useful) subtype example:
172
173 subtype 'PositiveInt'
174 => as 'Int'
175 => where { $_ > 0 }
176 => message { "The number you provided, $_, was not a positive number" }
177
178Note that the sugar functions for working with types are all exported
179by L<Moose::Util::TypeConstraints>.
180
ecd7cc3e 181=head1 TYPE NAMES
182
183Type names are global throughout the current Perl
0c551c67 184interpreter. Internally, Moose maps names to type objects via a
185L<registry|Moose::Meta::TypeConstraint::Registry>.
ecd7cc3e 186
187If you have multiple apps or libraries all using Moose in the same
188process, you could have problems with collisions. We recommend that
189you prefix names with some sort of namespace indicator to prevent
190these sorts of collisions.
191
192For example, instead of calling a type "PositiveInt", call it
bcc22289 193"MyApp::Type::PositiveInt" or "MyApp::Types::PositiveInt". We
194recommend that you centralize all of these definitions in a single
195package, C<MyApp::Types>, which can be loaded by other classes in your
196application.
ecd7cc3e 197
909103e1 198However, before you do this, you should look at the L<MooseX::Types>
199module. This module makes it easy to create a "type library" module, which can
200export your types as perl constants.
06712014 201
202 has 'counter' => (is => 'rw', isa => PositiveInt);
203
99f1bb40 204This lets you use a short name rather than needing to fully qualify the name
205everywhere. It also allows you to write easily create parameterized types:
06712014 206
207 has 'counts' => (is => 'ro', isa => HashRef[PositiveInt]);
208
99f1bb40 209This module will check your names at compile time, and is generally more
210robust than the string type parsing for complex cases.
06712014 211
ecd7cc3e 212=head1 COERCION
213
909103e1 214A coercion lets you tell Moose to automatically convert one type to another.
ecd7cc3e 215
216 subtype 'ArrayRefOfInts'
217 => as 'ArrayRef[Int]';
218
219 coerce 'ArrayRefOfInts'
220 => from 'Int'
221 => via { [ $_ ] };
222
909103e1 223You'll note that we created a subtype rather than coercing C<ArrayRef[Int]>
224directly. It's a bad idea to add coercions to the raw built in
225types.
226
227Coercions are global, just like type names, so a coercion applied to a built
228in type is seen by all modules using Moose types. This is I<another> reason
229why it is good to namespace your types.
ecd7cc3e 230
909103e1 231Moose will I<never> try to coerce a value unless you explicitly ask for
232it. This is done by setting the C<coerce> attribute option to a true value:
ecd7cc3e 233
234 package Foo;
235
236 has 'sizes' => (
6c5b976f 237 is => 'ro',
ecd7cc3e 238 isa => 'ArrayRefOfInts',
239 coerce => 1,
240 );
241
242 Foo->new( sizes => 42 );
243
244This code example will do the right thing, and the newly created
245object will have C<[ 42 ]> as its C<sizes> attribute.
246
d67ce58f 247=head2 Deep coercion
ecd7cc3e 248
249Deep coercion is the coercion of type parameters for parameterized
250types. Let's take these types as an example:
251
252 subtype 'HexNum'
253 => as 'Str'
254 => where { /[a-f0-9]/i };
255
256 coerce 'Int'
257 => from 'HexNum'
258 => via { hex $_ };
259
260 has 'sizes' => (
6c5b976f 261 is => 'ro',
ecd7cc3e 262 isa => 'ArrayRef[Int]',
263 coerce => 1,
264 );
265
266If we try passing an array reference of hex numbers for the C<sizes>
0c551c67 267attribute, Moose will not do any coercion.
ecd7cc3e 268
0c551c67 269However, you can define a set of subtypes to enable coercion between
270two parameterized types.
ecd7cc3e 271
272 subtype 'ArrayRefOfHexNums'
273 => as 'ArrayRef[HexNum]';
274
275 subtype 'ArrayRefOfInts'
276 => as 'ArrayRef[Int]';
277
278 coerce 'ArrayRefOfInts'
279 => from 'ArrayRefOfHexNums'
280 => via { [ map { hex } @{$_} ] };
281
282 Foo->new( sizes => [ 'a1', 'ff', '22' ] );
283
284Now Moose will coerce the hex numbers to integers.
285
909103e1 286Moose does not attempt to chain coercions, so it will not
0c551c67 287coerce a single hex number. To do that, we need to define a separate
288coercion:
ecd7cc3e 289
290 coerce 'ArrayRefOfInts'
291 => from 'HexNum'
292 => via { [ hex $_ ] };
293
294Yes, this can all get verbose, but coercion is tricky magic, and we
0c551c67 295think it's best to make it explicit.
ecd7cc3e 296
297=head1 TYPE UNIONS
298
299Moose allows you to say that an attribute can be of two or more
300disparate types. For example, we might allow an C<Object> or
301C<FileHandle>:
302
303 has 'output' => (
304 is => 'rw',
305 isa => 'Object | FileHandle',
306 );
307
308Moose actually parses that string and recognizes that you are creating
309a type union. The C<output> attribute will accept any sort of object,
310as well as an unblessed file handle. It is up to you to do the right
311thing for each of them in your code.
312
0c551c67 313Whenever you use a type union, you should consider whether or not
314coercion might be a better answer.
ecd7cc3e 315
316For our example above, we might want to be more specific, and insist
317that output be an object with a C<print> method:
318
319 subtype 'CanPrint'
320 => as 'Object'
321 => where { $_->can('print') };
322
323We can coerce file handles to an object that satisfies this condition
324with a simple wrapper class:
325
326 package FHWrapper;
327
328 use Moose;
329
330 has 'handle' => (
6c5b976f 331 is => 'rw',
ecd7cc3e 332 isa => 'FileHandle',
333 );
334
335 sub print {
336 my $self = shift;
337 my $fh = $self->handle();
338
909103e1 339 print {$fh} @_;
ecd7cc3e 340 }
341
342Now we can define a coercion from C<FileHandle> to our wrapper class:
343
0c551c67 344 coerce 'CanPrint'
ecd7cc3e 345 => from 'FileHandle'
346 => via { FHWrapper->new( handle => $_ ) };
347
348 has 'output' => (
349 is => 'rw',
350 isa => 'CanPrint',
351 coerce => 1,
352 );
353
0c551c67 354This pattern of using a coercion instead of a type union will help
355make your class internals simpler.
ecd7cc3e 356
357=head1 TYPE CREATION HELPERS
358
359The L<Moose::Util::TypeConstraints> module exports a number of helper
360functions for creating specific kinds of types. These include
361C<class_type>, C<role_type>, and C<maybe_type>. See the docs for
362details.
363
364One helper worth noting is C<enum>, which allows you to create a
365subtype of C<Str> that only allows the specified values:
366
367 enum 'RGB' => qw( red green blue );
368
dab94063 369This creates a type named C<RGB>.
ecd7cc3e 370
371=head1 ANONYMOUS TYPES
372
373All of the type creation functions return a type object. This type
374object can be used wherever you would use a type name, as a parent
16fb3624 375type, or as the value for an attribute's C<isa> option:
ecd7cc3e 376
377 has 'size' => (
909103e1 378 is => 'ro',
379 isa => subtype( 'Int' => where { $_ > 0 } ),
ecd7cc3e 380 );
381
382This is handy when you want to create a one-off type and don't want to
383"pollute" the global namespace registry.
384
385=head1 VALIDATING METHOD PARAMETERS
386
387Moose does not provide any means of validating method
388parameters. However, there are several MooseX extensions on CPAN which
389let you do this.
390
0c39debe 391The simplest and least sugary is L<MooseX::Params::Validate>. This
ecd7cc3e 392lets you validate a set of named parameters using Moose types:
393
394 use Moose;
395 use MooseX::Params::Validate;
396
397 sub foo {
398 my $self = shift;
0c551c67 399 my %params = validated_hash(
ecd7cc3e 400 \@_,
401 bar => { isa => 'Str', default => 'Moose' },
402 );
403 ...
404 }
405
0c39debe 406L<MooseX::Params::Validate> also supports coercions.
ecd7cc3e 407
408There are several more powerful extensions that support method
409parameter validation using Moose types, including
0c39debe 410L<MooseX::Method::Signatures>, which gives you a full-blown C<method>
ecd7cc3e 411keyword.
412
909103e1 413 method morning ( Str $name ) {
ecd7cc3e 414 $self->say("Good morning ${name}!");
415 }
416
ca680d1f 417=head1 LOAD ORDER ISSUES
418
0c551c67 419Because Moose types are defined at runtime, you may run into load
420order problems. In particular, you may want to use a class's type
421constraint before that type has been defined.
ca680d1f 422
909103e1 423In order to ameliorate this problem, we recommend defining I<all> of your
424custom types in one module, C<MyApp::Types>, and then loading this module in
425all of your other modules.
ca680d1f 426
ecd7cc3e 427=cut