version 1.69, 2011/01/12 03:05:06 |
version 1.80, 2018/03/29 01:32:53 |
|
|
* OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY |
* OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.68 2010/12/12 07:38:00 ohara Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.79 2017/08/30 09:40:30 ohara Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
#include "signal.h" |
#include "signal.h" |
#include "ox.h" |
#include "ox.h" |
#include "version.h" |
#include "version.h" |
#if defined(PARI) |
|
#include "genpari.h" |
|
#endif |
|
|
|
void ox_usr1_handler(); |
char *find_asirrc(); |
int asir_ox_init(); |
int asir_ox_init(); |
|
|
/* environement is defined in libpari.a */ |
/* environement is defined in libpari.a */ |
|
#if 0 |
# if !( PARI_VERSION_CODE > 131588) |
# if !( PARI_VERSION_CODE > 131588) |
extern jmp_buf environnement; |
extern jmp_buf environnement; |
# endif |
# endif |
|
#endif |
extern int myrank_102,nserver_102; |
extern int myrank_102,nserver_102; |
|
|
extern int do_message; |
extern int do_message; |
Line 116 static void asir_executeFunctionSync(int); |
|
Line 115 static void asir_executeFunctionSync(int); |
|
extern int mpi_nprocs,mpi_myid; |
extern int mpi_nprocs,mpi_myid; |
|
|
void ox_mpi_master_init() { |
void ox_mpi_master_init() { |
int i,idx; |
int i,idx; |
|
|
for ( i = 0; i < mpi_nprocs; i++ ) { |
for ( i = 0; i < mpi_nprocs; i++ ) { |
/* ordering information is not exchanged */ |
/* ordering information is not exchanged */ |
/* idx should be equal to i */ |
/* idx should be equal to i */ |
idx = get_iofp(i,0,0); |
idx = get_iofp(i,0,0); |
register_server(0,idx,idx,-1); |
register_server(0,idx,idx,-1); |
} |
} |
} |
} |
|
|
void ox_mpi_slave_init() { |
void ox_mpi_slave_init() { |
int i,idx; |
int i,idx; |
|
|
endian_init(); |
endian_init(); |
fclose(stdin); |
fclose(stdin); |
for ( i = 0; i < mpi_nprocs; i++ ) { |
for ( i = 0; i < mpi_nprocs; i++ ) { |
/* ordering information is not exchanged */ |
/* ordering information is not exchanged */ |
/* idx should be equal to i */ |
/* idx should be equal to i */ |
idx = get_iofp(i,0,0); |
idx = get_iofp(i,0,0); |
register_server(0,idx,idx,-1); |
register_server(0,idx,idx,-1); |
} |
} |
asir_OperandStackSize = BUFSIZ; |
asir_OperandStackSize = BUFSIZ; |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStackPtr = -1; |
asir_OperandStackPtr = -1; |
} |
} |
#endif |
#endif |
|
|
void ox_main(int argc,char **argv) { |
void ox_main(int argc,char **argv) { |
int id; |
int id; |
int cmd; |
int cmd; |
Obj obj; |
Obj obj; |
ERR err; |
ERR err; |
unsigned int serial; |
unsigned int serial; |
int ret; |
int ret; |
|
|
ox_asir_init(argc,argv,"ox_asir"); |
ox_asir_init(argc,argv,"ox_asir"); |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"I'm an ox_asir, Version %d.\n",ASIR_VERSION); |
fprintf(stderr,"I'm an ox_asir, Version %d.\n",ASIR_VERSION); |
if ( SETJMP(ox_env) ) { |
if ( SETJMP(ox_env) ) { |
while ( NEXT(asir_infile) ) |
while ( NEXT(asir_infile) ) |
closecurrentinput(); |
closecurrentinput(); |
resetpvs(); |
resetpvs(); |
reset_engine(); |
reset_engine(); |
reset_io(); |
reset_io(); |
ox_send_sync(0); |
ox_send_sync(0); |
} |
} |
while ( 1 ) { |
while ( 1 ) { |
extern int recv_intr; |
serial = ox_recv(0,&id,&obj); |
|
#if defined(VISUAL) || defined(__MINGW32__) |
serial = ox_recv(0,&id,&obj); |
check_intr(); |
#if defined(VISUAL) |
|
if ( recv_intr ) { |
|
if ( recv_intr == 1 ) { |
|
recv_intr = 0; |
|
int_handler(SIGINT); |
|
} else { |
|
recv_intr = 0; |
|
ox_usr1_handler(0); |
|
} |
|
} |
|
#endif |
#endif |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"#%d Got %s",serial,name_of_id(id)); |
fprintf(stderr,"#%d Got %s",serial,name_of_id(id)); |
switch ( id ) { |
switch ( id ) { |
case OX_COMMAND: |
case OX_COMMAND: |
cmd = ((USINT)obj)->body; |
cmd = ((USINT)obj)->body; |
if ( ox_flushing ) |
if ( ox_flushing ) |
break; |
break; |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr," %s\n",name_of_cmd(cmd)); |
fprintf(stderr," %s\n",name_of_cmd(cmd)); |
if ( ret = SETJMP(main_env) ) { |
if ( ret = SETJMP(main_env) ) { |
if ( ret == 1 ) { |
if ( ret == 1 ) { |
create_error(&err,serial,LastError,LastStackTrace); |
create_error(&err,serial,LastError,LastStackTrace); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
while ( NEXT(asir_infile) ) |
while ( NEXT(asir_infile) ) |
closecurrentinput(); |
closecurrentinput(); |
resetpvs(); |
resetpvs(); |
} |
} |
break; |
break; |
} |
} |
asir_do_cmd(cmd,serial); |
asir_do_cmd(cmd,serial); |
break; |
break; |
case OX_DATA: |
case OX_DATA: |
case OX_LOCAL_OBJECT_ASIR: |
case OX_LOCAL_OBJECT_ASIR: |
if ( ox_flushing ) |
if ( ox_flushing ) |
break; |
break; |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr," -> data pushed"); |
fprintf(stderr," -> data pushed"); |
asir_push_one(obj); |
asir_push_one(obj); |
break; |
break; |
case OX_SYNC_BALL: |
case OX_SYNC_BALL: |
asir_end_flush(); |
asir_end_flush(); |
break; |
break; |
default: |
default: |
break; |
break; |
} |
} |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"\n"); |
fprintf(stderr,"\n"); |
} |
} |
} |
} |
|
|
static void asir_do_cmd(int cmd,unsigned int serial) |
static void asir_do_cmd(int cmd,unsigned int serial) |
{ |
{ |
MATHCAP client_mathcap; |
MATHCAP client_mathcap; |
Q q; |
Q q; |
int i; |
int i; |
LIST list; |
LIST list; |
|
|
switch ( cmd ) { |
switch ( cmd ) { |
case SM_dupErrors: |
case SM_dupErrors: |
list = asir_GetErrorList(); |
list = asir_GetErrorList(); |
asir_push_one((Obj)list); |
asir_push_one((Obj)list); |
break; |
break; |
case SM_getsp: |
case SM_getsp: |
i = asir_OperandStackPtr+1; |
i = asir_OperandStackPtr+1; |
STOQ(i,q); |
STOQ(i,q); |
asir_push_one((Obj)q); |
asir_push_one((Obj)q); |
break; |
break; |
case SM_popSerializedLocalObject: |
case SM_popSerializedLocalObject: |
asir_popSerializedLocalObject(); |
asir_popSerializedLocalObject(); |
break; |
break; |
case SM_popCMO: |
case SM_popCMO: |
asir_popCMO(serial); |
asir_popCMO(serial); |
break; |
break; |
case SM_popString: |
case SM_popString: |
asir_popString(); |
asir_popString(); |
break; |
break; |
case SM_setName: |
case SM_setName: |
asir_setName(serial); |
asir_setName(serial); |
break; |
break; |
case SM_evalName: |
case SM_evalName: |
asir_evalName(serial); |
asir_evalName(serial); |
break; |
break; |
case SM_executeStringByLocalParser: |
case SM_executeStringByLocalParser: |
asir_executeString(); |
asir_executeString(); |
break; |
break; |
case SM_executeStringByLocalParserInBatchMode: |
case SM_executeStringByLocalParserInBatchMode: |
asir_executeString(); |
asir_executeString(); |
asir_pop_one(); |
asir_pop_one(); |
break; |
break; |
case SM_executeFunction: |
case SM_executeFunction: |
asir_executeFunction(serial); |
asir_executeFunction(serial); |
break; |
break; |
case SM_executeFunctionSync: |
case SM_executeFunctionSync: |
asir_executeFunctionSync(serial); |
asir_executeFunctionSync(serial); |
break; |
break; |
case SM_shutdown: |
case SM_shutdown: |
asir_terminate(2); |
asir_terminate(2); |
break; |
break; |
case SM_pops: |
case SM_pops: |
asir_pops(); |
asir_pops(); |
break; |
break; |
case SM_mathcap: |
case SM_mathcap: |
asir_push_one((Obj)my_mathcap); |
asir_push_one((Obj)my_mathcap); |
break; |
break; |
case SM_setMathcap: |
case SM_setMathcap: |
client_mathcap = (MATHCAP)asir_pop_one(); |
client_mathcap = (MATHCAP)asir_pop_one(); |
store_remote_mathcap(0,client_mathcap); |
store_remote_mathcap(0,client_mathcap); |
break; |
break; |
case SM_pushCMOtag: |
case SM_pushCMOtag: |
asir_pushCMOtag(serial); |
asir_pushCMOtag(serial); |
break; |
break; |
case SM_set_rank_102: |
case SM_set_rank_102: |
asir_set_rank_102(serial); |
asir_set_rank_102(serial); |
break; |
break; |
case SM_tcp_accept_102: |
case SM_tcp_accept_102: |
asir_tcp_accept_102(serial); |
asir_tcp_accept_102(serial); |
break; |
break; |
case SM_tcp_connect_102: |
case SM_tcp_connect_102: |
asir_tcp_connect_102(serial); |
asir_tcp_connect_102(serial); |
break; |
break; |
case SM_reset_102: |
case SM_reset_102: |
asir_reset_102(serial); |
asir_reset_102(serial); |
break; |
break; |
case SM_bcast_102: |
case SM_bcast_102: |
asir_bcast_102(serial); |
asir_bcast_102(serial); |
break; |
break; |
case SM_reduce_102: |
case SM_reduce_102: |
asir_reduce_102(serial); |
asir_reduce_102(serial); |
break; |
break; |
case SM_nop: |
case SM_nop: |
default: |
default: |
break; |
break; |
} |
} |
} |
} |
|
|
char *name_of_id(int id) |
char *name_of_id(int id) |
{ |
{ |
switch ( id ) { |
switch ( id ) { |
case OX_COMMAND: |
case OX_COMMAND: |
return "OX_COMMAND"; |
return "OX_COMMAND"; |
break; |
break; |
case OX_DATA: |
case OX_DATA: |
return "OX_DATA"; |
return "OX_DATA"; |
break; |
break; |
case OX_LOCAL_OBJECT_ASIR: |
case OX_LOCAL_OBJECT_ASIR: |
return "OX_LOCAL_OBJECT_ASIR"; |
return "OX_LOCAL_OBJECT_ASIR"; |
break; |
break; |
case OX_SYNC_BALL: |
case OX_SYNC_BALL: |
return "OX_SYNC_BALL"; |
return "OX_SYNC_BALL"; |
break; |
break; |
default: |
default: |
return "Unknown id"; |
return "Unknown id"; |
break; |
break; |
} |
} |
} |
} |
|
|
char *name_of_cmd(int cmd) |
char *name_of_cmd(int cmd) |
{ |
{ |
switch ( cmd ) { |
switch ( cmd ) { |
case SM_popSerializedLocalObject: |
case SM_popSerializedLocalObject: |
return "SM_popSerializedLocalObject"; |
return "SM_popSerializedLocalObject"; |
break; |
break; |
case SM_popCMO: |
case SM_popCMO: |
return "SM_popCMO"; |
return "SM_popCMO"; |
break; |
break; |
case SM_popString: |
case SM_popString: |
return "SM_popString"; |
return "SM_popString"; |
break; |
break; |
case SM_pops: |
case SM_pops: |
return "SM_pops"; |
return "SM_pops"; |
break; |
break; |
case SM_setName: |
case SM_setName: |
return "SM_setName"; |
return "SM_setName"; |
break; |
break; |
case SM_evalName: |
case SM_evalName: |
return "SM_evalName"; |
return "SM_evalName"; |
break; |
break; |
case SM_executeStringByLocalParser: |
case SM_executeStringByLocalParser: |
return "SM_executeString"; |
return "SM_executeString"; |
break; |
break; |
case SM_executeFunction: |
case SM_executeFunction: |
return "SM_executeFunction"; |
return "SM_executeFunction"; |
break; |
break; |
case SM_shutdown: |
case SM_shutdown: |
return "SM_shutdown"; |
return "SM_shutdown"; |
break; |
break; |
case SM_beginBlock: |
case SM_beginBlock: |
return "SM_beginBlock"; |
return "SM_beginBlock"; |
break; |
break; |
case SM_endBlock: |
case SM_endBlock: |
return "SM_endBlock"; |
return "SM_endBlock"; |
break; |
break; |
case SM_mathcap: |
case SM_mathcap: |
return "SM_mathcap"; |
return "SM_mathcap"; |
break; |
break; |
case SM_setMathcap: |
case SM_setMathcap: |
return "SM_setMathcap"; |
return "SM_setMathcap"; |
break; |
break; |
case SM_getsp: |
case SM_getsp: |
return "SM_setMathcap"; |
return "SM_setMathcap"; |
break; |
break; |
case SM_dupErrors: |
case SM_dupErrors: |
return "SM_dupErrors"; |
return "SM_dupErrors"; |
break; |
break; |
case SM_nop: |
case SM_nop: |
return "SM_nop"; |
return "SM_nop"; |
case SM_pushCMOtag: |
case SM_pushCMOtag: |
return "SM_pushCMOtag"; |
return "SM_pushCMOtag"; |
case SM_set_rank_102: |
case SM_set_rank_102: |
return "SM_set_rank_102"; |
return "SM_set_rank_102"; |
break; |
break; |
case SM_tcp_accept_102: |
case SM_tcp_accept_102: |
return "SM_tcp_accept_102"; |
return "SM_tcp_accept_102"; |
break; |
break; |
case SM_tcp_connect_102: |
case SM_tcp_connect_102: |
return "SM_tcp_connect_102"; |
return "SM_tcp_connect_102"; |
case SM_reset_102: |
case SM_reset_102: |
return "SM_reset_102"; |
return "SM_reset_102"; |
break; |
break; |
case SM_bcast_102: |
case SM_bcast_102: |
return "SM_bcast_102"; |
return "SM_bcast_102"; |
break; |
break; |
case SM_reduce_102: |
case SM_reduce_102: |
return "SM_reduce_102"; |
return "SM_reduce_102"; |
break; |
break; |
case SM_executeFunctionSync: |
case SM_executeFunctionSync: |
return "SM_executeFunctionSync"; |
return "SM_executeFunctionSync"; |
break; |
break; |
default: |
default: |
return "Unknown cmd"; |
return "Unknown cmd"; |
break; |
break; |
} |
} |
} |
} |
|
|
LIST asir_GetErrorList() |
LIST asir_GetErrorList() |
{ |
{ |
int i; |
int i; |
NODE n,n0; |
NODE n,n0; |
LIST err; |
LIST err; |
Obj obj; |
Obj obj; |
|
|
for ( i = 0, n0 = 0; i <= asir_OperandStackPtr; i++ ) |
for ( i = 0, n0 = 0; i <= asir_OperandStackPtr; i++ ) |
if ( (obj = asir_OperandStack[i]) && (OID(obj) == O_ERR) ) { |
if ( (obj = asir_OperandStack[i]) && (OID(obj) == O_ERR) ) { |
NEXTNODE(n0,n); BDY(n) = (pointer)obj; |
NEXTNODE(n0,n); BDY(n) = (pointer)obj; |
} |
} |
if ( n0 ) |
if ( n0 ) |
NEXT(n) = 0; |
NEXT(n) = 0; |
MKLIST(err,n0); |
MKLIST(err,n0); |
return err; |
return err; |
} |
} |
|
|
void asir_popSerializedLocalObject() |
void asir_popSerializedLocalObject() |
{ |
{ |
Obj obj; |
Obj obj; |
VL t,vl; |
VL t,vl; |
|
|
obj = asir_pop_one(); |
obj = asir_pop_one(); |
get_vars_recursive(obj,&vl); |
get_vars_recursive(obj,&vl); |
for ( t = vl; t; t = NEXT(t) ) |
for ( t = vl; t; t = NEXT(t) ) |
if ( t->v->attr == (pointer)V_UC ) |
if ( t->v->attr == (pointer)V_UC ) |
error("bsave : not implemented"); |
error("bsave : not implemented"); |
ox_send_cmd(0,SM_beginBlock); |
ox_send_cmd(0,SM_beginBlock); |
ox_send_local_ring(0,vl); |
ox_send_local_ring(0,vl); |
ox_send_local_data(0,obj); |
ox_send_local_data(0,obj); |
ox_send_cmd(0,SM_endBlock); |
ox_send_cmd(0,SM_endBlock); |
} |
} |
|
|
void asir_popCMO(unsigned int serial) |
void asir_popCMO(unsigned int serial) |
{ |
{ |
Obj obj; |
Obj obj; |
ERR err; |
ERR err; |
|
|
obj = asir_pop_one(); |
obj = asir_pop_one(); |
if ( valid_as_cmo(obj) ) |
if ( valid_as_cmo(obj) ) |
ox_send_data(0,obj); |
ox_send_data(0,obj); |
else { |
else { |
create_error(&err,serial,"cannot convert to CMO object",0); |
create_error(&err,serial,"cannot convert to CMO object",0); |
ox_send_data(0,err); |
ox_send_data(0,err); |
asir_push_one(obj); |
asir_push_one(obj); |
} |
} |
} |
} |
|
|
void asir_reduce_102(unsigned int serial) |
void asir_reduce_102(unsigned int serial) |
{ |
{ |
Q r; |
Q r; |
int root; |
int root; |
Obj data,obj; |
Obj data,obj; |
ERR err; |
ERR err; |
STRING op; |
STRING op; |
char *opname; |
char *opname; |
void (*func)(); |
void (*func)(); |
|
|
func = 0; |
func = 0; |
op = (STRING)asir_pop_one(); |
op = (STRING)asir_pop_one(); |
opname = BDY(op); |
opname = BDY(op); |
r = (Q)asir_pop_one(); |
r = (Q)asir_pop_one(); |
root = QTOS(r); |
root = QTOS(r); |
if ( !strcmp(opname,"+") ) |
if ( !strcmp(opname,"+") ) |
func = arf_add; |
func = arf_add; |
else if ( !strcmp(opname,"*") ) |
else if ( !strcmp(opname,"*") ) |
func = arf_mul; |
func = arf_mul; |
if ( !func ) { |
if ( !func ) { |
create_error(&err,serial,"Invalid opration in ox_reduce_102",0); |
create_error(&err,serial,"Invalid opration in ox_reduce_102",0); |
asir_push_one(obj); |
asir_push_one(obj); |
} else |
} else |
ox_reduce_102(root,func); |
ox_reduce_102(root,func); |
} |
} |
|
|
void asir_bcast_102(unsigned int serial) |
void asir_bcast_102(unsigned int serial) |
{ |
{ |
Q r; |
Q r; |
int root; |
int root; |
Obj data; |
Obj data; |
|
|
r = (Q)asir_pop_one(); |
r = (Q)asir_pop_one(); |
root = QTOS(r); |
root = QTOS(r); |
ox_bcast_102(root); |
ox_bcast_102(root); |
} |
} |
|
|
void asir_reset_102(unsigned int serial) |
void asir_reset_102(unsigned int serial) |
{ |
{ |
int i,j,id; |
int i,j,id; |
Obj obj; |
Obj obj; |
|
|
for ( i = 0; i < myrank_102; i++ ) |
for ( i = 0; i < myrank_102; i++ ) |
do { |
do { |
ox_recv_102(i,&id,&obj); |
ox_recv_102(i,&id,&obj); |
} while ( id != OX_SYNC_BALL ); |
} while ( id != OX_SYNC_BALL ); |
for ( i = myrank_102+1; i < nserver_102; i++ ) |
for ( i = myrank_102+1; i < nserver_102; i++ ) |
ox_send_sync_102(i); |
ox_send_sync_102(i); |
} |
} |
|
|
void asir_set_rank_102(unsigned int serial) |
void asir_set_rank_102(unsigned int serial) |
{ |
{ |
Obj obj; |
Obj obj; |
Q rank,nserver; |
Q rank,nserver; |
int n,r,stat; |
int n,r,stat; |
NODE arg; |
NODE arg; |
ERR err; |
ERR err; |
|
|
rank = (Q)asir_pop_one(); |
rank = (Q)asir_pop_one(); |
nserver = (Q)asir_pop_one(); |
nserver = (Q)asir_pop_one(); |
stat = 0; |
stat = 0; |
if ( !nserver || !INT(nserver) || !INT(rank) ) { |
if ( !nserver || !INT(nserver) || !INT(rank) ) { |
stat = -1; |
stat = -1; |
} else { |
} else { |
n = QTOS(nserver); r = QTOS(rank); |
n = QTOS(nserver); r = QTOS(rank); |
if ( n <= 0 || r < 0 || r >= n ) { |
if ( n <= 0 || r < 0 || r >= n ) { |
stat = -1; |
stat = -1; |
} |
} |
myrank_102 = r; |
myrank_102 = r; |
nserver_102 = n; |
nserver_102 = n; |
} |
} |
if ( !stat ) return; |
if ( !stat ) return; |
else { |
else { |
create_error(&err,serial,"Invalid argument(s) in ox_set_rank_102",0); |
create_error(&err,serial,"Invalid argument(s) in ox_set_rank_102",0); |
asir_push_one(obj); |
asir_push_one(obj); |
} |
} |
} |
} |
|
|
void asir_tcp_accept_102(unsigned int serial) |
void asir_tcp_accept_102(unsigned int serial) |
{ |
{ |
Obj obj; |
Obj obj; |
Q r,p; |
Q r,p; |
ERR err; |
ERR err; |
char port_str[BUFSIZ]; |
char port_str[BUFSIZ]; |
int port,s,use_unix,rank; |
int port,s,use_unix,rank; |
|
|
r = (Q)asir_pop_one(); |
r = (Q)asir_pop_one(); |
p = (Q)asir_pop_one(); |
p = (Q)asir_pop_one(); |
if ( IS_CYGWIN || !p || NUM(p) ) { |
if ( IS_CYGWIN || !p || NUM(p) ) { |
port = QTOS(p); |
port = QTOS(p); |
sprintf(port_str,"%d",port); |
sprintf(port_str,"%d",port); |
use_unix = 0; |
use_unix = 0; |
} else { |
} else { |
strcpy(port_str,BDY((STRING)p)); |
strcpy(port_str,BDY((STRING)p)); |
use_unix = 1; |
use_unix = 1; |
} |
} |
s = try_bind_listen(use_unix,port_str); |
s = try_bind_listen(use_unix,port_str); |
s = try_accept(use_unix,s); |
s = try_accept(use_unix,s); |
rank = QTOS((Q)r); |
rank = QTOS((Q)r); |
if ( register_102(s,rank,1) < 0 ) { |
if ( register_102(s,rank,1) < 0 ) { |
create_error(&err,serial, |
create_error(&err,serial, |
"failed to bind or accept in ox_tcp_accept_102",0); |
"failed to bind or accept in ox_tcp_accept_102",0); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
} |
} |
|
|
void asir_tcp_connect_102(unsigned int serial) |
void asir_tcp_connect_102(unsigned int serial) |
{ |
{ |
Obj obj; |
Obj obj; |
Q r,p; |
Q r,p; |
STRING h; |
STRING h; |
ERR err; |
ERR err; |
char *host; |
char *host; |
char port_str[BUFSIZ]; |
char port_str[BUFSIZ]; |
int port,s,use_unix,rank; |
int port,s,use_unix,rank; |
|
|
r = (Q)asir_pop_one(); |
r = (Q)asir_pop_one(); |
p = (Q)asir_pop_one(); |
p = (Q)asir_pop_one(); |
h = (STRING)asir_pop_one(); |
h = (STRING)asir_pop_one(); |
if ( IS_CYGWIN || !p || NUM(p) ) { |
if ( IS_CYGWIN || !p || NUM(p) ) { |
port = QTOS(p); |
port = QTOS(p); |
sprintf(port_str,"%d",port); |
sprintf(port_str,"%d",port); |
use_unix = 0; |
use_unix = 0; |
host = BDY((STRING)h); |
host = BDY((STRING)h); |
} else { |
} else { |
strcpy(port_str,BDY((STRING)p)); |
strcpy(port_str,BDY((STRING)p)); |
use_unix = 1; |
use_unix = 1; |
host = 0; |
host = 0; |
} |
} |
s = try_connect(use_unix,host,port_str); |
s = try_connect(use_unix,host,port_str); |
rank = QTOS((Q)r); |
rank = QTOS((Q)r); |
if ( register_102(s,rank,1) < 0 ) { |
if ( register_102(s,rank,1) < 0 ) { |
create_error(&err,serial, |
create_error(&err,serial, |
"failed to connect in ox_tcp_connect_102",0); |
"failed to connect in ox_tcp_connect_102",0); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
} |
} |
|
|
void asir_pushCMOtag(unsigned int serial) |
void asir_pushCMOtag(unsigned int serial) |
{ |
{ |
Obj obj; |
Obj obj; |
ERR err; |
ERR err; |
USINT ui; |
USINT ui; |
int tag; |
int tag; |
|
|
obj = asir_peek_one(); |
obj = asir_peek_one(); |
if ( cmo_tag(obj,&tag) ) { |
if ( cmo_tag(obj,&tag) ) { |
MKUSINT(ui,tag); |
MKUSINT(ui,tag); |
asir_push_one((Obj)ui); |
asir_push_one((Obj)ui); |
} else { |
} else { |
create_error(&err,serial,"cannot convert to CMO object",0); |
create_error(&err,serial,"cannot convert to CMO object",0); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
} |
} |
|
|
void print_to_wfep(Obj obj) |
void print_to_wfep(Obj obj) |
{ |
{ |
asir_push_one(obj); |
asir_push_one(obj); |
asir_popString(); |
asir_popString(); |
} |
} |
|
|
extern int wfep_mode; |
extern int wfep_mode; |
|
|
void asir_popString() |
void asir_popString() |
{ |
{ |
Obj val; |
Obj val; |
char *buf; |
char *buf; |
int l; |
int l; |
STRING str; |
STRING str; |
|
|
val = asir_pop_one(); |
val = asir_pop_one(); |
if ( !val ) |
if ( !val ) |
buf = "0"; |
buf = "0"; |
else if ( wfep_mode && OID(val) == O_ERR ) { |
else if ( wfep_mode && OID(val) == O_ERR ) { |
/* XXX : for wfep */ |
/* XXX : for wfep */ |
ox_send_data(0,val); return; |
ox_send_data(0,val); return; |
} else { |
} else { |
l = estimate_length(CO,val); |
l = estimate_length(CO,val); |
buf = (char *)ALLOCA(l+1); |
buf = (char *)ALLOCA(l+1); |
soutput_init(buf); |
soutput_init(buf); |
sprintexpr(CO,val); |
sprintexpr(CO,val); |
} |
} |
MKSTR(str,buf); |
MKSTR(str,buf); |
ox_send_data(0,str); |
ox_send_data(0,str); |
} |
} |
|
|
void asir_pops() |
void asir_pops() |
{ |
{ |
int n; |
int n; |
|
|
n = (int)(((USINT)asir_pop_one())->body); |
n = (int)(((USINT)asir_pop_one())->body); |
asir_OperandStackPtr = MAX(asir_OperandStackPtr-n,-1); |
asir_OperandStackPtr = MAX(asir_OperandStackPtr-n,-1); |
} |
} |
|
|
void asir_setName(unsigned int serial) |
void asir_setName(unsigned int serial) |
{ |
{ |
char *name; |
char *name; |
int l,n; |
size_t l,n; |
char *dummy = "=0;"; |
char *dummy = "=0;"; |
SNODE snode; |
SNODE snode; |
ERR err; |
ERR err; |
|
|
name = ((STRING)asir_pop_one())->body; |
name = ((STRING)asir_pop_one())->body; |
l = strlen(name); |
l = strlen(name); |
n = l+strlen(dummy)+1; |
n = l+strlen(dummy)+1; |
parse_strp = (char *)ALLOCA(n); |
parse_strp = (char *)ALLOCA(n); |
sprintf(parse_strp,"%s%s",name,dummy); |
sprintf(parse_strp,"%s%s",name,dummy); |
if ( mainparse(&snode) ) { |
if ( mainparse(&snode) ) { |
create_error(&err,serial,"cannot set to variable",0); |
create_error(&err,serial,"cannot set to variable",0); |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} else { |
} else { |
FA1((FNODE)FA0(snode)) = (pointer)mkfnode(1,I_FORMULA,asir_pop_one()); |
FA1((FNODE)FA0(snode)) = (pointer)mkfnode(1,I_FORMULA,asir_pop_one()); |
evalstat(snode); |
evalstat(snode); |
} |
} |
} |
} |
|
|
void asir_evalName(unsigned int serial) |
void asir_evalName(unsigned int serial) |
{ |
{ |
char *name; |
char *name; |
int l,n; |
size_t l,n; |
SNODE snode; |
SNODE snode; |
ERR err; |
ERR err; |
pointer val; |
pointer val; |
|
|
name = ((STRING)asir_pop_one())->body; |
name = ((STRING)asir_pop_one())->body; |
l = strlen(name); |
l = strlen(name); |
n = l+2; |
n = l+2; |
parse_strp = (char *)ALLOCA(n); |
parse_strp = (char *)ALLOCA(n); |
sprintf(parse_strp,"%s;",name); |
sprintf(parse_strp,"%s;",name); |
if ( mainparse(&snode) ) { |
if ( mainparse(&snode) ) { |
create_error(&err,serial,"no such variable",0); |
create_error(&err,serial,"no such variable",0); |
val = (pointer)err; |
val = (pointer)err; |
} else |
} else |
val = evalstat(snode); |
val = evalstat(snode); |
asir_push_one(val); |
asir_push_one(val); |
} |
} |
|
|
char *augment_backslash(char *s) |
char *augment_backslash(char *s) |
{ |
{ |
char *p,*r; |
char *p,*r; |
int i; |
int i; |
|
|
for ( i = 0, p = s; *p; p++, i++ ) if ( *p == '\\' ) i++; |
for ( i = 0, p = s; *p; p++, i++ ) if ( *p == '\\' ) i++; |
r = (char *)MALLOC_ATOMIC((i+1)*sizeof(char)); |
r = (char *)MALLOC_ATOMIC((i+1)*sizeof(char)); |
for ( i = 0, p = s; *p; p++, i++ ) { |
for ( i = 0, p = s; *p; p++, i++ ) { |
if ( *p == '\\' ) r[i++] = '\\'; |
if ( *p == '\\' ) r[i++] = '\\'; |
r[i] = *p; |
r[i] = *p; |
} |
} |
return r; |
return r; |
} |
} |
|
|
int asir_executeString() |
int asir_executeString() |
{ |
{ |
SNODE snode; |
SNODE snode; |
pointer val; |
pointer val; |
char *cmd; |
char *cmd; |
|
#if 0 |
#if defined(PARI) |
#if defined(PARI) |
recover(0); |
recover(0); |
/* environement is defined in libpari.a */ |
/* environement is defined in libpari.a */ |
# if !(PARI_VERSION_CODE > 131588 ) |
# if !(PARI_VERSION_CODE > 131588 ) |
if ( setjmp(environnement) ) { |
if ( setjmp(environnement) ) { |
avma = top; recover(1); |
avma = top; recover(1); |
resetenv(""); |
resetenv(""); |
} |
} |
# endif |
# endif |
#endif |
#endif |
cmd = ((STRING)asir_pop_one())->body; |
#endif |
|
cmd = ((STRING)asir_pop_one())->body; |
/* XXX : probably this is useless */ |
/* XXX : probably this is useless */ |
#if 0 |
#if 0 |
parse_strp = augment_backslash(cmd); |
parse_strp = augment_backslash(cmd); |
#else |
#else |
parse_strp = cmd; |
parse_strp = cmd; |
#endif |
#endif |
asir_infile->ln = 1; |
asir_infile->ln = 1; |
if ( mainparse(&snode) ) { |
if ( mainparse(&snode) ) { |
return -1; |
return -1; |
} |
} |
val = evalstat(snode); |
val = evalstat(snode); |
if ( NEXT(asir_infile) ) { |
if ( NEXT(asir_infile) ) { |
while ( NEXT(asir_infile) ) { |
while ( NEXT(asir_infile) ) { |
if ( mainparse(&snode) ) { |
if ( mainparse(&snode) ) { |
asir_push_one(val); |
asir_push_one(val); |
return -1; |
return -1; |
} |
} |
nextbp = 0; |
nextbp = 0; |
val = evalstat(snode); |
val = evalstat(snode); |
} |
} |
} |
} |
asir_push_one(val); |
asir_push_one(val); |
return 0; |
return 0; |
} |
} |
|
|
static void asir_executeFunction(int serial) |
static void asir_executeFunction(int serial) |
{ |
{ |
char *func; |
char *func; |
int argc; |
int argc; |
FUNC f; |
FUNC f; |
Obj result; |
Obj result; |
NODE n,n1; |
NODE n,n1; |
STRING fname; |
STRING fname; |
char *path; |
char *path; |
ERR err; |
ERR err; |
Obj arg; |
Obj arg; |
static char buf[BUFSIZ]; |
static char buf[BUFSIZ]; |
|
|
arg = asir_pop_one(); |
arg = asir_pop_one(); |
if ( !arg || OID(arg) != O_STR ) { |
if ( !arg || OID(arg) != O_STR ) { |
sprintf(buf,"executeFunction : invalid function name"); |
sprintf(buf,"executeFunction : invalid function name"); |
goto error; |
goto error; |
} else |
} else |
func = ((STRING)arg)->body; |
func = ((STRING)arg)->body; |
|
|
arg = asir_pop_one(); |
arg = asir_pop_one(); |
if ( !arg || OID(arg) != O_USINT ) { |
if ( !arg || OID(arg) != O_USINT ) { |
sprintf(buf,"executeFunction : invalid argc"); |
sprintf(buf,"executeFunction : invalid argc"); |
goto error; |
goto error; |
} else |
} else |
argc = (int)(((USINT)arg)->body); |
argc = (int)(((USINT)arg)->body); |
|
|
for ( n = 0; argc; argc-- ) { |
for ( n = 0; argc; argc-- ) { |
NEXTNODE(n,n1); |
NEXTNODE(n,n1); |
BDY(n1) = (pointer)asir_pop_one(); |
BDY(n1) = (pointer)asir_pop_one(); |
} |
} |
if ( n ) |
if ( n ) |
NEXT(n1) = 0; |
NEXT(n1) = 0; |
|
|
#if 0 |
#if 0 |
if ( !strcmp(func,"load") ) { |
if ( !strcmp(func,"load") ) { |
fname = (STRING)BDY(n); |
fname = (STRING)BDY(n); |
if ( OID(fname) == O_STR ) { |
if ( OID(fname) == O_STR ) { |
searchasirpath(BDY(fname),&path); |
searchasirpath(BDY(fname),&path); |
if ( path ) { |
if ( path ) { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"loading %s\n",path); |
fprintf(stderr,"loading %s\n",path); |
execasirfile(path); |
execasirfile(path); |
} else |
} else |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"load : %s not found in the search path\n",BDY(fname)); |
fprintf(stderr,"load : %s not found in the search path\n",BDY(fname)); |
} |
} |
result = 0; |
result = 0; |
} else { |
} else { |
#endif |
#endif |
searchf(noargsysf,func,&f); |
searchf(noargsysf,func,&f); |
if ( !f ) |
if ( !f ) |
gen_searchf_searchonly(func,&f); |
gen_searchf_searchonly(func,&f); |
if ( !f ) { |
if ( !f ) { |
sprintf(buf,"executeFunction : the function %s not found",func); |
sprintf(buf,"executeFunction : the function %s not found",func); |
goto error; |
goto error; |
} else { |
} else { |
result = (Obj)bevalf(f,n); |
result = (Obj)bevalf(f,n); |
} |
} |
#if 0 |
#if 0 |
} |
} |
#endif |
#endif |
printf("executeFunction done\n"); |
printf("executeFunction done\n"); |
asir_push_one(result); |
asir_push_one(result); |
return; |
return; |
|
|
error: |
error: |
create_error(&err,serial,buf,0); |
create_error(&err,serial,buf,0); |
result = (Obj)err; |
result = (Obj)err; |
asir_push_one(result); |
asir_push_one(result); |
} |
} |
|
|
static void asir_executeFunctionSync(int serial) |
static void asir_executeFunctionSync(int serial) |
{ |
{ |
char *func; |
char *func; |
int argc,i; |
int argc,i; |
FUNC f; |
FUNC f; |
Obj result=0; |
Obj result=0; |
NODE n,n1; |
NODE n,n1; |
STRING fname; |
STRING fname; |
char *path; |
char *path; |
ERR err; |
ERR err; |
Obj arg; |
Obj arg; |
static char buf[BUFSIZ]; |
static char buf[BUFSIZ]; |
|
|
arg = asir_pop_one(); |
arg = asir_pop_one(); |
if ( !arg || OID(arg) != O_STR ) { |
if ( !arg || OID(arg) != O_STR ) { |
sprintf(buf,"executeFunction : invalid function name"); |
sprintf(buf,"executeFunction : invalid function name"); |
goto error; |
goto error; |
} else |
} else |
func = ((STRING)arg)->body; |
func = ((STRING)arg)->body; |
|
|
arg = asir_pop_one(); |
arg = asir_pop_one(); |
if ( !arg || OID(arg) != O_USINT ) { |
if ( !arg || OID(arg) != O_USINT ) { |
sprintf(buf,"executeFunction : invalid argc"); |
sprintf(buf,"executeFunction : invalid argc"); |
goto error; |
goto error; |
} else |
} else |
argc = (int)(((USINT)arg)->body); |
argc = (int)(((USINT)arg)->body); |
|
|
for ( n = 0; argc; argc-- ) { |
for ( n = 0; argc; argc-- ) { |
NEXTNODE(n,n1); |
NEXTNODE(n,n1); |
BDY(n1) = (pointer)asir_pop_one(); |
BDY(n1) = (pointer)asir_pop_one(); |
} |
} |
if ( n ) |
if ( n ) |
NEXT(n1) = 0; |
NEXT(n1) = 0; |
|
|
ox_send_data(0,ONE); |
ox_send_data(0,ONE); |
|
|
#if 0 |
#if 0 |
if ( !strcmp(func,"load") ) { |
if ( !strcmp(func,"load") ) { |
fname = (STRING)BDY(n); |
fname = (STRING)BDY(n); |
if ( OID(fname) == O_STR ) { |
if ( OID(fname) == O_STR ) { |
searchasirpath(BDY(fname),&path); |
searchasirpath(BDY(fname),&path); |
if ( path ) { |
if ( path ) { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"loading %s\n",path); |
fprintf(stderr,"loading %s\n",path); |
execasirfile(path); |
execasirfile(path); |
} else |
} else |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"load : %s not found in the search path\n",BDY(fname)); |
fprintf(stderr,"load : %s not found in the search path\n",BDY(fname)); |
} |
} |
result = 0; |
result = 0; |
} else { |
} else { |
#endif |
#endif |
searchf(noargsysf,func,&f); |
searchf(noargsysf,func,&f); |
if ( !f ) |
if ( !f ) |
searchf(sysf,func,&f); |
gen_searchf_searchonly(func,&f); |
if ( !f ) |
if ( !f ) { |
searchf(ubinf,func,&f); |
sprintf(buf,"executeFunction : the function %s not found",func); |
if ( !f ) |
goto error; |
searchf(usrf,func,&f); |
} else { |
if ( !f ) { |
result = (Obj)bevalf(f,n); |
sprintf(buf,"executeFunction : the function %s not found",func); |
} |
goto error; |
|
} else { |
|
result = (Obj)bevalf(f,n); |
|
} |
|
#if 0 |
#if 0 |
} |
} |
#endif |
#endif |
printf("executeFunctionSync done\n"); |
printf("executeFunctionSync done\n"); |
ox_send_data(0,result); |
ox_send_data(0,result); |
return; |
return; |
|
|
error: |
error: |
create_error(&err,serial,buf,0); |
create_error(&err,serial,buf,0); |
result = (Obj)err; |
result = (Obj)err; |
ox_send_data(0,result); |
ox_send_data(0,result); |
} |
} |
|
|
void asir_end_flush() |
void asir_end_flush() |
{ |
{ |
ox_flushing = 0; |
ox_flushing = 0; |
} |
} |
|
|
/* |
/* |
asir_OperandStackPtr points to the surface of the stack. |
asir_OperandStackPtr points to the surface of the stack. |
That is, the data at the stack top is |
That is, the data at the stack top is |
asir_OperandStack[asir_OperandStackPtr]. |
asir_OperandStack[asir_OperandStackPtr]. |
*/ |
*/ |
|
|
|
|
void asir_push_one(Obj obj) |
void asir_push_one(Obj obj) |
{ |
{ |
if ( !obj || OID(obj) != O_VOID ) { |
if ( !obj || OID(obj) != O_VOID ) { |
asir_OperandStackPtr++; |
asir_OperandStackPtr++; |
if ( asir_OperandStackPtr >= asir_OperandStackSize ) { |
if ( asir_OperandStackPtr >= asir_OperandStackSize ) { |
asir_OperandStackSize += BUFSIZ; |
asir_OperandStackSize += BUFSIZ; |
asir_OperandStack |
asir_OperandStack |
= (Obj *)REALLOC(asir_OperandStack, |
= (Obj *)REALLOC(asir_OperandStack, |
asir_OperandStackSize*sizeof(Obj)); |
asir_OperandStackSize*sizeof(Obj)); |
} |
} |
asir_OperandStack[asir_OperandStackPtr] = obj; |
asir_OperandStack[asir_OperandStackPtr] = obj; |
} |
} |
} |
} |
|
|
Obj asir_pop_one() { |
Obj asir_pop_one() { |
if ( asir_OperandStackPtr < 0 ) { |
if ( asir_OperandStackPtr < 0 ) { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"OperandStack underflow"); |
fprintf(stderr,"OperandStack underflow"); |
return 0; |
return 0; |
} else { |
} else { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"pop at %d\n",asir_OperandStackPtr); |
fprintf(stderr,"pop at %d\n",asir_OperandStackPtr); |
return asir_OperandStack[asir_OperandStackPtr--]; |
return asir_OperandStack[asir_OperandStackPtr--]; |
} |
} |
} |
} |
|
|
Obj asir_peek_one() { |
Obj asir_peek_one() { |
if ( asir_OperandStackPtr < 0 ) { |
if ( asir_OperandStackPtr < 0 ) { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"OperandStack underflow"); |
fprintf(stderr,"OperandStack underflow"); |
return 0; |
return 0; |
} else { |
} else { |
if ( do_message ) |
if ( do_message ) |
fprintf(stderr,"peek at %d\n",asir_OperandStackPtr); |
fprintf(stderr,"peek at %d\n",asir_OperandStackPtr); |
return asir_OperandStack[asir_OperandStackPtr]; |
return asir_OperandStack[asir_OperandStackPtr]; |
} |
} |
} |
} |
|
|
void ox_asir_init(int argc,char **argv,char *servername) |
void ox_asir_init(int argc,char **argv,char *servername) |
{ |
{ |
char ifname[BUFSIZ]; |
char *ifname; |
extern int GC_dont_gc; |
extern int GC_dont_gc; |
extern int do_asirrc; |
extern int do_asirrc; |
extern int do_server_in_X11; |
extern int do_server_in_X11; |
extern char displayname[]; |
extern char displayname[]; |
char *getenv(); |
static ox_asir_initialized = 0; |
static ox_asir_initialized = 0; |
int do_server_sav; |
FILE *ifp; |
#if !defined(VISUAL) && !defined(__MINGW32__) |
char *homedir; |
int tmp; |
char *ptr; |
|
int do_server_sav; |
|
#if !defined(VISUAL) |
|
int tmp; |
|
#endif |
#endif |
|
|
GC_init(); |
GC_init(); |
#if !defined(VISUAL) && !defined(MPI) |
#if !defined(VISUAL) && !defined(__MINGW32__) && !defined(MPI) |
do_server_in_X11 = 1; /* XXX */ |
do_server_in_X11 = 1; /* XXX */ |
#endif |
#endif |
asir_save_handler(); |
asir_save_handler(); |
|
#if 0 |
#if defined(PARI) |
#if defined(PARI) |
risa_pari_init(); |
risa_pari_init(); |
#endif |
#endif |
srandom((int)get_current_time()); |
#endif |
|
srandom((int)get_current_time()); |
|
|
rtime_init(); |
rtime_init(); |
env_init(); |
env_init(); |
endian_init(); |
endian_init(); |
cppname_init(); |
cppname_init(); |
process_args(--argc,++argv); |
process_args(--argc,++argv); |
#if defined(__CYGWIN__) |
#if defined(__CYGWIN__) |
if ( !displayname[0] ) |
if ( !displayname[0] ) |
do_server_in_X11 = 0; /* XXX */ |
do_server_in_X11 = 0; /* XXX */ |
#endif |
#endif |
output_init(); |
output_init(); |
arf_init(); |
arf_init(); |
nglob_init(); |
nglob_init(); |
glob_init(); |
glob_init(); |
sig_init(); |
sig_init(); |
tty_init(); |
tty_init(); |
debug_init(); |
debug_init(); |
pf_init(); |
pf_init(); |
sysf_init(); |
sysf_init(); |
parif_init(); |
parif_init(); |
order_init(); |
order_init(); |
#if defined(VISUAL) |
#if defined(VISUAL) || defined(__MINGW32__) |
init_socket(); |
init_socket(); |
#endif |
#endif |
#if defined(UINIT) |
#if defined(UINIT) |
reg_sysf(); |
reg_sysf(); |
#endif |
#endif |
/* if ASIR_CONFIG is set, execute it; else execute .asirrc */ |
/* the bottom of the input stack */ |
if ( ptr = getenv("ASIR_CONFIG") ) |
input_init(0,"string"); |
strcpy(ifname,ptr); |
|
else { |
|
homedir = getenv("HOME"); |
|
if ( !homedir ) { |
|
char rootname[BUFSIZ]; |
|
|
|
get_rootdir(rootname,sizeof(rootname)); |
if ( do_asirrc && (ifname = find_asirrc()) ) { |
homedir = rootname; |
do_server_sav = do_server_in_X11; |
} |
do_server_in_X11 = 0; |
sprintf(ifname,"%s/.asirrc",homedir); |
if ( !SETJMP(main_env) ) |
} |
execasirfile(ifname); |
|
do_server_in_X11 = do_server_sav; |
|
} |
|
|
/* the bottom of the input stack */ |
|
input_init(0,"string"); |
|
|
|
if ( do_asirrc && (ifp = fopen(ifname,"r")) ) { |
|
fclose(ifp); |
|
do_server_sav = do_server_in_X11; |
|
do_server_in_X11 = 0; |
|
if ( !SETJMP(main_env) ) |
|
execasirfile(ifname); |
|
do_server_in_X11 = do_server_sav; |
|
} |
|
|
|
/* XXX Windows compatibility */ |
/* XXX Windows compatibility */ |
ox_io_init(); |
ox_io_init(); |
create_my_mathcap(servername); |
create_my_mathcap(servername); |
} |
} |
|
|
void ox_io_init() { |
void ox_io_init() { |
unsigned char c,rc; |
unsigned char c,rc; |
extern int I_am_server; |
extern int I_am_server; |
|
|
/* XXX : ssh forwards stdin to a remote host on PC Unix */ |
/* XXX : ssh forwards stdin to a remote host on PC Unix */ |
#if defined(linux) |
#if defined(linux) |
#include <sys/param.h> |
#include <sys/param.h> |
int i; |
int i; |
|
|
close(0); |
close(0); |
for ( i = 5; i < NOFILE; i++ ) |
for ( i = 5; i < NOFILE; i++ ) |
close(i); |
close(i); |
#elif defined(__FreeBSD__) |
#elif defined(__FreeBSD__) |
#include <sys/resource.h> |
#include <sys/resource.h> |
int i; |
int i; |
struct rlimit rl; |
struct rlimit rl; |
|
|
getrlimit(RLIMIT_NOFILE,&rl); |
getrlimit(RLIMIT_NOFILE,&rl); |
close(0); |
close(0); |
for ( i = 5; i < rl.rlim_cur; i++ ) |
for ( i = 5; i < rl.rlim_cur; i++ ) |
close(i); |
close(i); |
#endif |
#endif |
|
|
I_am_server = 1; |
I_am_server = 1; |
endian_init(); |
endian_init(); |
#if defined(VISUAL) |
#if defined(VISUAL) || defined(__MINGW32__) |
if ( !ox_sock_id ) |
if ( !ox_sock_id ) |
exit(0); |
exit(0); |
iofp[0].in = WSIO_open(ox_sock_id,"r"); |
iofp[0].in = WSIO_open(ox_sock_id,"r"); |
iofp[0].out = WSIO_open(ox_sock_id,"w"); |
iofp[0].out = WSIO_open(ox_sock_id,"w"); |
#else |
#else |
iofp[0].in = fdopen(3,"r"); |
iofp[0].in = fdopen(3,"r"); |
iofp[0].out = fdopen(4,"w"); |
iofp[0].out = fdopen(4,"w"); |
|
|
#if !defined(__CYGWIN__) |
#if !defined(__CYGWIN__) |
setbuffer(iofp[0].in,(char *)malloc(LBUFSIZ),LBUFSIZ); |
setbuffer(iofp[0].in,(char *)malloc(LBUFSIZ),LBUFSIZ); |
setbuffer(iofp[0].out,(char *)malloc(LBUFSIZ),LBUFSIZ); |
setbuffer(iofp[0].out,(char *)malloc(LBUFSIZ),LBUFSIZ); |
#endif |
#endif |
signal(SIGUSR1,ox_usr1_handler); |
set_signal(SIGUSR1,ox_usr1_handler); |
#endif |
#endif |
asir_OperandStackSize = BUFSIZ; |
asir_OperandStackSize = BUFSIZ; |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStackPtr = -1; |
asir_OperandStackPtr = -1; |
if ( little_endian ) |
if ( little_endian ) |
c = 1; |
c = 1; |
else |
else |
c = 0xff; |
c = 0xff; |
/* server : write -> read */ |
/* server : write -> read */ |
write_char(iofp[0].out,&c); ox_flush_stream_force(0); |
write_char(iofp[0].out,&c); ox_flush_stream_force(0); |
read_char(iofp[0].in,&rc); |
read_char(iofp[0].in,&rc); |
iofp[0].conv = c == rc ? 0 : 1; |
iofp[0].conv = c == rc ? 0 : 1; |
/* XXX; for raw I/O */ |
/* XXX; for raw I/O */ |
register_server(0,0,0,-1); |
register_server(0,0,0,-1); |
} |
} |
|
|
#if !defined(VISUAL) |
#if !defined(VISUAL) && !defined(__MINGW32__) |
/* |
/* |
* Library mode functions |
* Library mode functions |
*/ |
*/ |
Line 1092 void ox_io_init() { |
|
Line 1062 void ox_io_init() { |
|
|
|
void asir_ox_push_cmo(void *cmo) |
void asir_ox_push_cmo(void *cmo) |
{ |
{ |
Obj obj; |
Obj obj; |
|
|
ox_copy_init(cmo); |
ox_copy_init(cmo); |
ox_buf_to_obj_as_cmo(&obj); |
ox_buf_to_obj_as_cmo(&obj); |
asir_push_one(obj); |
asir_push_one(obj); |
} |
} |
|
|
/* |
/* |
Line 1106 void asir_ox_push_cmo(void *cmo) |
|
Line 1076 void asir_ox_push_cmo(void *cmo) |
|
|
|
int asir_ox_pop_cmo(void *cmo, int limit) |
int asir_ox_pop_cmo(void *cmo, int limit) |
{ |
{ |
Obj obj; |
Obj obj; |
int len; |
int len; |
ERR err; |
ERR err; |
|
|
obj = asir_pop_one(); |
obj = asir_pop_one(); |
if ( !valid_as_cmo(obj) ) { |
if ( !valid_as_cmo(obj) ) { |
asir_push_one(obj); |
asir_push_one(obj); |
create_error(&err,0,"The object at the stack top is invalid as a CMO.",0); |
create_error(&err,0,"The object at the stack top is invalid as a CMO.",0); |
obj = (Obj)err; |
obj = (Obj)err; |
} |
} |
len = count_as_cmo(obj); |
len = count_as_cmo(obj); |
if ( len <= limit ) { |
if ( len <= limit ) { |
ox_copy_init(cmo); |
ox_copy_init(cmo); |
ox_obj_to_buf_as_cmo(obj); |
ox_obj_to_buf_as_cmo(obj); |
return len; |
return len; |
} else |
} else |
return -1; |
return -1; |
} |
} |
|
|
int asir_ox_pop_string(void *string, int limit) |
int asir_ox_pop_string(void *string, int limit) |
{ |
{ |
Obj val; |
Obj val; |
int l; |
int l; |
|
|
val = asir_pop_one(); |
val = asir_pop_one(); |
if ( !val ) { |
if ( !val ) { |
if ( limit >= 2 ) { |
if ( limit >= 2 ) { |
sprintf(string,"0"); |
sprintf(string,"0"); |
l = strlen(string); |
l = strlen(string); |
} else |
} else |
l = -1; |
l = -1; |
} else { |
} else { |
l = estimate_length(CO,val); |
l = estimate_length(CO,val); |
if ( l+1 <= limit ) { |
if ( l+1 <= limit ) { |
soutput_init(string); |
soutput_init(string); |
sprintexpr(CO,val); |
sprintexpr(CO,val); |
l = strlen(string); |
l = strlen(string); |
} else |
} else |
l = -1; |
l = -1; |
} |
} |
return l; |
return l; |
} |
} |
|
|
/* |
/* |
Line 1155 int asir_ox_pop_string(void *string, int limit) |
|
Line 1125 int asir_ox_pop_string(void *string, int limit) |
|
|
|
void asir_ox_push_cmd(int cmd) |
void asir_ox_push_cmd(int cmd) |
{ |
{ |
int ret; |
int ret; |
ERR err; |
ERR err; |
extern char LastError[]; |
extern char LastError[]; |
|
|
if ( ret = SETJMP(main_env) ) { |
if ( ret = SETJMP(main_env) ) { |
asir_reset_handler(); |
asir_reset_handler(); |
if ( ret == 1 ) { |
if ( ret == 1 ) { |
create_error(&err,0,LastError,LastStackTrace); /* XXX */ |
create_error(&err,0,LastError,LastStackTrace); /* XXX */ |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
} else { |
} else { |
asir_save_handler(); |
asir_save_handler(); |
asir_set_handler(); |
asir_set_handler(); |
asir_do_cmd(cmd,0); |
asir_do_cmd(cmd,0); |
asir_reset_handler(); |
asir_reset_handler(); |
} |
} |
} |
} |
|
|
/* |
/* |
Line 1179 void asir_ox_push_cmd(int cmd) |
|
Line 1149 void asir_ox_push_cmd(int cmd) |
|
|
|
void asir_ox_execute_string(char *s) |
void asir_ox_execute_string(char *s) |
{ |
{ |
STRING str; |
STRING str; |
int ret; |
int ret; |
ERR err; |
ERR err; |
extern char LastError[]; |
extern char LastError[]; |
|
|
MKSTR(str,s); |
MKSTR(str,s); |
asir_push_one((Obj)str); |
asir_push_one((Obj)str); |
if ( ret = SETJMP(main_env) ) { |
if ( ret = SETJMP(main_env) ) { |
asir_reset_handler(); |
asir_reset_handler(); |
if ( ret == 1 ) { |
if ( ret == 1 ) { |
create_error(&err,0,LastError,LastStackTrace); /* XXX */ |
create_error(&err,0,LastError,LastStackTrace); /* XXX */ |
asir_push_one((Obj)err); |
asir_push_one((Obj)err); |
} |
} |
} else { |
} else { |
asir_save_handler(); |
asir_save_handler(); |
asir_set_handler(); |
asir_set_handler(); |
asir_executeString(); |
asir_executeString(); |
asir_reset_handler(); |
asir_reset_handler(); |
} |
} |
} |
} |
|
|
/* |
/* |
Line 1207 void asir_ox_execute_string(char *s) |
|
Line 1177 void asir_ox_execute_string(char *s) |
|
|
|
int asir_ox_peek_cmo_size() |
int asir_ox_peek_cmo_size() |
{ |
{ |
Obj obj; |
Obj obj; |
int len; |
int len; |
|
|
obj = asir_peek_one(); |
obj = asir_peek_one(); |
if ( !valid_as_cmo(obj) ) { |
if ( !valid_as_cmo(obj) ) { |
fprintf(stderr,"The object at the stack top is invalid as a CMO.\n"); |
fprintf(stderr,"The object at the stack top is invalid as a CMO.\n"); |
return 0; |
return 0; |
} |
} |
len = count_as_cmo(obj); |
len = count_as_cmo(obj); |
return len; |
return len; |
} |
} |
|
|
int asir_ox_peek_cmo_string_length() |
int asir_ox_peek_cmo_string_length() |
{ |
{ |
Obj obj; |
Obj obj; |
int len; |
int len; |
|
|
obj = asir_peek_one(); |
obj = asir_peek_one(); |
if ( !valid_as_cmo(obj) ) { |
if ( !valid_as_cmo(obj) ) { |
fprintf(stderr,"The object at the stack top is invalid as a CMO.\n"); |
fprintf(stderr,"The object at the stack top is invalid as a CMO.\n"); |
return 0; |
return 0; |
} |
} |
len = estimate_length(CO,obj); |
len = estimate_length(CO,obj); |
return len+1; |
return len+1; |
} |
} |
|
|
/* |
/* |
Line 1241 int asir_ox_peek_cmo_string_length() |
|
Line 1211 int asir_ox_peek_cmo_string_length() |
|
|
|
int asir_ox_init(int byteorder) |
int asir_ox_init(int byteorder) |
{ |
{ |
int tmp; |
int tmp; |
char ifname[BUFSIZ]; |
char *ifname; |
extern int GC_dont_gc; |
extern int GC_dont_gc; |
extern int do_asirrc; |
extern int do_asirrc; |
extern int do_server_in_X11; |
extern int do_server_in_X11; |
char *getenv(); |
static ox_asir_initialized = 0; |
static ox_asir_initialized = 0; |
|
FILE *ifp; |
|
|
|
GC_init(); |
GC_init(); |
#if !defined(VISUAL) && !defined(MPI) |
#if !defined(VISUAL) && !defined(__MINGW32__) && !defined(MPI) |
do_server_in_X11 = 0; /* XXX */ |
do_server_in_X11 = 0; /* XXX */ |
#endif |
#endif |
asir_save_handler(); |
asir_save_handler(); |
|
#if 0 |
#if defined(PARI) |
#if defined(PARI) |
risa_pari_init(); |
risa_pari_init(); |
#endif |
#endif |
srandom((int)get_current_time()); |
#endif |
|
srandom((int)get_current_time()); |
|
|
rtime_init(); |
rtime_init(); |
env_init(); |
env_init(); |
endian_init(); |
endian_init(); |
/* process_args(argc,argv); */ |
/* process_args(argc,argv); */ |
output_init(); |
output_init(); |
arf_init(); |
arf_init(); |
nglob_init(); |
nglob_init(); |
glob_init(); |
glob_init(); |
sig_init(); |
sig_init(); |
tty_init(); |
tty_init(); |
debug_init(); |
debug_init(); |
pf_init(); |
pf_init(); |
sysf_init(); |
sysf_init(); |
parif_init(); |
parif_init(); |
#if defined(VISUAL) |
#if defined(VISUAL) || defined(__MINGW32__) |
init_socket(); |
init_socket(); |
#endif |
#endif |
#if defined(UINIT) |
#if defined(UINIT) |
reg_sysf(); |
reg_sysf(); |
#endif |
#endif |
input_init(0,"string"); |
input_init(0,"string"); |
sprintf(ifname,"%s/.asirrc",getenv("HOME")); |
if ( do_asirrc && (ifname = find_asirrc()) ) { |
if ( do_asirrc && (ifp = fopen(ifname,"r")) ) { |
if ( !SETJMP(main_env) ) |
fclose(ifp); |
execasirfile(ifname); |
if ( !SETJMP(main_env) ) |
} |
execasirfile(ifname); |
|
} |
|
|
|
asir_OperandStackSize = BUFSIZ; |
asir_OperandStackSize = BUFSIZ; |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj)); |
asir_OperandStackPtr = -1; |
asir_OperandStackPtr = -1; |
if ( little_endian && byteorder ) |
if ( little_endian && byteorder ) |
lib_ox_need_conv = 1; |
lib_ox_need_conv = 1; |
else |
else |
lib_ox_need_conv = 0; |
lib_ox_need_conv = 0; |
do_message = 0; |
do_message = 0; |
create_my_mathcap("ox_asir"); |
create_my_mathcap("ox_asir"); |
asir_reset_handler(); |
asir_reset_handler(); |
return 0; |
return 0; |
} |
} |
#endif |
#endif |