Annotation of rat/lonuserstate.pm, revision 1.119.2.1

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Construct and maintain state and binary representation of course for user
                      3: #
1.119.2.1! albertel    4: # $Id: lonuserstate.pm,v 1.119 2007/06/28 22:16:53 albertel Exp $
1.25      www         5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.26      harris41   28: ###
1.1       www        29: 
                     30: package Apache::lonuserstate;
                     31: 
1.26      harris41   32: # ------------------------------------------------- modules used by this module
1.1       www        33: use strict;
                     34: use HTML::TokeParser;
1.89      albertel   35: use Apache::lonnet;
1.114     www        36: use Apache::lonlocal;
1.26      harris41   37: use Apache::loncommon();
1.1       www        38: use GDBM_File;
1.12      www        39: use Apache::lonmsg;
1.15      www        40: use Safe;
1.21      www        41: use Safe::Hole;
1.15      www        42: use Opcode;
1.73      www        43: use Apache::lonenc;
1.96      albertel   44: use Fcntl qw(:flock);
1.114     www        45: use LONCAPA;
                     46:  
1.15      www        47: 
1.1       www        48: # ---------------------------------------------------- Globals for this package
                     49: 
                     50: my $pc;      # Package counter
                     51: my %hash;    # The big tied hash
1.19      www        52: my %parmhash;# The hash with the parameters
1.1       www        53: my @cond;    # Array with all of the conditions
                     54: my $errtext; # variable with all errors
1.116     www        55: my $retfrid; # variable with the very first RID in the course
                     56: my $retfurl; # first URL
1.29      www        57: my %randompick; # randomly picked resources
1.51      www        58: my %randompickseed; # optional seed for randomly picking resources
1.73      www        59: my %encurl; # URLs in this folder are supposed to be encrypted
                     60: my %hiddenurl; # this URL (or complete folder) is supposed to be hidden
1.61      www        61: 
                     62: # ----------------------------------- Remove version from URL and store in hash
                     63: 
                     64: sub versiontrack {
                     65:     my $uri=shift;
                     66:     if ($uri=~/\.(\d+)\.\w+$/) {
                     67: 	my $version=$1;
                     68: 	$uri=~s/\.\d+\.(\w+)$/\.$1/;
1.62      www        69:         unless ($hash{'version_'.$uri}) {
                     70: 	    $hash{'version_'.$uri}=$version;
                     71: 	}
1.61      www        72:     }
                     73:     return $uri;
                     74: }
                     75: 
                     76: # -------------------------------------------------------------- Put in version
                     77: 
                     78: sub putinversion {
                     79:     my $uri=shift;
1.93      www        80:     my $key=$env{'request.course.id'}.'_'.&Apache::lonnet::clutter($uri);
1.61      www        81:     if ($hash{'version_'.$uri}) {
                     82: 	my $version=$hash{'version_'.$uri};
1.65      www        83: 	if ($version eq 'mostrecent') { return $uri; }
1.66      www        84: 	if ($version eq &Apache::lonnet::getversion(
                     85: 			&Apache::lonnet::filelocation('',$uri))) 
                     86: 	             { return $uri; }
1.61      www        87: 	$uri=~s/\.(\w+)$/\.$version\.$1/;
                     88:     }
1.93      www        89:     &Apache::lonnet::do_cache_new('courseresversion',$key,&Apache::lonnet::declutter($uri),600);
1.61      www        90:     return $uri;
                     91: }
                     92: 
                     93: # ----------------------------------------- Processing versions file for course
                     94: 
                     95: sub processversionfile {
1.64      www        96:     my %cenv=@_;
1.61      www        97:     my %versions=&Apache::lonnet::dump('resourceversions',
                     98: 				       $cenv{'domain'},
                     99: 				       $cenv{'num'});
1.106     albertel  100:     foreach my $ver (keys(%versions)) {
                    101: 	if ($ver=~/^error\:/) { return; }
                    102: 	$hash{'version_'.$ver}=$versions{$ver};
1.61      www       103:     }
                    104: }
1.45      www       105: 
1.1       www       106: # --------------------------------------------------------- Loads map from disk
                    107: 
                    108: sub loadmap { 
                    109:     my $uri=shift;
1.114     www       110:     if ($hash{'map_pc_'.$uri}) { 
                    111: 	$errtext.=&mt('<br />Multiple use of sequence/page <tt>[_1]</tt>! The course will not function properly.',$uri);
                    112: 	return; 
                    113:     }
1.1       www       114:     $pc++;
                    115:     my $lpc=$pc;
                    116:     $hash{'map_pc_'.$uri}=$lpc;
                    117:     $hash{'map_id_'.$lpc}=$uri;
                    118: 
1.37      www       119: # Determine and check filename
1.62      www       120:     my $fn=&Apache::lonnet::filelocation('',&putinversion($uri));
1.37      www       121: 
                    122:     my $ispage=($fn=~/\.page$/);
1.1       www       123: 
1.10      www       124:     unless (($fn=~/\.sequence$/) ||
1.1       www       125:             ($fn=~/\.page$/)) { 
1.114     www       126: 	$errtext.=&mt("<br />Invalid map: <tt>[_1]</tt>",$fn);
1.98      albertel  127: 	return; 
1.1       www       128:     }
                    129: 
1.37      www       130:     my $instr=&Apache::lonnet::getfile($fn);
                    131: 
1.57      albertel  132:     unless ($instr eq -1) {
1.22      www       133: 
1.37      www       134: # Successfully got file, parse it
1.1       www       135: 
                    136:         my $parser = HTML::TokeParser->new(\$instr);
1.95      www       137: 	$parser->attr_encoded(1);
1.1       www       138:         my $token;
                    139: 
                    140:         my $linkpc=0;
                    141: 
                    142:         $fn=~/\.(\w+)$/;
                    143: 
                    144:         $hash{'map_type_'.$lpc}=$1;
                    145: 
                    146:         while ($token = $parser->get_token) {
                    147: 	    if ($token->[0] eq 'S') {
                    148:                 if ($token->[1] eq 'resource') {
                    149: # -------------------------------------------------------------------- Resource
1.92      www       150:                     if ($token->[2]->{'type'} eq 'zombie') { next; }
1.1       www       151:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    152: 
                    153:                     $hash{'kind_'.$rid}='res';
                    154:                     $hash{'title_'.$rid}=$token->[2]->{'title'};
1.61      www       155:                     my $turi=&versiontrack($token->[2]->{'src'});
                    156:                     if ($token->[2]->{'version'}) {
1.62      www       157: 			unless ($hash{'version_'.$turi}) {
                    158: 			    $hash{'version_'.$turi}=$1;
                    159: 			}
1.61      www       160: 		    }
1.83      albertel  161: 		    my $title=$token->[2]->{'title'};
                    162: 		    $title=~s/\&colon\;/\:/gs;
1.84      albertel  163: #		    my $symb=&Apache::lonnet::encode_symb($uri,
                    164: #							  $token->[2]->{'id'},
                    165: #							  $turi);
                    166: #		    &Apache::lonnet::do_cache_new('title',$symb,$title);
1.22      www       167:                     unless ($ispage) {
                    168:                         $turi=~/\.(\w+)$/;
1.26      harris41  169:                         my $embstyle=&Apache::loncommon::fileembstyle($1);
1.40      www       170:                         if ($token->[2]->{'external'} eq 'true') { # external
1.22      www       171:                             $turi=~s/^http\:\/\//\/adm\/wrapper\/ext\//;
1.40      www       172:                         } elsif ($turi=~/^\/*uploaded\//) { # uploaded
1.97      www       173: 			    if (($embstyle eq 'img') 
                    174: 				|| ($embstyle eq 'emb')
1.99      albertel  175: 				|| ($embstyle eq 'wrp')) {
1.76      albertel  176:                                 $turi='/adm/wrapper'.$turi;
1.78      albertel  177: 			    } elsif ($embstyle eq 'ssi') {
                    178: 				#do nothing with these
                    179: 			    } elsif ($turi!~/\.(sequence|page)$/) {
1.42      www       180: 				$turi='/adm/coursedocs/showdoc'.$turi;
1.40      www       181:                             }
1.70      www       182:                         } elsif ($turi=~/\S/) { # normal non-empty internal resource
1.68      www       183: 			    my $mapdir=$uri;
                    184: 			    $mapdir=~s/[^\/]+$//;
                    185: 			    $turi=&Apache::lonnet::hreflocation($mapdir,$turi);
1.99      albertel  186: 			    if (($embstyle eq 'img') 
                    187: 				|| ($embstyle eq 'emb')
                    188: 				|| ($embstyle eq 'wrp')) {
1.68      www       189: 				$turi='/adm/wrapper'.$turi;
                    190: 			    }
1.22      www       191:                         }
                    192: 		    }
1.71      www       193: # Store reverse lookup, remove query string
                    194: 		    my $idsuri=$turi;
                    195: 		    $idsuri=~s/\?.+$//;
                    196:                     if (defined($hash{'ids_'.$idsuri})) {
                    197:                         $hash{'ids_'.$idsuri}.=','.$rid;
1.1       www       198:                     } else {
1.71      www       199:                         $hash{'ids_'.$idsuri}=''.$rid;
1.1       www       200:                     }
1.53      www       201:                
1.118     raeburn   202:                     if ($turi=~/\/(syllabus|aboutme|navmaps|smppg|bulletinboard)$/) {
1.53      www       203: 			$turi.='?register=1';
                    204: 		    }
                    205: 
                    206:                     $hash{'src_'.$rid}=$turi;
1.1       www       207: 
1.22      www       208:                     if ($token->[2]->{'external'} eq 'true') {
1.1       www       209:                         $hash{'ext_'.$rid}='true:';
                    210:                     } else {
                    211:                         $hash{'ext_'.$rid}='false:';
                    212:                     }
                    213:                     if ($token->[2]->{'type'}) {
                    214: 			$hash{'type_'.$rid}=$token->[2]->{'type'};
1.2       www       215:                         if ($token->[2]->{'type'} eq 'start') {
                    216: 			    $hash{'map_start_'.$uri}="$rid";
                    217:                         }
                    218:                         if ($token->[2]->{'type'} eq 'finish') {
                    219: 			    $hash{'map_finish_'.$uri}="$rid";
                    220:                         }
1.1       www       221:                     }  else {
                    222:                         $hash{'type_'.$rid}='normal';
                    223:                     }
                    224: 
1.10      www       225:                     if (($turi=~/\.sequence$/) ||
1.1       www       226:                         ($turi=~/\.page$/)) {
1.2       www       227:                         $hash{'is_map_'.$rid}=1;
1.1       www       228:                         &loadmap($turi);
                    229:                     } 
                    230:                     
                    231:                 } elsif ($token->[1] eq 'condition') {
                    232: # ------------------------------------------------------------------- Condition
                    233: 
                    234:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    235: 
                    236:                     $hash{'kind_'.$rid}='cond';
1.119.2.1! albertel  237: 		    my $condition = $token->[2]->{'value'};
        !           238: 		    $condition =~ s/[\n\r]+/ /gs; 
        !           239:                     push(@cond, $condition);
1.2       www       240:                     $hash{'condid_'.$rid}=$#cond;
1.1       www       241:                     if ($token->[2]->{'type'}) {
1.2       www       242:                         $cond[$#cond].=':'.$token->[2]->{'type'};
1.1       www       243:                     }  else {
1.2       www       244:                         $cond[$#cond].=':normal';
1.1       www       245:                     }
                    246: 
                    247:                 } elsif ($token->[1] eq 'link') {
                    248: # ----------------------------------------------------------------------- Links
                    249: 
                    250:                     $linkpc++;
                    251:                     my $linkid=$lpc.'.'.$linkpc;
                    252: 
                    253:                     my $goesto=$lpc.'.'.$token->[2]->{'to'};
                    254:                     my $comesfrom=$lpc.'.'.$token->[2]->{'from'};
                    255:                     my $undercond=0;
                    256: 
                    257:                     if ($token->[2]->{'condition'}) {
                    258: 			$undercond=$lpc.'.'.$token->[2]->{'condition'};
                    259:                     }
                    260: 
                    261:                     $hash{'goesto_'.$linkid}=$goesto;
                    262:                     $hash{'comesfrom_'.$linkid}=$comesfrom;
                    263:                     $hash{'undercond_'.$linkid}=$undercond;
                    264: 
                    265:                     if (defined($hash{'to_'.$comesfrom})) {
                    266:                         $hash{'to_'.$comesfrom}.=','.$linkid;
                    267:                     } else {
                    268:                         $hash{'to_'.$comesfrom}=''.$linkid;
                    269:                     }
                    270:                     if (defined($hash{'from_'.$goesto})) {
                    271:                         $hash{'from_'.$goesto}.=','.$linkid;
                    272:                     } else {
                    273:                         $hash{'from_'.$goesto}=''.$linkid;
                    274:                     }
1.18      www       275:                 } elsif ($token->[1] eq 'param') {
                    276: # ------------------------------------------------------------------- Parameter
                    277: 
                    278:                     my $referid=$lpc.'.'.$token->[2]->{'to'};
1.63      albertel  279: 		    my $name=$token->[2]->{'name'};
                    280: 		    my $part;
                    281: 		    if ($name=~/^parameter_(.*)_/) {
                    282: 			$part=$1;
                    283: 		    } else {
                    284: 			$part=0;
                    285: 		    }
                    286: 		    $name=~s/^.*_([^_]*)$/$1/;
1.18      www       287:                     my $newparam=
1.114     www       288: 			&escape($token->[2]->{'type'}).':'.
                    289: 			&escape($part.'.'.$name).'='.
                    290: 			&escape($token->[2]->{'value'});
1.18      www       291:                     if (defined($hash{'param_'.$referid})) {
                    292:                         $hash{'param_'.$referid}.='&'.$newparam;
                    293:                     } else {
                    294:                         $hash{'param_'.$referid}=''.$newparam;
                    295:                     }
1.75      www       296:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*mapalias$/) {
1.28      www       297: 			$hash{'mapalias_'.$token->[2]->{'value'}}=$referid;
                    298:                     }
1.75      www       299:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*randompick$/) {
1.29      www       300: 			$randompick{$referid}=$token->[2]->{'value'};
                    301:                     }
1.75      www       302:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*randompickseed$/) {
1.119     albertel  303: 			$randompickseed{$referid}=$token->[2]->{'value'};
1.51      www       304:                     }
1.75      www       305:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*encrypturl$/) {
1.74      www       306: 			if ($token->[2]->{'value'}=~/^yes$/i) {
                    307: 			    $encurl{$referid}=1;
                    308: 			}
1.73      www       309:                     }
1.75      www       310:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*hiddenresource$/) {
1.74      www       311: 			if ($token->[2]->{'value'}=~/^yes$/i) {
                    312: 			    $hiddenurl{$referid}=1;
                    313: 			}
1.73      www       314:                     }
1.1       www       315:                 } 
1.85      albertel  316: 		
1.1       www       317:             }
                    318:         }
                    319: 
                    320:     } else {
1.114     www       321:         $errtext.=&mt('<br />Map not loaded: The file <tt>[_1]</tt> does not exist.',$fn);
1.1       www       322:     }
                    323: }
                    324: 
1.3       www       325: # --------------------------------------------------------- Simplify expression
                    326: 
                    327: sub simplify {
1.85      albertel  328:     my $expression=shift;
1.101     albertel  329: # (0&1) = 1
1.105     albertel  330:     $expression=~s/\(0\&([_\.\d]+)\)/$1/g;
1.3       www       331: # (8)=8
1.105     albertel  332:     $expression=~s/\(([_\.\d]+)\)/$1/g;
1.3       www       333: # 8&8=8
1.105     albertel  334:     $expression=~s/([^_\.\d])([_\.\d]+)\&\2([^_\.\d])/$1$2$3/g;
1.3       www       335: # 8|8=8
1.105     albertel  336:     $expression=~s/([^_\.\d])([_\.\d]+)\|\2([^_\.\d])/$1$2$3/g;
1.3       www       337: # (5&3)&4=5&3&4
1.105     albertel  338:     $expression=~s/\(([_\.\d]+)((?:\&[_\.\d]+)+)\)\&([_\.\d]+[^_\.\d])/$1$2\&$3/g;
1.3       www       339: # (((5&3)|(4&6)))=((5&3)|(4&6))
1.105     albertel  340:     $expression=~
                    341: 	s/\((\(\([_\.\d]+(?:\&[_\.\d]+)*\)(?:\|\([_\.\d]+(?:\&[_\.\d]+)*\))+\))\)/$1/g;
1.3       www       342: # ((5&3)|(4&6))|(1&2)=(5&3)|(4&6)|(1&2)
1.85      albertel  343:     $expression=~
1.105     albertel  344: 	s/\((\([_\.\d]+(?:\&[_\.\d]+)*\))((?:\|\([_\.\d]+(?:\&[_\.\d]+)*\))+)\)\|(\([_\.\d]+(?:\&[_\.\d]+)*\))/\($1$2\|$3\)/g;
1.85      albertel  345:     return $expression;
1.3       www       346: }
                    347: 
1.2       www       348: # -------------------------------------------------------- Build condition hash
                    349: 
                    350: sub traceroute {
1.77      www       351:     my ($sofar,$rid,$beenhere,$encflag,$hdnflag)=@_;
1.81      albertel  352:     my $newsofar=$sofar=simplify($sofar);
1.2       www       353:     unless ($beenhere=~/\&$rid\&/) {
1.85      albertel  354: 	$beenhere.=$rid.'&';  
                    355: 	my ($mapid,$resid)=split(/\./,$rid);
                    356: 	my $symb=&Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},$resid,$hash{'src_'.$rid});
                    357: 	my $hidden=&Apache::lonnet::EXT('resource.0.hiddenresource',$symb);
1.91      albertel  358: 
1.90      albertel  359: 	if ($hdnflag || lc($hidden) eq 'yes') {
                    360: 	    $hiddenurl{$rid}=1;
1.91      albertel  361: 	}
                    362: 	if (!$hdnflag && lc($hidden) eq 'no') {
1.90      albertel  363: 	    delete($hiddenurl{$rid});
                    364: 	}
1.91      albertel  365: 
1.85      albertel  366: 	my $encrypt=&Apache::lonnet::EXT('resource.0.encrypturl',$symb);
                    367: 	if ($encflag || lc($encrypt) eq 'yes') { $encurl{$rid}=1; }
1.116     www       368: 	if (($retfrid eq '') && ($hash{'src_'.$rid})
1.85      albertel  369: 	    && ($hash{'src_'.$rid}!~/\.sequence$/)) {
1.116     www       370: 	    $retfrid=$rid;
1.85      albertel  371: 	}
                    372: 	if (defined($hash{'conditions_'.$rid})) {
                    373: 	    $hash{'conditions_'.$rid}=simplify(
1.103     albertel  374:            '('.$hash{'conditions_'.$rid}.')|('.$sofar.')');
1.85      albertel  375: 	} else {
                    376: 	    $hash{'conditions_'.$rid}=$sofar;
                    377: 	}
1.107     albertel  378: 
                    379: 	# if the expression is just the 0th condition keep it
                    380: 	# otherwise leave a pointer to this condition expression
                    381: 	$newsofar = ($sofar eq '0') ? $sofar : '_'.$rid;
                    382: 
1.85      albertel  383: 	if (defined($hash{'is_map_'.$rid})) {
                    384: 	    if (defined($hash{'map_start_'.$hash{'src_'.$rid}})) {
                    385: 		$sofar=$newsofar=
                    386: 		    &traceroute($sofar,
                    387: 				$hash{'map_start_'.$hash{'src_'.$rid}},'&',
                    388: 				$encflag || $encurl{$rid},
                    389: 				$hdnflag || $hiddenurl{$rid});
                    390: 	    }
                    391: 	}
                    392: 	if (defined($hash{'to_'.$rid})) {
1.106     albertel  393: 	    foreach my $id (split(/\,/,$hash{'to_'.$rid})) {
1.2       www       394: 		my $further=$sofar;
1.106     albertel  395:                 if ($hash{'undercond_'.$id}) {
                    396: 		    if (defined($hash{'condid_'.$hash{'undercond_'.$id}})) {
1.105     albertel  397: 			$further=simplify('('.'_'.$rid.')&('.
1.106     albertel  398: 					  $hash{'condid_'.$hash{'undercond_'.$id}}.')');
1.85      albertel  399: 		    } else {
1.114     www       400: 			$errtext.=&mt('<br />Undefined condition ID: [_1]',$hash{'undercond_'.$id});
1.85      albertel  401: 		    }
1.2       www       402:                 }
1.106     albertel  403:                 $newsofar=&traceroute($further,$hash{'goesto_'.$id},$beenhere,
1.81      albertel  404: 				      $encflag,$hdnflag);
1.85      albertel  405: 	    }
                    406: 	}
1.2       www       407:     }
1.81      albertel  408:     return $newsofar;
1.2       www       409: }
1.1       www       410: 
1.19      www       411: # ------------------------------ Cascading conditions, quick access, parameters
1.4       www       412: 
                    413: sub accinit {
                    414:     my ($uri,$short,$fn)=@_;
                    415:     my %acchash=();
                    416:     my %captured=();
                    417:     my $condcounter=0;
1.5       www       418:     $acchash{'acc.cond.'.$short.'.0'}=0;
1.104     albertel  419:     foreach my $key (keys(%hash)) {
                    420: 	if ($key=~/^conditions/) {
                    421: 	    my $expr=$hash{$key};
1.109     albertel  422: 	    # try to find and factor out common sub-expressions
1.105     albertel  423: 	    foreach my $sub ($expr=~m/(\(\([_\.\d]+(?:\&[_\.\d]+)+\)(?:\|\([_\.\d]+(?:\&[_\.\d]+)+\))+\))/g) {
1.104     albertel  424: 		my $orig=$sub;
1.109     albertel  425: 
                    426: 		my ($factor) = ($sub=~/\(\(([_\.\d]+\&(:?[_\.\d]+\&)*)(?:[_\.\d]+\&*)+\)(?:\|\(\1(?:[_\.\d]+\&*)+\))+\)/);
                    427: 		next if (!defined($factor));
                    428: 
                    429: 		$sub=~s/\Q$factor\E//g;
1.85      albertel  430: 		$sub=~s/^\(/\($factor\(/;
                    431: 		$sub.=')';
                    432: 		$sub=simplify($sub);
1.109     albertel  433: 		$expr=~s/\Q$orig\E/$sub/;
1.85      albertel  434: 	    }
1.104     albertel  435: 	    $hash{$key}=$expr;
1.85      albertel  436: 	    unless (defined($captured{$expr})) {
                    437: 		$condcounter++;
                    438: 		$captured{$expr}=$condcounter;
                    439: 		$acchash{'acc.cond.'.$short.'.'.$condcounter}=$expr;
                    440: 	    } 
1.104     albertel  441: 	} elsif ($key=~/^param_(\d+)\.(\d+)/) {
1.86      albertel  442: 	    my $prefix=&Apache::lonnet::encode_symb($hash{'map_id_'.$1},$2,
                    443: 						    $hash{'src_'.$1.'.'.$2});
1.104     albertel  444: 	    foreach my $param (split(/\&/,$hash{$key})) {
                    445: 		my ($typename,$value)=split(/\=/,$param);
1.85      albertel  446: 		my ($type,$name)=split(/\:/,$typename);
1.114     www       447: 		$parmhash{$prefix.'.'.&unescape($name)}=
                    448: 		    &unescape($value);
                    449: 		$parmhash{$prefix.'.'.&unescape($name).'.type'}=
                    450: 		    &unescape($type);
1.85      albertel  451: 	    }
                    452: 	}
1.26      harris41  453:     }
1.104     albertel  454:     foreach my $key (keys(%hash)) {
                    455: 	if ($key=~/^ids/) {
                    456: 	    foreach my $resid (split(/\,/,$hash{$key})) {
1.85      albertel  457: 		my $uri=$hash{'src_'.$resid};
1.100     albertel  458: 		my ($uripath,$urifile) =
                    459: 		    &Apache::lonnet::split_uri_for_cond($uri);
1.85      albertel  460: 		if ($uripath) {
                    461: 		    my $uricond='0';
                    462: 		    if (defined($hash{'conditions_'.$resid})) {
                    463: 			$uricond=$captured{$hash{'conditions_'.$resid}};
                    464: 		    }
                    465: 		    if (defined($acchash{'acc.res.'.$short.'.'.$uripath})) {
                    466: 			if ($acchash{'acc.res.'.$short.'.'.$uripath}=~
                    467: 			    /(\&\Q$urifile\E\:[^\&]*)/) {
                    468: 			    my $replace=$1;
                    469: 			    my $regexp=$replace;
                    470: 			    #$regexp=~s/\|/\\\|/g;
1.105     albertel  471: 			    $acchash{'acc.res.'.$short.'.'.$uripath} =~
1.104     albertel  472: 				s/\Q$regexp\E/$replace\|$uricond/;
1.85      albertel  473: 			} else {
                    474: 			    $acchash{'acc.res.'.$short.'.'.$uripath}.=
                    475: 				$urifile.':'.$uricond.'&';
                    476: 			}
                    477: 		    } else {
                    478: 			$acchash{'acc.res.'.$short.'.'.$uripath}=
                    479: 			    '&'.$urifile.':'.$uricond.'&';
                    480: 		    }
                    481: 		} 
                    482: 	    }
                    483: 	}
1.26      harris41  484:     }
1.24      www       485:     $acchash{'acc.res.'.$short.'.'}='&:0&';
1.8       www       486:     my $courseuri=$uri;
                    487:     $courseuri=~s/^\/res\///;
1.19      www       488:     &Apache::lonnet::delenv('(acc\.|httpref\.)');
1.79      albertel  489:     &Apache::lonnet::appenv(%acchash);
1.4       www       490: }
                    491: 
1.73      www       492: # ---------------- Selectively delete from randompick maps and hidden url parms
1.29      www       493: 
1.73      www       494: sub hiddenurls {
1.31      www       495:     my $randomoutentry='';
1.29      www       496:     foreach my $rid (keys %randompick) {
                    497:         my $rndpick=$randompick{$rid};
                    498:         my $mpc=$hash{'map_pc_'.$hash{'src_'.$rid}};
                    499: # ------------------------------------------- put existing resources into array
                    500:         my @currentrids=();
1.106     albertel  501:         foreach my $key (sort(keys(%hash))) {
                    502: 	    if ($key=~/^src_($mpc\.\d+)/) {
1.29      www       503: 		if ($hash{'src_'.$1}) { push @currentrids, $1; }
                    504:             }
                    505:         }
1.50      albertel  506: 	# rids are number.number and we want to numercially sort on 
                    507:         # the second number
                    508: 	@currentrids=sort {
                    509: 	    my (undef,$aid)=split(/\./,$a);
                    510: 	    my (undef,$bid)=split(/\./,$b);
                    511: 	    $aid <=> $bid;
                    512: 	} @currentrids;
1.29      www       513:         next if ($#currentrids<$rndpick);
                    514: # -------------------------------- randomly eliminate the ones that should stay
1.50      albertel  515: 	my (undef,$id)=split(/\./,$rid);
1.51      www       516:         if ($randompickseed{$rid}) { $id=$randompickseed{$rid}; }
1.50      albertel  517: 	my $rndseed=&Apache::lonnet::rndseed($id); # use id instead of symb
1.58      albertel  518: 	&Apache::lonnet::setup_random_from_rndseed($rndseed);
1.50      albertel  519: 	my @whichids=&Math::Random::random_permuted_index($#currentrids+1);
                    520:         for (my $i=1;$i<=$rndpick;$i++) { $currentrids[$whichids[$i]]=''; }
                    521: 	#&Apache::lonnet::logthis("$id,$rndseed,".join(':',@whichids));
1.29      www       522: # -------------------------------------------------------- delete the leftovers
                    523:         for (my $k=0; $k<=$#currentrids; $k++) {
                    524:             if ($currentrids[$k]) {
                    525: 		$hash{'randomout_'.$currentrids[$k]}=1;
1.32      www       526:                 my ($mapid,$resid)=split(/\./,$currentrids[$k]);
                    527:                 $randomoutentry.='&'.
1.86      albertel  528: 		    &Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},
                    529: 						 $resid,
                    530: 						 $hash{'src_'.$currentrids[$k]}
                    531: 						 ).'&';
1.29      www       532:             }
                    533:         }
1.31      www       534:     }
1.73      www       535: # ------------------------------ take care of explicitly hidden urls or folders
                    536:     foreach my $rid (keys %hiddenurl) {
                    537: 	$hash{'randomout_'.$rid}=1;
                    538: 	my ($mapid,$resid)=split(/\./,$rid);
                    539: 	$randomoutentry.='&'.
1.86      albertel  540: 	    &Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},$resid,
                    541: 					 $hash{'src_'.$rid}).'&';
1.73      www       542:     }
                    543: # --------------------------------------- append randomout entry to environment
1.31      www       544:     if ($randomoutentry) {
                    545: 	&Apache::lonnet::appenv('acc.randomout' => $randomoutentry);
1.29      www       546:     }
                    547: }
                    548: 
1.1       www       549: # ---------------------------------------------------- Read map and all submaps
                    550: 
                    551: sub readmap {
1.85      albertel  552:     my $short=shift;
                    553:     $short=~s/^\///;
1.108     albertel  554:     my %cenv=&Apache::lonnet::coursedescription($short,{'freshen_cache'=>1});
1.85      albertel  555:     my $fn=$cenv{'fn'};
                    556:     my $uri;
                    557:     $short=~s/\//\_/g;
                    558:     unless ($uri=$cenv{'url'}) { 
                    559: 	&Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    560: 				 "Could not load course $short.</font>"); 
1.114     www       561: 	return ('',&mt('No course data available.'));;
1.85      albertel  562:     }
                    563:     @cond=('true:normal');
1.96      albertel  564: 
                    565:     open(LOCKFILE,">$fn.db.lock");
                    566:     my $lock=0;
                    567:     if (flock(LOCKFILE,LOCK_EX|LOCK_NB)) {
                    568: 	$lock=1;
                    569: 	unlink($fn.'.db');
                    570: 	unlink($fn.'_symb.db');
                    571: 	unlink($fn.'.state');
                    572: 	unlink($fn.'parms.db');
                    573:     }
1.85      albertel  574:     undef %randompick;
                    575:     undef %hiddenurl;
                    576:     undef %encurl;
1.116     www       577:     $retfrid='';
1.96      albertel  578:     if ($lock && (tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT(),0640)) &&
1.85      albertel  579: 	(tie(%parmhash,'GDBM_File',$fn.'_parms.db',&GDBM_WRCREAT(),0640))) {
                    580: 	%hash=();
                    581: 	%parmhash=();
                    582: 	$errtext='';
                    583: 	$pc=0;
                    584: 	&processversionfile(%cenv);
                    585: 	my $furi=&Apache::lonnet::clutter($uri);
                    586: 	$hash{'src_0.0'}=&versiontrack($furi);
                    587: 	$hash{'title_0.0'}=&Apache::lonnet::metadata($uri,'title');
                    588: 	$hash{'ids_'.$furi}='0.0';
                    589: 	$hash{'is_map_0.0'}=1;
                    590: 	loadmap($uri);
                    591: 	if (defined($hash{'map_start_'.$uri})) {
                    592: 	    &Apache::lonnet::appenv("request.course.id"  => $short,
                    593: 				    "request.course.fn"  => $fn,
                    594: 				    "request.course.uri" => $uri);
1.116     www       595: 	    $env{'request.course.id'}=$short;
1.85      albertel  596: 	    &traceroute('0',$hash{'map_start_'.$uri},'&');
                    597: 	    &accinit($uri,$short,$fn);
                    598: 	    &hiddenurls();
                    599: 	}
1.62      www       600: # ------------------------------------------------------- Put versions into src
1.106     albertel  601: 	foreach my $key (keys(%hash)) {
1.110     albertel  602: 	    if ($key=~/^src_/) {
1.106     albertel  603: 		$hash{$key}=&putinversion($hash{$key});
1.110     albertel  604: 	    } elsif ($key =~ /^(map_(?:start|finish|pc)_)(.*)/) {
                    605: 		my ($type, $url) = ($1,$2);
                    606: 		my $value = $hash{$key};
                    607: 		$hash{$type.&putinversion($url)}=$value;
1.85      albertel  608: 	    }
1.61      www       609: 	}
1.74      www       610: # ---------------------------------------------------------------- Encrypt URLs
1.106     albertel  611: 	foreach my $id (keys(%encurl)) {
                    612: #	    $hash{'src_'.$id}=&Apache::lonenc::encrypted($hash{'src_'.$id});
                    613: 	    $hash{'encrypted_'.$id}=1;
1.85      albertel  614: 	}
1.74      www       615: # ----------------------------------------------- Close hashes to finally store
                    616: # --------------------------------- Routine must pass this point, no early outs
1.116     www       617: 	$hash{'first_rid'}=$retfrid;
                    618: 	my ($mapid,$resid)=split(/\./,$retfrid);
                    619: 	$hash{'first_mapurl'}=$hash{'map_id_'.$mapid};
                    620: 	my $symb=&Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},$resid,$hash{'src_'.$retfrid});
                    621: 	$retfurl=&add_get_param($hash{'src_'.$retfrid},{ 'symb' => $symb });
                    622: 	if ($hash{'encrypted_'.$retfrid}) {
                    623: 	    $retfurl=&Apache::lonenc::encrypted($retfurl,(&Apache::lonnet::allowed('adv') ne 'F'));
                    624: 	}
1.94      albertel  625: 	$hash{'first_url'}=$retfurl;
1.85      albertel  626: 	unless ((untie(%hash)) && (untie(%parmhash))) {
                    627: 	    &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    628: 				     "Could not untie coursemap $fn for $uri.</font>"); 
                    629: 	}
                    630: # ---------------------------------------------------- Store away initial state
                    631: 	{
                    632: 	    my $cfh;
1.88      raeburn   633: 	    if (open($cfh,">$fn.state")) {
1.85      albertel  634: 		print $cfh join("\n",@cond);
                    635: 	    } else {
                    636: 		&Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    637: 					 "Could not write statemap $fn for $uri.</font>"); 
                    638: 	    }
1.96      albertel  639: 	}
                    640: 	flock(LOCKFILE,LOCK_UN);
                    641: 	close(LOCKFILE);
1.85      albertel  642:     } else {
1.87      albertel  643: 	# if we are here it is likely because we are already trying to 
                    644: 	# initialize the course in another child, busy wait trying to 
                    645: 	# tie the hashes for the next 90 seconds, if we succeed forward 
                    646: 	# them on to navmaps, if we fail, throw up the Could not init 
                    647: 	# course screen
1.96      albertel  648: 	if ($lock) {
                    649: 	    # Got the lock but not the DB files
                    650: 	    flock(LOCKFILE,LOCK_UN);
                    651: 	}
1.87      albertel  652: 	untie(%hash);
                    653: 	untie(%parmhash);
1.85      albertel  654: 	&Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    655: 				 "Could not tie coursemap $fn for $uri.</font>"); 
1.87      albertel  656: 	my $i=0;
                    657: 	while($i<90) {
                    658: 	    $i++;
                    659: 	    sleep(1);
1.96      albertel  660: 	    if (flock(LOCKFILE,LOCK_EX|LOCK_NB) &&
                    661: 		(tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640))) {
1.87      albertel  662: 		if (tie(%parmhash,'GDBM_File',$fn.'_parms.db',&GDBM_READER(),0640)) {
                    663: 		    $retfurl='/adm/navmaps';
                    664: 		    &Apache::lonnet::appenv("request.course.id"  => $short,
                    665: 					    "request.course.fn"  => $fn,
                    666: 					    "request.course.uri" => $uri);
                    667: 		    untie(%hash);
                    668: 		    untie(%parmhash);
                    669: 		    last;
                    670: 		}
                    671: 	    }
                    672: 	    untie(%hash);
                    673: 	    untie(%parmhash);
                    674: 	}
1.96      albertel  675: 	flock(LOCKFILE,LOCK_UN);
                    676: 	close(LOCKFILE);
1.1       www       677:     }
1.89      albertel  678:     &Apache::lonmsg::author_res_msg($env{'request.course.uri'},$errtext);
1.46      www       679: # ------------------------------------------------- Check for critical messages
                    680: 
1.89      albertel  681:     my @what=&Apache::lonnet::dump('critical',$env{'user.domain'},
                    682: 				   $env{'user.name'});
1.46      www       683:     if ($what[0]) {
                    684: 	if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
                    685: 	    $retfurl='/adm/email?critical=display';
                    686:         }
                    687:     }
1.85      albertel  688:     return ($retfurl,$errtext);
1.1       www       689: }
1.15      www       690: 
                    691: # ------------------------------------------------------- Evaluate state string
                    692: 
                    693: sub evalstate {
1.89      albertel  694:     my $fn=$env{'request.course.fn'}.'.state';
1.80      albertel  695:     my $state='';
1.15      www       696:     if (-e $fn) {
1.80      albertel  697: 	my @conditions=();
                    698: 	{
1.115     raeburn   699: 	    open(my $fh,"<$fn");
1.80      albertel  700: 	    @conditions=<$fh>;
1.115     raeburn   701:             close($fh);
1.80      albertel  702: 	}  
                    703: 	my $safeeval = new Safe;
                    704: 	my $safehole = new Safe::Hole;
                    705: 	$safeeval->permit("entereval");
                    706: 	$safeeval->permit(":base_math");
                    707: 	$safeeval->deny(":base_io");
                    708: 	$safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
                    709: 	foreach my $line (@conditions) {
                    710: 	    chomp($line);
                    711: 	    my ($condition,$weight)=split(/\:/,$line);
                    712: 	    if ($safeeval->reval($condition)) {
                    713: 		if ($weight eq 'force') {
                    714: 		    $state.='3';
                    715: 		} else {
                    716: 		    $state.='2';
                    717: 		}
                    718: 	    } else {
                    719: 		if ($weight eq 'stop') {
                    720: 		    $state.='0';
                    721: 		} else {
                    722: 		    $state.='1';
                    723: 		}
                    724: 	    }
                    725: 	}
1.15      www       726:     }
1.89      albertel  727:     &Apache::lonnet::appenv('user.state.'.$env{'request.course.id'} => $state);
1.15      www       728:     return $state;
                    729: }
                    730: 
1.1       www       731: 1;
                    732: __END__
                    733: 
1.26      harris41  734: =head1 NAME
                    735: 
                    736: Apache::lonuserstate - Construct and maintain state and binary representation
                    737: of course for user
                    738: 
                    739: =head1 SYNOPSIS
                    740: 
                    741: Invoked by lonroles.pm.
                    742: 
                    743: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    744: 
                    745: =head1 INTRODUCTION
                    746: 
                    747: This module constructs and maintains state and binary representation
                    748: of course for user.
                    749: 
                    750: This is part of the LearningOnline Network with CAPA project
                    751: described at http://www.lon-capa.org.
                    752: 
                    753: =head1 HANDLER SUBROUTINE
                    754: 
                    755: There is no handler subroutine.
                    756: 
                    757: =head1 OTHER SUBROUTINES
                    758: 
                    759: =over 4
                    760: 
                    761: =item *
                    762: 
                    763: loadmap() : Loads map from disk
                    764: 
                    765: =item *
                    766: 
                    767: simplify() : Simplify expression
                    768: 
                    769: =item *
                    770: 
                    771: traceroute() : Build condition hash
                    772: 
                    773: =item *
                    774: 
                    775: accinit() : Cascading conditions, quick access, parameters
1.1       www       776: 
1.26      harris41  777: =item *
1.1       www       778: 
1.26      harris41  779: readmap() : Read map and all submaps
1.1       www       780: 
1.26      harris41  781: =item *
1.1       www       782: 
1.26      harris41  783: evalstate() : Evaluate state string
1.1       www       784: 
1.26      harris41  785: =back
1.1       www       786: 
1.26      harris41  787: =cut

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