blob: 4e4c670d3c693f195f2a8a2e5c8cdfd14af814f1 [file] [log] [blame]
package com.googlecode.prolog_cafe.builtin;
import com.googlecode.prolog_cafe.exceptions.IllegalDomainException;
import com.googlecode.prolog_cafe.exceptions.IllegalTypeException;
import com.googlecode.prolog_cafe.exceptions.PInstantiationException;
import com.googlecode.prolog_cafe.lang.ClosureTerm;
import com.googlecode.prolog_cafe.lang.DoubleTerm;
import com.googlecode.prolog_cafe.lang.IntegerTerm;
import com.googlecode.prolog_cafe.lang.JavaObjectTerm;
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.StructureTerm;
import com.googlecode.prolog_cafe.lang.SymbolTerm;
import com.googlecode.prolog_cafe.lang.Term;
import com.googlecode.prolog_cafe.lang.VariableTerm;
/**
* <code>functor/3</code><br>
* @author Mutsunori Banbara (banbara@kobe-u.ac.jp)
* @author Naoyuki Tamura (tamura@kobe-u.ac.jp)
* @version 1.0
*/
public class PRED_functor_3 extends Predicate.P3 {
private static final SymbolTerm SYM_DOT = SymbolTerm.intern(".");
public PRED_functor_3(Term a1, Term a2, Term a3, Operation cont) {
arg1 = a1;
arg2 = a2;
arg3 = a3;
this.cont = cont;
}
@Override
public Operation exec(Prolog engine) {
engine.setB0();
Term a1, a2, a3;
a1 = arg1;
a2 = arg2;
a3 = arg3;
// functor(?X,+Y,+Z)
a1 = a1.dereference();
if (a1 instanceof VariableTerm) {
a2 = a2.dereference();
if (a2 instanceof VariableTerm)
throw new PInstantiationException(this, 2);
if (!(a2 instanceof SymbolTerm) && !((a2 instanceof IntegerTerm) || (a2 instanceof DoubleTerm)) && !(a2 instanceof JavaObjectTerm) && !(a2 instanceof ClosureTerm))
throw new IllegalTypeException(this, 2, "atomic", a2);
a3 = a3.dereference();
if (a3 instanceof VariableTerm)
throw new PInstantiationException(this, 3);
if (! (a3 instanceof IntegerTerm))
throw new IllegalTypeException(this, 3, "integer", a3);
int n = ((IntegerTerm)a3).intValue();
if (n < 0)
throw new IllegalDomainException(this, 3, "not_less_than_zero", a3);
if (n == 0) {
if(! a1.unify(a2, engine.trail))
return engine.fail();
return cont;
}
if (! (a2 instanceof SymbolTerm))
throw new IllegalTypeException(this, 2, "atom", a2);
if (n == 2 && a2.equals(SYM_DOT)) {
Term t = new ListTerm(new VariableTerm(engine), new VariableTerm(engine));
if(! a1.unify(t, engine.trail))
return engine.fail();
return cont;
}
Term[] args = new Term[n];
for(int i=0; i<n; i++)
args[i] = new VariableTerm(engine);
SymbolTerm sym = SymbolTerm.create(((SymbolTerm)a2).name(), n);
if(! a1.unify(new StructureTerm(sym, args), engine.trail))
return engine.fail();
return cont;
}
// functor(+X,?Y,?Z)
Term functor;
IntegerTerm arity;
if (a1 instanceof SymbolTerm || ((a1 instanceof IntegerTerm) || (a1 instanceof DoubleTerm)) || a1 instanceof JavaObjectTerm || a1 instanceof ClosureTerm) {
functor = a1;
arity = new IntegerTerm(0);
} else if (a1 instanceof ListTerm) {
functor = SYM_DOT;
arity = new IntegerTerm(2);
} else if (a1 instanceof StructureTerm) {
functor = SymbolTerm.create(((StructureTerm)a1).name());
arity = new IntegerTerm(((StructureTerm)a1).arity());
} else {
return engine.fail();
}
if(! a2.unify(functor, engine.trail))
return engine.fail();
if(! a3.unify(arity, engine.trail))
return engine.fail();
return cont;
}
}