in reply to Re: Re: Re-calling in a list of variables into different .pl's
in thread Re-calling in a list of variables into different .pl's

To get you started, perhaps something like this would help (untested):
#MyVars.pm package MyVars; use strict; use warnings; use Exporter (); our @ISA = 'Exporter'; our ($one,$two,$three,$four,$five); our @EXPORT = qw/$one $two $three $four $five call_variables/; sub call_variables { #pick up a string I've passed from previous program via 'spec_vars' my $spec_vars = param('spec_vars'); ($one,$two,$three,$four,$five) = split /~/, $spec_vars; return; # nothing; this sub only sets the variables } 1; # in your script use MyVars; # declares variables (actually just aliases them to the on +es in the MyVars package) # to start with, they will be undefined (or at least should be treated + as such) call_variables(); # now you can say $fred = $one . $two;
  • Comment on Re: Re: Re: Re-calling in a list of variables into different .pl's
  • Download Code

Replies are listed 'Best First'.
Re: Re: Re: Re: Re-calling in a list of variables into different .pl's
by Lori713 (Pilgrim) on Feb 09, 2004 at 14:20 UTC
    Thank you for the example. This really helps me to begin using it, and then tweaking it to make sure I understand the nuts and bolts. I am very grateful for your taking the time to give me an example that so closely relates to what I'm trying to do! :-D

    Lori

Re: Re: Re: Re: Re-calling in a list of variables into different .pl's
by Lori713 (Pilgrim) on Feb 10, 2004 at 20:43 UTC
    I've used the example you provided, and it works beautimously. However, I'm wondering if there's a better way to avoid having to repeat these same variable names four times as you can see below (once in the main program and three times in the nc_library.pm package). I have about twenty-five in all, so it would be nice not to have to constantly synchronize them (not to mention the fact that I've also got to put them in HTML::Template for a TMPL_VAR loop thingy). Any ideas? Thanks!

    #my second_page.pl: #!/usr/local/bin/perl5_8 use strict; use warnings; use nc_pswd; use nc_library; use vars qw/ $titlebar $rpt_no $rpt_lbl $rpt_name $rpt_asofdt $project $proj_re +f $attr_dept $attr_descr $attr_award $attr_prog $attr_projpd $attr_f +yr $attr_budgpd $attr_fund $attr_rate $attr_subclass $attr_status $attr_spec $attr_equip $attr_resp $attr_pi $rpt_type $from_act_tbl $from_bud_tbl /; use HTML::Template; use DBI; use CGI ':standard'; use CGI::Carp qw(fatalsToBrowser); #remove for PRD my $CGI = CGI->new; #clear buffers and set up web page (required) $|=1; print $CGI->header; &call_vars; #and do other stuff.... # --------------------------------------------------------------- # #my nc_library.pm package nc_library; use strict; use warnings; use Exporter (); our @ISA = 'Exporter'; our ( $titlebar, $rpt_no, $rpt_lbl, $rpt_name, $rpt_asofdt, $project, $proj_ref, $attr_dept, $attr_descr, $attr_award, $attr_prog, $attr_projpd, $attr_fyr, $attr_budgpd, $attr_fund, $attr_rate, $attr_subclass, $attr_status, $attr_spec, $attr_equip, $attr_resp, $attr_pi, $rpt_type, $from_act_tbl, $from_bud_tbl ); our @EXPORT = qw/ call_vars commify dberror $CGI $spec_vars $titlebar $rpt_no $rpt_lbl $rpt_name $rpt_asofdt $project $proj_ref $attr_dept $attr_descr $attr_award $attr_prog $attr_projpd $attr_fyr $attr_budgpd $attr_fund $attr_rate $attr_subclass $attr_status $attr_spec $attr_equip $attr_resp $attr_pi $rpt_type $from_act_tbl $from_bud_tbl /; sub call_vars { use CGI ':standard'; use CGI::Carp qw(fatalsToBrowser); #remove for PRD my $CGI = CGI->new; my $spec_vars = param('spec_vars'); ( $titlebar, $rpt_no, $rpt_lbl, $rpt_name, $rpt_asofdt, $project, $proj_ref, $attr_dept, $attr_descr, $attr_award, $attr_prog, $attr_projpd, $attr_fyr, $attr_budgpd, $attr_fund, $attr_rate, $attr_subclass, $attr_status, $attr_spec, $attr_equip, $attr_resp, $attr_pi, $rpt_type, $from_act_tbl, $from_bud_tbl) = split /~/, $spec_vars; return; } sub commify #Formats numbers (puts in commas) { local $_ = sprintf "%.2f", shift @_; 1 while $_ =~ s/^(-?\d+)(\d\d\d)/$1,$2/; return $_; } 1;

    Lori

      The use vars in the main program should be unnecessary.

      You may want to just use a hash instead of separate variables.

      Other than that, you can get rid of the our() list by saying something like our @EXPORT; use vars @EXPORT=qw/ list of var names /;. You could do something with eval to get the split working, but I wouldn't bother (unless the var names are going to change a lot).

        The use vars in the main program was necessary (because of the errors it generated without it regarding undeclared variables) until I changed it as you suggested to:
        our @EXPORT; use vars @EXPORT=qw/ list of var names/;
        I now only have two lists, both of them in the package (where it's easy to keep them synchronized (love that copy & paste!)).

        Thanks so much for your help!

        Lori