Fix restoring of non-code symbols when cleaning.
[p5sagit/namespace-clean.git] / lib / namespace / clean.pm
CommitLineData
40aef9d6 1package namespace::clean;
2
3=head1 NAME
4
6c0ece9b 5namespace::clean - Keep imports and functions out of your namespace
40aef9d6 6
7=cut
8
9use warnings;
10use strict;
11
de673bbf 12use vars qw( $VERSION $STORAGE_VAR $SCOPE_HOOK_KEY $SCOPE_EXPLICIT );
1a1be5dc 13use Symbol qw( qualify_to_ref );
aa2aafae 14use B::Hooks::EndOfScope;
40aef9d6 15
16=head1 VERSION
17
fcfe7810 180.11
40aef9d6 19
20=cut
21
fcfe7810 22$VERSION = '0.11';
de673bbf 23$STORAGE_VAR = '__NAMESPACE_CLEAN_STORAGE';
40aef9d6 24
25=head1 SYNOPSIS
26
27 package Foo;
28 use warnings;
29 use strict;
30
6c0ece9b 31 use Carp qw(croak); # 'croak' will be removed
40aef9d6 32
6c0ece9b 33 sub bar { 23 } # 'bar' will be removed
40aef9d6 34
6c0ece9b 35 # remove all previously defined functions
40aef9d6 36 use namespace::clean;
37
6c0ece9b 38 sub baz { bar() } # 'baz' still defined, 'bar' still bound
40aef9d6 39
6c0ece9b 40 # begin to collection function names from here again
9b680ffe 41 no namespace::clean;
42
6c0ece9b 43 sub quux { baz() } # 'quux' will be removed
9b680ffe 44
6c0ece9b 45 # remove all functions defined after the 'no' unimport
9b680ffe 46 use namespace::clean;
47
6c0ece9b 48 # Will print: 'No', 'No', 'Yes' and 'No'
40aef9d6 49 print +(__PACKAGE__->can('croak') ? 'Yes' : 'No'), "\n";
50 print +(__PACKAGE__->can('bar') ? 'Yes' : 'No'), "\n";
51 print +(__PACKAGE__->can('baz') ? 'Yes' : 'No'), "\n";
9b680ffe 52 print +(__PACKAGE__->can('quux') ? 'Yes' : 'No'), "\n";
40aef9d6 53
54 1;
55
56=head1 DESCRIPTION
57
de673bbf 58=head2 Keeping packages clean
59
40aef9d6 60When you define a function, or import one, into a Perl package, it will
61naturally also be available as a method. This does not per se cause
62problems, but it can complicate subclassing and, for example, plugin
6c0ece9b 63classes that are included via multiple inheritance by loading them as
64base classes.
40aef9d6 65
66The C<namespace::clean> pragma will remove all previously declared or
67imported symbols at the end of the current package's compile cycle.
6c0ece9b 68Functions called in the package itself will still be bound by their
69name, but they won't show up as methods on your class or instances.
70
71By unimporting via C<no> you can tell C<namespace::clean> to start
72collecting functions for the next C<use namespace::clean;> specification.
40aef9d6 73
53e92ec5 74You can use the C<-except> flag to tell C<namespace::clean> that you
472d4b1e 75don't want it to remove a certain function or method. A common use would
76be a module exporting an C<import> method along with some functions:
53e92ec5 77
78 use ModuleExportingImport;
79 use namespace::clean -except => [qw( import )];
80
472d4b1e 81If you just want to C<-except> a single sub, you can pass it directly.
82For more than one value you have to use an array reference.
83
de673bbf 84=head2 Explicitely removing functions when your scope is compiled
85
86It is also possible to explicitely tell C<namespace::clean> what packages
87to remove when the surrounding scope has finished compiling. Here is an
88example:
89
90 package Foo;
91 use strict;
92
93 # blessed NOT available
94
95 sub my_class {
96 use Scalar::Util qw( blessed );
97 use namespace::clean qw( blessed );
98
99 # blessed available
100 return blessed shift;
101 }
102
103 # blessed NOT available
104
1a1be5dc 105=head2 Moose
106
107When using C<namespace::clean> together with L<Moose> you want to keep
108the installed C<meta> method. So your classes should look like:
109
110 package Foo;
111 use Moose;
112 use namespace::clean -except => 'meta';
113 ...
114
115Same goes for L<Moose::Role>.
116
fcfe7810 117=head2 Cleaning other packages
118
119You can tell C<namespace::clean> that you want to clean up another package
120instead of the one importing. To do this you have to pass in the C<-cleanee>
121option like this:
122
123 package My::MooseX::namespace::clean;
124 use strict;
125
126 use namespace::clean (); # no cleanup, just load
127
128 sub import {
129 namespace::clean->import(
130 -cleanee => scalar(caller),
131 -except => 'meta',
132 );
133 }
134
135If you don't care about C<namespace::clean>s discover-and-C<-except> logic, and
136just want to remove subroutines, try L</clean_subroutines>.
137
40aef9d6 138=head1 METHODS
139
140You shouldn't need to call any of these. Just C<use> the package at the
141appropriate place.
142
6c0ece9b 143=cut
144
fcfe7810 145=head2 clean_subroutines
40aef9d6 146
fcfe7810 147This exposes the actual subroutine-removal logic.
148
149 namespace::clean->clean_subroutines($cleanee, qw( subA subB ));
150
151will remove C<subA> and C<subB> from C<$cleanee>. Note that this will remove the
152subroutines B<immediately> and not wait for scope end. If you want to have this
153effect at a specific time (e.g. C<namespace::clean> acts on scope compile end)
154it is your responsibility to make sure it runs at that time.
40aef9d6 155
156=cut
157
de673bbf 158my $RemoveSubs = sub {
fcfe7810 159
de673bbf 160 my $cleanee = shift;
161 my $store = shift;
162 SYMBOL:
163 for my $f (@_) {
164
165 # ignore already removed symbols
166 next SYMBOL if $store->{exclude}{ $f };
167 no strict 'refs';
168
61c4bce7 169 local *__tmp;
170
de673bbf 171 # keep original value to restore non-code slots
172 { no warnings 'uninitialized'; # fix possible unimports
61c4bce7 173 *__tmp = *{ ${ "${cleanee}::" }{ $f } };
de673bbf 174 delete ${ "${cleanee}::" }{ $f };
175 }
176
177 SLOT:
61c4bce7 178 # restore non-code slots to symbol.
179 # omit the FORMAT slot, since perl erroneously puts it into the
180 # SCALAR slot of the new glob.
181 for my $t (qw( SCALAR ARRAY HASH IO )) {
de673bbf 182 next SLOT unless defined *__tmp{ $t };
183 *{ "${cleanee}::$f" } = *__tmp{ $t };
184 }
185 }
186};
53e92ec5 187
fcfe7810 188sub clean_subroutines {
189 my ($nc, $cleanee, @subs) = @_;
190 $RemoveSubs->($cleanee, {}, @subs);
191}
192
193=head2 import
194
195Makes a snapshot of the current defined functions and installs a
196L<B::Hooks::EndOfScope> hook in the current scope to invoke the cleanups.
197
198=cut
199
de673bbf 200sub import {
201 my ($pragma, @args) = @_;
53e92ec5 202
de673bbf 203 my (%args, $is_explicit);
fcfe7810 204
205 ARG:
206 while (@args) {
207
208 if ($args[0] =~ /^\-/) {
209 my $key = shift @args;
210 my $value = shift @args;
211 $args{ $key } = $value;
212 }
213 else {
214 $is_explicit++;
215 last ARG;
216 }
9b680ffe 217 }
218
fcfe7810 219 my $cleanee = exists $args{ -cleanee } ? $args{ -cleanee } : scalar caller;
de673bbf 220 if ($is_explicit) {
aa2aafae 221 on_scope_end {
de673bbf 222 $RemoveSubs->($cleanee, {}, @args);
aa2aafae 223 };
9b680ffe 224 }
de673bbf 225 else {
226
227 # calling class, all current functions and our storage
228 my $functions = $pragma->get_functions($cleanee);
229 my $store = $pragma->get_class_store($cleanee);
230
231 # except parameter can be array ref or single value
232 my %except = map {( $_ => 1 )} (
233 $args{ -except }
234 ? ( ref $args{ -except } eq 'ARRAY' ? @{ $args{ -except } } : $args{ -except } )
235 : ()
236 );
237
238 # register symbols for removal, if they have a CODE entry
239 for my $f (keys %$functions) {
240 next if $except{ $f };
241 next unless $functions->{ $f }
242 and *{ $functions->{ $f } }{CODE};
243 $store->{remove}{ $f } = 1;
244 }
245
246 # register EOF handler on first call to import
247 unless ($store->{handler_is_installed}) {
aa2aafae 248 on_scope_end {
de673bbf 249 $RemoveSubs->($cleanee, $store, keys %{ $store->{remove} });
aa2aafae 250 };
de673bbf 251 $store->{handler_is_installed} = 1;
252 }
253
254 return 1;
255 }
9b680ffe 256}
257
258=head2 unimport
259
260This method will be called when you do a
261
262 no namespace::clean;
263
264It will start a new section of code that defines functions to clean up.
265
266=cut
267
268sub unimport {
fcfe7810 269 my ($pragma, %args) = @_;
9b680ffe 270
6c0ece9b 271 # the calling class, the current functions and our storage
fcfe7810 272 my $cleanee = exists $args{ -cleanee } ? $args{ -cleanee } : scalar caller;
9b680ffe 273 my $functions = $pragma->get_functions($cleanee);
274 my $store = $pragma->get_class_store($cleanee);
275
6c0ece9b 276 # register all unknown previous functions as excluded
9b680ffe 277 for my $f (keys %$functions) {
278 next if $store->{remove}{ $f }
279 or $store->{exclude}{ $f };
280 $store->{exclude}{ $f } = 1;
281 }
282
283 return 1;
284}
285
286=head2 get_class_store
287
6c0ece9b 288This returns a reference to a hash in a passed package containing
289information about function names included and excluded from removal.
9b680ffe 290
291=cut
292
293sub get_class_store {
294 my ($pragma, $class) = @_;
295 no strict 'refs';
296 return \%{ "${class}::${STORAGE_VAR}" };
40aef9d6 297}
298
299=head2 get_functions
300
301Takes a class as argument and returns all currently defined functions
302in it as a hash reference with the function name as key and a typeglob
303reference to the symbol as value.
304
305=cut
306
307sub get_functions {
308 my ($pragma, $class) = @_;
309
310 return {
6c0ece9b 311 map { @$_ } # key => value
312 grep { *{ $_->[1] }{CODE} } # only functions
313 map { [$_, qualify_to_ref( $_, $class )] } # get globref
314 grep { $_ !~ /::$/ } # no packages
315 do { no strict 'refs'; keys %{ "${class}::" } } # symbol entries
40aef9d6 316 };
317}
318
61c4bce7 319=head1 BUGS
320
321C<namespace::clean> will clobber any formats that have the same name as
322a deleted sub. This is due to a bug in perl that makes it impossible to
323re-assign the FORMAT ref into a new glob.
324
6c0ece9b 325=head1 IMPLEMENTATION DETAILS
326
327This module works through the effect that a
328
329 delete $SomePackage::{foo};
330
331will remove the C<foo> symbol from C<$SomePackage> for run time lookups
332(e.g., method calls) but will leave the entry alive to be called by
472d4b1e 333already resolved names in the package itself. C<namespace::clean> will
334restore and therefor in effect keep all glob slots that aren't C<CODE>.
6c0ece9b 335
336A test file has been added to the perl core to ensure that this behaviour
337will be stable in future releases.
338
339Just for completeness sake, if you want to remove the symbol completely,
340use C<undef> instead.
341
40aef9d6 342=head1 SEE ALSO
343
705fe1b1 344L<B::Hooks::EndOfScope>
40aef9d6 345
346=head1 AUTHOR AND COPYRIGHT
347
348Robert 'phaylon' Sedlacek C<E<lt>rs@474.atE<gt>>, with many thanks to
349Matt S Trout for the inspiration on the whole idea.
350
351=head1 LICENSE
352
353This program is free software; you can redistribute it and/or modify
354it under the same terms as perl itself.
355
356=cut
357
de673bbf 358no warnings;
359'Danger! Laws of Thermodynamics may not apply.'