| 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.exceptions.PermissionException; |
| import com.googlecode.prolog_cafe.lang.HashtableOfTerm; |
| 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>new_hash/2</code><br> |
| @author Mutsunori Banbara (banbara@kobe-u.ac.jp) |
| @author Naoyuki Tamura (tamura@kobe-u.ac.jp) |
| @version 1.0 |
| */ |
| public class PRED_new_hash_2 extends Predicate.P2 { |
| private static final SymbolTerm SYM_ALIAS_1 = SymbolTerm.intern("alias", 1); |
| |
| public PRED_new_hash_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; |
| |
| a1 = a1.dereference(); |
| if (! (a1 instanceof VariableTerm)) |
| throw new IllegalTypeException(this, 1, "variable", a1); |
| Term newHash = new JavaObjectTerm(new HashtableOfTerm()); |
| a2 = a2.dereference(); |
| if (Prolog.Nil.equals(a2)) { |
| if (! a1.unify(newHash, engine.trail)) |
| return engine.fail(); |
| return cont; |
| } else if (! (a2 instanceof ListTerm)) { |
| throw new IllegalTypeException(this, 2, "list", a2); |
| } |
| // a2 is list |
| Term tmp = a2; |
| while (! Prolog.Nil.equals(tmp)) { |
| if (tmp instanceof VariableTerm) |
| throw new PInstantiationException(this, 2); |
| if (! (tmp instanceof ListTerm)) |
| throw new IllegalTypeException(this, 2, "list", a2); |
| Term car = ((ListTerm) tmp).car().dereference(); |
| if (car instanceof VariableTerm) |
| throw new PInstantiationException(this, 2); |
| if (car instanceof StructureTerm) { |
| SymbolTerm functor = ((StructureTerm) car).functor(); |
| Term[] args = ((StructureTerm) car).args(); |
| if (functor.equals(SYM_ALIAS_1)) { |
| Term alias = args[0].dereference(); |
| if (! (alias instanceof SymbolTerm)) |
| throw new IllegalDomainException(this, 2, "hash_option", car); |
| else { |
| if (engine.getHashManager().containsKey(alias)) |
| throw new PermissionException(this, "new", "hash", car, ""); |
| engine.getHashManager().put(alias, newHash); |
| } |
| } else { |
| throw new IllegalDomainException(this, 2, "hash_option", car); |
| } |
| } else { |
| throw new IllegalDomainException(this, 2, "hash_option", car); |
| } |
| tmp = ((ListTerm) tmp).cdr().dereference(); |
| } |
| if (! a1.unify(newHash, engine.trail)) |
| return engine.fail(); |
| return cont; |
| } |
| } |