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
|
#include <string.h>
#include "gcin.h"
#include "pho.h"
#include "tsin.h"
#include "gcin-conf.h"
#include <math.h>
#include "tsin-parse.h"
#include "gtab-buf.h"
#include "gst.h"
#define DBG (0)
extern gboolean tsin_is_gtab;
extern int ph_key_sz;
void add_cache(int start, int usecount, TSIN_PARSE *out, short match_phr_N, short no_match_ch_N, int tc_len);
void extract_gtab_key(gboolean is_en, int start, int len, void *out);
gboolean check_gtab_fixed_mismatch(int idx, char *mtch, int plen);
void mask_tone(phokey_t *pho, int plen, char *tone_mask);
static int tsin_parse_len;
void set_tsin_parse_len(int len)
{
tsin_parse_len = len;
}
static char *c_pinyin_set;
int tsin_parse_recur(int start, TSIN_PARSE *out,
short *r_match_phr_N, short *r_no_match_ch_N)
{
int plen;
double bestscore = -1;
int bestusecount = 0;
*r_match_phr_N = 0;
*r_no_match_ch_N = tsin_parse_len - start;
for(plen=1; start + plen <= tsin_parse_len && plen <= MAX_PHRASE_LEN; plen++) {
#if DBG
dbg("---- aa st:%d hh plen:%d ", start, plen);utf8_putchar(tss.chpho[start].ch); dbg("\n");
#endif
if (plen > 1) {
if (tsin_hand.tsin_is_gtab) {
if (gbuf[start+plen-1].flag & FLAG_CHPHO_PHRASE_USER_HEAD)
break;
} else
if (tss.chpho[start+plen-1].flag & FLAG_CHPHO_PHRASE_USER_HEAD)
break;
}
phokey_t pp[MAX_PHRASE_LEN + 1];
u_int pp32[MAX_PHRASE_LEN + 1];
u_int64_t pp64[MAX_PHRASE_LEN + 1];
int sti, edi;
TSIN_PARSE pbest[MAX_PH_BF_EXT+1];
#define MAXV 1000
int maxusecount = 5-MAXV;
int remlen;
short match_phr_N=0, no_match_ch_N = plen;
void *ppp;
if (tsin_hand.ph_key_sz==2)
ppp=pp;
else if (tsin_hand.ph_key_sz==4)
ppp=pp32;
else
ppp=pp64;
bzero(pbest, sizeof(TSIN_PARSE) * tsin_parse_len);
pbest[0].len = plen;
pbest[0].start = start;
int i, ofs;
if (tsin_hand.tsin_is_gtab)
for(ofs=i=0; i < plen; i++)
ofs += utf8cpy((char *)pbest[0].str + ofs, gbuf[start + i].ch);
else
for(ofs=i=0; i < plen; i++)
ofs += utf8cpy((char *)pbest[0].str + ofs, tss.chpho[start + i].ch);
#if DBG
dbg("st:%d hh plen:%d ", start, plen);utf8_putchar(tss.chpho[start].ch); dbg("\n");
#endif
if (tsin_hand.tsin_is_gtab)
extract_gtab_key(FALSE, start, plen, ppp);
else {
extract_pho(FALSE, start, plen, (phokey_t *)ppp);
if (c_pinyin_set)
mask_tone(pp, plen, c_pinyin_set + start);
}
#if DBG
for(i=0; i < plen; i++) {
prph(pp[i]); dbg("%d", c_pinyin_set[i+start]);
}
dbg("\n");
#endif
char *pinyin_set = c_pinyin_set ? c_pinyin_set+start:NULL;
if (!tsin_seek(ppp, plen, &sti, &edi, pinyin_set)) {
// dbg("tsin_seek not found...\n");
if (plen > 1)
break;
goto next;
}
phokey_t mtk[MAX_PHRASE_LEN];
u_int mtk32[MAX_PHRASE_LEN];
u_int64_t mtk64[MAX_PHRASE_LEN];
void *pho;
if (tsin_hand.ph_key_sz==2)
pho=mtk;
else if (tsin_hand.ph_key_sz==4)
pho=mtk32;
else
pho=mtk64;
for (;sti < edi; sti++) {
char mtch[MAX_PHRASE_LEN*CH_SZ+1];
char match_len;
usecount_t usecount;
load_tsin_entry(sti, &match_len, &usecount, pho, (u_char *)mtch);
if (match_len < plen)
continue;
if (tsin_hand.tsin_is_gtab) {
if (check_gtab_fixed_mismatch(start, mtch, plen))
continue;
} else
if (check_fixed_mismatch(start, mtch, plen))
continue;
if (usecount < 0)
usecount = 0;
int i;
if (tsin_hand.ph_key_sz==2) {
if (c_pinyin_set) {
// mask_tone(pp, plen, c_pinyin_set + start);
mask_tone(mtk, plen, c_pinyin_set + start);
}
for(i=0;i < plen;i++)
if (mtk[i]!=pp[i])
break;
} else if (tsin_hand.ph_key_sz==4) {
for(i=0;i < plen;i++)
if (mtk32[i]!=pp32[i])
break;
} else {
for(i=0;i < plen;i++)
if (mtk64[i]!=pp64[i])
break;
}
if (i < plen)
continue;
if (match_len > plen) {
continue;
}
if (usecount <= maxusecount)
continue;
pbest[0].len = plen;
maxusecount = usecount;
utf8cpyN((char *)pbest[0].str, mtch, plen);
pbest[0].flag |= FLAG_TSIN_PARSE_PHRASE;
match_phr_N = 1;
no_match_ch_N = 0;
#if DBG
utf8_putcharn(mtch, plen);
dbg(" plen %d usecount:%d ", plen, usecount);
utf8_putcharn(mtch, plen);
dbg("\n");
#endif
}
next:
#if 0
if (!match_phr_N) {
if (tsin_is_gtab) {
if (!(gbuf[start].ch[0] & 0x80))
no_match_ch_N = 0;
} else
if (!(tss.chpho[start].ch[0] & 0x80))
no_match_ch_N = 0;
}
#else
// dbg("no_match_ch_N %d\n", no_match_ch_N);
#endif
remlen = tsin_parse_len - (start + plen);
if (remlen) {
int next = start + plen;
CACHE *pca;
short smatch_phr_N, sno_match_ch_N;
int uc;
if (pca = cache_lookup(next)) {
uc = pca->usecount;
smatch_phr_N = pca->match_phr_N;
sno_match_ch_N = pca->no_match_ch_N;
memcpy(&pbest[1], pca->best, (tsin_parse_len - next) * sizeof(TSIN_PARSE));
} else {
uc = tsin_parse_recur(next, &pbest[1], &smatch_phr_N, &sno_match_ch_N);
// dbg(" gg %d\n", smatch_phr_N);
add_cache(next, uc, &pbest[1], smatch_phr_N, sno_match_ch_N, tsin_parse_len);
}
match_phr_N += smatch_phr_N;
no_match_ch_N += sno_match_ch_N;
maxusecount += uc;
}
double score = log((double)maxusecount + MAXV) /
(pow((double)match_phr_N, 10)+ 1.0E-6) / (pow((double)no_match_ch_N, 20) + 1.0E-6);
#if DBG
dbg("st:%d plen:%d zz muse:%d ma:%d noma:%d score:%.4e %.4e\n", start, plen,
maxusecount, match_phr_N, no_match_ch_N, score, bestscore);
#endif
if (score > bestscore) {
#if DBG
dbg("is best org %.4e\n", bestscore);
#endif
bestscore = score;
memcpy(out, pbest, sizeof(TSIN_PARSE) * (tsin_parse_len - start));
#if DBG
dbg(" str:%d ", start);
int i;
for(i=0; i < tsin_parse_len - start; i++) {
utf8_putcharn((char *)out[i].str, out[i].len);
}
dbg("\n");
#endif
bestusecount = maxusecount;
*r_match_phr_N = match_phr_N;
*r_no_match_ch_N = no_match_ch_N;
}
}
if (bestusecount < 0)
bestusecount = 0;
return bestusecount;
}
void disp_ph_sta_idx(int idx);
void free_cache(), load_tsin_db();
void tsin_parse()
{
TSIN_PARSE out[MAX_PH_BF_EXT+1];
bzero(out, sizeof(out));
int i, ofsi;
if (tss.c_len <= 1)
return;
load_tsin_db();
set_tsin_parse_len(tss.c_len);
init_cache(tss.c_len);
char pinyin_set[MAX_PH_BF_EXT];
c_pinyin_set = pin_juyin?pinyin_set:NULL;
get_chpho_pinyin_set(pinyin_set);
short smatch_phr_N, sno_match_ch_N;
tsin_parse_recur(0, out, &smatch_phr_N, &sno_match_ch_N);
#if 0
puts("vvvvvvvvvvvvvvvv");
for(i=0; i < tss.c_len; i++) {
printf("%d:", out[i].len);
utf8_putcharn(out[i].str, out[i].len);
}
dbg("\n");
#endif
for(i=0; i < tss.c_len; i++)
tss.chpho[i].flag &= ~(FLAG_CHPHO_PHRASE_HEAD|FLAG_CHPHO_PHRASE_BODY);
for(ofsi=i=0; out[i].len; i++) {
int j, ofsj;
int psta = ofsi;
if (out[i].flag & FLAG_TSIN_PARSE_PHRASE)
tss.chpho[ofsi].flag |= FLAG_CHPHO_PHRASE_HEAD;
for(ofsj=j=0; j < out[i].len; j++) {
ofsj += utf8cpy(tss.chpho[ofsi].cha, (char *)&out[i].str[ofsj]);
// tss.chpho[ofsi].ch = tss.chpho[ofsi].cha;
tss.chpho[ofsi].flag |= FLAG_CHPHO_PHRASE_BODY;
if (out[i].flag & FLAG_TSIN_PARSE_PHRASE)
tss.chpho[ofsi].psta = psta;
ofsi++;
}
}
int ph_sta_idx = tss.ph_sta;
if (tss.chpho[tss.c_len-1].psta>=0 && tss.c_len - tss.chpho[tss.c_len-1].psta > 1) {
ph_sta_idx = tss.chpho[tss.c_len-1].psta;
}
#if 1
disp_ph_sta_idx(ph_sta_idx);
#endif
#if 0
for(i=0;i<tss.c_len;i++)
utf8_putchar(tss.chpho[i].ch);
puts("");
#endif
free_cache();
}
|