As the following demo shows is caller(1) reporting the name of the calling sub + package.
In the case of a named subroutine one is able to get the code-ref of the caller by inspecting the STASH.
But this doesn't work with anonymous subs.
Caller claims they are part of the stash (here main::__ANON__ ) but accessing the associated code-ref fails. It most likely a newly autovivificated code-ref.
Any better way to get the callers code-ref?
First the output
CURRENT SUB: CODE(0x24c9198)
main::upper CODE(0x24c9198)
CURRENT SUB: CODE(0x24e8568)
main::__ANON__ CODE(0x24c0580) # <--- OOPS
Here the demo:
use strict;
use warnings;
use Data::Dump qw/pp dd/;
use feature "current_sub","say";
sub lower {
my %caller;
package DB {
@caller{ qw/
package filename line subroutine hasarg
+s
wantarray evaltext is_require hints bitmas
+k
hinthash
/
} = caller(1);
};
my $caller_name = $caller{subroutine};
my $caller_ref =\&{$caller_name};;
say $caller_name," ",$caller_ref;
}
# --- normal
sub upper {
say "CURRENT SUB: ",__SUB__;
lower( "UPPER" );
}
upper();
# --- ano sub
my $ano = sub {
say "CURRENT SUB: ",__SUB__;
lower("ANNO");
};
$ano->();
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|