[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.23 and 1.31

version 1.23, 2000/12/05 01:24:54 version 1.31, 2001/10/06 00:55:04
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.22 2000/11/14 08:38:39 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.30 2001/10/05 10:23:06 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 174  void ox_main(int argc,char **argv) {
Line 174  void ox_main(int argc,char **argv) {
                                         break;                                          break;
                                 if ( do_message )                                  if ( do_message )
                                         fprintf(stderr," %s\n",name_of_cmd(cmd));                                          fprintf(stderr," %s\n",name_of_cmd(cmd));
                                 if ( ret = setjmp(env) ) {                                  if ( ret = setjmp(main_env) ) {
                                         if ( ret == 1 ) {                                          if ( ret == 1 ) {
                                                 create_error(&err,serial,LastError);                                                  create_error(&err,serial,LastError);
                                                 asir_push_one((Obj)err);                                                  asir_push_one((Obj)err);
Line 419  void asir_popString()
Line 419  void asir_popString()
   
         val = asir_pop_one();          val = asir_pop_one();
         if ( !val )          if ( !val )
                 obuf = 0;                  obuf = "0";
         else {          else {
                 l = estimate_length(CO,val);                  l = estimate_length(CO,val);
                 buf = (char *)ALLOCA(l+1);                  buf = (char *)ALLOCA(l+1);
Line 698  void ox_asir_init(int argc,char **argv)
Line 698  void ox_asir_init(int argc,char **argv)
         }          }
         if ( do_asirrc && (ifp = fopen(ifname,"r")) ) {          if ( do_asirrc && (ifp = fopen(ifname,"r")) ) {
                 input_init(ifp,ifname);                  input_init(ifp,ifname);
                 if ( !setjmp(env) ) {                  if ( !setjmp(main_env) ) {
                         read_exec_file = 1;                          read_exec_file = 1;
                         read_eval_loop();                          read_eval_loop();
                         read_exec_file = 0;                          read_exec_file = 0;
Line 706  void ox_asir_init(int argc,char **argv)
Line 706  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");
 }  }
   
 void ox_io_init() {  void ox_io_init() {
         unsigned char c,rc;          unsigned char c,rc;
         extern int I_am_server;          extern int I_am_server;
           int i;
   
           /* XXX : ssh forwards stdin to a remote host */
   #if !defined(VISUAL)
   #if defined(linux) || defined(__NeXT__) || defined(ultrix)
   #include <sys/param.h>
                           close(0);
                           for ( i = 5; i < NOFILE; i++ )
                                   close(i);
   #else
   #include <sys/resource.h>
                           struct rlimit rl;
   
                           getrlimit(RLIMIT_NOFILE,&rl);
                           close(0);
                           for ( i = 5; i < rl.rlim_cur; i++ )
                                   close(i);
   #endif
   #endif
   
         I_am_server = 1;          I_am_server = 1;
         endian_init();          endian_init();
 #if defined(VISUAL)  #if defined(VISUAL)
Line 767  void asir_ox_push_cmo(void *cmo)
Line 785  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 791  int asir_ox_pop_cmo(void *cmo, int limit)
Line 809  int asir_ox_pop_cmo(void *cmo, int limit)
                 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;
   }
   
 /*  /*
  * Executes an SM command.   * Executes an SM command.
  */   */
Line 801  void asir_ox_push_cmd(int cmd)
Line 843  void asir_ox_push_cmd(int cmd)
         ERR err;          ERR err;
         extern char LastError[];          extern char LastError[];
   
         if ( ret = setjmp(env) ) {          if ( ret = setjmp(main_env) ) {
                 asir_reset_handler();                  asir_reset_handler();
                 if ( ret == 1 ) {                  if ( ret == 1 ) {
                         create_error(&err,0,LastError); /* XXX */                          create_error(&err,0,LastError); /* XXX */
Line 828  void asir_ox_execute_string(char *s)
Line 870  void asir_ox_execute_string(char *s)
   
         MKSTR(str,s);          MKSTR(str,s);
         asir_push_one((Obj)str);          asir_push_one((Obj)str);
         if ( ret = setjmp(env) ) {          if ( ret = setjmp(main_env) ) {
                 asir_reset_handler();                  asir_reset_handler();
                 if ( ret == 1 ) {                  if ( ret == 1 ) {
                         create_error(&err,0,LastError); /* XXX */                          create_error(&err,0,LastError); /* XXX */
Line 913  int asir_ox_init(int byteorder)
Line 955  int asir_ox_init(int byteorder)
         sprintf(ifname,"%s/.asirrc",getenv("HOME"));          sprintf(ifname,"%s/.asirrc",getenv("HOME"));
         if ( do_asirrc && (ifp = fopen(ifname,"r")) ) {          if ( do_asirrc && (ifp = fopen(ifname,"r")) ) {
                 input_init(ifp,ifname);                  input_init(ifp,ifname);
                 if ( !setjmp(env) ) {                  if ( !setjmp(main_env) ) {
                         read_exec_file = 1;                          read_exec_file = 1;
                         read_eval_loop();                          read_eval_loop();
                         read_exec_file = 0;                          read_exec_file = 0;

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.31

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