5 Moose::Manual::MethodModifiers - Moose's method modifiers
7 =head1 WHAT IS A METHOD MODIFIER?
9 Moose provides a feature called "method modifiers". You can also think
10 of these as "hooks" or "advice".
12 It's probably easiest to understand this feature with a few examples:
22 before 'foo' => sub { print "about to call foo\n"; };
23 after 'foo' => sub { print "just called foo\n"; };
29 print "I'm around foo\n";
33 print "I'm still around foo\n";
36 Now if I call C<< Example->new->foo >> I'll get the following output:
44 You probably could have figured that out from the names "before",
45 "after", and "around".
47 Also, as you can see, the before modifiers come before around
48 modifiers, and after modifiers come last.
50 When there are multiple modifiers of the same type, the before and
51 around modifiers run from the last added to the first, and after
52 modifiers run from first added to last:
66 Method modifiers have many uses. One very common use is in roles. This
67 lets roles alter the behavior of methods in the classes that use
68 them. See L<Moose::Manual::Roles> for more information about roles.
70 Since modifiers are mostly useful in roles, some of the examples below
71 are a bit artificial. They're intended to give you an idea of how
72 modifiers work, but may not be the most natural usage.
74 =head1 BEFORE, AFTER, AND AROUND
76 Method modifiers can be used to add behavior to a method that Moose
77 generates for you, such as an attribute accessor:
79 has 'size' => ( is => 'rw' );
81 before 'size' => sub {
85 Carp::cluck('Someone is setting size');
89 Another use for the before modifier would be to do some sort of
90 prechecking on a method call. For example:
92 before 'size' => sub {
95 die 'Cannot set size while the person is growing'
96 if @_ && $self->is_growing;
99 This lets us implement logical checks that don't make sense as type
100 constraints. In particular, they're useful for defining logical rules
101 about an object's state changes.
103 Similarly, an after modifier could be used for logging an action that
106 Note that the return values of both before and after modifiers are
109 An around modifier is a bit more powerful than either a before or
110 after modifier. It can modify the arguments being passed to the
111 original method, and you can even decide to simply not call the
112 original method at all. You can also modify the return value with an
115 An around modifier receives the original method as its first argument,
116 I<then> the object, and finally any arguments passed to the method.
118 around 'size' => sub {
122 return $self->$orig()
127 if $self->likes_small_things();
129 return $self->$orig($size);
132 =head1 INNER AND AUGMENT
134 Augment and inner are two halves of the same feature. The augment
135 modifier provides a sort of inverted subclassing. You provide part of
136 the implementation in a superclass, and then document that subclasses
137 are expected to provide the rest.
139 The superclass calls C<inner()>, which then calls the C<augment>
140 modifier in the subclass:
149 my $xml = "<document>\n";
151 $xml .= "</document>\n";
156 Using C<inner()> in this method makes it possible for one or more
157 subclasses to then augment this method with their own specific
166 augment 'as_xml' => sub {
169 my $xml = "<report>\n";
171 $xml .= "</report>\n";
176 When we call C<as_xml> on a Report object, we get something like this:
183 But we also called C<inner()> in C<Report>, so we can continue
184 subclassing and adding more content inside the document:
186 package Report::IncomeAndExpenses;
192 augment 'as_xml' => sub {
195 my $xml = '<income>' . $self->income . '</income>';
197 $xml .= '<expenses>' . $self->expenses . '</expenses>';
200 $xml .= inner() || q{};
205 Now our report has some content:
210 <expenses>$8</expenses>
214 What makes this combination of C<augment> and C<inner()> special is
215 that it allows us to have methods which are called from parent (least
216 specific) to child (most specific). This inverts the normal
219 Note that in C<Report::IncomeAndExpenses> we call C<inner()> again. If
220 the object is an instance of C<Report::IncomeAndExpenses> then this
221 call is a no-op, and just returns false.
223 =head1 OVERRIDE AND SUPER
225 Finally, Moose provides some simple sugar for Perl's built-in method
226 overriding scheme. If you want to override a method from a parent
227 class, you can do this with C<override>:
235 has 'job_title' => ( is => 'rw' );
237 override 'display_name' => sub {
240 return super() . q{, } . $self->title();
243 The call to C<super()> is almost the same as calling C<<
244 $self->SUPER::display_name >>. The difference is that the arguments
245 passed to the superclass's method will always be the same as the ones
246 passed to the method modifier, and cannot be changed.
248 All arguments passed to C<super()> are ignored, as are any changes
249 made to C<@_> before C<super()> is called.
253 Because all of these method modifiers are implemented as Perl
254 functions, you must always end the modifier declaration with a
257 after 'foo' => sub { };
261 Dave Rolsky E<lt>autarch@urth.orgE<gt>
263 =head1 COPYRIGHT AND LICENSE
265 Copyright 2008-2009 by Infinity Interactive, Inc.
267 L<http://www.iinteractive.com>
269 This library is free software; you can redistribute it and/or modify
270 it under the same terms as Perl itself.