| package com.googlecode.prolog_cafe.builtin; |
| import com.googlecode.prolog_cafe.exceptions.ExistenceException; |
| import com.googlecode.prolog_cafe.exceptions.IllegalDomainException; |
| import com.googlecode.prolog_cafe.exceptions.InternalException; |
| import com.googlecode.prolog_cafe.exceptions.PInstantiationException; |
| import com.googlecode.prolog_cafe.lang.HashtableOfTerm; |
| import com.googlecode.prolog_cafe.lang.JavaObjectTerm; |
| 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>hash_put/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_hash_put_3 extends Predicate.P3 { |
| public PRED_hash_put_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; |
| |
| Object hash = null; |
| |
| a1 = a1.dereference(); |
| if (a1 instanceof VariableTerm) { |
| throw new PInstantiationException(this, 1); |
| } else if (a1 instanceof SymbolTerm) { |
| if (! engine.getHashManager().containsKey(a1)) |
| throw new ExistenceException(this, 1, "hash", a1, ""); |
| hash = ((JavaObjectTerm) engine.getHashManager().get(a1)).object(); |
| } else if (a1 instanceof JavaObjectTerm) { |
| hash = ((JavaObjectTerm) a1).object(); |
| } else { |
| throw new IllegalDomainException(this, 1, "hash_or_alias", a1); |
| } |
| if (! (hash instanceof HashtableOfTerm)) |
| throw new InternalException(this + ": Hash is not HashtableOfTerm"); |
| a2 = a2.dereference(); |
| a3 = a3.dereference(); |
| ((HashtableOfTerm) hash).put(a2, a3); |
| return cont; |
| } |
| } |
| |
| |