1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/*
* 設定ファイルなどのための
* 汎用のファイル読み込みモジュール
*
* Copyright (C) 2000-2006 TABATA Yusuke
*
*/
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <anthy/conf.h>
#include <anthy/ruleparser.h>
#include <anthy/logger.h>
/* 文法ファイルのパーザ用の定義 */
#define MAX_TOKEN_LEN 256
/* 最大のインクルードの深さ */
#define MAX_INCLUDE_DEPTH 4
#define PS_INIT 0
#define PS_TOKEN 1
#define PS_EOF 2
#define PS_RET 3
static const char *NL = "NL";
static struct parser_stat {
FILE *fp_stack[MAX_INCLUDE_DEPTH];
FILE *fp;
int cur_fpp;/* スタックのインデックス */
int line_num;
char **tokens;
int nr_token;
} g_ps;
struct line_stat{
int stat;
char buf[MAX_TOKEN_LEN];
int buf_index;
};
static FILE *
open_file_in_confdir(const char *fn)
{
const char *dn;
char *full;
size_t dname_len;
if (!fn) {
return stdin;
}
if (fn[0] == '/' ||
(fn[0] == '.' && fn[1] == '/')) {
/* 絶対パスもしくはカレントディレクトリなのでそのままfopen */
return fopen(fn, "r");
}
dn = anthy_conf_get_str("ANTHYDIR");
if (!dn) {
return 0;
}
dname_len = strlen(dn);
full = alloca(dname_len + strlen(fn) + 2);
sprintf(full, "%s/%s", dn, fn);
return fopen(full, "r");
}
/** バックスラッシュによるエスケープも処理するgetc
* エスケープされた文字ならば返り値は1になる。
*/
static int
mygetc (int *cc)
{
*cc = fgetc(g_ps.fp);
if (*cc == '\\') {
int c2 = fgetc(g_ps.fp);
switch(c2) {
case '\\':
*cc = '\\';
return 1;
case '\n':
*cc = ' ';
return 1;
case '\"':
*cc = '\"';
return 1;
default:;
/* go through */
}
}
return 0;
}
#define myisblank(c) ((c) == ' ' || (c) == '\t')
/* 行に一文字追加する */
static void
pushchar(struct line_stat *ls, int cc)
{
if (ls->buf_index == MAX_TOKEN_LEN - 1) {
ls->buf[MAX_TOKEN_LEN - 1] = 0;
} else {
ls->buf[ls->buf_index] = cc;
ls->buf_index ++;
}
}
static const char *
get_token_in(struct line_stat *ls)
{
int cc, esc;
int in_quote = 0;
if (ls->stat == PS_EOF) {
return NULL;
}
if (ls->stat == PS_RET) {
return NL;
}
/* トークンが始まるまで空白を読み飛ばす */
do {
esc = mygetc(&cc);
} while (cc > 0 && myisblank(cc) && esc == 0);
if (cc == -1) {
return NULL;
}
if (cc == '\n'){
return NL;
}
/**/
if (cc == '\"' && !esc) {
in_quote = 1;
}
/**/
do {
pushchar(ls, cc);
esc = mygetc(&cc);
if (cc < 0){
/* EOF */
pushchar(ls, 0);
ls->stat = PS_EOF;
return ls->buf;
}
if (cc == '\n' && !esc) {
/* 改行 */
pushchar(ls, 0);
ls->stat = PS_RET;
return ls->buf;
}
if (!in_quote && myisblank(cc)) {
break;
}
if (in_quote && cc == '\"' && !esc) {
pushchar(ls, '\"');
break;
}
} while (1);
pushchar(ls, 0);
return ls->buf;
}
/* 一行読む */
static int
get_line_in(void)
{
const char *t;
struct line_stat ls;
ls.stat = PS_INIT;
do{
ls.buf_index = 0;
t = get_token_in(&ls);
if (!t) {
return -1;
}
if (t == NL) {
return 0;
}
g_ps.nr_token++;
g_ps.tokens = realloc(g_ps.tokens, sizeof(char *)*g_ps.nr_token);
g_ps.tokens[g_ps.nr_token-1] = strdup(t);
} while(1);
}
static void
proc_include(void)
{
FILE *fp;
if (g_ps.nr_token != 2) {
anthy_log(0, "Syntax error in include directive.\n");
return ;
}
if (g_ps.cur_fpp > MAX_INCLUDE_DEPTH - 1) {
anthy_log(0, "Too deep include.\n");
return ;
}
fp = open_file_in_confdir(g_ps.tokens[1]);
if (!fp) {
anthy_log(0, "Failed to open %s.\n", g_ps.tokens[1]);
return ;
}
g_ps.cur_fpp++;
g_ps.fp_stack[g_ps.cur_fpp] = fp;
g_ps.fp = fp;
}
/* インクルードのネストを下げる */
static void
pop_file(void)
{
fclose(g_ps.fp);
g_ps.cur_fpp --;
g_ps.fp = g_ps.fp_stack[g_ps.cur_fpp];
}
static void
get_line(void)
{
int r;
again:
anthy_free_line();
g_ps.line_num ++;
r = get_line_in();
if (r == -1){
/* EOF等でこれ以上読めん */
if (g_ps.cur_fpp > 0) {
pop_file();
goto again;
}else{
return ;
}
}
if (g_ps.nr_token < 1) {
goto again;
}
if (!strcmp(g_ps.tokens[0], "\\include")) {
proc_include();
goto again;
}else if (!strcmp(g_ps.tokens[0], "\\eof")) {
if (g_ps.cur_fpp > 0) {
pop_file();
goto again;
}else{
anthy_free_line();
return ;
}
}
if (g_ps.tokens[0][0] == '#'){
goto again;
}
}
void
anthy_free_line(void)
{
int i;
if (g_ps.tokens) { /* 不正なメモリアクセスの防止 */
for (i = 0; i < g_ps.nr_token; i++) {
free(g_ps.tokens[i]);
}
free(g_ps.tokens);
g_ps.tokens = 0;
}
g_ps.nr_token = 0;
}
int
anthy_open_file(const char *fn)
{
g_ps.fp_stack[0] = open_file_in_confdir(fn);
if (!g_ps.fp_stack[0]) {
return -1;
}
/* パーザの状態を初期化する */
g_ps.cur_fpp = 0;
g_ps.fp = g_ps.fp_stack[0];
g_ps.line_num = 0;
g_ps.nr_token = 0; /* 初期化忘れの修正 */
g_ps.tokens = NULL; /* 初期化忘れの修正 */
return 0;
}
void
anthy_close_file(void)
{
if (g_ps.fp != stdin) {
fclose(g_ps.fp);
}
anthy_free_line(); /* 後始末忘れの防止 */
}
int
anthy_read_line(char ***tokens, int *nr)
{
get_line();
*tokens = g_ps.tokens;
*nr = g_ps.nr_token;
if (!*nr) {
return -1;
}
return 0;
}
int
anthy_get_line_number(void)
{
return g_ps.line_num;
}
|