Annotation of OpenXM/src/ox_math/math2ox.c, Revision 1.3
1.1 ohara 1: /* -*- mode: C; coding: euc-japan -*- */
1.3 ! ohara 2: /* $OpenXM: OpenXM/src/ox_math/math2ox.c,v 1.2 1999/11/02 06:11:57 ohara Exp $ */
1.1 ohara 3: /* $Id: math2ox.c,v 1.3 1999/10/13 07:38:23 ohara Exp $ */
4:
5: #include <sys/types.h>
6: #include <sys/stat.h>
7: #include <fcntl.h>
8:
9: #include <stdio.h>
10: #include <stdlib.h>
11: #include <mathlink.h>
12: #include <unistd.h>
13: #include <signal.h>
14:
15: #include "ox.h"
1.3 ! ohara 16: #include "parse.h"
1.1 ohara 17:
18: static char *host = "localhost";
19: static char *ctlserv = "ox";
20: static char *oxprog = "ox_sm1";
21:
22: ox_file_t sv;
23:
24: /* Mathematica から直接呼び出される関数の定義. */
25: /* 呼び出しの方法は math2ox.tm で定義される. */
26: int OX_executeStringByLocalParser(const char *str)
27: {
28: ox_executeStringByLocalParser(sv, str);
29: return 0;
30: }
31:
32: char *OX_popString()
33: {
34: return ox_popString(sv, sv->stream);
35: }
36:
37: int OX_close()
38: {
39: ox_close(sv);
40: return 0;
41: }
42:
43: int OX_reset()
44: {
45: ox_reset(sv);
46: return 0;
47: }
48:
1.3 ! ohara 49: /* 文字列 s を parse() にかけて生成された cmo を サーバに送る. */
! 50: /* s は "...\n" の形でなければならない(??). */
! 51: int OX_parse(char *s)
! 52: {
! 53: cmo *m;
! 54: int len = strlen(s);
! 55: setmode_mygetc(s, len);
! 56:
! 57: if(s != NULL && len > 0 && (m = parse()) != NULL) {
! 58: /* 本来 m->tag のチェックをして CMO であることを
! 59: 確かめなければならない. */
! 60: send_ox_cmo(sv->stream, m);
! 61: return 0;
! 62: }
! 63: return -1; /* 失敗した場合 */
! 64: }
1.1 ohara 65:
66: int OX_start(char* s)
67: {
68: if (s != NULL && s[0] != '\0') {
69: oxprog = s;
70: }
71: sv = ox_start(host, ctlserv, oxprog);
72: fprintf(stderr, "open (%s)\n", "localhost");
73: return 0;
74: }
75:
76: static char *cp_str(char *src)
77: {
78: char *dest = malloc(strlen(src)+1);
79: strcpy(dest, src);
80: return dest;
81: }
82:
83: int OX_setClientParam(char *h, char* c, char* p)
84: {
85: host = cp_str(h);
86: ctlserv = cp_str(c);
87: oxprog = cp_str(p);
88: return 0;
89: }
90:
91: int main(int argc, char *argv[])
92: {
1.3 ! ohara 93: /* 構文解析器の設定 */
! 94: setflag_parse(PFLAG_ADDREV);
! 95: setgetc(mygetc);
! 96:
1.1 ohara 97: MLMain(argc, argv);
98: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>