=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/oxmisc2.c,v retrieving revision 1.4 retrieving revision 1.8 diff -u -p -r1.4 -r1.8 --- OpenXM/src/kan96xx/plugin/oxmisc2.c 1999/11/27 01:41:11 1.4 +++ OpenXM/src/kan96xx/plugin/oxmisc2.c 2000/12/03 08:19:55 1.8 @@ -1,9 +1,13 @@ -/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.3 1999/11/18 00:54:17 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.7 2000/12/03 07:29:39 takayama Exp $ */ #include #include "ox_kan.h" #include "oxmisc2.h" /* This file requires sm1 object description. */ #include "cmo.h" + extern FILE *MyErrorOut; +#define SET_MYERROROUT { if (MyErrorOut == NULL) MyErrorOut=stdout; } +/* It is also defined in oxmisc.c */ + extern int SerialOX; /* defined in SerialOX */ extern int OxVersion; @@ -68,6 +72,7 @@ int oxGet(oxclientp client, struct object *op,int *isO int oxGetFromControl(oxclientp client) { int ans = -1; + AbortIfRFC_101(client); if (client->cstate != -1) { ans = oxGetResultOfControlInt32(client->controlfd); if (ans != -1) { client->cstate = 0; } @@ -79,9 +84,11 @@ int oxGetFromControl(oxclientp client) int oxReq(oxclientp client,int func,struct object ob) { struct object *ob1p; + SET_MYERROROUT; /* request to the control channel */ if (func == SM_control_reset_connection || func == SM_control_kill) { + AbortIfRFC_101(client); switch(func) { case SM_control_reset_connection: oxReqControlResetConnection(client->controlfd); @@ -677,7 +684,9 @@ static int cmoCheck00(struct object obj,int cmo[], int #define CHECK00_N 4098 /* look up stackm.h and kclass.h */ static int typeTrans[CHECK00_N]; static int init = 0; - if (n == 0) return(1); /* For null cmolist, OK. */ + /* if n == 0, report the cmo tag of the object obj. + If it cannot be translated to cmo, then return -1. */ + if (!init) { for (i=0; idatafp2,OX_COMMAND,SerialOX++); + oxSendInt32(cc1->datafp2,KopInteger(cmd)); + /* synchronize cc1 and client. */ + oxClientToObject(cc1,client); + return(cmd); +} + +struct object KoxPushCMO(struct object client,struct object ob) { + int ans; + static oxclientp cc1 = NULL; + struct object rob; + rob.tag = Snull; + if (cc1 == NULL) { + cc1 = (oxclientp) mymalloc(sizeof(oxclient)); + if (cc1 == NULL) { + errorOxmisc2("KoxReq(): no more memory."); + return(rob); + } + oxInitClient(cc1); /* BUG: is it fine? */ + } + + if (oxObjectToClient(client,cc1) == -1) return(rob); + if (cc1 == NULL) { + errorOxmisc2("KoxReq(): the first argument must be a client object."); + return(rob); + } + + /* request to the data channel */ + if (cc1->dstate != DSTATE_ANY) { + errorOxmisc2("oxPushCMO: cc1->dstate != DSTATE_ANY, data channel is not ready to send data.\n"); + return(rob); + } + + if (!cmoCheckMathCap(ob,(struct object *)cc1->mathcapObjp)) { + errorOxmisc2("oxPushCMO: your peer does not understand this cmo.\n"); + return(rob); + } + oxSendOXheader(cc1->datafp2,OX_DATA,SerialOX++); + cmoObjectToStream2(ob,cc1->datafp2); + /* synchronize cc1 and client. */ + oxClientToObject(cc1,client); + return(ob); +} + +/* ------------- TODO ----------------- */ +oxclientp oxCreateControl_RFC_101(int fdstream,int portStream, + int ipmask,char *pass); +struct object KoxCreateControl_RFC_101(struct object peer,struct object ipmask,struct object pass) +{ + struct object rob; + oxclientp client; + int fdStream, portStream; + int i; + struct object ob1; + rob.tag = Snull; + if (peer.tag != Sarray) { + errorOxmisc2("KoxCreateControl_RFC_101(): The first argument must be an array [fdStream, portStream]"); + return(rob); + } + if (getoaSize(peer) != 2 ) { + errorOxmisc2("KoxCreateControl_RFC_101(): The first argument must be an array [fdStream, portStream] of size 2."); + return(rob); + } + for (i=0; idatafp2 = fp2open(fdStream); + if (client->datafp2 == NULL) { + fprintf(stderr,"oxCreateControl_RFC_101(): fp2open(fd) failed.\n"); + return(NULL); + } + client->dataport = portStream; + client->controlport = -1; + client->controlfd = -1; + client->id = clnum; clnum++; + client->type = CLIENT_SOCKET; /* socket */ + client->engineByteOrder = engineByteOrder; + client->controlByteOrder = -1; + return(client); }