[BACK]Return to oxserv.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_ntl

Diff for /OpenXM/src/ox_ntl/oxserv.c between version 1.2 and 1.8

version 1.2, 2003/11/08 12:34:00 version 1.8, 2008/09/19 10:55:40
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/ox_ntl/oxserv.c,v 1.1 2003/11/03 03:11:21 iwane Exp $ */  /* $OpenXM: OpenXM/src/ox_ntl/oxserv.c,v 1.7 2004/07/11 00:32:17 iwane Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <errno.h>  #include <errno.h>
 #include <signal.h>  #include <signal.h>
   #include <setjmp.h>
   
 #include "oxserv.h"  #include "oxserv.h"
 #include "oxstack.h"  #include "oxstack.h"
   
   #include "gmp.h"
   #include "gc/gc.h"
   
 #define DPRINTF(x)      printf x; fflush(stdout)  #define DPRINTF(x)      printf x; (void)fflush(stdout)
   
 #if 0  #define FP      stdout
 /*===========================================================================*  #define EPRINTF(x)      fprintf x; (void)fflush(FP)
  * for DEBUG  
  *===========================================================================*/  
 #include <stdarg.h>  
 void  
 dprintf(const char *fmt, ...)  
 {  
         FILE *fp;  
         va_list ap;  
         va_start(ap, fmt);  
   
         fp = fopen("error.txt", "a");  
   
         vfprintf(fp, fmt, ap);  
   
         fflush(fp);  
         fclose(fp);  
   
         va_end(ap);  
 }  
 #endif  
   
 /*===========================================================================*  /*===========================================================================*
  * MACRO   * MACRO
  *===========================================================================*/   *===========================================================================*/
 #define MOXSERV_GET_CMO_TAG(m)  ((G_getCmoTag == NULL) ? m->tag : G_getCmoTag(m))  #define oxserv_get_cmo_tag(m)   ((G_getCmoTag == NULL) ? (m)->tag : G_getCmoTag(m))
   
   
 #define oxserv_delete_cmo(c)         \  #define oxserv_delete_cmo(C)         \
 do {                                 \  do {                                 \
         if (G_DeleteCmo != NULL)     \          if (C != NULL) {             \
                 G_DeleteCmo(c);      \                  if ((C)->c) { FREE((C)->c); } \
         else                         \                  oxserv_delete_cmo_usr(((C)->p)); \
                   free(C);             \
                   C = NULL;            \
           }                            \
   } while (0)
   
   #define oxserv_delete_cmo_usr(c)         \
   do {                                 \
           if (c != NULL) {             \
               if (G_DeleteCmo != NULL) \
                   G_DeleteCmo((cmo *)c);      \
               else                     \
                 c = NULL;            \                  c = NULL;            \
           }                            \
 } while (0)  } while (0)
   
   
   
 /*===========================================================================*  /*===========================================================================*
  * Global Variables.   * Global Variables.
  *===========================================================================*/   *===========================================================================*/
Line 58  do {                                 \
Line 54  do {                                 \
 static OXFILE *G_oxfilep = NULL;  static OXFILE *G_oxfilep = NULL;
 static cmo_mathcap *G_oxserv_mathcap = NULL;  static cmo_mathcap *G_oxserv_mathcap = NULL;
   
   /* signal */
   int             G_oxserv_sigusr1flag = 0;
   int             G_oxserv_sigusr1cnt = 0;
   static jmp_buf  G_jmpbuf;
   
 /* User Function */  /* User Function */
 static void (*G_userExecuteFunction)(const char *, cmo **, int) = NULL;  static void (*G_userExecuteFunction)(const char *, oxstack_node **, int) = NULL;
 static void (*G_userExecuteStringParser)(const char *) = NULL;  static void (*G_userExecuteStringParser)(const char *) = NULL;
   
 static cmo *(*G_convertCmo)(cmo *) = NULL; /* convert user object ==> cmo */  static cmo  *(*G_convertCmo)(void *) = NULL; /* convert user object ==> cmo */
   static char *(*G_convertStr)(void *) = NULL; /* convert user object ==> string */
   
 static void (*G_DeleteCmo)(cmo *) = NULL;  static void (*G_DeleteCmo)(cmo *) = NULL;
   
 static int  (*G_getCmoTag)(cmo *) = NULL;  static int  (*G_getCmoTag)(cmo *) = NULL;
   
   
 /*===========================================================================*  /*===========================================================================*
    * CMO_ERROR2
    *===========================================================================*/
   #define new_cmo_error2_string(msg) new_cmo_error2((cmo *)new_cmo_string(msg))
   
   
   static void
   oxserv_push_errormes(char *msg)
   {
           EPRINTF((FP, "%s\n", msg));
           oxstack_push_cmo((cmo *)new_cmo_error2_string(msg));
   }
   
   /*===========================================================================*
    * synchronized malloc
    *===========================================================================*/
   void *
   oxserv_malloc(size_t size)
   {
           void *ptr;
   
           BLOCK_INPUT();
           ptr = GC_malloc(size);
           UNBLOCK_INPUT();
   
           return (ptr);
   }
   
   void
   oxserv_free(void *ptr, size_t size)
   {
           /* nothing */
   }
   
   void *
   oxserv_realloc(void *org, size_t old, size_t size)
   {
           void *ptr;
   
           BLOCK_INPUT();
           ptr = GC_realloc(org, size);
           UNBLOCK_INPUT();
   
           return (ptr);
   }
   
   
   
   /*===========================================================================*
  * OX_SERVER   * OX_SERVER
  *===========================================================================*/   *===========================================================================*/
   
Line 83  static int  (*G_getCmoTag)(cmo *) = NULL;
Line 134  static int  (*G_getCmoTag)(cmo *) = NULL;
 static void  static void
 oxserv_sm_popCMO(OXFILE *fd)  oxserv_sm_popCMO(OXFILE *fd)
 {  {
         cmo *m = oxstack_pop();          cmo *m;
         if (m == NULL) {          oxstack_node *p;
           int flag = 0;
           p = oxstack_pop();
           if (p == NULL) {
                   EPRINTF((FP, "stack underflow in popCMO\n"));
                 m = new_cmo_null();                  m = new_cmo_null();
         } else if (G_convertCmo) {                  /* asir $B$NF0$-$K=>$&(B */
                 m = G_convertCmo(m);          } else {
                   if (p->c != NULL) {
                           m = p->c;
                   } else if (p->p != NULL) {
                           if (G_convertCmo) {
                                   m = G_convertCmo(p->p);
                           } else {
                                   m = NULL;
                           }
                           if (m == NULL) {
                                   m = (cmo *)new_cmo_error2((cmo *)new_cmo_string("convert failed"));
                                   flag = 1;
   
                           }
                   } else {
                           EPRINTF((FP, "converter not defined\n"));
                           m = (cmo *)new_cmo_error2((cmo *)new_cmo_string("converter not defined"));
                           flag = 1;
                   }
   
                   if (flag) {
                           /*
                            * $B$;$C$+$/7k2L$,$"$k$N$K>C$7$F$7$^$&$N$O(B
                            * $B$b$C$?$$$J$$$N$G;D$9$3$H$K$9$k(B.
                            */
                           oxstack_push(p);
                   } else {
                           oxserv_delete_cmo(p);
                   }
         }          }
   
   
         send_ox_cmo(fd, m);          send_ox_cmo(fd, m);
   
         oxserv_delete_cmo(m);          FREE(m);
 }  }
   
 /*****************************************************************************  /*****************************************************************************
Line 107  static void
Line 191  static void
 oxserv_sm_popString(OXFILE *fd)  oxserv_sm_popString(OXFILE *fd)
 {  {
         char *str;          char *str;
         cmo *m = oxstack_pop();          oxstack_node *p;
           cmo *m;
         cmo_string *m_str;          cmo_string *m_str;
   
         if (m == NULL)          p = oxstack_pop();
           if (p == NULL) {
                   /* @@TODO
                    * http://www.math.kobe-u.ac.jp/OpenXM/1.2.1/html/OpenXM-ja/OpenXM/node12.html
                    * $B%9%?%C%/$,6u$N>l9g$K$O(B (char *)NULL $B$rJV$9(B.
                    * CMO $B$NMQ8l$G=q$+$l$F$$$J$$$+$i2?$rJV$9$Y$-$+$o$+$i$J$$(B.
                    */
                 m = new_cmo_null();                  m = new_cmo_null();
                   str = new_string_set_cmo(m);
           } else {
                   if (p->c) {
                           m = NULL;
                           str = new_string_set_cmo(p->c);
                   } else if (p->p) {
                           if (G_convertStr) {
                                   str = G_convertStr(p->p);
                                   m = NULL;
                           } else {
                                   if (G_convertCmo) {
                                           m = G_convertCmo(p->p);
                                   } else {
                                           /* @@TODO
                                            * $BJQ49$G$-$J$$>l9g$O(B...  CMO_ERROR2 $B$rLa$9$Y$-$G$"$k(B?
                                            * $B$=$N$H$-$N(B stack $B$N>uBV$O$I$&$9$Y$-!)(B
                                            */
                                           m = NULL;
                                   }
                                   str = new_string_set_cmo(m);
                           }
                   } else {
                           m = new_cmo_null();
                           str = new_string_set_cmo(m);
                   }
   
         str = new_string_set_cmo(m);                  oxserv_delete_cmo(p);
           }
   
         m_str = new_cmo_string(str);          m_str = new_cmo_string(str);
   
         send_ox_cmo(fd, (cmo *)m_str);          send_ox_cmo(fd, (cmo *)m_str);
   
         oxserv_delete_cmo(m);          FREE(m);
         oxserv_delete_cmo((cmo *)m_str);          FREE(m_str);
   
         /* free(str); */          /* free(str); */
 }  }
Line 135  oxserv_sm_popString(OXFILE *fd)
Line 252  oxserv_sm_popString(OXFILE *fd)
 static void  static void
 oxserv_sm_pops()  oxserv_sm_pops()
 {  {
           oxstack_node *p, *m;
         cmo_int32 *c;          cmo_int32 *c;
         cmo *m;  
         int n;          int n;
         int i;          int i;
   
         c = (cmo_int32 *)oxstack_pop(); /* suppose */          p = oxstack_pop();
           if (p == NULL) {
                   EPRINTF((FP, "stack underflow in pops\n"));
                   return ;
           }
   
           c = (cmo_int32 *)p->c; /* suppose */
           if (c == NULL) {
                   EPRINTF((FP, "stack underflow in pops\n"));
                   return ;
           }
   
         n = oxstack_get_stack_pointer();          n = oxstack_get_stack_pointer();
         if (c->i < n)          if (c->i < n)
                 n = c->i;                  n = c->i;
Line 151  oxserv_sm_pops()
Line 278  oxserv_sm_pops()
                 oxserv_delete_cmo(m);                  oxserv_delete_cmo(m);
         }          }
   
         oxserv_delete_cmo((cmo *)c);          oxserv_delete_cmo(p);
   
 }  }
   
Line 166  static void
Line 293  static void
 oxserv_sm_getsp()  oxserv_sm_getsp()
 {  {
         cmo_int32 *m = new_cmo_int32(oxstack_get_stack_pointer());          cmo_int32 *m = new_cmo_int32(oxstack_get_stack_pointer());
         oxstack_push((cmo *)m);          oxstack_push_cmo((cmo *)m);
 }  }
   
 /*****************************************************************************  /*****************************************************************************
Line 252  oxserv_mathcap_init(int ver, char *vstr, char *sysname
Line 379  oxserv_mathcap_init(int ver, char *vstr, char *sysname
   
         mathcap_init(ver, vstr, sysname, cmos, sms);          mathcap_init(ver, vstr, sysname, cmos, sms);
   
         oxserv_delete_cmo((cmo *)G_oxserv_mathcap);          if (G_oxserv_mathcap) {
                   FREE(G_oxserv_mathcap);
           }
   
         G_oxserv_mathcap = mathcap_get(new_mathcap());          G_oxserv_mathcap = mathcap_get(new_mathcap());
 }  }
Line 271  oxserv_sm_mathcap()
Line 400  oxserv_sm_mathcap()
                 oxserv_mathcap_init(0, "", "oxserv", NULL, NULL);                  oxserv_mathcap_init(0, "", "oxserv", NULL, NULL);
         }          }
   
         oxstack_push((cmo *)G_oxserv_mathcap);          oxstack_push_cmo((cmo *)G_oxserv_mathcap);
 }  }
   
 /*****************************************************************************  /*****************************************************************************
Line 285  oxserv_sm_mathcap()
Line 414  oxserv_sm_mathcap()
 static void  static void
 oxserv_sm_executeStringByLocalParserInBatchMode(void)  oxserv_sm_executeStringByLocalParserInBatchMode(void)
 {  {
         cmo_string *str = (cmo_string *)oxstack_peek();          oxstack_node *p;
           cmo_string *str;
   
           p = oxstack_peek();
           if (p == NULL) {
                   oxserv_push_errormes("stack underflow in executeStringByLocalParserInBatchMode");
                   return ;
           }
   
           str = (cmo_string *)p->c;
           if (str == NULL) {
                   oxserv_push_errormes("stack underflow in executeStringByLocalParserInBatchMode");
                   return ;
           }
         G_userExecuteStringParser(str->s);          G_userExecuteStringParser(str->s);
 }  }
   
Line 300  oxserv_sm_executeStringByLocalParserInBatchMode(void)
Line 442  oxserv_sm_executeStringByLocalParserInBatchMode(void)
 static void  static void
 oxserv_sm_executeStringByLocalParser(void)  oxserv_sm_executeStringByLocalParser(void)
 {  {
         cmo_string *str = (cmo_string *)oxstack_pop();          oxstack_node *p;
           cmo_string *str;
   
           p = oxstack_pop();
           if (p == NULL) {
                   oxserv_push_errormes("stack underflow in executeStringByLocalParserInBatchMode");
                   return ;
           }
   
           str = (cmo_string *)p->c;
           if (str == NULL) {
                   oxserv_push_errormes("stack underflow in executeStringByLocalParser");
                   return ;
           }
         G_userExecuteStringParser(str->s);          G_userExecuteStringParser(str->s);
           oxserv_delete_cmo(p);
 }  }
   
   
Line 311  oxserv_sm_executeStringByLocalParser(void)
Line 467  oxserv_sm_executeStringByLocalParser(void)
  * pop s as a function name, pop n as the number of arguments and to execute a   * pop s as a function name, pop n as the number of arguments and to execute a
  * local function s with n arguments poped from the stack.   * local function s with n arguments poped from the stack.
  *   *
    * suppose G_userExecuteFunction not equal NULL
    *
  * PARAM : NONE   * PARAM : NONE
  * RETURN: NONE   * RETURN: NONE
  *****************************************************************************/   *****************************************************************************/
Line 318  static void
Line 476  static void
 oxserv_sm_executeFunction(void)  oxserv_sm_executeFunction(void)
 {  {
         int i;          int i;
         cmo_string *name = (cmo_string *)oxstack_pop();          oxstack_node *p1, *p2;
         cmo_int32 *cnt = (cmo_int32 *)oxstack_pop();          cmo_string *name;
         cmo **arg = (cmo **)malloc(cnt->i * sizeof(cmo *));          cmo_int32 *cnt;
           int total;
           oxstack_node **arg;
   
         for (i = 0; i < cnt->i; i++) {  
           if (G_userExecuteFunction == NULL) {
                   oxserv_push_errormes("G_userExecuteFunction not defined");
                   return ;
           }
   
   
           p1 = oxstack_pop();
           p2 = oxstack_pop();
   
           name = (cmo_string *)p1->c;
           cnt = (cmo_int32 *)p2->c;
   
   
   
           if (name == NULL || cnt == NULL) {
                   oxserv_push_errormes("stack underflow in executeFunction[name,cnt]");
                   return ;
           }
           if (name->tag != CMO_STRING) {
                   oxstack_push(p2);
                   oxstack_push(p1);
                   oxserv_push_errormes("invalid parameter #1 not cmo_string");
                   return ;
           }
   
           if (cnt->tag != CMO_INT32) {
                   oxstack_push(p2);
                   oxstack_push(p1);
   printf("command name=%s\n", name->s);
                   oxserv_push_errormes("invalid parameter #2 not cmo_int32");
                   return ;
           }
   
           total = cnt->i;
   
   printf("command name=%s, i=%d\n", name->s, total);
           arg = (oxstack_node **)malloc(total * sizeof(oxstack_node *));
           for (i = 0; i < total; i++) {
                 arg[i] = oxstack_pop();                  arg[i] = oxstack_pop();
                   if (arg[i] == NULL) {
                           oxserv_push_errormes("stack underflow in executeFunction");
   
                           for (i--; i >= 0; i--)
                                   oxserv_delete_cmo(arg[i]);
                           free(arg);
                           return ;
                   }
         }          }
   
         /* user function */          /* user function */
         G_userExecuteFunction(name->s, arg, cnt->i);          G_userExecuteFunction(name->s, arg, total);
   
   
         for (i = 0; i < cnt->i; i++) {          for (i = 0; i < total; i++) {
                 oxserv_delete_cmo(arg[i]);                  oxserv_delete_cmo(arg[i]);
         }          }
   
         oxserv_delete_cmo((cmo *)name);          oxserv_delete_cmo(p1);
         oxserv_delete_cmo((cmo *)cnt);          oxserv_delete_cmo(p2);
   
         free(arg);          free(arg);
 }  }
   
Line 344  oxserv_sm_executeFunction(void)
Line 549  oxserv_sm_executeFunction(void)
  * -- SM_pushCMOtag --   * -- SM_pushCMOtag --
  * push the CMO tag of the top object on the stack.   * push the CMO tag of the top object on the stack.
  *   *
    *
    *
  * PARAM : NONE   * PARAM : NONE
  * RETURN: NONE   * RETURN: NONE
  *****************************************************************************/   *****************************************************************************/
 static void  static void
 oxserv_sm_pushCMOtag()  oxserv_sm_pushCMOtag()
 {  {
         cmo *c = oxstack_peek();          oxstack_node *p = oxstack_peek();
         cmo_int32 *tag = new_cmo_int32(MOXSERV_GET_CMO_TAG(c));          cmo *c = p->c;
         oxstack_push((cmo *)tag);          cmo_int32 *tag;
   
           if (c == NULL) {
                   if (p->p != NULL && G_convertCmo) {
                           c = p->c = G_convertCmo(p->p);
                   }
           }
   
           if (c == NULL) {
                   tag = new_cmo_int32(oxserv_get_cmo_tag(c));
           } else {
                   tag = (cmo_int32 *)new_cmo_error2_string("convert from MathObj to CMO failed");
           }
           oxstack_push_cmo((cmo *)tag);
 }  }
   
   
   /*****************************************************************************
    * -- SM_dupErrors --
    *
    * PARAM : NONE
    * RETURN: NONE
    *****************************************************************************/
 static void  static void
 oxserv_sm_dupErrors()  oxserv_sm_dupErrors()
 {  {
           oxstack_node *p;
         cmo_list *list;          cmo_list *list;
         cmo *c;  
         int i;          int i;
   
         list = new_cmo_list();          list = new_cmo_list();
   
         for (i = 0; i < oxstack_get_stack_pointer(); i++) {          for (i = 0; i < oxstack_get_stack_pointer(); i++) {
                 c = oxstack_get(i);                  p = oxstack_get(i);
                 if (c->tag == CMO_ERROR2) {                  if (p->c && p->c->tag == CMO_ERROR2) {
                         list_append(list, c);                          list_append(list, p->c);
                 }                  }
         }          }
   
         oxstack_push((cmo *)list);          oxstack_push_cmo((cmo *)list);
 }  }
   
 static void  
   
   
   /*****************************************************************************
    * -- SM_control_reset_connection -- signal handler for SIGUSR1 --
    *
    * PARAM : NONE
    *
    *       : if (sig == 0) called UNBLOCK_INPUT()
    * RETURN: NONE
    *****************************************************************************/
   void
 oxserv_sm_control_reset_connection(int sig)  oxserv_sm_control_reset_connection(int sig)
 {  {
         int tag;          int tag;
         OXFILE *fd = G_oxfilep;          OXFILE *fd = G_oxfilep;
   
         DPRINTF(("reset -- start\n"));          if (G_oxserv_sigusr1cnt > 0) {
                   G_oxserv_sigusr1flag = 1;
                   return ;
           }
   
   
           DPRINTF(("reset -- start ==> "));
           G_oxserv_sigusr1flag = 0;
   
         send_ox_tag(fd, OX_SYNC_BALL);          send_ox_tag(fd, OX_SYNC_BALL);
   
         oxstack_init_stack();          oxstack_init_stack();
   
         for (;;) {          for (;;) {
                 tag = receive_ox_tag(fd);                  tag = receive_ox_tag(fd);
                 DPRINTF(("[%d=0x%x]", tag, tag));                  DPRINTF(("[OX:%d=0x%x]", tag, tag));
                 if (tag == OX_SYNC_BALL)                  if (tag == OX_SYNC_BALL)
                         break;                          break;
                 if (tag == OX_DATA)                  if (tag == OX_DATA)
                         receive_cmo(fd);                          receive_cmo(fd);
                   else
                           receive_int32(fd);
         }          }
         DPRINTF(("-- end.\n"));          DPRINTF((" <== end.\n"));
   
   
           longjmp(G_jmpbuf, sig);
 }  }
   
   /*****************************************************************************
    * execute sm command
    *
    * PARAM : NONE
    * RETURN: NONE
    *****************************************************************************/
 static int  static int
 oxserv_receive_and_execute_sm_command(OXFILE *fd)  oxserv_execute_sm_command(OXFILE *fd, int code)
 {  {
         int code = receive_int32(fd);  
   
           DPRINTF(("[SM:%d=0x%x]", code, code));
   
         switch (code) {          switch (code) {
         case SM_popCMO:          case SM_popCMO: /* 262 */
                 oxserv_sm_popCMO(fd);                  oxserv_sm_popCMO(fd);
                 break;                  break;
         case SM_executeStringByLocalParser:          case SM_executeStringByLocalParser: /* 268 */
                 if (G_userExecuteStringParser)                  if (G_userExecuteStringParser)
                         oxserv_sm_executeStringByLocalParser();                          oxserv_sm_executeStringByLocalParser();
                 break;                  break;
         case SM_executeStringByLocalParserInBatchMode:          case SM_executeStringByLocalParserInBatchMode: /* 274 */
                 if (G_userExecuteStringParser)                  if (G_userExecuteStringParser)
                         oxserv_sm_executeStringByLocalParserInBatchMode();                          oxserv_sm_executeStringByLocalParserInBatchMode();
                 break;                  break;
         case SM_pops:          case SM_pops: /* 265 */
                 oxserv_sm_pops();                  oxserv_sm_pops();
                 break;                  break;
         case SM_popString:          case SM_popString: /* 263 */
                 oxserv_sm_popString(fd);                  oxserv_sm_popString(fd);
                 break;                  break;
         case SM_getsp:          case SM_getsp: /* 275 */
                 oxserv_sm_getsp();                  oxserv_sm_getsp();
                 break;                  break;
         case SM_mathcap:          case SM_mathcap: /* 264 */
                 oxserv_sm_mathcap();                  oxserv_sm_mathcap();
                 break;                  break;
         case SM_setMathCap:          case SM_setMathCap: /* 273 */
                 /* dont support */                  /* dont support */
                 oxstack_pop();                  oxstack_pop();
                 break;                  break;
         case SM_executeFunction:          case SM_executeFunction: /* 269 */
                 if (G_userExecuteFunction)                  if (G_userExecuteFunction)
                         oxserv_sm_executeFunction();                          oxserv_sm_executeFunction();
                 break;                  break;
         case SM_pushCMOtag:          case SM_pushCMOtag: /* 277 */
                 oxserv_sm_pushCMOtag();                  oxserv_sm_pushCMOtag();
                 break;                  break;
         case SM_dupErrors:          case SM_dupErrors: /* 276 */
                 oxserv_sm_dupErrors();                  oxserv_sm_dupErrors();
                 break;                  break;
           case SM_popSerializedLocalObject:
           case SM_setName:
           case SM_evalName:
           case SM_beginBlock:
           case SM_endBlock:
           case SM_shutdown:
           case SM_executeFunctionAndPopCMO:
           case SM_executeFunctionAndPopSerializedLocalObject:
         case SM_control_reset_connection:          case SM_control_reset_connection:
         case SM_control_reset_connection_server:          case SM_control_reset_connection_server:
         default:          default:
Line 456  oxserv_receive_and_execute_sm_command(OXFILE *fd)
Line 721  oxserv_receive_and_execute_sm_command(OXFILE *fd)
  * PARAM : fd : OXFILE   * PARAM : fd : OXFILE
  * RETURN: NONE   * RETURN: NONE
  *****************************************************************************/   *****************************************************************************/
 int  static int
 oxserv_receive(OXFILE *fd)  oxserv_ox_receive(OXFILE *fd)
 {  {
         int tag;          int tag;
         cmo *c;          cmo *c;
         int ret = OXSERV_SUCCESS;          int ret = OXSERV_SUCCESS;
           int code;
   
         tag = receive_ox_tag(fd);          tag = receive_ox_tag(fd);
   printf("get ox=[%d=0x%x]\n", tag, tag); fflush(stdout);
   
         switch (tag) {          switch (tag) {
         case OX_DATA:          case OX_DATA:
                   BLOCK_INPUT();
                 c = receive_cmo(fd);                  c = receive_cmo(fd);
                 DPRINTF(("[CMO:%d]", c->tag));                  UNBLOCK_INPUT();
                 oxstack_push(c);                  DPRINTF(("[CMO:%d=0x%x]", c->tag, c->tag));
                   oxstack_push_cmo(c);
                 break;                  break;
   
         case OX_COMMAND:          case OX_COMMAND:
                 DPRINTF(("[SM:%d=0x%x]", tag, tag));                  code = receive_int32(fd);
                 ret = oxserv_receive_and_execute_sm_command(fd);                  ret = oxserv_execute_sm_command(fd, code);
                 break;                  break;
   
         default:          default:
Line 485  oxserv_receive(OXFILE *fd)
Line 754  oxserv_receive(OXFILE *fd)
         return (ret);          return (ret);
 }  }
   
   int
   oxserv_receive(OXFILE *fd)
   {
           int i = 0;
           int ret;
   
   
           /*-----------------------------------------*
            * initialize
            *-----------------------------------------*/
   
           ret = setjmp(G_jmpbuf);
           if (ret == 0) {
                   DPRINTF(("setjmp first time -- %d\n", ret));
           } else {
                   DPRINTF(("setjmp return from longjmp() -- %d -- \n", ret));
           }
   
           /*-----------------------------------------*
            * main loop
            *-----------------------------------------*/
           for (;; i++) {
                   ret = oxserv_ox_receive(fd);
                   if (ret != OXSERV_SUCCESS)
                           break;
           }
   
           return (ret);
   }
   
   
 /*****************************************************************************  /*****************************************************************************
  * initialize oxserver   * initialize oxserver
  *   *
Line 500  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
Line 799  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
 {  {
         int ret;          int ret;
   
           DPRINTF(("init start\n"));
   
         ret = oxstack_init_stack();          ret = oxstack_init_stack();
         if (ret != OXSERV_SUCCESS)          if (ret != OXSERV_SUCCESS)
                 return (ret);                  return (ret);
Line 510  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
Line 811  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
   
         signal(SIGUSR1, oxserv_sm_control_reset_connection);          signal(SIGUSR1, oxserv_sm_control_reset_connection);
   
           /* initialize GMP memory functions. */
           mp_set_memory_functions(oxserv_malloc, oxserv_realloc, oxserv_free);
   
           /* session start */
         oxf_determine_byteorder_server(oxfp);          oxf_determine_byteorder_server(oxfp);
   
         return (OXSERV_SUCCESS);          return (OXSERV_SUCCESS);
Line 517  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
Line 822  oxserv_init(OXFILE *oxfp, int ver, char *vstr, char *s
   
   
 /*****************************************************************************  /*****************************************************************************
  * set oxserver   * set oxserver behavior
  *   *
  * PARAM : mode : mode   * PARAM : mode : mode
  *              :   *              :
Line 532  oxserv_set(int mode, void *ptr, void *rsv)
Line 837  oxserv_set(int mode, void *ptr, void *rsv)
 {  {
         switch (mode) {          switch (mode) {
         case OXSERV_SET_EXECUTE_FUNCTION:          case OXSERV_SET_EXECUTE_FUNCTION:
                 G_userExecuteFunction = (void (*)(const char *, cmo **, int))ptr;                  G_userExecuteFunction = (void (*)(const char *, oxstack_node **, int))ptr;
                 break;                  break;
         case OXSERV_SET_EXECUTE_STRING_PARSER:          case OXSERV_SET_EXECUTE_STRING_PARSER:
                 G_userExecuteStringParser = (void (*)(const char *))ptr;                  G_userExecuteStringParser = (void (*)(const char *))ptr;
                 break;                  break;
         case OXSERV_SET_CONVERT_CMO:          case OXSERV_SET_CONVERT_CMO:
                 G_convertCmo = (cmo *(*)(cmo *))ptr;                  G_convertCmo = (cmo *(*)(void *))ptr;
                 break;                  break;
           case OXSERV_SET_CONVERT_STR:
                   G_convertStr = (char *(*)(void *))ptr;
                   break;
         case OXSERV_SET_DELETE_CMO:          case OXSERV_SET_DELETE_CMO:
                 G_DeleteCmo = (void (*)(cmo *))ptr;                  G_DeleteCmo = (void (*)(cmo *))ptr;
                 break;                  break;
Line 564  oxserv_set(int mode, void *ptr, void *rsv)
Line 872  oxserv_set(int mode, void *ptr, void *rsv)
 void  void
 oxserv_dest()  oxserv_dest()
 {  {
           FREE(G_oxserv_mathcap);
         oxstack_dest();          oxstack_dest();
 }  }
   
Line 574  oxserv_dest()
Line 883  oxserv_dest()
  *===========================================================================*/   *===========================================================================*/
   
   
 cmo *  void
 oxserv_executeFunction(const char *func, cmo **arg, int argc)  oxserv_executeFunction(const char *func, cmo **arg, int argc)
 {  {
         int i;          int i;
Line 585  oxserv_executeFunction(const char *func, cmo **arg, in
Line 894  oxserv_executeFunction(const char *func, cmo **arg, in
                 printf("\t%2d: %s\n", i, new_string_set_cmo(arg[i]));                  printf("\t%2d: %s\n", i, new_string_set_cmo(arg[i]));
         }          }
   
         return ((cmo *)new_cmo_int32(0));          return ;
 }  }
   
 /*****************************************************************************  /*****************************************************************************
Line 594  oxserv_executeFunction(const char *func, cmo **arg, in
Line 903  oxserv_executeFunction(const char *func, cmo **arg, in
  * PARAM : NONE   * PARAM : NONE
  * RETURN: NONE   * RETURN: NONE
  *****************************************************************************/   *****************************************************************************/
   static FILE *dfp = NULL;
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int fd = 3;          int fd = 10;
         int i;          int i;
         int ret;          int ret;
   
           dfp = fopen("/tmp/oxserv,log", "w");
         OXFILE *oxfp = oxf_open(fd);          OXFILE *oxfp = oxf_open(fd);
   
         ox_stderr_init(stderr);          fprintf(dfp, "stderr.init start\n"); fflush(dfp);
           ox_stderr_init(dfp);
   
           fprintf(dfp, "set start\n"); fflush(dfp);
           oxserv_set(OXSERV_SET_EXECUTE_FUNCTION, oxserv_executeFunction, NULL);
   
           fprintf(df10p, "init start\n"); fflush(dfp);
         oxserv_init(oxfp, 0, "$Date$", "oxserv", NULL, NULL);          oxserv_init(oxfp, 0, "$Date$", "oxserv", NULL, NULL);
   
         DPRINTF(("main - start\n"));          fprintf(dfp, "recv start\n"); fflush(dfp);
         for (i = 0;; i++) {          ret = oxserv_receive(oxfp);
                 DPRINTF(("@"));  
                 ret = oxserv_receive(oxfp);  
                 if (ret != OXSERV_SUCCESS)  
                         break;  
         }  
   
           oxserv_dest();
         oxf_close(oxfp);          oxf_close(oxfp);
         oxserv_delete_cmo((cmo *)G_oxserv_mathcap);  
   
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.8

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