Annotation of OpenXM/src/OpenMath/OMproxy.java, Revision 1.9
1.2 tam 1: /**
1.9 ! tam 2: * $OpenXM: OpenXM/src/OpenMath/OMproxy.java,v 1.8 1999/11/09 09:43:48 tam Exp $
1.2 tam 3: */
4:
1.1 tam 5: import JP.ac.kobe_u.math.tam.OpenXM.*;
6: import java.util.Stack;
7: import java.io.*;
8:
9: class OMproxy implements Runnable{
10: private OpenXM ox;
11: private Stack stack = new Stack();
1.4 tam 12: private boolean debug = true;
1.9 ! tam 13: final int version = 199911110;
1.1 tam 14:
15: public OMproxy(String host,int ControlPort,int DataPort) throws IOException{
16: ox = new OpenXM(this,host,ControlPort,DataPort);
17: }
18:
19: public void run(){
20: OM2OXM P = new OM2OXM();
21:
1.9 ! tam 22: debug("OMproxy started.");
1.1 tam 23: try{
24: while(true){
1.9 ! tam 25: int ox_tag = ox.receiveOXtag();
1.1 tam 26:
1.9 ! tam 27: switch(ox_tag){
! 28: case OpenXM.OX_COMMAND:
! 29: StackMachine(ox.receiveSM());
! 30: break;
! 31:
! 32: case OpenXM.OX_DATA:
! 33: stack.push(ox.receiveCMO());
! 34: debug("push: "+ stack.peek());
! 35: break;
1.1 tam 36: }
37: }
38: }catch(java.io.IOException e){
39: System.err.println(e.getMessage());
40: e.printStackTrace();
41: }
42:
43: System.out.println("breaking...");
44: }
45:
1.9 ! tam 46: /*
1.1 tam 47: public void stop(){
48: System.out.println("OMproxy Stoping...");
49: synchronized(ox){
50: //this.stop();
51: while(!stack.empty()){
52: stack.pop();
53: }
54: System.out.println("OMproxy Stopped");
55: }
56: }
1.9 ! tam 57: */
1.1 tam 58:
59: private void SM_popCMO() throws java.io.IOException{
60: if(stack.empty()){
61: ox.send(new CMO_NULL());
62: }else{
1.8 tam 63: debug("pushing CMO: "+ stack.peek());
1.1 tam 64: ox.send(stack.pop());
65: }
66: }
67:
68: private void SM_executeFunction() throws java.io.IOException{
69: String function_name;
70: CMO[] argv;
1.3 tam 71: int argc = 1;
1.1 tam 72:
73: if(!(stack.peek() instanceof CMO_STRING)){
74: stack.push(new CMO_ERROR2());
75: return;
76: }
77: function_name = ((CMO_STRING)stack.pop()).getString();
1.3 tam 78: //argc = ((CMO_INT32)stack.pop()).intValue();
1.1 tam 79: argv = new CMO[argc];
80: for(int i=0;i<argc;i++){
81: argv[i] = (CMO)stack.pop();
82: }
83:
84: if(argc != 1){
85: stack.push(new CMO_ERROR2());
86: return;
87: }
88:
89: if(function_name.equals("OMXML2CMO")){
90: stack.push(OMXML2CMO(argv[0]));
91: return;
92: }else if(function_name.equals("CMO2OMXML")){
93: stack.push(CMO2OMXML(argv[0]));
94: return;
95: }
96:
97: stack.push(new CMO_ERROR2());
98: return;
99: }
100:
1.7 tam 101: private void SM_mathcap() throws java.io.IOException{
102: CMO[] mathcap = new CMO[3];
103:
104: {
1.9 ! tam 105: CMO[] list = {new CMO_INT32(version),
1.7 tam 106: new CMO_STRING("Ox_system=OMproxy.class"),
1.9 ! tam 107: new CMO_STRING("Version=0."+ version),
1.7 tam 108: new CMO_STRING("HOSTTYPE=JAVA")};
109: mathcap[0] = new CMO_LIST(list);
110: }
111:
112: {
113: CMO[] list = {new CMO_INT32(SM.SM_popCMO),
114: new CMO_INT32(SM.SM_executeFunction),
115: new CMO_INT32(SM.SM_mathcap)};
116: mathcap[1] = new CMO_LIST(list);
117: }
118:
119: {
120: CMO[] DataFormat = {new CMO_INT32(OpenXM.OX_DATA)};
121: CMO[] CMOFormat = {new CMO_INT32(CMO.CMO_NULL),
122: new CMO_INT32(CMO.CMO_INT32),
123: new CMO_INT32(CMO.CMO_STRING),
1.9 ! tam 124: new CMO_INT32(CMO.CMO_LIST),
1.7 tam 125: new CMO_INT32(CMO.CMO_MONOMIAL32),
126: new CMO_INT32(CMO.CMO_ZZ),
127: new CMO_INT32(CMO.CMO_QQ),
128: new CMO_INT32(CMO.CMO_ZERO),
1.9 ! tam 129: new CMO_INT32(CMO.CMO_DISTRIBUTED_POLYNOMIAL),
1.7 tam 130: new CMO_INT32(CMO.CMO_DMS_GENERIC)};
131: CMO[] list = {new CMO_LIST(DataFormat),
132: new CMO_LIST(CMOFormat)};
133: mathcap[2] = new CMO_LIST(list);
134: }
135:
1.8 tam 136: stack.push(new CMO_MATHCAP(new CMO_LIST(mathcap)));
137: debug("push: "+ stack.peek());
1.7 tam 138: }
139:
1.1 tam 140: private void StackMachine(SM mesg) throws java.io.IOException{
1.4 tam 141: debug("receive: "+mesg);
142:
1.1 tam 143: switch(mesg.getCode()){
144: case SM.SM_popCMO:
145: SM_popCMO();
146: break;
147:
148: case SM.SM_executeFunction:
149: SM_executeFunction();
1.7 tam 150: break;
151:
152: case SM.SM_mathcap:
153: SM_mathcap();
1.1 tam 154: break;
155:
156: default:
157: System.out.println("received "+ mesg);
158: }
159: }
160:
161: private CMO CMO2OMXML(CMO obj){
162: String str = OM2OXM.CMO2OM(obj);
163:
164: return new CMO_STRING(str);
165: }
166:
167: private CMO OMXML2CMO(CMO obj){
168: OM2OXM trans = new OM2OXM();
169: //StringBufferInputStream stream;
170: ByteArrayInputStream stream;
171: CMO ret;
172:
1.5 tam 173: debug("OMXML2CMO called: "+obj);
1.6 tam 174: if(!(obj instanceof CMO_STRING)){
1.1 tam 175: return new CMO_ERROR2();
176: }
177:
178: try{
179: stream = new ByteArrayInputStream(((CMO_STRING)obj).getString().getBytes());
180: ret = trans.parse(stream);
181: }catch(IOException e){
1.6 tam 182: debug("OMXML2CMO occuered error in trans");
1.1 tam 183: return new CMO_ERROR2(new CMO_STRING(e.toString()));
184: }
185:
1.4 tam 186: debug("push: "+ret);
1.1 tam 187: return ret;
1.4 tam 188: }
189:
190: private void debug(String str){
191: if(debug){
192: System.out.println(str);
193: }
1.1 tam 194: }
195:
1.2 tam 196: private static String usage(){
197: String ret = "";
198:
199: ret += "usage\t: java OMproxy [options]\n";
200: ret += "options\t:\n";
201: ret += "\t -h \t show this message\n";
202: ret += "\t -host hostname \t (default localhost)\n";
203: ret += "\t -data port \t (default 1300)\n";
204: ret += "\t -control port \t (default 1200)\n";
1.8 tam 205: ret += "\t -insecure \t this version ignore this option\n";
1.2 tam 206:
207: return ret;
208: }
209:
1.1 tam 210: public static void main(String argv[]){
211: String host = "localhost";
212: int DataPort = 1300, ControlPort = 1200;
213:
214: for(int i=0;i<argv.length;i++){
215: if(argv[i].equals("-h")){
1.2 tam 216: System.out.print(usage());
1.1 tam 217: System.exit(0);
218: }else if(argv[i].equals("-host")){
219: host = argv[++i];
220: }else if(argv[i].equals("-data")){
221: DataPort = Integer.valueOf(argv[++i]).intValue();
222: }else if(argv[i].equals("-control")){
223: ControlPort = Integer.valueOf(argv[++i]).intValue();
1.8 tam 224: }else if(argv[i].equals("-insecure")){
1.1 tam 225: }else{
1.2 tam 226: System.err.println("unknown option : "+ argv[i]);
227: System.err.print(usage());
1.1 tam 228: System.exit(1);
229: }
230: }
1.2 tam 231:
1.1 tam 232: System.out.println("host(ctrl,data): "+ host
233: +"("+ ControlPort +","+ DataPort +")");
234:
235: try{
236: new OMproxy(host,ControlPort,DataPort);
237: System.out.println("connected.");
238: }catch(IOException e){
239: System.err.println("Error occured: "+ e);
240: System.err.println(e.getLocalizedMessage());
241: System.err.println(e.getMessage());
242: }
243: }
244: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>