version 1.24, 2006/11/08 07:34:33 |
version 1.32, 2015/03/15 19:31:30 |
|
|
* 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.23 2006/09/13 02:26:13 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.31 2014/05/12 02:27:49 ohara Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.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" |
|
#define R_OK 0x04 |
#endif |
#endif |
|
|
|
void Psprintf(NODE,STRING *); |
|
|
void Pget_rootdir(); |
void Pget_rootdir(); |
void Paccess(),Premove_file(); |
void Paccess(),Premove_file(); |
void Pbsave_enc(), Pbload_enc(); |
void Pbsave_enc(), Pbload_enc(); |
Line 78 void Pbsave_cmo(), Pbload_cmo(); |
|
Line 81 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 Pput_word(), Pget_word(); |
void Pput_word(), Pget_word(); |
void Ppurge_stdin(); |
void Ppurge_stdin(); |
|
void Pfprintf(); |
void Pimport(); |
void Pimport(); |
|
void Pgetpid(); |
|
|
extern int des_encryption; |
extern int des_encryption; |
extern char *asir_libdir; |
extern char *asir_libdir; |
|
|
struct ftab file_tab[] = { |
struct ftab file_tab[] = { |
|
{"fprintf",Pfprintf,-99999999}, |
{"purge_stdin",Ppurge_stdin,0}, |
{"purge_stdin",Ppurge_stdin,0}, |
{"open_file",Popen_file,-2}, |
{"open_file",Popen_file,-2}, |
{"close_file",Pclose_file,1}, |
{"close_file",Pclose_file,1}, |
Line 102 struct ftab file_tab[] = { |
|
Line 108 struct ftab file_tab[] = { |
|
{"bsave",Pbsave,2}, |
{"bsave",Pbsave,2}, |
{"bload",Pbload,1}, |
{"bload",Pbload,1}, |
{"get_rootdir",Pget_rootdir,0}, |
{"get_rootdir",Pget_rootdir,0}, |
#if defined(VISUAL) && defined(DES_ENC) |
#if defined(DES_ENC) |
{"bsave_enc",Pbsave_enc,2}, |
{"bsave_enc",Pbsave_enc,2}, |
{"bload_enc",Pbload_enc,1}, |
{"bload_enc",Pbload_enc,1}, |
#endif |
#endif |
Line 111 struct ftab file_tab[] = { |
|
Line 117 struct ftab file_tab[] = { |
|
{"bload_compat",Pbload_compat,1}, |
{"bload_compat",Pbload_compat,1}, |
{"bsave_cmo",Pbsave_cmo,2}, |
{"bsave_cmo",Pbsave_cmo,2}, |
{"bload_cmo",Pbload_cmo,1}, |
{"bload_cmo",Pbload_cmo,1}, |
|
{"getpid",Pgetpid,0}, |
{0,0,0}, |
{0,0,0}, |
}; |
}; |
|
|
static FILE *file_ptrs[BUFSIZ]; |
static FILE *file_ptrs[BUFSIZ]; |
|
|
|
void Pfprintf(NODE arg,pointer *rp) |
|
{ |
|
FILE *fp; |
|
STRING s; |
|
asir_assert(ARG0(arg),O_N,"fprintf"); |
|
fp = file_ptrs[QTOS((Q)ARG0(arg))]; |
|
if ( !fp ) { |
|
error("fprintf : invalid argument"); |
|
} |
|
arg = NEXT(arg); |
|
if ( arg ) { |
|
Psprintf(arg,&s); |
|
fputs(BDY(s),fp); |
|
/* fflush(fp); */ |
|
} |
|
*rp = 0; |
|
return; |
|
} |
|
|
void Ppurge_stdin(Q *rp) |
void Ppurge_stdin(Q *rp) |
{ |
{ |
purge_stdin(stdin); |
purge_stdin(stdin); |
Line 494 void get_rootdir(char *name,int len) |
|
Line 520 void get_rootdir(char *name,int len) |
|
strcpy(name,rootdir.body); |
strcpy(name,rootdir.body); |
return; |
return; |
} |
} |
|
if ( GetModuleFileName(NULL,name,BUFSIZ) ) { |
if ( access("UseCurrentDir",0) >= 0 ) { |
|
GetCurrentDirectory(BUFSIZ,name); |
|
slash = strrchr(name,'\\'); |
slash = strrchr(name,'\\'); |
if ( slash ) |
*slash = 0; |
|
slash = strrchr(name,'\\'); |
|
if ( slash ) |
*slash = 0; |
*slash = 0; |
return; |
return; |
} |
} |
Line 561 void Pget_rootdir(STRING *rp) |
|
Line 587 void Pget_rootdir(STRING *rp) |
|
*rp = &rootdir; |
*rp = &rootdir; |
} |
} |
|
|
#if defined(VISUAL) && defined(DES_ENC) |
void Pgetpid(Q *rp) |
|
{ |
|
int id; |
|
|
|
#if defined(VISUAL) |
|
id = GetCurrentProcessId(); |
|
#else |
|
id = getpid(); |
|
#endif |
|
STOQ(id,*rp); |
|
} |
|
|
|
#if defined(DES_ENC) |
void Pbsave_enc(NODE arg,Obj *rp) |
void Pbsave_enc(NODE arg,Obj *rp) |
{ |
{ |
init_deskey(); |
init_deskey(); |
Line 657 void Premove_file(NODE arg,Q *rp) |
|
Line 695 void Premove_file(NODE arg,Q *rp) |
|
|
|
void Paccess(NODE arg,Q *rp) |
void Paccess(NODE arg,Q *rp) |
{ |
{ |
#if defined(VISUAL) |
|
if ( access(BDY((STRING)ARG0(arg)),04) >= 0 ) |
|
#else |
|
if ( access(BDY((STRING)ARG0(arg)),R_OK) >= 0 ) |
if ( access(BDY((STRING)ARG0(arg)),R_OK) >= 0 ) |
#endif |
|
*rp = ONE; |
*rp = ONE; |
else |
else |
*rp = 0; |
*rp = 0; |