Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Conditional loading of methods

by jasonk (Parson)
on Dec 09, 2008 at 04:33 UTC ( [id://729079]=note: print w/replies, xml ) Need Help??


in reply to Conditional loading of methods

The only way you are going to get around the syntax problems is to only compile the code in question if the module exists....

eval "use Foo::Bar"; eval <<"END" unless $@; sub my_method { # Code } END

but because that is going to introduce it's own problems, I would opt for moving that code into a module or a library...

eval "use Foo::Bar"; if ( $@ ) { require "have-foo-bar-library.pl"; } else { require "dont-have-foo-bar-library.pl"; }

As for the second part, because you are using eval BLOCK rather than eval STRING, the use will still be evaluated at compile time, rather than at run time. You could get the effect you are looking for by breaking the use up into it's components though...

eval { require Foo::Bar; import Foo::Bar; }

www.jasonkohles.com
We're not surrounded, we're in a target-rich environment!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://729079]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-16 10:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found