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

Diff for /OpenXM_contrib2/asir2000/io/ox_asir.c between version 1.26 and 1.34

version 1.26, 2001/09/20 10:44:18 version 1.34, 2001/12/21 08:23:14
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_asir.c,v 1.25 2001/08/20 09:03:26 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.33 2001/10/22 09:14:35 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 134  void ox_main(int argc,char **argv) {
Line 134  void ox_main(int argc,char **argv) {
         int id;          int id;
         int cmd;          int cmd;
         Obj obj;          Obj obj;
         USINT ui;  
         ERR err;          ERR err;
         LIST list;  
         NODE n,n1;  
         unsigned int serial;          unsigned int serial;
         int ret;          int ret;
         extern char LastError[];          extern char LastError[];
Line 522  static void asir_executeFunction(int serial)
Line 519  static void asir_executeFunction(int serial)
         int argc;          int argc;
         FUNC f;          FUNC f;
         Obj result;          Obj result;
         VL vl;  
         NODE n,n1;          NODE n,n1;
         STRING fname;          STRING fname;
         char *path;          char *path;
         USINT ui;  
         ERR err;          ERR err;
         Obj arg;          Obj arg;
         static char buf[BUFSIZ];          static char buf[BUFSIZ];
Line 641  Obj asir_peek_one() {
Line 636  Obj asir_peek_one() {
   
 void ox_asir_init(int argc,char **argv)  void ox_asir_init(int argc,char **argv)
 {  {
         int tmp;  
         char ifname[BUFSIZ];          char ifname[BUFSIZ];
         extern int GC_dont_gc;          extern int GC_dont_gc;
         extern int read_exec_file;          extern int read_exec_file;
Line 652  void ox_asir_init(int argc,char **argv)
Line 646  void ox_asir_init(int argc,char **argv)
         FILE *ifp;          FILE *ifp;
         char *homedir;          char *homedir;
         char *ptr;          char *ptr;
   #if !defined(VISUAL)
           int tmp;
   #endif
   
 #if !defined(VISUAL) && !MPI  #if !defined(VISUAL) && !MPI
         do_server_in_X11 = 1; /* XXX */          do_server_in_X11 = 1; /* XXX */
Line 706  void ox_asir_init(int argc,char **argv)
Line 703  void ox_asir_init(int argc,char **argv)
                 fclose(ifp);                  fclose(ifp);
         }          }
         input_init(0,"string");          input_init(0,"string");
 #if !MPI  /* XXX Windows compatibility */
         ox_io_init();          ox_io_init();
 #endif  
         create_my_mathcap("ox_asir");          create_my_mathcap("ox_asir");
 }  }
   
Line 716  void ox_io_init() {
Line 712  void ox_io_init() {
         unsigned char c,rc;          unsigned char c,rc;
         extern int I_am_server;          extern int I_am_server;
   
         /* XXX : ssh forwards stdin to a remote host */          /* XXX : ssh forwards stdin to a remote host on PC Unix */
         fclose(stdin);  #if defined(linux)
   #include <sys/param.h>
           int i;
   
           close(0);
           for ( i = 5; i < NOFILE; i++ )
                   close(i);
   #elif defined(__FreeBSD__)
   #include <sys/resource.h>
           int i;
           struct rlimit rl;
   
           getrlimit(RLIMIT_NOFILE,&rl);
           close(0);
           for ( i = 5; i < rl.rlim_cur; i++ )
                   close(i);
   #endif
   
         I_am_server = 1;          I_am_server = 1;
         endian_init();          endian_init();
 #if defined(VISUAL)  #if defined(VISUAL)
Line 730  void ox_io_init() {
Line 742  void ox_io_init() {
         iofp[0].in = fdopen(3,"r");          iofp[0].in = fdopen(3,"r");
         iofp[0].out = fdopen(4,"w");          iofp[0].out = fdopen(4,"w");
   
   #if !defined(__CYGWIN__)
         setbuffer(iofp[0].in,(char *)malloc(LBUFSIZ),LBUFSIZ);          setbuffer(iofp[0].in,(char *)malloc(LBUFSIZ),LBUFSIZ);
         setbuffer(iofp[0].out,(char *)malloc(LBUFSIZ),LBUFSIZ);          setbuffer(iofp[0].out,(char *)malloc(LBUFSIZ),LBUFSIZ);
   #endif
         signal(SIGUSR1,ox_usr1_handler);          signal(SIGUSR1,ox_usr1_handler);
 #endif  #endif
         asir_OperandStackSize = BUFSIZ;          asir_OperandStackSize = BUFSIZ;
Line 770  void asir_ox_push_cmo(void *cmo)
Line 784  void asir_ox_push_cmo(void *cmo)
   
 /*  /*
  * Pop an object from the stack and converts it   * Pop an object from the stack and converts it
  * int a binary encoded CMO.   * into a binary encoded CMO.
  */   */
   
 int asir_ox_pop_cmo(void *cmo, int limit)  int asir_ox_pop_cmo(void *cmo, int limit)
Line 792  int asir_ox_pop_cmo(void *cmo, int limit)
Line 806  int asir_ox_pop_cmo(void *cmo, int limit)
                 return len;                  return len;
         } else          } else
                 return -1;                  return -1;
   }
   
   int asir_ox_pop_string(void *string, int limit)
   {
           Obj val;
           int l;
   
           val = asir_pop_one();
           if ( !val ) {
                   if ( limit >= 2 ) {
                           sprintf(string,"0");
                           l = strlen(string);
                   } else
                           l = -1;
           } else {
                   l = estimate_length(CO,val);
                   if ( l+1 <= limit ) {
                           soutput_init(string);
                           sprintexpr(CO,val);
                           l = strlen(string);
                   } else
                           l = -1;
           }
           return l;
 }  }
   
 /*  /*

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

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