p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/perl5/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/share/perl5/Symbol.pm
package Symbol;

=head1 NAME

Symbol - manipulate Perl symbols and their names

=head1 SYNOPSIS

    use Symbol;

    $sym = gensym;
    open($sym, "filename");
    $_ = <$sym>;
    # etc.

    ungensym $sym;      # no effect

    # replace *FOO{IO} handle but not $FOO, %FOO, etc.
    *FOO = geniosym;

    print qualify("x"), "\n";              # "main::x"
    print qualify("x", "FOO"), "\n";       # "FOO::x"
    print qualify("BAR::x"), "\n";         # "BAR::x"
    print qualify("BAR::x", "FOO"), "\n";  # "BAR::x"
    print qualify("STDOUT", "FOO"), "\n";  # "main::STDOUT" (global)
    print qualify(\*x), "\n";              # returns \*x
    print qualify(\*x, "FOO"), "\n";       # returns \*x

    use strict refs;
    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
to it.  Such a glob reference can be used as a file or directory
handle.

For backward compatibility with older implementations that didn't
support anonymous globs, C<Symbol::ungensym> is also provided.
But it doesn't do anything.

C<Symbol::geniosym> creates an anonymous IO handle.  This can be
assigned into an existing glob without affecting the non-IO portions
of the glob.

C<Symbol::qualify> turns unqualified symbol names into qualified
variable names (e.g. "myvar" -E<gt> "MyPackage::myvar").  If it is given a
second parameter, C<qualify> uses it as the default package;
otherwise, it uses the package of its caller.  Regardless, global
variable names (e.g. "STDOUT", "ENV", "SIG") are always qualified with
"main::".

Qualification applies only to symbol names (strings).  References are
left unchanged under the assumption that they are glob references,
which are qualified by their nature.

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.

=head1 BUGS

C<Symbol::delete_package> is a bit too powerful. It undefines every symbol that
lives in the specified package. Since perl, for performance reasons, does not
perform a symbol table lookup each time a function is called or a global
variable is accessed, some code that has already been loaded and that makes use
of symbols in package C<Foo> may stop working after you delete C<Foo>, even if
you reload the C<Foo> module afterwards.

=cut

BEGIN { require 5.005; }

require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(gensym ungensym qualify qualify_to_ref);
@EXPORT_OK = qw(delete_package geniosym);

$VERSION = '1.07';

my $genpkg = "Symbol::";
my $genseq = 0;

my %global = map {$_ => 1} qw(ARGV ARGVOUT ENV INC SIG STDERR STDIN STDOUT);

#
# Note that we never _copy_ the glob; we just make a ref to it.
# If we did copy it, then SVf_FAKE would be set on the copy, and
# glob-specific behaviors (e.g. C<*$ref = \&func>) wouldn't work.
#
sub gensym () {
    my $name = "GEN" . $genseq++;
    my $ref = \*{$genpkg . $name};
    delete $$genpkg{$name};
    $ref;
}

sub geniosym () {
    my $sym = gensym();
    # force the IO slot to be filled
    select(select $sym);
    *$sym{IO};
}

sub ungensym ($) {}

sub qualify ($;$) {
    my ($name) = @_;
    if (!ref($name) && index($name, '::') == -1 && index($name, "'") == -1) {
	my $pkg;
	# Global names: special character, "^xyz", or other. 
	if ($name =~ /^(([^a-z])|(\^[a-z_]+))\z/i || $global{$name}) {
	    # RGS 2001-11-05 : translate leading ^X to control-char
	    $name =~ s/^\^([a-z_])/'qq(\c'.$1.')'/eei;
	    $pkg = "main";
	}
	else {
	    $pkg = (@_ > 1) ? $_[1] : caller;
	}
	$name = $pkg . "::" . $name;
    }
    $name;
}

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};


    # free all the symbols in the package

    my $leaf_symtab = *{$stem_symtab->{$leaf}}{HASH};
    foreach my $name (keys %$leaf_symtab) {
        undef *{$pkg . $name};
    }

    # delete the symbol table

    %$leaf_symtab = ();
    delete $stem_symtab->{$leaf};
}

1;
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
September 29 2025 07:00:09
0 / 0
0755
App
--
February 02 2021 16:32:27
0 / 0
0755
Archive
--
February 02 2021 16:32:27
0 / 0
0755
Attribute
--
January 19 2024 08:12:46
0 / 0
0755
B
--
January 19 2024 08:12:46
0 / 0
0755
Class
--
January 19 2024 08:12:46
0 / 0
0755
Compress
--
February 02 2021 16:32:27
0 / 0
0755
Config
--
January 19 2024 08:12:46
0 / 0
0755
DBM_Filter
--
January 19 2024 08:12:46
0 / 0
0755
Devel
--
January 19 2024 08:12:46
0 / 0
0755
Encode
--
January 19 2024 08:12:46
0 / 0
0755
ExtUtils
--
January 19 2024 08:12:46
0 / 0
0755
File
--
January 19 2024 08:12:46
0 / 0
0755
Filter
--
January 19 2024 08:12:46
0 / 0
0755
Getopt
--
January 19 2024 08:12:46
0 / 0
0755
HTTP
--
February 02 2021 16:32:27
0 / 0
0755
I18N
--
January 19 2024 08:12:46
0 / 0
0755
IO
--
January 19 2024 08:12:46
0 / 0
0755
IPC
--
January 19 2024 08:12:46
0 / 0
0755
JSON
--
February 02 2021 16:32:27
0 / 0
0755
Locale
--
February 02 2021 16:32:27
0 / 0
0755
Log
--
January 19 2024 08:12:46
0 / 0
0755
Math
--
January 19 2024 08:12:46
0 / 0
0755
Memoize
--
January 19 2024 08:12:46
0 / 0
0755
Module
--
January 19 2024 08:12:46
0 / 0
0755
Net
--
January 19 2024 08:12:46
0 / 0
0755
Perl
--
February 02 2021 16:32:27
0 / 0
0755
PerlIO
--
January 19 2024 08:12:46
0 / 0
0755
Pod
--
January 19 2024 08:12:46
0 / 0
0755
Search
--
January 19 2024 08:12:46
0 / 0
0755
Term
--
January 19 2024 08:12:46
0 / 0
0755
Test
--
February 02 2021 16:32:27
0 / 0
0755
Text
--
January 19 2024 08:12:46
0 / 0
0755
Thread
--
January 19 2024 08:12:46
0 / 0
0755
Tie
--
January 19 2024 08:12:46
0 / 0
0755
Time
--
January 19 2024 08:12:46
0 / 0
0755
Unicode
--
January 19 2024 08:12:46
0 / 0
0755
User
--
January 19 2024 08:12:46
0 / 0
0755
Version
--
February 02 2021 16:32:27
0 / 0
0755
encoding
--
January 19 2024 08:12:46
0 / 0
0755
overload
--
January 19 2024 08:12:46
0 / 0
0755
pod
--
January 19 2024 08:12:46
0 / 0
0755
unicore
--
January 19 2024 08:12:46
0 / 0
0755
vendor_perl
--
February 02 2021 16:33:01
0 / 0
0755
warnings
--
January 19 2024 08:12:46
0 / 0
0755
AnyDBM_File.pm
2.557 KB
February 02 2021 16:32:27
0 / 0
0644
AutoLoader.pm
14.657 KB
February 02 2021 16:32:27
0 / 0
0644
AutoSplit.pm
19.177 KB
February 02 2021 16:32:27
0 / 0
0644
Benchmark.pm
27.867 KB
February 02 2021 16:32:27
0 / 0
0644
CORE.pod
2.7 KB
February 02 2021 16:32:27
0 / 0
0644
DB.pm
18.431 KB
February 02 2021 16:32:27
0 / 0
0644
DBM_Filter.pm
14.058 KB
February 02 2021 16:32:27
0 / 0
0644
DirHandle.pm
1.52 KB
February 02 2021 16:32:27
0 / 0
0644
Dumpvalue.pm
16.502 KB
February 02 2021 16:32:27
0 / 0
0644
English.pm
4.34 KB
February 02 2021 16:32:27
0 / 0
0644
FileCache.pm
5.439 KB
February 02 2021 16:32:27
0 / 0
0644
FileHandle.pm
6.619 KB
February 02 2021 16:32:27
0 / 0
0644
FindBin.pm
4.454 KB
February 02 2021 16:32:27
0 / 0
0644
Memoize.pm
34.396 KB
February 02 2021 16:32:27
0 / 0
0644
NEXT.pm
18.048 KB
February 02 2021 16:32:27
0 / 0
0644
PerlIO.pm
10.192 KB
February 02 2021 16:32:27
0 / 0
0644
Safe.pm
24.029 KB
February 02 2021 16:32:27
0 / 0
0644
SelectSaver.pm
1.051 KB
February 02 2021 16:32:27
0 / 0
0644
SelfLoader.pm
16.97 KB
February 02 2021 16:32:27
0 / 0
0644
Symbol.pm
4.682 KB
February 02 2021 16:32:27
0 / 0
0644
Test.pm
28.125 KB
February 02 2021 16:32:27
0 / 0
0644
Thread.pm
8.091 KB
February 02 2021 16:32:27
0 / 0
0644
UNIVERSAL.pm
6.967 KB
February 02 2021 16:32:27
0 / 0
0644
XSLoader.pm
9.993 KB
February 02 2021 16:32:27
0 / 0
0644
_charnames.pm
29.799 KB
February 02 2021 16:32:27
0 / 0
0644
autouse.pm
4.139 KB
February 02 2021 16:32:27
0 / 0
0644
base.pm
6.374 KB
February 02 2021 16:32:27
0 / 0
0644
bigint.pm
17.443 KB
February 02 2021 16:32:27
0 / 0
0644
bignum.pm
18.229 KB
February 02 2021 16:32:27
0 / 0
0644
bigrat.pm
14.105 KB
February 02 2021 16:32:27
0 / 0
0644
blib.pm
2.037 KB
February 02 2021 16:32:27
0 / 0
0644
bytes.pm
2.962 KB
February 02 2021 16:32:27
0 / 0
0644
bytes_heavy.pl
0.74 KB
February 02 2021 16:32:27
0 / 0
0644
charnames.pm
19.222 KB
February 02 2021 16:32:27
0 / 0
0644
deprecate.pm
3.006 KB
February 02 2021 16:32:27
0 / 0
0644
diagnostics.pm
17.956 KB
February 02 2021 16:32:27
0 / 0
0644
dumpvar.pl
14.962 KB
February 02 2021 16:32:27
0 / 0
0644
feature.pm
11.056 KB
February 02 2021 16:32:27
0 / 0
0644
fields.pm
9.276 KB
February 02 2021 16:32:27
0 / 0
0644
filetest.pm
3.909 KB
February 02 2021 16:32:27
0 / 0
0644
if.pm
1.131 KB
February 02 2021 16:32:27
0 / 0
0644
integer.pm
3.189 KB
February 02 2021 16:32:27
0 / 0
0644
less.pm
3.129 KB
February 02 2021 16:32:27
0 / 0
0644
locale.pm
2.717 KB
February 02 2021 16:32:27
0 / 0
0644
open.pm
7.828 KB
February 02 2021 16:32:27
0 / 0
0644
overload.pm
52.662 KB
February 02 2021 16:32:27
0 / 0
0644
overloading.pm
1.766 KB
February 02 2021 16:32:27
0 / 0
0644
perl5db.pl
302.786 KB
February 02 2021 16:32:27
0 / 0
0644
perlfaq.pm
0.092 KB
February 02 2021 16:32:27
0 / 0
0644
sigtrap.pm
7.464 KB
February 02 2021 16:32:27
0 / 0
0644
sort.pm
5.95 KB
February 02 2021 16:32:27
0 / 0
0644
strict.pm
3.841 KB
February 02 2021 16:32:27
0 / 0
0644
subs.pm
0.825 KB
February 02 2021 16:32:27
0 / 0
0644
utf8.pm
7.599 KB
February 02 2021 16:32:27
0 / 0
0644
utf8_heavy.pl
30.098 KB
February 02 2021 16:32:27
0 / 0
0644
vars.pm
2.303 KB
February 02 2021 16:32:27
0 / 0
0644
vmsish.pm
4.221 KB
February 02 2021 16:32:27
0 / 0
0644
warnings.pm
18.336 KB
February 02 2021 16:32:27
0 / 0
0644