2 package Class::MOP::Method;
8 use Scalar::Util 'weaken', 'reftype', 'blessed';
10 our $VERSION = '0.94';
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 if (blessed($code) && $code->isa(__PACKAGE__)) {
32 my $method = $code->clone;
34 Class::MOP::class_of($class)->rebless_instance($method, %params);
37 elsif (!ref $code || 'CODE' ne reftype($code)) {
38 confess "You must supply a CODE reference to bless, not (" . ($code || 'undef') . ")";
41 ($params{package_name} && $params{name})
42 || confess "You must supply the package_name and name parameters";
44 my $self = $class->_new(\%params);
46 weaken($self->{associated_metaclass}) if $self->{associated_metaclass};
54 return Class::MOP::Class->initialize($class)->new_object(@_)
55 if $class ne __PACKAGE__;
57 my $params = @_ == 1 ? $_[0] : {@_};
60 'body' => $params->{body},
61 'associated_metaclass' => $params->{associated_metaclass},
62 'package_name' => $params->{package_name},
63 'name' => $params->{name},
64 'original_method' => $params->{original_method},
70 sub associated_metaclass { shift->{'associated_metaclass'} }
73 my ( $self, $class ) = @_;
74 $self->{associated_metaclass} = $class;
75 weaken($self->{associated_metaclass});
78 sub detach_from_class {
80 delete $self->{associated_metaclass};
83 sub fully_qualified_name {
85 $self->package_name . '::' . $self->name;
88 sub original_method { (shift)->{'original_method'} }
90 sub _set_original_method { $_[0]->{'original_method'} = $_[1] }
92 # It's possible that this could cause a loop if there is a circular
93 # reference in here. That shouldn't ever happen in normal
94 # circumstances, since original method only gets set when clone is
95 # called. We _could_ check for such a loop, but it'd involve some sort
96 # of package-lexical variable, and wouldn't be terribly subclassable.
97 sub original_package_name {
100 $self->original_method
101 ? $self->original_method->original_package_name
102 : $self->package_name;
108 $self->original_method
109 ? $self->original_method->original_name
113 sub original_fully_qualified_name {
116 $self->original_method
117 ? $self->original_method->original_fully_qualified_name
118 : $self->fully_qualified_name;
127 # the Class::MOP bootstrap
128 # will create this for us
140 Class::MOP::Method - Method Meta Object
144 The Method Protocol is very small, since methods in Perl 5 are just
145 subroutines in a specific package. We provide a very basic
146 introspection interface.
152 =item B<< Class::MOP::Method->wrap($code, %options) >>
154 This is the constructor. It accepts a method body in the form of
155 either a code reference or a L<Class::MOP::Method> instance, followed
156 by a hash of options.
164 The method name (without a package name). This is required if C<$code>
169 The package name for the method. This is required if C<$code> is a
172 =item * associated_metaclass
174 An optional L<Class::MOP::Class> object. This is the metaclass for the
179 =item B<< $metamethod->clone(%params) >>
181 This makes a shallow clone of the method object. In particular,
182 subroutine reference itself is shared between all clones of a given
185 When a method is cloned, the original method object will be available
186 by calling C<original_method> on the clone.
188 =item B<< $metamethod->body >>
190 This returns a reference to the method's subroutine.
192 =item B<< $metamethod->name >>
194 This returns the method's name
196 =item B<< $metamethod->package_name >>
198 This returns the method's package name.
200 =item B<< $metamethod->fully_qualified_name >>
202 This returns the method's fully qualified name (package name and
205 =item B<< $metamethod->associated_metaclass >>
207 This returns the L<Class::MOP::Class> object for the method, if one
210 =item B<< $metamethod->original_method >>
212 If this method object was created as a clone of some other method
213 object, this returns the object that was cloned.
215 =item B<< $metamethod->original_name >>
217 This returns the method's original name, wherever it was first
220 If this method is a clone of a clone (of a clone, etc.), this method
221 returns the name from the I<first> method in the chain of clones.
223 =item B<< $metamethod->original_package_name >>
225 This returns the method's original package name, wherever it was first
228 If this method is a clone of a clone (of a clone, etc.), this method
229 returns the package name from the I<first> method in the chain of
232 =item B<< $metamethod->original_fully_qualified_name >>
234 This returns the method's original fully qualified name, wherever it
237 If this method is a clone of a clone (of a clone, etc.), this method
238 returns the fully qualified name from the I<first> method in the chain
241 =item B<< $metamethod->attach_to_class($metaclass) >>
243 Given a L<Class::MOP::Class> object, this method sets the associated
244 metaclass for the method. This will overwrite any existing associated
247 =item B<< $metamethod->detach_from_class >>
249 Removes any associated metaclass object for the method.
251 =item B<< $metamethod->execute(...) >>
253 This executes the method. Any arguments provided will be passed on to
256 =item B<< Class::MOP::Method->meta >>
258 This will return a L<Class::MOP::Class> instance for this class.
260 It should also be noted that L<Class::MOP> will actually bootstrap
261 this module by installing a number of attribute meta-objects into its
268 Stevan Little E<lt>stevan@iinteractive.comE<gt>
270 =head1 COPYRIGHT AND LICENSE
272 Copyright 2006-2009 by Infinity Interactive, Inc.
274 L<http://www.iinteractive.com>
276 This library is free software; you can redistribute it and/or modify
277 it under the same terms as Perl itself.