Revised recipe 2
[gitmo/Moose.git] / lib / Moose / Cookbook / Extending / Recipe2.pod
CommitLineData
f3ce0579 1
2=pod
3
4=head1 NAME
5
6Moose::Cookbook::Extending::Recipe2 - Providing a role for the base object class
7
8=head1 SYNOPSIS
9
10 package MooseX::Debugging;
11
12 use strict;
13 use warnings;
14
09167788 15 use Moose ();
f3ce0579 16 use Moose::Exporter;
17 use Moose::Util::MetaRole;
18 use MooseX::Debugging::Role::Object;
19
871cda31 20 Moose::Exporter->setup_import_methods;
f3ce0579 21
22 sub init_meta {
23 shift;
24 my %options = @_;
25
09167788 26 Moose->init_meta(%options);
27
9d72e8c0 28 Moose::Util::MetaRole::apply_base_class_roles(
f3ce0579 29 for_class => $options{for_class},
b51819d6 30 roles => ['MooseX::Debugging::Role::Object'],
f3ce0579 31 );
32 }
33
f3ce0579 34 package MooseX::Debugging::Role::Object;
35
36 after 'BUILD' => sub {
37 my $self = shift;
38
39 warn "Made a new " . ref $self . " object\n";
6a7e3999 40 };
f3ce0579 41
42=head1 DESCRIPTION
43
44In this example, we provide a role for the base object class that adds
45some simple debugging output. Every time an object is created, it
46spits out a warning saying what type of object it was.
47
48Obviously, a real debugging role would do something more interesting,
49but this recipe is all about how we apply that role.
50
51In this case, with the combination of L<Moose::Exporter> and
52L<Moose::Util::MetaRole>, we ensure that when a module does "S<use
53MooseX::Debugging>", it automatically gets the debugging role applied
54to its base object class.
55
871cda31 56There are a few pieces of code worth looking at more closely.
57
58 Moose::Exporter->setup_import_methods;
59
60This creates an C<import> method in the C<MooseX::Debugging>
61package. Since we are not actually exporting anything, we do not pass
62C<setup_import_methods> any parameters. However, we need to have an
63C<import> method to ensure that our C<init_meta> method is called.
64
65Then in our C<init_meta> method we have this line:
66
67 Moose->init_meta(%options);
68
69This is a bit of boilerplate that almost every extension will
70use. This ensures that the caller has a normal Moose metaclass
71I<before> we go and add traits to it.
72
73The C<< Moose->init_meta >> method does ensures that the caller has a
74sane metaclass, and we don't want to replicate that logic in our
75extension. If the C<< Moose->init_meta >> was already called (because
76the caller did C<use Moose> before using our extension), then calling
77C<< Moose->init_meta >> again is effectively a no-op.
78
f3ce0579 79=head1 AUTHOR
80
81Dave Rolsky E<lt>autarch@urth.orgE<gt>
82
83=head1 COPYRIGHT AND LICENSE
84
2840a3b2 85Copyright 2009 by Infinity Interactive, Inc.
f3ce0579 86
87L<http://www.iinteractive.com>
88
89This library is free software; you can redistribute it and/or modify
90it under the same terms as Perl itself.
91
92=cut
93