blob: 5a30274fd9caa17c6126ecebe7090f75407fcc18 [file] [log] [blame]
package jp.ac.kobe_u.cs.prolog.builtin;
import jp.ac.kobe_u.cs.prolog.lang.*;
import java.util.Hashtable;
/**
<code>hash_remove/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_hash_remove_2 extends Predicate {
public Term arg1, arg2;
public PRED_hash_remove_2(Term a1, Term a2, Predicate cont) {
arg1 = a1;
arg2 = a2;
this.cont = cont;
}
public PRED_hash_remove_2(){}
public void setArgument(Term[] args, Predicate cont) {
arg1 = args[0];
arg2 = args[1];
this.cont = cont;
}
public int arity() { return 2; }
public String toString() {
return "hash_remove(" + arg1 + "," + arg2 + ")";
}
public Predicate exec(Prolog engine) {
engine.setB0();
Term a1, a2;
a1 = arg1;
a2 = arg2;
Object hash = null;
a1 = a1.dereference();
if (a1.isVariable()) {
throw new PInstantiationException(this, 1);
} else if (a1.isSymbol()) {
if (! engine.getHashManager().containsKey(a1))
throw new ExistenceException(this, 1, "hash", a1, "");
hash = ((JavaObjectTerm) engine.getHashManager().get(a1)).object();
} else if (a1.isJavaObject()) {
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();
((HashtableOfTerm) hash).remove(a2);
return cont;
}
}