0
|
1 .\"
|
|
2 .\" $Id: open_lang.man,v 1.4 2001/09/16 14:20:17 hiroo Exp $
|
|
3 .\"
|
|
4 .\"
|
|
5 .\" FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
6 .\" This file is part of FreeWnn.
|
|
7 .\"
|
|
8 .\" Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
9 .\" 1987, 1988, 1989, 1990, 1991, 1992
|
|
10 .\" Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
11 .\" Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
12 .\" Copyright FreeWnn Project 1999, 2000
|
|
13 .\"
|
|
14 .\" Maintainer: FreeWnn Project <freewnn@tomo.gr.jp>
|
|
15 .\"
|
|
16 .\" This program is free software; you can redistribute it and/or modify
|
|
17 .\" it under the terms of the GNU General Public License as published by
|
|
18 .\" the Free Software Foundation; either version 2 of the License, or
|
|
19 .\" (at your option) any later version.
|
|
20 .\"
|
|
21 .\" This program is distributed in the hope that it will be useful,
|
|
22 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
24 .\" GNU General Public License for more details.
|
|
25 .\"
|
|
26 .\" You should have received a copy of the GNU General Public License
|
|
27 .\" along with this program; if not, write to the Free Software
|
|
28 .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
29 .\"
|
|
30 .TH JL_OPEN_LANG \ "20 September 1991"
|
|
31 .SH 名称
|
|
32 .sv 1
|
|
33 .nf
|
|
34 .ta 0.1i 2i
|
|
35 jl_open_lang() サーバとコネクションを張り環境をサーバ内に作る。
|
|
36 .fi
|
|
37 .SH 形式
|
|
38 .sv 1
|
|
39 .nf
|
|
40 .ta 0.1i 3i
|
|
41 #include "jllib.h"
|
|
42
|
|
43 struct wnn_buf *
|
|
44 jl_open_lang(env_n, server_n, lang, wnnrc_n,
|
|
45 error_handler, message_handler, timeout)
|
|
46 char *env_n; /* 環境名 */
|
|
47 char *server_n; /* サーバ名 */
|
|
48 char *lang; /* ランゲージ */
|
|
49 char *wnnrc_n; /* wnnrcファイル名 */
|
|
50 int (*error_handler)(); /* エラー・ハンドラ */
|
|
51 int (*message_handler)(); /* メッセージ・ハンドラ */
|
|
52 int timeout; /* タイムアウト時間 */
|
|
53 .fi
|
|
54 .SH 機能
|
|
55 .HP 0
|
|
56 .IP
|
|
57 環境名 env_n、及び、サーバ名 server_n で指定された環境を作り、
|
|
58 新しく変換バッファを作って返す。
|
|
59
|
|
60 server_n が、null ポインタ、あるいは、null の場合、serverdefs
|
|
61 ファイル中の lang が一致する行を参照し、その第2項のホストに
|
|
62 接続しようとする。その接続ができなかった場合、あるいは、第2項
|
|
63 のホストがNULLの場合、unix domain の socket で接続しようとする。
|
|
64
|
|
65 lang で、変換対象の言語を指定する。詳細は、js_open_lang を参照。
|
|
66
|
|
67 初期化ファイル wnnrc が指定された場合、環境の初期化ファイルと
|
|
68 して用い、そのファイルの指定(辞書指定、付属語ファイル指定、パ
|
|
69 ラメータ指定)をその環境に対して行なう。
|
|
70
|
|
71 指定された辞書ファイル、頻度ファイルが存在しない場合の処理を、
|
|
72 エラー・ハンドラ error_handler、メッセージ・ハンドラ
|
|
73 message_handler で指定する。jl_dic_add を参照。
|
|
74
|
|
75 timeout(秒)以内に、サーバと接続できない場合は、接続を中断し異
|
|
76 常終了する。タイムアウトの設定のために、SIGALARM を使用してい
|
|
77 る。timeout が 0 または、負の場合は、SIGALARM を使用しない。
|
|
78 js_connect を参照。
|
|
79 .SH リターンバリュー
|
|
80 .sv 1
|
|
81 .nf
|
|
82 正常終了時には、バッファのポインタを返す。
|
|
83 異常終了時には NULL を返す。
|
|
84 .fi
|
|
85 .SH 使用上の注意
|
|
86 .HP 0
|
|
87 .IP
|
|
88 タイムアウトには、SIGALARM を使用しているので、注意が必要である。
|
|
89 SIGALARM を使用しない場合には、timeout に 0 を設定しなければならない。
|