=================================================================== RCS file: /home/cvs/OpenXM/src/ox_math/math2ox.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- OpenXM/src/ox_math/math2ox.c 1999/11/02 06:11:57 1.2 +++ OpenXM/src/ox_math/math2ox.c 1999/11/04 17:53:04 1.3 @@ -1,6 +1,6 @@ /* -*- mode: C; coding: euc-japan -*- */ -/* $OpenXM$ */ -/* $Id: math2ox.c,v 1.2 1999/11/02 06:11:57 ohara Exp $ */ +/* $OpenXM: OpenXM/src/ox_math/math2ox.c,v 1.2 1999/11/02 06:11:57 ohara Exp $ */ +/* $Id: math2ox.c,v 1.3 1999/11/04 17:53:04 ohara Exp $ */ #include #include @@ -13,6 +13,7 @@ #include #include "ox.h" +#include "parse.h" static char *host = "localhost"; static char *ctlserv = "ox"; @@ -45,7 +46,23 @@ int OX_reset() return 0; } +/* 文字列 s を parse() にかけて生成された cmo を サーバに送る. */ +/* s は "...\n" の形でなければならない(??). */ +int OX_parse(char *s) +{ + cmo *m; + int len = strlen(s); + setmode_mygetc(s, len); + if(s != NULL && len > 0 && (m = parse()) != NULL) { + /* 本来 m->tag のチェックをして CMO であることを + 確かめなければならない. */ + send_ox_cmo(sv->stream, m); + return 0; + } + return -1; /* 失敗した場合 */ +} + int OX_start(char* s) { if (s != NULL && s[0] != '\0') { @@ -73,5 +90,9 @@ int OX_setClientParam(char *h, char* c, char* p) int main(int argc, char *argv[]) { + /* 構文解析器の設定 */ + setflag_parse(PFLAG_ADDREV); + setgetc(mygetc); + MLMain(argc, argv); }