[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.5 and 1.19

version 1.5, 2000/08/21 08:31:38 version 1.19, 2003/02/14 22:29:15
Line 23 
Line 23 
  * shall be made on your publication or presentation in any form of the   * shall be made on your publication or presentation in any form of the
  * results obtained by use of the SOFTWARE.   * results obtained by use of the SOFTWARE.
  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by   * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
  * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification   * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
  * for such modification or the source code of the modified part of the   * for such modification or the source code of the modified part of the
  * SOFTWARE.   * SOFTWARE.
  *   *
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.4 2000/03/28 06:32:22 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox.c,v 1.18 2002/12/09 00:42:14 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 54 
Line 54 
   
 #define ISIZ sizeof(int)  #define ISIZ sizeof(int)
   
 void ox_flush_stream(),ox_write_int(),ox_write_cmo();  
 void ox_read_int(),ox_read_cmo();  
 void mclist_to_mc();  
 void ox_read_local();  
   
 extern Obj VOIDobj;  extern Obj VOIDobj;
   
 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 94  static struct mathcap my_mc;
Line 89  static struct mathcap my_mc;
 static struct mathcap *remote_mc;  static struct mathcap *remote_mc;
 static int remote_mc_len;  static int remote_mc_len;
   
 void ox_resetenv(s)  void mclist_to_mc(LIST mclist,struct mathcap *mc);
 char *s;  
   #if defined(VISUAL)
   /* XXX : mainly used in engine2000/io.c, but declared here */
   HANDLE hStreamNotify,hStreamNotify_Ack;
   
   void cleanup_events()
 {  {
           /* ox_watch_stream may be waiting for hStreamNotify_Ack to be set */
   
           ResetEvent(hStreamNotify);
           SetEvent(hStreamNotify_Ack);
   }
   #endif
   
   void ox_resetenv(char *s)
   {
   #if defined(VISUAL)
           cleanup_events();
   #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 109  static int available_cmo[] = {
Line 121  static int available_cmo[] = {
         CMO_RING_BY_NAME, CMO_DISTRIBUTED_POLYNOMIAL,          CMO_RING_BY_NAME, CMO_DISTRIBUTED_POLYNOMIAL,
         CMO_RECURSIVE_POLYNOMIAL, CMO_UNIVARIATE_POLYNOMIAL,          CMO_RECURSIVE_POLYNOMIAL, CMO_UNIVARIATE_POLYNOMIAL,
         CMO_INDETERMINATE,          CMO_INDETERMINATE,
           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_setName,          SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,
         SM_evalName, SM_executeStringByLocalParser,          SM_evalName, SM_executeStringByLocalParser,
         SM_executeStringByLocalParserInBatchMode,          SM_executeStringByLocalParserInBatchMode,
         SM_executeFunction, SM_shutdown, SM_pops,          SM_executeFunction, SM_shutdown, SM_pops,
Line 123  static int available_sm[] = {
Line 136  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,
           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 141  void create_my_mathcap(char *system)
Line 174  void create_my_mathcap(char *system)
         NODE n,n0;          NODE n,n0;
         int i,k;          int i,k;
         STRING str;          STRING str;
         LIST sname,smlist,oxlist,cmolist,asirlist,oxtag,oxasir,r;          LIST sname,smlist,oxlist,cmolist,asirlist,oxasir,r;
         USINT tag,t,t1;          USINT tag,t,t1;
   
         if ( my_mathcap )          if ( my_mathcap )
Line 151  void create_my_mathcap(char *system)
Line 184  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 234  void store_remote_mathcap(int s,MATHCAP mc)
Line 280  void store_remote_mathcap(int s,MATHCAP mc)
   
 void mclist_to_mc(LIST mclist,struct mathcap *mc)  void mclist_to_mc(LIST mclist,struct mathcap *mc)
 {  {
         int id,l,i,j;          int l,i,j;
         NODE n,t,oxcmo,ox,cap;          NODE n,t,oxcmo,cap;
         int *ptr;          int *ptr;
   
         /*          /*
Line 281  void mclist_to_mc(LIST mclist,struct mathcap *mc)
Line 327  void mclist_to_mc(LIST mclist,struct mathcap *mc)
         }          }
 }  }
   
 int check_sm_by_mc(s,smtag)  int check_sm_by_mc(int s,unsigned int smtag)
 int s;  
 unsigned int smtag;  
 {  {
         struct mathcap *rmc;          struct mathcap *rmc;
         int nsmcap,i;          int nsmcap,i;
Line 306  unsigned int smtag;
Line 350  unsigned int smtag;
                 return 1;                  return 1;
 }  }
   
 int check_by_mc(s,oxtag,cmotag)  int check_by_mc(int s,unsigned int oxtag,unsigned int cmotag)
 int s;  
 unsigned int oxtag,cmotag;  
 {  {
         struct mathcap *rmc;          struct mathcap *rmc;
         int noxcap,ncap,i,j;          int noxcap,ncap,i,j;
Line 346  void begin_critical() {
Line 388  void begin_critical() {
 void end_critical() {  void end_critical() {
         critical_when_signal = 0;          critical_when_signal = 0;
         if ( ox_usr1_sent ) {          if ( ox_usr1_sent ) {
                 ox_usr1_sent = 0; ox_usr1_handler();                  ox_usr1_sent = 0;
   #if !defined(VISUAL)
           ox_usr1_handler(SIGUSR1);
   #else
           ox_usr1_handler(0);
   #endif
         }          }
         if ( ox_int_received ) {          if ( ox_int_received ) {
                 ox_int_received = 0; int_handler(SIGINT);                  ox_int_received = 0; int_handler(SIGINT);
         }          }
 }  }
   
 void ox_usr1_handler(sig)  extern FUNC registered_handler;
 int sig;  
 {  
         extern jmp_buf env;  
         unsigned int cmd;  
   
   void ox_usr1_handler(int sig)
   {
 #if !defined(VISUAL)  #if !defined(VISUAL)
         signal(SIGUSR1,ox_usr1_handler);          signal(SIGUSR1,ox_usr1_handler);
 #endif  #endif
Line 367  int sig;
Line 412  int sig;
                 ox_usr1_sent = 1;                  ox_usr1_sent = 1;
         } else {          } else {
                 ox_flushing = 1;                  ox_flushing = 1;
                   if ( registered_handler ) {
                           fprintf(stderr,
                                   "usr1 : calling the registered exception handler...");
                           bevalf(registered_handler,0);
                           fprintf(stderr, "done.\n");
                   }
                 ox_resetenv("usr1 : return to toplevel by SIGUSR1");                  ox_resetenv("usr1 : return to toplevel by SIGUSR1");
         }          }
 }  }
   
 void clear_readbuffer()  void clear_readbuffer()
 {  {
         char c;  
         fd_set r,w,e;  
         struct timeval interval;  
         int n,sock;  
   
 #if defined(linux)  #if defined(linux)
         iofp[0].in->_IO_read_ptr = iofp[0].in->_IO_read_end;          iofp[0].in->_IO_read_ptr = iofp[0].in->_IO_read_end;
 #elif defined(__FreeBSD__)  #elif defined(__FreeBSD__)
Line 399  void clear_readbuffer()
Line 445  void clear_readbuffer()
 */  */
 }  }
   
 #if MPI  #if defined(MPI)
 int ox_data_is_available(int s)  int ox_data_is_available(int s)
 {  {
         return 1;          return 1;
Line 424  void wait_for_data(int s)
Line 470  void wait_for_data(int s)
 #if defined(VISUAL)  #if defined(VISUAL)
                 sock = iofp[s].in->fildes;                  sock = iofp[s].in->fildes;
                 FD_ZERO(&r);                  FD_ZERO(&r);
                 FD_SET(sock,&r);                  FD_SET((unsigned int)sock,&r);
                 select(0,&r,NULL,NULL,NULL);                  select(0,&r,NULL,NULL,NULL);
 #else  #else
                 sock = fileno(iofp[s].in);                  sock = fileno(iofp[s].in);
Line 438  void wait_for_data(int s)
Line 484  void wait_for_data(int s)
   
 void ox_send_data(int s,pointer p)  void ox_send_data(int s,pointer p)
 {  {
         if ( ox_check && !ox_check_cmo(s,(Obj)p) )          ERR err;
                 error("ox_send_data : Mathcap violation");  
           if ( ox_check && !ox_check_cmo(s,(Obj)p) ) {
                   create_error(&err,ox_serial,"ox_send_data : Mathcap violation");
                   p = (pointer)err;
           }
         begin_critical();          begin_critical();
         ox_write_int(s,OX_DATA);          ox_write_int(s,OX_DATA);
         ox_write_int(s,ox_serial++);          ox_write_int(s,ox_serial++);
Line 475  void ox_send_local_data(int s,Obj p)
Line 525  void ox_send_local_data(int s,Obj p)
         ox_write_int(s,OX_LOCAL_OBJECT_ASIR);          ox_write_int(s,OX_LOCAL_OBJECT_ASIR);
         ox_write_int(s,ox_serial++);          ox_write_int(s,ox_serial++);
         ox_write_int(s,ASIR_OBJ);          ox_write_int(s,ASIR_OBJ);
         saveobj(iofp[s].out,p);          saveobj((FILE *)iofp[s].out,p);
         ox_flush_stream(s);          ox_flush_stream(s);
         end_critical();          end_critical();
 }  }
Line 486  void ox_send_local_ring(int s,VL vl)
Line 536  void ox_send_local_ring(int s,VL vl)
         ox_write_int(s,OX_LOCAL_OBJECT_ASIR);          ox_write_int(s,OX_LOCAL_OBJECT_ASIR);
         ox_write_int(s,ox_serial++);          ox_write_int(s,ox_serial++);
         ox_write_int(s,ASIR_VL);          ox_write_int(s,ASIR_VL);
         savevl(iofp[s].out,vl);          savevl((FILE *)iofp[s].out,vl);
         ox_flush_stream(s);          ox_flush_stream(s);
         end_critical();          end_critical();
 }  }
   
 unsigned int ox_recv(int s, int *id, pointer *p)  unsigned int ox_recv(int s, int *id, Obj *p)
 {  {
         unsigned int cmd,serial;          unsigned int cmd,serial;
         USINT ui;          USINT ui;
Line 504  unsigned int ox_recv(int s, int *id, pointer *p)
Line 554  unsigned int ox_recv(int s, int *id, pointer *p)
                 case OX_COMMAND:                  case OX_COMMAND:
                         ox_read_int(s,&cmd);                          ox_read_int(s,&cmd);
                         MKUSINT(ui,cmd);                          MKUSINT(ui,cmd);
                         *p = (pointer)ui;                          *p = (Obj)ui;
                         break;                          break;
                 case OX_DATA:                  case OX_DATA:
                         ox_read_cmo(s,p);                          ox_read_cmo(s,p);
Line 520  unsigned int ox_recv(int s, int *id, pointer *p)
Line 570  unsigned int ox_recv(int s, int *id, pointer *p)
         return serial;          return serial;
 }  }
   
 void ox_get_result(s,rp)  void ox_get_result(int s,Obj *rp)
 int s;  
 Obj *rp;  
 {  {
         int id;          int id;
         Obj obj,r;          Obj obj,r;
Line 531  Obj *rp;
Line 579  Obj *rp;
         level = 0;          level = 0;
         r = 0;          r = 0;
         do {          do {
                 ox_recv(s,&id,(pointer *)&obj);                  ox_recv(s,&id,&obj);
                 if ( id == OX_COMMAND ) {                  if ( id == OX_COMMAND ) {
                         switch ( ((USINT)obj)->body ) {                          switch ( ((USINT)obj)->body ) {
                                 case SM_beginBlock:                                  case SM_beginBlock:
Line 549  Obj *rp;
Line 597  Obj *rp;
 void ox_read_int(int s, int *n)  void ox_read_int(int s, int *n)
 {  {
         ox_need_conv = iofp[s].conv;          ox_need_conv = iofp[s].conv;
         read_int(iofp[s].in,n);          read_int((FILE *)iofp[s].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(iofp[s].in,rp);          read_cmo((FILE *)iofp[s].in,rp);
 }  }
   
 void ox_read_local(int s, Obj *rp)  void ox_read_local(int s, Obj *rp)
Line 563  void ox_read_local(int s, Obj *rp)
Line 611  void ox_read_local(int s, Obj *rp)
         int id;          int id;
   
         ox_need_conv = iofp[s].conv;          ox_need_conv = iofp[s].conv;
         read_int(iofp[s].in,&id);          read_int((FILE *)iofp[s].in,&id);
         switch ( id ) {          switch ( id ) {
                 case ASIR_VL:                  case ASIR_VL:
                         loadvl(iofp[s].in);                          loadvl((FILE *)iofp[s].in);
                         *rp = VOIDobj;                          *rp = VOIDobj;
                         break;                          break;
                 case ASIR_OBJ:                  case ASIR_OBJ:
                         loadobj(iofp[s].in,rp);                          loadobj((FILE *)iofp[s].in,rp);
                         break;                          break;
                 default:                  default:
                         error("ox_read_local : unsupported id");                          error("ox_read_local : unsupported id");
Line 581  void ox_read_local(int s, Obj *rp)
Line 629  void ox_read_local(int s, Obj *rp)
 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(iofp[s].out,&n);          write_int((FILE *)iofp[s].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(iofp[s].out,obj);          write_cmo((FILE *)iofp[s].out,obj);
 }  }
   
 int ox_check_cmo(int s, Obj obj)  int ox_check_cmo(int s, Obj obj)
Line 598  int ox_check_cmo(int s, Obj obj)
Line 646  int ox_check_cmo(int s, Obj obj)
                 return 1;                  return 1;
         switch ( OID(obj) ) {          switch ( OID(obj) ) {
                 case O_MATHCAP: case O_STR: case O_ERR: case O_USINT: case O_VOID:                  case O_MATHCAP: case O_STR: case O_ERR: case O_USINT: case O_VOID:
                   case O_BYTEARRAY:
                         return 1;                          return 1;
                 case O_P:                  case O_P:
                         if ( !check_by_mc(s,OX_DATA,CMO_RECURSIVE_POLYNOMIAL) )                          if ( !check_by_mc(s,OX_DATA,CMO_RECURSIVE_POLYNOMIAL) )
Line 631  int ox_check_cmo(int s, Obj obj)
Line 680  int ox_check_cmo(int s, Obj obj)
                                 if ( !ox_check_cmo(s,(BDY(m))) )                                  if ( !ox_check_cmo(s,(BDY(m))) )
                                         return 0;                                          return 0;
                         return 1;                          return 1;
                   case O_QUOTE: /* XXX */
                           return 1;
                 default:                  default:
                         return 0;                          return 0;
         }          }
Line 645  void ox_get_serverinfo(int s, LIST *rp)
Line 696  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 669  int ox_check_cmo_dp(int s, DP p)
Line 726  int ox_check_cmo_dp(int s, DP p)
         return 1;          return 1;
 }  }
   
 void ox_flush_stream(s)  void ox_flush_stream(int s)
 int s;  
 {  {
         if ( ox_batch )          if ( ox_batch )
                 return;                  return;
Line 678  int s;
Line 734  int s;
         if ( _fileno(&iofp[s].out->fp) < 0 )          if ( _fileno(&iofp[s].out->fp) < 0 )
                 cflush(iofp[s].out);                  cflush(iofp[s].out);
         else          else
 #elif MPI  #elif defined(MPI)
         if ( (char)fileno(&iofp[s].out->fp) < 0 )          if ( (char)fileno(&iofp[s].out->fp) < 0 )
                 cflush(iofp[s].out);                  cflush(iofp[s].out);
         else          else
 #endif  #endif
         fflush(iofp[s].out);          fflush((FILE *)iofp[s].out);
 }  }
   
 void ox_flush_stream_force(s)  void ox_flush_stream_force(int s)
 int s;  
 {  {
 #if defined(VISUAL)  #if defined(VISUAL)
         if ( _fileno(&iofp[s].out->fp) < 0 )          if ( _fileno(&iofp[s].out->fp) < 0 )
                 cflush(iofp[s].out);                  cflush(iofp[s].out);
         else          else
 #elif MPI  #elif defined(MPI)
         if ( (char)fileno(&iofp[s].out->fp) < 0 )          if ( (char)fileno(&iofp[s].out->fp) < 0 )
                 cflush(iofp[s].out);                  cflush(iofp[s].out);
         else          else
 #endif  #endif
         fflush(iofp[s].out);          fflush((FILE *)iofp[s].out);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.19

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