File:  [LON-CAPA] / loncom / xml / run.pm
Revision 1.47: download - view: text, annotated - select for diffs
Tue Jul 13 19:12:46 2004 UTC (19 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: version_1_1_99_3, HEAD
- can't do this in a subroutine the $decls are my scoped and therefore not visibile in the subroutine, Need to move it back into the regexp, which mean enabling require opcode when doing run::evaluate might be able to get around this in a future release.

    1: package Apache::run;
    2: #
    3: # $Id: run.pm,v 1.47 2004/07/13 19:12:46 albertel Exp $
    4: #
    5: # Copyright Michigan State University Board of Trustees
    6: #
    7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    8: #
    9: # LON-CAPA is free software; you can redistribute it and/or modify
   10: # it under the terms of the GNU General Public License as published by
   11: # the Free Software Foundation; either version 2 of the License, or
   12: # (at your option) any later version.
   13: #
   14: # LON-CAPA is distributed in the hope that it will be useful,
   15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   17: # GNU General Public License for more details.
   18: #
   19: # You should have received a copy of the GNU General Public License
   20: # along with LON-CAPA; if not, write to the Free Software
   21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   22: #
   23: # /home/httpd/html/adm/gpl.txt
   24: #
   25: # http://www.lon-capa.org/
   26: #
   27: 
   28: use HTML::Entities;
   29: 
   30: $Apache::run::EVALUATE_STRING=<<'ENDEVALUATE';
   31: my %_LONCAPA_INTERNAL_oldexpressions=();
   32: while (!$_LONCAPA_INTERNAL_oldexpressions{$_}) {
   33:     $_LONCAPA_INTERNAL_oldexpressions{$_}=1;
   34:     $_ =~s/  # $1 will be the variable reference or subroutine name
   35:             ((?:\$|\&) #look for a starting $ or &
   36:              (?:[\#|\$]* #support $$ or $#$ etc.
   37:               [A-Za-z][\w]*| # get variable name
   38:               \{[A-Za-z][\w]*\})) # for ${a}
   39:              # $2 is 0 or more array dereferences []
   40:              #             or  hash dereferences {}
   41:              # the ^$ and ^& is because we do this iteratively
   42:              #    $a[$c] becomes $a[3] which then evaluates
   43:              ([\[\{][^\$\&\]\}]+[\]\}])*?
   44:              # $3 is the list of arguments
   45:              (\([^\$\&\)]+\))*?
   46:                 # only match the above if there is not { [ ( coming up
   47:                 # Why? (I.e. this fails &a(1)[2]
   48:                 (?=[^\[\{\(]|$)/
   49: 		 my ($__LC__a,$__LC__b,$__LC__c)=($1,$2,$3);
   50: 		 my $__LC__prefix;
   51: 		 my $result;
   52: 		 while (1) {
   53: 		     { 
   54: 			 use strict;
   55: 			 no strict "vars";
   56: 			 if (eval(defined(eval($__LC__a.$__LC__b)))) {
   57: 			     $result= $__LC__prefix.eval($__LC__a.$__LC__b.$__LC__c);
   58: 			     last;
   59: 			 }
   60: 		     }
   61: 		     $__LC__prefix.=substr($__LC__a,0,1,"");
   62: 		     if ($__LC__a!~m-^(\$|&|\#)-) { last; }
   63: 		 }
   64: 		 if (!defined($result)) {
   65: 		     $result=$__LC__prefix.$__LC__a.$__LC__b.$__LC__c;
   66: 		 }
   67: 		 $result;
   68:                   /sexg;
   69:     if (scalar(values(%_LONCAPA_INTERNAL_oldexpressions))>10) {last;}
   70: }
   71: ENDEVALUATE
   72: 
   73: sub evaluate {
   74:     my ($expression,$safeeval,$decls) = @_;
   75:     unless (defined($expression)) { return ''; }
   76:     if ($Apache::lonxml::evaluate < 1) { return $expression; }
   77:     my $result = '';
   78:     $@='';
   79:     $Apache::run::timeout=0;
   80:     $main::SIG{'ALRM'} = sub {
   81: 	$Apache::run::timeout=1;
   82: 	die("timeout");
   83:     };
   84:     my $innererror;
   85:     $safeeval->permit("require");
   86:     eval {
   87: 	alarm($Apache::lonnet::perlvar{'lonScriptTimeout'});
   88: 	$safeeval->reval('{'.$decls.';$_=<<\'EXPRESSION\';'."\n".$expression.
   89: 			 "\n".'EXPRESSION'."\n".$EVALUATE_STRING.'}');
   90: 	$innererror=$@;
   91: 	alarm(0);
   92:     };
   93:     $safeeval->deny("require");
   94:     my $error=$@;
   95:     if ($error eq '' && $innererror eq '' && !$Apache::run::timeout) {
   96: 	$result = $safeeval->reval('return $_;');
   97: 	chomp $result;
   98:     } else {
   99: 	if ($Apache::run::timeout) {
  100: 	    $error = 'Code ran too long. It ran for more than '.
  101: 		$Apache::lonnet::perlvar{'lonScriptTimeout'}.' seconds';
  102: 	}
  103: 	&Apache::lonxml::error('substitution on <pre>'.
  104: 			       &HTML::Entities::encode($expression,'<>&"').
  105: 			       '</pre> with <pre>'.
  106: 			       &HTML::Entities::encode($decls,'<>&"').
  107: 			       '</pre> caused <pre>'.
  108: 			       &HTML::Entities::encode($error,'<>&"').' '.
  109: 			       &HTML::Entities::encode($innererror,'<>&"').
  110: 			       '</pre>');
  111:     }
  112:     return $result
  113: }
  114: 
  115: sub run {
  116:     my ($code,$safeeval,$hideerrors) = @_;
  117:     my @result;
  118:     $@='';
  119:     $Apache::run::timeout=0;
  120:     $main::SIG{'ALRM'} = sub {
  121: 	$Apache::run::timeout=1;
  122: 	die("timeout");
  123:     };
  124:     my $innererror;
  125:     eval {
  126: 	alarm($Apache::lonnet::perlvar{'lonScriptTimeout'});
  127: 	@result=$safeeval->reval($code);
  128: 	$innererror=$@;
  129: 	alarm(0);
  130:     };
  131:     my $error=$@;
  132:     if (($Apache::run::timeout || $error ne '' || $innererror ne '') && !$hideerrors) {
  133: 	if ($Apache::run::timeout) {
  134: 	    $error = 'Code ran too long. It ran for more than '.
  135: 		$Apache::lonnet::perlvar{'lonScriptTimeout'}.' seconds';
  136: 	}
  137: 	my $errormsg='<pre>'.&HTML::Entities::encode($error,'<>&"').' '.
  138: 	    &HTML::Entities::encode($innererror,'<>&"').
  139: 	    '</pre> occured while running <pre>';
  140: 	$code=&HTML::Entities::encode($code,'<>&"');
  141: 	if ($innererror=~/line (\d+)/) {
  142: 	    my $linenumber=$1;
  143: 	    my @code=split("\n",$code);
  144: 	    $code[$linenumber-1]='<b><font color="red">'.
  145: 		$code[$linenumber-1].'</font></b>';
  146: 	    $code=join("\n",@code);
  147: 	}
  148: 	&Apache::lonxml::error($errormsg.$code.'</pre>');
  149:     }
  150:     if ( $#result < '1') {
  151: 	return $result[0];
  152:     } else {
  153: 	&Apache::lonxml::debug("<b>Got lots results</b>:$#result:");
  154: 	return (@result);
  155:     }
  156: }
  157: 
  158: sub dump {
  159:     my ($target,$safeeval)=@_;
  160:     my $dump='';
  161:     foreach my $symname (sort keys %{$safeeval->varglob('main::')}) {
  162: 	if (($symname!~/^\_/) && ($symname!~/\:$/)) {
  163: 	    my $line;
  164: 	    if ($safeeval->reval('defined($'.$symname.')')) {
  165: 		$line='$'.$symname.'='.$safeeval->reval('$'.$symname);
  166: 	    }	
  167: 	    if ($safeeval->reval('defined(@'.$symname.')')) {
  168: 		$line='@'.$symname.'=('.
  169: 		    $safeeval->reval('join(",",@'.$symname.')').")";
  170: 	    }
  171: 	    if ($safeeval->reval('defined(%'.$symname.')')) {
  172: 		$line='%'.$symname.'=(';
  173: 		$line.=$safeeval->reval('join(",",map { $_."=>".$'.
  174: 					$symname.'{$_} } sort keys %'.
  175: 					$symname.')').")"
  176: 				    }
  177: 	    if ($line ne '') {$dump.=&HTML::Entities::encode($line,'<>&"')."<br />";}
  178: 	}
  179:     }
  180:     $dump.='';
  181:     return $dump;
  182: }
  183: 
  184: 1;
  185: __END__;

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