From: Florian Ragwitz Date: Tue, 1 Dec 2009 13:09:44 +0000 (+0100) Subject: Unimport blessed and confess unless they've been replaced by something else. X-Git-Tag: 0.93_01~31 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e0d3eb1053e46f28a5e4f46ca7769478c0d2d106;hp=f81522ba0fd4d8281b2f3246d281394c18eb4e94;p=gitmo%2FMoose.git Unimport blessed and confess unless they've been replaced by something else. --- diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index 1f4ff04..db6f935 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -37,9 +37,9 @@ sub build_import_methods { my $export_recorder = {}; - my ( $exports, $is_removable ) - = $class->_make_sub_exporter_params( - [ @exports_from, $exporting_package ], $export_recorder ); + my $exports = $class->_make_sub_exporter_params( + [ @exports_from, $exporting_package ], $export_recorder, + ); my $exporter = Sub::Exporter::build_exporter( { @@ -53,7 +53,7 @@ sub build_import_methods { $exporter, \@exports_from ); $methods{unimport} = $class->_make_unimport_sub( $exporting_package, - $exports, $is_removable, $export_recorder ); + $exports, $export_recorder ); $methods{init_meta} = $class->_make_init_meta( $exporting_package, \%args ); @@ -117,7 +117,6 @@ sub _make_sub_exporter_params { my $export_recorder = shift; my %exports; - my %is_removable; for my $package ( @{$packages} ) { my $args = $EXPORT_SPEC{$package} @@ -134,8 +133,6 @@ sub _make_sub_exporter_params { $sub, $export_recorder, ); - - $is_removable{$name} = 1; } for my $name ( @{ $args->{with_caller} } ) { @@ -149,47 +146,51 @@ sub _make_sub_exporter_params { $sub, $export_recorder, ); - - $is_removable{$name} = 1; } for my $name ( @{ $args->{as_is} } ) { my ($sub, $coderef_name); if ( ref $name ) { - $sub = $name; + $sub = $name; - # Even though Moose re-exports things from Carp & - # Scalar::Util, we don't want to remove those at - # unimport time, because the importing package may - # have imported them explicitly ala - # - # use Carp qw( confess ); - # - # This is a hack. Since we can't know whether they - # really want to keep these subs or not, we err on the - # safe side and leave them in. my $coderef_pkg; ( $coderef_pkg, $coderef_name ) = Class::MOP::get_code_info($name); - $is_removable{$coderef_name} = $coderef_pkg eq $package ? 1 : 0; + # Moose re-exports things from Carp and Scalar::Util. Usually, + # we want to remove those again at unimport time. However, the + # importing package might have imported those symbols + # explicitly after using Moose ala + # + # use Moose; + # use Carp qw( confess ); + # + # In this case, we don't want to remove 'confess' when + # unimporting. To do that, we wrap the exports from other + # packages in anonymous coderef. Then, at unimport time, we + # can figure out if the package symbol still contains the + # coderef we exported, or if the user overwrote it with + # something else we don't want to remove. + if ( $coderef_pkg ne $package ) { + $sub = sub { goto &$name }; + &Scalar::Util::set_prototype( $sub, prototype $name ); + } } else { $sub = $class->_sub_from_package( $package, $name ) or next; - $is_removable{$name} = 1; $coderef_name = $name; } $export_recorder->{$sub} = 1; - $exports{$coderef_name} = sub {$sub}; + $exports{$coderef_name} = sub { $sub }; } } - return ( \%exports, \%is_removable ); + return \%exports; } sub _sub_from_package { @@ -431,7 +432,6 @@ sub _make_unimport_sub { shift; my $exporting_package = shift; my $exports = shift; - my $is_removable = shift; my $export_recorder = shift; return sub { @@ -439,7 +439,6 @@ sub _make_unimport_sub { Moose::Exporter->_remove_keywords( $caller, [ keys %{$exports} ], - $is_removable, $export_recorder, ); }; @@ -449,14 +448,11 @@ sub _remove_keywords { shift; my $package = shift; my $keywords = shift; - my $is_removable = shift; my $recorded_exports = shift; no strict 'refs'; foreach my $name ( @{ $keywords } ) { - next unless $is_removable->{$name}; - if ( defined &{ $package . '::' . $name } ) { my $sub = \&{ $package . '::' . $name }; diff --git a/t/010_basics/009_import_unimport.t b/t/010_basics/009_import_unimport.t index fcf15d0..89bab82 100644 --- a/t/010_basics/009_import_unimport.t +++ b/t/010_basics/009_import_unimport.t @@ -13,6 +13,7 @@ my @moose_exports = qw( override augment super inner + blessed confess ); { @@ -64,8 +65,8 @@ ok(!Bar->can($_), '... Bar can no longer do ' . $_) for @moose_type_constraint_e { package Baz; - use Scalar::Util qw( blessed ); use Moose; + use Scalar::Util qw( blessed ); no Moose; }