| version 1.4, 2000/08/21 08:31:47 |
version 1.12, 2001/12/20 08:18:27 |
|
|
| * shall be made on your publication or presentation in any form of the |
* shall be made on your publication or presentation in any form of the |
| * results obtained by use of the SOFTWARE. |
* results obtained by use of the SOFTWARE. |
| * (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
* (4) In the event that you modify the SOFTWARE, you shall notify FLL by |
| * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification |
* e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification |
| * for such modification or the source code of the modified part of the |
* for such modification or the source code of the modified part of the |
| * SOFTWARE. |
* SOFTWARE. |
| * |
* |
|
|
| * 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/parse/main.c,v 1.3 2000/02/08 04:47:12 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/parse/main.c,v 1.11 2001/10/09 01:36:24 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
| #if defined(THINK_C) |
|
| #include <console.h> |
|
| #endif |
|
| |
|
| #if PARI |
#if PARI |
| #include "genpari.h" |
#include "genpari.h" |
|
|
| extern jmp_buf environnement; |
extern jmp_buf environnement; |
| #endif |
#endif |
| |
|
| extern jmp_buf env; |
extern jmp_buf main_env; |
| extern int *StackBottom; |
|
| |
|
| |
#if defined(INTERVAL) |
| |
#ifndef ASIRRCNAME |
| |
#define ASIRRCNAME "int_asirrc" |
| |
#endif |
| |
#else |
| |
#ifndef ASIRRCNAME |
| |
#define ASIRRCNAME "asirrc" |
| |
#endif |
| |
#endif |
| |
|
| |
|
| double get_current_time(); |
double get_current_time(); |
| |
void init_socket(); |
| |
void recover(); |
| |
|
| extern int mpi_nprocs,mpi_myid; |
extern int mpi_nprocs,mpi_myid; |
| |
|
| #if defined(VISUAL_LIB) |
#if defined(VISUAL_LIB) |
| void Main(argc,argv) |
void Main(int argc,char *argv[]) |
| #else |
#else |
| #if defined(VISUAL) |
#if defined(VISUAL) |
| void |
void |
| #endif |
#endif |
| main(argc,argv) |
main(int argc,char *argv[]) |
| #endif |
#endif |
| int argc; |
|
| char *argv[]; |
|
| { |
{ |
| int tmp; |
int tmp; |
| FILE *ifp; |
FILE *ifp; |
|
|
| extern int do_asirrc; |
extern int do_asirrc; |
| extern int do_file; |
extern int do_file; |
| extern FILE *in_fp; |
extern FILE *in_fp; |
| |
extern int *StackBottom; |
| char *getenv(); |
char *getenv(); |
| char *homedir; |
char *homedir; |
| char *slash,*binname; |
|
| char *ptr; |
char *ptr; |
| |
#if !defined(VISUAL) |
| |
char *slash,*binname; |
| |
#endif |
| |
|
| StackBottom = &tmp + 1; /* XXX */ |
StackBottom = &tmp; |
| #if MPI |
#if MPI |
| mpi_init(); |
mpi_init(); |
| if ( mpi_myid ) { |
if ( mpi_myid ) { |
|
|
| srandom((int)get_current_time()); |
srandom((int)get_current_time()); |
| /* mt_sgenrand((unsigned long)get_current_time()); */ |
/* mt_sgenrand((unsigned long)get_current_time()); */ |
| |
|
| #if defined(THINK_C) |
|
| param_init(); |
|
| #endif |
|
| rtime_init(); |
rtime_init(); |
| env_init(); |
env_init(); |
| endian_init(); |
endian_init(); |
| #if 0 && !defined(VISUAL) && !defined(THINK_C) |
|
| check_key(); |
|
| #endif |
|
| GC_init(); |
GC_init(); |
| process_args(--argc,++argv); |
process_args(--argc,++argv); |
| #if PARI |
#if PARI |
|
|
| 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]; |
|
|
| get_rootdir(rootname,sizeof(rootname)); |
get_rootdir(rootname,sizeof(rootname)); |
| homedir = rootname; |
homedir = rootname; |
| } |
} |
| sprintf(ifname,"%s/.asirrc",homedir); |
sprintf(ifname,"%s/." ASIRRCNAME,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; |
|
|
| resetenv(""); |
resetenv(""); |
| } |
} |
| #endif |
#endif |
| if ( setjmp(env) ) |
if ( setjmp(main_env) ) |
| prompt(); |
prompt(); |
| read_eval_loop(); |
read_eval_loop(); |
| } |
} |
|
|
| #if !defined(VISUAL_LIB) |
#if !defined(VISUAL_LIB) |
| /* a dummy function */ |
/* a dummy function */ |
| |
|
| void set_error(code,reasion,action) |
void set_error(int code,char *reason,char *action) |
| int code; |
|
| char *reasion,*action; |
|
| {} |
{} |
| #endif |
#endif |