move the package_cache stuff back into ::HasMethods
[gitmo/Class-MOP.git] / lib / Class / MOP / Mixin / HasMethods.pm
CommitLineData
9b871d79 1package Class::MOP::Mixin::HasMethods;
2
3use strict;
4use warnings;
5
f1af2436 6use Class::MOP::Method::Meta;
7
a9f48b4b 8our $VERSION = '1.11';
9b871d79 9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
12use Scalar::Util 'blessed';
13use Carp 'confess';
14use Sub::Name 'subname';
15
16use base 'Class::MOP::Mixin';
17
18sub method_metaclass { $_[0]->{'method_metaclass'} }
19sub wrapped_method_metaclass { $_[0]->{'wrapped_method_metaclass'} }
f1af2436 20sub _meta_method_class { 'Class::MOP::Method::Meta' }
21
22sub _add_meta_method {
23 my $self = shift;
37a46507 24 my ($name) = @_;
f1af2436 25 my $existing_method = $self->can('find_method_by_name')
37a46507 26 ? $self->find_method_by_name($name)
27 : $self->get_method($name);
f1af2436 28 return if $existing_method
29 && $existing_method->isa($self->_meta_method_class);
30 $self->add_method(
37a46507 31 $name => $self->_meta_method_class->wrap(
32 name => $name,
f1af2436 33 package_name => $self->name,
34 associated_metaclass => $self,
35 )
36 );
37}
9b871d79 38
9b871d79 39sub wrap_method_body {
40 my ( $self, %args ) = @_;
41
42 ( 'CODE' eq ref $args{body} )
43 || confess "Your code block must be a CODE reference";
44
45 $self->method_metaclass->wrap(
46 package_name => $self->name,
47 %args,
48 );
49}
50
51sub add_method {
52 my ( $self, $method_name, $method ) = @_;
53 ( defined $method_name && length $method_name )
54 || confess "You must define a method name";
55
ef8d6eae 56 my $package_name = $self->name;
57
9b871d79 58 my $body;
59 if ( blessed($method) ) {
60 $body = $method->body;
ef8d6eae 61 if ( $method->package_name ne $package_name ) {
9b871d79 62 $method = $method->clone(
ef8d6eae 63 package_name => $package_name,
9b871d79 64 name => $method_name,
65 ) if $method->can('clone');
66 }
67
68 $method->attach_to_class($self);
69 }
70 else {
71 # If a raw code reference is supplied, its method object is not created.
72 # The method object won't be created until required.
73 $body = $method;
74 }
75
76 $self->_method_map->{$method_name} = $method;
77
78 my ( $current_package, $current_name ) = Class::MOP::get_code_info($body);
79
80 if ( !defined $current_name || $current_name =~ /^__ANON__/ ) {
ef8d6eae 81 my $full_method_name = ( $package_name . '::' . $method_name );
9b871d79 82 subname( $full_method_name => $body );
83 }
84
85 $self->add_package_symbol(
86 { sigil => '&', type => 'CODE', name => $method_name },
87 $body,
88 );
89}
90
91sub _code_is_mine {
92 my ( $self, $code ) = @_;
93
94 my ( $code_package, $code_name ) = Class::MOP::get_code_info($code);
95
96 return $code_package && $code_package eq $self->name
97 || ( $code_package eq 'constant' && $code_name eq '__ANON__' );
98}
99
100sub has_method {
101 my ( $self, $method_name ) = @_;
102
103 ( defined $method_name && length $method_name )
104 || confess "You must define a method name";
105
1865cd32 106 return defined( $self->_get_maybe_raw_method($method_name) );
9b871d79 107}
108
109sub get_method {
110 my ( $self, $method_name ) = @_;
111
112 ( defined $method_name && length $method_name )
113 || confess "You must define a method name";
114
1865cd32 115 my $method = $self->_get_maybe_raw_method($method_name)
116 or return;
117
118 return $method if blessed $method;
119
120 return $self->_method_map->{$method_name} = $self->wrap_method_body(
121 body => $method,
122 name => $method_name,
123 associated_metaclass => $self,
124 );
125}
126
127sub _get_maybe_raw_method {
128 my ( $self, $method_name ) = @_;
129
9b871d79 130 my $method_map = $self->_method_map;
131 my $map_entry = $method_map->{$method_name};
132 my $code = $self->get_package_symbol(
133 {
134 name => $method_name,
135 sigil => '&',
136 type => 'CODE',
137 }
138 );
139
736bf1f0 140 # The !$code case seems to happen in some weird cases where methods
141 # modifiers are added via roles or some other such bizareness. Honestly, I
142 # don't totally understand this, but returning the entry works, and keeps
143 # various MX modules from blowing up. - DR
6038ad58 144 return $map_entry
145 if blessed $map_entry && ( !$code || $map_entry->body == $code );
9b871d79 146
147 unless ($map_entry) {
148 return unless $code && $self->_code_is_mine($code);
149 }
150
1865cd32 151 return $code;
9b871d79 152}
153
154sub remove_method {
155 my ( $self, $method_name ) = @_;
156 ( defined $method_name && length $method_name )
157 || confess "You must define a method name";
158
38bcde3f 159 my $removed_method = delete $self->_method_map->{$method_name};
9b871d79 160
161 $self->remove_package_symbol(
162 { sigil => '&', type => 'CODE', name => $method_name } );
163
164 $removed_method->detach_from_class
165 if $removed_method && blessed $removed_method;
166
167 # still valid, since we just removed the method from the map
168 $self->update_package_cache_flag;
169
170 return $removed_method;
171}
172
173sub get_method_list {
174 my $self = shift;
ea6dca17 175
176 my $namespace = $self->namespace;
177
1a36fc73 178 # Constants may show up as some sort of non-GLOB reference in the
179 # namespace hash ref, depending on the Perl version.
7f9ef61e 180 return grep {
08d23070 181 defined $namespace->{$_}
182 && ( ref( \$namespace->{$_} ) ne 'GLOB'
183 || *{ $namespace->{$_} }{CODE} )
7f9ef61e 184 && $self->has_method($_)
185 }
ea6dca17 186 keys %{$namespace};
9b871d79 187}
188
fe1b970a 189# This should probably be what get_method_list actually does, instead of just
190# returning names. This was created as a much faster alternative to
191# $meta->get_method($_) for $meta->get_method_list
192sub _get_local_methods {
193 my $self = shift;
194
195 my $namespace = $self->namespace;
196
7f9ef61e 197 return map { $self->get_method($_) }
0517ea60 198 grep {
199 defined $namespace->{$_}
200 && ( ref $namespace->{$_}
201 || *{ $namespace->{$_} }{CODE} )
202 }
fe1b970a 203 keys %{$namespace};
204}
205
78902d1d 206sub _restore_metamethods_from {
207 my $self = shift;
208 my ($old_meta) = @_;
209
210 for my $method ($old_meta->_get_local_methods) {
5281e1f9 211 $method->_make_compatible_with($self->method_metaclass);
78902d1d 212 $self->add_method($method->name => $method);
213 }
214}
215
fd05ff5f 216sub reset_package_cache_flag { (shift)->{'_package_cache_flag'} = undef }
217sub update_package_cache_flag {
218 my $self = shift;
219 # NOTE:
220 # we can manually update the cache number
221 # since we are actually adding the method
222 # to our cache as well. This avoids us
223 # having to regenerate the method_map.
224 # - SL
225 $self->{'_package_cache_flag'} = Class::MOP::check_package_cache_flag($self->name);
226}
227
9b871d79 2281;
229
230__END__
231
232=pod
233
234=head1 NAME
235
236Class::MOP::Mixin::HasMethods - Methods for metaclasses which have methods
237
238=head1 DESCRIPTION
239
240This class implements methods for metaclasses which have methods
241(L<Class::MOP::Package> and L<Moose::Meta::Role>). See L<Class::MOP::Package>
242for API details.
243
244=head1 AUTHORS
245
246Dave Rolsky E<lt>autarch@urth.orgE<gt>
247
248=head1 COPYRIGHT AND LICENSE
249
3e2c8600 250Copyright 2006-2010 by Infinity Interactive, Inc.
9b871d79 251
252L<http://www.iinteractive.com>
253
254This library is free software; you can redistribute it and/or modify
255it under the same terms as Perl itself.
256
257=cut