=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/Attic/ox.c,v retrieving revision 1.6 retrieving revision 1.16 diff -u -p -r1.6 -r1.16 --- OpenXM/src/ox_math/Attic/ox.c 1999/11/04 03:05:50 1.6 +++ OpenXM/src/ox_math/Attic/ox.c 1999/11/28 16:43:21 1.16 @@ -1,5 +1,5 @@ /* -*- mode: C; coding: euc-japan -*- */ -/* $OpenXM: OpenXM/src/ox_math/ox.c,v 1.5 1999/11/03 10:56:40 ohara Exp $ */ +/* $OpenXM: OpenXM/src/ox_math/ox.c,v 1.15 1999/11/18 21:57:56 ohara Exp $ */ /* 関数の名前付け規約(その2): @@ -31,6 +31,8 @@ YYY_cmo_XXX 関数が処理する. cmo の内部に cmo_ZZZ への #include #include #include +#include +#include #include "mysocket.h" #include "ox.h" @@ -55,40 +57,46 @@ static int dump_string(char *s, int len); static int dump_integer(int x); static int dump_mpz(mpz_ptr mpz); -static int funcs(int cmo_type); +static int login_with_otp(int fd, char* passwd); +static char *create_otp(); /* CMO_xxx の値順にならべること(デバッグのため) */ -static int login_with_otp(int fd, char* passwd); -static cmo_null* receive_cmo_null(int fd); -static cmo_int32* receive_cmo_int32(int fd); -static cmo_string* receive_cmo_string(int fd); -static cmo_mathcap* receive_cmo_mathcap(int fd); -static cmo_list* receive_cmo_list(int fd); -static cmo_zz* receive_cmo_zz(int fd); -static cmo_zero* receive_cmo_zero(int fd); -static cmo_dms_generic* receive_cmo_dms_generic(int fd); -static cmo_error2* receive_cmo_error2(int fd); -static void receive_mpz(int fd, mpz_ptr mpz); +static cmo_null* receive_cmo_null(int fd); +static cmo_int32* receive_cmo_int32(int fd); +static cmo_string* receive_cmo_string(int fd); +static cmo_mathcap* receive_cmo_mathcap(int fd); +static cmo_list* receive_cmo_list(int fd); +static cmo_monomial32* receive_cmo_monomial32(int fd); +static cmo_zz* receive_cmo_zz(int fd); +static cmo_zero* receive_cmo_zero(int fd); +static cmo_dms_generic* receive_cmo_dms_generic(int fd); +static cmo_ring_by_name* receive_cmo_ring_by_name(int fd); +static cmo_distributed_polynomial* receive_cmo_distributed_polynomial(int fd); +static cmo_error2* receive_cmo_error2(int fd); +static void receive_mpz(int fd, mpz_ptr mpz); + static int send_cmo_null(int fd, cmo_null* c); static int send_cmo_int32(int fd, cmo_int32* m); static int send_cmo_string(int fd, cmo_string* m); static int send_cmo_mathcap(int fd, cmo_mathcap* c); static int send_cmo_list(int fd, cmo_list* c); +static int send_cmo_monomial32(int fd, cmo_monomial32* c); static int send_cmo_zz(int fd, cmo_zz* c); static int send_cmo_error2(int fd, cmo_error2* c); static int send_mpz(int fd, mpz_ptr mpz); +static int send_cmo_distributed_polynomial(int fd, cmo_distributed_polynomial* c); - /* エラーハンドリングのため */ static int current_received_serial = 0; -/* エラーを起こしたときはサーバは次のようにすればよい. */ -cmo_error2* gen_error_object(int err_code) +/* エラーを起こしたときにサーバは次を呼び出す. */ +cmo_error2* make_error_object(int err_code, cmo *ob) { cmo_list* li = new_cmo_list(); append_cmo_list(li, (cmo *)new_cmo_int32(current_received_serial)); append_cmo_list(li, (cmo *)new_cmo_int32(err_code)); + append_cmo_list(li, ob); /* 他の情報を加えるならココ */ return new_cmo_error2((cmo *)li); } @@ -135,13 +143,12 @@ int send_ox_tag(int fd, int tag) return send_int32(fd, next_serial()); } - /* CMO_LIST 関係の関数群 */ -cell* new_cell(cmo* newcmo) +cell* new_cell() { cell* h = malloc(sizeof(cell)); h->next = NULL; - h->cmo = newcmo; + h->cmo = NULL; return h; } @@ -150,28 +157,28 @@ cell* next_cell(cell* this) return this->next; } -static cell* *tailp(cmo_list* this) { - cell **cp = &this->head; - while (*cp != NULL) { - cp = &((*cp)->next); +static cell *tail(cmo_list* this) { + cell *cp = this->head; + while (cp->next != NULL) { + cp = cp->next; } return cp; } -int length_cmo_list(cmo_list* this) -{ - return this->length; -} - int append_cmo_list(cmo_list* this, cmo* newcmo) { - /* リストの最後尾のNULLを保持している変数へのポインタ */ - cell **cp = tailp(this); - *cp = new_cell(newcmo); + cell *cp = tail(this); + cp->cmo = newcmo; + cp->next = new_cell(); this->length++; return 0; } +int length_cmo_list(cmo_list* this) +{ + return this->length; +} + /** receive_cmo_XXX 関数群 **/ static cmo_null* receive_cmo_null(int fd) { @@ -203,18 +210,31 @@ static cmo_mathcap* receive_cmo_mathcap(int fd) static cmo_list* receive_cmo_list(int fd) { - cmo* newcmo; + cmo* ob; cmo_list* c = new_cmo_list(); int len = receive_int32(fd); while (len>0) { - newcmo = receive_cmo(fd); - append_cmo_list(c, newcmo); + ob = receive_cmo(fd); + append_cmo_list(c, ob); len--; } return c; } +static cmo_monomial32* receive_cmo_monomial32(int fd) +{ + int i; + int len = receive_int32(fd); + cmo_monomial32* c = new_cmo_monomial32(len); + + for(i=0; iexps[i] = receive_int32(fd); + } + c->coef = receive_cmo(fd); + return c; +} + static cmo_zz* receive_cmo_zz(int fd) { cmo_zz* c = new_cmo_zz(); @@ -235,16 +255,86 @@ static cmo_dms_generic* receive_cmo_dms_generic(int fd static cmo_ring_by_name* receive_cmo_ring_by_name(int fd) { cmo* ob = receive_cmo(fd); - /* 意味的チェックが必要 */ + /* 意味的チェックが必要 */ return new_cmo_ring_by_name(ob); } +static cmo_distributed_polynomial* receive_cmo_distributed_polynomial(int fd) +{ + cmo* ob; + cmo_distributed_polynomial* c = new_cmo_distributed_polynomial(); + int len = receive_int32(fd); + c->ringdef = receive_cmo(fd); + + while (len>0) { + ob = receive_cmo(fd); + append_cmo_list((cmo_list *)c, ob); + len--; + } + return c; +} + static cmo_error2* receive_cmo_error2(int fd) { cmo* ob = receive_cmo(fd); return new_cmo_error2(ob); } +/* receive_ox_tag() == OX_DATA の後に呼び出される */ +/* 関数ポインタを使った方がきれいに書けるような気がする. */ +/* if (foo[tag] != NULL) foo[tag](fd); とか */ + +cmo* receive_cmo(int fd) +{ + cmo* m; + int tag; + tag = receive_int32(fd); + + switch(tag) { + case CMO_NULL: + m = receive_cmo_null(fd); + break; + case CMO_INT32: + m = (cmo *)receive_cmo_int32(fd); + break; + case CMO_STRING: + m = (cmo *)receive_cmo_string(fd); + break; + case CMO_MATHCAP: + m = (cmo *)receive_cmo_mathcap(fd); + break; + case CMO_LIST: + m = (cmo *)receive_cmo_list(fd); + break; + case CMO_MONOMIAL32: + m = (cmo *)receive_cmo_monomial32(fd); + break; + case CMO_ZZ: + m = (cmo *)receive_cmo_zz(fd); + break; + case CMO_ZERO: + m = (cmo *)receive_cmo_zero(fd); + break; + case CMO_DMS_GENERIC: + m = (cmo *)receive_cmo_dms_generic(fd); + break; + case CMO_RING_BY_NAME: + m = (cmo *)receive_cmo_ring_by_name(fd); + break; + case CMO_DISTRIBUTED_POLYNOMIAL: + m = (cmo *)receive_cmo_distributed_polynomial(fd); + break; + case CMO_ERROR2: + m = (cmo *)receive_cmo_error2(fd); + break; + case CMO_DATUM: + case CMO_QQ: + default: + fprintf(stderr, "the CMO (%d) is not implemented.\n", m->tag); + } + return m; +} + static void receive_mpz(int fd, mpz_ptr mpz) { int i; @@ -284,12 +374,12 @@ cmo_string* new_cmo_string(char* s) { cmo_string* c = malloc(sizeof(cmo_string)); c->tag = CMO_STRING; - if (s != NULL) { - c->s = malloc(strlen(s)+1); - strcpy(c->s, s); - }else { - c->s = NULL; - } + if (s != NULL) { + c->s = malloc(strlen(s)+1); + strcpy(c->s, s); + }else { + c->s = NULL; + } return c; } @@ -306,7 +396,7 @@ cmo_list* new_cmo_list() cmo_list* c = malloc(sizeof(cmo_list)); c->tag = CMO_LIST; c->length = 0; - c->head = NULL; + c->head->next = NULL; return c; } @@ -320,10 +410,10 @@ cmo_monomial32* new_cmo_monomial32() cmo_monomial32* new_cmo_monomial32_size(int size) { cmo_monomial32* c = new_cmo_monomial32(); - if (size>0) { - c->length = size; - c->exps = malloc(sizeof(int)*size); - } + if (size>0) { + c->length = size; + c->exps = malloc(sizeof(int)*size); + } return c; } @@ -398,8 +488,8 @@ cmo_distributed_polynomial* new_cmo_distributed_polyno cmo_distributed_polynomial* c = malloc(sizeof(cmo_distributed_polynomial)); c->tag = CMO_DISTRIBUTED_POLYNOMIAL; c->length = 0; - c->head = NULL; - c->ringdef = NULL; + c->head->next = NULL; + c->ringdef = NULL; return c; } @@ -411,48 +501,6 @@ cmo_error2* new_cmo_error2(cmo* ob) return c; } -/* receive_ox_tag() == OX_DATA の後に呼び出される */ -/* 関数ポインタを使った方がきれいに書けるような気がする. */ -/* if (foo[tag] != NULL) foo[tag](fd); とか */ - -cmo* receive_cmo(int fd) -{ - cmo* m; - int tag; - tag = receive_int32(fd); - - switch(tag) { - case CMO_NULL: - m = receive_cmo_null(fd); - break; - case CMO_INT32: - m = (cmo *)receive_cmo_int32(fd); - break; - case CMO_STRING: - m = (cmo *)receive_cmo_string(fd); - break; - case CMO_MATHCAP: - m = (cmo *)receive_cmo_mathcap(fd); - break; - case CMO_LIST: - m = (cmo *)receive_cmo_list(fd); - break; - case CMO_ZZ: - m = (cmo *)receive_cmo_zz(fd); - break; - case CMO_ERROR2: - m = (cmo *)receive_cmo_error2(fd); - break; - case CMO_DATUM: - case CMO_QQ: - case CMO_ZERO: - case CMO_DMS: - default: - fprintf(stderr, "unknown cmo-type: tag = (%d)\n", m->tag); - } - return m; -} - void send_ox_command(int fd, int sm_command) { send_ox_tag(fd, OX_COMMAND); @@ -462,7 +510,14 @@ void send_ox_command(int fd, int sm_command) int print_cmo(cmo* c) { int tag = c->tag; - fprintf(stderr, "local::tag = (%d): ", tag); + + symbol* symp = lookup_by_tag(tag); + if (symp != NULL) { + fprintf(stderr, "(%s", symp->key); + }else { + fprintf(stderr, "(%d", tag); + } + switch(tag) { case CMO_LIST: print_cmo_list((cmo_list *)c); @@ -471,13 +526,18 @@ int print_cmo(cmo* c) print_cmo_int32((cmo_int32 *)c); break; case CMO_MATHCAP: + case CMO_INDETERMINATE: + case CMO_RING_BY_NAME: + case CMO_ERROR2: print_cmo_mathcap((cmo_mathcap *)c); break; case CMO_STRING: print_cmo_string((cmo_string *)c); break; case CMO_NULL: - fprintf(stderr, "\n"); + case CMO_ZERO: + case CMO_DMS_GENERIC: + fprintf(stderr, ")"); break; default: fprintf(stderr, "print_cmo() does not know how to print.\n"); @@ -486,47 +546,49 @@ int print_cmo(cmo* c) int print_cmo_int32(cmo_int32* c) { - fprintf(stderr, "cmo_int32 = (%d)\n", c->i); + fprintf(stderr, ", %d)", c->i); } int print_cmo_list(cmo_list* li) { cell* cp = li->head; - fprintf(stderr, "length = (%d)\nlist:\n", li->length); - while(cp != NULL) { + while(cp->next != NULL) { + fprintf(stderr, ", "); print_cmo(cp->cmo); cp=cp->next; } - fprintf(stderr, "end of list\n"); + fprintf(stderr, ")"); } int print_cmo_mathcap(cmo_mathcap* c) { - fprintf(stderr, "\n"); + fprintf(stderr, ", "); print_cmo(c->ob); + fprintf(stderr, ")"); } int print_cmo_string(cmo_string* c) { - fprintf(stderr, "cmo_string = (%s)\n", c->s); + fprintf(stderr, ", \"%s\")", c->s); } void ox_close(ox_file_t sv) { send_ox_command(sv->control, SM_control_kill); -#if DEBUG +#ifdef DEBUG sleep(2); /* OpenXM server の終了を待つ. あまり意味はない. */ - fprintf(stderr, "I have closed an Open XM server.\n"); + fprintf(stderr, "I have closed the connection to an Open XM server.\n"); #endif } void ox_executeStringByLocalParser(ox_file_t sv, char* s) { - /* 文字列ををスタックにプッシュ. */ - send_ox_cmo(sv->stream, (cmo *)new_cmo_string(s)); - - /* サーバに実行させる. */ - send_ox_command(sv->stream, SM_executeStringByLocalParser); + if (s != NULL) { + /* 文字列ををスタックにプッシュ. */ + send_ox_cmo(sv->stream, (cmo *)new_cmo_string(s)); + /* サーバに実行させる. */ + send_ox_command(sv->stream, SM_executeStringByLocalParser); + } } /* ox_mathcap() をコールする. */ @@ -558,67 +620,125 @@ cmo* ox_pop_cmo(ox_file_t sv, int fd) /* 手抜き. (後で改善しよう...) */ static char *create_otp() { - static char otp[] = "otpasswd"; - return otp; + static char otp[] = "otpasswd"; + return otp; } /* OneTimePassword の処理 */ static int login_with_otp(int fd, char* passwd) { - char buff[1024]; - int n = read(fd, buff, 1024); - int len = strlen(passwd)+1; - if (n != len) { + int len = strlen(passwd)+1; + char *buf = alloca(len); + int n = read(fd, buf, len); + int ret = strcmp(passwd, buf); + +#ifdef DEBUG + if (ret != 0) { fprintf(stderr, "Socket#%d: Login incorrect.\n", fd); - fprintf(stderr, "password = (%s), length = (%d).\n", passwd, len); - fprintf(stderr, "received = (%d), length = (%d).\n", buff, n); - fflush(stderr); + }else { + fprintf(stderr, "Socket#%d: login!.\n", fd); } + fprintf(stderr, "password = (%s), %d bytes.\n", passwd, len); + fprintf(stderr, "received = (%s), %d bytes.\n", buf, n); + fflush(stderr); +#endif + + return ret; } -/* +static int exists_ox(char *dir, char *prog) +{ + char *path = alloca(strlen(dir)+strlen(prog)+6); + sprintf(path, "%s/%s", dir, prog); + return access(path, X_OK|R_OK); +} + +static char *search_ox(char *prog) +{ + char *env = getenv("OpenXM_HOME"); + char *dir; + if (env != NULL) { + dir = malloc(strlen(env)+5); + sprintf(dir, "%s/bin", env); + if (exists_ox(dir, prog) == 0) { + return dir; + } + free(dir); + } + dir = "/usr/local/OpenXM/bin"; + if (exists_ox(dir, prog) == 0) { + return dir; + } + dir = "."; + if (exists_ox(dir, prog) == 0) { + return dir; + } + return NULL; +} + +static int mysocketAccept2(int fd, char *pass) +{ + fd = mysocketAccept(fd); + if(login_with_otp(fd, pass)==0) { + decideByteOrderClient(fd, 0); + return fd; + } + close(fd); + return -1; +} + +/* (-reverse 版の ox_start) ox_start は クライアントが呼び出すための関数である. - サーバでは使われない. prog1 は コントロールサーバであり, + サーバでは使われない. ctl_prog は コントロールサーバであり, -ox, -reverse, -data, -control, -pass, -host - というオプションを理解することを仮定する. prog2 は計算サーバである. + というオプションを理解することを仮定する. dat_prog は計算サーバである. 接続時には, sv->control を先にオープンする. */ -ox_file_t ox_start(char* host, char* prog1, char* prog2) +ox_file_t ox_start(char* host, char* ctl_prog, char* dat_prog) { - char *pass = create_otp(); + char *pass; char ctl[16], dat[16]; short portControl = 0; /* short であることに注意 */ short portStream = 0; - ox_file_t sv = malloc(sizeof(__ox_file_struct)); + ox_file_t sv = NULL; + char *dir; + if ((dir = search_ox(ctl_prog)) == NULL) { + fprintf(stderr, "client:: %s not found.\n", ctl_prog); + return NULL; + } + sv = malloc(sizeof(__ox_file_struct)); sv->control = mysocketListen(host, &portControl); sv->stream = mysocketListen(host, &portStream); + sprintf(ctl, "%d", portControl); sprintf(dat, "%d", portStream); + pass = create_otp(); if (fork() == 0) { dup2(2, 1); dup2(open(DEFAULT_LOGFILE, O_RDWR|O_CREAT|O_TRUNC, 0644), 2); - execl(prog1, prog1, "-reverse", "-ox", prog2, + chdir(dir); + execl(ctl_prog, ctl_prog, "-reverse", "-ox", dat_prog, "-data", dat, "-control", ctl, "-pass", pass, "-host", host, NULL); } - sv->control = mysocketAccept(sv->control); - login_with_otp(sv->control, pass); - decideByteOrderClient(sv->control, 0); - /* 10マイクロ秒, 時間稼ぎする. */ + if ((sv->control = mysocketAccept2(sv->control, pass)) == -1) { + close(sv->stream); + return NULL; + } + /* 10マイクロ秒, 時間稼ぎする. */ usleep(10); - sv->stream = mysocketAccept(sv->stream); - login_with_otp(sv->stream, pass); - decideByteOrderClient(sv->stream, 0); - + if((sv->stream = mysocketAccept2(sv->stream, pass)) == -1) { + return NULL; + } return sv; } -/* +/* (-insecure 版の ox_start) まだ、中身はありません。 ox_start_insecure_nonreverse は クライアントが呼び出すための関数である. 接続時には, sv->control を先にオープンする. @@ -631,11 +751,16 @@ ox_file_t ox_start_insecure_nonreverse(char* host, sho { ox_file_t sv = malloc(sizeof(__ox_file_struct)); - sv->control = mysocketOpen(host, portControl); - /* 10マイクロ秒, 時間稼ぎする. */ - usleep(10); - sv->stream = mysocketOpen(host, portStream); - return sv; + sv->control = mysocketOpen(host, portControl); +#if 0 + /* ox は insecure のとき byte order の決定が正しくできないようだ... */ + decideByteOrderClient(sv->control, 0); +#endif + /* 10マイクロ秒, 時間稼ぎする. */ + usleep(10); + sv->stream = mysocketOpen(host, portStream); + decideByteOrderClient(sv->stream, 0); + return sv; } void ox_reset(ox_file_t sv) @@ -650,7 +775,7 @@ void ox_reset(ox_file_t sv) } send_ox_tag(sv->stream, OX_SYNC_BALL); -#if DEBUG +#ifdef DEBUG fprintf(stderr, "I have reset an Open XM server.\n"); #endif } @@ -682,10 +807,10 @@ static int cmolen_cmo_mathcap(cmo_mathcap* c) static int cmolen_cmo_list(cmo_list* c) { - int size = sizeof(c->head); + int size = sizeof(int); cell* cp = c->head; - while(cp != NULL) { + while(cp->next != NULL) { size += cmolen_cmo(cp->cmo); cp = cp->next; } @@ -694,8 +819,8 @@ static int cmolen_cmo_list(cmo_list* c) static int cmolen_cmo_monomial32(cmo_monomial32* c) { - int len = (c->length + 1)*sizeof(int); - return len + cmolen_cmo(c->coef); + int len = (c->length + 1)*sizeof(int); + return len + cmolen_cmo(c->coef); } static int cmolen_cmo_zz(cmo_zz* c) @@ -706,7 +831,7 @@ static int cmolen_cmo_zz(cmo_zz* c) static int cmolen_cmo_distributed_polynomial(cmo_distributed_polynomial* c) { - return cmolen_cmo_list((cmo_list *)c) + cmolen_cmo(c->ringdef); + return cmolen_cmo_list((cmo_list *)c) + cmolen_cmo(c->ringdef); } /* CMO がバイトエンコードされた場合のバイト列の長さを求める */ @@ -728,6 +853,7 @@ int cmolen_cmo(cmo* c) break; case CMO_MATHCAP: case CMO_RING_BY_NAME: + case CMO_INDETERMINATE: case CMO_ERROR2: size += cmolen_cmo_mathcap((cmo_mathcap *)c); break; @@ -740,9 +866,9 @@ int cmolen_cmo(cmo* c) case CMO_ZZ: size += cmolen_cmo_zz((cmo_zz *)c); break; - case CMO_DISTRIBUTED_POLYNOMIAL: - size += cmolen_cmo_distributed_polynomial((cmo_distributed_polynomial *)c); - break; + case CMO_DISTRIBUTED_POLYNOMIAL: + size += cmolen_cmo_distributed_polynomial((cmo_distributed_polynomial *)c); + break; default: } return size; @@ -753,13 +879,13 @@ static char *d_buf; int init_dump_buffer(char *s) { - d_buf = s; - d_ptr = 0; + d_buf = s; + d_ptr = 0; } static int dump_cmo_null(cmo_null* m) { - return 0; + return 0; } static int dump_cmo_int32(cmo_int32* m) @@ -771,7 +897,7 @@ static int dump_cmo_string(cmo_string* m) { int len = strlen(m->s); dump_integer(len); - dump_string(m->s, len); + dump_string(m->s, len); } static int dump_cmo_mathcap(cmo_mathcap* c) @@ -785,7 +911,7 @@ static int dump_cmo_list(cmo_list* m) int len = length_cmo_list(m); dump_integer(len); - while(cp != NULL) { + while(cp->next != NULL) { dump_cmo(cp->cmo); cp = cp->next; } @@ -793,13 +919,13 @@ static int dump_cmo_list(cmo_list* m) static int dump_cmo_monomial32(cmo_monomial32* c) { - int i; - int length = c->length; - dump_integer(c->length); - for(i=0; iexps[i]); - } - dump_cmo(c->coef); + int i; + int length = c->length; + dump_integer(c->length); + for(i=0; iexps[i]); + } + dump_cmo(c->coef); } static int dump_cmo_zz(cmo_zz* c) @@ -812,7 +938,7 @@ static int dump_cmo_distributed_polynomial(cmo_distrib cell* cp = m->head; int len = length_cmo_list((cmo_list *)m); dump_integer(len); - dump_cmo(m->ringdef); + dump_cmo(m->ringdef); while(cp != NULL) { dump_cmo(cp->cmo); cp = cp->next; @@ -828,30 +954,31 @@ int dump_cmo(cmo* m) case CMO_ZERO: case CMO_DMS_GENERIC: dump_cmo_null(m); - break; + break; case CMO_INT32: dump_cmo_int32((cmo_int32 *)m); - break; + break; case CMO_STRING: dump_cmo_string((cmo_string *)m); - break; + break; case CMO_MATHCAP: case CMO_RING_BY_NAME: + case CMO_INDETERMINATE: case CMO_ERROR2: dump_cmo_mathcap((cmo_mathcap *)m); - break; + break; case CMO_LIST: dump_cmo_list((cmo_list *)m); - break; + break; case CMO_MONOMIAL32: dump_cmo_monomial32((cmo_monomial32 *)m); - break; + break; case CMO_ZZ: dump_cmo_zz((cmo_zz *)m); - break; + break; case CMO_DISTRIBUTED_POLYNOMIAL: dump_cmo_distributed_polynomial((cmo_distributed_polynomial *)m); - break; + break; default: } } @@ -876,7 +1003,7 @@ static int dump_string(char *s, int len) static int dump_integer(int x) { int nx = htonl(x); - dump_string((char *)&nx, sizeof(int)); + dump_string((char *)&nx, sizeof(int)); } int dump_ox_data(ox_data* m) @@ -952,16 +1079,43 @@ static int send_cmo_list(int fd, cmo_list* c) int len = length_cmo_list(c); send_int32(fd, len); - while(cp != NULL) { + while(cp->next != NULL) { send_cmo(fd, cp->cmo); cp = cp->next; } return 0; } +static int send_cmo_distributed_polynomial(int fd, cmo_distributed_polynomial* c) +{ + cell* cp = c->head; + int len = length_cmo_list((cmo_list *)c); + send_int32(fd, len); + send_cmo(fd, c->ringdef); + + while(cp->next != NULL) { + send_cmo(fd, cp->cmo); + cp = cp->next; + } + return 0; +} + +static int send_cmo_monomial32(int fd, cmo_monomial32* c) +{ + int i; + int len = c->length; + send_int32(fd, len); + for(i=0; iexps[i]); + } + send_cmo(fd, c->coef); + return 0; +} + static int send_cmo_zz(int fd, cmo_zz* c) { send_mpz(fd, c->mpz); + return 0; } static int send_cmo_error2(int fd, cmo_error2* c) @@ -978,6 +1132,8 @@ int send_cmo(int fd, cmo* c) send_int32(fd, tag); switch(tag) { case CMO_NULL: + case CMO_ZERO: + case CMO_DMS_GENERIC: send_cmo_null(fd, c); /* 空の関数 */ break; case CMO_INT32: @@ -987,16 +1143,22 @@ int send_cmo(int fd, cmo* c) send_cmo_string(fd, (cmo_string *)c); break; case CMO_MATHCAP: + case CMO_ERROR2: + case CMO_RING_BY_NAME: + case CMO_INDETERMINATE: send_cmo_mathcap(fd, (cmo_mathcap *)c); break; case CMO_LIST: send_cmo_list(fd, (cmo_list *)c); break; + case CMO_MONOMIAL32: + send_cmo_monomial32(fd, (cmo_monomial32 *)c); + break; case CMO_ZZ: send_cmo_zz(fd, (cmo_zz *)c); break; - case CMO_ERROR2: - send_cmo_error2(fd, (cmo_error2 *)c); + case CMO_DISTRIBUTED_POLYNOMIAL: + send_cmo_distributed_polynomial(fd, (cmo_distributed_polynomial *)c); break; default: } @@ -1029,94 +1191,62 @@ ox_command* new_ox_command(int sm_code) return m; } -#define MAX_TYPES 8 -static int known_types[] = { - -1, /* gate keeper */ - CMO_NULL, - CMO_INT32, - CMO_STRING, - CMO_MATHCAP, - CMO_LIST, - CMO_ZZ, - CMO_ERROR2, -}; +ox_sync_ball* new_ox_sync_ball() +{ + ox_sync_ball *m = malloc(sizeof(ox_sync_ball)); + m->tag = OX_SYNC_BALL; + return m; +} -#define ID_TEMP "(CMO_MATHCAP, (CMO_LIST, (CMO_LIST, (CMO_INT32, %d), (CMO_STRING, \"%s\"), (CMO_STRING, \"%s\"), (CMO_STRING, \"%s\")), (CMO_LIST, (CMO_INT32, 1), (CMO_INT32, 2), (CMO_INT32, 4), (CMO_INT32, 5), (CMO_INT32, 17), (CMO_INT32, 20), (CMO_INT32, 2130706434))))\n" +#define ID_TEMP "(CMO_LIST, (CMO_INT32, %d), (CMO_STRING, \"%s\"), (CMO_STRING, \"%s\"), (CMO_STRING, \"%s\"))" -cmo* make_mathcap_object2(int ver, char* ver_s, char* sysname) +static cmo_list* make_list_of_id(int ver, char* ver_s, char* sysname) { - cmo *cap; - char buff[8192]; + cmo_list *cap; + char buff[512]; setgetc(mygetc); sprintf(buff, ID_TEMP, ver, sysname, ver_s, getenv("HOSTTYPE")); - setmode_mygetc(buff, 8192); + setmode_mygetc(buff, 512); cap = parse(); resetgetc(); return cap; } -cmo* make_mathcap_object(int version, char* id_string) +static cmo_list *make_list_of_tag(int type) { - cmo_list *li_ver, *li_cmo, *li; - - int i; - li_ver = new_cmo_list(); - append_cmo_list(li_ver, (cmo *)new_cmo_int32(version)); - append_cmo_list(li_ver, (cmo *)new_cmo_string(id_string)); - - li_cmo = new_cmo_list(); - for(i=0; ikey != NULL) { + if (symp->type == type) { + append_cmo_list(li, (cmo *)new_cmo_int32(symp->tag)); } } - - li = new_cmo_list(); - append_cmo_list(li, (cmo *)li_ver); - append_cmo_list(li, (cmo *)li_cmo); - - return (cmo *)new_cmo_mathcap((cmo *)li); + return li; } -static int funcs(int cmo_type) +cmo* make_mathcap_object(int version, char *id_string) { - int i; - for(i=0; impz); } -char *convert_cmo_to_string(cmo *m) -{ - switch(m->tag) { - case CMO_ZZ: - return convert_zz_to_string((cmo_zz *)m); - case CMO_INT32: - return convert_int_to_string(((cmo_int32 *)m)->i); - case CMO_STRING: - return ((cmo_string *)m)->s; - case CMO_NULL: - return convert_null_to_string(); - default: - fprintf(stderr, "sorry, not implemented CMO\n"); - /* まだ実装していません. */ - return NULL; - } -} - char *convert_null_to_string() { static char* null_string = ""; @@ -1180,4 +1292,54 @@ char *convert_int_to_string(int integer) strcpy(s, buff); return s; +} + +char *convert_cmo_list_to_string(cmo_list *m) +{ + char *s; + int i; + int size = 0; + int len = length_cmo_list(m); + char **sp = malloc(len*sizeof(cmo *)); + + cell *cp = m->head; + for(i = 0; i < len; i++) { + sp[i] = convert_cmo_to_string(cp->cmo); + size += strlen(sp[i]) + 3; + cp = cp->next; + } + s = malloc(size+2); + strcpy(s, "[ "); + for(i = 0; i < len - 1; i++) { + strcat(s, sp[i]); + strcat(s, " , "); + } + strcat(s, sp[len-1]); + strcat(s, " ]"); + free(sp); + return s; +} + +char *convert_cmo_to_string(cmo *m) +{ + symbol *symp; + switch(m->tag) { + case CMO_ZZ: + return convert_zz_to_string((cmo_zz *)m); + case CMO_INT32: + return convert_int_to_string(((cmo_int32 *)m)->i); + case CMO_STRING: + return ((cmo_string *)m)->s; + case CMO_NULL: + return convert_null_to_string(); + case CMO_LIST: + return convert_cmo_list_to_string((cmo_list *)m); + default: +#ifdef DEBUG + symp = lookup_by_tag(m->tag); + fprintf(stderr, "I do not know how to convert %s to a string.\n", symp->key); +#endif + /* まだ実装していません. */ + return NULL; + } }