[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.20 and 1.26

version 1.20, 2000/10/06 06:05:22 version 1.26, 2001/09/20 10:44:18
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.19 2000/09/12 06:05:30 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.25 2001/08/20 09:03:26 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 662  void ox_asir_init(int argc,char **argv)
Line 662  void ox_asir_init(int argc,char **argv)
 #endif  #endif
         srandom((int)get_current_time());          srandom((int)get_current_time());
   
 #if defined(THINK_C)  
         param_init();  
 #endif  
         StackBottom = &tmp + 1; /* XXX */  
         rtime_init();          rtime_init();
         env_init();          env_init();
         endian_init();          endian_init();
 #if !defined(VISUAL) && !defined(THINK_C)  
 /*      check_key(); */  
 #endif  
         GC_init();          GC_init();
         process_args(--argc,++argv);          process_args(--argc,++argv);
         output_init();          output_init();
Line 694  void ox_asir_init(int argc,char **argv)
Line 687  void ox_asir_init(int argc,char **argv)
         if ( ptr = getenv("ASIR_CONFIG") )          if ( ptr = getenv("ASIR_CONFIG") )
                 strcpy(ifname,ptr);                  strcpy(ifname,ptr);
         else {          else {
 #if defined(THINK_C)  
                 sprintf(ifname,"asirrc");  
 #else  
                 homedir = getenv("HOME");                  homedir = getenv("HOME");
                 if ( !homedir ) {                  if ( !homedir ) {
                         char rootname[BUFSIZ];                          char rootname[BUFSIZ];
Line 705  void ox_asir_init(int argc,char **argv)
Line 695  void ox_asir_init(int argc,char **argv)
                         homedir = rootname;                          homedir = rootname;
                 }                  }
                 sprintf(ifname,"%s/.asirrc",homedir);                  sprintf(ifname,"%s/.asirrc",homedir);
 #endif  
         }          }
         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 725  void ox_asir_init(int argc,char **argv)
Line 714  void ox_asir_init(int argc,char **argv)
   
 void ox_io_init() {  void ox_io_init() {
         unsigned char c,rc;          unsigned char c,rc;
           extern int I_am_server;
   
           /* XXX : ssh forwards stdin to a remote host */
           fclose(stdin);
   
           I_am_server = 1;
         endian_init();          endian_init();
 #if defined(VISUAL)  #if defined(VISUAL)
         if ( !ox_sock_id )          if ( !ox_sock_id )
Line 810  void asir_ox_push_cmd(int cmd)
Line 804  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 837  void asir_ox_execute_string(char *s)
Line 831  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 898  int asir_ox_init(int byteorder)
Line 892  int asir_ox_init(int byteorder)
 #endif  #endif
         srandom((int)get_current_time());          srandom((int)get_current_time());
   
 #if defined(THINK_C)  
         param_init();  
 #endif  
         StackBottom = &tmp + 1; /* XXX */  
         rtime_init();          rtime_init();
         env_init();          env_init();
         endian_init();          endian_init();
 #if !defined(VISUAL) && !defined(THINK_C)  
 /*      check_key(); */  
 #endif  
         GC_init();          GC_init();
 /*      process_args(argc,argv); */  /*      process_args(argc,argv); */
         output_init();          output_init();
Line 926  int asir_ox_init(int byteorder)
Line 913  int asir_ox_init(int byteorder)
 #if defined(UINIT)  #if defined(UINIT)
         reg_sysf();          reg_sysf();
 #endif  #endif
 #if defined(THINK_C)  
         sprintf(ifname,"asirrc");  
 #else  
         sprintf(ifname,"%s/.asirrc",getenv("HOME"));          sprintf(ifname,"%s/.asirrc",getenv("HOME"));
 #endif  
         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.20  
changed lines
  Added in v.1.26

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