--- loncom/xml/run.pm 2002/05/03 22:30:54 1.27 +++ loncom/xml/run.pm 2002/05/24 16:48:50 1.30 @@ -1,6 +1,6 @@ package Apache::run; # -# $Id: run.pm,v 1.27 2002/05/03 22:30:54 albertel Exp $ +# $Id: run.pm,v 1.30 2002/05/24 16:48:50 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -29,11 +29,10 @@ use HTML::Entities; $Apache::run::EVALUATE_STRING=<<'ENDEVALUATE'; my %_LONCAPA_INTERNAL_oldexpressions=(); - my $i=0; while (!$_LONCAPA_INTERNAL_oldexpressions{$_}) { $_LONCAPA_INTERNAL_oldexpressions{$_}=1; $_ =~s/((?:\$|\&)(?:[\#|\$]*[A-Za-z][\w]*|\{[A-Za-z][\w]*\}))([\[\{][^\$\&\]\}]+[\]\}])*?(\([^\$\&\)]+\))*?(?=[^\[\{\(]|$)/eval(defined(eval($1.$2))?eval('$1.$2.$3'):'$1.$2.$3')/seg; - if ($i++ > 10 ) { last; } + if (scalar(values(%_LONCAPA_INTERNAL_oldexpressions))>10) {last;} } ENDEVALUATE @@ -43,8 +42,12 @@ sub evaluate { if (!$Apache::lonxml::evaluate) { return $expression; } my $result = ''; $@=''; + if ($Apache::lonxml::request) { + $Apache::lonxml::request->hard_timeout("Apache::run::run, evaluation $code"); + } $safeeval->reval('{'.$decls.';$_=<<\'EXPRESSION\';'."\n".$expression. "\n".'EXPRESSION'."\n".$EVALUATE_STRING.'}'); + if ($Apache::lonxml::request) { $Apache::lonxml::request->kill_timeout; } # $safeeval->reval('{'.$decls.';<< &evaluate(q|'.$expression.'|);}'); my $error=$@; if ($@ eq '') { @@ -62,7 +65,11 @@ sub run { my ($code,$safeeval,$hideerrors) = @_; # print "inside run\n"; $@=''; + if ($Apache::lonxml::request) { + $Apache::lonxml::request->hard_timeout("Apache::run::run, evaluation $code"); + } my (@result)=$safeeval->reval($code); + if ($Apache::lonxml::request) { $Apache::lonxml::request->kill_timeout; } my $error=$@; if ($error ne '' && !$hideerrors) { &Apache::lonxml::error('
'.&HTML::Entities::encode($error).