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

Diff for /OpenXM_contrib2/asir2000/builtin/file.c between version 1.14 and 1.21

version 1.14, 2001/08/20 09:03:24 version 1.21, 2006/02/03 03:55:18
Line 45 
Line 45 
  * 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/builtin/file.c,v 1.13 2001/03/21 23:49:34 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.20 2004/04/26 05:28:40 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
   #include "ox.h"
 #include "base.h"  #include "base.h"
   #if !defined(VISUAL)
 #include "unistd.h"  #include "unistd.h"
 #if PARI  #endif
   #if defined(PARI)
 #include "genpari.h"  #include "genpari.h"
 #endif  #endif
   
 #if defined(VISUAL)  #if defined(VISUAL)
 #include <windows.h>  #include <windows.h>
 #include <process.h>  #include <process.h>
   #include <io.h>
 /* #define ECGEN_KEYNAME "SoftWare\\Fujitsu\\WinECgen\\1.00.000" */  /* #define ECGEN_KEYNAME "SoftWare\\Fujitsu\\WinECgen\\1.00.000" */
 #define ECGEN_KEYNAME "SoftWare\\Fujitsu\\FSEcParamGen\\V1.0L10"  #define ECGEN_KEYNAME "SoftWare\\Fujitsu\\FSEcParamGen\\V1.0L10"
 #define ASIR_KEYNAME "SoftWare\\Fujitsu\\Asir\\1999.03.31"  #define ASIR_KEYNAME "SoftWare\\Fujitsu\\Asir\\1999.03.31"
Line 73  void Pbsave_compat(), Pbload_compat();
Line 77  void Pbsave_compat(), Pbload_compat();
 void Pbsave_cmo(), Pbload_cmo();  void Pbsave_cmo(), Pbload_cmo();
 void Popen_file(), Pclose_file(), Pget_line(), Pget_byte(), Pput_byte();  void Popen_file(), Pclose_file(), Pget_line(), Pget_byte(), Pput_byte();
 void Ppurge_stdin();  void Ppurge_stdin();
 void Pload_exec();  void Pexec(),Pimport();
   
 extern int des_encryption;  extern int des_encryption;
 extern char *asir_libdir;  extern char *asir_libdir;
Line 88  struct ftab file_tab[] = {
Line 92  struct ftab file_tab[] = {
         {"remove_file",Premove_file,1},          {"remove_file",Premove_file,1},
         {"access",Paccess,1},          {"access",Paccess,1},
         {"load",Pload,-1},          {"load",Pload,-1},
         {"load_exec",Pload_exec,1},          {"exec",Pexec,1},
           {"import",Pimport,1},
         {"which",Pwhich,1},          {"which",Pwhich,1},
         {"loadfiles",Ploadfiles,1},          {"loadfiles",Ploadfiles,1},
         {"output",Poutput,-1},          {"output",Poutput,-1},
Line 109  struct ftab file_tab[] = {
Line 114  struct ftab file_tab[] = {
   
 static FILE *file_ptrs[BUFSIZ];  static FILE *file_ptrs[BUFSIZ];
   
 void Ppurge_stdin(rp)  void Ppurge_stdin(Q *rp)
 Q *rp;  
 {  {
         purge_stdin(stdin);          purge_stdin(stdin);
         *rp = 0;          *rp = 0;
 }  }
   
 void Popen_file(arg,rp)  void Popen_file(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         char *name;          char *name;
         FILE *fp;          FILE *fp;
Line 130  Q *rp;
Line 132  Q *rp;
         if ( i == BUFSIZ )          if ( i == BUFSIZ )
                 error("open_file : too many open files");                  error("open_file : too many open files");
         name = BDY((STRING)ARG0(arg));          name = BDY((STRING)ARG0(arg));
         if ( argc(arg) == 2 ) {          if (strcmp(name,"unix://stdin") == 0) {
             fp = stdin;
           }else if (strcmp(name,"unix://stdout") == 0) {
             fp = stdout;
       }else if (strcmp(name,"unix://stderr") == 0) {
             fp = stderr;
       }else{
             if ( argc(arg) == 2 ) {
                 asir_assert(ARG1(arg),O_STR,"open_file");                  asir_assert(ARG1(arg),O_STR,"open_file");
                 fp = fopen(name,BDY((STRING)ARG1(arg)));                  fp = fopen(name,BDY((STRING)ARG1(arg)));
         } else            } else
                 fp = fopen(name,"r");                  fp = fopen(name,"r");
       }
         if ( !fp ) {          if ( !fp ) {
                 sprintf(errbuf,"open_file : cannot open \"%s\"",name);                  sprintf(errbuf,"open_file : cannot open \"%s\"",name);
                 error(errbuf);                  error(errbuf);
Line 143  Q *rp;
Line 153  Q *rp;
         STOQ(i,*rp);          STOQ(i,*rp);
 }  }
   
 void Pclose_file(arg,rp)  void Pclose_file(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int i;          int i;
   
Line 159  Q *rp;
Line 167  Q *rp;
         *rp = ONE;          *rp = ONE;
 }  }
   
 void Pget_line(arg,rp)  void Pget_line(NODE arg,STRING *rp)
 NODE arg;  
 STRING *rp;  
 {  {
         int i,j,c;          int i,j,c;
         FILE *fp;          FILE *fp;
Line 212  STRING *rp;
Line 218  STRING *rp;
                 error("get_line : invalid argument");                  error("get_line : invalid argument");
 }  }
   
 void Pget_byte(arg,rp)  void Pget_byte(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int i,c;          int i,c;
         FILE *fp;          FILE *fp;
Line 232  Q *rp;
Line 236  Q *rp;
                 error("get_byte : invalid argument");                  error("get_byte : invalid argument");
 }  }
   
 void Pput_byte(arg,rp)  void Pput_byte(NODE arg,Obj *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int i,c;          int i,j,c;
         FILE *fp;          FILE *fp;
           Obj obj;
           TB tb;
   
         asir_assert(ARG0(arg),O_N,"put_byte");          asir_assert(ARG0(arg),O_N,"put_byte");
         asir_assert(ARG1(arg),O_N,"put_byte");  
         i = QTOS((Q)ARG0(arg));          i = QTOS((Q)ARG0(arg));
         c = QTOS((Q)ARG1(arg));          if ( !(fp = file_ptrs[i]) )
         if ( fp = file_ptrs[i] ) {  
                 putc(c,fp);  
                 STOQ(c,*rp);  
         } else  
                 error("put_byte : invalid argument");                  error("put_byte : invalid argument");
   
           obj = (Obj)ARG1(arg);
           if ( !obj || OID(obj) == O_N ) {
                   c = QTOS((Q)obj);
                   putc(c,fp);
           } else if ( OID(obj) == O_STR )
                   fputs(BDY((STRING)obj),fp);
           else if ( OID(obj) == O_TB ) {
                   tb = (TB)obj;
                   for ( j = 0; j < tb->next; j++ )
                           fputs(tb->body[j],fp);
           }
           *rp = obj;
 }  }
   
 void Pload(arg,rp)  void Pload(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int ret = 0;          int ret = 0;
         char *name,*name0;          char *name,*name0;
Line 281  Q *rp;
Line 291  Q *rp;
         STOQ(ret,*rp);          STOQ(ret,*rp);
 }  }
   
 void Pload_exec(arg,rp)  void Pexec(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int ret = 0;          int ret;
         char *name0,*name;          char *name0,*name;
   
         name0 = BDY((STRING)ARG0(arg));          name0 = BDY((STRING)ARG0(arg));
         searchasirpath(name0,&name);          searchasirpath(name0,&name);
         if ( !name )          if ( !name )
                 ret = -1;                  ret = -1;
         else          else {
                 ret = load_and_execfile(name);                  load_and_execfile(name);
                   ret = 0;
           }
         STOQ(ret,*rp);          STOQ(ret,*rp);
 }  }
   
 void Pwhich(arg,rp)  NODE imported_files;
 NODE arg;  
 STRING *rp;  void Pimport(NODE arg,Q *rp)
 {  {
           int ret;
           char *name0,*name;
           NODE t,opt,p;
   
           name0 = BDY((STRING)ARG0(arg));
           searchasirpath(name0,&name);
           if ( !name )
                   ret = -1;
           else {
                   for ( t = imported_files; t; t = NEXT(t) )
                           if ( !strcmp((char *)BDY(t),name) ) break;
                   if ( !t ) {
                           load_and_execfile(name);
                           MKNODE(t,name,imported_files);
                           imported_files = t;
                   } else if ( current_option ) {
                           for ( opt = current_option; opt; opt = NEXT(opt) ) {
                                   p = BDY((LIST)BDY(opt));
                                   if ( !strcmp(BDY((STRING)BDY(p)),"reimport") && BDY(NEXT(p)) )
                                           load_and_execfile(name);
                           }
                   }
                   ret = 0;
           }
           STOQ(ret,*rp);
   }
   
   void Pwhich(NODE arg,STRING *rp)
   {
         char *name;          char *name;
         STRING str;          STRING str;
   
Line 318  STRING *rp;
Line 357  STRING *rp;
                 *rp = 0;                  *rp = 0;
 }  }
   
 void Ploadfiles(arg,rp)  void Ploadfiles(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         int ret;          int ret;
   
Line 334  Q *rp;
Line 371  Q *rp;
         STOQ(ret,*rp);          STOQ(ret,*rp);
 }  }
   
 void Poutput(arg,rp)  void Poutput(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
 #if PARI  #if defined(PARI)
         extern FILE *outfile;          extern FILE *outfile;
 #endif  #endif
         FILE *fp;          FILE *fp;
Line 356  Q *rp;
Line 391  Q *rp;
                                 error("output : invalid filename");                                  error("output : invalid filename");
                         break;                          break;
         }          }
 #if PARI  #if defined(PARI)
         pari_outfile =          pari_outfile =
 #endif  #endif
         asir_out = fp;          asir_out = fp;
Line 365  Q *rp;
Line 400  Q *rp;
   
 extern int ox_file_io;  extern int ox_file_io;
   
 void Pbsave(arg,rp)  void Pbsave(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         FILE *fp;          FILE *fp;
         VL vl,t;          VL vl,t;
Line 388  Q *rp;
Line 421  Q *rp;
         *rp = ONE;          *rp = ONE;
 }  }
   
 void Pbload(arg,rp)  void Pbload(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         FILE *fp;          FILE *fp;
   
Line 405  Obj *rp;
Line 436  Obj *rp;
         ox_file_io = 0;          ox_file_io = 0;
 }  }
   
 void Pbsave_cmo(arg,rp)  void Pbsave_cmo(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         FILE *fp;          FILE *fp;
         VL vl,t;  
   
         asir_assert(ARG1(arg),O_STR,"bsave_cmo");          asir_assert(ARG1(arg),O_STR,"bsave_cmo");
         fp = fopen(BDY((STRING)ARG1(arg)),"wb");          fp = fopen(BDY((STRING)ARG1(arg)),"wb");
Line 423  Q *rp;
Line 451  Q *rp;
         *rp = ONE;          *rp = ONE;
 }  }
   
 void Pbload_cmo(arg,rp)  void Pbload_cmo(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         FILE *fp;          FILE *fp;
   
Line 442  Obj *rp;
Line 468  Obj *rp;
 static struct oSTRING rootdir;  static struct oSTRING rootdir;
   
 #if defined(VISUAL)  #if defined(VISUAL)
 void get_rootdir(name,len)  void get_rootdir(char *name,int len)
 char *name;  
 int len;  
 {  {
         LONG    ret;          LONG    ret;
         HKEY    hOpenKey;          HKEY    hOpenKey;
Line 480  int len;
Line 504  int len;
         }          }
 }  }
   
 void set_rootdir(name)  void set_rootdir(char *name)
 char *name;  
 {  {
         static char DirName[BUFSIZ];          static char DirName[BUFSIZ];
   
Line 494  char *name;
Line 517  char *name;
 }  }
   
 #else  #else
 void get_rootdir(name,len)  void get_rootdir(char *name,int len)
 char *name;  
 int len;  
 {  {
         strcpy(name,asir_libdir);          strcpy(name,asir_libdir);
 }  }
   
 void set_rootdir(name)  void set_rootdir(char *name)
 char *name;  
 {  {
         static char DirName[BUFSIZ];          static char DirName[BUFSIZ];
   
Line 514  char *name;
Line 534  char *name;
   
 #endif  #endif
   
 void Pget_rootdir(rp)  void Pget_rootdir(STRING *rp)
 STRING *rp;  
 {  {
         static char DirName[BUFSIZ];          static char DirName[BUFSIZ];
         int DirNameLen;  
   
         if ( !rootdir.body ) {          if ( !rootdir.body ) {
                 get_rootdir(DirName,sizeof(DirName));                  get_rootdir(DirName,sizeof(DirName));
Line 529  STRING *rp;
Line 547  STRING *rp;
 }  }
   
 #if defined(VISUAL) && defined(DES_ENC)  #if defined(VISUAL) && defined(DES_ENC)
 void Pbsave_enc(arg,rp)  void Pbsave_enc(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         init_deskey();          init_deskey();
         des_encryption = 1;          des_encryption = 1;
Line 539  Obj *rp;
Line 555  Obj *rp;
         des_encryption = 0;          des_encryption = 0;
 }  }
   
 void Pbload_enc(arg,rp)  void Pbload_enc(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         init_deskey();          init_deskey();
         des_encryption = 1;          des_encryption = 1;
Line 550  Obj *rp;
Line 564  Obj *rp;
 }  }
 #endif  #endif
   
 void Pbload27(arg,rp)  void Pbload27(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         FILE *fp;          FILE *fp;
         Obj r;          Obj r;
Line 567  Obj *rp;
Line 579  Obj *rp;
         bobjtoobj(BASE27,r,rp);          bobjtoobj(BASE27,r,rp);
 }  }
   
 void Pbsave_compat(arg,rp)  void Pbsave_compat(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         FILE *fp;          FILE *fp;
         VL vl,t;          VL vl,t;
Line 590  Q *rp;
Line 600  Q *rp;
         *rp = ONE;          *rp = ONE;
 }  }
   
 void Pbload_compat(arg,rp)  void Pbload_compat(NODE arg,Obj *rp)
 NODE arg;  
 Obj *rp;  
 {  {
         FILE *fp;          FILE *fp;
         unsigned int hdr[2];          unsigned int hdr[2];
Line 626  Obj *rp;
Line 634  Obj *rp;
         fclose(fp);          fclose(fp);
 }  }
   
 void Premove_file(arg,rp)  void Premove_file(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         unlink((char *)BDY((STRING)ARG0(arg)));          unlink((char *)BDY((STRING)ARG0(arg)));
         *rp = ONE;          *rp = ONE;
 }  }
   
 void Paccess(arg,rp)  void Paccess(NODE arg,Q *rp)
 NODE arg;  
 Q *rp;  
 {  {
         char *name;  
         STRING str;  
   
 #if defined(VISUAL)  #if defined(VISUAL)
         if ( access(BDY((STRING)ARG0(arg)),04) >= 0 )          if ( access(BDY((STRING)ARG0(arg)),04) >= 0 )
 #else  #else
Line 657  int process_id()
Line 658  int process_id()
         return GetCurrentProcessId();          return GetCurrentProcessId();
 }  }
   
 void call_exe(name,av)  void call_exe(char *name,char **av)
 char *name;  
 char **av;  
 {  {
         _spawnv(_P_WAIT,name,av);          _spawnv(_P_WAIT,name,av);
 }  }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.21

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