| 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.JavaException; |
| import com.googlecode.prolog_cafe.exceptions.PInstantiationException; |
| import com.googlecode.prolog_cafe.exceptions.PermissionException; |
| 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.SymbolTerm; |
| import com.googlecode.prolog_cafe.lang.Term; |
| import com.googlecode.prolog_cafe.lang.Token; |
| import com.googlecode.prolog_cafe.lang.VariableTerm; |
| |
| import java.io.PushbackReader; |
| /** |
| * <code>'$read_token0'/3</code><br> |
| * @author Mutsunori Banbara (banbara@kobe-u.ac.jp) |
| * @author Naoyuki Tamura (tamura@kobe-u.ac.jp) |
| * @version 1.0 |
| * @since 0.7 |
| */ |
| class PRED_$read_token0_3 extends Predicate.P3 { |
| public PRED_$read_token0_3(Term a1, Term a2, Term a3, Operation cont){ |
| arg1 = a1; |
| arg2 = a2; |
| arg3 = a3; |
| this.cont = cont; |
| } |
| |
| /* The a1 must be user, user_input, and |
| java.io.PushbackReader, otherwise fails. */ |
| @Override |
| public Operation exec(Prolog engine) { |
| engine.setB0(); |
| Term a1, a2, a3; |
| a1 = arg1; |
| a2 = arg2; |
| a3 = arg3; |
| |
| Object stream = null; |
| StringBuffer s; |
| int type; |
| Term token; |
| |
| // S_or_a |
| a1 = a1.dereference(); |
| if (a1 instanceof VariableTerm) { |
| throw new PInstantiationException(this, 1); |
| } else if (a1 instanceof SymbolTerm) { |
| if (! engine.getStreamManager().containsKey(a1)) |
| throw new ExistenceException(this, 1, "stream", a1, ""); |
| stream = ((JavaObjectTerm) engine.getStreamManager().get(a1)).object(); |
| } else if (a1 instanceof JavaObjectTerm) { |
| stream = ((JavaObjectTerm) a1).object(); |
| } else { |
| throw new IllegalDomainException(this, 1, "stream_or_alias", a1); |
| } |
| if (! (stream instanceof PushbackReader)) |
| throw new PermissionException(this, "input", "stream", a1, ""); |
| // read token |
| s = new StringBuffer(); |
| try { |
| type = Token.read_token(s, (PushbackReader)stream); |
| switch(type) { |
| case 'I': |
| token = new IntegerTerm(Integer.parseInt(s.toString())); |
| break; |
| case 'D': |
| token = new DoubleTerm(Double.parseDouble(s.toString())); |
| break; |
| case 'S': |
| char[] chars = (s.toString()).toCharArray(); |
| token = Prolog.Nil; |
| for (int i=chars.length; i>0; i--){ |
| token = new ListTerm(new IntegerTerm(chars[i-1]), token); |
| } |
| break; |
| default : |
| token = SymbolTerm.create(s.toString()); |
| break; |
| } |
| } catch (Exception e) { |
| throw new JavaException(this, 1, e); |
| } |
| if (! a2.unify(new IntegerTerm(type), engine.trail)) |
| return engine.fail(); |
| if (! a3.unify(token, engine.trail)) |
| return engine.fail(); |
| return cont; |
| } |
| } |
| |