Package jp.ac.kobe_u.cs.prolog.builtin

Source Code of jp.ac.kobe_u.cs.prolog.builtin.PRED_number_codes_2

package jp.ac.kobe_u.cs.prolog.builtin;

import jp.ac.kobe_u.cs.prolog.lang.DoubleTerm;
import jp.ac.kobe_u.cs.prolog.lang.IllegalTypeException;
import jp.ac.kobe_u.cs.prolog.lang.IntegerTerm;
import jp.ac.kobe_u.cs.prolog.lang.ListTerm;
import jp.ac.kobe_u.cs.prolog.lang.PInstantiationException;
import jp.ac.kobe_u.cs.prolog.lang.Predicate;
import jp.ac.kobe_u.cs.prolog.lang.Prolog;
import jp.ac.kobe_u.cs.prolog.lang.RepresentationException;
import jp.ac.kobe_u.cs.prolog.lang.SymbolTerm;
import jp.ac.kobe_u.cs.prolog.lang.SyntaxException;
import jp.ac.kobe_u.cs.prolog.lang.Term;

/**
* <code>number_codes/2</code><br>
*
* @author Mutsunori Banbara (banbara@kobe-u.ac.jp)
* @author Naoyuki Tamura (tamura@kobe-u.ac.jp)
* @version 1.1
*/
public class PRED_number_codes_2 extends Predicate {
  /**
   *
   */
  private static final long serialVersionUID = 6310081758881024168L;
  private final static SymbolTerm Nil = SymbolTerm.makeSymbol("[]");
  private Term arg1, arg2;

  public PRED_number_codes_2(Term a1, Term a2, Predicate cont) {
    arg1 = a1;
    arg2 = a2;
    this.cont = cont;
  }

  public PRED_number_codes_2() {
  }

  @Override
  public void setArgument(Term[] args, Predicate cont) {
    arg1 = args[0];
    arg2 = args[1];
    this.cont = cont;
  }

  @Override
  public int arity() {
    return 2;
  }

  @Override
  public String toString() {
    return "number_codes(" + arg1 + "," + arg2 + ")";
  }

  @Override
  public Predicate exec(Prolog engine) {
    engine.setB0();
    Term a1, a2;
    a1 = arg1;
    a2 = arg2;

    a1 = a1.dereference();
    a2 = a2.dereference();
    if (a2.isNil()) {
      throw new SyntaxException(this, 2, "character_code_list", a2, "");
    }
    if (a1.isVariable()) { // number_codes(-Number, +CharCodeList)
      StringBuffer sb = new StringBuffer();
      Term x = a2;
      while (!x.isNil()) {
        if (x.isVariable()) {
          throw new PInstantiationException(this, 2);
        }
        if (!x.isList()) {
          throw new IllegalTypeException(this, 2, "list", a2);
        }
        Term car = ((ListTerm) x).car().dereference();
        if (car.isVariable()) {
          throw new PInstantiationException(this, 2);
        }
        if (!car.isInteger()) {
          throw new RepresentationException(this, 2, "character_code");
        }
        // car is an integer
        int i = ((IntegerTerm) car).intValue();
        if (!Character.isDefined((char) i)) {
          throw new RepresentationException(this, 2, "character_code");
        }
        sb.append((char) i);
        x = ((ListTerm) x).cdr().dereference();
      }
      try {
        if (!a1.unify(new IntegerTerm(Integer.parseInt(sb.toString())),
            engine.trail)) {
          return engine.fail();
        }
        return cont;
      } catch (NumberFormatException e) {
      }
      try {
        if (!a1.unify(
            new DoubleTerm(Double.parseDouble(sb.toString())),
            engine.trail)) {
          return engine.fail();
        }
        return cont;
      } catch (NumberFormatException e) {
        throw new SyntaxException(this, 2, "character_code_list", a2,
            "");
      }
    } else if (a1.isNumber()) { // number_codes(+Number, ?CharCodeList)
      char[] chars = a1.toString().toCharArray();
      Term y = Nil;
      for (int i = chars.length; i > 0; i--) {
        y = new ListTerm(new IntegerTerm(chars[i - 1]), y);
      }
      if (!a2.unify(y, engine.trail)) {
        return engine.fail();
      }
      return cont;
    } else {
      throw new IllegalTypeException(this, 1, "number", a1);
    }
  }
}
TOP

Related Classes of jp.ac.kobe_u.cs.prolog.builtin.PRED_number_codes_2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.