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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
/*
* $Id: language__x_ViAny.c,v 1.1.2.1 2009/08/09 00:09:06 source Exp $
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2008 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <ctype.h>
#include <stdlib.h>
#include <limits.h>
#include "langfunc.h"
#ifndef _MSC_VER
#define iswdigit isdigit
#define iswalpha isalpha
#endif
extern lang_handler_t lh__xViAny;
extern lang_handler_t lh__xftqxViAny;
#define ISSPECIAL(X) (('_' == (X)) || ('&' == (X)) || ('-' == (X)))
#define ISWALPHA(X) (iswalpha(X) || ISSPECIAL (X))
static int unichar_getprops_point__xViAny(const unichar *ptr)
{
unichar before, after;
if ((ptr[-1] & ~0xFF) || ptr[+1] & ~0xFF)
return UCP_PUNCT;
before = ptr[-1];
after = ptr[+1];
if (iswdigit((unsigned)before) && iswdigit((unsigned)after))
return UCP_ALPHA;
if (ISWALPHA((unsigned)before) && ISWALPHA((unsigned)after))
return UCP_ALPHA;
return UCP_PUNCT;
}
#define LH_COUNT_WORDS_NAME lh_count_words__xViAny
#define LH_ITERATE_WORDS_NAME lh_iterate_words__xViAny
#define LH_ITERATE_PATCHED_WORDS_NAME lh_iterate_patched_words__xViAny
#define UNICHAR_GETPROPS_EXPN(buf,bufsize,pos) \
(('.' == buf[pos]) ? \
(((pos > 0) && (pos+1 < bufsize)) ? unichar_getprops_point__xViAny(buf+pos) : UCP_PUNCT) : \
(ISSPECIAL(buf[pos]) ? UCP_ALPHA : unichar_getprops (buf[pos])) )
#define DBG_PRINTF_NOISE_WORD(word_start,word_length) dbg_printf (("Noise word in x-ViAny text, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_PATCH_FAILED(word_start,word_length) dbg_printf (("Patch of word failed in x-ViAny text, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_NOISE_IDEO(word_start,word_length) dbg_printf (("Noise ideograph in x-ViAny text, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_IDEO_PATCH_FAILED(word_start,word_length) dbg_printf (("Patch of ideograph failed in x-ViAny text, start %ld, length %ld\n", (long)word_start, (long)word_length))
#include "langfunc_templ.c"
#undef LH_COUNT_WORDS_NAME
#undef LH_ITERATE_WORDS_NAME
#undef LH_ITERATE_PATCHED_WORDS_NAME
#undef UNICHAR_GETPROPS_EXPN
#undef DBG_PRINTF_NOISE_WORD
#undef DBG_PRINTF_PATCH_FAILED
#undef DBG_PRINTF_NOISE_IDEO
#undef DBG_PRINTF_IDEO_PATCH_FAILED
static int unichar_getprops_point__xftqxViAny(const unichar *ptr)
{
unichar before, after;
if ((ptr[-1] & ~0xFF) || ptr[+1] & ~0xFF)
return UCP_PUNCT;
before = ptr[-1];
after = ptr[+1];
if (('*' == before) && (('*' == after) || iswdigit((unsigned)after) || ISWALPHA((unsigned)after)))
return UCP_ALPHA;
if (iswdigit((unsigned)before) && (('*' == after) || iswdigit((unsigned)after)))
return UCP_ALPHA;
if (ISWALPHA((unsigned)before) && (('*' == after) || ISWALPHA((unsigned)after)))
return UCP_ALPHA;
return UCP_PUNCT;
}
#define LH_COUNT_WORDS_NAME lh_count_words__xftqxViAny
#define LH_ITERATE_WORDS_NAME lh_iterate_words__xftqxViAny
#define LH_ITERATE_PATCHED_WORDS_NAME lh_iterate_patched_words__xftqxViAny
#define UNICHAR_GETPROPS_EXPN(buf,bufsize,pos) \
(('.' == buf[pos]) ? \
(((pos > 0) && (pos+1 < bufsize)) ? unichar_getprops_point__xftqxViAny(buf+pos) : UCP_PUNCT) : \
(('*' == buf[pos]) ? UCP_ALPHA : \
(ISSPECIAL(buf[pos]) ? UCP_ALPHA : unichar_getprops (buf[pos])) ))
#define DBG_PRINTF_NOISE_WORD(word_start,word_length) dbg_printf (("Noise word in x-ViAny query, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_PATCH_FAILED(word_start,word_length) dbg_printf (("Patch of word failed in x-ViAny query, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_NOISE_IDEO(word_start,word_length) dbg_printf (("Noise ideograph in x-ViAny query, start %ld, length %ld\n", (long)word_start, (long)word_length))
#define DBG_PRINTF_IDEO_PATCH_FAILED(word_start,word_length) dbg_printf (("Patch of ideograph failed in x-ViAny query, start %ld, length %ld\n", (long)word_start, (long)word_length))
#include "langfunc_templ.c"
#undef LH_COUNT_WORDS_NAME
#undef LH_ITERATE_WORDS_NAME
#undef LH_ITERATE_PATCHED_WORDS_NAME
#undef UNICHAR_GETPROPS_EXPN
#undef DBG_PRINTF_NOISE_WORD
#undef DBG_PRINTF_PATCH_FAILED
#undef DBG_PRINTF_NOISE_IDEO
#undef DBG_PRINTF_IDEO_PATCH_FAILED
int lh_is_vtb_word__xViAny (const unichar *buf, size_t bufsize)
{
lenmem_t lm;
char *nw;
if (1 > bufsize)
return 0;
lm.lm_length = bufsize * sizeof(unichar);
lm.lm_memblock = (/*const*/ char *)buf;
nw = id_hash_get (lh_noise_words, (char *) &lm);
if (NULL == nw)
return 1;
return 0;
}
lang_handler_t lh__xViAny = {
"x-ViAny", /* ISO 639 */
"x-ViAny", /* RFC 1766 */
NULL, /* more generic handler, will be set to handler for "x-any" before first use */
&lh__xftqxViAny, /* query language handler */
1, WORD_MAX_CHARS, /* minimal and maximal lengths of one indexable word */
NULL, /* application-specific data */
lh_is_vtb_word__xViAny,/* lh_is_vtb_word */
NULL, /* lh_tocapital_word */
NULL, /* lh_toupper_word */
NULL, /* lh_tolower_word */
NULL /*lh_normalize_word__xViAny*/ ,
lh_count_words__xViAny, /* lh_count_words */
lh_iterate_words__xViAny, /* lh_iterate_words */
lh_iterate_patched_words__xViAny, /* lh_iterate_patched_words */
#ifdef HYPHENATION_OK
NULL /* lh_iterate_hyppoints */
#endif
};
lang_handler_t lh__xftqxViAny = {
"x-ftq-x-ViAny", /* ISO 639 */
"x-ftq-x-ViAny", /* RFC 1766 */
NULL, /* more generic handler, will be set to handler for "x-ftq-x-any" before first use */
&lh__xftqxViAny, /* query language handler */
1, WORD_MAX_CHARS, /* minimal and maximal lengths of one indexable word */
NULL, /* application-specific data */
lh_is_vtb_word__xViAny,/* lh_is_vtb_word */
NULL, /* lh_tocapital_word */
NULL, /* lh_toupper_word */
NULL, /* lh_tolower_word */
NULL /*lh_normalize_word__xViAny*/ ,
lh_count_words__xftqxViAny, /* lh_count_words */
lh_iterate_words__xftqxViAny, /* lh_iterate_words */
lh_iterate_patched_words__xftqxViAny, /* lh_iterate_patched_words */
#ifdef HYPHENATION_OK
NULL /* lh_iterate_hyppoints */
#endif
};
#define IS_CONNECTIVE ((uchr == '.' && word_length == 1) || (uchr == '-') || (uchr == '&'))
int elh_count_words__xViAny__UTF8(const char *buf, size_t bufsize, lh_word_check_t *check)
{
unichar check_buf[WORD_MAX_CHARS];
int res = 0;
int prop;
const char *curr = buf;
const char *buf_end = buf+bufsize;
const char *word_begin = curr;
const char *word_end = NULL;
unichar uchr;
size_t word_length;
while (curr < buf_end)
{
word_begin = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
prop = unichar_getprops (uchr);
if (prop & UCP_ALPHA)
{
check_buf[0] = uchr;
word_length = 1;
for(;;)
{
word_end = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
if (uchr < 0)
{
if ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr))
return uchr;
if (UNICHAR_EOD == uchr)
break;
}
prop = unichar_getprops (uchr);
if (!(prop & UCP_ALPHA) && !IS_CONNECTIVE)
break;
if (WORD_MAX_CHARS > word_length)
check_buf[word_length] = uchr;
word_length++;
}
if (WORD_MAX_CHARS < word_length)
goto done_word;
if (NULL!=check && 0 == check(check_buf, word_length))
goto done_word;
res++;
done_word:
if (prop & UCP_IDEO)
goto proc_ideo;
continue;
}
if (prop & UCP_IDEO)
{
proc_ideo:
check_buf[0] = uchr;
if (NULL!=check && 0 == check(check_buf, 1))
continue;
res++;
continue;
}
if ((uchr < 0) && ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr)))
return uchr;
}
return res;
}
int elh_iterate_words__xViAny__UTF8(const char *buf, size_t bufsize, lh_word_check_t *check, lh_word_callback_t *callback, void *userdata)
{
unichar check_buf[WORD_MAX_CHARS];
int prop;
const char *curr = buf;
const char *buf_end = buf+bufsize;
const char *word_begin = curr;
const char *word_end;
unichar uchr;
size_t word_length;
while (curr < buf_end)
{
word_begin = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
prop = unichar_getprops (uchr);
if (prop & UCP_ALPHA)
{
check_buf[0] = uchr;
word_length = 1;
for(;;)
{
word_end = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
if (uchr < 0)
{
if ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr))
return uchr;
if (UNICHAR_EOD == uchr)
break;
}
prop = unichar_getprops (uchr);
if (!(prop & UCP_ALPHA) && !IS_CONNECTIVE)
break;
if (WORD_MAX_CHARS > word_length)
check_buf[word_length] = uchr;
word_length++;
}
if (WORD_MAX_CHARS < word_length)
goto done_word;
if (NULL!=check && 0 == check (check_buf, word_length))
goto done_word;
callback ((utf8char *)(word_begin), word_end-word_begin, userdata);
done_word:
if (prop & UCP_IDEO)
goto proc_ideo;
continue;
}
if (prop & UCP_IDEO)
{
proc_ideo:
check_buf[0] = uchr;
if (NULL!=check && 0 == check (check_buf, 1))
continue;
callback ((utf8char *)(word_begin), curr-word_begin, userdata);
continue;
}
if ((uchr < 0) && ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr)))
return uchr;
}
return 0;
}
int elh_iterate_patched_words__xViAny__UTF8(const char *buf, size_t bufsize, lh_word_check_t *check, lh_word_patch_t *patch, lh_word_callback_t *callback, void *userdata)
{
unichar check_buf[WORD_MAX_CHARS];
int prop;
const char *curr = buf;
const char *buf_end = buf+bufsize;
const char *word_begin = curr;
const char *word_end = NULL;
unichar uchr;
size_t word_length;
unichar patch_buf[WORD_MAX_CHARS];
const unichar *arg_begin;
size_t arg_length;
char word_buf[BUFSIZEOF__UTF8_WORD];
char *hugeword_buf = NULL;
size_t hugeword_buf_size = 0;
while (curr < buf_end)
{
word_begin = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
prop = unichar_getprops (uchr);
if (prop & UCP_ALPHA)
{
check_buf[0] = uchr;
word_length = 1;
for(;;)
{
word_end = curr;
uchr = eh_decode_char__UTF8 (&curr, buf_end);
if (uchr < 0)
{
if ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr))
return uchr;
if (UNICHAR_EOD == uchr)
break;
}
prop = unichar_getprops (uchr);
if (!(prop & UCP_ALPHA) && !IS_CONNECTIVE)
break;
if (WORD_MAX_CHARS > word_length)
check_buf[word_length] = uchr;
word_length++;
}
if (WORD_MAX_CHARS < word_length)
goto done_word;
if (NULL!=check && 0 == check (check_buf, word_length))
goto done_word;
if (NULL != patch)
{
if (0 == patch (check_buf, word_length, patch_buf, &arg_length))
goto done_word;
arg_begin = patch_buf;
}
else
{
callback ((utf8char *) word_begin, word_end-word_begin, userdata);
goto done_word;
}
word_end = eh_encode_buffer__UTF8 (arg_begin, arg_begin+arg_length, word_buf, word_buf+BUFSIZEOF__UTF8_WORD);
if (NULL != word_end)
{
callback ((utf8char *)(word_buf), word_end-word_buf, userdata);
goto done_word;
}
if (hugeword_buf_size<(word_length*MAX_UTF8_CHAR))
{
if (hugeword_buf_size)
dk_free (hugeword_buf, hugeword_buf_size);
hugeword_buf_size = word_length*MAX_UTF8_CHAR;
hugeword_buf = (char *) dk_alloc (hugeword_buf_size);
}
word_end = eh_encode_buffer__UTF8 (arg_begin, arg_begin+arg_length, hugeword_buf, hugeword_buf+hugeword_buf_size);
callback ((utf8char *)(hugeword_buf), word_end-hugeword_buf, userdata);
done_word:
if (prop & UCP_IDEO)
goto proc_ideo;
continue;
}
if (prop & UCP_IDEO)
{
proc_ideo:
check_buf[0] = uchr;
if (NULL!=check && 0 == check (check_buf, 1))
continue;
if (NULL != patch)
{
if (0 == patch (check_buf, 1, patch_buf, &arg_length))
continue;
arg_begin = patch_buf;
}
else
{
callback ((utf8char *) word_begin, curr-word_begin, userdata);
continue;
}
word_end = eh_encode_buffer__UTF8 (arg_begin, arg_begin+arg_length, word_buf, word_buf+BUFSIZEOF__UTF8_WORD);
callback ((utf8char *)(word_buf), word_end-word_buf, userdata);
continue;
}
if ((uchr < 0) && ((UNICHAR_NO_DATA == uchr) || (UNICHAR_BAD_ENCODING == uchr)))
goto cleanup; /* see below */
}
uchr = 0;
cleanup:
if (hugeword_buf_size)
dk_free (hugeword_buf, hugeword_buf_size);
return uchr;
}
encodedlang_handler_t elh__xViAny__UTF8 = {
&lh__xViAny,
&eh__UTF8,
NULL /*&elh__xftqxany__UTF8*/,
NULL,/* application-specific data */
elh_count_words__xViAny__UTF8,
elh_iterate_words__xViAny__UTF8,
elh_iterate_patched_words__xViAny__UTF8,
#ifdef HYPHENATION_OK
elh_iterate_hyppoints__xany__UTF8
#endif
};
void connect__xViAny(void *appdata)
{
lh__xViAny.lh_superlanguage = lh_get_handler("x-any");
lh__xftqxViAny.lh_superlanguage = lh__xViAny.lh_superlanguage->lh_ftq_language;
lh_load_handler(&lh__xViAny);
lh_load_handler(&lh__xftqxViAny);
elh_load_handler (&elh__xViAny__UTF8);
}
|