[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.28

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.28    ! noro       47:  * $OpenXM: OpenXM_contrib2/asir2000/io/tcpf.c,v 1.27 2001/12/25 02:39:05 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__)
        !           474: static int get_start_path(char *buf)
        !           475: {
        !           476:        static char start_path[BUFSIZ];
        !           477:        static int start_initialized = 0;
        !           478:        char name[BUFSIZ];
        !           479:
        !           480:        if ( start_initialized ) {
        !           481:                strcpy(buf,start_path);
        !           482:                return 1;
        !           483:        }
        !           484:
        !           485:        /* Windows2000 */
        !           486:        strcpy(buf,"c:\\winnt\\system32\\start.exe");
        !           487:        cygwin_conv_to_full_posix_path(buf,name);
        !           488:        if ( !access(name,X_OK) ) {
        !           489:                strcpy(start_path,buf);
        !           490:                return 1;
        !           491:        }
        !           492:
        !           493:        /* Windows98 */
        !           494:        strcpy(buf,"c:\\windows\\command\\start.exe");
        !           495:        cygwin_conv_to_full_posix_path(buf,name);
        !           496:        if ( !access(name,X_OK) ) {
        !           497:                strcpy(start_path,buf);
        !           498:                return 1;
        !           499:        }
        !           500:
        !           501:        return 0;
        !           502: }
        !           503:
        !           504: static void get_launcher_path(char *buf)
        !           505: {
        !           506:        static char rootname[BUFSIZ];
        !           507:        static char launcher_path[BUFSIZ];
        !           508:        static int launcher_initialized = 0;
        !           509:        char name[BUFSIZ];
        !           510:
        !           511:        if ( launcher_initialized ) {
        !           512:                strcpy(buf,launcher_path);
        !           513:                return;
        !           514:        }
        !           515:
        !           516:        get_rootdir(rootname,sizeof(rootname));
        !           517:        sprintf(name,"%s/ox_launch.exe",rootname);
        !           518:        cygwin_conv_to_full_win32_path(name,launcher_path);
        !           519:        launcher_initialized = 1;
        !           520:        strcpy(buf,launcher_path);
        !           521: }
        !           522: #endif
        !           523:
1.26      noro      524: void spawn_server(char *host,char *launcher,char *server,
                    525:        int use_unix,int use_ssh,int use_x,int conn_to_serv,
                    526:        char *control_port_str,char *server_port_str)
1.1       noro      527: {
                    528:        char localhost[BUFSIZ];
1.17      noro      529:        char *dname,*conn_str,*rsh,*dname0;
1.15      noro      530:        char AsirExe[BUFSIZ];
                    531:        STRING rootdir;
                    532:        char prog[BUFSIZ];
                    533:        char *av[BUFSIZ];
1.26      noro      534: #if !defined(VISUAL)
                    535:        char cmd[BUFSIZ];
                    536: #endif
1.28    ! noro      537: #if defined(__CYGWIN__)
        !           538:        char win_start[BUFSIZ],win_launcher[BUFSIZ];
        !           539: #endif
1.26      noro      540:        void Pget_rootdir();
1.1       noro      541:
1.17      noro      542:        dname0 = (char *)getenv("DISPLAY");
1.23      noro      543:        if ( !dname0 )
                    544:                dname0 = "0";
1.17      noro      545:        dname = use_x ? dname0 : 0;
1.1       noro      546:        conn_str = conn_to_serv ? "1" : "0";
1.13      noro      547:        rsh = getenv("ASIR_RSH");
                    548:        if ( !rsh )
                    549:                rsh = use_ssh ? "ssh" : RSH;
1.25      noro      550:        if ( !use_unix && strstr(rsh,"ssh") ) {
1.13      noro      551:                /*
                    552:                 * if "ssh" is used to invoke a remote server,
                    553:                 * we should not specify "-display".
                    554:                 */
                    555:                use_ssh = 1;
                    556:        }
1.1       noro      557:        gethostname(localhost,BUFSIZ);
1.15      noro      558: #if defined(VISUAL)
                    559:        if ( !use_unix )
                    560:                error("spawn_server : not implemented on Windows");
                    561:        Pget_rootdir(&rootdir);
                    562:        sprintf(AsirExe,"%s\\bin\\engine.exe",BDY(rootdir));
                    563:        strcpy(prog,server);
                    564:        server = strrchr(prog,'/')+1;
                    565:        av[0] = "ox_launch";
                    566:        av[1] = "127.0.0.1";
                    567:        av[2] = conn_str;
                    568:        av[3] = control_port_str;
                    569:        av[4] = server_port_str;
                    570:        av[5] = server;
                    571:        av[6] = use_x ? "1" : "0";
                    572:        av[7] = 0;
                    573:
                    574:        _spawnv(_P_NOWAIT,AsirExe,av);
                    575: //     _spawnv(_P_NOWAIT,"d:\\home\\noro\\engine2000\\debug\\engine.exe",av);
                    576: //     printf("ox_launch 127.0.0.1 %s %s %s %s 0\n",conn_str,control_port_str,server_port_str,server);
                    577: #else
1.28    ! noro      578:        get_start_path(win_start);
        !           579:        if ( use_unix || !host ) {
1.1       noro      580:                if ( !fork() ) {
1.2       noro      581:                        setpgid(0,getpid());
1.27      noro      582: #if defined(__CYGWIN__)
1.28    ! noro      583:                        if ( dname && get_start_path(win_start) )
1.27      noro      584:                        {
1.28    ! noro      585:                                get_launcher_path(win_launcher);
        !           586:                                execlp(win_start,"start",win_launcher,
        !           587:                                        use_unix?".":"127.1",conn_str,
1.27      noro      588:                                        control_port_str,server_port_str,server,"1",0);
                    589:                        }
                    590: #else
1.28    ! noro      591:                        if ( dname )
1.13      noro      592:                                execlp("xterm","xterm","-name",OX_XTERM,"-T","ox_launch:local","-display",dname,
1.28    ! noro      593:                                        "-geometry","60x10","-e",launcher,use_unix?".":"127.1",conn_str,
1.1       noro      594:                                        control_port_str,server_port_str,server,dname,0);
1.27      noro      595: #endif
                    596:                        else
1.28    ! noro      597:                                execlp(launcher,launcher,use_unix?".":"127.1",conn_str,
1.17      noro      598:                                        control_port_str,server_port_str,server,dname0,"-nolog",0);
1.1       noro      599:                }
                    600:        } else if ( conn_to_serv == 2 ) {
                    601:                /* special support for java */
                    602:                if ( dname )
                    603:                        sprintf(cmd,
1.13      noro      604:                                "%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      605:                                rsh,host,launcher,OX_XTERM,dname,server,localhost,control_port_str,server_port_str);
                    606:                else
                    607:                        sprintf(cmd,
                    608:                                "%s -n %s \"(cd %s; java %s -host %s -control %s -data %s)>&/dev/null&\">/dev/null",
                    609:                                rsh,host,launcher,server,localhost,
                    610:                                control_port_str,server_port_str,server);
                    611:                fprintf(stderr,"%s\n",cmd);
                    612:                sleep(20);
                    613: /*             system(cmd); */
1.15      noro      614:        } else {
1.1       noro      615:                if ( dname )
1.13      noro      616:                        if ( use_ssh )
1.25      noro      617:                                sprintf(cmd,
1.14      noro      618: "%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      619:                                rsh,host,OX_XTERM,host,launcher,localhost,conn_str,
                    620:                                control_port_str,server_port_str,server,"1");
                    621:                        else
1.25      noro      622:                                sprintf(cmd,
1.14      noro      623: "%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      624:                                rsh,host,OX_XTERM,host,dname,launcher,localhost,conn_str,
1.1       noro      625:                                control_port_str,server_port_str,server,dname);
                    626:                else
1.25      noro      627:                        if ( use_ssh )
                    628:                                sprintf(cmd,
                    629: "%s -f -n %s \"%s %s %s %s %s %s %s %s>&/dev/null&\">/dev/null",
                    630:                                rsh,host,launcher,localhost,conn_str,
                    631:                                control_port_str,server_port_str,server,"1","-nolog");
                    632:                        else
                    633:                                sprintf(cmd,
1.17      noro      634: "%s -n %s \"%s %s %s %s %s %s %s %s>&/dev/null&\">/dev/null",
1.1       noro      635:                                rsh,host,launcher,localhost,conn_str,
1.17      noro      636:                                control_port_str,server_port_str,server,dname0,"-nolog");
1.1       noro      637:                system(cmd);
                    638:        }
1.15      noro      639: #endif /* VISUAL */
1.1       noro      640: }
                    641:
1.26      noro      642: void Pox_launch(NODE arg,Obj *rp)
1.1       noro      643: {
1.26      noro      644:        ox_launch_main(1,arg,rp);
1.1       noro      645: }
                    646:
1.26      noro      647: void Pox_launch_nox(NODE arg,Obj *rp)
1.1       noro      648: {
1.26      noro      649:        ox_launch_main(0,arg,rp);
1.1       noro      650: }
                    651:
                    652: /*
                    653:        ox_launch() : invoke local ox_asir
                    654:        ox_launch(0,ox_xxx) : invoke local ox_xxx with asir_libdir/ox_launch
                    655:        ox_launch(remote,lib,ox_xxx) : invoke remote ox_xxx with lib/ox_launch
                    656: */
                    657:
1.26      noro      658: void ox_launch_main(int with_x,NODE arg,Obj *p)
1.1       noro      659: {
                    660:        char *str;
1.26      noro      661:        char *hostname,*servername;
1.1       noro      662:        char *control;
                    663:        int use_unix;
1.26      noro      664:        Q ret;
1.1       noro      665:        extern char *asir_libdir;
                    666:
                    667:        if ( arg && ARG0(arg) && argc(arg) != 3 )
                    668:                error("ox_launch : argument mismatch");
                    669:        control = (char *)MALLOC(BUFSIZ);
                    670:        if ( !arg || ( !ARG0(arg) && argc(arg) == 1 ) ) {
                    671:                sprintf(control,"%s/ox_launch",asir_libdir);
1.28    ! noro      672:                use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      673:                servername = (char *)MALLOC(BUFSIZ);
                    674:                sprintf(servername,"%s/ox_asir",asir_libdir);
                    675:        } else if ( !ARG0(arg) && argc(arg) == 2 ) {
                    676:                sprintf(control,"%s/ox_launch",asir_libdir);
1.28    ! noro      677:                use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      678:                str = BDY((STRING)ARG1(arg));
                    679:                if ( str[0] == '/' )
                    680:                        servername = str;
                    681:                else {
                    682:                        servername = (char *)MALLOC(BUFSIZ);
                    683:                        sprintf(servername,"%s/%s",asir_libdir,str);
                    684:                }
                    685:        } else {
                    686:                sprintf(control,"%s/ox_launch",BDY((STRING)ARG1(arg)));
                    687:                if ( !ARG0(arg) )
1.28    ! noro      688:                        use_unix = IS_CYGWIN ? 0 : 1;
1.1       noro      689:                else
                    690:                        use_unix = 0;
                    691:                str = BDY((STRING)ARG2(arg));
                    692:                if ( str[0] == '/' )
                    693:                        servername = str;
                    694:                else {
                    695:                        servername = (char *)MALLOC(BUFSIZ);
                    696:                        sprintf(servername,"%s/%s",BDY((STRING)ARG1(arg)),str);
                    697:                }
                    698:        }
                    699:        if ( arg && ARG0(arg) )
                    700:                hostname = BDY((STRING)ARG0(arg));
                    701:        else
                    702:                hostname = 0;
1.26      noro      703:        ox_launch_generic(hostname,control,servername,use_unix,0,with_x,0,&ret);
                    704:        *p = (Obj)ret;
1.1       noro      705: }
                    706:
1.26      noro      707: int register_server(int af_unix,int m,int c)
1.1       noro      708: {
1.26      noro      709:        int s,i;
1.1       noro      710:        struct m_c *t;
1.9       noro      711: #define INIT_TAB_SIZ 64
1.1       noro      712:
                    713:        if ( c < 0 )
                    714:                return -1;
                    715:        if ( !m_c_tab ) {
1.9       noro      716:                s = INIT_TAB_SIZ*sizeof(struct m_c);
1.8       noro      717:                m_c_tab = (struct m_c *)MALLOC_ATOMIC(s);
1.9       noro      718:                for ( i = 0; i < INIT_TAB_SIZ; i++ ) {
1.8       noro      719:                        m_c_tab[i].af_unix = 0;
                    720:                        m_c_tab[i].m = m_c_tab[i].c = -1;
                    721:                }
1.9       noro      722:                m_c_s = INIT_TAB_SIZ;
1.1       noro      723:        }
                    724: #if !MPI
                    725:        for ( i = 0; i < m_c_i; i++ )
1.8       noro      726:                if ( (m_c_tab[i].m<0) && (m_c_tab[i].c<0) )
1.1       noro      727:                        break;
                    728:        if ( i < m_c_i ) {
                    729:                m_c_tab[i].m = m; m_c_tab[i].c = c;
                    730:                m_c_tab[i].af_unix = af_unix;
                    731:                return i;
                    732:        }
                    733: #endif
                    734:        if ( m_c_i == m_c_s ) {
1.9       noro      735:                s = (m_c_s+INIT_TAB_SIZ)*sizeof(struct m_c);
1.27      noro      736:                t = (struct m_c *)MALLOC_ATOMIC(s); bzero((void *)m_c_tab,s);
                    737:                bcopy((void *)m_c_tab,(void *)t,m_c_s*sizeof(struct m_c));
1.9       noro      738:                for ( i = 0; i < INIT_TAB_SIZ; i++ ) {
1.8       noro      739:                        m_c_tab[m_c_s+i].af_unix = 0;
                    740:                        m_c_tab[m_c_s+i].m = m_c_tab[m_c_s+i].c = -1;
                    741:                }
1.9       noro      742:                m_c_s += INIT_TAB_SIZ; m_c_tab = t;
1.1       noro      743:        }
                    744:        m_c_tab[m_c_i].m = m; m_c_tab[m_c_i].c = c;
                    745:        m_c_tab[m_c_i].af_unix = af_unix;
                    746:        return m_c_i++;
                    747: }
                    748:
                    749: /* iofp index => m_c_tab index */
                    750:
1.26      noro      751: int get_mcindex(int i)
1.1       noro      752: {
                    753:        int j;
                    754:
                    755:        for ( j = 0; j < m_c_i; j++ )
                    756:                if ( m_c_tab[j].c == i )
                    757:                        return j;
                    758:        return -1;
                    759: }
                    760:
                    761: /* arg = [ind0,ind1,...]; indk = index to m_c_tab */
                    762:
1.26      noro      763: void Pox_select(NODE arg,LIST *rp)
1.1       noro      764: {
                    765:        int fd,n,i,index,mcind;
                    766:        fd_set r,w,e;
                    767:        NODE list,t,t1;
                    768:        Q q;
                    769:        double max;
                    770:        struct timeval interval;
                    771:        struct timeval *tvp;
                    772:
                    773:        list = BDY((LIST)ARG0(arg)); arg = NEXT(arg);
                    774:        if ( arg ) {
                    775:                max = ToReal((Num)BDY(arg));
                    776:                interval.tv_sec = (int)max;
                    777:                interval.tv_usec = (int)((max-(int)max)*1000000);
                    778:                tvp = &interval;
                    779:        } else
                    780:                tvp = 0;
                    781:
                    782:        FD_ZERO(&r); FD_ZERO(&w); FD_ZERO(&e);
                    783:        for ( t = list; t; t = NEXT(t) ) {
                    784:                index = QTOS((Q)BDY(t));
                    785:                valid_mctab_index(index);
1.26      noro      786:                fd = get_fd(m_c_tab[index].c); FD_SET((unsigned int)fd,&r);
1.1       noro      787:        }
                    788:        n = select(FD_SETSIZE,&r,&w,&e,tvp);
                    789:        for ( i = 0, t = 0; n && i < FD_SETSIZE; i++ )
                    790:                if ( FD_ISSET(i,&r) ) {
                    791:                        /* index : index to iofp array */
                    792:                        index = get_index(i);
                    793:                        /* mcind : index to m_c_tab array */
                    794:                        mcind = get_mcindex(index);
                    795:                        n--; STOQ(mcind,q); MKNODE(t1,q,t); t = t1;
                    796:                }
                    797:        MKLIST(*rp,t);
                    798: }
                    799:
1.26      noro      800: void Pox_flush(NODE arg,Q *rp)
1.1       noro      801: {
                    802:        int index = QTOS((Q)ARG0(arg));
                    803:
                    804:        valid_mctab_index(index);
                    805:        ox_flush_stream_force(m_c_tab[index].c);
                    806:        *rp = ONE;
                    807: }
                    808:
1.26      noro      809: void Pox_send_raw_cmo(NODE arg,Obj *rp)
1.8       noro      810: {
                    811:        int s;
                    812:        int index = QTOS((Q)ARG0(arg));
                    813:
                    814:        valid_mctab_index(index);
                    815:        s = m_c_tab[index].c;
                    816:        ox_write_cmo(s,(Obj)ARG1(arg));
                    817:        /* flush always */
                    818:        ox_flush_stream(s);
                    819:        *rp = 0;
                    820: }
                    821:
1.26      noro      822: void Pox_recv_raw_cmo(NODE arg,Obj *rp)
1.8       noro      823: {
                    824:        int s;
                    825:        int index = QTOS((Q)ARG0(arg));
                    826:
                    827:        valid_mctab_index(index);
                    828:        s = m_c_tab[index].c;
                    829:        ox_read_cmo(s,rp);
                    830: }
                    831:
1.26      noro      832: void Pox_push_local(NODE arg,Obj *rp)
1.1       noro      833: {
                    834:        int s;
                    835:        struct oLIST dummy;
                    836:        VL vl;
                    837:        int index = QTOS((Q)ARG0(arg));
                    838:
                    839:        valid_mctab_index(index);
                    840:        s = m_c_tab[index].c; arg = NEXT(arg);
                    841:
                    842:        dummy.id = O_LIST; dummy.body = arg;
                    843:        get_vars_recursive((Obj)&dummy,&vl);
                    844:
                    845:        ox_send_local_ring(s,vl);
                    846:        for ( ; arg; arg = NEXT(arg) )
                    847:                ox_send_local_data(s,BDY(arg));
                    848:        *rp = 0;
                    849: }
                    850:
1.26      noro      851: void Pox_push_cmo(NODE arg,Obj *rp)
1.1       noro      852: {
                    853:        int s;
                    854:        int index = QTOS((Q)ARG0(arg));
                    855:
                    856:        valid_mctab_index(index);
                    857:        s = m_c_tab[index].c; arg = NEXT(arg);
                    858:        for ( ; arg; arg = NEXT(arg) )
                    859:                ox_send_data(s,BDY(arg));
                    860:        *rp = 0;
                    861: }
                    862:
1.26      noro      863: void Pox_push_vl(NODE arg,Obj *rp)
1.1       noro      864: {
                    865:        int index = QTOS((Q)ARG0(arg));
                    866:
                    867:        valid_mctab_index(index);
                    868:        ox_send_local_ring(m_c_tab[index].c,CO);
                    869:        *rp = 0;
                    870: }
                    871:
1.26      noro      872: void Pox_pop_local(NODE arg,Obj *rp)
1.1       noro      873: {
                    874:        int s;
                    875:        int index = QTOS((Q)ARG0(arg));
                    876:
                    877:        valid_mctab_index(index);
                    878:        s = m_c_tab[index].c;
                    879:        ox_send_cmd(s,SM_popSerializedLocalObject);
                    880:        ox_flush_stream_force(s);
                    881:        ox_get_result(s,rp);
                    882: }
                    883:
1.26      noro      884: void Pox_pop_cmo(NODE arg,Obj *rp)
1.1       noro      885: {
                    886:        int s;
                    887:        int index = QTOS((Q)ARG0(arg));
                    888:
                    889:        valid_mctab_index(index);
                    890:        s = m_c_tab[index].c;
                    891:        ox_send_cmd(s,SM_popCMO);
                    892:        ox_flush_stream_force(s);
                    893:        ox_get_result(s,rp);
                    894: }
                    895:
1.26      noro      896: void Pox_pop0_local(NODE arg,Obj *rp)
1.1       noro      897: {
                    898:        int index = QTOS((Q)ARG0(arg));
                    899:
                    900:        valid_mctab_index(index);
                    901:        ox_send_cmd(m_c_tab[index].c,SM_popSerializedLocalObject);
                    902:        *rp = 0;
                    903: }
                    904:
1.26      noro      905: void Pox_pop0_cmo(NODE arg,Obj *rp)
1.1       noro      906: {
                    907:        int index = QTOS((Q)ARG0(arg));
                    908:
                    909:        valid_mctab_index(index);
                    910:        ox_send_cmd(m_c_tab[index].c,SM_popCMO);
                    911:        *rp = 0;
                    912: }
                    913:
1.26      noro      914: void Pox_pop0_string(NODE arg,STRING *rp)
1.1       noro      915: {
                    916:        int index = QTOS((Q)ARG0(arg));
                    917:
                    918:        valid_mctab_index(index);
                    919:        ox_send_cmd(m_c_tab[index].c,SM_popString);
                    920:        *rp = 0;
                    921: }
                    922:
1.26      noro      923: void Pox_pop_string(NODE arg,Obj *rp)
1.1       noro      924: {
1.26      noro      925:        int s;
1.1       noro      926:        int index = QTOS((Q)ARG0(arg));
                    927:
                    928:        valid_mctab_index(index);
                    929:        s = m_c_tab[index].c;
                    930:        ox_send_cmd(s,SM_popString);
                    931:        ox_flush_stream_force(s);
                    932:        ox_get_result(s,rp);
                    933: }
                    934:
1.26      noro      935: void Pox_get(NODE arg,Obj *rp)
1.1       noro      936: {
1.3       noro      937:        int index;
1.1       noro      938:        int s;
                    939:
1.3       noro      940:        if ( !arg ) {
                    941:                /* client->server */
                    942:                ox_get_result(0,rp);
                    943:        } else {
                    944:                /* server->client */
                    945:                index = QTOS((Q)ARG0(arg));
                    946:                valid_mctab_index(index);
                    947:                s = m_c_tab[index].c;
                    948:                ox_flush_stream_force(s);
                    949:                ox_get_result(s,rp);
                    950:        }
1.1       noro      951: }
                    952:
1.26      noro      953: void Pox_pops(NODE arg,Obj *rp)
1.1       noro      954: {
                    955:        int s;
                    956:        USINT n;
                    957:        int index = QTOS((Q)ARG0(arg));
                    958:
                    959:        valid_mctab_index(index);
                    960:        s = m_c_tab[index].c;
                    961:        if ( NEXT(arg) )
                    962:                MKUSINT(n,QTOS((Q)ARG1(arg)));
                    963:        else
                    964:                MKUSINT(n,1);
                    965:        ox_send_data(s,n);
                    966:        ox_send_cmd(s,SM_pops);
                    967:        *rp = 0;
                    968: }
                    969:
1.26      noro      970: void Pox_execute_function(NODE arg,Obj *rp)
1.1       noro      971: {
                    972:        int s;
                    973:        USINT ui;
                    974:        int index = QTOS((Q)ARG0(arg));
                    975:
                    976:        valid_mctab_index(index);
                    977:        s = m_c_tab[index].c;
                    978:        MKUSINT(ui,QTOS((Q)ARG2(arg)));
                    979:        ox_send_data(s,ui);
                    980:        ox_send_data(s,ARG1(arg));
                    981:        ox_send_cmd(s,SM_executeFunction);
                    982:        *rp = 0;
                    983: }
                    984:
1.26      noro      985: void Pox_setname(NODE arg,Obj *rp)
1.1       noro      986: {
                    987:        int s;
                    988:        int index = QTOS((Q)ARG0(arg));
                    989:
                    990:        valid_mctab_index(index);
                    991:        s = m_c_tab[index].c;
                    992:        ox_send_data(s,ARG1(arg));
                    993:        ox_send_cmd(s,SM_setName);
                    994:        *rp = 0;
                    995: }
                    996:
1.26      noro      997: void Pox_evalname(NODE arg,Obj *rp)
1.1       noro      998: {
                    999:        int s;
                   1000:        int index = QTOS((Q)ARG0(arg));
                   1001:
                   1002:        valid_mctab_index(index);
                   1003:        s = m_c_tab[index].c;
                   1004:        ox_send_data(s,ARG1(arg));
                   1005:        ox_send_cmd(s,SM_evalName);
                   1006:        *rp = 0;
                   1007: }
                   1008:
1.26      noro     1009: void Pox_execute_string(NODE arg,Obj *rp)
1.1       noro     1010: {
                   1011:        int s;
                   1012:        int index = QTOS((Q)ARG0(arg));
                   1013:
                   1014:        valid_mctab_index(index);
                   1015:        s = m_c_tab[index].c;
                   1016:        ox_send_data(s,ARG1(arg));
                   1017:        ox_send_cmd(s,SM_executeStringByLocalParser);
                   1018:        *rp = 0;
                   1019: }
                   1020:
                   1021: /* arg=[sid,fname,arg0,arg1,...,arg{n-1}] */
                   1022:
1.26      noro     1023: void Pox_rpc(NODE arg,Obj *rp)
1.1       noro     1024: {
                   1025:        int s,i,n;
                   1026:        STRING f;
                   1027:        USINT ui;
                   1028:        pointer *w;
                   1029:        NODE t;
                   1030:        int index = QTOS((Q)ARG0(arg));
                   1031:
                   1032:        valid_mctab_index(index);
                   1033:        s = m_c_tab[index].c; arg = NEXT(arg);
                   1034:        f = (STRING)BDY(arg); arg = NEXT(arg);
                   1035:        ox_send_local_ring(s,CO);
                   1036:        for ( n = 0, t = arg; t; t = NEXT(t), n++ );
                   1037:        w = (pointer *)ALLOCA(n*sizeof(pointer));
                   1038:        for ( i = 0, t = arg; i < n; t = NEXT(t), i++ )
                   1039:                w[i] = BDY(t);
                   1040:        for ( i = n-1; i >= 0; i-- )
                   1041:                ox_send_local_data(s,w[i]);
                   1042:        MKUSINT(ui,n);
                   1043:        ox_send_data(s,ui);
                   1044:        ox_send_data(s,f);
                   1045:        ox_send_cmd(s,SM_executeFunction);
                   1046:        *rp = 0;
                   1047: }
                   1048:
1.26      noro     1049: void Pox_cmo_rpc(NODE arg,Obj *rp)
1.1       noro     1050: {
                   1051:        int s,i,n;
                   1052:        STRING f;
                   1053:        USINT ui;
                   1054:        NODE t;
                   1055:        pointer *w;
                   1056:        int index = QTOS((Q)ARG0(arg));
                   1057:
                   1058:        valid_mctab_index(index);
                   1059:        s = m_c_tab[index].c; arg = NEXT(arg);
                   1060:        f = (STRING)BDY(arg); arg = NEXT(arg);
                   1061:        for ( n = 0, t = arg; t; t = NEXT(t), n++ );
                   1062:        w = (pointer *)ALLOCA(n*sizeof(pointer));
                   1063:        for ( i = 0, t = arg; i < n; t = NEXT(t), i++ )
                   1064:                w[i] = BDY(t);
                   1065:        for ( i = n-1; i >= 0; i-- )
                   1066:                ox_send_data(s,w[i]);
                   1067:        MKUSINT(ui,n);
                   1068:        ox_send_data(s,ui);
                   1069:        ox_send_data(s,f);
                   1070:        ox_send_cmd(s,SM_executeFunction);
                   1071:        *rp = 0;
                   1072: }
                   1073:
1.26      noro     1074: void Pox_reset(NODE arg,Q *rp)
1.1       noro     1075: {
                   1076:        USINT t;
1.26      noro     1077:        int id,c,m;
1.1       noro     1078:        Obj obj;
                   1079:        int index = QTOS((Q)ARG0(arg));
                   1080:
                   1081:        valid_mctab_index(index);
                   1082:        m = m_c_tab[index].m;
                   1083:        c = m_c_tab[index].c;
                   1084:        if ( m >= 0 ) {
                   1085:                if ( argc(arg) == 1 ) {
                   1086:                        ox_send_cmd(m,SM_control_reset_connection);
                   1087:                        ox_flush_stream_force(m);
1.26      noro     1088:                        ox_recv(m,&id,&obj); t = (USINT)obj;
1.1       noro     1089:                }
                   1090:                *rp = ONE;
                   1091: #if defined(VISUAL)
                   1092:                Sleep(100);
                   1093:                ox_send_cmd(c,SM_nop);
                   1094:                ox_flush_stream_force(c);
                   1095: #endif
                   1096:                while ( 1 ) {
                   1097:                        ox_recv(c,&id,&obj);
                   1098:                        if ( id == OX_SYNC_BALL )
                   1099:                                break;
                   1100:                }
                   1101:                ox_send_sync(c);
1.5       noro     1102:        } else
                   1103:                *rp = 0;
                   1104: }
                   1105:
1.26      noro     1106: void Pox_intr(NODE arg,Q *rp)
1.5       noro     1107: {
                   1108:        int m;
                   1109:        int index = QTOS((Q)ARG0(arg));
                   1110:
                   1111:        valid_mctab_index(index);
                   1112:        m = m_c_tab[index].m;
                   1113:        if ( m >= 0 ) {
                   1114:                if ( argc(arg) == 1 ) {
                   1115:                        ox_send_cmd(m,SM_control_intr);
                   1116:                        ox_flush_stream_force(m);
                   1117:                }
                   1118:                *rp = ONE;
1.1       noro     1119:        } else
                   1120:                *rp = 0;
                   1121: }
                   1122:
1.26      noro     1123: void Pox_sync(NODE arg,Q *rp)
1.1       noro     1124: {
                   1125:        int c;
                   1126:        int index = QTOS((Q)ARG0(arg));
                   1127:
                   1128:        valid_mctab_index(index);
                   1129:        c = m_c_tab[index].c;
                   1130:        ox_send_sync(c);
                   1131:        *rp = 0;
                   1132: }
                   1133:
1.26      noro     1134: void Pox_shutdown(NODE arg,Q *rp)
1.1       noro     1135: {
                   1136:        int s;
                   1137:        int index = QTOS((Q)ARG0(arg));
1.26      noro     1138: #if !defined(VISUAL)
1.1       noro     1139:        int status;
1.26      noro     1140: #endif
1.1       noro     1141:
                   1142:        valid_mctab_index(index);
                   1143:        s = m_c_tab[index].m;
                   1144:        ox_send_cmd(s,SM_shutdown);
                   1145:        free_iofp(s);
1.18      noro     1146: #if !defined(VISUAL)
                   1147:        s = m_c_tab[index].c;
                   1148:        free_iofp(s);
                   1149: #endif
1.1       noro     1150: #if !MPI && !defined(VISUAL)
                   1151:        if ( m_c_tab[index].af_unix )
                   1152:                wait(&status);
                   1153: #endif
1.8       noro     1154:        m_c_tab[index].m = -1; m_c_tab[index].c = -1;
1.1       noro     1155:        m_c_tab[index].af_unix = 0;
                   1156:        *rp = 0;
                   1157: }
                   1158:
1.26      noro     1159: void Pox_push_cmd(NODE arg,Q *rp)
1.1       noro     1160: {
1.7       noro     1161:        int ui;
1.1       noro     1162:        int index = QTOS((Q)ARG0(arg));
                   1163:
                   1164:        valid_mctab_index(index);
1.7       noro     1165:        ui = QTOS((Q)ARG1(arg));
1.1       noro     1166:        ox_send_cmd(m_c_tab[index].c,ui);
                   1167:        *rp = 0;
                   1168: }
1.16      noro     1169:
                   1170: void shutdown_all() {
                   1171:        int s;
                   1172:        int i,index;
1.26      noro     1173: #if !defined(VISUAL)
1.16      noro     1174:        int status;
1.26      noro     1175: #endif
1.16      noro     1176:
                   1177:        for ( i = I_am_server?1:0; i < m_c_i; i++ ) {
                   1178:                index = i;
                   1179:                check_valid_mctab_index(index);
                   1180:                if ( index < 0 )
                   1181:                        continue;
                   1182:                s = m_c_tab[index].m;
                   1183:                ox_send_cmd(s,SM_shutdown);
1.21      noro     1184: #if defined(VISUAL)
                   1185:        Sleep(1000);
                   1186: #endif
1.16      noro     1187:                free_iofp(s);
1.18      noro     1188: #if !defined(VISUAL)
                   1189:                s = m_c_tab[index].c;
                   1190:                free_iofp(s);
                   1191: #endif
1.16      noro     1192: #if !MPI && !defined(VISUAL)
                   1193:                if ( m_c_tab[index].af_unix )
                   1194:                        wait(&status);
                   1195: #endif
                   1196:                m_c_tab[index].m = 0; m_c_tab[index].c = 0;
                   1197:                m_c_tab[index].af_unix = 0;
                   1198:        }
                   1199: }

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