Import namespace-clean-0.04.tar.gz.
[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
9b680ffe 12use vars qw( $VERSION $STORAGE_VAR );
40aef9d6 13use Symbol qw( qualify_to_ref );
14use Filter::EOF;
15
16=head1 VERSION
17
53e92ec5 180.04
40aef9d6 19
20=cut
21
53e92ec5 22$VERSION = 0.04;
9b680ffe 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
58When you define a function, or import one, into a Perl package, it will
59naturally also be available as a method. This does not per se cause
60problems, but it can complicate subclassing and, for example, plugin
6c0ece9b 61classes that are included via multiple inheritance by loading them as
62base classes.
40aef9d6 63
64The C<namespace::clean> pragma will remove all previously declared or
65imported symbols at the end of the current package's compile cycle.
6c0ece9b 66Functions called in the package itself will still be bound by their
67name, but they won't show up as methods on your class or instances.
68
69By unimporting via C<no> you can tell C<namespace::clean> to start
70collecting functions for the next C<use namespace::clean;> specification.
40aef9d6 71
53e92ec5 72You can use the C<-except> flag to tell C<namespace::clean> that you
73don't want it to remove a certain function. A common use would be a
74module exporting an C<import> method along with some functions:
75
76 use ModuleExportingImport;
77 use namespace::clean -except => [qw( import )];
78
40aef9d6 79=head1 METHODS
80
81You shouldn't need to call any of these. Just C<use> the package at the
82appropriate place.
83
6c0ece9b 84=cut
85
40aef9d6 86=head2 import
87
88Makes a snapshot of the current defined functions and registers a
6c0ece9b 89L<Filter::EOF> cleanup routine to remove those symbols at the end
90of the compile-time.
40aef9d6 91
92=cut
93
94sub import {
53e92ec5 95 my ($pragma, %args) = @_;
40aef9d6 96
6c0ece9b 97 # calling class, all current functions and our storage
40aef9d6 98 my $cleanee = caller;
99 my $functions = $pragma->get_functions($cleanee);
9b680ffe 100 my $store = $pragma->get_class_store($cleanee);
53e92ec5 101
102 my %except = map {( $_ => 1 )} @{ $args{ -except } || [] };
103
6c0ece9b 104 # register symbols for removal, if they have a CODE entry
9b680ffe 105 for my $f (keys %$functions) {
53e92ec5 106 next if $except{ $f };
9b680ffe 107 next unless $functions->{ $f }
108 and *{ $functions->{ $f } }{CODE};
109 $store->{remove}{ $f } = 1;
110 }
111
6c0ece9b 112 # register EOF handler on first call to import
9b680ffe 113 unless ($store->{handler_is_installed}) {
114 Filter::EOF->on_eof_call(sub {
53e92ec5 115 SYMBOL:
9b680ffe 116 for my $f (keys %{ $store->{remove} }) {
53e92ec5 117
118 # ignore already removed symbols
119 next SYMBOL if $store->{exclude}{ $f };
9b680ffe 120 no strict 'refs';
53e92ec5 121
122 # keep original value to restore non-code slots
123 local *__tmp = *{ ${ "${cleanee}::" }{ $f } };
40aef9d6 124 delete ${ "${cleanee}::" }{ $f };
53e92ec5 125
126 SLOT:
127 # restore non-code slots to symbol
128 for my $t (qw( SCALAR ARRAY HASH IO FORMAT )) {
129 next SLOT unless defined *__tmp{ $t };
130 *{ "${cleanee}::$f" } = *__tmp{ $t };
131 }
40aef9d6 132 }
9b680ffe 133 });
134 $store->{handler_is_installed} = 1;
135 }
136
137 return 1;
138}
139
140=head2 unimport
141
142This method will be called when you do a
143
144 no namespace::clean;
145
146It will start a new section of code that defines functions to clean up.
147
148=cut
149
150sub unimport {
151 my ($pragma) = @_;
152
6c0ece9b 153 # the calling class, the current functions and our storage
9b680ffe 154 my $cleanee = caller;
155 my $functions = $pragma->get_functions($cleanee);
156 my $store = $pragma->get_class_store($cleanee);
157
6c0ece9b 158 # register all unknown previous functions as excluded
9b680ffe 159 for my $f (keys %$functions) {
160 next if $store->{remove}{ $f }
161 or $store->{exclude}{ $f };
162 $store->{exclude}{ $f } = 1;
163 }
164
165 return 1;
166}
167
168=head2 get_class_store
169
6c0ece9b 170This returns a reference to a hash in a passed package containing
171information about function names included and excluded from removal.
9b680ffe 172
173=cut
174
175sub get_class_store {
176 my ($pragma, $class) = @_;
177 no strict 'refs';
178 return \%{ "${class}::${STORAGE_VAR}" };
40aef9d6 179}
180
181=head2 get_functions
182
183Takes a class as argument and returns all currently defined functions
184in it as a hash reference with the function name as key and a typeglob
185reference to the symbol as value.
186
187=cut
188
189sub get_functions {
190 my ($pragma, $class) = @_;
191
192 return {
6c0ece9b 193 map { @$_ } # key => value
194 grep { *{ $_->[1] }{CODE} } # only functions
195 map { [$_, qualify_to_ref( $_, $class )] } # get globref
196 grep { $_ !~ /::$/ } # no packages
197 do { no strict 'refs'; keys %{ "${class}::" } } # symbol entries
40aef9d6 198 };
199}
200
6c0ece9b 201=head1 IMPLEMENTATION DETAILS
202
203This module works through the effect that a
204
205 delete $SomePackage::{foo};
206
207will remove the C<foo> symbol from C<$SomePackage> for run time lookups
208(e.g., method calls) but will leave the entry alive to be called by
209already resolved names in the package itself.
210
211A test file has been added to the perl core to ensure that this behaviour
212will be stable in future releases.
213
214Just for completeness sake, if you want to remove the symbol completely,
215use C<undef> instead.
216
40aef9d6 217=head1 SEE ALSO
218
219L<Filter::EOF>
220
221=head1 AUTHOR AND COPYRIGHT
222
223Robert 'phaylon' Sedlacek C<E<lt>rs@474.atE<gt>>, with many thanks to
224Matt S Trout for the inspiration on the whole idea.
225
226=head1 LICENSE
227
228This program is free software; you can redistribute it and/or modify
229it under the same terms as perl itself.
230
231=cut
232
2331;