bump version to 0.71_02 and update Changes
[gitmo/Class-MOP.git] / lib / Class / MOP / Method.pm
CommitLineData
8b978dd5 1
2package Class::MOP::Method;
3
4use strict;
5use warnings;
6
2eb717d5 7use Carp 'confess';
5e607260 8use Scalar::Util 'weaken';
2eb717d5 9
6b5ac420 10our $VERSION = '0.71_02';
d519662a 11$VERSION = eval $VERSION;
f0480c45 12our $AUTHORITY = 'cpan:STEVAN';
de19f115 13
b1897d4d 14use base 'Class::MOP::Object';
15
ce2ae40f 16# NOTE:
32202ce2 17# if poked in the right way,
ce2ae40f 18# they should act like CODE refs.
c23184fc 19use overload '&{}' => sub { $_[0]->body }, fallback => 1;
7855ddba 20
32202ce2 21our $UPGRADE_ERROR_TEXT = q{
22---------------------------------------------------------
23NOTE: this error is likely not an error, but a regression
24caused by the latest upgrade to Moose/Class::MOP. Consider
25upgrading any MooseX::* modules to their latest versions
26before spending too much time chasing this one down.
27---------------------------------------------------------
28};
29
de19f115 30# construction
31
32202ce2 32sub wrap {
5caf45ce 33 my ( $class, @args ) = @_;
34
35 unshift @args, 'body' if @args % 2 == 1;
36
37 my %params = @args;
38 my $code = $params{body};
32202ce2 39
9b522fc4 40 ('CODE' eq ref($code))
4d47b77f 41 || confess "You must supply a CODE reference to bless, not (" . ($code || 'undef') . ")";
32202ce2 42
b38f3848 43 ($params{package_name} && $params{name})
32202ce2 44 || confess "You must supply the package_name and name parameters $UPGRADE_ERROR_TEXT";
45
c2829bbc 46 my $self = $class->_new(\%params);
5e607260 47
48 weaken($self->{associated_metaclass}) if $self->{associated_metaclass};
49
50 return $self;
de19f115 51}
52
71b98d4f 53sub _new {
0bfc85b8 54 my $class = shift;
55 my $params = @_ == 1 ? $_[0] : {@_};
71b98d4f 56
57 my $self = bless {
0bfc85b8 58 'body' => $params->{body},
59 'associated_metaclass' => $params->{associated_metaclass},
60 'package_name' => $params->{package_name},
61 'name' => $params->{name},
71b98d4f 62 } => $class;
63}
64
ce2ae40f 65## accessors
66
8683db0e 67sub body { (shift)->{'body'} }
7855ddba 68
5e607260 69sub associated_metaclass { shift->{'associated_metaclass'} }
b1897d4d 70
5e607260 71sub attach_to_class {
72 my ( $self, $class ) = @_;
73 $self->{associated_metaclass} = $class;
74 weaken($self->{associated_metaclass});
75}
76
77sub detach_from_class {
78 my $self = shift;
79 delete $self->{associated_metaclass};
80}
de19f115 81
da88f307 82sub package_name { (shift)->{'package_name'} }
de19f115 83
da88f307 84sub name { (shift)->{'name'} }
de19f115 85
96ceced8 86sub fully_qualified_name {
91b73829 87 my $self = shift;
88 $self->package_name . '::' . $self->name;
96ceced8 89}
90
2226a8b0 91sub original_method { (shift)->{'original_method'} }
92
93sub _set_original_method { $_[0]->{'original_method'} = $_[1] }
94
95# It's possible that this could cause a loop if there is a circular
96# reference in here. That shouldn't ever happen in normal
97# circumstances, since original method only gets set when clone is
98# called. We _could_ check for such a loop, but it'd involve some sort
99# of package-lexical variable, and wouldn't be terribly subclassable.
100sub original_package_name {
101 my $self = shift;
102
103 $self->original_method
104 ? $self->original_method->original_package_name
105 : $self->package_name;
106}
107
108sub original_name {
109 my $self = shift;
110
111 $self->original_method
112 ? $self->original_method->original_name
113 : $self->name;
114}
115
116sub original_fully_qualified_name {
117 my $self = shift;
118
119 $self->original_method
120 ? $self->original_method->original_fully_qualified_name
121 : $self->fully_qualified_name;
122}
123
25a5f083 124sub execute {
125 my $self = shift;
126 $self->body->(@_);
127}
128
4c105333 129# NOTE:
130# the Class::MOP bootstrap
131# will create this for us
132# - SL
133# sub clone { ... }
134
8b978dd5 1351;
136
137__END__
138
139=pod
140
32202ce2 141=head1 NAME
8b978dd5 142
143Class::MOP::Method - Method Meta Object
144
8b978dd5 145=head1 DESCRIPTION
146
32202ce2 147The Method Protocol is very small, since methods in Perl 5 are just
148subroutines within the particular package. We provide a very basic
86482605 149introspection interface.
fe122940 150
2eb717d5 151=head1 METHODS
152
de19f115 153=head2 Introspection
2eb717d5 154
de19f115 155=over 4
fe122940 156
2eb717d5 157=item B<meta>
158
32202ce2 159This will return a B<Class::MOP::Class> instance which is related
fe122940 160to this class.
161
2eb717d5 162=back
163
de19f115 164=head2 Construction
165
166=over 4
167
4c105333 168=item B<wrap ($code, %params)>
127d39a7 169
32202ce2 170This is the basic constructor, it returns a B<Class::MOP::Method>
171instance which wraps the given C<$code> reference. You can also
4c105333 172set the C<package_name> and C<name> attributes using the C<%params>.
32202ce2 173If these are not set, then thier accessors will attempt to figure
4c105333 174it out using the C<Class::MOP::get_code_info> function.
175
176=item B<clone (%params)>
177
32202ce2 178This will make a copy of the object, allowing you to override
4c105333 179any values by stuffing them in C<%params>.
de19f115 180
de19f115 181=back
182
183=head2 Informational
184
185=over 4
186
7855ddba 187=item B<body>
188
127d39a7 189This returns the actual CODE reference of the particular instance.
190
de19f115 191=item B<name>
192
127d39a7 193This returns the name of the CODE reference.
194
5e607260 195=item B<associated_metaclass>
196
197The metaclass of the method
198
de19f115 199=item B<package_name>
200
127d39a7 201This returns the package name that the CODE reference is attached to.
202
96ceced8 203=item B<fully_qualified_name>
204
127d39a7 205This returns the fully qualified name of the CODE reference.
206
2226a8b0 207=item B<original_method>
208
209If this method object was created as a clone of some other method
210object, this returns the object that was cloned.
211
212=item B<original_name>
213
214This returns the original name of the CODE reference, wherever it was
215first defined.
216
2f011227 217If this method is a clone of a clone (of a clone, etc.), this method
218returns the name from the I<first> method in the chain of clones.
219
2226a8b0 220=item B<original_package_name>
221
222This returns the original package name that the CODE reference is
223attached to, wherever it was first defined.
224
2f011227 225If this method is a clone of a clone (of a clone, etc.), this method
226returns the package name from the I<first> method in the chain of
227clones.
228
2226a8b0 229=item B<original_fully_qualified_name>
230
231This returns the original fully qualified name of the CODE reference,
232wherever it was first defined.
233
2f011227 234If this method is a clone of a clone (of a clone, etc.), this method
235returns the fully qualified name from the I<first> method in the chain
236of clones.
237
96ceced8 238=back
239
5e607260 240=head2 Metaclass
241
242=over 4
243
244=item B<attach_to_class>
245
246Sets the associated metaclass
247
248=item B<detach_from_class>
249
250Disassociates the method from the metaclass
251
252=back
253
25a5f083 254=head2 Miscellaneous
255
256=over 4
257
258=item B<execute>
259
260Executes the method. Be sure to pass in the instance, since the
261method expects it.
262
263=back
264
1a09d9cc 265=head1 AUTHORS
8b978dd5 266
a2e85e6c 267Stevan Little E<lt>stevan@iinteractive.comE<gt>
8b978dd5 268
269=head1 COPYRIGHT AND LICENSE
270
69e3ab0a 271Copyright 2006-2008 by Infinity Interactive, Inc.
8b978dd5 272
273L<http://www.iinteractive.com>
274
275This library is free software; you can redistribute it and/or modify
32202ce2 276it under the same terms as Perl itself.
8b978dd5 277
16e960bd 278=cut
279