--- rat/lonuserstate.pm 2000/11/14 11:13:12 1.18 +++ rat/lonuserstate.pm 2000/11/16 11:58:30 1.19 @@ -11,7 +11,8 @@ # 7/1,7/3,7/4,7/7,7/8,7/10 Gerd Kortemeyer) # # 7/15,7/17,7/18,8/1,8/2,8/4,8/5,8/21,8/22,8/23,8/30, -# 9/2,9/4,9/29,9/30,10/2,10/11,10/30,10/31,11/1,11/2,11/14 Gerd Kortemeyer +# 9/2,9/4,9/29,9/30,10/2,10/11,10/30,10/31, +# 11/1,11/2,11/14,11/16 Gerd Kortemeyer package Apache::lonuserstate; @@ -29,6 +30,7 @@ use Opcode; my $pc; # Package counter my %hash; # The big tied hash +my %parmhash;# The hash with the parameters my @cond; # Array with all of the conditions my $errtext; # variable with all errors @@ -252,7 +254,7 @@ sub traceroute { } } -# ------------------------------------------ Cascading conditions, quick access +# ------------------------------ Cascading conditions, quick access, parameters sub accinit { my ($uri,$short,$fn)=@_; @@ -281,7 +283,18 @@ sub accinit { $captured{$expr}=$condcounter; $acchash{'acc.cond.'.$short.'.'.$condcounter}=$expr; } - } + } elsif ($_=~/^param_(\d+)\.(\d+)/) { + my $prefix=&Apache::lonnet::declutter($hash{'map_id_'.$1}). + '___'.$2.'___'.&Apache::lonnet::declutter($hash{'src_'.$1.'.'.$2}); + map { + my ($typename,$value)=split(/\=/,$_); + my ($type,$name)=split(/\:/,$typename); + $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name)}= + &Apache::lonnet::unescape($value); + $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name).'.type'}= + &Apache::lonnet::unescape($type); + } split(/\&/,$hash{$_}); + } } keys %hash; map { if ($_=~/^ids/) { @@ -316,7 +329,7 @@ sub accinit { } keys %hash; my $courseuri=$uri; $courseuri=~s/^\/res\///; - &Apache::lonnet::delenv('(acc\.|httpref\.|resource\.parms)'); + &Apache::lonnet::delenv('(acc\.|httpref\.)'); &Apache::lonnet::appenv(%acchash, "request.course.id" => $short, "request.course.fn" => $fn, @@ -341,8 +354,11 @@ sub readmap { unlink($fn.'.db'); unlink($fn.'_symb.db'); unlink($fn.'.state'); - if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT,0640)) { + unlink($fn.'parms.db'); + if ((tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT,0640)) && + (tie(%parmhash,'GDBM_File',$fn.'_parms.db',&GDBM_WRCREAT,0640))) { %hash=(); + %parmhash=(); $errtext=''; $pc=0; loadmap($uri); @@ -350,7 +366,7 @@ sub readmap { &traceroute('0',$hash{'map_start_'.$uri},'&'); &accinit($uri,$short,$fn); } - unless (untie(%hash)) { + unless ((untie(%hash)) && (untie(%parmhash))) { &Apache::lonnet::logthis("WARNING: ". "Could not untie coursemap $fn for $uri."); }