=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/oxmisc2.c,v retrieving revision 1.1.1.1 retrieving revision 1.4 diff -u -p -r1.1.1.1 -r1.4 --- OpenXM/src/kan96xx/plugin/oxmisc2.c 1999/10/08 02:12:05 1.1.1.1 +++ OpenXM/src/kan96xx/plugin/oxmisc2.c 1999/11/27 01:41:11 1.4 @@ -1,3 +1,4 @@ +/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.3 1999/11/18 00:54:17 takayama Exp $ */ #include #include "ox_kan.h" #include "oxmisc2.h" /* This file requires sm1 object description. */ @@ -128,13 +129,17 @@ int oxReq(oxclientp client,int func,struct object ob) case SM_setMathCap: /* ob = [(mathcap-obj) [[version num, system name] [sm tags] ob1 smtags - [[ox numbers] [cmo numbers]]] + oxtags [[ox numbers, [cmo numbers]]] ob3 ob2 */ + /* oxtags [[OX_DATA, [cmo numbers]],[OX_DATA_LOCAL,[opt]],...]*/ { struct object ob1; struct object ob2; struct object ob3; + struct object obm; struct object smtags; + struct object oxtags; + struct object ox; int n,i; struct mathCap mathcap; @@ -143,25 +148,40 @@ int oxReq(oxclientp client,int func,struct object ob) client->dstate = DSTATE_ANY; break; } - ob1 = getoa(getoa(ob,1),0); - smtags = getoa(getoa(ob,1),1); - ob2 = getoa(getoa(getoa(ob,1),2),1); - ob3 = getoa(getoa(getoa(ob,1),2),0); - + obm = getoa(ob,1); + ob1 = getoa(obm,0); + smtags = getoa(obm,1); + oxtags = getoa(obm,2); + if (smtags.tag != Sarray || oxtags.tag != Sarray) { + errorOxmisc2("data format error in oxReqSetMathCap"); + } ob1p = (struct object *) sGC_malloc(sizeof(struct object)); *ob1p = ob1; mathcap.infop = ob1p; - n = getoaSize(ob2); - mathcap.n = n; + + n = getoaSize(oxtags); if (n >= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); - for (i=0; i= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); mathcap.oxSize = n; for (i=0; i= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); + for (i=0; itag != Sarray) { fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); printObject(*obp,0,stderr); @@ -725,6 +761,15 @@ int cmoCheckMathCap(struct object obj, struct object * errorOxmisc2("cmoCheckMathCap: format error in the client->mathcapObjp field.\n"); } mathcap = *obp; + /* Example of mathcap + [ $mathcap-object$ , + [ [ 199909080 , $Ox_system=ox_sm1.plain$ , $Version=2.991106$ , + $HOSTTYPE=i386$ ] , + [ 262 , 263 , 264 , 265 , 266 , 268 , 269 , 272 , 273 , 275 , + 276 ] , + [ [ 514 , [ 2130706434 , 1 , 2 , 4 , 5 , 17 , 19 , 20 , 22 , 23 , 24 , 25 , 26 , 30 , 31 , 60 , 61 , 27 , 33 , 40 , 16 , 34 ] ] ] ] ] + */ + n = getoaSize(mathcap); if (n < 2) { fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); @@ -732,32 +777,81 @@ int cmoCheckMathCap(struct object obj, struct object * fprintf(stderr,"\n"); errorOxmisc2("cmoCheckMathCap: length of mathcap is wrong in the client->mathcapObjp field.\n"); } - /* I should check - getoa(getoa(mathcap,2),0) - contains OX_DATA. - It has not yet implemented. - */ - mathcap = getoa(getoa(mathcap,1),2); - n = getoaSize(mathcap); - if (n < 2) { + ob0 = getoa(mathcap,0); + if (ob0.tag != Sdollar) { fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); printObject(*obp,0,stderr); fprintf(stderr,"\n"); - errorOxmisc2("cmoCheckMathCap: length of mathcap is wrong in the client->mathcapObjp field.\n"); + errorOxmisc2("cmoCheckMathCap: The first field must be the string mathcap-object.\n"); } - cmolist = getoa(mathcap,1); - if (cmolist.tag != Sarray) { + if (strcmp(KopString(ob0),"mathcap-object") != 0) { fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); printObject(*obp,0,stderr); fprintf(stderr,"\n"); - errorOxmisc2("cmoCheckMathCap: mathcap[1] must be an array of integers.\n"); + errorOxmisc2("cmoCheckMathCap: The mathcap must be of the form [(mathcap-object) [...]]\n"); } - n = getoaSize(cmolist); - if (n > CMO_CHECK_MATH_CAP_LIST_SIZE) { - errorOxmisc2("cmoCheckMathCap: Too big cmo list.\n"); + + /* I should check + getoa(getoa(mathcap,1),2) + contains OX_DATA. + It has not yet implemented. + */ + mathcapMain = getoa(mathcap,1); + if (mathcapMain.tag != Sarray) { + fprintf(stderr,"cmoCheckMathCap: mathcap[1] is \n"); + printObject(mathcapMain,0,stderr); + fprintf(stderr,"\n"); + errorOxmisc2("cmoCheckMathCap: format error in the (client->mathcapObjp)[1] field. It should be an array.\n"); } - for (i=0; imathcapObjp)[1] field. It should be an array of which length is more than 2.\n"); + } + mathcapThird = getoa(mathcapMain,2); + oxsize = getoaSize(mathcapThird); + for (i=0; i 1) { + cmolist = getoa(ox,1); + if (cmolist.tag != Sarray) { + fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); + printObject(*obp,0,stderr); + fprintf(stderr,"\n"); + errorOxmisc2("cmoCheckMathCap: mathcap[1] must be an array of integers.\n"); + } + n = getoaSize(cmolist); + if (n > CMO_CHECK_MATH_CAP_LIST_SIZE) { + errorOxmisc2("cmoCheckMathCap: Too big cmo list.\n"); + } + for (i=0; i