2 package Class::MOP::Method;
8 use Scalar::Util 'weaken', 'reftype';
10 our $VERSION = '0.89';
11 $VERSION = eval $VERSION;
12 our $AUTHORITY = 'cpan:STEVAN';
14 use base 'Class::MOP::Object';
17 # if poked in the right way,
18 # they should act like CODE refs.
19 use overload '&{}' => sub { $_[0]->body }, fallback => 1;
24 my ( $class, @args ) = @_;
26 unshift @args, 'body' if @args % 2 == 1;
29 my $code = $params{body};
31 (ref $code && 'CODE' eq reftype($code))
32 || confess "You must supply a CODE reference to bless, not (" . ($code || 'undef') . ")";
34 ($params{package_name} && $params{name})
35 || confess "You must supply the package_name and name parameters";
37 my $self = $class->_new(\%params);
39 weaken($self->{associated_metaclass}) if $self->{associated_metaclass};
47 return Class::MOP::Class->initialize($class)->new_object(@_)
48 if $class ne __PACKAGE__;
50 my $params = @_ == 1 ? $_[0] : {@_};
53 'body' => $params->{body},
54 'associated_metaclass' => $params->{associated_metaclass},
55 'package_name' => $params->{package_name},
56 'name' => $params->{name},
57 'original_method' => $params->{original_method},
63 sub associated_metaclass { shift->{'associated_metaclass'} }
66 my ( $self, $class ) = @_;
67 $self->{associated_metaclass} = $class;
68 weaken($self->{associated_metaclass});
71 sub detach_from_class {
73 delete $self->{associated_metaclass};
76 sub fully_qualified_name {
78 $self->package_name . '::' . $self->name;
81 sub original_method { (shift)->{'original_method'} }
83 sub _set_original_method { $_[0]->{'original_method'} = $_[1] }
85 # It's possible that this could cause a loop if there is a circular
86 # reference in here. That shouldn't ever happen in normal
87 # circumstances, since original method only gets set when clone is
88 # called. We _could_ check for such a loop, but it'd involve some sort
89 # of package-lexical variable, and wouldn't be terribly subclassable.
90 sub original_package_name {
93 $self->original_method
94 ? $self->original_method->original_package_name
95 : $self->package_name;
101 $self->original_method
102 ? $self->original_method->original_name
106 sub original_fully_qualified_name {
109 $self->original_method
110 ? $self->original_method->original_fully_qualified_name
111 : $self->fully_qualified_name;
120 # the Class::MOP bootstrap
121 # will create this for us
133 Class::MOP::Method - Method Meta Object
137 The Method Protocol is very small, since methods in Perl 5 are just
138 subroutines in a specific package. We provide a very basic
139 introspection interface.
145 =item B<< Class::MOP::Method->wrap($code, %options) >>
147 This is the constructor. It accepts a subroutine reference and a hash
156 The method name (without a package name). This is required.
160 The package name for the method. This is required.
162 =item * associated_metaclass
164 An optional L<Class::MOP::Class> object. This is the metaclass for the
169 =item B<< $metamethod->clone(%params) >>
171 This makes a shallow clone of the method object. In particular,
172 subroutine reference itself is shared between all clones of a given
175 When a method is cloned, the original method object will be available
176 by calling C<original_method> on the clone.
178 =item B<< $metamethod->body >>
180 This returns a reference to the method's subroutine.
182 =item B<< $metamethod->name >>
184 This returns the method's name
186 =item B<< $metamethod->package_name >>
188 This returns the method's package name.
190 =item B<< $metamethod->fully_qualified_name >>
192 This returns the method's fully qualified name (package name and
195 =item B<< $metamethod->associated_metaclass >>
197 This returns the L<Class::MOP::Class> object for the method, if one
200 =item B<< $metamethod->original_method >>
202 If this method object was created as a clone of some other method
203 object, this returns the object that was cloned.
205 =item B<< $metamethod->original_name >>
207 This returns the method's original name, wherever it was first
210 If this method is a clone of a clone (of a clone, etc.), this method
211 returns the name from the I<first> method in the chain of clones.
213 =item B<< $metamethod->original_package_name >>
215 This returns the method's original package name, wherever it was first
218 If this method is a clone of a clone (of a clone, etc.), this method
219 returns the package name from the I<first> method in the chain of
222 =item B<< $metamethod->original_fully_qualified_name >>
224 This returns the method's original fully qualified name, wherever it
227 If this method is a clone of a clone (of a clone, etc.), this method
228 returns the fully qualified name from the I<first> method in the chain
231 =item B<< $metamethod->attach_to_class($metaclass) >>
233 Given a L<Class::MOP::Class> object, this method sets the associated
234 metaclass for the method. This will overwrite any existing associated
237 =item B<< $metamethod->detach_from_class >>
239 Removes any associated metaclass object for the method.
241 =item B<< $metamethod->execute(...) >>
243 This executes the method. Any arguments provided will be passed on to
246 =item B<< Class::MOP::Method->meta >>
248 This will return a L<Class::MOP::Class> instance for this class.
250 It should also be noted that L<Class::MOP> will actually bootstrap
251 this module by installing a number of attribute meta-objects into its
258 Stevan Little E<lt>stevan@iinteractive.comE<gt>
260 =head1 COPYRIGHT AND LICENSE
262 Copyright 2006-2009 by Infinity Interactive, Inc.
264 L<http://www.iinteractive.com>
266 This library is free software; you can redistribute it and/or modify
267 it under the same terms as Perl itself.