/usr/share/perl5/namespace/autoclean.pm is in libnamespace-autoclean-perl 0.28-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | use strict;
use warnings;
package namespace::autoclean; # git description: 0.27-4-g47c7088
# ABSTRACT: Keep imports out of your namespace
# KEYWORDS: namespaces clean dirty imports exports subroutines methods development
our $VERSION = '0.28';
use B::Hooks::EndOfScope 0.12;
use List::Util qw( first );
use namespace::clean 0.20;
#pod =head1 SYNOPSIS
#pod
#pod package Foo;
#pod use namespace::autoclean;
#pod use Some::Package qw/imported_function/;
#pod
#pod sub bar { imported_function('stuff') }
#pod
#pod # later on:
#pod Foo->bar; # works
#pod Foo->imported_function; # will fail. imported_function got cleaned after compilation
#pod
#pod =head1 DESCRIPTION
#pod
#pod When you import a function into a Perl package, it will naturally also be
#pod available as a method.
#pod
#pod The C<namespace::autoclean> pragma will remove all imported symbols at the end
#pod of the current package's compile cycle. Functions called in the package itself
#pod will still be bound by their name, but they won't show up as methods on your
#pod class or instances.
#pod
#pod This module is very similar to L<namespace::clean|namespace::clean>, except it
#pod will clean all imported functions, no matter if you imported them before or
#pod after you C<use>d the pragma. It will also not touch anything that looks like a
#pod method.
#pod
#pod If you're writing an exporter and you want to clean up after yourself (and your
#pod peers), you can use the C<-cleanee> switch to specify what package to clean:
#pod
#pod package My::MooseX::namespace::autoclean;
#pod use strict;
#pod
#pod use namespace::autoclean (); # no cleanup, just load
#pod
#pod sub import {
#pod namespace::autoclean->import(
#pod -cleanee => scalar(caller),
#pod );
#pod }
#pod
#pod =head1 WHAT IS AND ISN'T CLEANED
#pod
#pod C<namespace::autoclean> will leave behind anything that it deems a method. For
#pod L<Moose> classes, this the based on the C<get_method_list> method
#pod on from the L<Class::MOP::Class|metaclass>. For non-Moose classes, anything
#pod defined within the package will be identified as a method. This should match
#pod Moose's definition of a method. Additionally, the magic subs installed by
#pod L<overload> will not be cleaned.
#pod
#pod =head1 PARAMETERS
#pod
#pod =head2 -also => [ ITEM | REGEX | SUB, .. ]
#pod
#pod =head2 -also => ITEM
#pod
#pod =head2 -also => REGEX
#pod
#pod =head2 -also => SUB
#pod
#pod Sometimes you don't want to clean imports only, but also helper functions
#pod you're using in your methods. The C<-also> switch can be used to declare a list
#pod of functions that should be removed additional to any imports:
#pod
#pod use namespace::autoclean -also => ['some_function', 'another_function'];
#pod
#pod If only one function needs to be additionally cleaned the C<-also> switch also
#pod accepts a plain string:
#pod
#pod use namespace::autoclean -also => 'some_function';
#pod
#pod In some situations, you may wish for a more I<powerful> cleaning solution.
#pod
#pod The C<-also> switch can take a Regex or a CodeRef to match against local
#pod function names to clean.
#pod
#pod use namespace::autoclean -also => qr/^_/
#pod
#pod use namespace::autoclean -also => sub { $_ =~ m{^_} };
#pod
#pod use namespace::autoclean -also => [qr/^_/ , qr/^hidden_/ ];
#pod
#pod use namespace::autoclean -also => [sub { $_ =~ m/^_/ or $_ =~ m/^hidden/ }, sub { uc($_) == $_ } ];
#pod
#pod =head2 -except => [ ITEM | REGEX | SUB, .. ]
#pod
#pod =head2 -except => ITEM
#pod
#pod =head2 -except => REGEX
#pod
#pod =head2 -except => SUB
#pod
#pod This takes exactly the same options as C<-also> except that anything this
#pod matches will I<not> be cleaned.
#pod
#pod =head1 CAVEATS
#pod
#pod When used with L<Moo> classes, the heuristic used to check for methods won't
#pod work correctly for methods from roles consumed at compile time.
#pod
#pod package My::Class;
#pod use Moo;
#pod use namespace::autoclean;
#pod
#pod # Bad, any consumed methods will be cleaned
#pod BEGIN { with 'Some::Role' }
#pod
#pod # Good, methods from role will be maintained
#pod with 'Some::Role';
#pod
#pod Additionally, method detection may not work properly in L<Mouse> classes in
#pod perls earlier than 5.10.
#pod
#pod =head1 SEE ALSO
#pod
#pod =for :list
#pod * L<namespace::clean>
#pod * L<B::Hooks::EndOfScope>
#pod * L<namespace::sweep>
#pod * L<Sub::Exporter::ForMethods>
#pod * L<Sub::Name>
#pod * L<Sub::Install>
#pod * L<Test::CleanNamespaces>
#pod * L<Dist::Zilla::Plugin::Test::CleanNamespaces>
#pod
#pod =cut
sub import {
my ($class, %args) = @_;
my $subcast = sub {
my $i = shift;
return $i if ref $i eq 'CODE';
return sub { $_ =~ $i } if ref $i eq 'Regexp';
return sub { $_ eq $i };
};
my $runtest = sub {
my ($code, $method_name) = @_;
local $_ = $method_name;
return $code->();
};
my $cleanee = exists $args{-cleanee} ? $args{-cleanee} : scalar caller;
my @also = map { $subcast->($_) } (
exists $args{-also}
? (ref $args{-also} eq 'ARRAY' ? @{ $args{-also} } : $args{-also})
: ()
);
my @except = map { $subcast->($_) } (
exists $args{-except}
? (ref $args{-except} eq 'ARRAY' ? @{ $args{-except} } : $args{-except})
: ()
);
on_scope_end {
my $subs = namespace::clean->get_functions($cleanee);
my $method_check = _method_check($cleanee);
my @clean = grep {
my $method = $_;
! first { $runtest->($_, $method) } @except
and ( !$method_check->($method)
or first { $runtest->($_, $method) } @also)
} keys %$subs;
namespace::clean->clean_subroutines($cleanee, @clean);
};
}
sub _method_check {
my $package = shift;
if (
(defined &Class::MOP::class_of and my $meta = Class::MOP::class_of($package))
) {
my %methods = map { $_ => 1 } $meta->get_method_list;
$methods{meta} = 1
if $meta->isa('Moose::Meta::Role') && Moose->VERSION < 0.90;
return sub { $_[0] =~ /^\(/ || $methods{$_[0]} };
}
else {
my $does = $package->can('does') ? 'does'
: $package->can('DOES') ? 'DOES'
: undef;
require Sub::Identify;
return sub {
return 1 if $_[0] =~ /^\(/;
my $coderef = do { no strict 'refs'; \&{ $package . '::' . $_[0] } };
my $code_stash = Sub::Identify::stash_name($coderef);
return 1 if $code_stash eq $package;
return 1 if $code_stash eq 'constant';
# TODO: consider if we really need this eval
return 1 if $does && eval { $package->$does($code_stash) };
return 0;
};
}
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
namespace::autoclean - Keep imports out of your namespace
=head1 VERSION
version 0.28
=head1 SYNOPSIS
package Foo;
use namespace::autoclean;
use Some::Package qw/imported_function/;
sub bar { imported_function('stuff') }
# later on:
Foo->bar; # works
Foo->imported_function; # will fail. imported_function got cleaned after compilation
=head1 DESCRIPTION
When you import a function into a Perl package, it will naturally also be
available as a method.
The C<namespace::autoclean> pragma will remove all imported symbols at the end
of the current package's compile cycle. Functions called in the package itself
will still be bound by their name, but they won't show up as methods on your
class or instances.
This module is very similar to L<namespace::clean|namespace::clean>, except it
will clean all imported functions, no matter if you imported them before or
after you C<use>d the pragma. It will also not touch anything that looks like a
method.
If you're writing an exporter and you want to clean up after yourself (and your
peers), you can use the C<-cleanee> switch to specify what package to clean:
package My::MooseX::namespace::autoclean;
use strict;
use namespace::autoclean (); # no cleanup, just load
sub import {
namespace::autoclean->import(
-cleanee => scalar(caller),
);
}
=head1 WHAT IS AND ISN'T CLEANED
C<namespace::autoclean> will leave behind anything that it deems a method. For
L<Moose> classes, this the based on the C<get_method_list> method
on from the L<Class::MOP::Class|metaclass>. For non-Moose classes, anything
defined within the package will be identified as a method. This should match
Moose's definition of a method. Additionally, the magic subs installed by
L<overload> will not be cleaned.
=head1 PARAMETERS
=head2 -also => [ ITEM | REGEX | SUB, .. ]
=head2 -also => ITEM
=head2 -also => REGEX
=head2 -also => SUB
Sometimes you don't want to clean imports only, but also helper functions
you're using in your methods. The C<-also> switch can be used to declare a list
of functions that should be removed additional to any imports:
use namespace::autoclean -also => ['some_function', 'another_function'];
If only one function needs to be additionally cleaned the C<-also> switch also
accepts a plain string:
use namespace::autoclean -also => 'some_function';
In some situations, you may wish for a more I<powerful> cleaning solution.
The C<-also> switch can take a Regex or a CodeRef to match against local
function names to clean.
use namespace::autoclean -also => qr/^_/
use namespace::autoclean -also => sub { $_ =~ m{^_} };
use namespace::autoclean -also => [qr/^_/ , qr/^hidden_/ ];
use namespace::autoclean -also => [sub { $_ =~ m/^_/ or $_ =~ m/^hidden/ }, sub { uc($_) == $_ } ];
=head2 -except => [ ITEM | REGEX | SUB, .. ]
=head2 -except => ITEM
=head2 -except => REGEX
=head2 -except => SUB
This takes exactly the same options as C<-also> except that anything this
matches will I<not> be cleaned.
=head1 CAVEATS
When used with L<Moo> classes, the heuristic used to check for methods won't
work correctly for methods from roles consumed at compile time.
package My::Class;
use Moo;
use namespace::autoclean;
# Bad, any consumed methods will be cleaned
BEGIN { with 'Some::Role' }
# Good, methods from role will be maintained
with 'Some::Role';
Additionally, method detection may not work properly in L<Mouse> classes in
perls earlier than 5.10.
=head1 SEE ALSO
=over 4
=item *
L<namespace::clean>
=item *
L<B::Hooks::EndOfScope>
=item *
L<namespace::sweep>
=item *
L<Sub::Exporter::ForMethods>
=item *
L<Sub::Name>
=item *
L<Sub::Install>
=item *
L<Test::CleanNamespaces>
=item *
L<Dist::Zilla::Plugin::Test::CleanNamespaces>
=back
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=namespace-autoclean>
(or L<bug-namespace-autoclean@rt.cpan.org|mailto:bug-namespace-autoclean@rt.cpan.org>).
There is also a mailing list available for users of this distribution, at
L<http://lists.perl.org/list/moose.html>.
There is also an irc channel available for users of this distribution, at
irc://irc.perl.org/#moose.
=head1 AUTHOR
Florian Ragwitz <rafl@debian.org>
=head1 CONTRIBUTORS
=for stopwords Karen Etheridge Graham Knop Dave Rolsky Kent Fredric Tomas Doran Shawn M Moore Felix Ostmann Chris Prather Andrew Rodland
=over 4
=item *
Karen Etheridge <ether@cpan.org>
=item *
Graham Knop <haarg@haarg.org>
=item *
Dave Rolsky <autarch@urth.org>
=item *
Kent Fredric <kentfredric@gmail.com>
=item *
Tomas Doran <bobtfish@bobtfish.net>
=item *
Shawn M Moore <sartak@gmail.com>
=item *
Felix Ostmann <sadrak@sadrak-laptop.(none)>
=item *
Chris Prather <cprather@hdpublishing.com>
=item *
Andrew Rodland <andrew@hbslabs.com>
=back
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2009 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|