This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
add Symbol::delete_package()
authorGurusamy Sarathy <gsar@cpan.org>
Mon, 6 Jul 1998 00:40:24 +0000 (00:40 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Mon, 6 Jul 1998 00:40:24 +0000 (00:40 +0000)
p4raw-id: //depot/perl@1330

lib/Symbol.pm
pod/perlembed.pod

index 6807e74..5ed6b26 100644 (file)
@@ -27,6 +27,11 @@ Symbol - manipulate Perl symbols and their names
     print { qualify_to_ref $fh } "foo!\n";
     $ref = qualify_to_ref $name, $pkg;
 
+    use Symbol qw(delete_package);
+    delete_package('Foo::Bar');
+    print "deleted\n" unless exists $Foo::{'Bar::'};
+
+
 =head1 DESCRIPTION
 
 C<Symbol::gensym> creates an anonymous glob and returns a reference
@@ -52,6 +57,10 @@ C<Symbol::qualify_to_ref> is just like C<Symbol::qualify> except that it
 returns a glob ref rather than a symbol name, so you can use the result
 even if C<use strict 'refs'> is in effect.
 
+C<Symbol::delete_package> wipes out a whole package namespace.  Note
+this routine is not exported by default--you may want to import it
+explicitly.
+
 =cut
 
 BEGIN { require 5.002; }
@@ -59,6 +68,7 @@ BEGIN { require 5.002; }
 require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(gensym ungensym qualify qualify_to_ref);
+@EXPORT_OK = qw(delete_package);
 
 $VERSION = 1.02;
 
@@ -101,4 +111,29 @@ sub qualify_to_ref ($;$) {
     return \*{ qualify $_[0], @_ > 1 ? $_[1] : caller };
 }
 
+#
+# of Safe.pm lineage
+#
+sub delete_package ($) {
+    my $pkg = shift;
+
+    # expand to full symbol table name if needed
+
+    unless ($pkg =~ /^main::.*::$/) {
+        $pkg = "main$pkg"      if      $pkg =~ /^::/;
+        $pkg = "main::$pkg"    unless  $pkg =~ /^main::/;
+        $pkg .= '::'           unless  $pkg =~ /::$/;
+    }
+
+    my($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
+    my $stem_symtab = *{$stem}{HASH};
+    return unless defined $stem_symtab and exists $stem_symtab->{$leaf};
+
+    my $leaf_glob   = $stem_symtab->{$leaf};
+    my $leaf_symtab = *{$leaf_glob}{HASH};
+
+    %$leaf_symtab = ();
+    delete $stem_symtab->{$leaf};
+}
+
 1;
index 1255345..f7c8e4a 100644 (file)
@@ -668,6 +668,7 @@ with my() whenever possible.
 
  use strict;
  use vars '%Cache';
+ use Symbol qw(delete_package);
 
  sub valid_package_name {
      my($string) = @_;
@@ -680,23 +681,6 @@ with my() whenever possible.
      return "Embed" . $string;
  }
 
- #borrowed from Safe.pm
- sub delete_package {
-     my $pkg = shift;
-     my ($stem, $leaf);
-
-     no strict 'refs';
-     $pkg = "main::$pkg\::";    # expand to full symbol table name
-     ($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
-
-     my $stem_symtab = *{$stem}{HASH};
-     my $leaf_glob   = $stem_symtab->{$leaf};
-     my $leaf_symtab = *{$leaf_glob}{HASH};
-
-     %$leaf_symtab = ();
-     delete $stem_symtab->{$leaf};
- }
-
  sub eval_file {
      my($filename, $delete) = @_;
      my $package = valid_package_name($filename);