Oh there *is* a way, but it's not big and it's not clever and won't work with anonymous subs, but you can do it if you really, really, really must:
+
sub foo
{
}
+
my $bar = \&foo;
+
foreach my $foo ( keys %:: )
{
my $zub = \&{$::{$foo}};
if ( $bar eq $zub )
{
print $foo,"\n";
last;
}
}
See I told you it wasn't big or clever ....
/J\ | [reply] [d/l] |
What about other namespaces? What about multiple matches? A sub is a little like an inode on a unix filesystem: it may have several names, or none; and several handles, or none.
| [reply] |
| [reply] |
It may not be big but it certainly is clever!
To those kind people who pointed out that:
(a)I could execute the sub without knowing its name - I knew that
(b)That it might not have a name - in my case I knew it had a name but not what the name was.
My problem was that the coderef was being passed in from somewhere else but I needed to get at the subroutine name, not to execute it but to print for debug, logging, etc.
As usual, perlmonks has excelled itself for speed and quality of response ...
Thanks
| [reply] |
I can tell you're already happy with the solution you've got, but I'd like to recommend a few alternates anyway. :-)
I think you're losing a lot of flexibility by requiring the passed in coderef to be a named sub in the same namespace. Any time you're passing around coderefs, anonymous subs become more and more useful. To this end, I can think of a few ways to allow them:
- Pass in a label along with the coderef. This would allow the caller to use anonymous coderefs as well as refs to named subs, and would avoid the "in another namespace" problem.
- Pass in a label, but only optionally. If there is no label, the symbol table is searched. If there is one, it's used instead.
-
Pass in an object. At first this sounds a bit ugly, but it could be something as simple as:
foobar(Code::Wrapper->new( code => \&foo ));
foobar(Code::Wrapper->new( code => sub { "baz" }, label => "baz" )
+)
Then this object could encapsulate the behavior mentioned earlier, by either searching the symbol table or using the specified label.
Which one you choose depends on how much flexibility you want in the future, and how much you want to insulate certain parts of your code from others. I have a feeling you will just go with the symbol table scan, but hopefully you'll at least give my ideas some consideration.
| [reply] [d/l] |
Would caller help? It's used to examine the call stack. For example, the Carp module (included with perl) uses it to warn/die with stack traces or from the perspecive of the caller.
| [reply] [d/l] |