http://qs321.pair.com?node_id=245302


in reply to Loading a function from another file dynamically?!

Using a module, you can run a function defined in that module. The module must be loaded at compile time.

However, Perl allows you to define subs in other files and load them in several ways. I'll show you some.

Here's the main file

#!/usr/bin/perl -w use strict; my $method = shift || 1; my $filename = shift || 'other.pl'; my $sub = shift || 'hello'; if ($method == 1) { print "First method\n"; { local $/; open OTHER, "< $filename" or die "can't open\n"; my $other = <OTHER>; close OTHER; eval $other . ";$sub"; } } elsif ($method == 2) { print "Second method\n"; scalar eval `cat $filename`; eval $sub; } else { print "Third method\n"; do $filename; eval $sub; }

In this file we define one sub.

#cat other.pl sub hello { print "hello world\n"; }

And one more in this other file.

# cat other2.pl sub hi { print "hi, world!\n"; }

As an example, you can run this script

$ perl test_runtime.pl 1 other.pl hello

Where "1" is the method to use, "other.pl" is the file containing your function, "hello" is the function name.

Try also

$ perl test_runtime.pl 2 other2.pl hi $ perl test_runtime.pl 3 other2.pl hi

And see for yourself what happens.

CAVEAT. Using eval you are compiling and running code at run time. When you run a normal script, the Perl compiler will catch the mistakes and inform you about them. With eval, you should catch the errors by checking eval's return value. See the docs for more info.

_ _ _ _ (_|| | |(_|>< _|