I am dynamically creating packages because I am loading snippets of code with require that I didn't write and I need to eliminate the odds of namespace collisions. So, I make a package with
# just a quick simplified version
my $package = "Foo";
loader();
sub loader {
eval {"package $package"};
require "$package"; # assume $package is in @INC
}
# now I need to address variables in Foo::,
# but I painted myself into a corner where the
# only thing I can think of is soft references -
# a Bad Thing.
print $$package::somehash{somevalue};
# to really have fun I was also trying to run subs
# that existed in Foo::
my $action = "testfoo";
&{"$$package::actionshash{$Main::action}"};
I know soft-references are bad and I am very open to other suggestions. I am also open to other ways to use dynamically loaded code without collisions.
The reason I didn't put the package declaration in the code being loaded is because then I wouldn't know the name of the namespace for that code.
Thanks,
alex
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, details, 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, summary, 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.