No need for the | in the link
[gitmo/Moose.git] / lib / Moose / Meta / Method / Delegation.pm
CommitLineData
a05f85c1 1
2package Moose::Meta::Method::Delegation;
3
4use strict;
5use warnings;
6
7use Carp 'confess';
8use Scalar::Util 'blessed', 'weaken';
9
5ef36add 10our $VERSION = '0.85';
a05f85c1 11$VERSION = eval $VERSION;
12our $AUTHORITY = 'cpan:STEVAN';
13
01164604 14use base 'Moose::Meta::Method',
15 'Class::MOP::Method::Generated';
a05f85c1 16
17
18sub new {
19 my $class = shift;
20 my %options = @_;
21
46f7e6a5 22 ( exists $options{attribute} )
a05f85c1 23 || confess "You must supply an attribute to construct with";
24
46f7e6a5 25 ( blessed( $options{attribute} )
26 && $options{attribute}->isa('Moose::Meta::Attribute') )
27 || confess
28 "You must supply an attribute which is a 'Moose::Meta::Attribute' instance";
a05f85c1 29
46f7e6a5 30 ( $options{package_name} && $options{name} )
31 || confess
32 "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";
a05f85c1 33
46f7e6a5 34 ( $options{delegate_to_method} && ( !ref $options{delegate_to_method} )
35 || ( 'CODE' eq ref $options{delegate_to_method} ) )
36 || confess
37 'You must supply a delegate_to_method which is a method name or a CODE reference';
a05f85c1 38
46f7e6a5 39 my $self = $class->_new( \%options );
40
41 weaken( $self->{'attribute'} );
42
43 $self->_initialize_body;
a05f85c1 44
45 return $self;
46}
47
01cd78f8 48sub _new {
49 my $class = shift;
50 my $options = @_ == 1 ? $_[0] : {@_};
51
52 return bless $options, $class;
53}
54
55sub associated_attribute { (shift)->{'attribute'} }
56
46f7e6a5 57sub delegate_to_method { (shift)->{'delegate_to_method'} }
58
59sub _initialize_body {
60 my $self = shift;
61
62 my $method_to_call = $self->delegate_to_method;
63 return $self->{body} = $method_to_call
64 if ref $method_to_call;
65
66 my $accessor = $self->_get_delegate_accessor;
67
68 my $handle_name = $self->name;
69
70 # NOTE: we used to do a goto here, but the goto didn't handle
71 # failure correctly (it just returned nothing), so I took that
72 # out. However, the more I thought about it, the less I liked it
16f00af3 73 # doing the goto, and I preferred the act of delegation being
46f7e6a5 74 # actually represented in the stack trace. - SL
5120f8ff 75 # not inlining this, since it won't really speed things up at
76 # all... the only thing that would end up different would be
77 # interpolating in $method_to_call, and a bunch of things in the
78 # error handling that mostly never gets called - doy
46f7e6a5 79 $self->{body} = sub {
80 my $instance = shift;
81 my $proxy = $instance->$accessor();
82 ( defined $proxy )
83 || $self->throw_error(
84 "Cannot delegate $handle_name to $method_to_call because "
85 . "the value of "
4da72c45 86 . $self->associated_attribute->name
46f7e6a5 87 . " is not defined",
88 method_name => $method_to_call,
89 object => $instance
90 );
ad5e9d0d 91 ( blessed $proxy )
92 || $self->throw_error(
93 "Cannot delegate $handle_name to $method_to_call because "
94 . "the value of "
95 . $self->associated_attribute->name
96 . " is not an object (got '$proxy')",
97 method_name => $method_to_call,
98 object => $instance
99 );
46f7e6a5 100 $proxy->$method_to_call(@_);
101 };
102}
103
104sub _get_delegate_accessor {
105 my $self = shift;
106
107 my $accessor = $self->associated_attribute->get_read_method_ref;
108
109 $accessor = $accessor->body if blessed $accessor;
110
111 return $accessor;
112}
113
a05f85c1 1141;
01cd78f8 115
116__END__
117
118=pod
119
120=head1 NAME
121
122Moose::Meta::Method::Delegation - A Moose Method metaclass for delegation methods
123
124=head1 DESCRIPTION
125
126This is a subclass of L<Moose::Meta::Method> for delegation
127methods.
128
129=head1 METHODS
130
131=over 4
132
e6fb6ad2 133=item B<< Moose::Meta::Method::Delegation->new(%options) >>
01cd78f8 134
e6fb6ad2 135This creates the delegation methods based on the provided C<%options>.
01cd78f8 136
137=over 4
138
139=item I<attribute>
140
141This must be an instance of C<Moose::Meta::Attribute> which this
e6fb6ad2 142accessor is being generated for. This options is B<required>.
01cd78f8 143
46f7e6a5 144=item I<delegate_to_method>
145
146The method in the associated attribute's value to which we
147delegate. This can be either a method name or a code reference.
148
01cd78f8 149=back
150
e6fb6ad2 151=item B<< $metamethod->associated_attribute >>
01cd78f8 152
153Returns the attribute associated with this method.
154
e6fb6ad2 155=item B<< $metamethod->delegate_to_method >>
46f7e6a5 156
e6fb6ad2 157Returns the method to which this method delegates, as passed to the
158constructor.
46f7e6a5 159
01cd78f8 160=back
161
162=head1 BUGS
163
d03bd989 164All complex software has bugs lurking in it, and this module is no
01cd78f8 165exception. If you find a bug please either email me, or add the bug
166to cpan-RT.
167
168=head1 AUTHOR
169
170Dave Rolsky E<lt>autarch@urth.orgE<gt>
171
172=head1 COPYRIGHT AND LICENSE
173
2840a3b2 174Copyright 2009 by Infinity Interactive, Inc.
01cd78f8 175
176L<http://www.iinteractive.com>
177
178This library is free software; you can redistribute it and/or modify
179it under the same terms as Perl itself.
180
181=cut