=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/Attic/serv2.c,v retrieving revision 1.10 retrieving revision 1.13 diff -u -p -r1.10 -r1.13 --- OpenXM/src/ox_math/Attic/serv2.c 1999/11/29 12:09:58 1.10 +++ OpenXM/src/ox_math/Attic/serv2.c 2000/01/22 06:29:18 1.13 @@ -1,9 +1,20 @@ /* -*- mode: C; coding: euc-japan -*- */ -/* $OpenXM: OpenXM/src/ox_math/serv2.c,v 1.9 1999/11/19 20:51:36 ohara Exp $ */ +/* $OpenXM: OpenXM/src/ox_math/serv2.c,v 1.12 2000/01/05 06:09:11 ohara Exp $ */ -/* Open Mathematica サーバ */ -/* ファイルディスクリプタ 3, 4 は open されていると仮定して動作する. */ +/* + Copyright (C) Katsuyoshi OHARA, 2000. + Portions copyright 1999 Wolfram Research, Inc. + You must see OpenXM/Copyright/Copyright.generic. + The MathLink Library is licensed from Wolfram Research Inc.. + See OpenXM/Copyright/Copyright.mathlink for detail. +*/ + +/* + Remarks: + file descripter 3 and 4 are already opened by the parent process. +*/ + #include #include #include @@ -15,18 +26,31 @@ extern int flag_mlo_symbol; -/* MathLink 非依存部分 */ +/* MathLink independent */ +#define INIT_S_SIZE 2048 +#define EXT_S_SIZE 2048 -#define SIZE_OPERAND_STACK 2048 +static int stack_size = 0; +static int stack_pointer = 0; +static cmo **stack = NULL; -static cmo* Operand_Stack[SIZE_OPERAND_STACK]; -static int Stack_Pointer = 0; - int initialize_stack() { - Stack_Pointer = 0; + stack_pointer = 0; + stack_size = INIT_S_SIZE; + stack = malloc(stack_size*sizeof(cmo*)); } +static int extend_stack() +{ + int size2 = stack_size + EXT_S_SIZE; + cmo **stack2 = malloc(size2*sizeof(cmo*)); + memcpy(stack2, stack, stack_size*sizeof(cmo *)); + free(stack); + stack = stack2; + stack_size = size2; +} + int push(cmo* m) { #if DEBUG @@ -39,34 +63,35 @@ int push(cmo* m) fprintf(stderr, "ox_math:: a %s was pushed.\n", symp->key); } #endif - Operand_Stack[Stack_Pointer] = m; - Stack_Pointer++; - if (Stack_Pointer >= SIZE_OPERAND_STACK) { - fprintf(stderr, "stack over flow.\n"); - Stack_Pointer--; + stack[stack_pointer] = m; + stack_pointer++; + if (stack_pointer >= stack_size) { + extend_stack(); } } -/* スタックが空のときは, (CMO_NULL) をかえす. */ +/* if the stack is empty, then pop() returns (CMO_NULL). */ cmo* pop() { - if (Stack_Pointer > 0) { - Stack_Pointer--; - return Operand_Stack[Stack_Pointer]; + if (stack_pointer > 0) { + stack_pointer--; + return stack[stack_pointer]; } return new_cmo_null(); } void pops(int n) { - Stack_Pointer -= n; - if (Stack_Pointer < 0) { - Stack_Pointer = 0; + stack_pointer -= n; + if (stack_pointer < 0) { + stack_pointer = 0; } } -/* sm_XXX 関数群は、エラーのときは 0 以外の値を返し、呼び出し元で - エラーオブジェクトをセットする */ +/* + if error occurs, then a sm_*() function returns non-zero and + an error obect is set by a function which calls sm_*(). +*/ int sm_popCMO(int fd_write) { cmo* m = pop(); @@ -92,7 +117,7 @@ int sm_pops(int fd_write) return ERROR_ID_UNKNOWN_SM; } -/* MathLink 依存部分 */ +/* MathLink dependent */ int sm_popString(int fd_write) { char *s; @@ -106,7 +131,7 @@ int sm_popString(int fd_write) m = pop(); if (m->tag == CMO_STRING) { send_ox_cmo(fd_write, m); - }else if ((s = convert_cmo_to_string(m)) != NULL) { + }else if ((s = new_string_set_cmo(m)) != NULL) { send_ox_cmo(fd_write, (cmo *)new_cmo_string(s)); }else { err = make_error_object(SM_popString, m); @@ -131,7 +156,7 @@ int local_execute(char *s) return 0; } -/* この関数はサーバに依存する. */ +/* The following function is depend on an implementation of a server. */ int sm_executeStringByLocalParser(int fd_write) { symbol *symp; @@ -147,9 +172,10 @@ int sm_executeStringByLocalParser(int fd_write) local_execute(++s); }else { /* for mathematica */ - /* mathematica に文字列を送って評価させる */ + /* Sending the string `s' to mathematica for its evaluation. */ ml_evaluateStringByLocalParser(s); - push(ml_get_object()); + ml_select(); + push(receive_mlo()); } return 0; } @@ -182,13 +208,13 @@ int sm_executeFunction(int fd_write) argv[i] = pop(); } ml_executeFunction(func, argc, argv); - push(ml_get_object()); + ml_select(); + push(receive_mlo()); return 0; } -/* 平成11年10月13日 */ -#define VERSION 0x11102700 -#define ID_STRING "ox_math server 1999/10/28 17:29:25" +#define VERSION 0x11121400 +#define ID_STRING "ox_math server 1999/12/14 15:25:00" int sm_mathcap(int fd_write) { @@ -233,7 +259,7 @@ int execute_sm_command(int fd_write, int code) shutdown(); break; case SM_setMathCap: - pop(); /* 無視する */ + pop(); /* ignore */ break; default: fprintf(stderr, "unknown command: %d.\n", code);