Diff for /rat/lonuserstate.pm between versions 1.18 and 1.19

version 1.18, 2000/11/14 11:13:12 version 1.19, 2000/11/16 11:58:30
Line 11 Line 11
 # 7/1,7/3,7/4,7/7,7/8,7/10 Gerd Kortemeyer)  # 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,  # 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;  package Apache::lonuserstate;
   
Line 29  use Opcode; Line 30  use Opcode;
   
 my $pc;      # Package counter  my $pc;      # Package counter
 my %hash;    # The big tied hash  my %hash;    # The big tied hash
   my %parmhash;# The hash with the parameters
 my @cond;    # Array with all of the conditions  my @cond;    # Array with all of the conditions
 my $errtext; # variable with all errors  my $errtext; # variable with all errors
   
Line 252  sub traceroute { Line 254  sub traceroute {
     }      }
 }  }
   
 # ------------------------------------------ Cascading conditions, quick access  # ------------------------------ Cascading conditions, quick access, parameters
   
 sub accinit {  sub accinit {
     my ($uri,$short,$fn)=@_;      my ($uri,$short,$fn)=@_;
Line 281  sub accinit { Line 283  sub accinit {
               $captured{$expr}=$condcounter;                $captured{$expr}=$condcounter;
               $acchash{'acc.cond.'.$short.'.'.$condcounter}=$expr;                $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;      } keys %hash;
     map {      map {
  if ($_=~/^ids/) {   if ($_=~/^ids/) {
Line 316  sub accinit { Line 329  sub accinit {
     } keys %hash;      } keys %hash;
     my $courseuri=$uri;      my $courseuri=$uri;
     $courseuri=~s/^\/res\///;      $courseuri=~s/^\/res\///;
     &Apache::lonnet::delenv('(acc\.|httpref\.|resource\.parms)');      &Apache::lonnet::delenv('(acc\.|httpref\.)');
     &Apache::lonnet::appenv(%acchash,      &Apache::lonnet::appenv(%acchash,
                             "request.course.id"  => $short,                              "request.course.id"  => $short,
                             "request.course.fn"  => $fn,                              "request.course.fn"  => $fn,
Line 341  sub readmap { Line 354  sub readmap {
    unlink($fn.'.db');     unlink($fn.'.db');
    unlink($fn.'_symb.db');     unlink($fn.'_symb.db');
    unlink($fn.'.state');     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=();      %hash=();
       %parmhash=();
     $errtext='';      $errtext='';
     $pc=0;      $pc=0;
     loadmap($uri);      loadmap($uri);
Line 350  sub readmap { Line 366  sub readmap {
         &traceroute('0',$hash{'map_start_'.$uri},'&');          &traceroute('0',$hash{'map_start_'.$uri},'&');
         &accinit($uri,$short,$fn);          &accinit($uri,$short,$fn);
     }      }
     unless (untie(%hash)) {      unless ((untie(%hash)) && (untie(%parmhash))) {
       &Apache::lonnet::logthis("<font color=blue>WARNING: ".        &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                        "Could not untie coursemap $fn for $uri.</font>");                          "Could not untie coursemap $fn for $uri.</font>"); 
     }      }

Removed from v.1.18  
changed lines
  Added in v.1.19


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>