Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call a perl module's method from a string

Tags:

perl

Given a perl module Foo.pm with methods aSub() and bSub()

my $obj = Foo->new();
my $x = $obj->aSub($argA);
my $y = $obj->bSub($argB);

I have a TAP program where I build an array of hashes:

my $test_case = [
   'aSub' => "foobar",
   'bSub' => "whobar"
];  

I would like to be able to parse the array and use the key/value elements to call methods on the Foo object $obj;
Like a static method:

if ($key eq 'aSub') {
  $obj->aSub($value)
} elsif ($key eq 'bSub') {
  $obj->bSub($value);
}
...

I would prefer to do this polymorphically so I don't have to hard code the methods:

$obj->{$key}($value) #or something of the sort  

I have tried several methods using references and/or glob, but I keep on getting an error:

Error: Threw an exception: aSub is not defined

Test::Harness capturing the error and printing less useful message?

like image 449
MEH Avatar asked Jun 08 '11 23:06

MEH


1 Answers

Calling a method whose name is in a variable is easy:

my $key = 'aSub';
my $value = 'foobar';
my $obj = Foo->new();

$obj->$key($value);
like image 79
cjm Avatar answered Nov 15 '22 06:11

cjm