forked from hime-ime/hime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hime-tsa2d32.cpp
568 lines (461 loc) · 11.6 KB
/
hime-tsa2d32.cpp
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/* Copyright (C) 1995-2011 Edward Der-Hua Liu, Hsin-Chu, Taiwan
*
* 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <sys/types.h>
#include <string.h>
#include "hime.h"
#include "pho.h"
#include "tsin.h"
#include "gtab.h"
#include "gst.h"
void load_pin_juyin();
phokey_t pinyin2phokey(char *s);
static char *bf;
//static int bfN_a = 0;
static gboolean b_pinyin;
int *phidx, *sidx, phcount;
int bfsize, phidxsize;
u_char *sf;
gboolean is_gtab, gtabkey64;
int phsz, hash_shift;
int (*key_cmp)(char *a, char *b, char len);
int key_cmp16(char *a, char *b, char len)
{
u_char i;
for(i=0; i < len; i++) {
phokey_t ka,kb;
memcpy(&ka, a, 2);
memcpy(&kb, b, 2);
if (ka > kb) return 1;
if (kb > ka) return -1;
a+=2;
b+=2;
}
return 0;
}
int key_cmp32(char *a, char *b, char len)
{
u_char i;
for(i=0; i < len; i++) {
u_int ka,kb;
memcpy(&ka, a, 4);
memcpy(&kb, b, 4);
if (ka > kb) return 1;
if (kb > ka) return -1;
a+=4;
b+=4;
}
return 0;
}
int key_cmp64(char *a, char *b, char len)
{
u_char i;
for(i=0; i < len; i++) {
u_int64_t ka,kb;
memcpy(&ka, a, 8);
memcpy(&kb, b, 8);
if (ka > kb) return 1;
if (kb > ka) return -1;
a+=8;
b+=8;
}
return 0;
}
static int qcmp(const void *a, const void *b)
{
int idxa=*((int *)a); char *pa = (char *)&bf[idxa];
int idxb=*((int *)b); char *pb = (char *)&bf[idxb];
u_char lena,lenb, len;
usecount_t usecounta, usecountb;
lena=*(pa++); memcpy(&usecounta, pa, sizeof(usecount_t)); pa+= sizeof(usecount_t);
char *ka = pa;
pa += lena * phsz;
lenb=*(pb++); memcpy(&usecountb, pb, sizeof(usecount_t)); pb+= sizeof(usecount_t);
char *kb = pb;
pb += lenb * phsz;
len=Min(lena,lenb);
int d = (*key_cmp)(ka, kb, len);
if (d)
return d;
if (lena > lenb)
return 1;
if (lena < lenb)
return -1;
int tlena = utf8_tlen(pa, lena);
int tlenb = utf8_tlen(pb, lenb);
if (tlena > tlenb)
return 1;
if (tlena < tlenb)
return -1;
if ((d=memcmp(pa, pb, tlena)))
return d;
// large first, so large one will be kept after delete
return usecountb - usecounta;
}
static int qcmp_eq(const void *a, const void *b)
{
int idxa=*((int *)a); char *pa = (char *)&bf[idxa];
int idxb=*((int *)b); char *pb = (char *)&bf[idxb];
u_char lena,lenb, len;
lena=*(pa++); pa+= sizeof(usecount_t);
char *ka = pa;
pa += lena * phsz;
lenb=*(pb++); pb+= sizeof(usecount_t);
char *kb = pb;
pb += lenb * phsz;
len=Min(lena,lenb);
int d = (*key_cmp)(ka, kb, len);
if (d)
return d;
if (lena > lenb)
return 1;
if (lena < lenb)
return -1;
int tlena = utf8_tlen(pa, lena);
int tlenb = utf8_tlen(pb, lenb);
if (tlena > tlenb)
return 1;
if (tlena < tlenb)
return -1;
return memcmp(pa, pb, tlena);
}
static int qcmp_usecount(const void *a, const void *b)
{
int idxa=*((int *)a); char *pa = (char *)&sf[idxa];
int idxb=*((int *)b); char *pb = (char *)&sf[idxb];
u_char lena,lenb, len;
usecount_t usecounta, usecountb;
lena=*(pa++); memcpy(&usecounta, pa, sizeof(usecount_t)); pa+= sizeof(usecount_t);
lenb=*(pb++); memcpy(&usecountb, pb, sizeof(usecount_t)); pb+= sizeof(usecount_t);
len=Min(lena,lenb);
int d = (*key_cmp)(pa, pb, len);
if (d)
return d;
pa += len*phsz;
pb += len*phsz;
if (lena > lenb)
return 1;
if (lena < lenb)
return -1;
// now lena == lenb
int tlena = utf8_tlen(pa, lena);
int tlenb = utf8_tlen(pb, lenb);
if (tlena > tlenb)
return 1;
if (tlena < tlenb)
return -1;
return usecountb - usecounta;
}
void send_hime_message(Display *dpy, char *s);
#if WIN32 && 1
#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
#endif
void init_TableDir();
int main(int argc, char **argv)
{
FILE *fp,*fw;
char s[1024];
u_char chbuf[MAX_PHRASE_LEN * CH_SZ];
u_short phbuf[80];
u_int phbuf32[80];
u_int64_t phbuf64[80];
int i,j,idx,len, ofs;
u_short kk;
u_int64_t kk64;
int hashidx[TSIN_HASH_N];
u_char clen;
int lineCnt=0;
gboolean reload = getenv("HIME_NO_RELOAD")==NULL;
if (reload) {
dbg("need reload\n");
} else {
dbg("NO_GTK_INIT\n");
}
if (getenv("NO_GTK_INIT")==NULL)
gtk_init(&argc, &argv);
dbg("enter %s\n", argv[0]);
if (argc < 2)
p_err("must specify input file");
init_TableDir();
if ((fp=fopen(argv[1], "rb"))==NULL) {
printf("Cannot open %s\n", argv[1]);
exit(-1);
}
skip_utf8_sigature(fp);
char *outfile;
int fofs = ftell(fp);
myfgets(s, sizeof(s), fp);
if (strstr(s, "!!pinyin")) {
b_pinyin = TRUE;
printf("is pinyin\n");
load_pin_juyin();
} else
fseek(fp, fofs, SEEK_SET);
fofs = ftell(fp);
int keybits=0, maxkey=0;
char keymap[128];
char kno[128];
bzero(kno, sizeof(kno));
myfgets(s, sizeof(s), fp);
puts(s);
if (strstr(s, TSIN_GTAB_KEY)) {
is_gtab = TRUE;
lineCnt++;
if (argc < 3)
p_err("useage %s input_file output_file", argv[0]);
outfile = argv[2];
len=strlen((char *)s);
if (s[len-1]=='\n')
s[--len]=0;
char aa[128];
keymap[0]=' ';
sscanf(s, "%s %d %d %s", aa, &keybits, &maxkey, keymap+1);
for(i=0; keymap[i]; i++)
kno[keymap[i]]=i;
if (maxkey * keybits > 32)
gtabkey64 = TRUE;
} else {
if (argc==3)
outfile = argv[2];
else
outfile = "tsin32";
fseek(fp, fofs, SEEK_SET);
}
INMD inmd, *cur_inmd = &inmd;
char *cphbuf;
if (is_gtab) {
cur_inmd->keybits = keybits;
if (gtabkey64) {
cphbuf = (char *)phbuf64;
phsz = 8;
key_cmp = key_cmp64;
hash_shift = TSIN_HASH_SHIFT_64;
cur_inmd->key64 = TRUE;
} else {
cphbuf = (char *)phbuf32;
phsz = 4;
hash_shift = TSIN_HASH_SHIFT_32;
key_cmp = key_cmp32;
cur_inmd->key64 = FALSE;
}
cur_inmd->last_k_bitn = (((cur_inmd->key64 ? 64:32) / cur_inmd->keybits) - 1) * cur_inmd->keybits;
dbg("cur_inmd->last_k_bitn %d\n", cur_inmd->last_k_bitn);
} else {
cphbuf = (char *)phbuf;
phsz = 2;
key_cmp = key_cmp16;
hash_shift = TSIN_HASH_SHIFT;
}
dbg("phsz: %d\n", phsz);
phcount=ofs=0;
while (!feof(fp)) {
usecount_t usecount=0;
lineCnt++;
myfgets((char *)s,sizeof(s),fp);
len=strlen((char *)s);
if (s[0]=='#')
continue;
if (strstr(s, TSIN_GTAB_KEY))
continue;
if (s[len-1]=='\n')
s[--len]=0;
if (len==0)
continue;
i=0;
int chbufN=0;
int charN = 0;
while (s[i]!=' ' && i<len) {
int len = utf8_sz((char *)&s[i]);
memcpy(&chbuf[chbufN], &s[i], len);
i+=len;
chbufN+=len;
charN++;
}
while (i < len && s[i]==' ' || s[i]=='\t')
i++;
int phbufN=0;
while (i<len && phbufN < charN && s[i]!=' ') {
if (is_gtab) {
kk64=0;
int idx=0;
while (s[i]!=' ' && i<len) {
int k = kno[s[i]];
kk64|=(u_int64_t)k << ( LAST_K_bitN - idx*keybits);
i++;
idx++;
}
if (phsz==8)
phbuf64[phbufN++]=kk64;
else
phbuf32[phbufN++]=(u_int)kk64;
} else {
kk=0;
if (b_pinyin) {
kk = pinyin2phokey(s+i);
while (s[i]!=' ' && i<len)
i++;
} else {
while (s[i]!=' ' && i<len) {
if (kk==(BACK_QUOTE_NO << 9))
kk|=s[i];
else
kk |= lookup((u_char *)&s[i]);
i+=utf8_sz((char *)&s[i]);
}
}
phbuf[phbufN++]=kk;
}
i++;
}
if (phbufN!=charN) {
p_err("%s Line %d problem in phbufN!=chbufN %d != %d\n", s, lineCnt, phbufN, chbufN);
}
clen=phbufN;
while (i<len && s[i]==' ')
i++;
if (i==len)
usecount = 0;
else
usecount = atoi((char *)&s[i]);
/* printf("len:%d\n", clen); */
if (phcount >= phidxsize) {
phidxsize+=1024;
if (!(phidx=(int *)realloc(phidx,phidxsize*4))) {
puts("realloc err");
exit(1);
}
}
phidx[phcount++]=ofs;
int new_bfN = ofs + 1 + sizeof(usecount_t)+ phsz * clen + chbufN;
if (bfsize < new_bfN) {
bfsize = new_bfN + 1024*1024;
bf = (char *)realloc(bf, bfsize);
}
memcpy(&bf[ofs++],&clen,1);
memcpy(&bf[ofs],&usecount, sizeof(usecount_t)); ofs+=sizeof(usecount_t);
memcpy(&bf[ofs], cphbuf, clen * phsz);
ofs+=clen * phsz;
memcpy(&bf[ofs], chbuf, chbufN);
ofs+=chbufN;
}
fclose(fp);
/* dumpbf(bf,phidx); */
puts("Sorting ....");
qsort(phidx,phcount, sizeof(phidx[0]),qcmp);
if (!(sf=(u_char *)malloc(bfsize))) {
puts("malloc err");
exit(1);
}
if (!(sidx=(int *)malloc(phidxsize*sizeof(int)))) {
puts("malloc err");
exit(1);
}
// delete duplicate
ofs=0;
j=0;
for(i=0;i<phcount;i++) {
idx = phidx[i];
sidx[j]=ofs;
len=bf[idx];
int tlen = utf8_tlen(&bf[idx + 1 + sizeof(usecount_t) + phsz*len], len);
clen= phsz*len + tlen + 1 + sizeof(usecount_t);
if (i && !qcmp_eq(&phidx[i-1], &phidx[i]))
continue;
memcpy(&sf[ofs], &bf[idx], clen);
j++;
ofs+=clen;
}
phcount=j;
#if 1
puts("Sorting by usecount ....");
qsort(sidx, phcount, 4, qcmp_usecount);
#endif
for(i=0;i<256;i++)
hashidx[i]=-1;
for(i=0;i<phcount;i++) {
idx=sidx[i];
idx+= 1 + sizeof(usecount_t);
int v;
if (phsz==2) {
phokey_t kk;
memcpy(&kk, &sf[idx], phsz);
v = kk >> TSIN_HASH_SHIFT;
} else if (phsz==4) {
u_int kk32;
memcpy(&kk32, &sf[idx], phsz);
v = kk32 >> TSIN_HASH_SHIFT_32;
}
else if (phsz==8) {
u_int64_t kk64;
memcpy(&kk64, &sf[idx], phsz);
v = kk64 >> TSIN_HASH_SHIFT_64;
}
if (v >= TSIN_HASH_N)
p_err("error found %d", v);
if (hashidx[v] < 0) {
hashidx[v]=i;
}
}
if (hashidx[0]==-1)
hashidx[0]=0;
hashidx[TSIN_HASH_N-1]=phcount;
for(i=TSIN_HASH_N-2;i>=0;i--) {
if (hashidx[i]==-1)
hashidx[i]=hashidx[i+1];
}
for(i=1; i< TSIN_HASH_N; i++) {
if (hashidx[i]==-1)
hashidx[i]=hashidx[i-1];
}
printf("Writing data %s %d\n", outfile, ofs);
if ((fw=fopen(outfile,"wb"))==NULL) {
p_err("create err %s", outfile);
}
if (is_gtab) {
TSIN_GTAB_HEAD head;
bzero(&head, sizeof(head));
strcpy(head.signature, TSIN_GTAB_KEY);
head.keybits = keybits;
head.maxkey = maxkey;
strcpy(head.keymap, keymap);
fwrite(&head, sizeof(head), 1, fw);
}
fwrite(sf,1,ofs,fw);
fclose(fw);
char outfileidx[512];
strcat(strcpy(outfileidx, outfile), ".idx");
dbg("Writing data %s\n", outfileidx);
if ((fw=fopen(outfileidx,"wb"))==NULL) {
p_err("cannot create %s", outfileidx);
}
fwrite(&phcount,4,1,fw);
fwrite(hashidx,1,sizeof(hashidx),fw);
fwrite(sidx,4,phcount,fw);
printf("%d phrases\n",phcount);
fclose(fw);
free(sf);
free(bf);
if (reload) {
printf("reload....\n");
send_hime_message(
#if UNIX
GDK_DISPLAY(),
#endif
RELOAD_TSIN_DB);
}
exit(0);
}