Fix attr inheritance slide now that Moose has a blacklist for allowed options
[gitmo/moose-presentations.git] / moose-class / slides / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
2
3 <html xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6 <title>Introduction to Moose</title>
7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 <!-- metadata -->
9 <meta name="generator" content="S5" />
10 <meta name="version" content="S5 1.2a2" />
11 <meta name="author" content="Eric A. Meyer" />
12 <meta name="company" content="Complex Spiral Consulting" />
13 <!-- configuration parameters -->
14 <meta name="defaultView" content="slideshow" />
15 <meta name="controlVis" content="hidden" />
16 <!-- style sheet links -->
17 <link rel="stylesheet" href="ui/default/slides.css" type="text/css" media="projection" id="slideProj" />
18 <link rel="stylesheet" href="ui/default/outline.css" type="text/css" media="screen" id="outlineStyle" />
19 <link rel="stylesheet" href="ui/default/print.css" type="text/css" media="print" id="slidePrint" />
20 <link rel="stylesheet" href="ui/default/opera.css" type="text/css" media="projection" id="operaFix" />
21 <!-- embedded styles -->
22 <style type="text/css" media="all">
23 .imgcon {width: 525px; margin: 0 auto; padding: 0; text-align: center;}
24 #anim {width: 270px; height: 320px; position: relative; margin-top: 0.5em;}
25 #anim img {position: absolute; top: 42px; left: 24px;}
26 img#me01 {top: 0; left: 0;}
27 img#me02 {left: 23px;}
28 img#me04 {top: 44px;}
29 img#me05 {top: 43px;left: 36px;}
30 </style>
31 <!-- S5 JS -->
32 <script src="ui/default/slides.js" type="text/javascript"></script>
33 <link rel="stylesheet" href="ui/custom.css" type="text/css" />
34 </head>
35 <body>
36
37 <div class="layout">
38 <div id="controls"><!-- DO NOT EDIT --></div>
39 <div id="currentSlide"><!-- DO NOT EDIT --></div>
40 <div id="header"></div>
41 <div id="footer">
42   <div id="license">
43     <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="ui/creative-commons.png" /></a>
44     <br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/Text" property="dc:title" rel="dc:type">Introduction to Moose</span> by <span xmlns:cc="http://creativecommons.org/ns#" property="cc:attributionName">David Rolsky</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.
45   </div>
46
47   <h2>Introduction to Moose</h2>
48 </div>
49 </div>
50
51 <div class="presentation">
52
53 <div class="slide">
54   <h1>Introduction to Moose</h1>
55   <h2>Dave Rolsky</h2>
56 </div>
57
58 <div class="slide">
59   <h1>Introduce Yourselves</h1>
60
61   <ul>
62     <li>Your name</li>
63     <li>What you do with Perl</li>
64     <li>Why you're here today (optional)</li>
65   </ul>
66 </div>
67
68 <div class="slide">
69   <h1>Moose Summed Up</h1>
70
71   <ul>
72     <li><strong>Declarative</strong> OO sugar</li>
73     <li>Introspectable</li>
74     <li>Extensible (188 MooseX::* on CPAN)</li>
75     <li>Community approved (1200+ downstream dependents on CPAN)</li>
76   </ul>
77 </div>
78
79 <div class="slide">
80   <h1>Moose Background</h1>
81
82   <ul>
83     <li>Created by Stevan Little, first released in 2006</li>
84     <li>Moose builds on Perl 5's native OO</li>
85     <li>Borrows ideas from other languages, notably Perl 6</li>
86     <li>Provides semantics for common operations</li>
87   </ul>
88 </div>
89
90 <div class="slide fake-slide0">
91   <h1>Part 0: Moose Concepts</h1>
92 </div>
93
94 <div class="slide">
95   <h1>Classes</h1>
96
97   <ul>
98     <li>
99       Classes have ...
100       <ul>
101         <li>Attributes</li>
102         <li>Methods</li>
103         <li>Superclasses</li>
104         <li>Method modifiers</li>
105         <li>Constructor and destructor</li>
106         <li>One metaclass object</li>
107       </ul>
108     </li>
109     <li>Classes do roles</li>
110   </ul>
111 </div>
112
113 <div class="slide">
114   <h1>Class Example</h1>
115
116   <pre><code>package Person;
117 <span class="highlight">use Moose;</span></code></pre>
118
119   <ul>
120     <li>Poof, a Moose-based class!</li>
121   </ul>
122 </div>
123
124 <div class="slide">
125   <h1>Attributes</h1>
126
127   <ul>
128     <li>Aka property, slot, field, member variable</li>
129     <li>A piece of data owned by an object</li>
130   </ul>
131 </div>
132
133 <div class="slide">
134   <h1>Attributes</h1>
135
136   <ul>
137     <li>
138       Attributes have ...
139       <ul>
140         <li>Mutability (read-only vs read-write)</li>
141         <li>An optional type</li>
142         <li>Accessor methods</li>
143         <li>Delegation methods</li>
144         <li>Optional default value</li>
145         <li>Many more features</li>
146       </ul>
147     </li>
148     <li>Stored in the object, but don't worry about that</li>
149   </ul>
150 </div>
151
152 <div class="slide">
153   <h1>Attribute Example</h1>
154
155   <pre><code>package Person;
156 use Moose;
157
158 <span class="highlight">has first_name =&gt; ( is =&gt; 'ro' );</span></code></pre>
159
160 </div>
161
162 <div class="slide">
163   <h1>Methods</h1>
164
165   <ul>
166     <li>Nothing fancy here, just Perl subroutines</li>
167   </ul>
168
169   <pre><code>package Person;
170 use Moose;
171
172 <span class="highlight">sub greet { ... }</span></code></pre>
173 </div>
174
175 <div class="slide">
176   <h1>Roles</h1>
177
178   <ul>
179     <li>Classes <strong>do</strong> (or consume) roles</li>
180     <li>Similar to mixins and Java interfaces</li>
181   </ul>
182 </div>
183
184 <div class="slide">
185   <h1>Roles</h1>
186
187   <ul>
188     <li>Like classes, can have attributes, methods, do roles</li>
189     <li>Roles can require methods</li>
190     <li>Roles are composed (flattened) into classes</li>
191   </ul>
192 </div>
193
194 <div class="slide">
195   <h1>Role Example</h1>
196
197 <pre><code>package HasPermissions;
198 <span class="highlight">use Moose::Role;</span>
199
200 has is_admin =&gt; ( is =&gt; 'rw' );</code></pre>
201 </div>
202
203 <div class="slide">
204   <h1>Role Example</h1>
205
206   <p>
207     And then ...
208   </p>
209   
210 <pre><code>package Person;
211 use Moose;
212
213 <span class="highlight">with 'HasPermissions';</span></code></pre>
214 </div>
215
216 <div class="slide">
217   <h1>Method Modifiers</h1>
218
219   <ul>
220     <li>AKA advice</li>
221     <li>&quot;<strong>Before</strong> foo(), do this first&quot;</li>
222     <li>&quot;Do this <strong>after</strong> foo()&quot;</li>
223     <li>&quot;Put this code <strong>around</strong> foo()&quot;</li>
224   </ul>
225 </div>
226
227 <div class="slide">
228   <h1>Before and After</h1>
229
230 <pre><code>before 'foo'
231     =&gt; sub { warn 'About to call foo()' };
232
233 after  'foo'
234     =&gt; sub { warn 'Leaving foo()' };</code></pre>
235
236 </div>
237
238 <div class="slide">
239   <h1>Around</h1>
240
241 <pre><code>around 'foo' =&gt; sub {
242     my $real_foo = shift;
243     my $self     = shift;
244
245     warn 'Just before foo()';
246     my @return =
247         $self-&gt;$real_foo( @_, bar =&gt; 42 );
248
249     return (
250         @return,
251         'modify return values'
252     );
253 };</code></pre>
254 </div>
255
256 <div class="slide">
257   <h1>Type Constraints</h1>
258
259   <ul>
260     <li>NOT A FULL-BLOWN TYPE SYSTEM!</li>
261     <li>But still darn useful</li>
262     <li>Constrain attribute values</li>
263     <li>Coerce from other types</li>
264   </ul>
265 </div>
266
267 <div class="slide">
268   <h1>Type Constraint Example</h1>
269
270 <pre><code>package Person;
271 use Moose;
272
273 has weight =&gt; (
274     is  =&gt; 'ro',
275     <span class="highlight">isa =&gt; 'Int'</span>,
276 );
277
278 # kaboom
279 Person-&gt;new( weight =&gt; 'heavy' );</code></pre>
280 </div>
281
282 <div class="slide">
283   <h1>Delegation</h1>
284
285   <ul>
286     <li>Attributes can define delegations</li>
287     <li>Lets you hide some implementation details</li>
288     <li>Fewer objects to chase around</li>
289   </ul>
290 </div>
291
292 <div class="slide">
293   <h1>Delegation</h1>
294
295 <pre><code>package Person;
296 use Moose;
297
298 has blog_uri =&gt; (
299     is      =&gt; 'rw',
300     isa     =&gt; 'URI',
301     <span class="highlight">handles =&gt; { 'blog_host' =&gt; 'host' },</span>
302 );
303
304 <span class="highlight">$person-&gt;blog_host;</span>
305 # really calls $person-&gt;blog_uri-&gt;host</code></pre>
306 </div>
307
308 <div class="slide">
309   <h1>Constructors</h1>
310
311   <ul>
312     <li>Moose creates <code>new()</code> for you</li>
313     <li>Provide an optional <code>BUILDARGS()</code> and <code>BUILD()</code></li>
314   </ul>
315 </div>
316
317 <div class="slide">
318   <h1>Destructors</h1>
319
320   <ul>
321     <li>Provide an optional <code>DEMOLISH()</code></li>
322   </ul>
323 </div>
324
325 <div class="slide">
326   <h1>Moose Meta-API</h1>
327
328   <ul>
329     <li>Answers questions like ...
330       <ul>
331         <li>What methods does this class have?</li>
332         <li>What are its parents?</li>
333         <li>What attributes does it have (including inherited attributes)?</li>
334         <li>What roles does it do?</li>
335         <li>Much, much, more</li>
336       </ul>
337     </li>
338   </ul>
339 </div>
340
341 <div class="slide">
342   <h1>Moose Meta-API</h1>
343
344   <ul>
345     <li>Not just for introspection ...
346       <ul>
347         <li>Add methods, attributes, roles, etc</li>
348         <li>Extend and alter core features</li>
349       </ul>
350     </li>
351   </ul>
352 </div>
353
354 <div class="slide">
355   <h1>Why Moose?</h1>
356
357   <ul>
358     <li>A quick bit of propaganda ...</li>
359   </ul>
360 </div>
361
362 <div class="slide">
363   <h1>With Moose</h1>
364
365   <pre><code>package Person;
366 use Moose;
367
368 has last_name =&gt; (
369     is  =&gt; 'rw',
370     isa =&gt; 'Str',
371 );</code></pre>
372 </div>
373
374 <div class="slide">
375     <h1>Without Moose</h1>
376
377     <pre class="small"><code>package Person;
378 use strict;
379 use warnings;
380 use Carp 'confess';
381
382 sub new {
383     my $class = shift;
384     my %args  = @_;
385     my $self  = {};
386
387     if (exists $args{last_name}) {
388         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
389                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
390             if ref($args{last_name});
391         $self-&gt;{last_nane} = $args{last_name};
392     }
393
394     return bless $self, $class;
395 }
396
397 sub last_name {
398     my $self = shift;
399
400     if (@_) {
401         my $value = shift;
402         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
403                 . &quot;Validation failed for 'Str' with value $value&quot;
404             if ref($value);
405         $self-&gt;{last_name} = $value;
406     }
407
408     return $self-&gt;{last_name};
409 }</code></pre>
410
411 </div>
412
413 <div class="slide">
414     <h1>Side by side</h1>
415
416     <table class="side-by-side">
417         <tr>
418           <td>
419             <pre><code>package Person;
420 use Moose;
421
422 has last_name =&gt; (
423     is  =&gt; 'rw',
424     isa =&gt; 'Str',
425 );</code></pre>
426             </td>
427             <td>
428                 <pre class="small"><code>package Person;
429 use strict;
430 use warnings;
431 use Carp 'confess';
432
433 sub new {
434     my $class = shift;
435     my %args  = @_;
436     my $self  = {};
437
438     if (exists $args{last_name}) {
439         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
440                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
441             if ref($args{last_name});
442         $self-&gt;{last_nane} = $args{last_name};
443     }
444
445     return bless $self, $class;
446 }
447
448 sub last_name {
449     my $self = shift;
450
451     if (@_) {
452         my $value = shift;
453         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
454                 . &quot;Validation failed for 'Str' with value $value&quot;
455             if ref($value);
456         $self-&gt;{last_name} = $value;
457     }
458
459     return $self-&gt;{last_name};
460 }</code></pre>
461             </td>
462         </tr>
463     </table>
464
465 </div>
466
467 <div class="slide">
468     <h1>Side by side</h1>
469
470     <table class="side-by-side">
471         <tr>
472             <td>
473                 <pre><code><span class="match-moose">package Person;</span>
474 use Moose;
475
476 has last_name =&gt; (
477     is  =&gt; 'rw',
478     isa =&gt; 'Str',
479 );</code></pre>
480             </td>
481             <td>
482                 <pre class="small"><code><span class="match-unsweet">package Person;</span>
483 use strict;
484 use warnings;
485 use Carp 'confess';
486
487 sub new {
488     my $class = shift;
489     my %args  = @_;
490     my $self  = {};
491
492     if (exists $args{last_name}) {
493         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
494                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
495             if ref($args{last_name});
496         $self-&gt;{last_nane} = $args{last_name};
497     }
498
499     return bless $self, $class;
500 }
501
502 sub last_name {
503     my $self = shift;
504
505     if (@_) {
506         my $value = shift;
507         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
508                 . &quot;Validation failed for 'Str' with value $value&quot;
509             if ref($value);
510         $self-&gt;{last_name} = $value;
511     }
512
513     return $self-&gt;{last_name};
514 }</code></pre>
515             </td>
516         </tr>
517     </table>
518 </div>
519
520 <div class="slide">
521     <h1>Side by side</h1>
522
523     <table class="side-by-side">
524         <tr>
525             <td>
526                 <pre><code>package Person;
527 <span class="match-moose">use Moose;</span>
528
529 has last_name =&gt; (
530     is  =&gt; 'rw',
531     isa =&gt; 'Str',
532 );</code></pre>
533             </td>
534             <td>
535                 <pre class="small"><code>package Person;
536 <span class="match-unsweet">use strict;
537 use warnings;
538 use Carp 'confess';
539
540 sub new {
541     my $class = shift;
542     my %args  = @_;
543     my $self  = {};</span>
544
545     if (exists $args{last_name}) {
546         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
547                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
548             if ref($args{last_name});
549         $self-&gt;{last_nane} = $args{last_name};
550     }
551
552     <span class="match-unsweet">return bless $self, $class;
553 }</span>
554
555 sub last_name {
556     my $self = shift;
557
558     if (@_) {
559         my $value = shift;
560         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
561                 . &quot;Validation failed for 'Str' with value $value&quot;
562             if ref($value);
563         $self-&gt;{last_name} = $value;
564     }
565
566     return $self-&gt;{last_name};
567 }</code></pre>
568             </td>
569         </tr>
570     </table>
571 </div>
572
573 <div class="slide">
574     <h1>Side by side</h1>
575
576     <table class="side-by-side">
577         <tr>
578             <td>
579                 <pre><code>package Person;
580 use Moose;
581
582 <span class="match-moose">has last_name =&gt; (</span>
583     is  =&gt; 'rw',
584     isa =&gt; 'Str',
585 <span class="match-moose">);</span></code></pre>
586             </td>
587             <td>
588                 <pre class="small"><code>package Person;
589 use strict;
590 use warnings;
591 use Carp 'confess';
592
593 sub new {
594     my $class = shift;
595     my %args  = @_;
596     my $self  = {};
597
598     <span class="match-unsweet">if (exists $args{last_name}) {</span>
599         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
600                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
601             if ref($args{last_name});
602         <span class="match-unsweet">$self-&gt;{last_nane} = $args{last_name};
603     }</span>
604
605     return bless $self, $class;
606 }
607
608 sub last_name {
609     my $self = shift;
610
611     if (@_) {
612         my $value = shift;
613         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
614                 . &quot;Validation failed for 'Str' with value $value&quot;
615             if ref($value);
616         $self-&gt;{last_name} = $value;
617     }
618
619     return $self-&gt;{last_name};
620 }</code></pre>
621             </td>
622         </tr>
623     </table>
624 </div>
625
626 <div class="slide">
627     <h1>Side by side</h1>
628
629     <table class="side-by-side">
630         <tr>
631             <td>
632                 <pre><code>package Person;
633 use Moose;
634
635 has last_name =&gt; (
636     <span class="match-moose">is  =&gt; 'rw',</span>
637     isa =&gt; 'Str',
638 );</code></pre>
639             </td>
640             <td>
641                 <pre class="small"><code>package Person;
642 use strict;
643 use warnings;
644 use Carp 'confess';
645
646 sub new {
647     my $class = shift;
648     my %args  = @_;
649     my $self  = {};
650
651     if (exists $args{last_name}) {
652         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
653                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
654             if ref($args{last_name});
655         $self-&gt;{last_nane} = $args{last_name};
656     }
657
658     return bless $self, $class;
659 }
660
661 <span class="match-unsweet">sub last_name {
662     my $self = shift;
663
664     if (@_) {
665         my $value = shift;</span>
666         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
667                 . &quot;Validation failed for 'Str' with value $value&quot;
668             if ref($value);
669         <span class="match-unsweet">$self-&gt;{last_name} = $value;
670     }
671
672     return $self-&gt;{last_name};
673 }</span></code></pre>
674             </td>
675         </tr>
676     </table>
677 </div>
678
679 <div class="slide">
680     <h1>Side by side</h1>
681
682     <table class="side-by-side">
683         <tr>
684             <td>
685                 <pre><code>package Person;
686 use Moose;
687
688 has last_name =&gt; (
689     is  =&gt; 'rw',
690     <span class="match-moose">isa =&gt; 'Str',</span>
691 );</code></pre>
692             </td>
693             <td>
694                 <pre class="small"><code>package Person;
695 use strict;
696 use warnings;
697 use Carp 'confess';
698
699 sub new {
700     my $class = shift;
701     my %args  = @_;
702     my $self  = {};
703
704     if (exists $args{last_name}) {
705         <span class="match-unsweet">confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
706                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
707             if ref($args{last_name});</span>
708         $self-&gt;{last_nane} = $args{last_name};
709     }
710
711     return bless $self, $class;
712 }
713
714 sub last_name {
715     my $self = shift;
716
717     if (@_) {
718         my $value = shift;
719         <span class="match-unsweet">confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
720                 . &quot;Validation failed for 'Str' with value $value&quot;
721             if ref($value);</span>
722         $self-&gt;{last_name} = $value;
723     }
724
725     return $self-&gt;{last_name};
726 }</code></pre>
727             </td>
728         </tr>
729     </table>
730 </div>
731
732 <div class="slide">
733     <h1>Side by side</h1>
734
735     <table class="side-by-side">
736         <tr class="incremental">
737             <td>5 lines</td>
738             <td>21 lines</td>
739         </tr>
740         <tr class="incremental">
741             <td>92 characters</td>
742             <td>741 characters</td>
743         </tr>
744         <tr>
745             <td>
746                 <pre><code>package Person;
747 use Moose;
748
749 has last_name =&gt; (
750     is  =&gt; 'rw',
751     isa =&gt; 'Str',
752 );</code></pre>
753             </td>
754             <td>
755                 <pre class="small"><code>package Person;
756 use strict;
757 use warnings;
758 use Carp 'confess';
759
760 sub new {
761     my $class = shift;
762     my %args  = @_;
763     my $self  = {};
764
765     if (exists $args{last_name}) {
766         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
767                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
768             if ref($args{last_name});
769         $self-&gt;{last_nane} = $args{last_name};
770     }
771
772     return bless $self, $class;
773 }
774
775 sub last_name {
776     my $self = shift;
777
778     if (@_) {
779         my $value = shift;
780         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
781                 . &quot;Validation failed for 'Str' with value $value&quot;
782             if ref($value);
783         $self-&gt;{last_name} = $value;
784     }
785
786     return $self-&gt;{last_name};
787 }</code></pre>
788             </td>
789         </tr>
790     </table>
791 </div>
792
793 <div class="slide">
794     <h1>Typo?</h1>
795
796     <pre class="small"><code>sub new {
797     my $class = shift;
798     my %args  = @_;
799     my $self  = {};
800
801     if (exists $args{last_name}) {
802         confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
803                 . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
804             if ref($args{last_name});
805         $self-&gt;{last_nane} = $args{last_name};
806     }
807
808     return bless $self, $class;
809 }</code></pre>
810 </div>
811
812 <div class="slide">
813     <h1>Typo?</h1>
814
815     <pre class="small"><code>if (exists $args{last_name}) {
816     confess &quot;Attribute (last_name) does not pass the type constraint because: &quot;
817             . &quot;Validation failed for 'Str' with value $args{last_name}&quot;
818         if ref($args{last_name});
819     $self-&gt;{last_nane} = $args{last_name};
820 }</code></pre>
821 </div>
822
823 <div class="slide">
824     <h1>Typo?</h1>
825
826     <code>$self-&gt;{last_nane} = $args{last_name};</code>
827 </div>
828
829 <div class="slide">
830     <h1>Typo?</h1>
831     <code>$self-&gt;{last_na<span class="wrong">n</span>e}</code>
832 </div>
833
834 <div class="slide">
835     <h1>Why Moose?</h1>
836
837     <pre><code>package Person;
838 use Moose;
839
840 has last_name =&gt; (
841     is  =&gt; 'rw',
842     isa =&gt; 'Str',
843 );</code></pre>
844 </div>
845
846 <div class="slide">
847     <h1>More Why Moose?</h1>
848
849     <ul>
850       <li>Less code == fewer bugs</li>
851       <li>Moose is well-tested, test your own code, not Moose</li>
852       <li>Focus on <strong>what</strong>, not <strong>how</strong></li>
853     </ul>
854 </div>
855
856 <div class="slide fake-slide0">
857   <h1>Part 1: Moose Classes</h1>
858 </div>
859
860 <div class="slide">
861   <h1>Moose Classes</h1>
862
863   <ul>
864     <li>Moose classes are Perl packages which <code>use Moose</code></li>
865   </ul>
866 </div>
867
868 <div class="slide">
869   <h1>Moose.pm and Your Class</h1>
870
871   <pre><code>package Person;
872 use Moose;</code></pre>
873
874   <ul>
875     <li><code>Moose.pm</code> provides declarative sugar</li>
876     <li>Turns on <code>strict</code> and <code>warnings</code></li>
877     <li>Creates metaclasses for your class: <code>Person-&gt;meta</code></li>
878     <li>Moose classes automatically inherit from <code>Moose::Object</code></li>
879   </ul>
880 </div>
881
882 <div class="slide">
883   <h1>What <code>Moose::Object</code> Provides</h1>
884
885   <ul>
886     <li>Constructor - <code>new()</code></li>
887     <li>Calls your <code>BUILDARGS()</code> and/or <code>BUILD()</code></li>
888     <li>Calls your <code>DEMOLISH</code> during object destruction</li>
889   </ul>
890 </div>
891
892 <div class="slide">
893   <h1>BUILDARGS</h1>
894
895   <ul>
896     <li>Processes <code>new</code>'s <code>@_</code>, returns a hash reference of attribute name/value pairs</li>
897     <li>Accepts a hash or hashref; errors otherwise</li>
898     <li>Provide your own for other cases</li>
899     <li><strong>Always</strong> call <code>$class-&gt;SUPER::BUILDARGS(@_)</code> as a fallback!</li>
900   </ul>
901 </div>
902
903 <div class="slide">
904   <h1>BUILDARGS Example</h1>
905
906   <pre><code>package Person;
907 use Moose;
908
909 sub BUILDARGS {
910     my $class = shift;
911
912     if ( @_ == 1 &amp;&amp; ! ref $_[0] ) {
913         <span class="highlight">return { ssn =&gt; $_[0] };</span>
914     }
915     <span class="highlight">return $class-&gt;SUPER::BUILDARGS(@_)</span>;
916 }
917
918 <span class="highlight">Person-&gt;new('123-45-6789')</span></code></pre>
919 </div>
920
921 <div class="slide">
922   <h1>BUILD</h1>
923
924   <ul>
925     <li>Called after object is created, before <code>new</code> returns</li>
926     <li>Chance to do more complex validation, set complex attributes</li>
927     <li>Called in reverse inheritance order, parents to children</li>
928     <li>Return value is ignored</li>
929   </ul>
930 </div>
931
932 <div class="slide">
933   <h1>BUILD Example</h1>
934
935   <pre><code>package Person;
936 use Moose;
937
938 sub BUILD {
939     my $self = shift;
940
941     if ( $self-&gt;country_of_residence
942          eq 'USA' ) {
943         die 'All US residents'
944             . ' must have an SSN'
945             unless $self-&gt;has_ssn;
946     }
947 }</code></pre>
948 </div>
949
950 <div class="slide">
951   <h1>Object Construction a la Moose</h1>
952
953   <pre><code>Person-&gt;new(@_)</code></pre>
954
955   <ol style="margin-top: 0">
956     <li>Calls <code>Person-&gt;BUILDARGS(@_)</code> to turn <code>@_</code> into a hashref</li>
957     <li>Blesses a reference</li>
958     <li>Populates attributes based on the hashref from #1</li>
959     <li>Calls <code>$new_object-&gt;BUILDALL($constructor_args)</code>
960         <br />... which calls all <code>BUILD</code> methods</li>    
961     <li>Returns the object</li>
962   </ol>
963 </div>
964
965 <div class="slide">
966   <h1>The Object is Opaque</h1>
967
968   <ul>
969     <li>Technically it's a hash reference</li>
970     <li><span class="wrong">If you <em>ever</em> treat it as one <strong>you are doing it wrong!</strong></span></li>
971     <li>Moose probably provides a feature to do what you need</li>
972   </ul>
973 </div>
974
975 <div class="slide">
976   <h1>DEMOLISH</h1>
977
978   <ul>
979     <li>Like <code>DESTROY</code>, but Moose makes sure all <code>DEMOLISH</code> methods in a hierarchy are called</li>
980     <li>Called in normal inheritance order, children to parents</li>
981     <li><em>Never</em> called by you, only by Perl itself</li>
982   </ul>
983 </div>
984
985 <div class="slide">
986   <h1>extends</h1>
987
988   <ul>
989     <li><code>extends</code> is sugar for declaring parent classes</li>
990     <li>Also ensures metaclass compatibility between parent and child</li>
991     <li>Do not <code>use base</code></li>
992   </ul>
993
994   <pre><code>package Employee;
995 use Moose;
996 <span class="highlight">extends 'Person';</span></code></pre>
997 </div>
998
999 <div class="slide">
1000   <h1>extends</h1>
1001
1002   <ul>
1003     <li>Each call to <code>extends</code> <strong>resets</strong> your parents</li>
1004   </ul>
1005
1006   <h2 class="wrong">Wrong</h2>
1007
1008   <pre><code>package EvilEmployee;
1009 use Moose;
1010 extends 'Person';
1011 extends 'Thief';</code></pre>
1012
1013   <h2 class="right">Right</h2>
1014
1015   <pre><code>package EvilEmployee;
1016 use Moose;
1017 extends 'Person', 'Thief';</code></pre>
1018 </div>
1019
1020 <div class="slide">
1021   <h1>Extending un-Moose-y Parents</h1>
1022
1023   <pre><code>package My::LWP;
1024 use Moose;
1025 extends 'LWP';</code></pre>
1026
1027   <ul>
1028     <li>No <code>Moose::Object</code>, so ...
1029       <ul>
1030         <li>No attribute-handling <code>new()</code></li>
1031         <li>No <code>BUILDARGS()</code> or <code>BUILD()</code></li>
1032         <li>No <code>DEMOLISH()</code></li>
1033       </ul>
1034     </li>
1035     <li>But see <code>MooseX::NonMoose</code> for a workaround</li>
1036   </ul>
1037 </div>  
1038
1039 <div class="slide">
1040   <h1><code>override</code> and <code>super</code></h1>
1041
1042   <ul>
1043     <li><code>override</code> is another method modifier</li>
1044     <li>An alternative to Perl's <code>SUPER::</code></li>
1045     <li><em>Declares</em> your intent to override a method</li>
1046   </ul>
1047 </div>
1048
1049 <div class="slide">
1050   <h1><code>override</code> and <code>super</code></h1>
1051
1052   <pre><code>package Employee;
1053 use Moose;
1054
1055 <span class="current incremental">extends 'Person';</span>
1056
1057 <span class="incremental">override</span> <span class="incremental">work</span> <span class="incremental">=&gt; sub {
1058     my $self = shift;
1059
1060     die "Pay me first"
1061         unless $self-&gt;got_paid;
1062     super();
1063 }</span><span class="incremental">;</span></code></pre>
1064 </div>
1065
1066 <div class="slide">
1067   <h1>Caveat <code>super</code></h1>
1068
1069   <ul>
1070     <li>Mostly like <code>$self-&gt;SUPER::work(@_)</code></li>
1071     <li><strong>But</strong> cannot change <code>@_</code>!</li>
1072     <li>Binds the parent's method <strong>correctly</strong> at compile time</li>
1073     <li>Parent determined by checking <code>Child-&gt;meta()-&gt;superclasses()</code></li>
1074   </ul>
1075 </div>
1076
1077 <div class="slide">
1078   <h1>Minimal Attributes</h1>
1079
1080   <ul>
1081     <li><code>has 'foo'</code></li>
1082     <li>Use <code>is =&gt; 'ro'</code> or <code>is =&gt; 'rw'</code></li>
1083     <li>Attributes without "is" have no accessors</li>
1084   </ul>
1085 </div>
1086
1087 <div class="slide">
1088   <h1>Read-write attributes</h1>
1089
1090   <pre><code>package Person;
1091 use Moose;
1092
1093 has first_name =&gt; ( <span class="highlight">is =&gt; 'rw'</span> );
1094
1095 my $person =
1096     Person-&gt;new( first_name =&gt; 'Dave' );
1097
1098 $person-&gt;first_name('Stevan');
1099 print $person-&gt;first_name; # Stevan</code></pre>
1100
1101 </div>
1102
1103 <div class="slide">
1104   <h1>Read-only attributes</h1>
1105
1106   <pre><code>package Person;
1107 use Moose;
1108
1109 has first_name =&gt; ( <span class="highlight">is =&gt; 'ro'</span> );
1110
1111 my $person =
1112     Person-&gt;new( first_name =&gt; 'Dave' );
1113
1114 $person-&gt;first_name('Stevan'); # dies</code></pre>
1115
1116 </div>
1117
1118 <div class="slide">
1119   <h1>There is More to Come</h1>
1120
1121   <ul>
1122     <li>Attributes have a <em>lot</em> of features</li>
1123   </ul>
1124 </div>
1125
1126 <div class="slide">
1127   <h1>Cleaning Up Moose Droppings</h1>
1128
1129   <pre><code>package Person;
1130 use Moose;
1131
1132 # true
1133 Person-&gt;can('extends');</code></pre>
1134
1135   <ul>
1136     <li>Not very hygienic</li>
1137   </ul>
1138 </div>
1139
1140 <div class="slide">
1141   <h1>Cleaning Up Moose Droppings</h1>
1142
1143   <pre><code>package Person;
1144 use Moose;
1145
1146 ...
1147
1148 <span class="highlight">no Moose;</span>
1149
1150 # false
1151 Person-&gt;can('extends');</code></pre>
1152 </div>
1153
1154 <div class="slide">
1155   <h1>Cleaning Up Moose Droppings</h1>
1156
1157   <pre><code>package Person;
1158 <span class="highlight">use namespace::autoclean;</span>
1159 use Moose;
1160
1161 ...
1162
1163 # false
1164 Person-&gt;can('extends');</code></pre>
1165 </div>
1166
1167 <div class="slide">
1168   <h1>No Moose</h1>
1169
1170   <ul>
1171     <li>Cleaning up is a best practice</li>
1172     <li>Say <code>no Moose</code> at the end of a package</li>
1173     <li>Or <code>use namespace::autoclean</code> at the top</li>
1174     <li>Just do it</li>
1175   </ul>
1176 </div>
1177
1178 <div class="slide">
1179   <h1>Immutability</h1>
1180
1181   <ul>
1182     <li><span style="font-family: URW Chancery L; font-size: 120%">Stevan's Incantation of Fleet-Footedness</span></li>
1183   </ul>
1184
1185   <pre><code>package Person;
1186 use Moose;
1187
1188 <span class="highlight">__PACKAGE__-&gt;meta-&gt;make_immutable;</span></code></pre>
1189 </div>
1190
1191 <div class="slide">
1192   <h1>What <code>make_immutable</code> does</h1>
1193
1194   <ul>
1195     <li>Magic</li>
1196     <li>Uses <code>eval</code> to "inline" a constructor</li>
1197     <li>Memoizes a lot of meta-information</li>
1198     <li>Makes loading your class slower</li>
1199     <li>Makes object creation <em>much</em> faster</li>
1200   </ul>
1201 </div>
1202
1203 <div class="slide">
1204   <h1>When to Immutabilize?</h1>
1205
1206   <ul>
1207     <li><em>Almost</em> always</li>
1208     <li>Startup time vs execution time</li>
1209   </ul>
1210 </div>
1211
1212 <div class="slide">
1213   <h1>Classes Summary</h1>
1214
1215   <ul>
1216     <li><code>use Moose</code></li>
1217     <li><code>Class-&gt;meta</code></li>
1218     <li><code>Moose::Object</code> base class</li>
1219     <li><code>extends</code>, <code>override</code>, and <code>super</code></li>
1220     <li>Simple attributes: <code>has</code>, <code>is&nbsp;=&gt;&nbsp;'ro'</code>, &amp; <code>is&nbsp;=&gt;&nbsp;'rw'</code></li>
1221     <li><code>no Moose</code></li>
1222     <li><code>__PACKAGE__-&gt;meta-&gt;make_immutable</code></li>
1223   </ul>
1224 </div>
1225
1226 <div class="slide">
1227   <h1>Questions?</h1>
1228 </div>  
1229
1230 <div class="slide">
1231   <h1>Exercises</h1>
1232
1233   <pre># cd exercises
1234
1235 # perl bin/prove -lv t/00-prereq.t
1236
1237 # perl install-moose (if needed)
1238
1239 ## Read the instructions in t/01-classes.t
1240
1241 # perl bin/prove -lv t/01-classes.t
1242
1243 # edit lib/Person.pm and lib/Employee.pm
1244
1245 Iterate til this passes all its tests</pre>
1246 </div>
1247
1248 <div class="slide fake-slide0">
1249   <h1>Part 2: Roles</h1>
1250 </div>
1251
1252 <div class="slide">
1253   <h1>Just What Is a Role?</h1>
1254
1255   <ul>
1256     <li>Mixin? Interface? Trait?</li>
1257     <li>Yes ... and more!</li>
1258   </ul>
1259 </div>
1260
1261 <div class="slide">
1262   <h1>Roles - State <strong>and</strong> Behavior</h1>
1263
1264   <pre><code>package HasPermissions;
1265 use Moose::Role;
1266 <span class="current incremental"># state
1267 has access_level =&gt; ( is =&gt; 'rw' );</span>
1268
1269 <span class="incremental"># behavior
1270 sub can_access {
1271     my $self     = shift;
1272     my $required = shift;
1273
1274     return $self-&gt;access_level
1275              &gt;= $required;
1276 }</span></code></pre>
1277
1278 </div>
1279
1280 <div class="slide">
1281   <h1>Roles Can Define Interfaces</h1>
1282
1283   <pre><code>package Printable;
1284 use Moose::Role;
1285
1286 requires 'as_string';</code></pre>
1287 </div>
1288
1289 <div class="slide">
1290   <h1>Roles Can Do All Three</h1>
1291
1292   <pre><code>package Printable;
1293 use Moose::Role;
1294
1295 requires 'as_string';
1296
1297 has has_been_printed =&gt; ( is =&gt; 'rw'  );
1298
1299 sub print {
1300     my $self = shift;
1301     print $self-&gt;as_string;
1302     $self-&gt;has_been_printed(1);
1303 }</code></pre>
1304 </div>
1305
1306 <div class="slide">
1307   <h1>Classes Consume Roles</h1>
1308
1309   <pre><code>package Person;
1310 use Moose;
1311
1312 with 'Printable';</code></pre>
1313 </div>
1314
1315 <div class="slide">
1316   <h1>Classes Consume Roles</h1>
1317
1318 <pre><code>package Person;
1319
1320 sub as_string { $_[0]-&gt;first_name() }
1321
1322 ...
1323
1324 my $person = Person-&gt;new(
1325     first_name   =&gt; 'Kenichi',
1326     last_name    =&gt; 'Asai',
1327     access_level =&gt; 42,
1328 );
1329
1330 $person-&gt;print();</code></pre>
1331 </div>
1332
1333 <div class="slide">
1334   <h1>Roles in Practice</h1>
1335
1336   <ul>
1337     <li>Consuming a role =~ inlining the role</li>
1338   </ul>
1339 </div>
1340
1341 <div class="slide">
1342   <h1>In Other Words ...</h1>
1343
1344 <pre><code>package Person;
1345 use Moose;
1346
1347 <span class="highlight">with 'Printable';</span>
1348
1349 sub as_string { $_[0]-&gt;first_name() }</code></pre>
1350 </div>
1351
1352 <div class="slide">
1353   <h1>In Other Words ...</h1>
1354
1355 <pre><code>package Person;
1356 use Moose;
1357
1358 <span class="delete">with 'Printable';</span>
1359
1360 sub as_string { $_[0]-&gt;first_name() }
1361
1362 <span class="highlight">has has_been_printed =&gt; ( is =&gt; 'rw'  );
1363
1364 sub print {
1365     my $self = shift;
1366     print $self-&gt;as_string;
1367     $self-&gt;has_been_printed(1);
1368 }</span></code></pre>
1369 </div>
1370
1371 <div class="slide">
1372   <h1>Except</h1>
1373
1374   <ul>
1375     <li>Role consumption is introspectable</li>
1376   </ul>
1377
1378   <pre><code>if ( Person-&gt;does('Printable') ) { ... }
1379
1380 # or ...
1381
1382 Person-&gt;meta-&gt;does_role('Printable')</code></pre>
1383
1384 </div>
1385
1386 <div class="slide">
1387   <h1>These Names Are the Same</h1>
1388
1389   <ul>
1390     <li>What if a role and class define the same method?</li>
1391     <li>A class's <em>local</em> methods win over the role's</li>
1392     <li>The role's methods win over the class's <em>inherited</em> methods</li>
1393   </ul>
1394 </div>
1395
1396 <div class="slide">
1397   <h1>Conflicts Between Roles</h1>
1398
1399   <ul>
1400     <li>Two roles with a method of the same name</li>
1401     <li>Generates a compile-time error when consumed by a class</li>
1402   </ul>
1403 </div>
1404
1405 <div class="slide">
1406   <h1>Conflict Example</h1>
1407
1408   <pre><code>package IsFragile;
1409 use Moose::Role;
1410
1411 sub break { ... }
1412
1413 package CanBreakdance;
1414 use Moose::Role;
1415
1416 sub break { ... }</code></pre>
1417 </div>
1418
1419 <div class="slide">
1420   <h1>Conflict Example</h1>
1421
1422   <pre><code>package FragileDancer;
1423 use Moose;
1424
1425 <span class="highlight">with 'IsFragile', 'CanBreakdance';</span></code></pre>
1426
1427   <ul>
1428     <li>Only one <code>with</code>!</li>
1429   </ul>
1430 </div>
1431
1432 <div class="slide">
1433   <h1>Conflict Resolution</h1>
1434
1435   <ul>
1436     <li>The consuming class must resolve the conflict by implementing the method</li>
1437     <li>Can use some combination of method exclusion and aliasing</li>
1438   </ul>
1439 </div>
1440
1441 <div class="slide">
1442   <h1>Conflicts Are a Smell</h1>
1443
1444   <ul>
1445     <li>Roles are about semantics!</li>
1446     <li>Roles have a <em>meaning</em></li>
1447     <li>Method name conflicts smell like bad design</li>
1448   </ul>
1449 </div>
1450
1451 <div class="slide">
1452   <h1>Roles With Roles</h1>
1453
1454   <pre><code>package Comparable;
1455 use Moose::Role;
1456
1457 requires 'compare';</code></pre>
1458 </div>
1459
1460 <div class="slide">
1461   <h1>Roles With Roles</h1>
1462
1463   <pre><code>package TestsEquality;
1464 use Moose::Role;
1465
1466 with 'Comparable';
1467
1468 sub is_equal {
1469     my $self = shift;
1470     return $self-&gt;compare(@_) == 0;
1471 }</code></pre>
1472 </div>
1473
1474 <div class="slide">
1475   <h1>And then ...</h1>
1476
1477   <pre><code>package Integer;
1478 use Moose;
1479
1480 with 'TestsEquality';
1481
1482 # Satisfies the Comparable role
1483 sub compare { ... }
1484
1485 Integer-&gt;does('TestsEquality'); # true
1486 Integer-&gt;does('Comparable'); # also true!</code></pre>
1487 </div>
1488
1489 <div class="slide">
1490   <h1>Name Conflicts Between Roles</h1>
1491
1492   <pre><code>package HasSubProcess;
1493 use Moose::Role;
1494
1495 <span class="highlight">sub execute { ... }</span>
1496
1497 package Killer;
1498 use Moose::Role;
1499
1500 with 'HasSubProcess';
1501
1502 <span class="highlight">sub execute { ... }</span></code></pre>
1503 </div>
1504
1505 <div class="slide">
1506   <h1>Delayed Conflict</h1>
1507
1508   <pre><code>package SysadminAssassin;
1509 with 'Killer';</code></pre>
1510
1511   <ul>
1512     <li><code>SysadminAssassin</code> must implement its own <code>execute</code></li>
1513     <li>But loading the <code>Killer</code> role by itself does not cause an error</li>
1514   </ul>
1515 </div>
1516
1517 <div class="slide">
1518   <h1>Roles as Interfaces</h1>
1519
1520   <ul>
1521     <li>Roles can <code>require</code> methods of their consumers</li>
1522     <li>Compile-time checks</li>
1523     <li>Method must exist when the role is consumed</li>
1524   </ul>
1525 </div>
1526
1527 <div class="slide">
1528   <h1>The Attribute Gotcha</h1>
1529
1530 <pre><code>package HasSize;
1531 use Moose::Role;
1532
1533 <span class="current incremental">requires 'size';</span>
1534
1535 package Shirt;
1536 use Moose;
1537
1538 <span class="incremental">with 'HasSize';
1539
1540 has size =&gt; ( is =&gt; 'ro' );</span></code></pre>
1541 </div>
1542
1543 <div class="slide">
1544   <h1>The Attribute Gotcha Workaround</h1>
1545
1546   <pre><code>package HasSize;
1547 use Moose::Role;
1548
1549 requires 'size';
1550
1551 package Shirt;
1552 use Moose;
1553
1554 has size =&gt; ( is =&gt; 'ro' );
1555
1556 with 'HasSize';</code></pre>
1557 </div>
1558
1559 <div class="slide">
1560   <h1>Compile-time Is a Lie</h1>
1561
1562   <ul>
1563     <li>Really, it's <em>package load</em> time</li>
1564     <li>That's run-time, but before the "real" run-time</li>
1565     <li>Moose does not rewire Perl, it's just sugar!</li>
1566     <li>(but <code>MooseX::Declare</code> <em>does</em> rewire Perl)</li>
1567   </ul>
1568 </div>
1569
1570 <div class="slide">
1571   <h1>Enforcing Roles</h1>
1572
1573   <pre><code>package Comparison;
1574 use Moose;
1575
1576 has [ 'left', 'right' ] =&gt; (
1577     is   =&gt; 'ro',
1578     <span class="highlight">does =&gt; 'Comparable',</span>
1579 );
1580 </code></pre>
1581
1582   <ul>
1583     <li>A sneak peek at type constraints</li>
1584   </ul>
1585 </div>
1586
1587
1588 <div class="slide">
1589   <h1>Roles Can Be Applied to Objects</h1>
1590
1591   <pre><code>use Moose::Util qw( apply_all_roles );
1592
1593 my $fragile_person = Person-&gt;new( ... );
1594 apply_all_roles( $fragile_person,
1595                  'IsFragile' );</code></pre>
1596
1597   <ul>
1598     <li>Does not change the <code>Person</code> class</li>
1599     <li>Works with non-Moose classes, great for monkey-patching!</li>
1600   </ul>
1601 </div>
1602
1603 <div class="slide">
1604   <h1>Roles Are Dirty Too</h1>
1605
1606   <ul>
1607     <li>Once again, clean up those Moose droppings</li>
1608   </ul>
1609
1610   <pre><code>package Comparable;
1611 use Moose::Role;
1612
1613 requires 'compare';
1614
1615 <span class="highlight">no Moose::Role;</span></code></pre>
1616
1617   <ul>
1618     <li>But roles cannot be made immutable</li>
1619   </ul>
1620 </div>
1621
1622 <div class="slide">
1623   <h1>The Zen of Roles</h1>
1624
1625   <ul>
1626     <li>Roles represent discrete units of ...
1627       <ul>
1628         <li>state</li>
1629         <li>behavior</li>
1630         <li>interface</li>
1631       </ul>
1632     </li>
1633     <li>Roles are shareable between unrelated classes</li>
1634     <li>Roles are what a class <em>does</em>, not what it <em>is</em></li>
1635     <li>Roles <em>add</em> functionality, inheritance <em>specializes</em></li>
1636   </ul>
1637 </div>
1638
1639 <div class="slide">
1640   <h1>Abstract Examples</h1>
1641
1642   <ul>
1643     <li>Human <em>@ISA</em> Animal</li>
1644     <li>Human <em>does</em> Toolmaker (as <em>does</em> Chimpanzee)</li>
1645     <li>Car <em>@ISA</em> Vehicle</li>
1646     <li>Car <em>does</em> HasEngine</li>
1647   </ul>
1648 </div>
1649
1650 <div class="slide">
1651   <h1>Real Examples</h1>
1652
1653   <ul>
1654     <li>Objects representing SQL database components and queries
1655       <ul>
1656         <li>Schema, Table, Column, ColumnAlias</li>
1657         <li>Select, Insert, Update, Delete</li>
1658       </ul>
1659     </li>
1660   </ul>
1661 </div>
1662
1663 <div class="slide">
1664   <h1>Real Examples</h1>
1665
1666   <ul>
1667     <li>All queries <em>do</em> HasWhereClause</li>
1668     <li>Select <em>does</em> Comparable and Selectable (for subselects)</li>
1669     <li>A where clause requires its components to <em>do</em> Comparable</li>
1670   </ul>
1671 </div>
1672
1673 <div class="slide">
1674   <h1>Roles Summary</h1>
1675
1676   <ul>
1677     <li>Roles can define an interface with <code>requires</code></li>
1678     <li>Roles can have state (attributes) and behavior (methods)</li>
1679     <li>Roles can mix interface, state, &amp; behavior</li>
1680     <li>Roles are composed (flattened) into classes</li>
1681     <li>Roles can do other roles</li>
1682     <li>Roles can be used as a type in APIs (must do Comparable)</li>
1683   </ul>
1684 </div>
1685
1686 <div class="slide">
1687   <h1>Questions?</h1>
1688 </div>  
1689
1690 <div class="slide">
1691   <h1>Exercises</h1>
1692
1693   <pre># cd exercises
1694 # perl bin/prove -lv t/02-roles.t
1695
1696 Iterate til this passes all its tests</pre>
1697 </div>
1698
1699 <div class="slide fake-slide0">
1700   <h1>Part 3: Basic Attributes</h1>
1701 </div>
1702
1703 <div class="slide">
1704   <h1>Attributes Are Huge</h1>
1705
1706   <ul>
1707     <li>Moose's biggest feature</li>
1708     <li>The target of <em>many</em> MooseX modules</li>
1709   </ul>
1710 </div>
1711
1712 <div class="slide">
1713   <h1>Quick Review</h1>
1714
1715   <ul>
1716     <li>Declared with <code>has</code></li>
1717     <li>Read-only or read-write</li>
1718   </ul>
1719
1720   <pre><code>package Shirt;
1721 use Moose;
1722
1723 has 'color'     =&gt; ( is =&gt; 'ro' );
1724 has 'is_ripped' =&gt; ( is =&gt; 'rw' );</code></pre>
1725 </div>
1726
1727 <div class="slide">
1728   <h1>Required-ness</h1>
1729
1730   <ul>
1731     <li>Required means "must be passed to the constructor"</li>
1732     <li>But can be <code>undef</code></li>
1733   </ul>
1734 </div>
1735
1736 <div class="slide">
1737   <h1>Required-ness</h1>
1738
1739   <pre><code>package Person;
1740 use Moose;
1741
1742 has first_name =&gt; (
1743     is       =&gt; 'ro',
1744     <span class="current incremental">required =&gt; 1,</span>
1745 );
1746
1747 <span class="incremental">Person-&gt;new( first_name =&gt; undef ); # ok
1748 Person-&gt;new(); # kaboom</span></code></pre>
1749 </div>
1750
1751 <div class="slide">
1752   <h1>Default and Builder</h1>
1753
1754   <ul>
1755     <li>Attributes can have defaults</li>
1756     <li>Simple non-reference scalars (number, string)</li>
1757     <li>Subroutine reference</li>
1758     <li>A builder method</li>
1759   </ul>
1760 </div>
1761
1762 <div class="slide">
1763   <h1>Default</h1>
1764
1765   <ul>
1766     <li>Can be a non-reference scalar (including <code>undef</code>)</li>
1767   </ul>
1768
1769   <pre><code>package Person;
1770 use Moose;
1771
1772 has bank =&gt; (
1773     is      =&gt; 'rw',
1774     default =&gt; 'Spire FCU',
1775 );</code></pre>
1776 </div>
1777
1778 <div class="slide">
1779   <h1>Default</h1>
1780
1781   <ul>
1782     <li>Can be a subroutine reference</li>
1783   </ul>
1784
1785   <pre><code>package Person;
1786 use Moose;
1787
1788 has bank =&gt; (
1789     is      =&gt; 'rw',
1790     default =&gt;
1791         sub { Bank-&gt;new(
1792                   name =&gt; 'Spire FCU' ) },
1793 );</code></pre>
1794 </div>
1795
1796 <div class="slide">
1797   <h1>Subroutine Reference Default</h1>
1798
1799   <ul>
1800     <li>Called as a method on the object</li>
1801     <li>Called anew for each object</li>
1802   </ul>
1803 </div>
1804
1805 <div class="slide">
1806   <h1>Why No Other Reference Types?</h1>
1807
1808   <pre><code>package Person;
1809 use Moose;
1810
1811 has bank =&gt; (
1812     is      =&gt; 'rw',
1813     # THIS WILL NOT WORK
1814     <span class="wrong">default =&gt; Bank-&gt;new(
1815                    name =&gt; 'Spire FCU' ),</span>
1816 );</code></pre>
1817
1818   <ul>
1819     <li>Now <strong>every</strong> person shares the <strong>same</strong> Bank object!</li>
1820   </ul>
1821 </div>
1822
1823 <div class="slide">
1824      <h1>Defaulting to an Empty Reference</h1>
1825
1826   <pre><code>package Person;
1827 use Moose;
1828
1829 has packages =&gt; (
1830     is      =&gt; 'rw',
1831     default =&gt; <span class="highlight">sub { [] }</span>,
1832 );</code></pre>
1833 </div>
1834
1835 <div class="slide">
1836   <h1>Builder</h1>
1837
1838   <ul>
1839     <li>A method <em>name</em></li>
1840     <li>When called, this method returns the default value</li>
1841   </ul>
1842 </div>
1843
1844 <div class="slide">
1845   <h1>Builder</h1>
1846
1847   <pre><code>package Person;
1848 use Moose;
1849
1850 has bank =&gt; (
1851     is      =&gt; 'rw',
1852     builder =&gt; '_build_bank',
1853 );
1854
1855 sub _build_bank {
1856     my $self = shift;
1857     return Bank-&gt;new(
1858         name =&gt; 'Spire FCU' );
1859 }</code></pre>
1860 </div>
1861
1862 <div class="slide">
1863   <h1>Default vs Builder</h1>
1864
1865   <ul>
1866     <li>Use default for simple scalars</li>
1867     <li>Use default to return empty references</li>
1868     <li>Use default for <em>very</em> trivial subroutine references</li>
1869     <li>Use builder for everything else</li>
1870   </ul>
1871 </div>
1872
1873 <div class="slide">
1874   <h1>Builder Bonuses</h1>
1875
1876   <ul>
1877     <li>Can be overridden and method modified, because it's called by <em>name</em></li>
1878     <li>Roles can require a builder</li>
1879   </ul>
1880 </div>
1881       
1882 <div class="slide">
1883   <h1>Role Requires Builder</h1>
1884
1885   <pre><code>package HasBank;
1886 use Moose::Role;
1887
1888 requires '_build_bank';
1889
1890 has bank =&gt; (
1891     is      =&gt; 'ro',
1892     builder =&gt; '_build_bank',
1893 );</code></pre>
1894 </div>
1895
1896 <div class="slide">
1897   <h1>Lazy, Good for Nothin' Attributes</h1>
1898
1899   <ul>
1900     <li>Normally, defaults are generated during object construction</li>
1901     <li>This can be expensive</li>
1902     <li>We want to default to <code>$self-&gt;size * 2</code>, but attribute initialization order is unpredictable</li>
1903     <li>Use lazy attributes!</li>
1904   </ul>
1905 </div>
1906
1907 <div class="slide">
1908   <h1>The Power of Dynamic Defaults</h1>
1909
1910   <pre><code>package Person;
1911 use Moose;
1912
1913 has shoe_size =&gt; (
1914     is       =&gt; 'ro',
1915     required =&gt; 1,
1916 );</code></pre>
1917 </div>
1918
1919 <div class="slide">
1920   <h1>The Power of Dynamic Defaults</h1>
1921
1922   <pre><code>has shoes =&gt; (
1923     is      =&gt; 'ro',
1924     <span class="highlight">lazy    =&gt; 1,</span>
1925     builder =&gt; '_build_shoes',
1926 );
1927
1928 sub _build_shoes {
1929     my $self = shift;
1930
1931     return Shoes-&gt;new(
1932         size =&gt; <span class="highlight">$self-&gt;shoe_size</span> );
1933 }</code></pre>
1934 </div>
1935
1936 <div class="slide">
1937   <h1>Lazy is Good</h1>
1938
1939   <ul>
1940     <li>Lazy defaults are executed when the attribute is read</li>
1941     <li>Can see other object attributes</li>
1942     <li>Still need to watch out for circular laziness</li>
1943   </ul>
1944 </div>    
1945
1946 <div class="slide">
1947   <h1>Clearer and Predicate</h1>
1948
1949   <ul>
1950     <li>Attributes can have a value, including <code>undef</code>, or not</li>
1951     <li>Can clear the value with a clearer method</li>
1952     <li>Can check for the existence of a value with a predicate method</li>
1953     <li>By default, these methods are not created</li>
1954   </ul>
1955 </div>
1956
1957 <div class="slide">
1958   <h1>Clearer and Predicate</h1>
1959
1960   <pre><code>package Person;
1961 use Moose;
1962
1963 has account =&gt; (
1964     is        =&gt; 'ro',
1965     lazy      =&gt; 1,
1966     builder   =&gt; '_build_account',
1967     <span class="highlight">clearer   =&gt; '_clear_account',
1968     predicate =&gt; 'has_account',</span>
1969 );</code></pre>
1970 </div>
1971
1972 <div class="slide">
1973   <h1>Clearer and Lazy Defaults</h1>
1974
1975   <ul>
1976     <li>Lazy defaults are good for computed attributes</li>
1977     <li>Clear the attribute when the source data changes</li>
1978     <li>Recalculated at next access</li>
1979   </ul>
1980 </div>
1981
1982 <div class="slide">
1983   <h1>Renaming constructor arguments</h1>
1984
1985   <ul>
1986     <li>By default, constructor names = attribute names</li>
1987     <li>Use <code>init_arg</code> to change this</li>
1988     <li>Set <code>init_arg =&gt; undef</code> to make it unconstructable</li>
1989   </ul>
1990 </div>
1991
1992 <div class="slide">
1993   <h1>Some <code>init_arg</code> examples</h1>
1994
1995   <pre><code>package Person;
1996 use Moose;
1997
1998 has shoe_size =&gt; (
1999     is       =&gt; 'ro',
2000     <span class="highlight">init_arg =&gt; 'foot_size',</span>
2001 );
2002
2003 Person-&gt;new( <span class="wrong">shoe_size =&gt; 13</span> );
2004
2005 my $person =
2006     Person-&gt;new( <span class="right">foot_size =&gt; 13</span> );
2007 print $person-&gt;shoe_size;</code></pre>
2008 </div>
2009
2010 <div class="slide">
2011   <h1>Some <code>init_arg</code> examples</h1>
2012
2013 <pre><code>package Person;
2014 use Moose;
2015
2016 has shoes =&gt; (
2017     is       =&gt; 'ro',
2018     <span class="highlight">init_arg =&gt; undef,</span>
2019 );
2020
2021 Person-&gt;new( <span class="wrong">shoes =&gt; Shoes-&gt;new</span> );</code></pre>
2022 </div>
2023
2024 <div class="slide">
2025   <h1>Why Set <code>init_arg =&gt; undef</code>?</h1>
2026
2027   <ul>
2028     <li>Use this with a lazy default for attributes-as-cache</li>
2029     <li>Compute the value as needed</li>
2030     <li>Ensure that it is always generated correctly (not set by constructor)</li>
2031     <li>Use triggers or method modifiers (coming soon) to clear the value</li>
2032   </ul>
2033 </div>
2034
2035 <div class="slide">
2036   <h1>Attribute Inheritance</h1>
2037
2038   <ul>
2039     <li>By default, subclasses inherit attribute as-is</li>
2040     <li>Can change attribute parameters in subclasses</li>
2041   </ul>
2042 </div>   
2043
2044 <div class="slide">
2045   <h1>Attribute Inheritance Example</h1>
2046
2047   <pre><code>package Employee;
2048 use Moose;
2049
2050 extends 'Person';
2051
2052 has '<span class="highlight">+first_name</span>' =&gt; (
2053     default =&gt; 'Joe',
2054 );</code></pre>
2055 </div>
2056
2057 <div class="slide">
2058   <h1>Attribute Inheritance Warning</h1>
2059
2060   <ul>
2061     <li>An attribute is a contract about a class's API</li>
2062     <li>Don't break that contract in a subclass</li>
2063     <li>Especially important in the context of types</li>
2064   </ul>
2065 </div>
2066
2067 <div class="slide">
2068   <h1>Changing Accessor Names</h1>
2069
2070   <pre><code>package Person;
2071 use Moose;
2072
2073 has first_name =&gt; (
2074     <span class="highlight">accessor</span> =&gt; 'first_name',
2075 );</code></pre>
2076
2077   <ul>
2078     <li>The long-hand version of <code>is =&gt; 'rw'</code></li>
2079   </ul>
2080 </div>
2081
2082 <div class="slide">
2083   <h1>Changing Accessor Names</h1>
2084
2085   <pre><code>package Person;
2086 use Moose;
2087
2088 has first_name =&gt; (
2089     <span class="highlight">reader</span> =&gt; 'first_name',
2090     <span class="highlight">writer</span> =&gt; undef,
2091 );</code></pre>
2092
2093   <ul>
2094     <li>The long-hand version of <code>is =&gt; 'ro'</code></li>
2095   </ul>
2096 </div>
2097
2098
2099 <div class="slide">
2100   <h1>Changing Accessor Names</h1>
2101
2102   <pre><code>package Person;
2103 use Moose;
2104
2105 has first_name =&gt; (
2106     <span class="highlight">reader</span> =&gt; 'get_first_name',
2107     <span class="highlight">writer</span> =&gt; 'set_first_name',
2108 );</code></pre>
2109 </div>
2110
2111 <div class="slide">
2112   <h1>Changing Accessor Names</h1>
2113
2114   <pre><code>package Person;
2115 use Moose;
2116
2117 has first_name =&gt; (
2118     <span class="highlight">is</span>     =&gt; 'rw',
2119     <span class="highlight">writer</span> =&gt; '_first_name',
2120 );</code></pre>
2121
2122   <ul>
2123     <li>Can also mix-and-match <code>is</code> and explicit names</li>
2124   </ul>
2125 </div>
2126
2127 <div class="slide">
2128   <h1>ETOOMUCHTYPING</h1>
2129
2130   <ul>
2131     <li><code>MooseX::FollowPBP</code><br /><code>get_foo</code> and <code>set_foo</code></li>
2132     <li><code>MooseX::SemiAffordanceAccessor</code><br /><code>foo</code> and <code>set_foo</code></li>
2133   </ul>
2134 </div>
2135
2136 <div class="slide">
2137   <h1>ETOOMUCHTYPING</h1>
2138
2139   <pre><code>package Person;
2140 use Moose;
2141 <span class="highlight">use MooseX::SemiAffordanceAccessor;</span>
2142
2143 has first_name =&gt; (
2144     is =&gt; 'rw',
2145 );</code></pre>
2146
2147   <ul>
2148     <li>Creates <code>first_name</code> and <code>set_first_name</code></li>
2149   </ul>
2150 </div>
2151
2152 <div class="slide">
2153   <h1>Basic Attributes Summary</h1>
2154
2155   <ul>
2156     <li>Attributes can be <code>required</code></li>
2157     <li>Attributes can have a <code>default</code> or <code>builder</code></li>
2158     <li>Attributes with a default or builder can be <code>lazy</code></li>
2159     <li>Attributes can have a <code>clearer</code> and/or <code>predicate</code></li>
2160   </ul>
2161 </div>
2162
2163 <div class="slide">
2164   <h1>Basic Attributes Summary</h1>
2165
2166   <ul>
2167     <li>An attribute's constructor name can be changed with <code>init_arg</code></li>
2168     <li>A subclass can alter its parents' attributes</li>
2169     <li>Attribute accessor names can be changed</li>
2170   </ul>
2171 </div>
2172
2173 <div class="slide">
2174   <h1>Questions?</h1>
2175 </div>  
2176
2177 <div class="slide">
2178   <h1>Exercises</h1>
2179
2180   <pre># cd exercises
2181 # perl bin/prove -lv \
2182       t/03-basic-attributes.t
2183
2184 Iterate til this passes all its tests</pre>
2185 </div>
2186
2187 <div class="slide fake-slide0">
2188   <h1>Part 4: Method Modifiers</h1>
2189 </div>
2190
2191 <div class="slide">
2192   <h1>What is a Method Modifier</h1>
2193
2194   <ul>
2195     <li>Apply to an existing method</li>
2196     <li>... that comes from a parent class, the current class, or a role</li>
2197     <li>Roles can provide modifiers that are applied at composition time</li>
2198   </ul>
2199 </div>
2200
2201 <div class="slide">
2202   <h1>What Are Method Modifiers For?</h1>
2203
2204   <ul>
2205     <li>"Inject" behavior</li>
2206     <li>Add behavior to generated methods (accessors, delegations)</li>
2207     <li>Added from a role, can modify existing behavior</li>
2208   </ul>
2209 </div>
2210
2211 <div class="slide">
2212   <h1>Before and After</h1>
2213
2214   <ul>
2215     <li>Simplest modifiers - <code>before</code> and <code>after</code></li>
2216     <li>Guess when they run!</li>
2217   </ul>
2218 </div>
2219
2220 <div class="slide">
2221   <h1>Uses for <code>before</code></h1>
2222
2223   <ul>
2224     <li>As a pre-call check</li>
2225   </ul>
2226
2227   <pre><code>package Person;
2228 use Moose;
2229
2230 before work =&gt; sub {
2231     my $self = shift;
2232     die 'I have no job!'
2233         unless $self-&gt;has_title;
2234 };</code></pre>
2235 </div>    
2236
2237 <div class="slide">
2238   <h1>Uses for <code>before</code></h1>
2239
2240   <ul>
2241     <li>Logging/Debugging</li>
2242   </ul>
2243
2244   <pre><code>package Person;
2245 use Moose;
2246
2247 before work =&gt; sub {
2248     my $self = shift;
2249     return unless $DEBUG;
2250
2251     warn "Called work on ",
2252          $self-&gt;full_name,
2253          "with the arguments: [@_]\n";
2254 };</code></pre>
2255 </div>    
2256
2257 <div class="slide">
2258   <h1>Uses for <code>after</code></h1>
2259
2260   <ul>
2261     <li>Also works for logging/debugging</li>
2262     <li>Post-X side-effects (recording audit info)</li>
2263   </ul>
2264
2265   <pre><code>package Person;
2266 use Moose;
2267
2268 after work =&gt; sub {
2269     my $self = shift;
2270     $self-&gt;work_count(
2271         $self-&gt;work_count + 1 );
2272 };</code></pre>
2273 </div>
2274
2275 <div class="slide">
2276   <h1>Other Uses</h1>
2277
2278   <ul>
2279     <li>Modifiers are useful for adding behavior to generated methods</li>
2280   </ul>
2281 </div>
2282
2283 <div class="slide">
2284   <h1>More Modifier Examples</h1>
2285
2286   <pre><code>has password =&gt; (
2287      is      =&gt; 'rw',
2288      clearer =&gt; 'clear_password',
2289 );
2290 has hashed_password =&gt; (
2291      is      =&gt; 'ro',
2292      builder =&gt; '_build_hashed_password',
2293      clearer =&gt; '_clear_hashed_password',
2294 );
2295 after clear_password =&gt; sub {
2296     my $self = shift;
2297     $self-&gt;_clear_hashed_password;
2298 };</code></pre>
2299 </div>
2300
2301 <div class="slide">
2302   <h1><code>before</code> and <code>after</code> Limitations</h1>
2303
2304   <ul>
2305     <li>Cannot alter method parameters</li>
2306     <li>Cannot alter return value</li>
2307     <li>But <strong>can</strong> throw an exception</li>
2308   </ul>
2309 </div>
2310
2311 <div class="slide">
2312   <h1>The <code>around</code> Modifier</h1>
2313
2314   <ul>
2315     <li>The big gun</li>
2316     <li>Can alter parameters <strong>and/or</strong> return values</li>
2317     <li>Can skip calling the wrapped method entirely</li>
2318   </ul>
2319 </div>
2320
2321 <div class="slide">
2322   <h1>The power of <code>around</code></h1>
2323
2324   <pre><code>around insert =&gt; sub {
2325     my $orig = shift;
2326     my $self = shift;
2327
2328     $self-&gt;_validate_insert(@_);
2329
2330     my $new_user =
2331         $self-&gt;$orig(
2332             $self-&gt;_munge_insert(@_) );
2333
2334     $new_user-&gt;_assign_uri;
2335     return $new_user;
2336 };</code></pre>
2337 </div>
2338
2339 <div class="slide">
2340   <h1>Modifier Order</h1>
2341
2342   <ul>
2343     <li>Before runs in order from last to first</li>
2344     <li>After runs in order from first to last</li>
2345     <li>Around runs in order from last to first</li>
2346   </ul>
2347 </div>
2348
2349 <div class="slide">
2350   <h1>Modifier Order Illustrated</h1>
2351
2352 <pre>
2353 <span class="current incremental">before 2
2354  before 1</span>
2355   <span class="incremental">around 2
2356    around 1</span>
2357     <span class="incremental">wrapped method</span>
2358    <span class="incremental">around 1
2359   around 2</span>
2360  <span class="incremental">after 1
2361 after 2</span>
2362 </pre>
2363 </div>
2364
2365 <div class="slide">
2366   <h1>Modifiers in Roles</h1>
2367
2368   <ul>
2369     <li>Roles can use these modifiers</li>
2370     <li>Very powerful!</li>
2371   </ul>
2372 </div>
2373
2374 <div class="slide">
2375   <h1>Modifiers in Roles</h1>
2376
2377   <pre><code>package IsUnreliable;
2378 use Moose::Role;
2379
2380 <span class="highlight">requires 'run';
2381
2382 around run</span> =&gt; sub {
2383     my $orig = shift;
2384     my $self = shift;
2385
2386     return if rand(1) &lt; 0.5;
2387
2388     return $self-&gt;$orig(@_);
2389 };</code></pre>
2390 </div>
2391
2392 <div class="slide">
2393   <h1>Method Modifiers Summary</h1>
2394
2395   <ul>
2396     <li>Use <code>before</code> and <code>after</code> for ...
2397       <ul>
2398         <li>logging</li>
2399         <li>pre- or post-validation</li>
2400         <li>to add behavior to generated methods</li>
2401       </ul>
2402     </li>
2403     <li>These two modifiers cannot change parameters or return values</li>
2404   </ul>
2405 </div>
2406
2407 <div class="slide">
2408   <h1>Method Modifiers Summary</h1>
2409
2410   <ul>
2411     <li>Use <code>around</code> to ...
2412       <ul>
2413         <li>alter parameters passed to the original method</li>
2414         <li>alter the return value of the original method</li>
2415         <li>not call the original method at all (or call a <em>different</em> method)</li>
2416         <li>When using modifiers in a role, require the modified method</li>
2417       </ul>
2418     </li>
2419   </ul>
2420 </div>
2421
2422 <div class="slide">
2423   <h1>Questions?</h1>
2424 </div>  
2425
2426 <div class="slide">
2427   <h1>Exercises</h1>
2428
2429   <pre># cd exercises
2430 # perl bin/prove -lv \
2431       t/04-method-modifiers.t
2432
2433 Iterate til this passes all its tests</pre>
2434 </div>
2435
2436 <div class="slide fake-slide0">
2437   <h1>Part 5: Types</h1>
2438 </div>
2439
2440 <div class="slide">
2441   <h1>A Type System for Perl</h1>
2442
2443   <ul>
2444     <li>Sort of ...</li>
2445     <li><em>Variables</em> are not typed</li>
2446     <li>Attributes can have types</li>
2447     <li>MooseX modules let you define method signatures</li>
2448   </ul>
2449 </div>
2450
2451 <div class="slide">
2452   <h1>Components of a Moose Type</h1>
2453
2454   <ul>
2455     <li>A type is a name and a constraint</li>
2456     <li>Types have a hierarchy</li>
2457     <li>Constraints are cumulative from parents</li>
2458     <li>Types can have associated coercions</li>
2459   </ul>
2460 </div>
2461
2462 <div class="slide">
2463   <h1>Built-in Type Hierarchy</h1>
2464
2465   <pre>
2466 Any
2467 Item
2468     Bool
2469     Maybe[`a]
2470     Undef
2471     Defined
2472         Value
2473             Str
2474                 Num
2475                     Int
2476                 ClassName
2477                 RoleName
2478 </pre>
2479 </div>
2480
2481 <div class="slide">
2482   <h1>Built-in Type Hierarchy</h1>
2483
2484 <pre>
2485 (Item)
2486     (Defined)
2487         (Value)
2488         Ref
2489             ScalarRef
2490             ArrayRef[`a]
2491             HashRef[`a]
2492             CodeRef
2493             RegexpRef
2494             GlobRef
2495                 FileHandle
2496             Object
2497 </pre>
2498 </div>
2499
2500 <div class="slide">
2501   <h1>Bool</h1>
2502
2503   <h2>True</h2>
2504   <pre><code>1</code></pre>
2505
2506   <h2>False</h2>
2507   <pre><code>0
2508 '0'
2509 ''
2510 undef</code></pre>
2511
2512   <ul>
2513     <li>Like Perl's <code>if ($foo)</code></li>
2514   </ul>
2515 </div>
2516
2517 <div class="slide">
2518   <h1>Value (and subtypes)</h1>
2519
2520   <ul>
2521     <li><code>Value</code> is true when <code>! ref $thing</code></li>
2522     <li><code>Value</code> and <code>Str</code> are effectively the same, but <code>Str</code> is more expressive</li>
2523     <li><code>Num</code> is true when a <code>$scalar</code> looks like a number</li>
2524     <li>An overloaded object which numifies does not pass the <code>Num</code> constraint!</li>
2525     <li>Perl 5's overloading is hopelessly broken</li>
2526   </ul>
2527 </div>
2528
2529 <div class="slide">
2530   <h1>ClassName and RoleName</h1>
2531
2532   <ul>
2533     <li>A string with a package name</li>
2534     <li>The package <strong>must already be loaded</strong></li>
2535   </ul>
2536 </div>
2537
2538 <div class="slide">
2539   <h1>Parameterizable Types</h1>
2540
2541   <ul>
2542     <li>What does <code>ArrayRef[`a]</code> mean?</li>
2543     <li><code>s/`a/Int/</code> (or <code>Str</code> or ...)</li>
2544     <li>When you use it you can write ...
2545       <ul>
2546         <li><code>ArrayRef</code> (== <code>ArrayRef[Item]</code>)</li>
2547         <li><code>ArrayRef[Str]</code></li>
2548         <li><code>ArrayRef[MyTypeName]</code></li>
2549         <li><code>ArrayRef[HashRef[Maybe[Int]]]</code></li>
2550       </ul>
2551     </li>
2552   </ul>
2553 </div>
2554
2555 <div class="slide">
2556   <h1>Maybe[`a]</h1>
2557
2558   <ul>
2559     <li>Maybe means either the named type or <code>undef</code></li>
2560     <li><code>Maybe[Int]</code> accepts integers or <code>undef</code></li>
2561   </ul>
2562 </div>
2563
2564 <div class="slide">
2565   <h1>Type Union</h1>
2566
2567   <ul>
2568     <li>This or that (or that or ...)</li>
2569     <li><code>Int | ArrayRef[Int]</code></li>
2570     <li>But use a coercion instead when possible</li>
2571     <li>Or use a <code>role_type</code>,  <code>duck_type</code>, or anything not a union</li>
2572     <li>A union is often a code smell</li>
2573   </ul>
2574 </div>
2575
2576 <div class="slide">
2577   <h1>Making Your Own Types</h1>
2578
2579   <pre><code>use Moose::Util::TypeConstraints;
2580
2581 <span class="incremental current">subtype 'PositiveInt',</span>
2582     <span class="incremental">as      'Int',</span>
2583     <span class="incremental">where   { $_ &gt; 0 },</span>
2584     <span class="incremental">message
2585         { "The value you provided ($_)"
2586           . " was not a positive int." };</span>
2587
2588 has size =&gt; (
2589     is  =&gt; 'ro',
2590     <span class="incremental">isa =&gt; 'PositiveInt',</span>
2591 );</code></pre>
2592 </div>
2593
2594 <div class="slide">
2595   <h1>Automatic Types</h1>
2596
2597   <ul>
2598     <li>Moose creates a type for every Moose class and role</li>
2599     <li>Unknown names are assumed to be classes</li>
2600   </ul>
2601 </div>
2602
2603 <div class="slide">
2604   <h1>Automatic Types</h1>
2605
2606   <pre><code>package Employee;
2607 use Moose;
2608
2609 has manager =&gt; (
2610     is  =&gt; 'rw',
2611     <span class="highlight">isa =&gt; 'Employee',</span>
2612 );
2613
2614 has start_date =&gt; (
2615     is  =&gt; 'ro',
2616     <span class="highlight">isa =&gt; 'DateTime',</span>
2617 );</code></pre>
2618 </div>
2619
2620 <div class="slide">
2621   <h1>Subtype Shortcuts - <code>class_type</code></h1>
2622
2623   <pre><code>use Moose::Util::TypeConstraints;
2624 class_type 'DateTime';</code></pre>
2625
2626 <hr />
2627
2628 <pre><code>subtype     'DateTime',
2629     as      'Object',
2630     where   { $_-&gt;isa('DateTime') },
2631     message { ... };</code></pre>
2632 </div>
2633
2634 <div class="slide">
2635   <h1>Subtype Shortcuts - <code>role_type</code></h1>
2636
2637   <pre><code>use Moose::Util::TypeConstraints;
2638 role_type 'Printable';</code></pre>
2639
2640 <hr />
2641
2642 <pre><code>subtype 'Printable',
2643     as  'Object',
2644     where
2645         { Moose::Util::does_role(
2646               $_, 'Printable' ) },
2647     message { ... };</code></pre>
2648 </div>
2649
2650 <div class="slide">
2651   <h1>Subtype Shortcuts - <code>duck_type</code></h1>
2652
2653   <pre><code>use Moose::Util::TypeConstraints;
2654 duck_type Car =&gt; qw( run break_down );</code></pre>
2655
2656 <hr />
2657
2658 <pre><code>subtype 'Car',
2659     as      'Object',
2660     where   { all { $_-&gt;can($_) }
2661               qw( run break_down ) },
2662     message { ... };</code></pre>
2663 </div>
2664
2665 <div class="slide">
2666   <h1>Subtype Shortcuts - <code>enum</code></h1>
2667
2668   <pre><code>use Moose::Util::TypeConstraints;
2669 enum Color =&gt; qw( red blue green );</code></pre>
2670
2671 <hr />
2672
2673 <pre><code>my %ok = map { $_ =&gt; 1 }
2674              qw( red blue green );
2675
2676 subtype     'Color'
2677     as      'Str',
2678     where   { $ok{$_} },
2679     message { ... };</code></pre>
2680 </div>
2681
2682 <div class="slide">
2683   <h1>Anonymous Subtypes</h1>
2684
2685   <pre><code>package Person;
2686
2687 <span class="highlight">my $posint =
2688     subtype as 'Int', where { $_ &gt; 0 };</span>
2689
2690 has size =&gt; (
2691     is  =&gt; 'ro',
2692     <span class="highlight">isa =&gt; $posint,</span>
2693 );</code></pre>
2694
2695   <ul>
2696     <li>Shortcuts have anonymous forms as well</li>
2697   </ul>
2698 </div>
2699
2700 <div class="slide">
2701   <h1>Coercions</h1>
2702
2703   <pre><code>use Moose::Util::TypeConstraints;
2704
2705 subtype 'UCStr',
2706     as    'Str',
2707     where { ! /[a-z]/ };</code></pre>
2708 </div>
2709
2710 <div class="slide">
2711   <h1>Coercions</h1>
2712
2713   <pre><code><span class="incremental current">coerce 'UCStr',</span>
2714     <span class="incremental">from 'Str',</span>
2715     <span class="incremental">via  { uc };</span>
2716
2717 has shouty_name =&gt; (
2718     is     =&gt; 'ro',
2719     isa    =&gt; 'UCStr',
2720     <span class="incremental">coerce =&gt; 1,</span>
2721 );</code></pre>
2722 </div>
2723
2724 <div class="slide">
2725   <h1>Coercion Examples</h1>
2726
2727   <pre><code>subtype 'My::DateTime',
2728     as class_type 'DateTime';
2729
2730 coerce 'My::DateTime',
2731     from 'HashRef',
2732     via  { DateTime-&gt;new( %{$_} ) };
2733
2734 coerce 'My::DateTime',
2735     from 'Int',
2736     via  { DateTime-&gt;from_epoch(
2737                epoch =&gt; $_ ) };</code></pre>
2738
2739   <ul>
2740     <li>Use coercion to inflate a value</li>
2741   </ul>
2742 </div>
2743
2744 <div class="slide">
2745   <h1>Coercion Examples</h1>
2746
2747   <pre><code>coerce 'ArrayRef[Int]',
2748     from 'Int',
2749     via  { [ $_ ] };</code></pre>
2750
2751   <ul>
2752     <li>Instead of union - <code style="white-space: nowrap">Int | ArrayRef[Int]</code></li>
2753   </ul>
2754 </div>
2755
2756 <div class="slide">
2757   <h1>Using Types with Attributes</h1>
2758
2759   <pre><code>package Person;
2760
2761 has height =&gt; (
2762     is  =&gt; 'rw',
2763     <span class="highlight">isa =&gt; 'Num',</span>
2764 );
2765
2766 has favorite_numbers =&gt; (
2767     is     =&gt; 'rw',
2768     <span class="highlight">isa    =&gt; 'ArrayRef[Int]',
2769     coerce =&gt; 1,</span>
2770 );</code></pre>
2771 </div>
2772
2773 <div class="slide">
2774   <h1>More Droppings</h1>
2775
2776   <ul>
2777     <li><code>Moose::Util::TypeConstraints</code> also needs cleanup</li>
2778   </ul>
2779
2780   <pre><code>package Person;
2781
2782 use Moose;
2783 use Moose::Util::TypeConstraints;
2784
2785 subtype ...;
2786
2787 no Moose;
2788 <span class="highlight">no Moose::Util::TypeConstraints;</span></code></pre>
2789 </div>
2790
2791 <div class="slide">
2792   <h1>Questions So Far?</h1>
2793 </div>  
2794
2795 <div class="slide">
2796   <h1>Exercises</h1>
2797
2798   <pre># cd exercises
2799 # perl bin/prove -lv t/05-types.t
2800
2801 Iterate til this passes all its tests</pre>
2802 </div>
2803
2804 <div class="slide">
2805   <h1>Typed Methods (Low-tech)</h1>
2806
2807   <pre class="medium"><code>package Person;
2808 <span class="highlight">use MooseX::Params::Validate qw( validated_list );</span>
2809
2810 sub work {
2811     my $self = shift;
2812     <span class="highlight">my ( $tasks, $can_rest ) =
2813         validated_list(
2814             \@_,
2815             tasks    =&gt;
2816                 { isa    =&gt; 'ArrayRef[Task]',
2817                   coerce =&gt; 1 },
2818             can_rest =&gt;
2819                 { isa     =&gt; 'Bool',
2820                   default =&gt; 0 },
2821         );</span>
2822     ...
2823 }</code></pre>
2824 </div>
2825
2826 <div class="slide">
2827   <h1>Typed Methods (High-tech)</h1>
2828
2829   <pre class="medium"><code>package Person;
2830
2831 <span class="highlight">use MooseX::Method::Signatures;</span>
2832
2833 <span class="highlight">method work ( ArrayRef[Task] :$tasks,
2834                         Bool :$can_rest = 0 )</span> {
2835     my $self = shift;
2836
2837     ...
2838 }</code></pre>
2839 </div>
2840
2841 <div class="slide">
2842   <h1>Digression: The Type Registry</h1>
2843
2844   <ul>
2845     <li>Types are actually <code>Moose::Meta::TypeConstraints</code> <em>objects</em></li>
2846     <li>Stored in an interpreter-global registry mapping names to objects</li>
2847   </ul>
2848 </div>
2849
2850 <div class="slide">
2851   <h1>Danger!</h1>
2852
2853   <ul>
2854     <li>Coercions are attached to type objects</li>
2855     <li>Therefore also global</li>
2856     <li>Name conflicts between modules!</li>
2857     <li>Coercion conflicts between modules!</li>
2858   </ul>
2859 </div>
2860
2861 <div class="slide">
2862   <h1>Namespace Fix</h1>
2863
2864   <ul>
2865     <li>Use some sort of pseudo-namespacing scheme</li>
2866     <li>Never coerce directly to a class name, or <em>to</em> built-in types</li>
2867   </ul>
2868 </div>
2869
2870 <div class="slide">
2871   <h1>Namespace Fix</h1>
2872
2873   <pre><code>use Moose::Util::TypeConstraints;
2874 subtype <span class="highlight">'MyApp::Type::DateTime',</span>
2875     as 'DateTime';
2876
2877 <span class="highlight">coerce 'MyApp::Type::DateTime',</span>
2878     from 'HashRef',
2879     via  { DateTime-&gt;new( %{$_} ) }
2880
2881 has creation_date =&gt; (
2882     is     =&gt; 'ro',
2883     <span class="highlight">isa    =&gt; 'MyApp::Type::DateTime',</span>
2884     coerce =&gt; 1,
2885 );</code></pre>
2886 </div>
2887
2888 <div class="slide">
2889   <h1>Namespace Fix</h1>
2890
2891   <pre><code>subtype 'MyApp::Type::ArrayOfInt',
2892     as 'ArrayRef[Int]';
2893
2894 coerce 'MyApp::Type::ArrayOfInt',
2895     from 'Int',
2896     via  { [ $_ ] };</code></pre>
2897 </div>
2898
2899 <div class="slide">
2900   <h1>Namespace Fix Pros and Cons</h1>
2901
2902   <ul>
2903     <li><span class="right">Relatively simple</span></li>
2904     <li><span class="right">Already built into Moose</span></li>
2905     <li><span class="wrong">Conflates type and module namespaces</span></li>
2906     <li><span class="wrong">Type names are strings, so typos are easy to make and may be hard to find</span></li>
2907   </ul>
2908 </div>
2909
2910 <div class="slide">
2911   <h1>MooseX::Types</h1>
2912
2913   <pre><code>package MyApp::Types;
2914
2915 use MooseX::Types
2916     <span class="highlight">-declare =&gt; [ qw( ArrayOfInt ) ]</span>;
2917 use MooseX::Types::Moose
2918     qw( ArrayRef Int );
2919
2920 subtype <span class="highlight">ArrayOfInt</span>,
2921     as ArrayRef[Int];
2922
2923 coerce <span class="highlight">ArrayOfInt</span>
2924     from Int,
2925     via  { [ $_ ] };</code></pre>
2926 </div>
2927
2928 <div class="slide">
2929   <h1>MooseX::Types</h1>
2930
2931   <pre><code>package MyApp::Account;
2932
2933 use MyApp::Types qw( ArrayOfInt );
2934
2935 has transaction_history =&gt; (
2936     is  =&gt; 'rw',
2937     isa =&gt; ArrayOfInt,
2938 );</code></pre>
2939 </div>
2940
2941 <div class="slide">
2942   <h1>MooseX::Types</h1>
2943
2944   <ul>
2945     <li>Type names are exported functions, catches typos early</li>
2946     <li>Types must be pre-declared</li>
2947     <li>Types are stored with namespaces internally, but you use short names</li>
2948     <li>Import existing Moose types as functions from <code>MooseX::Types::Moose</code></li>
2949     <li>Still need string names for things like <code>ArrayRef['Email::Address']</code></li>
2950   </ul>
2951 </div>
2952
2953 <div class="slide">
2954   <h1>MooseX::Types Pros and Cons</h1>
2955
2956   <ul>
2957     <li><span class="right">Catches typos at compile time</span></li>
2958     <li><span class="right">Automatic namespacing</span></li>
2959     <li><span class="wrong">One more thing to install and learn</span></li>
2960     <li><span class="wrong">Every name is typed twice (declared and then defined)</span></li>
2961     <li><span class="wrong">Still stuck with strings when referring to class or role names</span></li>
2962     <li><span class="wrong">Coercion gotcha from earlier still applies to types exported from <code>MooseX::Types::Moose</code></span></li>
2963   </ul>
2964 </div>
2965
2966 <div class="slide">
2967   <h1>Recommendation</h1>
2968
2969   <ul>
2970     <li>Use <code>MooseX::Types</code></li>
2971     <li>Compile time error catching and automatic namespacing are huge wins</li>
2972     <li>Docs from <code>Moose::Util::TypeConstraints</code> are 98% compatible with <code>MooseX::Types</code> anyway</li>
2973     <li>A function exported by a type library works wherever a type name would</li>
2974   </ul>
2975 </div>
2976
2977 <div class="slide">
2978   <h1>Questions?</h1>
2979 </div>  
2980
2981 <div class="slide fake-slide0">
2982   <h1>Part 6: Advanced Attributes</h1>
2983 </div>
2984
2985 <div class="slide">
2986   <h1>Weak References</h1>
2987
2988   <ul>
2989     <li>A weak reference lets you avoid circular references</li>
2990     <li>Weak references do not increase the reference count</li>
2991   </ul>
2992 </div>
2993
2994 <div class="slide">
2995   <h1>Circular Reference Illustrated</h1>
2996
2997   <pre><code>my $foo = {};
2998 my $bar = { foo =&gt; $foo };
2999 $foo-&gt;{bar} = $bar;</code></pre>
3000
3001   <ul>
3002     <li>Neither <code>$foo</code> nor <code>$bar</code> go out of scope<br />
3003         (until the program exits)</li>
3004   </ul>
3005 </div>
3006
3007 <div class="slide">
3008   <h1>Weakening Circular References</h1>
3009
3010   <pre><code>use Scalar::Util qw( weaken );
3011
3012 my $foo = {};
3013 my $bar = { foo =&gt; $foo };
3014 $foo-&gt;{bar} = $bar;
3015 weaken $foo-&gt;{bar}</code></pre>
3016
3017   <ul>
3018     <li>When <code>$bar</code> goes out of scope, <code>$foo-&gt;{bar}</code> becomes <code>undef</code></li>
3019   </ul>
3020 </div>
3021
3022 <div class="slide">
3023   <h1>Circular References in Attributes</h1>
3024
3025   <pre><code>package Person;
3026 use Moose;
3027
3028 has name   =&gt; ( is =&gt; 'ro' );
3029 has friend =&gt; ( is =&gt; 'rw' );
3030
3031 my $alice = Person-&gt;new( name =&gt; 'Alice' );
3032 my $bob   = Person-&gt;new( name =&gt; 'Bob' );
3033 $bob-&gt;friend($alice);
3034 $alice-&gt;friend($bob);</code></pre>
3035 </div>
3036
3037 <div class="slide">
3038   <h1>The Fix</h1>
3039
3040   <pre><code>package Person;
3041 use Moose;
3042
3043 has name   =&gt; ( is =&gt; 'ro' );
3044 has friend =&gt; ( is       =&gt; 'rw',
3045                 <span class="highlight">weak_ref =&gt; 1</span> );
3046
3047 my $alice = Person-&gt;new( name =&gt; 'Alice' );
3048 my $bob   = Person-&gt;new( name =&gt; 'Bob' );
3049 $bob-&gt;friend($alice);
3050 $alice-&gt;friend($bob);</code></pre>
3051 </div>
3052
3053 <div class="slide">
3054   <h1>Under the Hood</h1>
3055
3056   <ul>
3057     <li>A <code>weak_ref</code> attribute calls <code>weaken</code> ...
3058       <ul>
3059         <li>during object construction</li>
3060         <li>when the attribute is set via a writer</li>
3061       </ul>
3062     </li>
3063   </ul>
3064 </div>
3065
3066 <div class="slide">
3067   <h1>Triggers</h1>
3068
3069   <ul>
3070     <li>A code reference run after an attribute is <em>set</em></li>
3071     <li>Like an <code>after</code> modifier, but makes intentions clearer</li>
3072   </ul>
3073
3074   <h2 class="wrong">Gross</h2>
3075
3076   <pre><code>after salary_level =&gt; {
3077     my $self = shift;
3078     <span class="highlight">return unless @_;</span>
3079     $self-&gt;clear_salary;
3080 };</code></pre>
3081 </div>
3082
3083 <div class="slide">
3084   <h1>Use a Trigger Instead</h1>
3085
3086   <h2 class="right">Cleaner</h2>
3087
3088   <pre><code>has salary_level =&gt; (
3089     is      =&gt; 'rw',
3090     trigger =&gt;
3091         sub { $_[0]-&gt;clear_salary },
3092 );</code></pre>
3093 </div>
3094
3095 <div class="slide">
3096   <h1>Trigger Arguments</h1>
3097
3098   <ul>
3099     <li><code>$self</code></li>
3100     <li><code>$new_value</code></li>
3101     <li><code>$old_value</code> - if one exists</li>
3102   </ul>
3103 </div>
3104
3105 <div class="slide">
3106   <h1>Delegation</h1>
3107
3108   <ul>
3109     <li>Attributes can be objects</li>
3110     <li>Delegation transparently calls methods on those objects</li>
3111   </ul>
3112 </div>
3113
3114 <div class="slide">
3115   <h1>Delegation Examples</h1>
3116
3117   <pre><code>package Person;
3118
3119 has lungs =&gt; (
3120     is      =&gt; 'ro',
3121     isa     =&gt; 'Lungs',
3122     <span class="highlight">handles =&gt; [ 'inhale', 'exhale' ],</span>
3123 );</code></pre>
3124
3125   <ul>
3126     <li>Creates <code>$person-&gt;inhale</code> and <code>-&gt;exhale</code> methods</li>
3127     <li>Internally calls <code>$person-&gt;lungs-&gt;inhale</code></li>
3128   </ul>
3129 </div>
3130
3131 <div class="slide">
3132   <h1>Why Delegation?</h1>
3133
3134   <ul>
3135     <li>Reduce the number of classes exposed</li>
3136     <li>Re-arrange class internals -<br />
3137         turn a method into an attribute with delegation</li>
3138     <li>Provide convenenience methods</li>
3139   </ul>
3140 </div> 
3141
3142 <div class="slide">
3143   <h1>Moose's <code>handles</code> Parameter</h1>
3144
3145   <ul>
3146     <li>Accepts many arguments ...
3147       <ul>
3148         <li>Array reference - list of methods to delegate as-is</li>
3149         <li>Hash reference - map of method names</li>
3150         <li>Regex - delegates all matching methods</li>
3151         <li>Role name - delegates all methods in the role</li>
3152         <li>Sub reference - does something complicated ;)</li>
3153       </ul>
3154     </li>
3155   </ul>
3156 </div>      
3157
3158 <div class="slide">
3159   <h1>Array Reference</h1>
3160
3161   <ul>
3162     <li>1-to-1 mapping</li>
3163     <li>Takes each method name and creates a simple delegation from the delegating class to the delegatee attribute</li>
3164   </ul>
3165 </div>
3166
3167 <div class="slide">
3168   <h1>Hash Reference</h1>
3169
3170   <ul>
3171     <li>Mapping of names in the delegating class to the delegatee class</li>
3172   </ul>
3173
3174   <pre><code>package Person;
3175 use Moose;
3176 has account =&gt; (
3177     is      =&gt; 'ro',
3178     isa     =&gt; 'BankAccount',
3179     <span class="highlight">handles =&gt; {
3180         receive_money =&gt; 'deposit',
3181         give_money    =&gt; 'withdraw',
3182     },</span>
3183 );</code></pre>
3184 </div>
3185
3186 <div class="slide">
3187   <h1>Hash Reference Detailed</h1>
3188
3189   <pre><code>    handles =&gt; {
3190         receive_money =&gt; 'deposit',
3191         give_money    =&gt; 'withdraw',
3192     },</code></pre>
3193
3194   <ul>
3195     <li><code>$person-&gt;receive_money</code> = <code>$person-&gt;account-&gt;deposit</code></li>
3196     <li><code>$person-&gt;give_money</code> = <code>$person-&gt;account-&gt;withdraw</code></li>
3197   </ul>
3198 </div>
3199
3200 <div class="slide">
3201   <h1>Regex</h1>
3202
3203   <pre><code>package Person;
3204 use Moose;
3205
3206 has name =&gt; (
3207     is      =&gt; 'ro',
3208     isa     =&gt; 'Name',
3209     handles =&gt; qr/.*/,
3210 );</code></pre>
3211
3212   <ul>
3213     <li>Creates a delegation for every method in the Name class</li>
3214     <li>Excludes <code>meta</code> and methods inherited from <code>Moose::Object</code></li>
3215   </ul>
3216 </div>
3217
3218 <div class="slide">
3219   <h1>Role Name</h1>
3220
3221   <pre><code>package Auditor;
3222 use Moose::Role;
3223 sub record_change  { ... }
3224 sub change_history { ... }
3225
3226 package Account;
3227 use Moose;
3228
3229 has history =&gt; (
3230     is      =&gt; 'ro',
3231     does    =&gt; 'Auditor',
3232     <span class="highlight">handles =&gt; 'Auditor',</span>
3233 );</code></pre>
3234 </div>
3235
3236 <div class="slide">
3237   <h1>Role Name Detailed</h1>
3238
3239   <ul>
3240     <li>Account gets delegate methods for each method in the <code>Auditor</code> role
3241       <ul>
3242         <li>record_history</li>
3243         <li>change_history</li>
3244       </ul>
3245     </li>
3246   </ul>
3247 </div>
3248
3249 <div class="slide">
3250   <h1>Native Delegation</h1>
3251
3252   <ul>
3253     <li>Delegate to <em>unblessed</em> Perl types</li>
3254     <li>Scalar, array or hash ref, etc</li>
3255     <li>Treat Perl types as objects</li>
3256     <li>Still uses <code>handles</code></li>
3257     <li>Pretend that native Perl types have methods</li>
3258   </ul>
3259 </div>
3260
3261 <div class="slide">
3262   <h1>Native Delegation - Array(Ref)</h1>
3263
3264   <ul>
3265     <li>Methods include:
3266       <ul>
3267         <li><code>push</code></li>
3268         <li><code>shift</code></li>
3269         <li><code>elements</code> - returns all elements</li>
3270         <li><code>count</code></li>
3271         <li><code>is_empty</code></li>
3272         <li>quite a few more</li>
3273       </ul>
3274     </li>
3275   </ul>
3276 </div>
3277
3278 <div class="slide">
3279   <h1>Native Delegation - Array(Ref)</h1>
3280
3281   <pre><code>package Person;
3282 use Moose;
3283 has _favorite_numbers =&gt; (
3284     traits   =&gt; [ 'Array' ],
3285     is       =&gt; 'bare',
3286     isa      =&gt; 'ArrayRef[Int]',
3287     default  =&gt; sub { [] },
3288     init_arg =&gt; undef,
3289     <span class="highlight">handles  =&gt;
3290       { favorite_numbers    =&gt; 'elements',
3291         add_favorite_number =&gt; 'push',
3292       },</span>
3293 );</code></pre>
3294 </div>
3295
3296 <div class="slide">
3297   <h1>Native Delegation - Array(Ref)</h1>
3298
3299   <pre><code>my $person = Person-&gt;new();
3300
3301 $person-&gt;add_favorite_number(7);
3302 $person-&gt;add_favorite_number(42);
3303
3304 print "$_\n"
3305     for $person-&gt;favorite_numbers;
3306
3307 # 7
3308 # 42</code></pre>
3309 </div>
3310
3311 <div class="slide">
3312   <h1>Native Delegation</h1>
3313
3314   <ul>
3315     <li>Native types are ...
3316       <ul>
3317         <li>Number - <code>add</code>, <code>mul</code>, ...</li>
3318         <li>String - <code>append</code>, <code>chop</code>, ...</li>
3319         <li>Counter - <code>inc</code>, <code>dec</code>, ...</li>
3320         <li>Bool - <code>set</code>, <code>toggle</code>, ...</li>
3321         <li>Hash - <code>get</code>, <code>set</code>, ...</li>
3322         <li>Array - already saw it</li>
3323         <li>Code - <code>execute</code> and <code>execute_method</code></li>
3324       </ul>
3325     </li>
3326   </ul>
3327 </div>
3328
3329 <div class="slide">
3330   <h1>Curried Delegation</h1>
3331
3332   <ul>
3333     <li>A delegation with some preset arguments</li>
3334     <li>Works with object or Native delegation</li>
3335   </ul>
3336 </div>
3337
3338 <div class="slide">
3339   <h1>Curried Delegation</h1>
3340
3341   <pre><code>package Person;
3342 use Moose;
3343 has account =&gt; (
3344     is      =&gt; 'ro',
3345     isa     =&gt; 'BankAccount',
3346     handles =&gt; {
3347         receive_100 =&gt;
3348             <span class="highlight">[ 'deposit', 100 ]</span>,
3349         give_100    =&gt;
3350             <span class="highlight">[ 'withdraw', 100 ]</span>
3351     },
3352 );</code></pre>
3353 </div>
3354
3355 <div class="slide">
3356   <h1>Curried Delegation</h1>
3357
3358   <pre><code>$person-&gt;receive_100;
3359 # really is
3360 $person-&gt;account-&gt;deposit(100);</code></pre>
3361 </div>
3362
3363 <div class="slide">
3364   <h1>Traits and Metaclasses</h1>
3365
3366   <ul>
3367     <li>The ultimate in customization</li>
3368     <li>Per attribute metaclasses</li>
3369     <li>Per attribute roles applied to the attribute metaclass</li>
3370     <li>Change the meta-level behavior</li>
3371   </ul>
3372 </div>
3373
3374 <div class="slide">
3375   <h1>Traits and Metaclasses</h1>
3376
3377   <ul>
3378     <li>The default metaclass is <code>Moose::Meta::Attribute</code></li>
3379     <li>Controls accessor generation, defaults, delegation, etc.</li>
3380     <li>Adding a role to this metaclass (or replacing it) allows for infinite customization</li>
3381   </ul>
3382 </div>
3383
3384 <div class="slide">
3385   <h1>Traits and Metaclasses</h1>
3386
3387   <ul>
3388     <li>Can add/alter/remove an attribute parameter (from <code>has</code>)</li>
3389     <li>Can change behavior of created attribute</li>
3390   </ul>
3391 </div>
3392
3393 <div class="slide">
3394   <h1>Simple Trait Example</h1>
3395
3396   <pre><code>package Person;
3397 use Moose;
3398 use MooseX::LabeledAttributes;
3399
3400 has ssn =&gt; (
3401     <span class="highlight">traits =&gt; [ 'Labeled' ],</span>
3402     is     =&gt; 'ro',
3403     isa    =&gt; 'Str',
3404     <span class="highlight">label  =&gt; 'Social Security Number',</span>
3405 );
3406 print <span class="highlight">Person-&gt;meta
3407             -&gt;get_attribute('ssn')-&gt;label;</span></code></pre>
3408 </div>
3409
3410 <div class="slide">
3411   <h1>Simple Metaclass Example</h1>
3412
3413   <pre><code>package Person;
3414 use Moose;
3415 use MooseX::LabeledAttributes;
3416
3417 has ssn =&gt; (
3418     <span class="highlight">metaclass =&gt;
3419         'MooseX::Meta::Attribute::Labeled',</span>
3420     is        =&gt; 'ro',
3421     isa       =&gt; 'Str',
3422     <span class="highlight">label     =&gt; 'Social Security Number',</span>
3423 );
3424 print <span class="highlight">Person-&gt;meta
3425             -&gt;get_attribute('ssn')-&gt;label;</span></code></pre>
3426 </div>
3427
3428 <div class="slide">
3429   <h1>Traits vs Metaclass</h1>
3430
3431   <ul>
3432     <li>Can apply any mix of traits to an attribute</li>
3433     <li>But just one metaclass</li>
3434     <li>Traits (aka roles) can cooperate</li>
3435     <li>Metaclasses require you to pick just one</li>
3436   </ul>
3437 </div>
3438
3439 <div class="slide">
3440   <h1>Advanced Attributes Summary</h1>
3441
3442   <ul>
3443     <li>Use <code>weak_ref</code> to avoid circular references</li>
3444     <li>Use trigger to do an action post-attribute write</li>
3445     <li>Use delegations to hide "internal" objects</li>
3446     <li>Use native delegations to treat Perl types as objects</li>
3447     <li>Traits and metaclasses let you extend Moose's core attribute features</li>
3448   </ul>
3449 </div>
3450
3451 <div class="slide">
3452   <h1>Exercises</h1>
3453
3454   <pre># cd exercises
3455 # perl bin/prove -lv \
3456       t/06-advanced-attributes.t
3457
3458 Iterate til this passes all its tests</pre>
3459 </div>
3460
3461 <div class="slide">
3462   <h1>CYOA</h1>
3463
3464   <p>
3465     If there is time, keep going ...
3466   </p>
3467
3468   <p>
3469     Otherwise, jump to slide 269 ...
3470   </p>
3471 </div>
3472
3473 <div class="slide fake-slide0">
3474   <h1>Bonus: A Brief Tour of MooseX</h1>
3475 </div>
3476
3477 <div class="slide">
3478   <h1>Notable MX Modules on CPAN</h1>
3479
3480   <ul>
3481     <li><strong>Not comprehensive</strong></li>
3482     <li>188 MooseX distributions on CPAN as of 02/03/2011</li>
3483     <li>Some of them are crap</li>
3484   </ul>
3485 </div>
3486
3487 <div class="slide">
3488   <h1>Already Mentioned Several</h1>
3489
3490   <ul>
3491     <li><code>MooseX::NonMoose</code> - best solution for subclassing non-Moose parents</li>
3492     <li><code>MooseX::Declare</code> - <em>real</em> Perl 5 OO</li>
3493     <li><code>MooseX::FollowPBP</code> and <code>MooseX::SemiAffordanceAccessor</code></li>
3494     <li><code>MooseX::Params::Validate</code> and <code>MooseX::Method::Signatures</code></li>
3495     <li><code>MooseX::Types</code></li>
3496   </ul>
3497 </div>    
3498
3499 <div class="slide">
3500   <h1>MooseX::Declare</h1>
3501
3502 <pre><code>use MooseX::Declare;
3503 use 5.12.0; # for say
3504
3505 class Person {
3506     has greeting =&gt;
3507         ( is =&gt; 'ro', isa =&gt; 'Str' );
3508
3509     method speak {
3510         say $self-&gt;greeting;
3511     }
3512 }</code></pre>
3513 </div>
3514
3515 <div class="slide">
3516   <h1>MooseX::Declare</h1>
3517
3518   <ul>
3519     <li>Still experimental-ish, but seeing more and more use</li>
3520     <li><strong>Not</strong> a source filter!</li>
3521     <li>Hooks into the Perl parser rather than filtering all your code</li>
3522     <li>But not supported by <code>PPI</code>, <code>perltidy</code>, etc. (yet?)</li>
3523   </ul>
3524 </div>
3525
3526 <div class="slide">
3527   <h1>MooseX::StrictConstructor</h1>
3528
3529   <ul>
3530     <li>By default, unknown constructor arguments are ignored</li>
3531     <li>MX::StrictConstructor turns these into an error</li>
3532   </ul>
3533 </div>
3534
3535 <div class="slide">
3536   <h1>MooseX::StrictConstructor</h1>
3537
3538   <pre><code>package Person;
3539
3540 use Moose;
3541 <span class="highlight">use MooseX::StrictConstructor;</span>
3542
3543 has name =&gt; ( is =&gt; 'ro' );
3544
3545 Person-&gt;new
3546     ( na<span class="wrong">n</span>e =&gt; 'Ringo Shiina' ); # kaboom</code></pre>
3547 </div>
3548
3549 <div class="slide">
3550   <h1>MooseX::Traits</h1>
3551
3552   <ul>
3553     <li>Combines object construction and role application</li>
3554     <li>Makes it easy to create one-off customized objects</li>
3555   </ul>
3556 </div>
3557
3558 <div class="slide">
3559   <h1>MooseX::Traits</h1>
3560
3561   <pre><code>package MyApp::Thingy;
3562 use Moose;
3563
3564 <span class="highlight">with 'MooseX::Traits';</span>
3565
3566 my $thing =
3567     MyApp::Thingy-&gt;<span class="highlight">new_with_traits</span>
3568         ( <span class="highlight">traits =&gt; [ 'Foo', 'Bar' ],</span>
3569           size   =&gt; 42 );</code></pre>
3570 </div>
3571
3572 <div class="slide">
3573   <h1>MooseX::Getopt</h1>
3574
3575   <ul>
3576     <li>Makes command-line interface programs easy!</li>
3577     <li>Construct an object from CLI arguments</li>
3578   </ul>
3579 </div>
3580
3581 <div class="slide">
3582   <h1>MooseX::Getopt</h1>
3583
3584   <pre><code>package App::CLI;
3585 use Moose;
3586
3587 <span class="highlight">with 'MooseX::Getopt';</span>
3588
3589 has file    =&gt;
3590     ( is =&gt; 'ro', required =&gt; 1 );
3591 has filters =&gt;
3592     ( is =&gt; 'ro', isa =&gt; 'ArrayRef[Str]' );
3593
3594 sub run { ... }</code></pre>
3595 </div>
3596
3597 <div class="slide">
3598   <h1>MooseX::Getopt</h1>
3599
3600   <ul>
3601     <li>Then call it like this:</li>
3602   </ul>
3603
3604 <pre><code>#!/usr/bin/perl
3605
3606 use App::CLI;
3607
3608 <span class="highlight">App::CLI-&gt;new_with_options()</span>-&gt;run();</code></pre>
3609
3610 <pre>$ myapp-cli \
3611    --file foo \
3612    --filters compress \
3613    --filters sanitize</pre>
3614 </div>
3615
3616 <div class="slide">
3617   <h1>MooseX::Clone</h1>
3618
3619   <pre><code>package Person;
3620
3621 use Moose;
3622 <span class="highlight">with 'MooseX::Clone';</span>
3623
3624 my $person = Person-&gt;new;
3625 my $clone  = <span class="highlight">$person-&gt;clone;</span></code></pre>
3626 </div>
3627
3628 <div class="slide">
3629   <h1>MooseX::NonMoose</h1>
3630
3631   <ul>
3632     <li>Highly recommended for subclassing non-Moose parents</li>
3633     <li>Gets all the little annoying details right</li>
3634   </ul>
3635 </div>
3636
3637 <div class="slide">
3638   <h1>MooseX::Role::Parameterized</h1>
3639
3640   <pre><code>package HasCollection;
3641 <span class="current incremental">use MooseX::Role::Parameterized;</span>
3642 <span class="incremental">parameter type =&gt; ( isa     =&gt; 'Str',
3643                     default =&gt; 'Item' );</span>
3644 <span class="incremental">role {
3645     my $p = shift;
3646
3647     my $type =
3648         'ArrayRef[' . $p-&gt;type() . ']';
3649     has collection =&gt;
3650         ( is  =&gt; 'ro',
3651           isa =&gt; $type );
3652 };</span></code></pre>
3653 </div>
3654
3655 <div class="slide">
3656   <h1>MooseX::Role::Parameterized</h1>
3657
3658   <pre><code>package Person;
3659
3660 use Moose;
3661 with HasCollection =&gt; { type =&gt; 'Int' };</code></pre>
3662 </div>
3663
3664 <div class="slide">
3665   <h1>Questions?</h1>
3666 </div>  
3667
3668 <div class="slide">
3669   <h1>Moose-using Modules</h1>
3670
3671   <p>
3672     For further reading, a few modules which use Moose ...
3673   </p>
3674
3675   <ul>
3676     <li><a href="http://search.cpan.org/dist/Catalyst-Runtime">Catalyst</a></li>
3677     <li><a href="http://search.cpan.org/dist/CHI">CHI</a></li>
3678     <li><a href="http://search.cpan.org/dist/Devel-REPL">Devel::REPL</a></li>
3679     <li><a href="http://search.cpan.org/dist/Email-Sender">Email::Sender</a></li>
3680     <li><a href="http://search.cpan.org/dist/Fey">Fey</a></li>
3681     <li><a href="http://search.cpan.org/dist/Net-Twitter">Net::Twitter</a></li>
3682   </ul>
3683 </div>
3684
3685 <div class="slide">
3686   <h1>More Information</h1>
3687
3688   <ul>
3689     <li><a href="http://moose.perl.org/">http://moose.perl.org/</a></li>
3690     <li><a href="http://search.cpan.org/dist/Moose/lib/Moose/Manual.pod">Moose::Manual</a> and <a href="http://search.cpan.org/dist/Moose/lib/Moose/Cookbook.pod">Moose::Cookbook</a></li>
3691     <li><a href="irc://irc.perl.org/#moose">irc://irc.perl.org/#moose</a></li>
3692     <li>mailing list - <a href="mailto:moose@perl.org">moose@perl.org</a></li>
3693     <li>Slides and exercises are in Moose's git repo:
3694         <br />
3695         <span style="font-size:80%; white-space: nowrap">git://jules.scsys.co.uk/gitmo/moose-presentations</span></li>
3696   </ul>
3697 </div>
3698
3699 <div class="slide fake-slide0">
3700   <h1>The End</h1>
3701 </div>
3702
3703 </div> 
3704 </body>
3705 </html>
3706
3707 <!--
3708
3709 Copyright 2009 David Rolsky. All Rights Reserved.
3710
3711 This work is licensed under a Creative Commons Attribution-Share Alike
3712 3.0 United States License See
3713 http://creativecommons.org/licenses/by-sa/3.0/us/ for details.
3714
3715 -->