forks::Devel::Symdump(3pm) | User Contributed Perl Documentation | forks::Devel::Symdump(3pm) |
forks::Devel::Symdump - dump symbol names or the symbol table
# Constructor require forks::Devel::Symdump; @packs = qw(some_package another_package); $obj = forks::Devel::Symdump->new(@packs); # no recursion $obj = forks::Devel::Symdump->rnew(@packs); # with recursion # Methods @array = $obj->packages; @array = $obj->scalars; @array = $obj->arrays; @array = $obj->hashes; @array = $obj->functions; @array = $obj->filehandles; # deprecated, use ios instead @array = $obj->dirhandles; # deprecated, use ios instead @array = $obj->ios; @array = $obj->unknowns; # only perl version < 5.003 had some $string = $obj->as_string; $string = $obj->as_HTML; $string = $obj1->diff($obj2); $string = forks::Devel::Symdump->isa_tree; # or $obj->isa_tree $string = forks::Devel::Symdump->inh_tree; # or $obj->inh_tree # Methods with autogenerated objects # all of those call new(@packs) internally @array = forks::Devel::Symdump->packages(@packs); @array = forks::Devel::Symdump->scalars(@packs); @array = forks::Devel::Symdump->arrays(@packs); @array = forks::Devel::Symdump->hashes(@packs); @array = forks::Devel::Symdump->functions(@packs); @array = forks::Devel::Symdump->ios(@packs); @array = forks::Devel::Symdump->unknowns(@packs);
This little package serves to access the symbol table of perl.
The global variable $forks::Devel::Symdump::MAX_RECURSION limits the recursion to prevent contention. The default value is set to 97, just low enough to survive the test suite without a warning about deep recursion.
AutoLoader DynaLoader Socket DynaLoader Socket Exporter Carp Config Socket
The inh_tree method shows on the left hand side a package name and indented to the right the packages that use the former.
Carp Exporter Config Exporter DynaLoader AutoLoader Socket Exporter DynaLoader AutoLoader
The isa_tree method displays from left to right ISA relationships, so Socket IS A DynaLoader and DynaLoader IS A AutoLoader. (Actually, they were at the time this manpage was written)
You may call both methods, isa_tree() and inh_tree(), with an object. If you do that, the object will store the output and retrieve it when you call the same method again later. The typical usage would be to use them as class methods directly though.
The design of this package is intentionally primitive and allows it to be subclassed easily. An example of a (maybe) useful subclass is forks::Devel::Symdump::Export, a package which exports all methods of the forks::Devel::Symdump package and turns them into functions.
Andreas Koenig <andk@cpan.org> and Tom Christiansen <tchrist@perl.com>. Based on the old dumpvar.pl by Larry Wall.
This is a modified version of Devel::Symdump 2.08. It includes custom patches for Perl 5.10 compatibility.
Original module is
Copyright (c) 1995, 1997, 2000, 2002, 2005, 2006 Andreas Koenig "<andk@cpan.org>".
All rights reserved.
This library is free software; you may use, redistribute and/or modify it under the same terms as Perl itself.
2024-04-01 | perl v5.38.2 |