blob: c989d1caff08b1471aeb6cf5384d323251e23d36 [file] [log] [blame]
package com.googlecode.prolog_cafe.builtin;
import com.googlecode.prolog_cafe.exceptions.IllegalTypeException;
import com.googlecode.prolog_cafe.exceptions.PInstantiationException;
import com.googlecode.prolog_cafe.lang.IntegerTerm;
import com.googlecode.prolog_cafe.lang.ListTerm;
import com.googlecode.prolog_cafe.lang.Operation;
import com.googlecode.prolog_cafe.lang.Predicate;
import com.googlecode.prolog_cafe.lang.Prolog;
import com.googlecode.prolog_cafe.lang.SymbolTerm;
import com.googlecode.prolog_cafe.lang.Term;
import com.googlecode.prolog_cafe.lang.VariableTerm;
/**
<code>'$statistics'/2</code><br>
@author Mutsunori Banbara (banbara@kobe-u.ac.jp)
@author Naoyuki Tamura (tamura@kobe-u.ac.jp)
@version 1.0
*/
class PRED_$statistics_2 extends Predicate.P2 {
private static final SymbolTerm Nil = Prolog.Nil;
private static final SymbolTerm SYM_RUNTIME = SymbolTerm.intern("runtime");
private static final SymbolTerm SYM_TRAIL = SymbolTerm.intern("trail");
private static final SymbolTerm SYM_CHOICE = SymbolTerm.intern("choice");
public PRED_$statistics_2(Term a1, Term a2, Operation cont){
arg1 = a1;
arg2 = a2;
this.cont = cont;
}
@Override
public Operation exec(Prolog engine){
engine.setB0();
Term a1, a2;
a1 = arg1;
a2 = arg2;
Term result = null;
a1 = a1.dereference();
engine.requireFeature(Prolog.Feature.STATISTICS, this, a1);
if (a1 instanceof VariableTerm) {
throw new PInstantiationException(this, 1);
} else if (! (a1 instanceof SymbolTerm)) {
throw new IllegalTypeException(this, 1, "atom", a1);
} else if (a1.equals(SYM_RUNTIME)) {
long val1, val2;
Term start, previous;
val1 = System.currentTimeMillis() - engine.getStartRuntime();
val2 = val1 - engine.getPreviousRuntime();
engine.setPreviousRuntime(val1);
start = new IntegerTerm((int)val1);
previous = new IntegerTerm((int)val2);
result = new ListTerm(start, new ListTerm(previous, Nil));
} else if (a1.equals(SYM_TRAIL)) {
int top, max;
Term free, used;
top = engine.trail.top();
max = engine.trail.max();
used = new IntegerTerm(top);
free = new IntegerTerm(max - top);
result = new ListTerm(used, new ListTerm(free, Nil));
} else if (a1.equals(SYM_CHOICE)) {
int top, max;
Term free, used;
top = engine.stack.top();
max = engine.stack.max();
used = new IntegerTerm(top);
free = new IntegerTerm(max - top);
result = new ListTerm(used, new ListTerm(free, Nil));
} else {
return engine.fail();
}
if (! a2.unify(result, engine.trail))
return engine.fail();
return cont;
}
}