5 Symbol - manipulate Perl symbols and their names
12 open($sym, "filename");
16 ungensym $sym; # no effect
18 # replace *FOO{IO} handle but not $FOO, %FOO, etc.
21 print qualify("x"), "\n"; # "Test::x"
22 print qualify("x", "FOO"), "\n" # "FOO::x"
23 print qualify("BAR::x"), "\n"; # "BAR::x"
24 print qualify("BAR::x", "FOO"), "\n"; # "BAR::x"
25 print qualify("STDOUT", "FOO"), "\n"; # "main::STDOUT" (global)
26 print qualify(\*x), "\n"; # returns \*x
27 print qualify(\*x, "FOO"), "\n"; # returns \*x
30 print { qualify_to_ref $fh } "foo!\n";
31 $ref = qualify_to_ref $name, $pkg;
33 use Symbol qw(delete_package);
34 delete_package('Foo::Bar');
35 print "deleted\n" unless exists $Foo::{'Bar::'};
39 C<Symbol::gensym> creates an anonymous glob and returns a reference
40 to it. Such a glob reference can be used as a file or directory
43 For backward compatibility with older implementations that didn't
44 support anonymous globs, C<Symbol::ungensym> is also provided.
45 But it doesn't do anything.
47 C<Symbol::geniosym> creates an anonymous IO handle. This can be
48 assigned into an existing glob without affecting the non-IO portions
51 C<Symbol::qualify> turns unqualified symbol names into qualified
52 variable names (e.g. "myvar" -E<gt> "MyPackage::myvar"). If it is given a
53 second parameter, C<qualify> uses it as the default package;
54 otherwise, it uses the package of its caller. Regardless, global
55 variable names (e.g. "STDOUT", "ENV", "SIG") are always qualified with
58 Qualification applies only to symbol names (strings). References are
59 left unchanged under the assumption that they are glob references,
60 which are qualified by their nature.
62 C<Symbol::qualify_to_ref> is just like C<Symbol::qualify> except that it
63 returns a glob ref rather than a symbol name, so you can use the result
64 even if C<use strict 'refs'> is in effect.
66 C<Symbol::delete_package> wipes out a whole package namespace. Note
67 this routine is not exported by default--you may want to import it
72 C<Symbol::delete_package> is a bit too powerful. It undefines every symbol that
73 lives in the specified package. Since perl, for performance reasons, does not
74 perform a symbol table lookup each time a function is called or a global
75 variable is accessed, some code that has already been loaded and that makes use
76 of symbols in package C<Foo> may stop working after you delete C<Foo>, even if
77 you reload the C<Foo> module afterwards.
81 BEGIN { require 5.005; }
85 @EXPORT = qw(gensym ungensym qualify qualify_to_ref);
86 @EXPORT_OK = qw(delete_package geniosym);
90 my $genpkg = "Symbol::";
93 my %global = map {$_ => 1} qw(ARGV ARGVOUT ENV INC SIG STDERR STDIN STDOUT);
96 # Note that we never _copy_ the glob; we just make a ref to it.
97 # If we did copy it, then SVf_FAKE would be set on the copy, and
98 # glob-specific behaviors (e.g. C<*$ref = \&func>) wouldn't work.
101 my $name = "GEN" . $genseq++;
102 my $ref = \*{$genpkg . $name};
103 delete $$genpkg{$name};
109 # force the IO slot to be filled
118 if (!ref($name) && index($name, '::') == -1 && index($name, "'") == -1) {
120 # Global names: special character, "^xyz", or other.
121 if ($name =~ /^(([^a-z])|(\^[a-z_]+))\z/i || $global{$name}) {
122 # RGS 2001-11-05 : translate leading ^X to control-char
123 $name =~ s/^\^([a-z_])/'qq(\c'.$1.')'/eei;
127 $pkg = (@_ > 1) ? $_[1] : caller;
129 $name = $pkg . "::" . $name;
134 sub qualify_to_ref ($;$) {
135 return \*{ qualify $_[0], @_ > 1 ? $_[1] : caller };
141 sub delete_package ($) {
144 # expand to full symbol table name if needed
146 unless ($pkg =~ /^main::.*::$/) {
147 $pkg = "main$pkg" if $pkg =~ /^::/;
148 $pkg = "main::$pkg" unless $pkg =~ /^main::/;
149 $pkg .= '::' unless $pkg =~ /::$/;
152 my($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
153 my $stem_symtab = *{$stem}{HASH};
154 return unless defined $stem_symtab and exists $stem_symtab->{$leaf};
157 # free all the symbols in the package
159 my $leaf_symtab = *{$stem_symtab->{$leaf}}{HASH};
160 foreach my $name (keys %$leaf_symtab) {
161 undef *{$pkg . $name};
164 # delete the symbol table
167 delete $stem_symtab->{$leaf};