version 1.5, 1999/11/03 10:56:40 |
version 1.7, 1999/11/04 06:21:58 |
|
|
/* -*- mode: C; coding: euc-japan -*- */ |
/* -*- mode: C; coding: euc-japan -*- */ |
/* $OpenXM: OpenXM/src/ox_math/ox.c,v 1.4 1999/11/02 21:15:02 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_math/ox.c,v 1.6 1999/11/04 03:05:50 ohara Exp $ */ |
|
|
/* |
/* |
関数の名前付け規約(その2): |
関数の名前付け規約(その2): |
Line 57 static int dump_mpz(mpz_ptr mpz); |
|
Line 57 static int dump_mpz(mpz_ptr mpz); |
|
|
|
static int funcs(int cmo_type); |
static int funcs(int cmo_type); |
|
|
/* CMO_xxx の値順にならべること(デバッグのため) */ |
|
static int login_with_otp(int fd, char* passwd); |
static int login_with_otp(int fd, char* passwd); |
|
static char *create_otp(); |
|
|
|
/* CMO_xxx の値順にならべること(デバッグのため) */ |
static cmo_null* receive_cmo_null(int fd); |
static cmo_null* receive_cmo_null(int fd); |
static cmo_int32* receive_cmo_int32(int fd); |
static cmo_int32* receive_cmo_int32(int fd); |
static cmo_string* receive_cmo_string(int fd); |
static cmo_string* receive_cmo_string(int fd); |
static cmo_mathcap* receive_cmo_mathcap(int fd); |
static cmo_mathcap* receive_cmo_mathcap(int fd); |
static cmo_list* receive_cmo_list(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_zz* receive_cmo_zz(int fd); |
static cmo_zero* receive_cmo_zero(int fd); |
static cmo_zero* receive_cmo_zero(int fd); |
static cmo_dms_generic* receive_cmo_dms_generic(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 cmo_error2* receive_cmo_error2(int fd); |
static void receive_mpz(int fd, mpz_ptr mpz); |
static void receive_mpz(int fd, mpz_ptr mpz); |
|
|
Line 75 static int send_cmo_int32(int fd, cmo_int32* |
|
Line 81 static int send_cmo_int32(int fd, cmo_int32* |
|
static int send_cmo_string(int fd, cmo_string* 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_mathcap(int fd, cmo_mathcap* c); |
static int send_cmo_list(int fd, cmo_list* 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_zz(int fd, cmo_zz* c); |
static int send_cmo_error2(int fd, cmo_error2* c); |
static int send_cmo_error2(int fd, cmo_error2* c); |
static int send_mpz(int fd, mpz_ptr mpz); |
static int send_mpz(int fd, mpz_ptr mpz); |
|
static int send_cmo_distributed_polynomial(int fd, cmo_distributed_polynomial* c); |
|
|
|
|
/* エラーハンドリングのため */ |
/* エラーハンドリングのため */ |
Line 203 static cmo_mathcap* receive_cmo_mathcap(int fd) |
|
Line 211 static cmo_mathcap* receive_cmo_mathcap(int fd) |
|
|
|
static cmo_list* receive_cmo_list(int fd) |
static cmo_list* receive_cmo_list(int fd) |
{ |
{ |
cmo* newcmo; |
cmo* ob; |
cmo_list* c = new_cmo_list(); |
cmo_list* c = new_cmo_list(); |
int len = receive_int32(fd); |
int len = receive_int32(fd); |
|
|
while (len>0) { |
while (len>0) { |
newcmo = receive_cmo(fd); |
ob = receive_cmo(fd); |
append_cmo_list(c, newcmo); |
append_cmo_list(c, ob); |
len--; |
len--; |
} |
} |
return c; |
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; i<len; i++) { |
|
c->exps[i] = receive_int32(fd); |
|
} |
|
c->coef = receive_cmo(fd); |
|
return c; |
|
} |
|
|
static cmo_zz* receive_cmo_zz(int fd) |
static cmo_zz* receive_cmo_zz(int fd) |
{ |
{ |
cmo_zz* c = new_cmo_zz(); |
cmo_zz* c = new_cmo_zz(); |
Line 239 static cmo_ring_by_name* receive_cmo_ring_by_name(int |
|
Line 260 static cmo_ring_by_name* receive_cmo_ring_by_name(int |
|
return new_cmo_ring_by_name(ob); |
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(c, ob); |
|
len--; |
|
} |
|
return c; |
|
} |
|
|
static cmo_error2* receive_cmo_error2(int fd) |
static cmo_error2* receive_cmo_error2(int fd) |
{ |
{ |
cmo* ob = receive_cmo(fd); |
cmo* ob = receive_cmo(fd); |
return new_cmo_error2(ob); |
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, "unknown cmo-type: tag = (%d)\n", m->tag); |
|
} |
|
return m; |
|
} |
|
|
static void receive_mpz(int fd, mpz_ptr mpz) |
static void receive_mpz(int fd, mpz_ptr mpz) |
{ |
{ |
int i; |
int i; |
Line 283 cmo_int32* new_cmo_int32(int i) |
|
Line 374 cmo_int32* new_cmo_int32(int i) |
|
cmo_string* new_cmo_string(char* s) |
cmo_string* new_cmo_string(char* s) |
{ |
{ |
cmo_string* c = malloc(sizeof(cmo_string)); |
cmo_string* c = malloc(sizeof(cmo_string)); |
char *s2 = malloc(strlen(s)+1); |
|
strcpy(s2, s); |
|
|
|
c->tag = CMO_STRING; |
c->tag = CMO_STRING; |
c->s = s2; |
if (s != NULL) { |
|
c->s = malloc(strlen(s)+1); |
|
strcpy(c->s, s); |
|
}else { |
|
c->s = NULL; |
|
} |
return c; |
return c; |
} |
} |
|
|
Line 409 cmo_error2* new_cmo_error2(cmo* ob) |
|
Line 502 cmo_error2* new_cmo_error2(cmo* ob) |
|
return c; |
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) |
void send_ox_command(int fd, int sm_command) |
{ |
{ |
send_ox_tag(fd, OX_COMMAND); |
send_ox_tag(fd, OX_COMMAND); |
Line 930 static int send_cmo_int32(int fd, cmo_int32* m) |
|
Line 981 static int send_cmo_int32(int fd, cmo_int32* m) |
|
|
|
static int send_cmo_string(int fd, cmo_string* m) |
static int send_cmo_string(int fd, cmo_string* m) |
{ |
{ |
int len = strlen(m->s); |
int len = (m->s != NULL)? strlen(m->s): 0; |
send_int32(fd, len); |
send_int32(fd, len); |
if (len > 0) { |
if (len > 0) { |
write(fd, m->s, len); |
write(fd, m->s, len); |
Line 957 static int send_cmo_list(int fd, cmo_list* c) |
|
Line 1008 static int send_cmo_list(int fd, cmo_list* c) |
|
return 0; |
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 != 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; i<len; i++) { |
|
send_int32(fd, c->exps[i]); |
|
} |
|
send_cmo(fd, c->coef); |
|
return 0; |
|
} |
|
|
static int send_cmo_zz(int fd, cmo_zz* c) |
static int send_cmo_zz(int fd, cmo_zz* c) |
{ |
{ |
send_mpz(fd, c->mpz); |
send_mpz(fd, c->mpz); |
|
return 0; |
} |
} |
|
|
static int send_cmo_error2(int fd, cmo_error2* c) |
static int send_cmo_error2(int fd, cmo_error2* c) |
Line 976 int send_cmo(int fd, cmo* c) |
|
Line 1054 int send_cmo(int fd, cmo* c) |
|
send_int32(fd, tag); |
send_int32(fd, tag); |
switch(tag) { |
switch(tag) { |
case CMO_NULL: |
case CMO_NULL: |
|
case CMO_ZERO: |
|
case CMO_DMS_GENERIC: |
send_cmo_null(fd, c); /* 空の関数 */ |
send_cmo_null(fd, c); /* 空の関数 */ |
break; |
break; |
case CMO_INT32: |
case CMO_INT32: |
Line 985 int send_cmo(int fd, cmo* c) |
|
Line 1065 int send_cmo(int fd, cmo* c) |
|
send_cmo_string(fd, (cmo_string *)c); |
send_cmo_string(fd, (cmo_string *)c); |
break; |
break; |
case CMO_MATHCAP: |
case CMO_MATHCAP: |
|
case CMO_ERROR2: |
|
case CMO_RING_BY_NAME: |
|
case CMO_INDETERMINATE: |
send_cmo_mathcap(fd, (cmo_mathcap *)c); |
send_cmo_mathcap(fd, (cmo_mathcap *)c); |
break; |
break; |
case CMO_LIST: |
case CMO_LIST: |
send_cmo_list(fd, (cmo_list *)c); |
send_cmo_list(fd, (cmo_list *)c); |
break; |
break; |
|
case CMO_MONOMIAL32: |
|
send_cmo_monomial32(fd, (cmo_monomial32 *)c); |
|
break; |
case CMO_ZZ: |
case CMO_ZZ: |
send_cmo_zz(fd, (cmo_zz *)c); |
send_cmo_zz(fd, (cmo_zz *)c); |
break; |
break; |
case CMO_ERROR2: |
case CMO_DISTRIBUTED_POLYNOMIAL: |
send_cmo_error2(fd, (cmo_error2 *)c); |
send_cmo_distributed_polynomial(fd, (cmo_distributed_polynomial *)c); |
break; |
break; |
default: |
default: |
} |
} |