[BACK]Return to testclient.java CVS log [TXT][DIR] Up to [local] / OpenXM / src / OpenMath

File: [local] / OpenXM / src / OpenMath / testclient.java (download)

Revision 1.4, Wed Oct 11 09:30:31 2000 UTC (23 years, 7 months ago) by ohara
Branch: MAIN
CVS Tags: maekawa-ipv6, R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9
Changes since 1.3: +2 -2 lines

An import path is fixed.

/**
 * $OpenXM: OpenXM/src/OpenMath/testclient.java,v 1.4 2000/10/11 09:30:31 ohara Exp $
 *
 */

import java.io.*;
import ORG.openxm.tam.*;

final class testclient{
  private OpenXM asir; // for debug

  public static String usage(){
    return "\n";
  }

  public static void main(String[] argv) throws IOException{
    OpenXM asir;
    String host = "localhost";
    int CtrlPort = 1200,StreamPort = 1300;

    for(int i=0;i<argv.length;i++){
      if(argv[i].equals("-h")){
	System.err.print(usage());
	System.exit(0);
      }else if(argv[i].equals("-host")){
	host = argv[++i];
      }else if(argv[i].equals("-data")){
	StreamPort = Integer.valueOf(argv[++i]).intValue();
      }else if(argv[i].equals("-control")){
	CtrlPort = Integer.valueOf(argv[++i]).intValue();
      }else{
	System.err.println("unknown option :"+ argv[i]);
	System.exit(1);
      }
    }

    try{ // connect to server
      asir = new OpenXM(host,CtrlPort,StreamPort);
    }catch(java.net.UnknownHostException e){
      System.err.println("host unknown.");
      System.err.println(e.getMessage());
      return;
    }catch(IOException e){
      System.err.println("connection failed.");
      System.err.println("IOException occuer !!");
      System.err.println(e.getMessage());
      return;
    }

    System.err.println("start");

    try{ // send data to server
      asir.send(new SM(SM.SM_mathcap));
      asir.send(new SM(SM.SM_popCMO));
      asir.send(new CMO_ZZ("12345678901234567890"));
      asir.send(new SM(SM.SM_popCMO));
    }catch(NumberFormatException e){
      System.err.println(e.getMessage());
    }catch(MathcapViolation e){
      System.err.println(e.getMessage());
    }

    try{ // receive a data which come from server
      while(true){
	OXmessage message = asir.receive();

	switch(message.getTag()){
	case OXmessage.OX_COMMAND:
          System.err.println("SM> "+ message.getBody());
          break;

	case OXmessage.OX_DATA:
	  System.err.println("CMO> "+ message.getBody());
          break;
	}
      }
    }catch(IOException e){
      e.printStackTrace();
    }finally{
      System.err.println("breaking...");
    }
  }
}