-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcedict_tools.py.old
584 lines (487 loc) · 18 KB
/
cedict_tools.py.old
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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
'''resources
https://en.wikibooks.org/wiki/Chinese_(Mandarin)/Table_of_Initial-Final_Combinations
'''
# OVERALL GOAL
# Wordlist to Anki deck
# Convert a wordlist (say, HSK) to a csv containing:
# simplified/traditional, accented pinyin, CEDICT definition
# (optionally name of wordlist and some kind of index)
# Secondary goals
# validate and manipulate pinyin strings between accented and unaccented
# just load the whole dictionary to memory
cedict = {}
location = ".//cedict_1_0_ts_utf-8_mdbg.txt"
with open(location, "rt") as cedict_file:
for l in cedict_file.readlines():
if l[0] == "#":
pass
else:
trad_simp, pinyin_definition = l.split("[", 1)
assert len(trad_simp.split()) == 2
trad, simp = trad_simp.split()
pinyin, definition = pinyin_definition.split("]", 1)
definition = definition[2:-2]
definition = definition.replace('|', '/')
entry = [trad, simp, pinyin, definition]
if trad not in cedict:
cedict[trad] = entry
else:
if cedict[trad][1] != simp:
cedict[trad][1] += f"; {simp}"
if pinyin not in cedict[trad][2]:
cedict[trad][2] += f"; {pinyin}"
if definition not in cedict[trad][3]:
cedict[trad][3] += f"; {definition}"
if simp not in cedict:
cedict[simp] = entry
# wordlist to bsv scratchpad - values separated by |
cases = """倒
安靜
安排
爸爸""".split()
for c in cases:
trad, simp, pinyin, definition = cedict[c]
if trad != simp:
print(f"{simp} ({trad})|{pinyin}|{definition}")
else:
print(f"{trad}|{pinyin}|{definition}")
""" # restore if accent_pinyin_syllables() fixed
if trad != simp:
print(f"{simp} ({trad})|{accent_pinyin_syllables(pinyin)}|{definition}")
else:
print(f"{trad}|{accent_pinyin_syllables(pinyin)}|{definition}")
"""
# Pinyin validation and manipulation
tests = [
# VALID
"bā", # simple accented syllable
"nǚ", # with umlaut
"fēngjì", # two accented syllables without space
"ma", # unaccented (fifth tone accented pinyin)
"bāba", # accented and unaccented compound syllables
"bā ba", # with space
"ni3", # simple numbered syllable
"feng1 li4", # two numbered syllables with space
"feng1li4", # two numbered syllables without space
"Ni3", # initial cap
"Bā", # initial cap accented
"Ma", # initial cap unaccented
"Tiān'ānmén", # with apostrophe before vowel, initial capital
"fēnglì", # two accented syllables with zero width space
"Tiān'ānmén", # zero width space then apostrophe
"āiya!", # accented compound with trailing legit punctuation
"Āiya!", # accented compound with trailing legit punctuation
"NǙ", # all caps
"shuangr", # erhua
"shuangr3", # numbered erhua and longest possible valid pinyin syllable
"shuang3 r5", # mdbg style numbered erhua
# INVALID
"fēng1", # both accented and numbered INVALID
"xmnma ", # leading junk characters
"Tiān'ānmén", # zero width space AFTER apostrophe
"hello", # english word that coincidentally starts with valid pinyin chr
"!ma", # leading junk punctuation
"ma-", # trailing junk punctuation
"ma ", # trailing space
" ma", # leading space
"mén", # leading zero width space
" ma ", # leading and trailing space
"shuang9", # bad number
"shuang0", # bad number 0
"shuangr9", # bad number erhua
"shuangr0", # bad number 0 erhua
"ma13", # additional digit unexpectedly follows legitimate pinyin number
"'ānmén", # starting with apostrophe (mostly invalid, mid-processing ok?)
"nǙ", # weird caps
]
valid_pinyin_syllables = [
"a", "ai", "an", "ang", "ao", "ba", "bai", "ban", "bang", "bao", "bei",
"ben", "beng", "bi", "bian", "biao", "bie", "bin", "bing", "bo", "bu",
"ca", "cai", "can", "cang", "cao", "ce", "cen", "ceng", "cha", "chai",
"chan", "chang", "chao", "che", "chen", "cheng", "chi", "chong", "chou",
"chu", "chua", "chuai", "chuan", "chuang", "chui", "chun", "chuo", "ci",
"cong", "cou", "cu", "cuan", "cui", "cun", "cuo", "da", "dai", "dan",
"dang", "dao", "de", "dei", "den", "deng", "di", "dia", "dian", "diao",
"die", "ding", "diu", "dong", "dou", "du", "duan", "dui", "dun", "duo",
"e", "ei", "en", "eng", "er", "fa", "fan", "fang", "fei", "fen", "feng",
"fo", "fou", "fu", "ga", "gai", "gan", "gang", "gao", "ge", "gei", "gen",
"geng", "gong", "gou", "gu", "gua", "guai", "guan", "guang", "gui", "gun",
"guo", "ha", "hai", "han", "hang", "hao", "he", "hei", "hen", "heng",
"hong", "hou", "hu", "hua", "huai", "huan", "huang", "hui", "hun", "huo",
"ji", "jia", "jian", "jiang", "jiao", "jie", "jin", "jing", "jiong", "jiu",
"ju", "juan", "jue", "jun", "ka", "kai", "kan", "kang", "kao", "ke", "ken",
"keng", "kong", "kou", "ku", "kua", "kuai", "kuan", "kuang", "kui", "kun",
"kuo", "la", "lai", "lan", "lang", "lao", "le", "lei", "leng", "li", "lia",
"lian", "liang", "liao", "lie", "lin", "ling", "liu", "lo", "long", "lou",
"lu", "luan", "lun", "luo", "lü", "lüe", "ma", "mai", "man", "mang", "mao",
"me", "mei", "men", "meng", "mi", "mian", "miao", "mie", "min", "ming",
"miu", "mo", "mou", "mu", "na", "nai", "nan", "nang", "nao", "ne", "nei",
"nen", "neng", "ni", "nian", "niang", "niao", "nie", "nin", "ning", "niu",
"nong", "nou", "nu", "nuan", "nun", "nuo", "nü", "nüe", "o", "ou", "pa",
"pai", "pan", "pang", "pao", "pei", "pen", "peng", "pi", "pian", "piao",
"pie", "pin", "ping", "po", "pou", "pu", "qi", "qia", "qian", "qiang",
"qiao", "qie", "qin", "qing", "qiong", "qiu", "qu", "quan", "que", "qun",
"ran", "rang", "rao", "re", "ren", "reng", "ri", "rong", "rou", "ru",
"ruan", "rui", "run", "ruo", "sa", "sai", "san", "sang", "sao", "se",
"sen", "seng", "sha", "shai", "shan", "shang", "shao", "she", "shen",
"sheng", "shi", "shou", "shu", "shua", "shuai", "shuan", "shuang", "shui",
"shun", "shuo", "si", "song", "sou", "su", "suan", "sui", "sun", "suo",
"ta", "tai", "tan", "tang", "tao", "te", "teng", "ti", "tian", "tiao",
"tie", "ting", "tong", "tou", "tu", "tuan", "tui", "tun", "tuo", "wa",
"wai", "wan", "wang", "wei", "wen", "weng", "wo", "wu", "xi", "xia",
"xian", "xiang", "xiao", "xie", "xin", "xing", "xiong", "xiu", "xu",
"xuan", "xue", "xun", "ya", "yan", "yang", "yao", "ye", "yi", "yin",
"ying", "yo", "yong", "you", "yu", "yuan", "yue", "yun", "za", "zai",
"zan", "zang", "zao", "ze", "zei", "zen", "zeng", "zha", "zhai", "zhan",
"zhang", "zhao", "zhe", "zhei", "zhen", "zheng", "zhi", "zhong", "zhou",
"zhu", "zhua", "zhuai", "zhuan", "zhuang", "zhui", "zhun", "zhuo", "zi",
"zong", "zou", "zu", "zuan", "zui", "zun", "zuo", "r"
]
# r not always considered valid pinyin but "r5" often used in cedict for erhua
vowels_with_tones = "āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜ"
tones_upper = "ĀÁǍÀĒÉĚÈĪÍǏÌŌÓǑÒŪÚǓÙǕǗǙǛ"
initials = [
"b", "p", "m", "f", "d", "t", "n", "l", "g", "k", "h", "j", "q", "x", "zh",
"ch", "sh", "r", "z", "c", "s", "y"
# y is not a traditional initial but helpful for text processing b/c it is
# used in place of i at the beginning of syllables
]
finals = [
# Group a Finals
"a", "o", "e", "ai", "ei", "ao", "ou", "an", "en", "ang", "eng", "er",
# Group i Finals
"i", "ia", "io", "ie", "iai", "iao", "iu", "ian", "in", "iang", "ing",
# Group u Finals
"u", "ua", "uo", "uai", "ui", "uan", "un", "uang", "ong",
# Group ü Finals
"ü", "üe", "üan", "ün", "iong", "ue"
# ue is not a traditional final but used in place of üe after j,q,x,y
]
def is_valid_numbered_pinyin_syllable(syl, allow_erhua=True):
"""
Determines if syl is a valid numbered pinyin syllable
"""
valid = False
if (syl[:-1].lower() in valid_pinyin_syllables) and (
syl[-1] in "12345"):
valid = True
if allow_erhua:
if (syl[:-2].lower() in valid_pinyin_syllables) and (
syl[-2].lower() == "r" and syl[-1] in "12345"):
valid = True
return valid
def last_vowel_idx(syl):
for idx in range(len(syl)-1, -1, -1):
if syl[idx] in "aeiouü":
return idx
return None
def is_valid_toneless_pinyin_syllable(syl, allow_erhua=True):
if allow_erhua and syl[-1] == "r":
stripped_syl = syl[:-1]
else:
stripped_syl = syl
numbered_syl = stripped_syl + "1"
return is_valid_numbered_pinyin_syllable(numbered_syl)
def is_valid_accented_pinyin_syllable(syl, allow_erhua=True):
"""
Determines whether syl is a valid accented pinyin syllable
"""
# lowercase
test_syl = syl.lower()
# remove accent
accented_letters = "āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜ"
unaccent = dict(zip(accented_letters, "aaaaeeeeiiiioooouuuuüüüü"))
tone_idx = None
accented_letter = None
for idx, l in enumerate(test_syl):
if l in accented_letters:
tone_idx = idx
accented_letter = l
break
if accented_letter is not None:
test_syl = test_syl.replace(accented_letter,
unaccent[accented_letter],
1)
# check valid syllable
letters_valid = is_valid_toneless_pinyin_syllable(test_syl, allow_erhua)
# check accent on right letter, if exists
# tone on a, e, o in ou, then final vowel
if "a" in test_syl:
proper_tone_idx = test_syl.find("a")
elif "e" in test_syl:
proper_tone_idx = test_syl.find("e")
elif "ou" in test_syl:
proper_tone_idx = test_syl.find("o")
else:
proper_tone_idx = last_vowel_idx(test_syl)
tone_valid = (tone_idx is None) or (tone_idx == proper_tone_idx)
return letters_valid and tone_valid
def is_valid_pinyin_syllable(syl):
return (is_valid_accented_pinyin_syllable(syl)
or is_valid_numbered_pinyin_syllable(syl))
def first_pinyin_syllable_length(pinyin_string):
"""
Identifies the length of the first complete pinyin syllable
Returns None if issues.
shuangr3 longest?
"""
longest_possible = min(8, len(pinyin_string))
for idx in range(longest_possible, 0, -1):
if is_valid_pinyin_syllable(pinyin_string[:idx]):
return idx
return None
test_function = first_pinyin_syllable_length
print(f"Testing {test_function.__name__}()")
for t in tests:
print(f"{t}: {test_function(t)}")
exit()
# inf if short syl
# shuangr3
"""
MODEL TO IMPLEMENT:
def strip_pinyin() # remove tone, simplify, lowercase -- implemented below?
def proper_tone_idx(syl):
test_syl = strip_pinyin(syl)
if "a" in test_syl:
proper_tone_idx = test_syl.find("a")
elif "e" in test_syl:
proper_tone_idx = test_syl.find("e")
elif "ou" in test_syl:
proper_tone_idx = test_syl.find("o")
else:
proper_tone_idx = last_vowel_idx(test_syl)
return proper_tone_idx
def number_to_accent_syl(syl):
retval = None
if is_valid_numbered_pinyin_syllable(syl):
tone = syl[-1]
proper_tone_idx(syl)
tone_letter = syl[proper_tone_idx]
def accent_to_number_syl(syl):
pass
is_valid_numbered_pinyin_string
# should we ignore whitespace, punctuation, caps?
# implement strict first
is_valid_accented_pinyin_string
is_valid_pinyin_string
split_pinyin_syllables
# split out nonpinyin letters into separate clusters?
# strip them?
# fail early
combine_pinyin_syllables
# add apostrophes appropriately
string:
numbered_to_accent
accent_to_numbered
(preserve whitespace, preserve caps, preserve punctuation,
preserve non-pinyin syllables?)
"""
exit()
""" DEPRECATED OLD VERSIONS BELOW HERE """
""" DEPRECATED OLD VERSIONS BELOW HERE """
""" DEPRECATED OLD VERSIONS BELOW HERE """
""" DEPRECATED OLD VERSIONS BELOW HERE """
"""
test_function = normalize_pinyin
for t in tests:
print(f"{t}: |{test_function(t)}|, trimmed: |"
+ f"{test_function(t, trim=True)}|")
exit()
"""
def number_pinyin(syllable):
'''Convert accented pinyin syllable to numbered pinyin.
Currently discards extra junk characters, punctuation, spaces.
TODO: Optionally keep and correctly place other characters.
'''
outstr = ""
tone = 5
for letter in syllable:
if letter.lower() in vowels_with_tones:
vowels_index = vowels_with_tones.find(letter.lower())
new_vowel = "aeiouü"[vowels_index // 4]
outstr += new_vowel
tone = vowels_index % 4 + 1
else:
outstr += letter
outstr = normalize_pinyin(outstr)
assert is_valid_pinyin_syllable(outstr), (
f"""outstr "{outstr}" not valid pinyin""")
outstr += str(tone)
return outstr
"""
test_function = number_pinyin
for t in tests:
if is_valid_pinyin_syllable(t):
print(f"{t}: {test_function(t)}")
exit()
"""
def is_valid_numbered_pinyin(syllable, strict=False):
valid = is_valid_pinyin_syllable(syllable, normalize=False)
if strict:
valid = valid and syllable[-1] in "12345"
return valid
"""
test_function = is_valid_numbered_pinyin
for t in tests:
print(f"{t}: {test_function(t)}, strict:" +
f"{test_function(t, strict=True)}")
exit()
"""
def accent_pinyin_syllable(syllable):
'''Converts numbered pinyin syllable to accented
e.g., 'xia3' to 'xiǎ'
Rules:
1. accent a or e
2. accent o in ou
3. in all other cases, accent the final vowel'''
vowels_with_tones = "āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜ"
syllable = syllable.lower().strip()
if syllable[-1] in "1234":
tone = int(syllable[-1])
elif syllable[-1] in "05":
tone = 5
syllable = syllable[:-1]
else:
# unaccented syllable
tone = 5
if "a" in syllable:
index = syllable.find("a")
elif "e" in syllable:
index = syllable.find("e")
elif "ou" in syllable:
index = syllable.find("ou")
elif syllable[-2] in "nr":
index = len(syllable) - 3
elif syllable[-2] == "g":
index = len(syllable) - 4
else:
index = len(syllable) - 2
if str(tone) in "1234":
tone_index = "aeiouü".find(syllable[index]) * 4 + tone - 1
new_vowel = vowels_with_tones[tone_index]
syllable = syllable[:index] + new_vowel + syllable[index+1:-1]
return syllable
"""
test_function = accent_pinyin_syllable
for t in tests:
if is_valid_numbered_pinyin(t):
print(f"{t}: |{test_function(t)}|")
exit()
"""
def initial_pinyin_syllable(syllables_string):
"""Returns longest valid pinyin syllable from beginning of string"""
final_idx = None
for idx in range(7, 0, -1):
test_str = normalize_pinyin(syllables_string[:idx])
if test_str in valid_pinyin_syllables:
final_idx = idx
break
syllable = None
if final_idx:
syllable = syllables_string[:final_idx]
if len(syllables_string) > final_idx:
if syllables_string[final_idx] == "r":
syllable += "r"
final_idx += 1
if len(syllables_string) > final_idx:
if syllables_string[final_idx] in "012345":
final_idx += 1
syllable = syllables_string[:final_idx]
return syllable
"""
test_function = initial_pinyin_syllable
for t in tests:
print(f"{t}: |{test_function(t)}|")
exit()
"""
def find_pinyin_syllable(syllables_string):
"""Aggressively drops initial characters until it finds valid pinyin
"""
first = None
for idx in range(len(syllables_string)):
tmp = initial_pinyin_syllable(syllables_string[idx:])
if tmp:
first = tmp
break
return first
"""
test_function = find_pinyin_syllable
for t in tests:
print(f"{t}: |{test_function(t)}|")
exit()
"""
def first_valid_pinyin_index(syllables_string):
"""Aggressively drops initial characters until it finds valid pinyin
"""
first = None
start_idx = None
for idx in range(len(syllables_string)):
tmp = initial_pinyin_syllable(syllables_string[idx:])
if tmp:
first = tmp
start_idx = idx
break
if first:
final_idx = start_idx + len(first)
if len(syllables_string) > final_idx:
if syllables_string[final_idx] == "r":
final_idx += 1
if len(syllables_string) > final_idx:
if syllables_string[final_idx] in "012345":
final_idx += 1
return [start_idx, final_idx]
else:
return None
"""
test_function = first_valid_pinyin_index
for t in tests:
print(f"{t}: |{test_function(t)}|")
exit()
"""
def split_pinyin_syllables(syllables):
"""
Split string into list of substrings that are valid pinyin or not
TODO: Currently hopelessly broken
"""
idxs = first_valid_pinyin_index(syllables)
while idxs[-1] < len(syllables):
print(syllables[idxs[-1]])
input()
tmp_idxs = first_valid_pinyin_index(syllables[idxs[-1]])
if tmp_idxs:
idxs.extend([_ + idxs[-1] for _ in tmp_idxs])
else:
idxs.append(len(syllables))
return idxs
"""
tests = [
"Tiān'ānmén",
"Tiān'ānmén",
"'ānmén",
"'ānmén",
"ānmén",
"ānmén"
]
test_function = split_pinyin_syllables
for t in tests:
print(f"{t}: |{test_function(t)}|")
exit()
def accent_pinyin_syllables(syllables):
outstr = ""
for s in split_pinyin_syllables(syllables):
if is_valid_pinyin(s):
outstr += accent_pinyin_syllable(s)
elif s in ",; ":
outstr += s
else:
print(syllables)
print(split_pinyin_syllables(syllables))
print(f"{s} is not valid pinyin, cannot accent it")
assert False
outstr.strip()
return outstr
test_function = accent_pinyin_syllables
for t in tests:
print(f"{t}: |{test_function(t)}|")
exit()
"""