Annotation of rat/lonuserstate.pm, revision 1.27

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Construct and maintain state and binary representation of course for user
                      3: #
1.27    ! www         4: # $Id: lonuserstate.pm,v 1.26 2001/12/17 00:57:59 harris41 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.1       www        28: # (Server for RAT Maps
                     29: #
                     30: # (Edit Handler for RAT Maps
                     31: # (TeX Content Handler
                     32: #
1.26      harris41   33: # YEAR=2000
1.1       www        34: # 05/29/00,05/30 Gerd Kortemeyer)
                     35: # 7/1 Gerd Kortemeyer)
                     36: # 7/1,7/3,7/4,7/7,7/8,7/10 Gerd Kortemeyer)
                     37: #
1.9       www        38: # 7/15,7/17,7/18,8/1,8/2,8/4,8/5,8/21,8/22,8/23,8/30,
1.19      www        39: # 9/2,9/4,9/29,9/30,10/2,10/11,10/30,10/31,
1.22      www        40: # 11/1,11/2,11/14,11/16,11/22,12/28,
1.26      harris41   41: # YEAR=2001
1.24      www        42: # 07/05/01,08/30,08/31 Gerd Kortemeyer
1.26      harris41   43: # 12/16 Scott Harrison
                     44: #
                     45: ###
1.1       www        46: 
                     47: package Apache::lonuserstate;
                     48: 
1.26      harris41   49: # ------------------------------------------------- modules used by this module
1.1       www        50: use strict;
                     51: use Apache::Constants qw(:common :http);
                     52: use Apache::File;
                     53: use HTML::TokeParser;
                     54: use Apache::lonnet();
1.26      harris41   55: use Apache::loncommon();
1.1       www        56: use GDBM_File;
1.12      www        57: use Apache::lonmsg;
1.15      www        58: use Safe;
1.21      www        59: use Safe::Hole;
1.15      www        60: use Opcode;
                     61: 
1.1       www        62: # ---------------------------------------------------- Globals for this package
                     63: 
                     64: my $pc;      # Package counter
                     65: my %hash;    # The big tied hash
1.19      www        66: my %parmhash;# The hash with the parameters
1.1       www        67: my @cond;    # Array with all of the conditions
                     68: my $errtext; # variable with all errors
1.21      www        69: my $retfurl; # variable with the very first URL in the course
1.1       www        70: 
                     71: # --------------------------------------------------------- Loads map from disk
                     72: 
                     73: sub loadmap { 
                     74:     my $uri=shift;
                     75:     if ($hash{'map_pc_'.$uri}) { return OK; }
                     76: 
                     77:     $pc++;
                     78:     my $lpc=$pc;
                     79:     $hash{'map_pc_'.$uri}=$lpc;
                     80:     $hash{'map_id_'.$lpc}=$uri;
                     81: 
                     82:     my $fn='/home/httpd/html'.$uri;
                     83: 
1.10      www        84:     unless (($fn=~/\.sequence$/) ||
1.1       www        85:             ($fn=~/\.page$/)) { 
                     86:        $errtext.="Invalid map: $fn\n";
                     87:        return OK; 
                     88:     }
                     89: 
1.22      www        90:     my $ispage=($fn=~/\.page$/);
                     91: 
1.1       www        92:     unless (-e $fn) {
                     93: 	my $returned=Apache::lonnet::repcopy($fn);
                     94:         unless ($returned eq OK) {
                     95:            $errtext.="Could not import: $fn - ";
                     96:            if ($returned eq HTTP_SERVICE_UNAVAILABLE) {
                     97: 	      $errtext.="Server unavailable\n";
                     98:            }
                     99:            if ($returned eq HTTP_NOT_FOUND) {
                    100: 	      $errtext.="File not found\n";
                    101:            }
                    102:            if ($returned eq FORBIDDEN) {
                    103: 	      $errtext.="Access forbidden\n";
                    104:            }
                    105:            return OK;
                    106:        }
                    107:     }
                    108: 
                    109:     if (-e $fn) {
                    110:         my @content;
                    111:         {
                    112: 	    my $fh=Apache::File->new($fn);
                    113:             @content=<$fh>;
                    114:         }
                    115:         my $instr=join('',@content);
                    116:         my $parser = HTML::TokeParser->new(\$instr);
                    117:         my $token;
                    118: 
                    119:         my $linkpc=0;
                    120: 
                    121:         $fn=~/\.(\w+)$/;
                    122: 
                    123:         $hash{'map_type_'.$lpc}=$1;
                    124: 
                    125:         while ($token = $parser->get_token) {
                    126: 	    if ($token->[0] eq 'S') {
                    127:                 if ($token->[1] eq 'resource') {
                    128: # -------------------------------------------------------------------- Resource
                    129: 
                    130:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    131: 
                    132:                     $hash{'kind_'.$rid}='res';
                    133:                     $hash{'title_'.$rid}=$token->[2]->{'title'};
                    134:                     my $turi=$token->[2]->{'src'};
1.22      www       135:                     unless ($ispage) {
                    136:                         $turi=~/\.(\w+)$/;
1.26      harris41  137:                         my $embstyle=&Apache::loncommon::fileembstyle($1);
1.22      www       138:                         if ($token->[2]->{'external'} eq 'true') {
                    139:                             $turi=~s/^http\:\/\//\/adm\/wrapper\/ext\//;
                    140:                         } else {
1.26      harris41  141:                            my $embstyle=&Apache::loncommon::fileembstyle($1);
1.22      www       142:                            if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
                    143: 			       $turi='/adm/wrapper'.$turi;
                    144:                            }
                    145:                         }
                    146: 		    }
1.1       www       147:                     $hash{'src_'.$rid}=$turi;
                    148: 
                    149:                     if (defined($hash{'ids_'.$turi})) {
                    150:                         $hash{'ids_'.$turi}.=','.$rid;
                    151:                     } else {
                    152:                         $hash{'ids_'.$turi}=''.$rid;
                    153:                     }
                    154: 
1.22      www       155:                     if ($token->[2]->{'external'} eq 'true') {
1.1       www       156:                         $hash{'ext_'.$rid}='true:';
                    157:                     } else {
                    158:                         $hash{'ext_'.$rid}='false:';
                    159:                     }
                    160:                     if ($token->[2]->{'type'}) {
                    161: 			$hash{'type_'.$rid}=$token->[2]->{'type'};
1.2       www       162:                         if ($token->[2]->{'type'} eq 'start') {
                    163: 			    $hash{'map_start_'.$uri}="$rid";
                    164:                         }
                    165:                         if ($token->[2]->{'type'} eq 'finish') {
                    166: 			    $hash{'map_finish_'.$uri}="$rid";
                    167:                         }
1.1       www       168:                     }  else {
                    169:                         $hash{'type_'.$rid}='normal';
                    170:                     }
                    171: 
1.10      www       172:                     if (($turi=~/\.sequence$/) ||
1.1       www       173:                         ($turi=~/\.page$/)) {
1.2       www       174:                         $hash{'is_map_'.$rid}=1;
1.1       www       175:                         &loadmap($turi);
                    176:                     } 
                    177:                     
                    178:                 } elsif ($token->[1] eq 'condition') {
                    179: # ------------------------------------------------------------------- Condition
                    180: 
                    181:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    182: 
                    183:                     $hash{'kind_'.$rid}='cond';
1.2       www       184:                     $cond[$#cond+1]=$token->[2]->{'value'};
                    185:                     $hash{'condid_'.$rid}=$#cond;
1.1       www       186:                     if ($token->[2]->{'type'}) {
1.2       www       187:                         $cond[$#cond].=':'.$token->[2]->{'type'};
1.1       www       188:                     }  else {
1.2       www       189:                         $cond[$#cond].=':normal';
1.1       www       190:                     }
                    191: 
                    192:                 } elsif ($token->[1] eq 'link') {
                    193: # ----------------------------------------------------------------------- Links
                    194: 
                    195:                     $linkpc++;
                    196:                     my $linkid=$lpc.'.'.$linkpc;
                    197: 
                    198:                     my $goesto=$lpc.'.'.$token->[2]->{'to'};
                    199:                     my $comesfrom=$lpc.'.'.$token->[2]->{'from'};
                    200:                     my $undercond=0;
                    201: 
                    202:                     if ($token->[2]->{'condition'}) {
                    203: 			$undercond=$lpc.'.'.$token->[2]->{'condition'};
                    204:                     }
                    205: 
                    206:                     $hash{'goesto_'.$linkid}=$goesto;
                    207:                     $hash{'comesfrom_'.$linkid}=$comesfrom;
                    208:                     $hash{'undercond_'.$linkid}=$undercond;
                    209: 
                    210:                     if (defined($hash{'to_'.$comesfrom})) {
                    211:                         $hash{'to_'.$comesfrom}.=','.$linkid;
                    212:                     } else {
                    213:                         $hash{'to_'.$comesfrom}=''.$linkid;
                    214:                     }
                    215:                     if (defined($hash{'from_'.$goesto})) {
                    216:                         $hash{'from_'.$goesto}.=','.$linkid;
                    217:                     } else {
                    218:                         $hash{'from_'.$goesto}=''.$linkid;
                    219:                     }
1.18      www       220:                 } elsif ($token->[1] eq 'param') {
                    221: # ------------------------------------------------------------------- Parameter
                    222: 
                    223:                     my $referid=$lpc.'.'.$token->[2]->{'to'};
1.20      www       224:                     my $part=$token->[2]->{'part'};
                    225:                     unless ($part) { $part=0; }
1.18      www       226:                     my $newparam=
                    227: 			&Apache::lonnet::escape($token->[2]->{'type'}).':'.
1.20      www       228: 			&Apache::lonnet::escape($part.'.'.
                    229:                          $token->[2]->{'name'}).'='.
1.18      www       230: 			&Apache::lonnet::escape($token->[2]->{'value'});
                    231:                     if (defined($hash{'param_'.$referid})) {
                    232:                         $hash{'param_'.$referid}.='&'.$newparam;
                    233:                     } else {
                    234:                         $hash{'param_'.$referid}=''.$newparam;
                    235:                     }
                    236: 
1.1       www       237:                 } 
                    238: 
                    239:             }
                    240:         }
                    241: 
                    242:     } else {
                    243:         $errtext.='Map not loaded: The file does not exist. ';
                    244:     }
                    245: }
                    246: 
1.3       www       247: # --------------------------------------------------------- Simplify expression
                    248: 
                    249: sub simplify {
                    250:    my $expression=shift;
                    251: # (8)=8
                    252:    $expression=~s/\((\d+)\)/$1/g;
                    253: # 8&8=8
1.7       www       254:    $expression=~s/(\D)(\d+)\&\2(\D)/$1$2$3/g;
1.3       www       255: # 8|8=8
1.7       www       256:    $expression=~s/(\D)(\d+)\|\2(\D)/$1$2$3/g;
1.3       www       257: # (5&3)&4=5&3&4
1.7       www       258:    $expression=~s/\((\d+)((?:\&\d+)+)\)\&(\d+\D)/$1$2\&$3/g;
1.3       www       259: # (((5&3)|(4&6)))=((5&3)|(4&6))
                    260:    $expression=~
                    261:        s/\((\(\(\d+(?:\&\d+)*\)(?:\|\(\d+(?:\&\d+)*\))+\))\)/$1/g;
                    262: # ((5&3)|(4&6))|(1&2)=(5&3)|(4&6)|(1&2)
                    263:    $expression=~
                    264:        s/\((\(\d+(?:\&\d+)*\))((?:\|\(\d+(?:\&\d+)*\))+)\)\|(\(\d+(?:\&\d+)*\))/\($1$2\|$3\)/g;
                    265:    return $expression;
                    266: }
                    267: 
1.2       www       268: # -------------------------------------------------------- Build condition hash
                    269: 
                    270: sub traceroute {
1.3       www       271:     my ($sofar,$rid,$beenhere)=@_;
                    272:     $sofar=simplify($sofar);
1.2       www       273:     unless ($beenhere=~/\&$rid\&/) {
                    274:        $beenhere.=$rid.'&';  
1.21      www       275:        if ($retfurl eq '') {
                    276:            $retfurl=$hash{'src_'.$rid};
                    277:        }
1.2       www       278:        if (defined($hash{'conditions_'.$rid})) {
1.3       www       279: 	   $hash{'conditions_'.$rid}=simplify(
                    280:            '('.$hash{'conditions_'.$rid}.')|('.$sofar.')');
1.2       www       281:        } else {
                    282:            $hash{'conditions_'.$rid}=$sofar;
                    283:        }
                    284:        if (defined($hash{'is_map_'.$rid})) {
1.3       www       285:            if (defined($hash{'map_start_'.$hash{'src_'.$rid}})) {
                    286: 	       &traceroute($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},'&');
                    287:                if (defined($hash{'map_finish_'.$hash{'src_'.$rid}})) {
                    288: 		   $sofar=
                    289:                   $hash{'conditions_'.$hash{'map_finish_'.$hash{'src_'.$rid}}};
                    290:                }
1.2       www       291:            }
                    292:        }
                    293:        if (defined($hash{'to_'.$rid})) {
1.26      harris41  294:           foreach (split(/\,/,$hash{'to_'.$rid})) {
1.2       www       295: 		my $further=$sofar;
                    296:                 if ($hash{'undercond_'.$_}) {
                    297: 		   if (defined($hash{'condid_'.$hash{'undercond_'.$_}})) {
1.3       www       298:   		       $further=simplify('('.$further.')&('.
                    299:                               $hash{'condid_'.$hash{'undercond_'.$_}}.')');
1.2       www       300: 		   } else {
                    301:                        $errtext.='Undefined condition ID: '
                    302:                                  .$hash{'undercond_'.$_}.'. ';
                    303:                    }
                    304:                 }
                    305:                 &traceroute($further,$hash{'goesto_'.$_},$beenhere);
1.26      harris41  306:           }
1.2       www       307:        }
                    308:     }
                    309: }
1.1       www       310: 
1.19      www       311: # ------------------------------ Cascading conditions, quick access, parameters
1.4       www       312: 
                    313: sub accinit {
                    314:     my ($uri,$short,$fn)=@_;
                    315:     my %acchash=();
                    316:     my %captured=();
                    317:     my $condcounter=0;
1.5       www       318:     $acchash{'acc.cond.'.$short.'.0'}=0;
1.26      harris41  319:     foreach (keys %hash) {
1.4       www       320:        if ($_=~/^conditions/) {
                    321: 	  my $expr=$hash{$_};
1.26      harris41  322:          foreach ($expr=~m/(\(\(\d+(?:\&\d+)+\)(?:\|\(\d+(?:\&\d+)+\))+\))/g) {
1.4       www       323:              my $sub=$_;
                    324:              my $orig=$_;
1.13      www       325:       $sub=~/\(\((\d+\&(:?\d+\&)*)(?:\d+\&*)+\)(?:\|\(\1(?:\d+\&*)+\))+\)/;
1.4       www       326:              my $factor=$1;
1.7       www       327:              $sub=~s/$factor//g;
                    328:              $sub=~s/^\(/\($factor\(/;
1.4       www       329: 	     $sub.=')';
                    330:              $sub=simplify($sub);
                    331:              $orig=~s/(\W)/\\$1/g;
1.7       www       332:  	     $expr=~s/$orig/$sub/;
1.26      harris41  333: 	  }
1.4       www       334:           $hash{$_}=$expr;
                    335:           unless (defined($captured{$expr})) {
                    336: 	      $condcounter++;
                    337:               $captured{$expr}=$condcounter;
1.5       www       338:               $acchash{'acc.cond.'.$short.'.'.$condcounter}=$expr;
1.4       www       339:           } 
1.19      www       340:        } elsif ($_=~/^param_(\d+)\.(\d+)/) {
                    341:           my $prefix=&Apache::lonnet::declutter($hash{'map_id_'.$1}).
                    342:       '___'.$2.'___'.&Apache::lonnet::declutter($hash{'src_'.$1.'.'.$2});
1.26      harris41  343:           foreach (split(/\&/,$hash{$_})) {
1.19      www       344: 	     my ($typename,$value)=split(/\=/,$_);
                    345:              my ($type,$name)=split(/\:/,$typename);
                    346:              $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name)}=
                    347:                                    &Apache::lonnet::unescape($value);
                    348: 	     $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name).'.type'}=
                    349:                                    &Apache::lonnet::unescape($type);
1.26      harris41  350:           }
1.19      www       351:        }
1.26      harris41  352:     }
                    353:     foreach (keys %hash) {
1.4       www       354: 	if ($_=~/^ids/) {
1.26      harris41  355: 	  foreach (split(/\,/,$hash{$_})) {
1.13      www       356: 	    my $resid=$_;
1.4       www       357:             my $uri=$hash{'src_'.$resid};
1.22      www       358:             $uri=~s/^\/adm\/wrapper//;
1.4       www       359:             my @uriparts=split(/\//,$uri);
                    360:             my $urifile=$uriparts[$#uriparts];
                    361:             $#uriparts--;
                    362:             my $uripath=join('/',@uriparts);
1.8       www       363:             $uripath=~s/^\/res\///;
1.23      www       364:            if ($uripath) {
1.13      www       365:             my $uricond='0';
1.4       www       366:             if (defined($hash{'conditions_'.$resid})) {
1.13      www       367:  		$uricond=$captured{$hash{'conditions_'.$resid}};
1.4       www       368:             }
1.5       www       369:             if (defined($acchash{'acc.res.'.$short.'.'.$uripath})) {
1.13      www       370:                 if ($acchash{'acc.res.'.$short.'.'.$uripath}=~
                    371:                    /(\&$urifile\:[^\&]*)/) {
                    372: 		    my $replace=$1;
1.27    ! www       373:                     my $regexp=$replace;
        !           374:                     $regexp=~s/\|/\\\|/g;
1.13      www       375:                     $acchash{'acc.res.'.$short.'.'.$uripath}
1.27    ! www       376:                      =~s/$regexp/$replace\|$uricond/;
1.13      www       377:                 } else {
                    378: 		   $acchash{'acc.res.'.$short.'.'.$uripath}.=
                    379:                      $urifile.':'.$uricond.'&';
                    380: 	        }
1.4       www       381:             } else {
1.13      www       382:                 $acchash{'acc.res.'.$short.'.'.$uripath}=
                    383:                  '&'.$urifile.':'.$uricond.'&';
1.23      www       384:             }
                    385:            } 
1.26      harris41  386:          }
1.13      www       387:       }
1.26      harris41  388:     }
1.24      www       389:     $acchash{'acc.res.'.$short.'.'}='&:0&';
1.8       www       390:     my $courseuri=$uri;
                    391:     $courseuri=~s/^\/res\///;
1.19      www       392:     &Apache::lonnet::delenv('(acc\.|httpref\.)');
1.4       www       393:     &Apache::lonnet::appenv(%acchash,
1.9       www       394:                             "request.course.id"  => $short,
1.8       www       395:                             "request.course.fn"  => $fn,
                    396:                             "request.course.uri" => $courseuri); 
1.4       www       397: }
                    398: 
1.1       www       399: # ---------------------------------------------------- Read map and all submaps
                    400: 
                    401: sub readmap {
1.9       www       402:    my $short=shift;
                    403:    $short=~s/^\///;
                    404:    my %cenv=&Apache::lonnet::coursedescription($short);
                    405:    my $fn=$cenv{'fn'};
                    406:    my $uri;
                    407:    $short=~s/\//\_/g;
                    408:    unless ($uri=$cenv{'url'}) { 
                    409:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    410:                        "Could not load course $short.</font>"); 
                    411:       return 'No course data available.';
                    412:    }
1.3       www       413:    @cond=('true:normal');
1.11      www       414:    unlink($fn.'.db');
                    415:    unlink($fn.'_symb.db');
                    416:    unlink($fn.'.state');
1.19      www       417:    unlink($fn.'parms.db');
1.21      www       418:    $retfurl='';
1.19      www       419:    if ((tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT,0640)) &&
                    420:        (tie(%parmhash,'GDBM_File',$fn.'_parms.db',&GDBM_WRCREAT,0640))) {
1.4       www       421:     %hash=();
1.19      www       422:     %parmhash=();
1.4       www       423:     $errtext='';
                    424:     $pc=0;
                    425:     loadmap($uri);
                    426:     if (defined($hash{'map_start_'.$uri})) {
                    427:         &traceroute('0',$hash{'map_start_'.$uri},'&');
                    428:         &accinit($uri,$short,$fn);
1.2       www       429:     }
1.19      www       430:     unless ((untie(%hash)) && (untie(%parmhash))) {
1.4       www       431:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    432:                        "Could not untie coursemap $fn for $uri.</font>"); 
1.1       www       433:     }
1.4       www       434:     {
                    435:      my $cfh;
                    436:      if ($cfh=Apache::File->new(">$fn.state")) {
                    437:         print $cfh join("\n",@cond);
                    438:      } else {
1.6       www       439:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.4       www       440:                        "Could not write statemap $fn for $uri.</font>"); 
                    441:      }
                    442:     }  
                    443:    } else {
1.6       www       444:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.4       www       445:                        "Could not tie coursemap $fn for $uri.</font>"); 
                    446:    }
1.12      www       447:    &Apache::lonmsg::author_res_msg($ENV{'request.course.uri'},$errtext);
1.21      www       448:    return ($retfurl,$errtext);
1.1       www       449: }
1.15      www       450: 
                    451: # ------------------------------------------------------- Evaluate state string
                    452: 
                    453: sub evalstate {
1.21      www       454: 
1.15      www       455:     my $fn=$ENV{'request.course.fn'}.'.state';
                    456:     my $state='2';
                    457:     if (-e $fn) {
                    458:        my @conditions=();
                    459:        {
                    460:         my $fh=Apache::File->new($fn);
                    461:         @conditions=<$fh>;
                    462:        }  
1.21      www       463:        my $safeeval = new Safe;
                    464:        my $safehole = new Safe::Hole;
1.15      www       465:        $safeeval->permit("entereval");
                    466:        $safeeval->permit(":base_math");
                    467:        $safeeval->deny(":base_io");
1.21      www       468:        $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
1.26      harris41  469:        foreach (@conditions) {
1.15      www       470: 	   my $line=$_;
                    471:            chomp($line);
                    472: 	   my ($condition,$weight)=split(/\:/,$_);
                    473:            if ($safeeval->reval($condition)) {
                    474: 	       if ($weight eq 'force') {
                    475: 		   $state.='3';
                    476:                } else {
                    477:                    $state.='2';
                    478:                }
                    479:            } else {
                    480:                if ($weight eq 'stop') {
                    481: 		   $state.='0';
                    482:                } else {
                    483:                    $state.='1';
                    484:                }
                    485:            }
1.26      harris41  486:        }
1.15      www       487:     }
                    488:     &Apache::lonnet::appenv('user.state.'.$ENV{'request.course.id'} => $state);
                    489:     return $state;
                    490: }
                    491: 
1.1       www       492: 1;
                    493: __END__
                    494: 
1.26      harris41  495: =head1 NAME
                    496: 
                    497: Apache::lonuserstate - Construct and maintain state and binary representation
                    498: of course for user
                    499: 
                    500: =head1 SYNOPSIS
                    501: 
                    502: Invoked by lonroles.pm.
                    503: 
                    504: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    505: 
                    506: =head1 INTRODUCTION
                    507: 
                    508: This module constructs and maintains state and binary representation
                    509: of course for user.
                    510: 
                    511: This is part of the LearningOnline Network with CAPA project
                    512: described at http://www.lon-capa.org.
                    513: 
                    514: =head1 HANDLER SUBROUTINE
                    515: 
                    516: There is no handler subroutine.
                    517: 
                    518: =head1 OTHER SUBROUTINES
                    519: 
                    520: =over 4
                    521: 
                    522: =item *
                    523: 
                    524: loadmap() : Loads map from disk
                    525: 
                    526: =item *
                    527: 
                    528: simplify() : Simplify expression
                    529: 
                    530: =item *
                    531: 
                    532: traceroute() : Build condition hash
                    533: 
                    534: =item *
                    535: 
                    536: accinit() : Cascading conditions, quick access, parameters
1.1       www       537: 
1.26      harris41  538: =item *
1.1       www       539: 
1.26      harris41  540: readmap() : Read map and all submaps
1.1       www       541: 
1.26      harris41  542: =item *
1.1       www       543: 
1.26      harris41  544: evalstate() : Evaluate state string
1.1       www       545: 
1.26      harris41  546: =back
1.1       www       547: 
1.26      harris41  548: =cut

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