vote up 9 vote down star
3

What's the best way to programatically discover all of the subroutines a perl module has? This could be a module, a class (no @EXPORT), or anything in-between.

Edit: All of the methods below look like they will work. I'd probably use the Class::Sniff or Class::Inspector in production. However, Leon's answer is marked as 'accepted' since it answers the question as posed, even though no strict 'refs' has to be used. :-) Class::Sniff may be a good choice as it progresses; it looks like a lot of thought has gone into it.

flag

3 Answers

vote up 11 vote down check
sub list_module {
    my $module = shift;
    no strict 'refs';
    return grep { defined &{"$module\::$_"} } keys %{"$module\::"}
}

ETA: if you want to filter out imported subroutines, you can do this

use B qw/svref_2object/;

sub in_package {
    my ($coderef, $package) = @_;
    my $cv = svref_2object($coderef);
    return if not $cv->isa('B::CV') or $cv->GV->isa('B::SPECIAL');
    return $cv->GV->STASH->NAME eq $package;
}

sub list_module {
    my $module = shift;
    no strict 'refs';
    return grep { defined &{"$module\::$_"} and in_package(\&{*$_}, $module) } keys %{"$module\::"}
}
link|flag
This will also list subroutines that the module imported from other modules. – Manni Mar 3 at 19:57
That would be problematic. – Robert P Mar 3 at 20:29
On second thought, it may also be important, depending on the application. – Robert P Mar 3 at 20:33
True, but there is no easy way to get around that, I think. namespace::clean is the answer to such problems ;-) – Leon Timmermans Mar 3 at 20:34
You'd want exists instead of defined to pick up autoloaded subs. – ysth Mar 4 at 4:24
show 2 more comments
vote up 8 vote down

Have a look at this: http://search.cpan.org/dist/Class-Sniff/lib/Class/Sniff.pm

link|flag
Looks interesting, but fairly new. I'd be hesitant to use it in a production environment. – Robert P Mar 3 at 18:36
1  
What reasons could you possibly have to get a list of methods in a production environment? – Manni Mar 3 at 18:45
1  
I'm interested in prototyping out a Test::Class like tool. Developing prototypes off other untested code can lead to big headaches. :) – Robert P Mar 3 at 18:54
Good point. I just hope you are not going to test on the production servers. – Manni Mar 3 at 18:56
It's new, but Ovid has thought about this problem in great depth. It's not written lightly. See various journal posts related to Class::Sniff here: use.perl.org/journal.pl?op=list&uid=2709/… – xdg Mar 3 at 20:53
show 2 more comments
vote up 5 vote down

Class::Inspector.

link|flag
Very interesting, I'll take a look at it. – Robert P Mar 3 at 20:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.