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

Diff for /OpenXM_contrib2/asir2000/io/ox.c between version 1.12 and 1.26

version 1.12, 2001/10/09 01:36:21 version 1.26, 2004/12/17 03:09:08
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2000/io/ox.c,v 1.11 2001/08/03 08:50:19 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox.c,v 1.25 2004/08/28 12:50:30 takayama Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 56 
Line 56 
   
 extern Obj VOIDobj;  extern Obj VOIDobj;
   
   extern int nserver_102, myrank_102;
 extern int ox_need_conv;  extern int ox_need_conv;
 extern int ox_usr1_sent, ox_int_received, critical_when_signal;  int ox_usr1_sent, ox_int_received, critical_when_signal;
 unsigned int ox_serial;  unsigned int ox_serial;
 int ox_flushing;  int ox_flushing;
 int ox_batch;  int ox_batch;
 int ox_check=1;  int ox_check=1;
 int ox_exchange_mathcap=1;  int ox_exchange_mathcap=1;
 jmp_buf ox_env;  JMP_BUF ox_env;
   
 MATHCAP my_mathcap;  MATHCAP my_mathcap;
   
Line 110  void ox_resetenv(char *s)
Line 111  void ox_resetenv(char *s)
         cleanup_events();          cleanup_events();
 #endif  #endif
         fprintf(stderr,"%s\n",s);          fprintf(stderr,"%s\n",s);
         longjmp(ox_env,1);          LONGJMP(ox_env,1);
 }  }
   
 static int available_cmo[] = {  static int available_cmo[] = {
Line 119  static int available_cmo[] = {
Line 120  static int available_cmo[] = {
         CMO_ZZ, CMO_QQ, CMO_ZERO,          CMO_ZZ, CMO_QQ, CMO_ZERO,
         CMO_DMS_GENERIC, CMO_DMS_OF_N_VARIABLES,          CMO_DMS_GENERIC, CMO_DMS_OF_N_VARIABLES,
         CMO_RING_BY_NAME, CMO_DISTRIBUTED_POLYNOMIAL,          CMO_RING_BY_NAME, CMO_DISTRIBUTED_POLYNOMIAL,
       CMO_RATIONAL,
         CMO_RECURSIVE_POLYNOMIAL, CMO_UNIVARIATE_POLYNOMIAL,          CMO_RECURSIVE_POLYNOMIAL, CMO_UNIVARIATE_POLYNOMIAL,
         CMO_INDETERMINATE,          CMO_INDETERMINATE,
         CMO_TREE,          CMO_TREE,
         0          0
 };  };
   
 static int available_sm[] = {  static int asir_available_sm[] = {
         SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,          SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,
         SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,          SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,
         SM_evalName, SM_executeStringByLocalParser,          SM_evalName, SM_executeStringByLocalParser,
Line 136  static int available_sm[] = {
Line 138  static int available_sm[] = {
         0          0
 };  };
   
   static int ox_asir_available_sm[] = {
           SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,
           SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,
           SM_evalName, SM_executeStringByLocalParser,
           SM_executeStringByLocalParserInBatchMode,
           SM_executeFunction, SM_shutdown, SM_pops,
           SM_mathcap, SM_setMathcap, SM_nop,
           SM_beginBlock, SM_endBlock,
           SM_set_rank_102, SM_tcp_accept_102, SM_tcp_connect_102, SM_reset_102,
           SM_bcast_102, SM_reduce_102,
           0
   };
   
   static int ox_plot_available_sm[] = {
           SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,
           SM_popCMO, SM_popString, SM_setName,
           SM_evalName, SM_executeStringByLocalParser,
           SM_executeFunction, SM_shutdown, SM_pops,
           SM_mathcap, SM_setMathcap, SM_nop,
           0
   };
   
 /*  /*
         mathcap =          mathcap =
                 [                  [
Line 164  void create_my_mathcap(char *system)
Line 188  void create_my_mathcap(char *system)
         MKUSINT(t,OX_VERSION);          MKUSINT(t,OX_VERSION);
         n0 = mknode(2,t,str); MKLIST(sname,n0);          n0 = mknode(2,t,str); MKLIST(sname,n0);
   
         /* cmo tag */          /* sm tag */
         for ( n0 = 0, i = 0; k = available_sm[i]; i++ ) {          n0 = 0;
                 NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;          if ( !strcmp(system,"asir") ) {
                   for ( i = 0; k = asir_available_sm[i]; i++ ) {
                           NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;
                   }
           } else if ( !strcmp(system,"ox_asir") ) {
                   for ( i = 0; k = ox_asir_available_sm[i]; i++ ) {
                           NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;
                   }
                   NEXT(n) = 0;
           } else if ( !strcmp(system,"ox_plot") ) {
                   for ( i = 0; k = ox_plot_available_sm[i]; i++ ) {
                           NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;
                   }
                   NEXT(n) = 0;
         }          }
         NEXT(n) = 0; MKLIST(smlist,n0);          MKLIST(smlist,n0);
   
         /* creation of [OX_DATA,CMO list] */          /* creation of [OX_DATA,CMO list] */
         /* ox tag */          /* ox tag */
Line 367  void end_critical() {
Line 404  void end_critical() {
         }          }
 }  }
   
   extern NODE user_int_handler;
   
 void ox_usr1_handler(int sig)  void ox_usr1_handler(int sig)
 {  {
         extern jmp_buf env;          NODE t;
   
 #if !defined(VISUAL)  #if !defined(VISUAL)
         signal(SIGUSR1,ox_usr1_handler);          signal(SIGUSR1,ox_usr1_handler);
Line 379  void ox_usr1_handler(int sig)
Line 418  void ox_usr1_handler(int sig)
                 ox_usr1_sent = 1;                  ox_usr1_sent = 1;
         } else {          } else {
                 ox_flushing = 1;                  ox_flushing = 1;
                   if ( user_int_handler ) {
                           fprintf(stderr,
                                   "usr1 : calling the registered exception handlers...");
                           for ( t = user_int_handler; t; t = NEXT(t) )
                                   bevalf((FUNC)BDY(t),0);
                           fprintf(stderr, "done.\n");
                   }
                 ox_resetenv("usr1 : return to toplevel by SIGUSR1");                  ox_resetenv("usr1 : return to toplevel by SIGUSR1");
         }          }
 }  }
Line 441  void wait_for_data(int s)
Line 487  void wait_for_data(int s)
 #endif  #endif
         }          }
 }  }
   
   void wait_for_data_102(int rank)
   {
           fd_set r;
           int sock;
   
           if ( !FP_DATA_IS_AVAILABLE(iofp_102[rank].in) ) {
   #if defined(VISUAL)
                   sock = iofp_102[rank].in->fildes;
                   FD_ZERO(&r);
                   FD_SET((unsigned int)sock,&r);
                   select(0,&r,NULL,NULL,NULL);
   #else
                   sock = fileno(iofp_102[rank].in);
                   FD_ZERO(&r);
                   FD_SET(sock,&r);
                   select(FD_SETSIZE,&r,NULL,NULL,NULL);
 #endif  #endif
           }
   }
   #endif
   
 void ox_send_data(int s,pointer p)  void ox_send_data(int s,pointer p)
 {  {
Line 459  void ox_send_data(int s,pointer p)
Line 525  void ox_send_data(int s,pointer p)
         end_critical();          end_critical();
 }  }
   
   void ox_send_data_102(int rank,pointer p)
   {
           ERR err;
   
           begin_critical();
           ox_write_int_102(rank,OX_DATA);
           ox_write_int_102(rank,ox_serial++);
           ox_write_cmo_102(rank,p);
           ox_flush_stream_102(rank);
           end_critical();
   }
   
   void ox_bcast_102(int root)
   {
           Obj data;
           int r,mask,id,src,dst;
   
           r = myrank_102-root;
           if ( r == 0 )
                   data = (Obj)asir_pop_one();
   
           if ( r < 0 ) r += nserver_102;
           for ( mask = 1; mask < nserver_102; mask <<= 1 )
                   if ( r&mask ) {
                           src = myrank_102-mask;
                           if ( src < 0 ) src += nserver_102;
                           ox_recv_102(src,&id,&data);
                           break;
                   }
           for ( mask >>= 1; mask > 0; mask >>= 1 )
                   if ( (r+mask) < nserver_102 ) {
                           dst = myrank_102+mask;
                           if ( dst >= nserver_102 ) dst -= nserver_102;
                           ox_send_data_102(dst,data);
                   }
           asir_push_one(data);
   }
   
   /* func : an arithmetic funcion func(vl,a,b,*c) */
   
   void ox_reduce_102(int root,void (*func)())
   {
           Obj data,data0,t;
           int r,mask,id,src,dst;
   
           r = myrank_102-root;
           if ( r < 0 ) r += nserver_102;
           data = (Obj)asir_pop_one();
           for ( mask = 1; mask < nserver_102; mask <<= 1 )
                   if ( r&mask ) {
                           dst = (r-mask)+root;
                           if ( dst >= nserver_102 ) dst -= nserver_102;
                           ox_send_data_102(dst,data);
                           break;
                   } else {
                           src = r+mask;
                           if ( src < nserver_102 ) {
                                   src += root;
                                   if ( src >= nserver_102 ) src -= nserver_102;
                                   ox_recv_102(src,&id,&data0);
                                   (*func)(CO,data,data0,&t); data = t;
                           }
                   }
           asir_push_one(r?0:data);
   }
   
 void ox_send_cmd(int s,int id)  void ox_send_cmd(int s,int id)
 {  {
         if ( ox_check && !check_sm_by_mc(s,id) )          if ( ox_check && !check_sm_by_mc(s,id) )
Line 480  void ox_send_sync(int s)
Line 612  void ox_send_sync(int s)
         end_critical();          end_critical();
 }  }
   
   void ox_send_sync_102(int rank)
   {
           begin_critical();
           ox_write_int_102(rank,OX_SYNC_BALL);
           ox_write_int_102(rank,ox_serial++);
           ox_flush_stream_102(rank);
           end_critical();
   }
   
 void ox_send_local_data(int s,Obj p)  void ox_send_local_data(int s,Obj p)
 {  {
         begin_critical();          begin_critical();
Line 491  void ox_send_local_data(int s,Obj p)
Line 632  void ox_send_local_data(int s,Obj p)
         end_critical();          end_critical();
 }  }
   
   void ox_send_local_data_102(int rank,Obj p)
   {
           begin_critical();
           ox_write_int_102(rank,OX_LOCAL_OBJECT_ASIR);
           ox_write_int_102(rank,ox_serial++);
           ox_write_int_102(rank,ASIR_OBJ);
           saveobj((FILE *)iofp_102[rank].out,p);
           ox_flush_stream_102(rank);
           end_critical();
   }
   
 void ox_send_local_ring(int s,VL vl)  void ox_send_local_ring(int s,VL vl)
 {  {
         begin_critical();          begin_critical();
Line 502  void ox_send_local_ring(int s,VL vl)
Line 654  void ox_send_local_ring(int s,VL vl)
         end_critical();          end_critical();
 }  }
   
   void ox_send_local_ring_102(int rank,VL vl)
   {
           begin_critical();
           ox_write_int_102(rank,OX_LOCAL_OBJECT_ASIR);
           ox_write_int_102(rank,ox_serial++);
           ox_write_int_102(rank,ASIR_VL);
           savevl((FILE *)iofp_102[rank].out,vl);
           ox_flush_stream_102(rank);
           end_critical();
   }
   
 unsigned int ox_recv(int s, int *id, Obj *p)  unsigned int ox_recv(int s, int *id, Obj *p)
 {  {
         unsigned int cmd,serial;          unsigned int cmd,serial;
Line 531  unsigned int ox_recv(int s, int *id, Obj *p)
Line 694  unsigned int ox_recv(int s, int *id, Obj *p)
         return serial;          return serial;
 }  }
   
   unsigned int ox_recv_102(int rank, int *id, Obj *p)
   {
           unsigned int cmd,serial;
           USINT ui;
   
           wait_for_data_102(rank);
           begin_critical();
           ox_read_int_102(rank,id);
           ox_read_int_102(rank,&serial);
           switch ( *id ) {
                   case OX_COMMAND:
                           ox_read_int_102(rank,&cmd);
                           MKUSINT(ui,cmd);
                           *p = (Obj)ui;
                           break;
                   case OX_DATA:
                           ox_read_cmo_102(rank,p);
                           break;
                   case OX_LOCAL_OBJECT_ASIR:
                           ox_read_local_102(rank,p);
                           break;
                   default:
                           *p = 0;
                           break;
           }
           end_critical();
           return serial;
   }
   
 void ox_get_result(int s,Obj *rp)  void ox_get_result(int s,Obj *rp)
 {  {
         int id;          int id;
Line 561  void ox_read_int(int s, int *n)
Line 753  void ox_read_int(int s, int *n)
         read_int((FILE *)iofp[s].in,n);          read_int((FILE *)iofp[s].in,n);
 }  }
   
   void ox_read_int_102(int rank, int *n)
   {
           ox_need_conv = iofp_102[rank].conv;
           read_int((FILE *)iofp_102[rank].in,n);
   }
   
 void ox_read_cmo(int s, Obj *rp)  void ox_read_cmo(int s, Obj *rp)
 {  {
         ox_need_conv = iofp[s].conv;          ox_need_conv = iofp[s].conv;
         read_cmo((FILE *)iofp[s].in,rp);          read_cmo((FILE *)iofp[s].in,rp);
 }  }
   
   void ox_read_cmo_102(int rank, Obj *rp)
   {
           ox_need_conv = iofp_102[rank].conv;
           read_cmo((FILE *)iofp_102[rank].in,rp);
   }
   
   
 void ox_read_local(int s, Obj *rp)  void ox_read_local(int s, Obj *rp)
 {  {
         int id;          int id;
Line 587  void ox_read_local(int s, Obj *rp)
Line 792  void ox_read_local(int s, Obj *rp)
         }          }
 }  }
   
   void ox_read_local_102(int rank, Obj *rp)
   {
           int id;
   
           ox_need_conv = iofp_102[rank].conv;
           read_int((FILE *)iofp_102[rank].in,&id);
           switch ( id ) {
                   case ASIR_VL:
                           loadvl((FILE *)iofp_102[rank].in);
                           *rp = VOIDobj;
                           break;
                   case ASIR_OBJ:
                           loadobj((FILE *)iofp_102[rank].in,rp);
                           break;
                   default:
                           error("ox_read_local_102 : unsupported id");
                           break;
           }
   }
   
 void ox_write_int(int s, int n)  void ox_write_int(int s, int n)
 {  {
         ox_need_conv = iofp[s].conv;          ox_need_conv = iofp[s].conv;
         write_int((FILE *)iofp[s].out,&n);          write_int((FILE *)iofp[s].out,&n);
 }  }
   
   void ox_write_int_102(int rank, int n)
   {
           ox_need_conv = iofp_102[rank].conv;
           write_int((FILE *)iofp_102[rank].out,&n);
   }
   
 void ox_write_cmo(int s, Obj obj)  void ox_write_cmo(int s, Obj obj)
 {  {
         ox_need_conv = iofp[s].conv;          ox_need_conv = iofp[s].conv;
         write_cmo((FILE *)iofp[s].out,obj);          write_cmo((FILE *)iofp[s].out,obj);
 }  }
   
   void ox_write_cmo_102(int rank, Obj obj)
   {
           ox_need_conv = iofp_102[rank].conv;
           write_cmo((FILE *)iofp_102[rank].out,obj);
   }
   
 int ox_check_cmo(int s, Obj obj)  int ox_check_cmo(int s, Obj obj)
 {  {
         NODE m;          NODE m;
Line 657  void ox_get_serverinfo(int s, LIST *rp)
Line 894  void ox_get_serverinfo(int s, LIST *rp)
         }          }
 }  }
   
   char *ox_get_servername(int s)
   {
           return (remote_mc && remote_mc[s].servername)?remote_mc[s].servername:0;
   }
   
   
 int ox_check_cmo_p(int s, P p)  int ox_check_cmo_p(int s, P p)
 {  {
         DCP dc;          DCP dc;
Line 709  void ox_flush_stream_force(int s)
Line 952  void ox_flush_stream_force(int s)
         else          else
 #endif  #endif
         fflush((FILE *)iofp[s].out);          fflush((FILE *)iofp[s].out);
   }
   
   void ox_flush_stream_102(int rank)
   {
           if ( !ox_batch )
                   ox_flush_stream_force_102(rank);
   }
   
   void ox_flush_stream_force_102(int rank)
   {
           if ( iofp_102[rank].out )
   #if defined(VISUAL)
                   cflush(iofp_102[rank].out);
   #elif MPI
                   cflush(iofp_102[rank].out);
   #else
                   fflush(iofp_102[rank].out);
   #endif
 }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.26

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