blob: 6d8b75cc0910c52074a55195eee2493e8a3efd94 [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.*;
/**
<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;
}
public Operation exec(Prolog engine){
engine.setB0();
Term a1, a2;
a1 = arg1;
a2 = arg2;
Term result = null;
a1 = a1.dereference();
if (a1.isVariable()) {
throw new PInstantiationException(this, 1);
} else if (! a1.isSymbol()) {
throw new IllegalTypeException(this, 1, "atom", a1);
} else if (a1.equals(SYM_RUNTIME)) {
engine.requireFeature(Prolog.Feature.STATISTICS_RUNTIME, this, a1);
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;
}
}