I am running a web app under plackup with starman and trying to dynamically load and instantiate packages based on user requests. I am using 'require $packageName;' to load the package where $packageName contains the name of the package, the names are stored in a config file. I then execute a known set of commands on the instance as all classes inherit from a base class and contain a set of known methods.

This works fine under Apache, but for some reason plackup is saying it cannot locate the package even though @INC contains the library path and the package names are absolute from the last directory in the lib path. That is, the package name would be Base::My::Package.

Anyone experience this issue? Do I need to update some other path within Starman? I am executing plackup with the -I flag as well as updating my environment PERL5LIB variable. I also tried 'use lib /...' in the main app class, but none of these work.

Thanks

link|improve this question

27% accept rate
Example: starman -e'my $package = "Template"; require $package; my $t = $package->new; return [200, ["Content-Type" => "text/plain"], ["ok"]];' – daxim Jan 11 at 10:38
This is more or less an example of what's not working. – MadHacker Jan 11 at 13:25
eval "use $package"; did the trick – MadHacker Feb 11 at 23:43
@MadHacker: Did my answer help you? – hochgurgler Feb 15 at 11:09
Yes, and accepted. – MadHacker Feb 15 at 13:42
feedback

1 Answer

up vote 1 down vote accepted

require will only accept module names (e.g. Scalar::Util) when they're specified as barewords. If you give require a string, then it needs to be a relative path to the module (e.g. Scalar/Util.pm). You can get around this by doing the require inside an eval (the string-parameter form of eval), e.g. eval "require $package".

See Check the list of module installed in machine

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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