[BACK]Return to tcpf.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / io

Annotation of OpenXM_contrib2/asir2000/io/tcpf.c, Revision 1.31

1.10      noro        1: /*
                      2:  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
                      3:  * All rights reserved.
                      4:  *
                      5:  * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
                      6:  * non-exclusive and royalty-free license to use, copy, modify and
                      7:  * redistribute, solely for non-commercial and non-profit purposes, the
                      8:  * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
                      9:  * conditions of this Agreement. For the avoidance of doubt, you acquire
                     10:  * only a limited right to use the SOFTWARE hereunder, and FLL or any
                     11:  * third party developer retains all rights, including but not limited to
                     12:  * copyrights, in and to the SOFTWARE.
                     13:  *
                     14:  * (1) FLL does not grant you a license in any way for commercial
                     15:  * purposes. You may use the SOFTWARE only for non-commercial and
                     16:  * non-profit purposes only, such as academic, research and internal
                     17:  * business use.
                     18:  * (2) The SOFTWARE is protected by the Copyright Law of Japan and
                     19:  * international copyright treaties. If you make copies of the SOFTWARE,
                     20:  * with or without modification, as permitted hereunder, you shall affix
                     21:  * to all such copies of the SOFTWARE the above copyright notice.
                     22:  * (3) An explicit reference to this SOFTWARE and its copyright owner
                     23:  * shall be made on your publication or presentation in any form of the
                     24:  * results obtained by use of the SOFTWARE.
                     25:  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
1.11      noro       26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.10      noro       27:  * for such modification or the source code of the modified part of the
                     28:  * SOFTWARE.
                     29:  *
                     30:  * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
                     31:  * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
                     32:  * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
                     33:  * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
                     34:  * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
                     35:  * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
                     36:  * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
                     37:  * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
                     38:  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
                     39:  * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
                     40:  * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
                     41:  * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
                     42:  * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
                     43:  * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
                     44:  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
                     45:  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
                     46:  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
1.31    ! noro       47:  * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.30 2001/12/26 09:28:36 noro Exp $
1.10      noro       48: */
1.1       noro       49: #include "ca.h"
                     50: #include "parse.h"
                     51: #include "com.h"
                     52: #include <signal.h>
1.27      noro       53: #include <string.h>
1.1       noro       54: #if !defined(VISUAL)
1.28      noro       55: #include <unistd.h>
1.1       noro       56: #include <sys/types.h>
                     57: #include <pwd.h>
                     58: #endif
                     59: #include "ox.h"
                     60:
                     61: #if defined(VISUAL)
1.15      noro       62: #include <stdlib.h>
1.19      noro       63: #include <winsock2.h>
1.15      noro       64: #include <process.h>
1.1       noro       65: #endif
                     66:
                     67: #define OX_XTERM "ox_xterm"
                     68:
                     69: #if !defined(_PA_RISC1_1)
                     70: #define RSH "rsh"
                     71: #else
                     72: #define RSH "remsh"
                     73: #endif
                     74:
                     75: static struct m_c {
                     76:        int m,c,af_unix;
                     77: } *m_c_tab;
                     78:
                     79: static int m_c_i,m_c_s;
1.16      noro       80: int I_am_server;
1.1       noro       81:
                     82: #if MPI
                     83: extern int mpi_nprocs;
                     84: #define valid_mctab_index(ind)\
1.8       noro       85: if((ind)<0||(ind)>=mpi_nprocs){error("invalid server id");}
1.16      noro       86: #define check_valid_mctab_index(ind)\
                     87: if((ind)<0||(ind)>=mpi_nprocs){(ind)=-1;}
1.1       noro       88: #else
                     89: #define valid_mctab_index(ind)\
                     90: if((ind)<0||(ind)>=m_c_i||\
1.8       noro       91: ((m_c_tab[ind].m<0)&&(m_c_tab[ind].c<0))){error("invalid server id");}
1.16      noro       92: #define check_valid_mctab_index(ind)\
                     93: if((ind)<0||(ind)>=m_c_i||\
                     94: ((m_c_tab[ind].m<0)&&(m_c_tab[ind].c<0))){(ind)=-1;}
1.1       noro       95: #endif
                     96:
                     97: int register_server();
                     98: int get_mcindex(int);
                     99:
1.8       noro      100: void Pox_send_raw_cmo(), Pox_recv_raw_cmo();
                    101:
1.26      noro      102: void Pox_launch(),Pox_launch_nox();
1.1       noro      103: void Pox_launch_generic();
                    104: void Pox_shutdown();
                    105:
1.5       noro      106: void Pox_rpc(),Pox_cmo_rpc(),Pox_reset(),Pox_intr(),Pox_sync(),Pox_select();
1.1       noro      107:
                    108: void Pox_push_local(),Pox_push_cmo(),Pox_push_vl(),Pox_push_cmd();
                    109:
                    110: void Pox_pop_local(),Pox_pop_cmo();
                    111: void Pox_pop0_local(),Pox_pop0_cmo();
                    112: void Pox_pop_string(),Pox_pop0_string();
                    113: void Pox_get(),Pox_pops();
                    114:
                    115: void Pox_execute_function(),Pox_execute_string();
                    116: void Pox_setname(), Pox_evalname();
                    117: void Pox_flush();
                    118: void Pgenerate_port(),Ptry_bind_listen(),Ptry_connect(),Ptry_accept();
                    119: void Pregister_server();
                    120: void Pox_get_serverinfo();
1.8       noro      121: void Pox_mpi_myid(), Pox_mpi_nprocs();
1.1       noro      122:
                    123: void ox_launch_generic();
                    124:
                    125: pointer bevalf();
                    126:
                    127: struct ftab tcp_tab[] = {
1.8       noro      128:        {"ox_send_raw_cmo",Pox_send_raw_cmo,2},
                    129:        {"ox_recv_raw_cmo",Pox_recv_raw_cmo,1},
1.1       noro      130:        {"ox_get_serverinfo",Pox_get_serverinfo,-1},
                    131:        {"generate_port",Pgenerate_port,-1},
                    132:        {"try_bind_listen",Ptry_bind_listen,1},
                    133:        {"try_connect",Ptry_connect,2},
                    134:        {"try_accept",Ptry_accept,2},
                    135:        {"register_server",Pregister_server,4},
                    136:        {"ox_flush",Pox_flush,1},
                    137:        {"ox_launch",Pox_launch,-3},
                    138:        {"ox_launch_nox",Pox_launch_nox,-3},
                    139:        {"ox_launch_generic",Pox_launch_generic,7},
                    140:        {"ox_shutdown",Pox_shutdown,1},
                    141:
                    142:        {"ox_rpc",Pox_rpc,-99999999},
                    143:        {"ox_cmo_rpc",Pox_cmo_rpc,-99999999},
                    144:
                    145:        {"ox_sync",Pox_sync,1},
1.8       noro      146: #if MPI
                    147:        {"ox_mpi_myid",Pox_mpi_myid,0},
                    148:        {"ox_mpi_nprocs",Pox_mpi_nprocs,0},
                    149: #endif
1.1       noro      150: #if !MPI
                    151:        {"ox_reset",Pox_reset,-2},
1.5       noro      152:        {"ox_intr",Pox_intr,1},
1.1       noro      153:        {"ox_select",Pox_select,-2},
                    154: #endif
                    155:
                    156:        {"ox_pop_string",Pox_pop_string,1},
                    157:        {"ox_pop0_string",Pox_pop0_string,1},
                    158:        {"ox_pop_local",Pox_pop_local,1},
                    159:        {"ox_pop0_local",Pox_pop0_local,1},
                    160:        {"ox_pop_cmo",Pox_pop_cmo,1},
                    161:        {"ox_pop0_cmo",Pox_pop0_cmo,1},
1.3       noro      162:        {"ox_get",Pox_get,-1},
1.1       noro      163:        {"ox_pops",Pox_pops,-2},
                    164:
                    165:        {"ox_push_vl",Pox_push_vl,1},
                    166:        {"ox_push_local",Pox_push_local,-99999999},
                    167:        {"ox_push_cmo",Pox_push_cmo,-99999999},
                    168:        {"ox_push_cmd",Pox_push_cmd,2},
                    169:
                    170:        {"ox_setname",Pox_setname,2},
                    171:        {"ox_evalname",Pox_evalname,2},
                    172:
                    173:        {"ox_execute_string",Pox_execute_string,2},
                    174:        {"ox_execute_function",Pox_execute_function,3},
                    175:
                    176:
                    177:        {0,0,0},
                    178: };
                    179:
                    180: extern struct IOFP iofp[];
                    181: extern MATHCAP my_mathcap;
1.6       noro      182: extern int ox_exchange_mathcap;
1.1       noro      183:
                    184: char *getenv();
                    185:
1.8       noro      186: #if MPI
                    187: extern int mpi_myid, mpi_nprocs;
                    188:
1.26      noro      189: void Pox_mpi_myid(Q *rp)
1.8       noro      190: {
                    191:        STOQ(mpi_myid,*rp);
                    192: }
                    193:
1.26      noro      194: void Pox_mpi_nprocs(Q *rp)
1.8       noro      195: {
                    196:        STOQ(mpi_nprocs,*rp);
                    197: }
                    198: #endif
                    199:
1.26      noro      200: void Pox_get_serverinfo(NODE arg,LIST *rp)
1.1       noro      201: {
                    202:        int i,c;
1.24      noro      203:        Q s_id;
1.1       noro      204:        NODE t,n0,n;
                    205:        LIST list,l;
                    206:
                    207:        if ( !arg ) {
                    208:                for ( i = 0, n0 = 0; i < m_c_i; i++ )
1.8       noro      209:                        if ( (m_c_tab[i].m>=0) || (m_c_tab[i].c>=0) ) {
1.1       noro      210:                                c = m_c_tab[i].c;
                    211:                                ox_get_serverinfo(c,&list);
1.24      noro      212:                                STOQ(i,s_id);
                    213:                                t = mknode(2,s_id,list);
1.1       noro      214:                                MKLIST(l,t);
                    215:                                NEXTNODE(n0,n);
                    216:                                BDY(n) = (pointer)l;
                    217:                        }
                    218:                if ( n0 )
                    219:                        NEXT(n) = 0;
                    220:                MKLIST(*rp,n0);
                    221:        } else {
                    222:                i = QTOS((Q)ARG0(arg));
1.8       noro      223:                if ( i >= 0 && i < m_c_i && ((m_c_tab[i].m>=0) || (m_c_tab[i].c>=0)) )
1.1       noro      224:                        ox_get_serverinfo(m_c_tab[i].c,rp);
                    225:                else {
                    226:                        MKLIST(*rp,0);
                    227:                }
                    228:        }
                    229: }
                    230:
                    231: /*
                    232:   if noarg or arg[0]==0 then use IP socket and return a port number
                    233:   else use UNIX socket and return a string which represents a path name
                    234: */
                    235:
1.26      noro      236: void Pgenerate_port(NODE arg,Obj *rp)
1.1       noro      237: {
                    238:        char port_str[BUFSIZ];
                    239:        int port;
                    240:        char *s;
                    241:        STRING str;
                    242:        Q q;
                    243:
                    244:        if ( !arg || !ARG0(arg) ) {
                    245:                generate_port(0,port_str);
                    246:                port = atoi(port_str);
                    247:                STOQ(port,q);
                    248:                *rp = (Obj)q;
                    249:        } else {
                    250:                generate_port(1,port_str);
1.26      noro      251:                s = (char *)MALLOC(strlen((char *)port_str)+1);
1.1       noro      252:                strcpy(s,port_str);
                    253:                MKSTR(str,s);
                    254:                *rp = (Obj)str;
                    255:        }
                    256: }
                    257:
                    258: /*
                    259:  try_bind_listen(port)
                    260: */
                    261:
1.26      noro      262: void Ptry_bind_listen(NODE arg,Q *rp)
1.1       noro      263: {
                    264:        char port_str[BUFSIZ];
                    265:        int port,s,use_unix;
                    266:
1.28      noro      267:        if ( IS_CYGWIN || !ARG0(arg) || NUM(ARG0(arg)) ) {
1.1       noro      268:                port = QTOS((Q)ARG0(arg));
                    269:                sprintf(port_str,"%d",port);
                    270:                use_unix = 0;
                    271:        } else {
                    272:                strcpy(port_str,BDY((STRING)ARG0(arg)));
                    273:                use_unix = 1;
                    274:        }
                    275:        s = try_bind_listen(use_unix,port_str);
                    276:        STOQ(s,*rp);
                    277: }
                    278:
                    279: /*
                    280:  try_connect(host,port)
                    281: */
                    282:
1.26      noro      283: void Ptry_connect(NODE arg,Q *rp)
1.1       noro      284: {
                    285:        char port_str[BUFSIZ];
                    286:        char *host;
                    287:        int port,s,use_unix;
                    288:
1.28      noro      289:        if ( IS_CYGWIN || !ARG1(arg) || NUM(ARG1(arg)) ) {
1.1       noro      290:                port = QTOS((Q)ARG1(arg));
                    291:                sprintf(port_str,"%d",port);
                    292:                use_unix = 0;
                    293:        } else {
                    294:                strcpy(port_str,BDY((STRING)ARG1(arg)));
                    295:                use_unix = 1;
                    296:        }
                    297:        host = BDY((STRING)ARG0(arg));
                    298:        s = try_connect(use_unix,host,port_str);
                    299:        STOQ(s,*rp);
                    300: }
                    301:
                    302: /*
                    303:  try_accept(sock,port)
                    304: */
                    305:
1.26      noro      306: void Ptry_accept(NODE arg,Q *rp)
1.1       noro      307: {
                    308:        int use_unix,s;
                    309:
1.28      noro      310:        if ( IS_CYGWIN || !ARG1(arg) || NUM(ARG1(arg)) )
1.1       noro      311:                use_unix = 0;
                    312:        else
                    313:                use_unix = 1;
                    314:        s = try_accept(use_unix,QTOS((Q)ARG0(arg)));
                    315:        STOQ(s,*rp);
                    316: }
                    317:
                    318: /*
                    319:  register_server(cs,cport,ss,sport)
                    320: */
                    321:
1.26      noro      322: void Pregister_server(NODE arg,Q *rp)
1.1       noro      323: {
                    324:        int cs,ss,cn,sn,ind,use_unix,id;
                    325:        char cport_str[BUFSIZ],sport_str[BUFSIZ];
1.26      noro      326:        Obj obj;
1.1       noro      327:        MATHCAP server_mathcap;
                    328:
                    329:        cs = QTOS((Q)ARG0(arg));
                    330:        ss = QTOS((Q)ARG2(arg));
1.28      noro      331:        if ( IS_CYGWIN || !ARG1(arg) || NUM(ARG1(arg)) ) {
1.1       noro      332:                sprintf(cport_str,"%d",QTOS((Q)ARG1(arg)));
                    333:                use_unix = 0;
                    334:        } else {
                    335:                strcpy(cport_str,BDY((STRING)ARG1(arg)));
                    336:                use_unix = 1;
                    337:        }
                    338:        if ( !ARG3(arg) || NUM(ARG3(arg)) ) {
                    339:                if ( use_unix )
                    340:                        error("register_server : the protocol should conincide for two sockets");
                    341:                sprintf(sport_str,"%d",QTOS((Q)ARG3(arg)));
                    342:        } else {
                    343:                if ( !use_unix )
                    344:                        error("register_server : the protocol should conincide for two sockets");
                    345:                strcpy(sport_str,BDY((STRING)ARG3(arg)));
                    346:        }
                    347:
                    348:        /* client mode */
                    349:        cn = get_iofp(cs,cport_str,0);
                    350:        sn = get_iofp(ss,sport_str,0);
1.12      noro      351:        /* get_iofp returns -1 if the laucher could not spawn the server */
                    352:        if ( sn < 0 ) {
                    353:                /* we should terminate the launcher */
                    354:                ox_send_cmd(cn,SM_shutdown); ox_flush_stream_force(cn);
                    355:                STOQ(-1,*rp);
                    356:                return;
                    357:        }
1.1       noro      358:
                    359:        /* register server to the server list */
                    360:        ind = register_server(use_unix,cn,sn);
                    361:
1.6       noro      362:        if ( ox_exchange_mathcap ) {
                    363:                /* request remote mathcap */
                    364:                ox_send_cmd(sn,SM_mathcap);
                    365:                ox_send_cmd(sn,SM_popCMO);
                    366:                ox_flush_stream_force(sn);
1.26      noro      367:                ox_recv(sn,&id,&obj); server_mathcap = (MATHCAP)obj;
1.6       noro      368:                store_remote_mathcap(sn,server_mathcap);
                    369:
                    370:                /* send my mathcap */
                    371:                create_my_mathcap("asir");
                    372:                ox_send_data(sn,my_mathcap);
                    373:                ox_send_cmd(sn,SM_setMathcap);
                    374:        }
1.1       noro      375:        /* return the server id */
                    376:        STOQ(ind,*rp);
                    377: }
                    378:
                    379: /*
                    380:   ox_launch_generic(host,launcher,server,use_unix,use_ssh,use_x,conn_to_serv)
                    381:
                    382:   Input
                    383:        host: hostname on which servers run
                    384:        launcher: path name of the launcher
                    385:        server: path name of the server
                    386:        use_unix: use UNIX domain socket if 1
                    387:        use_ssh: use ssh if 1
                    388:        use_x: use X11 facilities if 1
                    389:        conn_to_serv: connect to server if 1
                    390: */
                    391:
1.26      noro      392: void Pox_launch_generic(NODE arg,Q *rp)
1.1       noro      393: {
                    394:        int use_unix,use_ssh,use_x,conn_to_serv;
                    395:        char *host,*launcher,*server;
1.26      noro      396:        Q ret;
1.1       noro      397:
                    398:        host = (arg&&ARG0(arg))?BDY((STRING)ARG0(arg)):0;
                    399:        launcher = BDY((STRING)ARG1(arg));
                    400:        server = BDY((STRING)ARG2(arg));
1.28      noro      401:        use_unix = !IS_CYGWIN && ARG3(arg) ? 1 : 0;
1.1       noro      402:        use_ssh = ARG4(arg) ? 1 : 0;
                    403:        use_x = ARG5(arg) ? 1 : 0;
                    404:        conn_to_serv = QTOS((Q)ARG6(arg));
1.28      noro      405:        if ( !IS_CYGWIN && !host )
1.1       noro      406:                use_unix = 1;
                    407:        ox_launch_generic(host,launcher,server,
1.26      noro      408:                use_unix,use_ssh,use_x,conn_to_serv,&ret);
                    409:        *rp = ret;
1.1       noro      410: }
                    411:
1.26      noro      412: void ox_launch_generic(char *host,char *launcher,char *server,
                    413:                int use_unix,int use_ssh,int use_x,int conn_to_serv,Q *rp)
1.1       noro      414: {
                    415:        int cs,ss,cn,sn,ind,id;
                    416:        char control_port_str[BUFSIZ];
                    417:        char server_port_str[BUFSIZ];
1.26      noro      418:        Obj obj;
1.1       noro      419:        MATHCAP server_mathcap;
                    420:
                    421:        control_port_str[0] = 0;
                    422:        server_port_str[0] = 0;
                    423:        do {
                    424:                generate_port(use_unix,control_port_str);
                    425:                generate_port(use_unix,server_port_str);
                    426:                if ( !conn_to_serv ) {
                    427:                        cs = try_bind_listen(use_unix,control_port_str);
                    428:                        ss = try_bind_listen(use_unix,server_port_str);
                    429:                }
                    430:                spawn_server(host,launcher,server,
                    431:                        use_unix,use_ssh,use_x,conn_to_serv,
                    432:                                control_port_str,server_port_str);
                    433:                if ( conn_to_serv ) {
                    434:                        cs = try_connect(use_unix,host,control_port_str);
                    435:                        ss = try_connect(use_unix,host,server_port_str);
                    436:                } else {
                    437:                        cs = try_accept(use_unix,cs);
                    438:                        ss = try_accept(use_unix,ss);
                    439:                }
                    440:        } while ( cs < 0 || ss < 0 );
                    441:
                    442:        /* client mode */
                    443:        cn = get_iofp(cs,control_port_str,0);
                    444:        sn = get_iofp(ss,server_port_str,0);
1.12      noro      445:        /* get_iofp returns -1 if the laucher could not spawn the server */
                    446:        if ( sn < 0 ) {
                    447:                /* we should terminate the launcher */
                    448:                ox_send_cmd(cn,SM_shutdown); ox_flush_stream_force(cn);
                    449:                STOQ(-1,*rp);
                    450:                return;
                    451:        }
1.1       noro      452:
                    453:        /* register server to the server list */
                    454:        ind = register_server(use_unix,cn,sn);
                    455:
1.6       noro      456:        if ( ox_exchange_mathcap ) {
                    457:                /* request remote mathcap */
                    458:                ox_send_cmd(sn,SM_mathcap);
                    459:                ox_send_cmd(sn,SM_popCMO);
                    460:                ox_flush_stream_force(sn);
1.26      noro      461:                ox_recv(sn,&id,&obj); server_mathcap = (MATHCAP)obj;
1.6       noro      462:                store_remote_mathcap(sn,server_mathcap);
                    463:
                    464:                /* send my mathcap */
                    465:                create_my_mathcap("asir");
                    466:                ox_send_data(sn,my_mathcap);
                    467:                ox_send_cmd(sn,SM_setMathcap);
                    468:        }
1.1       noro      469:        /* return the server id */
                    470:        STOQ(ind,*rp);
                    471: }
                    472:
1.28      noro      473: #if defined(__CYGWIN__)
1.29      noro      474: static void bslash2slash(char *buf)
                    475: {
                    476:        char *p;
                    477:
                    478:        for ( p = buf; *p; p++ )
                    479:                if ( *p == '\\' )
                    480:                        *p = '/';
                    481: }
                    482:
1.28      noro      483: static int get_start_path(char *buf)
                    484: {
                    485:        static char start_path[BUFSIZ];
                    486:        static int start_initialized = 0;
                    487:        char name[BUFSIZ];
                    488:
                    489:        if ( start_initialized ) {
                    490:                strcpy(buf,start_path);
                    491:                return 1;
                    492:        }
                    493:
                    494:        /* Windows2000 */
                    495:        strcpy(buf,"c:\\winnt\\system32\\start.exe");
                    496:        cygwin_conv_to_full_posix_path(buf,name);
                    497:        if ( !access(name,X_OK) ) {
1.29      noro      498:                bslash2slash(buf);
1.28      noro      499:                strcpy(start_path,buf);
                    500:                return 1;
                    501:        }
                    502:
                    503:        /* Windows98 */
                    504:        strcpy(buf,"c:\\windows\\command\\start.exe");
                    505:        cygwin_conv_to_full_posix_path(buf,name);
                    506:        if ( !access(name,X_OK) ) {
1.29      noro      507:                bslash2slash(buf);
1.28      noro      508:                strcpy(start_path,buf);
                    509:                return 1;
                    510:        }
                    511:
                    512:        return 0;
                    513: }
                    514:
                    515: static void get_launcher_path(char *buf)
                    516: {
                    517:        static char rootname[BUFSIZ];
                    518:        static char launcher_path[BUFSIZ];
                    519:        static int launcher_initialized = 0;
                    520:        char name[BUFSIZ];
                    521:
                    522:        if ( launcher_initialized ) {
                    523:                strcpy(buf,launcher_path);
                    524:                return;
                    525:        }
                    526:
                    527:        get_rootdir(rootname,sizeof(rootname));
                    528:        sprintf(name,"%s/ox_launch.exe",rootname);
                    529:        cygwin_conv_to_full_win32_path(name,launcher_path);
1.29      noro      530:        bslash2slash(launcher_path);
1.28      noro      531:        launcher_initialized = 1;
                    532:        strcpy(buf,launcher_path);
                    533: }
                    534: #endif
                    535:
1.26      noro      536: void spawn_server(char *host,char *launcher,char *server,
                    537:        int use_unix,int use_ssh,int use_x,int conn_to_serv,
                    538:        char *control_port_str,char *server_port_str)
1.1       noro      539: {
                    540:        char localhost[BUFSIZ];
1.31    ! noro      541:        char *dname,*conn_str,*rsh,*dname0,*asirhost;
1.15      noro      542:        char AsirExe[BUFSIZ];
                    543:        STRING rootdir;
                    544:        char prog[BUFSIZ];
                    545:        char *av[BUFSIZ];
1.26      noro      546: #if !defined(VISUAL)
                    547:        char cmd[BUFSIZ];
                    548: #endif
1.28      noro      549: #if defined(__CYGWIN__)
                    550:        char win_start[BUFSIZ],win_launcher[BUFSIZ];
                    551: #endif
1.26      noro      552:        void Pget_rootdir();
1.1       noro      553:
1.17      noro      554:        dname0 = (char *)getenv("DISPLAY");
1.23      noro      555:        if ( !dname0 )
                    556:                dname0 = "0";
1.17      noro      557:        dname = use_x ? dname0 : 0;
1.1       noro      558:        conn_str = conn_to_serv ? "1" : "0";
1.13      noro      559:        rsh = getenv("ASIR_RSH");
                    560:        if ( !rsh )
                    561:                rsh = use_ssh ? "ssh" : RSH;
1.25      noro      562:        if ( !use_unix && strstr(rsh,"ssh") ) {
1.13      noro      563:                /*
                    564:                 * if "ssh" is used to invoke a remote server,
                    565:                 * we should not specify "-display".
                    566:                 */
                    567:                use_ssh = 1;
                    568:        }
1.31    ! noro      569:        asirhost = (char *)getenv("ASIRHOSTNAME");
        !           570:        if ( asirhost )
        !           571:                strcpy(localhost,asirhost);
        !           572:        else
        !           573:                gethostname(localhost,BUFSIZ);
1.15      noro      574: #if defined(VISUAL)
                    575:        if ( !use_unix )
                    576:                error("spawn_server : not implemented on Windows");
                    577:        Pget_rootdir(&rootdir);
                    578:        sprintf(AsirExe,"%s\\bin\\engine.exe",BDY(rootdir));
                    579:        strcpy(prog,server);
                    580:        server = strrchr(prog,'/')+1;
                    581:        av[0] = "ox_launch";
                    582:        av[1] = "127.0.0.1";
                    583:        av[2] = conn_str;
                    584:        av[3] = control_port_str;
                    585:        av[4] = server_port_str;
                    586:        av[5] = server;
                    587:        av[6] = use_x ? "1" : "0";
                    588:        av[7] = 0;
                    589:
                    590:        _spawnv(_P_NOWAIT,AsirExe,av);
                    591: //     _spawnv(_P_NOWAIT,"d:\\home\\noro\\engine2000\\debug\\engine.exe",av);
                    592: //     printf("ox_launch 127.0.0.1 %s %s %s %s 0\n",conn_str,control_port_str,server_port_str,server);
                    593: #else
1.28      noro      594:        if ( use_unix || !host ) {
1.27      noro      595: #if defined(__CYGWIN__)
1.29      noro      596:                get_launcher_path(win_launcher);
1.30      noro      597:                if ( dname && strchr(dname,':') ) {
                    598:                        if ( !fork() ) {
                    599:                                setpgid(0,getpid());
                    600:                                execlp("xterm","xterm","-name",OX_XTERM,"-T","ox_launch:local","-display",dname,
                    601:                                        "-geometry","60x10","-e",launcher,use_unix?".":"127.1",conn_str,
                    602:                                        control_port_str,server_port_str,server,dname,0);
                    603:                        }
                    604:                } else if ( dname && get_start_path(win_start) ) {
                    605:                sprintf(cmd,"%s %s %s %s %s %s %s 1",
1.29      noro      606:                                win_start,win_launcher,use_unix?".":"127.1",conn_str,
                    607:                                control_port_str,server_port_str,server);
                    608:                        system(cmd);
                    609:                } else {
                    610:                        if ( !fork() ) {
                    611:                                setpgid(0,getpid());
                    612:                                execlp(launcher,launcher,use_unix?".":"127.1",conn_str,
                    613:                                        control_port_str,server_port_str,server,dname0,"-nolog",0);
1.27      noro      614:                        }
1.29      noro      615:                }
1.27      noro      616: #else
1.29      noro      617:                if ( !fork() ) {
                    618:                        setpgid(0,getpid());
1.28      noro      619:                        if ( dname )
1.13      noro      620:                                execlp("xterm","xterm","-name",OX_XTERM,"-T","ox_launch:local","-display",dname,
1.28      noro      621:                                        "-geometry","60x10","-e",launcher,use_unix?".":"127.1",conn_str,
1.1       noro      622:                                        control_port_str,server_port_str,server,dname,0);
1.27      noro      623:                        else
1.28      noro      624:                                execlp(launcher,launcher,use_unix?".":"127.1",conn_str,
1.17      noro      625:                                        control_port_str,server_port_str,server,dname0,"-nolog",0);
1.1       noro      626:                }
1.29      noro      627: #endif
1.1       noro      628:        } else if ( conn_to_serv == 2 ) {
                    629:                /* special support for java */
                    630:                if ( dname )
                    631:                        sprintf(cmd,
1.13      noro      632:                                "%s -n %s \"(cd %s; xterm -name %s %s -geometry 60x10 -e java %s -host %s -control %s -data %s)>&/dev/null&\">/dev/null",
1.1       noro      633:                                rsh,host,launcher,OX_XTERM,dname,server,localhost,control_port_str,server_port_str);
                    634:                else
                    635:                        sprintf(cmd,
                    636:                                "%s -n %s \"(cd %s; java %s -host %s -control %s -data %s)>&/dev/null&\">/dev/null",
                    637:                                rsh,host,launcher,server,localhost,
                    638:                                control_port_str,server_port_str,server);
                    639:                fprintf(stderr,"%s\n",cmd);
                    640:                sleep(20);
                    641: /*             system(cmd); */
1.15      noro      642:        } else {
1.1       noro      643:                if ( dname )
1.13      noro      644:                        if ( use_ssh )
1.25      noro      645:                                sprintf(cmd,
1.14      noro      646: "%s -f -n %s \"xterm -name %s -title ox_launch:%s -geometry 60x10 -e %s %s %s %s %s %s %s >&/dev/null\">/dev/null",
1.13      noro      647:                                rsh,host,OX_XTERM,host,launcher,localhost,conn_str,
                    648:                                control_port_str,server_port_str,server,"1");
                    649:                        else
1.25      noro      650:                                sprintf(cmd,
1.14      noro      651: "%s -n %s \"xterm -name %s -title ox_launch:%s -display %s -geometry 60x10 -e %s %s %s %s %s %s %s >&/dev/null&\">/dev/null",
1.13      noro      652:                                rsh,host,OX_XTERM,host,dname,launcher,localhost,conn_str,
1.1       noro      653:                                control_port_str,server_port_str,server,dname);
                    654:                else
1.25      noro      655:                        if ( use_ssh )
                    656:                                sprintf(cmd,
                    657: "%s -f -n %s \"%s %s %s %s %s %s %s %s>&/dev/null&\">/dev/null",
                    658:                                rsh,host,launcher,localhost,conn_str,
                    659:                                control_port_str,server_port_str,server,"1","-nolog");
                    660:                        else
                    661:                                sprintf(cmd,
1.17      noro      662: "%s -n %s \"%s %s %s %s %s %s %s %s>&/dev/null&\">/dev/null",
1.1       noro      663:                                rsh,host,launcher,localhost,conn_str,
1.17      noro      664:                                control_port_str,server_port_str,server,dname0,"-nolog");
1.1       noro      665:                system(cmd);
                    666:        }
1.15      noro      667: #endif /* VISUAL */
1.1       noro      668: }
                    669:
1.26      noro      670: void Pox_launch(NODE arg,Obj *rp)
1.1       noro      671: {
1.26      noro      672:        ox_launch_main(1,arg,rp);
1.1       noro      673: }
                    674:
1.26      noro      675: void Pox_launch_nox(NODE arg,Obj *rp)
1.1       noro      676: {
1.26      noro      677:        ox_launch_main(0,arg,rp);
1.1       noro      678: }
                    679:
                    680: /*
                    681:        ox_launch() : invoke local ox_asir
                    682:        ox_launch(0,ox_xxx) : invoke local ox_xxx with asir_libdir/ox_launch
                    683:        ox_launch(remote,lib,ox_xxx) : invoke remote ox_xxx with lib/ox_launch
                    684: */
                    685:
1.26      noro      686: void ox_launch_main(int with_x,NODE arg,Obj *p)
1.1       noro      687: {
                    688:        char *str;
1.26      noro      689:        char *hostname,*servername;
1.1       noro      690:        char *control;
                    691:        int use_unix;
1.26      noro      692:        Q ret;
1.1       noro      693:        extern char *asir_libdir;
                    694:
                    695:        if ( arg && ARG0(arg) && argc(arg) != 3 )
                    696:                error("ox_launch : argument mismatch");
                    697:        control = (char *)MALLOC(BUFSIZ);
                    698:        if ( !arg || ( !ARG0(arg) && argc(arg) == 1 ) ) {
                    699:                sprintf(control,"%s/ox_launch",asir_libdir);
1.28      noro      700:                use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      701:                servername = (char *)MALLOC(BUFSIZ);
                    702:                sprintf(servername,"%s/ox_asir",asir_libdir);
                    703:        } else if ( !ARG0(arg) && argc(arg) == 2 ) {
                    704:                sprintf(control,"%s/ox_launch",asir_libdir);
1.28      noro      705:                use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      706:                str = BDY((STRING)ARG1(arg));
                    707:                if ( str[0] == '/' )
                    708:                        servername = str;
                    709:                else {
                    710:                        servername = (char *)MALLOC(BUFSIZ);
                    711:                        sprintf(servername,"%s/%s",asir_libdir,str);
                    712:                }
                    713:        } else {
                    714:                sprintf(control,"%s/ox_launch",BDY((STRING)ARG1(arg)));
                    715:                if ( !ARG0(arg) )
1.28      noro      716:                        use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      717:                else
                    718:                        use_unix = 0;
                    719:                str = BDY((STRING)ARG2(arg));
                    720:                if ( str[0] == '/' )
                    721:                        servername = str;
                    722:                else {
                    723:                        servername = (char *)MALLOC(BUFSIZ);
                    724:                        sprintf(servername,"%s/%s",BDY((STRING)ARG1(arg)),str);
                    725:                }
                    726:        }
                    727:        if ( arg && ARG0(arg) )
                    728:                hostname = BDY((STRING)ARG0(arg));
                    729:        else
                    730:                hostname = 0;
1.26      noro      731:        ox_launch_generic(hostname,control,servername,use_unix,0,with_x,0,&ret);
                    732:        *p = (Obj)ret;
1.1       noro      733: }
                    734:
1.26      noro      735: int register_server(int af_unix,int m,int c)
1.1       noro      736: {
1.26      noro      737:        int s,i;
1.1       noro      738:        struct m_c *t;
1.9       noro      739: #define INIT_TAB_SIZ 64
1.1       noro      740:
                    741:        if ( c < 0 )
                    742:                return -1;
                    743:        if ( !m_c_tab ) {
1.9       noro      744:                s = INIT_TAB_SIZ*sizeof(struct m_c);
1.8       noro      745:                m_c_tab = (struct m_c *)MALLOC_ATOMIC(s);
1.9       noro      746:                for ( i = 0; i < INIT_TAB_SIZ; i++ ) {
1.8       noro      747:                        m_c_tab[i].af_unix = 0;
                    748:                        m_c_tab[i].m = m_c_tab[i].c = -1;
                    749:                }
1.9       noro      750:                m_c_s = INIT_TAB_SIZ;
1.1       noro      751:        }
                    752: #if !MPI
                    753:        for ( i = 0; i < m_c_i; i++ )
1.8       noro      754:                if ( (m_c_tab[i].m<0) && (m_c_tab[i].c<0) )
1.1       noro      755:                        break;
                    756:        if ( i < m_c_i ) {
                    757:                m_c_tab[i].m = m; m_c_tab[i].c = c;
                    758:                m_c_tab[i].af_unix = af_unix;
                    759:                return i;
                    760:        }
                    761: #endif
                    762:        if ( m_c_i == m_c_s ) {
1.9       noro      763:                s = (m_c_s+INIT_TAB_SIZ)*sizeof(struct m_c);
1.27      noro      764:                t = (struct m_c *)MALLOC_ATOMIC(s); bzero((void *)m_c_tab,s);
                    765:                bcopy((void *)m_c_tab,(void *)t,m_c_s*sizeof(struct m_c));
1.9       noro      766:                for ( i = 0; i < INIT_TAB_SIZ; i++ ) {
1.8       noro      767:                        m_c_tab[m_c_s+i].af_unix = 0;
                    768:                        m_c_tab[m_c_s+i].m = m_c_tab[m_c_s+i].c = -1;
                    769:                }
1.9       noro      770:                m_c_s += INIT_TAB_SIZ; m_c_tab = t;
1.1       noro      771:        }
                    772:        m_c_tab[m_c_i].m = m; m_c_tab[m_c_i].c = c;
                    773:        m_c_tab[m_c_i].af_unix = af_unix;
                    774:        return m_c_i++;
                    775: }
                    776:
                    777: /* iofp index => m_c_tab index */
                    778:
1.26      noro      779: int get_mcindex(int i)
1.1       noro      780: {
                    781:        int j;
                    782:
                    783:        for ( j = 0; j < m_c_i; j++ )
                    784:                if ( m_c_tab[j].c == i )
                    785:                        return j;
                    786:        return -1;
                    787: }
                    788:
                    789: /* arg = [ind0,ind1,...]; indk = index to m_c_tab */
                    790:
1.26      noro      791: void Pox_select(NODE arg,LIST *rp)
1.1       noro      792: {
                    793:        int fd,n,i,index,mcind;
                    794:        fd_set r,w,e;
                    795:        NODE list,t,t1;
                    796:        Q q;
                    797:        double max;
                    798:        struct timeval interval;
                    799:        struct timeval *tvp;
                    800:
                    801:        list = BDY((LIST)ARG0(arg)); arg = NEXT(arg);
                    802:        if ( arg ) {
                    803:                max = ToReal((Num)BDY(arg));
                    804:                interval.tv_sec = (int)max;
                    805:                interval.tv_usec = (int)((max-(int)max)*1000000);
                    806:                tvp = &interval;
                    807:        } else
                    808:                tvp = 0;
                    809:
                    810:        FD_ZERO(&r); FD_ZERO(&w); FD_ZERO(&e);
                    811:        for ( t = list; t; t = NEXT(t) ) {
                    812:                index = QTOS((Q)BDY(t));
                    813:                valid_mctab_index(index);
1.26      noro      814:                fd = get_fd(m_c_tab[index].c); FD_SET((unsigned int)fd,&r);
1.1       noro      815:        }
                    816:        n = select(FD_SETSIZE,&r,&w,&e,tvp);
                    817:        for ( i = 0, t = 0; n && i < FD_SETSIZE; i++ )
                    818:                if ( FD_ISSET(i,&r) ) {
                    819:                        /* index : index to iofp array */
                    820:                        index = get_index(i);
                    821:                        /* mcind : index to m_c_tab array */
                    822:                        mcind = get_mcindex(index);
                    823:                        n--; STOQ(mcind,q); MKNODE(t1,q,t); t = t1;
                    824:                }
                    825:        MKLIST(*rp,t);
                    826: }
                    827:
1.26      noro      828: void Pox_flush(NODE arg,Q *rp)
1.1       noro      829: {
                    830:        int index = QTOS((Q)ARG0(arg));
                    831:
                    832:        valid_mctab_index(index);
                    833:        ox_flush_stream_force(m_c_tab[index].c);
                    834:        *rp = ONE;
                    835: }
                    836:
1.26      noro      837: void Pox_send_raw_cmo(NODE arg,Obj *rp)
1.8       noro      838: {
                    839:        int s;
                    840:        int index = QTOS((Q)ARG0(arg));
                    841:
                    842:        valid_mctab_index(index);
                    843:        s = m_c_tab[index].c;
                    844:        ox_write_cmo(s,(Obj)ARG1(arg));
                    845:        /* flush always */
                    846:        ox_flush_stream(s);
                    847:        *rp = 0;
                    848: }
                    849:
1.26      noro      850: void Pox_recv_raw_cmo(NODE arg,Obj *rp)
1.8       noro      851: {
                    852:        int s;
                    853:        int index = QTOS((Q)ARG0(arg));
                    854:
                    855:        valid_mctab_index(index);
                    856:        s = m_c_tab[index].c;
                    857:        ox_read_cmo(s,rp);
                    858: }
                    859:
1.26      noro      860: void Pox_push_local(NODE arg,Obj *rp)
1.1       noro      861: {
                    862:        int s;
                    863:        struct oLIST dummy;
                    864:        VL vl;
                    865:        int index = QTOS((Q)ARG0(arg));
                    866:
                    867:        valid_mctab_index(index);
                    868:        s = m_c_tab[index].c; arg = NEXT(arg);
                    869:
                    870:        dummy.id = O_LIST; dummy.body = arg;
                    871:        get_vars_recursive((Obj)&dummy,&vl);
                    872:
                    873:        ox_send_local_ring(s,vl);
                    874:        for ( ; arg; arg = NEXT(arg) )
                    875:                ox_send_local_data(s,BDY(arg));
                    876:        *rp = 0;
                    877: }
                    878:
1.26      noro      879: void Pox_push_cmo(NODE arg,Obj *rp)
1.1       noro      880: {
                    881:        int s;
                    882:        int index = QTOS((Q)ARG0(arg));
                    883:
                    884:        valid_mctab_index(index);
                    885:        s = m_c_tab[index].c; arg = NEXT(arg);
                    886:        for ( ; arg; arg = NEXT(arg) )
                    887:                ox_send_data(s,BDY(arg));
                    888:        *rp = 0;
                    889: }
                    890:
1.26      noro      891: void Pox_push_vl(NODE arg,Obj *rp)
1.1       noro      892: {
                    893:        int index = QTOS((Q)ARG0(arg));
                    894:
                    895:        valid_mctab_index(index);
                    896:        ox_send_local_ring(m_c_tab[index].c,CO);
                    897:        *rp = 0;
                    898: }
                    899:
1.26      noro      900: void Pox_pop_local(NODE arg,Obj *rp)
1.1       noro      901: {
                    902:        int s;
                    903:        int index = QTOS((Q)ARG0(arg));
                    904:
                    905:        valid_mctab_index(index);
                    906:        s = m_c_tab[index].c;
                    907:        ox_send_cmd(s,SM_popSerializedLocalObject);
                    908:        ox_flush_stream_force(s);
                    909:        ox_get_result(s,rp);
                    910: }
                    911:
1.26      noro      912: void Pox_pop_cmo(NODE arg,Obj *rp)
1.1       noro      913: {
                    914:        int s;
                    915:        int index = QTOS((Q)ARG0(arg));
                    916:
                    917:        valid_mctab_index(index);
                    918:        s = m_c_tab[index].c;
                    919:        ox_send_cmd(s,SM_popCMO);
                    920:        ox_flush_stream_force(s);
                    921:        ox_get_result(s,rp);
                    922: }
                    923:
1.26      noro      924: void Pox_pop0_local(NODE arg,Obj *rp)
1.1       noro      925: {
                    926:        int index = QTOS((Q)ARG0(arg));
                    927:
                    928:        valid_mctab_index(index);
                    929:        ox_send_cmd(m_c_tab[index].c,SM_popSerializedLocalObject);
                    930:        *rp = 0;
                    931: }
                    932:
1.26      noro      933: void Pox_pop0_cmo(NODE arg,Obj *rp)
1.1       noro      934: {
                    935:        int index = QTOS((Q)ARG0(arg));
                    936:
                    937:        valid_mctab_index(index);
                    938:        ox_send_cmd(m_c_tab[index].c,SM_popCMO);
                    939:        *rp = 0;
                    940: }
                    941:
1.26      noro      942: void Pox_pop0_string(NODE arg,STRING *rp)
1.1       noro      943: {
                    944:        int index = QTOS((Q)ARG0(arg));
                    945:
                    946:        valid_mctab_index(index);
                    947:        ox_send_cmd(m_c_tab[index].c,SM_popString);
                    948:        *rp = 0;
                    949: }
                    950:
1.26      noro      951: void Pox_pop_string(NODE arg,Obj *rp)
1.1       noro      952: {
1.26      noro      953:        int s;
1.1       noro      954:        int index = QTOS((Q)ARG0(arg));
                    955:
                    956:        valid_mctab_index(index);
                    957:        s = m_c_tab[index].c;
                    958:        ox_send_cmd(s,SM_popString);
                    959:        ox_flush_stream_force(s);
                    960:        ox_get_result(s,rp);
                    961: }
                    962:
1.26      noro      963: void Pox_get(NODE arg,Obj *rp)
1.1       noro      964: {
1.3       noro      965:        int index;
1.1       noro      966:        int s;
                    967:
1.3       noro      968:        if ( !arg ) {
                    969:                /* client->server */
                    970:                ox_get_result(0,rp);
                    971:        } else {
                    972:                /* server->client */
                    973:                index = QTOS((Q)ARG0(arg));
                    974:                valid_mctab_index(index);
                    975:                s = m_c_tab[index].c;
                    976:                ox_flush_stream_force(s);
                    977:                ox_get_result(s,rp);
                    978:        }
1.1       noro      979: }
                    980:
1.26      noro      981: void Pox_pops(NODE arg,Obj *rp)
1.1       noro      982: {
                    983:        int s;
                    984:        USINT n;
                    985:        int index = QTOS((Q)ARG0(arg));
                    986:
                    987:        valid_mctab_index(index);
                    988:        s = m_c_tab[index].c;
                    989:        if ( NEXT(arg) )
                    990:                MKUSINT(n,QTOS((Q)ARG1(arg)));
                    991:        else
                    992:                MKUSINT(n,1);
                    993:        ox_send_data(s,n);
                    994:        ox_send_cmd(s,SM_pops);
                    995:        *rp = 0;
                    996: }
                    997:
1.26      noro      998: void Pox_execute_function(NODE arg,Obj *rp)
1.1       noro      999: {
                   1000:        int s;
                   1001:        USINT ui;
                   1002:        int index = QTOS((Q)ARG0(arg));
                   1003:
                   1004:        valid_mctab_index(index);
                   1005:        s = m_c_tab[index].c;
                   1006:        MKUSINT(ui,QTOS((Q)ARG2(arg)));
                   1007:        ox_send_data(s,ui);
                   1008:        ox_send_data(s,ARG1(arg));
                   1009:        ox_send_cmd(s,SM_executeFunction);
                   1010:        *rp = 0;
                   1011: }
                   1012:
1.26      noro     1013: void Pox_setname(NODE arg,Obj *rp)
1.1       noro     1014: {
                   1015:        int s;
                   1016:        int index = QTOS((Q)ARG0(arg));
                   1017:
                   1018:        valid_mctab_index(index);
                   1019:        s = m_c_tab[index].c;
                   1020:        ox_send_data(s,ARG1(arg));
                   1021:        ox_send_cmd(s,SM_setName);
                   1022:        *rp = 0;
                   1023: }
                   1024:
1.26      noro     1025: void Pox_evalname(NODE arg,Obj *rp)
1.1       noro     1026: {
                   1027:        int s;
                   1028:        int index = QTOS((Q)ARG0(arg));
                   1029:
                   1030:        valid_mctab_index(index);
                   1031:        s = m_c_tab[index].c;
                   1032:        ox_send_data(s,ARG1(arg));
                   1033:        ox_send_cmd(s,SM_evalName);
                   1034:        *rp = 0;
                   1035: }
                   1036:
1.26      noro     1037: void Pox_execute_string(NODE arg,Obj *rp)
1.1       noro     1038: {
                   1039:        int s;
                   1040:        int index = QTOS((Q)ARG0(arg));
                   1041:
                   1042:        valid_mctab_index(index);
                   1043:        s = m_c_tab[index].c;
                   1044:        ox_send_data(s,ARG1(arg));
                   1045:        ox_send_cmd(s,SM_executeStringByLocalParser);
                   1046:        *rp = 0;
                   1047: }
                   1048:
                   1049: /* arg=[sid,fname,arg0,arg1,...,arg{n-1}] */
                   1050:
1.26      noro     1051: void Pox_rpc(NODE arg,Obj *rp)
1.1       noro     1052: {
                   1053:        int s,i,n;
                   1054:        STRING f;
                   1055:        USINT ui;
                   1056:        pointer *w;
                   1057:        NODE t;
                   1058:        int index = QTOS((Q)ARG0(arg));
                   1059:
                   1060:        valid_mctab_index(index);
                   1061:        s = m_c_tab[index].c; arg = NEXT(arg);
                   1062:        f = (STRING)BDY(arg); arg = NEXT(arg);
                   1063:        ox_send_local_ring(s,CO);
                   1064:        for ( n = 0, t = arg; t; t = NEXT(t), n++ );
                   1065:        w = (pointer *)ALLOCA(n*sizeof(pointer));
                   1066:        for ( i = 0, t = arg; i < n; t = NEXT(t), i++ )
                   1067:                w[i] = BDY(t);
                   1068:        for ( i = n-1; i >= 0; i-- )
                   1069:                ox_send_local_data(s,w[i]);
                   1070:        MKUSINT(ui,n);
                   1071:        ox_send_data(s,ui);
                   1072:        ox_send_data(s,f);
                   1073:        ox_send_cmd(s,SM_executeFunction);
                   1074:        *rp = 0;
                   1075: }
                   1076:
1.26      noro     1077: void Pox_cmo_rpc(NODE arg,Obj *rp)
1.1       noro     1078: {
                   1079:        int s,i,n;
                   1080:        STRING f;
                   1081:        USINT ui;
                   1082:        NODE t;
                   1083:        pointer *w;
                   1084:        int index = QTOS((Q)ARG0(arg));
                   1085:
                   1086:        valid_mctab_index(index);
                   1087:        s = m_c_tab[index].c; arg = NEXT(arg);
                   1088:        f = (STRING)BDY(arg); arg = NEXT(arg);
                   1089:        for ( n = 0, t = arg; t; t = NEXT(t), n++ );
                   1090:        w = (pointer *)ALLOCA(n*sizeof(pointer));
                   1091:        for ( i = 0, t = arg; i < n; t = NEXT(t), i++ )
                   1092:                w[i] = BDY(t);
                   1093:        for ( i = n-1; i >= 0; i-- )
                   1094:                ox_send_data(s,w[i]);
                   1095:        MKUSINT(ui,n);
                   1096:        ox_send_data(s,ui);
                   1097:        ox_send_data(s,f);
                   1098:        ox_send_cmd(s,SM_executeFunction);
                   1099:        *rp = 0;
                   1100: }
                   1101:
1.26      noro     1102: void Pox_reset(NODE arg,Q *rp)
1.1       noro     1103: {
                   1104:        USINT t;
1.26      noro     1105:        int id,c,m;
1.1       noro     1106:        Obj obj;
                   1107:        int index = QTOS((Q)ARG0(arg));
                   1108:
                   1109:        valid_mctab_index(index);
                   1110:        m = m_c_tab[index].m;
                   1111:        c = m_c_tab[index].c;
                   1112:        if ( m >= 0 ) {
                   1113:                if ( argc(arg) == 1 ) {
                   1114:                        ox_send_cmd(m,SM_control_reset_connection);
                   1115:                        ox_flush_stream_force(m);
1.26      noro     1116:                        ox_recv(m,&id,&obj); t = (USINT)obj;
1.1       noro     1117:                }
                   1118:                *rp = ONE;
                   1119: #if defined(VISUAL)
                   1120:                Sleep(100);
                   1121:                ox_send_cmd(c,SM_nop);
                   1122:                ox_flush_stream_force(c);
                   1123: #endif
                   1124:                while ( 1 ) {
                   1125:                        ox_recv(c,&id,&obj);
                   1126:                        if ( id == OX_SYNC_BALL )
                   1127:                                break;
                   1128:                }
                   1129:                ox_send_sync(c);
1.5       noro     1130:        } else
                   1131:                *rp = 0;
                   1132: }
                   1133:
1.26      noro     1134: void Pox_intr(NODE arg,Q *rp)
1.5       noro     1135: {
                   1136:        int m;
                   1137:        int index = QTOS((Q)ARG0(arg));
                   1138:
                   1139:        valid_mctab_index(index);
                   1140:        m = m_c_tab[index].m;
                   1141:        if ( m >= 0 ) {
                   1142:                if ( argc(arg) == 1 ) {
                   1143:                        ox_send_cmd(m,SM_control_intr);
                   1144:                        ox_flush_stream_force(m);
                   1145:                }
                   1146:                *rp = ONE;
1.1       noro     1147:        } else
                   1148:                *rp = 0;
                   1149: }
                   1150:
1.26      noro     1151: void Pox_sync(NODE arg,Q *rp)
1.1       noro     1152: {
                   1153:        int c;
                   1154:        int index = QTOS((Q)ARG0(arg));
                   1155:
                   1156:        valid_mctab_index(index);
                   1157:        c = m_c_tab[index].c;
                   1158:        ox_send_sync(c);
                   1159:        *rp = 0;
                   1160: }
                   1161:
1.26      noro     1162: void Pox_shutdown(NODE arg,Q *rp)
1.1       noro     1163: {
                   1164:        int s;
                   1165:        int index = QTOS((Q)ARG0(arg));
1.26      noro     1166: #if !defined(VISUAL)
1.1       noro     1167:        int status;
1.26      noro     1168: #endif
1.1       noro     1169:
                   1170:        valid_mctab_index(index);
                   1171:        s = m_c_tab[index].m;
                   1172:        ox_send_cmd(s,SM_shutdown);
                   1173:        free_iofp(s);
1.18      noro     1174: #if !defined(VISUAL)
                   1175:        s = m_c_tab[index].c;
                   1176:        free_iofp(s);
                   1177: #endif
1.1       noro     1178: #if !MPI && !defined(VISUAL)
                   1179:        if ( m_c_tab[index].af_unix )
                   1180:                wait(&status);
                   1181: #endif
1.8       noro     1182:        m_c_tab[index].m = -1; m_c_tab[index].c = -1;
1.1       noro     1183:        m_c_tab[index].af_unix = 0;
                   1184:        *rp = 0;
                   1185: }
                   1186:
1.26      noro     1187: void Pox_push_cmd(NODE arg,Q *rp)
1.1       noro     1188: {
1.7       noro     1189:        int ui;
1.1       noro     1190:        int index = QTOS((Q)ARG0(arg));
                   1191:
                   1192:        valid_mctab_index(index);
1.7       noro     1193:        ui = QTOS((Q)ARG1(arg));
1.1       noro     1194:        ox_send_cmd(m_c_tab[index].c,ui);
                   1195:        *rp = 0;
                   1196: }
1.16      noro     1197:
                   1198: void shutdown_all() {
                   1199:        int s;
                   1200:        int i,index;
1.26      noro     1201: #if !defined(VISUAL)
1.16      noro     1202:        int status;
1.26      noro     1203: #endif
1.16      noro     1204:
                   1205:        for ( i = I_am_server?1:0; i < m_c_i; i++ ) {
                   1206:                index = i;
                   1207:                check_valid_mctab_index(index);
                   1208:                if ( index < 0 )
                   1209:                        continue;
                   1210:                s = m_c_tab[index].m;
                   1211:                ox_send_cmd(s,SM_shutdown);
1.21      noro     1212: #if defined(VISUAL)
                   1213:        Sleep(1000);
                   1214: #endif
1.16      noro     1215:                free_iofp(s);
1.18      noro     1216: #if !defined(VISUAL)
                   1217:                s = m_c_tab[index].c;
                   1218:                free_iofp(s);
                   1219: #endif
1.16      noro     1220: #if !MPI && !defined(VISUAL)
                   1221:                if ( m_c_tab[index].af_unix )
                   1222:                        wait(&status);
                   1223: #endif
                   1224:                m_c_tab[index].m = 0; m_c_tab[index].c = 0;
                   1225:                m_c_tab[index].af_unix = 0;
                   1226:        }
                   1227: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>