version 1.1.1.1, 1999/10/08 02:12:13 |
version 1.17, 2013/11/06 06:23:24 |
|
|
|
/* $OpenXM: OpenXM/src/kxx/oxserver00.c,v 1.16 2004/09/17 02:42:58 takayama Exp $ */ |
/* nullserver01 */ |
/* nullserver01 */ |
#include <stdio.h> |
#include <stdio.h> |
#include <sys/types.h> |
#include <sys/types.h> |
|
|
int OxCritical = 0; |
int OxCritical = 0; |
int OxInterruptFlag = 0; |
int OxInterruptFlag = 0; |
int PacketMonitor = 0; |
int PacketMonitor = 0; |
|
int NoExecution = 0; |
|
|
extern int SerialOX; /* Serial number of the packets sent. */ |
extern int SerialOX; /* Serial number of the packets sent. */ |
extern int SerialCurrent; /* Current Serial number of the recieved packet. */ |
extern int SerialCurrent; /* Current Serial number of the recieved packet. */ |
extern int OXprintMessage; /* print oxmessages? */ |
extern int OXprintMessage; /* print oxmessages? */ |
|
extern int Calling_ctrlC_hook; |
|
extern int RestrictedMode, RestrictedMode_saved; |
|
|
|
#if defined(__CYGWIN__) |
|
sigjmp_buf EnvOfChildServer; |
|
#else |
jmp_buf EnvOfChildServer; |
jmp_buf EnvOfChildServer; |
|
#endif |
|
|
int JmpMessage = 0; |
int JmpMessage = 0; |
|
extern int Lisplike; |
|
|
static char *getSuffix(char *s); |
static char *getSuffix(char *s); |
main(int argc, char *argv[]) { |
main(int argc, char *argv[]) { |
Line 32 main(int argc, char *argv[]) { |
|
Line 41 main(int argc, char *argv[]) { |
|
char *tigers[] = {"callsm1.sm1","tigers.sm1"}; |
char *tigers[] = {"callsm1.sm1","tigers.sm1"}; |
char *basicCD[] = {"basicCD.sm1"}; |
char *basicCD[] = {"basicCD.sm1"}; |
/* If you change the above, you need to change the argc of Sm1_start below. |
/* If you change the above, you need to change the argc of Sm1_start below. |
*/ |
*/ |
|
|
if (argc > 1) { |
if (argc > 1) { |
if (strcmp(argv[1],"-monitor")==0) { |
if (strcmp(argv[1],"-monitor")==0) { |
fprintf(stderr,"Taking the packet monitor.\n"); |
fprintf(stderr,"Taking the packet monitor.\n"); |
PacketMonitor = 1; |
PacketMonitor = 1; |
|
}else if (strcmp(argv[1],"-lispLike")==0) { |
|
fprintf(stderr,"Output lispLike expression.\n"); |
|
Lisplike = 1; |
|
}else if (strcmp(argv[1],"-noexec")==0) { |
|
fprintf(stderr,"I do not execute commands.\n"); |
|
NoExecution = 1; |
}else{ |
}else{ |
fprintf(stderr,"Unknown option. Possible options are -monitor\n"); |
fprintf(stderr,"Unknown option. Possible options are -monitor\n"); |
} |
} |
Line 58 main(int argc, char *argv[]) { |
|
Line 73 main(int argc, char *argv[]) { |
|
Sm1_start(0, NULL, "ox_sm1"); |
Sm1_start(0, NULL, "ox_sm1"); |
} |
} |
|
|
nullserver(3); |
nullserver(3,4); |
} |
} |
|
|
static char *getSuffix(char *s) { |
static char *getSuffix(char *s) { |
/* getSuffix("ox_sm1_forAsir") returns "forAsir" */ |
/* getSuffix("ox_sm1_forAsir") returns "forAsir" */ |
|
/* getSuffix("ox_sm1_forAsir.exe") returns "forAsir" */ |
/* getSuffix("ox_sm1_gnuplot") returns "gnuplot" */ |
/* getSuffix("ox_sm1_gnuplot") returns "gnuplot" */ |
int n,i,k; |
int n,i,k; |
n = strlen(s); |
n = strlen(s); |
|
if (n > 5 && (strcmp(".exe",&(s[n-4]))==0 || strcmp(".EXE",&(s[n-4]))==0)) { |
|
s[n-4] = '\0'; |
|
} |
for (i=n-1; i>=0; i--) { |
for (i=n-1; i>=0; i--) { |
if (s[i] == '_') { |
if (s[i] == '_') { |
return( s+i+1 ); |
return( s+i+1 ); |
Line 73 static char *getSuffix(char *s) { |
|
Line 92 static char *getSuffix(char *s) { |
|
} |
} |
return(s); |
return(s); |
} |
} |
nullserver(int fdStream) { |
nullserver(int fdStreamIn,int fdStreamOut) { |
int mtag; |
int mtag; |
int message = 1; |
int message = 1; |
ox_stream ostream; |
ox_stream ostreamIn; |
|
ox_stream ostreamOut; |
char sreason[1024]; |
char sreason[1024]; |
extern void controlResetHandler(); |
extern void controlResetHandler(); |
|
#if defined(__CYGWIN__) |
|
extern sigjmp_buf EnvOfStackMachine; |
|
#else |
extern jmp_buf EnvOfStackMachine; |
extern jmp_buf EnvOfStackMachine; |
|
#endif |
int engineByteOrder; |
int engineByteOrder; |
|
|
engineByteOrder = oxTellMyByteOrder(fdStream); |
/* for debug, use -monitor |
|
PacketMonitor = 1; */ |
|
|
|
fflush(NULL); |
|
engineByteOrder = oxTellMyByteOrder(fdStreamOut,fdStreamIn); |
/* Set the network byte order. */ |
/* Set the network byte order. */ |
fprintf(stderr,"engineByteOrder=%x\n",engineByteOrder); |
fprintf(stderr,"engineByteOrder=%x\n",engineByteOrder); |
|
|
if (fdStream != -1) { |
if (fdStreamIn != -1) { |
ostream = fp2open(fdStream); |
ostreamIn = fp2open(fdStreamIn); |
if (ostream == NULL) { |
if (ostreamIn == NULL) { |
fprintf(stderr,"fp2open(fdStream) failed.\n"); |
fprintf(stderr,"fp2open(fdStreamIn) failed.\n"); |
fdStream = -1; |
fdStreamIn = -1; |
} |
} |
if (PacketMonitor) fp2watch(ostream,stdout); |
if (PacketMonitor) fp2watch(ostreamIn,stdout); |
} |
} |
|
if (fdStreamOut != -1) { |
|
ostreamOut = fp2open(fdStreamOut); |
|
if (ostreamOut == NULL) { |
|
fprintf(stderr,"fp2open(fdStreamOut) failed.\n"); |
|
fdStreamOut = -1; |
|
} |
|
if (PacketMonitor) fp2watch(ostreamOut,stdout); |
|
} |
|
|
aaa : ; |
aaa : ; |
|
#if defined(__CYGWIN__) |
|
if (sigsetjmp(EnvOfChildServer,1)) { |
|
#else |
if (setjmp(EnvOfChildServer)) { |
if (setjmp(EnvOfChildServer)) { |
|
#endif |
fprintf(stderr,"childServerMain: jump here.\n"); |
fprintf(stderr,"childServerMain: jump here.\n"); |
if (OxInterruptFlag == 0) { |
if (OxInterruptFlag == 0) { |
fprintf(stderr," ?! \n"); fflush(NULL); |
fprintf(stderr," ?! \n"); fflush(NULL); |
} |
} |
|
if (!Calling_ctrlC_hook) { |
|
Calling_ctrlC_hook = 1; RestrictedMode = 0; |
|
KSexecuteString(" ctrlC-hook "); /* Execute User Defined functions. */ |
|
RestrictedMode = RestrictedMode_saved; |
|
} |
|
Calling_ctrlC_hook = 0; |
|
KSexecuteString(" (Computation is interrupted.) "); |
signal(SIGUSR1,controlResetHandler); goto aaa; |
signal(SIGUSR1,controlResetHandler); goto aaa; |
} else { |
} else { |
if (JmpMessage) fprintf(stderr,"Set EnvOfChildServer.\n"); |
if (JmpMessage) fprintf(stderr,"Set EnvOfChildServer.\n"); |
signal(SIGUSR1,controlResetHandler); |
signal(SIGUSR1,controlResetHandler); |
} |
} |
|
#if defined(__CYGWIN__) |
|
if (sigsetjmp(EnvOfStackMachine,1)) { |
|
#else |
if (setjmp(EnvOfStackMachine)) { |
if (setjmp(EnvOfStackMachine)) { |
fprintf(stderr,"childServerMain: jump here by EnvOfStackMachine.\n"); |
#endif |
|
fprintf(stderr,"childServerMain: jump here by EnvOfStackMachine or timeout.\n"); |
if (OxInterruptFlag == 0) { |
if (OxInterruptFlag == 0) { |
fprintf(stderr," ?! \n"); fflush(NULL); |
fprintf(stderr," ?! \n"); fflush(NULL); |
} |
} |
/* In case of error in the stack machine, pop the error info |
/* In case of error in the stack machine, pop the error info |
and send the error packet. */ |
and send the error packet. */ |
/* oxSendOXheader(ostream,OX_DATA,SerialOX++); |
/* oxSendOXheader(ostream,OX_DATA,SerialOX++); |
oxSendCmoError(ostream); |
oxSendCmoError(ostream); |
oxSendOXheader(ostream,OX_DATA,SerialOX++); |
oxSendOXheader(ostream,OX_DATA,SerialOX++); |
sprintf(sreason,"Jump here by sm1 error."); |
sprintf(sreason,"Jump here by sm1 error."); |
oxSendCmoError2(ostream,sreason); |
oxSendCmoError2(ostream,sreason); |
*/ |
*/ |
Sm1_pushError2(SerialCurrent,-1,"Global jump by sm1 error"); |
Sm1_pushError2(SerialCurrent,-1,"Global jump by sm1 error"); |
|
|
|
if (!Calling_ctrlC_hook) { |
|
Calling_ctrlC_hook = 1; RestrictedMode = 0; |
|
KSexecuteString(" ctrlC-hook "); /* Execute User Defined functions. */ |
|
RestrictedMode = RestrictedMode_saved; |
|
} |
|
Calling_ctrlC_hook = 0; |
signal(SIGUSR1,controlResetHandler); goto aaa ; |
signal(SIGUSR1,controlResetHandler); goto aaa ; |
} else { |
} else { |
if (JmpMessage) fprintf(stderr,"Set EnvOfStackMachine.\n"); |
if (JmpMessage) fprintf(stderr,"Set EnvOfStackMachine.\n"); |
Line 130 nullserver(int fdStream) { |
|
Line 187 nullserver(int fdStream) { |
|
} |
} |
|
|
while (1) { |
while (1) { |
message = OXprintMessage; |
message = OXprintMessage; |
if (OxInterruptFlag) { |
if (OxInterruptFlag) { |
OxCritical = 1; |
OxCritical = 1; |
if (message) {fprintf(stderr,"Clearing the read buffer.\n");fflush(NULL); } |
if (message) {fprintf(stderr,"Clearing the read buffer.\n");fflush(NULL); } |
fp2clearReadBuf(ostream); /* clear the read buffer */ |
fp2clearReadBuf(ostreamIn); /* clear the read buffer */ |
if (message) {fprintf(stderr,"Throwing OX_SYNC_BALL\n"); fflush(NULL);} |
if (message) {fprintf(stderr,"Throwing OX_SYNC_BALL\n"); fflush(NULL);} |
oxSendSyncBall(ostream); |
oxSendSyncBall(ostreamOut); |
if (message) {fprintf(stderr,"Waiting for OX_SYNC_BALL\n");fflush(NULL);} |
if (message) {fprintf(stderr,"Waiting for OX_SYNC_BALL\n");fflush(NULL);} |
oxWaitSyncBall(ostream); |
oxWaitSyncBall(ostreamIn); |
if (message) {fprintf(stderr,"Done changing OX_SYNC_BALL\n"); fflush(NULL);} |
if (message) {fprintf(stderr,"Done changing OX_SYNC_BALL\n"); fflush(NULL);} |
OxInterruptFlag = 0; |
OxInterruptFlag = 0; |
OxCritical = 0; |
OxCritical = 0; |
goto aaa ; |
goto aaa ; |
} |
} |
OxCritical = 0; |
OxCritical = 0; |
if (fp2select(ostream,-1)) { |
if (fp2select(ostreamIn,-1)) { |
/* If there is an data in the ostream, then read data in the buffer and |
/* If there is an data in the ostream, then read data in the buffer and |
read data in the communication stream. */ |
read data in the communication stream. */ |
OxCritical = 1; |
OxCritical = 1; |
Line 154 nullserver(int fdStream) { |
|
Line 211 nullserver(int fdStream) { |
|
/* This part is never reached. */ |
/* This part is never reached. */ |
} |
} |
OxCritical = 1; |
OxCritical = 1; |
mtag = oxGetOXheader(ostream,&SerialCurrent); /* get the message_tag */ |
mtag = oxGetOXheader(ostreamIn,&SerialCurrent); /* get the message_tag */ |
if (message) { |
if (message) { |
fprintf(stderr,"\nmtag is %d (serial=%d) : ",mtag,SerialCurrent); |
fprintf(stderr,"\nmtag is %d (serial=%d) : ",mtag,SerialCurrent); |
switch(mtag) { |
switch(mtag) { |
Line 162 nullserver(int fdStream) { |
|
Line 219 nullserver(int fdStream) { |
|
case OX_DATA: fprintf(stderr," OX_DATA \n"); break; |
case OX_DATA: fprintf(stderr," OX_DATA \n"); break; |
case OX_SYNC_BALL: fprintf(stderr," OX_SYNC_BALL \n"); break; |
case OX_SYNC_BALL: fprintf(stderr," OX_SYNC_BALL \n"); break; |
case -1: fprintf(stderr," End of file. Exiting the server child.\n"); |
case -1: fprintf(stderr," End of file. Exiting the server child.\n"); |
exit(); break; |
exit(0); break; |
default: fprintf(stderr," ?! \n"); break; |
default: fprintf(stderr," ?! \n"); break; |
} |
} |
} |
} |
/*sleep(2); /* for dubug OX_SYNC_BALL */ |
/*sleep(2); /* for dubug OX_SYNC_BALL */ |
switch(mtag) { |
switch(mtag) { |
case OX_COMMAND: |
case OX_COMMAND: |
nullserverCommand(ostream); |
nullserverCommand(ostreamIn,ostreamOut); |
goto aaa ; /* We always reset the jump vector. cf. memo1.txt 1998 2/13*/ |
goto aaa ; /* We always reset the jump vector. cf. memo1.txt 1998 2/13*/ |
break; |
break; |
case OX_DATA: |
case OX_DATA: |
Sm1_pushCMO(ostream); |
Sm1_pushCMO(ostreamIn); |
break; |
break; |
case OX_SYNC_BALL: |
case OX_SYNC_BALL: |
/* if (OxInterruptFlag) think about it later. */ |
/* if (OxInterruptFlag) think about it later. */ |
Line 185 nullserver(int fdStream) { |
|
Line 242 nullserver(int fdStream) { |
|
} |
} |
} |
} |
|
|
nullserverCommand(ox_stream ostream) { |
nullserverCommand(ox_stream ostreamIn,ox_stream ostreamOut) { |
int id; |
int id; |
int mtag; |
int mtag; |
int n; |
int n; |
Line 197 nullserverCommand(ox_stream ostream) { |
|
Line 254 nullserverCommand(ox_stream ostream) { |
|
char *emsg; |
char *emsg; |
extern void controlResetHandler(); |
extern void controlResetHandler(); |
|
|
message = OXprintMessage; |
message = OXprintMessage; |
/* message_body */ |
/* message_body */ |
id = oxGetInt32(ostream); /* get the function_id */ |
id = oxGetInt32(ostreamIn); /* get the function_id */ |
if (message) {fprintf(stderr,"\nfunction_id is %d\n",id);} |
if (message) {fprintf(stderr,"\nfunction_id is %d; %s\n",id,oxFIDtoStr(id));} |
switch( id ) { |
switch( id ) { |
case SM_mathcap: |
case SM_mathcap: |
if (message) fprintf(stderr," mathcap\n"); |
|
mathresult = (struct mathCap *)Sm1_mathcap(); |
mathresult = (struct mathCap *)Sm1_mathcap(); |
oxPushMathCap(mathresult); |
oxPushMathCap(mathresult); |
break; |
break; |
case SM_setMathCap: |
case SM_setMathCap: |
if (message) fprintf(stderr," setMathCap\n"); |
Sm1_setMathCap(ostreamOut); |
Sm1_setMathCap(ostream); |
|
break; |
break; |
case SM_pops: |
case SM_pops: |
if (message) fprintf(stderr," pops \n"); |
|
Sm1_pops(); |
Sm1_pops(); |
break; |
break; |
case SM_getsp: |
case SM_getsp: |
if (message) fprintf(stderr," getsp \n"); |
|
Sm1_getsp(); |
Sm1_getsp(); |
break; |
break; |
case SM_dupErrors: |
case SM_dupErrors: |
if (message) fprintf(stderr," dupErrors \n"); |
|
Sm1_dupErrors(); |
Sm1_dupErrors(); |
break; |
break; |
|
case SM_pushCMOtag: |
|
Sm1_pushCMOtag(SerialCurrent); |
|
break; |
case SM_setName: |
case SM_setName: |
if (message) fprintf(stderr," setName \n"); |
|
iresult = Sm1_setName(); |
iresult = Sm1_setName(); |
if (iresult < 0) { |
if (iresult < 0) { |
Sm1_pushError2(SerialCurrent,-1,"setName"); |
Sm1_pushError2(SerialCurrent,-1,"setName"); |
} |
} |
break; |
break; |
case SM_evalName: |
case SM_evalName: |
if (message) fprintf(stderr," evalName \n"); |
|
iresult = Sm1_evalName(); |
iresult = Sm1_evalName(); |
if (iresult < 0) { |
if (iresult < 0) { |
Sm1_pushError2(SerialCurrent,-1,"evalName"); |
Sm1_pushError2(SerialCurrent,-1,"evalName"); |
} |
} |
break; |
break; |
case SM_executeStringByLocalParser: |
case SM_executeStringByLocalParser: |
if (message) fprintf(stderr," executeStringByLocalParser\n"); |
|
OxCritical = 0; |
OxCritical = 0; |
iresult = Sm1_executeStringByLocalParser(); |
if (NoExecution) { |
|
iresult = 0; |
|
}else{ |
|
iresult = Sm1_executeStringByLocalParser(); |
|
} |
OxCritical = 1; signal(SIGUSR1,controlResetHandler); |
OxCritical = 1; signal(SIGUSR1,controlResetHandler); |
if (iresult < 0) { |
if (iresult < 0) { |
emsg = Sm1_popErrorMessage("executeString: "); |
emsg = Sm1_popErrorMessage("executeString: "); |
Line 249 nullserverCommand(ox_stream ostream) { |
|
Line 305 nullserverCommand(ox_stream ostream) { |
|
} |
} |
break; |
break; |
case SM_executeFunction: |
case SM_executeFunction: |
if (message) fprintf(stderr," executeFunction\n"); |
|
OxCritical = 0; |
OxCritical = 0; |
iresult = Sm1_executeStringByLocalParser(); |
if (NoExecution) { |
|
iresult = 0; |
|
}else{ |
|
iresult = Sm1_executeStringByLocalParser(); |
|
} |
OxCritical = 1; signal(SIGUSR1,controlResetHandler); |
OxCritical = 1; signal(SIGUSR1,controlResetHandler); |
if (iresult < 0) { |
if (iresult < 0) { |
emsg = Sm1_popErrorMessage("executeFunction: "); |
emsg = Sm1_popErrorMessage("executeFunction: "); |
Line 259 nullserverCommand(ox_stream ostream) { |
|
Line 318 nullserverCommand(ox_stream ostream) { |
|
return(-1); |
return(-1); |
} |
} |
break; |
break; |
|
case SM_executeFunctionWithOptionalArgument: |
|
OxCritical = 0; |
|
if (NoExecution) { |
|
iresult = 0; |
|
}else{ |
|
iresult = Sm1_executeStringByLocalParser(); |
|
} |
|
OxCritical = 1; signal(SIGUSR1,controlResetHandler); |
|
if (iresult < 0) { |
|
emsg = Sm1_popErrorMessage("executeFunctionWithOptionalArgument: "); |
|
Sm1_pushError2(SerialCurrent,-1,emsg); |
|
return(-1); |
|
} |
|
break; |
case SM_popCMO: |
case SM_popCMO: |
if (message) fprintf(stderr,"popCMO. Start to sending data.\n",n); |
oxSendOXheader(ostreamOut,OX_DATA,SerialOX++); |
oxSendOXheader(ostream,OX_DATA,SerialOX++); |
n=Sm1_popCMO(ostreamOut,SerialCurrent); |
n=Sm1_popCMO(ostream,SerialCurrent); |
|
if (message) fprintf(stderr,"Done.\n"); |
if (message) fprintf(stderr,"Done.\n"); |
break; |
break; |
case SM_popString: |
case SM_popString: |
if (message) fprintf(stderr,"popString. send data from the stack.\n",n); |
oxSendOXheader(ostreamOut,OX_DATA,SerialOX++); |
oxSendOXheader(ostream,OX_DATA,SerialOX++); |
oxSendCmoString(ostreamOut,Sm1_popString()); |
oxSendCmoString(ostream,Sm1_popString()); |
|
if (message) fprintf(stderr,"Done.\n"); |
if (message) fprintf(stderr,"Done.\n"); |
break; |
break; |
case SM_shutdown: |
case SM_shutdown: |
|
fprintf(stderr,"Shutting down the engine.\n"); |
|
exit(0); |
|
break; |
case SM_beginBlock: |
case SM_beginBlock: |
case SM_endBlock: |
case SM_endBlock: |
fprintf(stderr,"This command has not yet been implemented.\n"); |
fprintf(stderr,"This command has not yet been implemented.\n"); |
Line 290 nullserver_simplest(int fd) { |
|
Line 364 nullserver_simplest(int fd) { |
|
int c; |
int c; |
while(1) { |
while(1) { |
c = readOneByte(fd); |
c = readOneByte(fd); |
if (c == '@') { return; } |
if (c == '@') { return 0; } |
} |
} |
} |
} |
|
|
|
|
void controlResetHandler(sig) |
void controlResetHandler(sig) |
int sig; |
int sig; |
{ |
{ |
signal(sig,SIG_IGN); |
signal(sig,SIG_IGN); |
|
cancelAlarm(); |
fprintf(stderr,"From controlResetHandler. OxCritical = %d\n",OxCritical); |
fprintf(stderr,"From controlResetHandler. OxCritical = %d\n",OxCritical); |
OxInterruptFlag = 1; |
OxInterruptFlag = 1; |
if (OxCritical) { |
if (OxCritical) { |
return; |
return; |
}else{ |
}else{ |
|
(void) traceShowStack(); traceClearStack(); |
|
#if defined(__CYGWIN__) |
|
siglongjmp(EnvOfChildServer,2); /* returns 2 for ctrl-C */ |
|
#else |
longjmp(EnvOfChildServer,2); /* returns 2 for ctrl-C */ |
longjmp(EnvOfChildServer,2); /* returns 2 for ctrl-C */ |
|
#endif |
} |
} |
} |
} |
|
|