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

Diff for /OpenXM/src/oxc/sm_ext.c between version 1.2 and 1.8

version 1.2, 2000/11/18 06:03:42 version 1.8, 2000/12/03 14:32:40
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM: OpenXM/src/oxc/sm_ext.c,v 1.1 2000/10/13 06:05:12 ohara Exp $ */  /* $OpenXM: OpenXM/src/oxc/sm_ext.c,v 1.7 2000/12/01 01:53:34 ohara Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
 #include <string.h>  #include <string.h>
 #include <sys/signal.h>  #include <sys/types.h>
   #include <signal.h>
 #include <ox_toolkit.h>  #include <ox_toolkit.h>
 #include "sm.h"  #include "sm.h"
   
   static int  sm_control_spawn();
   static void sm_control_terminate();
   static void sm_control_kill();
   static void sm_control_reset_pid();
   
   static void pid_extend();
   static int  pid_lookup(pid_t pid);
   static int  pid_registed(pid_t pid);
   static void pid_regist(pid_t pid);
   static void pid_delete(pid_t pid);
   static int  pid_reset(pid_t pid);
   static int  pid_kill(pid_t pid);
   static void pid_kill_all();
   
 /* ultra loose data base. */  /* ultra loose data base. */
 static db db_localfunc[] = {  static struct { int (*func_ptr)(); char *key; } tbl_lfunc[] = {
       {lf_oxc_open, "spawn"},
     {lf_oxc_open, "oxc_open"},      {lf_oxc_open, "oxc_open"},
     {NULL, NULL}      {NULL, NULL}
 };  };
   
 static db db_sm[] = {  static struct { int (*func_ptr)(); int key; } tbl_smcmd[] = {
       {sm_control_spawn,     SM_control_spawn_server},
       {sm_control_terminate, SM_control_terminate_server},
     {sm_executeFunction, SM_executeFunction},      {sm_executeFunction, SM_executeFunction},
     {sm_mathcap,         SM_mathcap},      {sm_mathcap,         SM_mathcap},
       {sm_set_mathcap,     SM_setMathCap},
     {sm_popCMO,          SM_popCMO},      {sm_popCMO,          SM_popCMO},
     {sm_pops,            SM_pops},      {sm_pops,            SM_pops},
       {sm_control_reset_pid, SM_control_reset_connection_server},
       {sm_control_kill, SM_control_kill},
     {NULL, NULL}      {NULL, NULL}
 };  };
   
 __inline__  extern OXFILE *stack_oxfp;
 static int (*db_search(void *key, db *dbs, int (*cmp)(void *, void *)))()  
   int (*sm_search_f(int code))()
 {  {
     while (dbs->key != NULL) {      int i;
         if (cmp(key, dbs->key) == 0) {      for (i=0; tbl_smcmd[i].key != NULL; i++) {
             return dbs->func_ptr;          if (code == tbl_smcmd[i].key) {
               return tbl_smcmd[i].func_ptr;
         }          }
         dbs++;  
     }      }
     return NULL;      return NULL;
 }  }
   
 static int (*lookup_localfunction(char *name))()  static int (*lookup_localfunction(char *name))()
 {  {
     return db_search(name, db_localfunc, strcmp);      int i;
       for (i=0; tbl_lfunc[i].key != NULL; i++) {
           if (strcmp(name, tbl_lfunc[i].key) == 0) {
               return tbl_lfunc[i].func_ptr;
           }
       }
       return NULL;
 }  }
   
 /*  /*
Line 45  Normally local functions push a return value to the st
Line 73  Normally local functions push a return value to the st
 but, if error occurs, then these return non-positive numbers and  but, if error occurs, then these return non-positive numbers and
 the sm_executeFunction push an error object.  the sm_executeFunction push an error object.
 */  */
 void sm_executeFunction(OXFILE *oxfp)  void sm_executeFunction()
 {  {
     int (*func)(OXFILE *);      int (*func)();
         int retcode = 0;      int retcode = 0;
     cmo *ob = pop();      cmo *ob = pop();
     if (ob->tag == CMO_STRING) {      if (ob->tag == CMO_STRING) {
         func = lookup_localfunction(((cmo_string *)ob)->s);          func = lookup_localfunction(((cmo_string *)ob)->s);
         if (func != NULL) {          if (func != NULL) {
             if ((retcode = func(oxfp)) > 0) {              if ((retcode = func()) > 0) {
                                 return;                  return;
                         }              }
         }          }
     }      }
         push_error(retcode, ob);      push_error(retcode, ob);
 }  }
   
 /* getargs() set number of popped objects to argc. */  /* getargs() set number of popped objects to argc. */
Line 67  static int getargs(cmo ***args)
Line 95  static int getargs(cmo ***args)
     cmo **argv;      cmo **argv;
     int i;      int i;
     int argc = -1;      int argc = -1;
     cmo_int32 *m = pop();      cmo_int32 *m = (cmo_int32 *)pop();
   
     if (m->tag != CMO_INT32 || (argc = m->i) < 0) {      if (m->tag != CMO_INT32 || (argc = m->i) < 0) {
         fprintf(stderr, "oxc: invalid arguments\n");          fprintf(stderr, "oxc: invalid arguments\n");
Line 78  static int getargs(cmo ***args)
Line 106  static int getargs(cmo ***args)
         }          }
         *args = argv;          *args = argv;
     }      }
         return argc;      return argc;
 }  }
   
 static int pids[1024] = {0};  #define MAX_PROCESS 1024
   
   /* Process Table */
   static pid_t *pids = NULL;
 static int pid_ptr = 0;  static int pid_ptr = 0;
   static int pid_size = 0;
   
 int pid_lookup(int pid)  static void pids_extend()
 {  {
         int i;      int size2 = pid_size + MAX_PROCESS;
         for(i=0; i<pid_ptr; i++) {      pid_t *pids2 = (pid_t *)malloc(sizeof(pid_t)*size2);
                 if (pids[i] == pid) {      if (pids != NULL) {
                         return i;          memcpy(pids2, pids, sizeof(pid_t)*pid_size);
                 }          free(pids);
         }      }
         return -1;      pid_size = size2;
       pids = pids2;
 }  }
   
 int pid_registed(int pid)  static int pid_lookup(pid_t pid)
 {  {
         return pid_lookup(pid)+1;      int i;
       for(i=0; i<pid_ptr; i++) {
           if (pids[i] == pid) {
               return i;
           }
       }
       return -1;
 }  }
   
 int pid_regist(int pid)  static int pid_registed(pid_t pid)
 {  {
         if (pid_ptr < 1024) {      return pid_lookup(pid)+1;
                 pids[pid_ptr++] = pid;  
                 return pid;  
         }  
         return 0;  
 }  }
   
 void pid_delete(int pid)  static void pid_regist(pid_t pid)
 {  {
         int i = pid_lookup(pid);      if (pid_ptr >= pid_size) {
         if (i >= 0 && i != --pid_ptr) {          pids_extend();
                 pids[i] = pids[pid_ptr];      }
         }      pids[pid_ptr++] = pid;
 }  }
   
 int lf_oxc_open()  static void pid_delete(pid_t pid)
 {  {
     cmo **argv;      int i = pid_lookup(pid);
     char *cmd;      if (i >= 0 && i != --pid_ptr) {
     int port;          pids[i] = pids[pid_ptr];
     int pid;      }
   }
   
     if (getargs(&argv) != 2 || argv[0]->tag != CMO_STRING  static int pid_reset(pid_t pid)
                 || argv[1]->tag != CMO_INT32) {  {
                 fprintf(stderr, "oxc: invalid arguments\n");      if (pid_registed(pid)) {
         return -1;          kill(pid, SIGUSR1);
           return 1;
     }      }
       return 0;
   }
   
         cmd  = ((cmo_string *)argv[0])->s;  static int pid_kill(pid_t pid)
         port = ((cmo_int32 *)argv[1])->i;  {
         pid = lf_oxc_open_main(cmd, port);      if (pid_registed(pid)) {
         if (pid > 0) {          kill(pid, SIGKILL);
                 push(new_cmo_int32(pid));          pid_delete(pid);
                 pid_regist(pid);          return 1;
         }      }
         return pid;      return 0;
 }  }
   
 void sm_mathcap(OXFILE *oxfp)  /* Killing all child processes */
   static void pid_kill_all()
 {  {
         cmo_mathcap *m = pop();      while(pid_ptr > 0) {
         if (m->tag == CMO_MATHCAP) {          kill(pids[--pid_ptr], SIGKILL);
                 mathcap_update(m);      }
         }else {  
                 push_error(-1, m);  
                 /* an error object must be pushed */  
         }  
 }  }
   
 void sm_control_kill(OXFILE *oxfp)  cmo_error2 *type_checker(cmo *ob, int type)
 {  {
         cmo_int32 *m = pop();  /*  cmo_error2 *err_ob; */
         int pid = m->i;      if (ob->tag != type) {
         if (m->tag != CMO_INT32 || !pid_registed(pid)) {          /* push and return an error object */
                 push_error(-1, m);      }
         }else {      return NULL;
                 kill(pid, SIGKILL);  
                 pid_delete(pid);  
         }  
 }  }
   
 void sm_control_reset(OXFILE *oxfp)  static int sm_control_spawn_main(int argc, cmo *argv[])
 {  {
         cmo_int32 *m = pop();      char *cmd = ((cmo_string *)argv[0])->s;
         int pid = m->i;      int  port = ((cmo_int32 *)argv[1])->i;
         if (m->tag != CMO_INT32 || !pid_registed(pid)) {      pid_t pid = lf_oxc_open_main(cmd, port);
                 push_error(-1, m);      if (pid > 0) {
         }else {          push(new_cmo_int32(pid));
                 kill(pid, SIGUSR1);          pid_regist(pid);
         }      }
       return pid;
 }  }
   
 void sm_control_start_engin(OXFILE *oxfp);  int lf_oxc_open()
   {
       cmo **argv;
       if (getargs(&argv) != 2 ||
           type_checker(argv[0], CMO_STRING) != NULL
           || type_checker(argv[0], CMO_INT32) != NULL) {
           fprintf(stderr, "oxc: invalid arguments\n");
           return -1;
       }
       return sm_control_spawn_main(2, argv);
   }
   
 static int intcmp(int key1, int key2)  static int sm_control_spawn()
 {  {
     return key1 != key2;      cmo *argv[2];
       argv[0] = pop();
       argv[1] = pop();
   
       if (type_checker(argv[0], CMO_STRING) != NULL
           || type_checker(argv[0], CMO_INT32) != NULL) {
           fprintf(stderr, "oxc: invalid arguments\n");
           return -1;
       }
       return sm_control_spawn_main(2, argv);
 }  }
   
   void sm_mathcap()
   {
       push((cmo *)oxf_cmo_mathcap(stack_oxfp));
   }
   
 int (*sm_search_f(int code))()  void sm_set_mathcap()
 {  {
     return db_search(code, db_sm, intcmp);      cmo_mathcap *m = (cmo_mathcap *)pop();
       if (m->tag == CMO_MATHCAP) {
           oxf_mathcap_update(stack_oxfp, m);
       }else {
           push_error(-1, m);
           /* an error object must be pushed */
       }
   }
   
   static void sm_control_kill()
   {
       pid_kill_all();
   }
   
   static void sm_control_terminate()
   {
       cmo_int32 *m = (cmo_int32 *)pop();
       pid_t pid = m->i;
       if (m->tag != CMO_INT32 || !pid_kill(pid)) {
           push_error(-1, m);
       }
   }
   
   static void sm_control_reset_pid()
   {
       cmo_int32 *m = (cmo_int32 *)pop();
       pid_t pid = m->i;
       if (m->tag != CMO_INT32 || !pid_reset(pid)) {
           push_error(-1, m);
           return;
       }
       /* ... */
 }  }

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

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