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
|
import Database from "bun:sqlite";
import {
analyzeTHWord,
deconstructSyllable,
segmentateThai,
type SorSyl,
type ThaiNLPRes,
sorSyl,
getThaiFreq,
} from "../calls/nlp";
import pdb from "./prosodydb";
import { cleanIpa } from "../utils";
import { handleFile } from "./utils";
import { Phoneme, Tone } from "../types/phonetics";
import { AsyncRes } from "../types";
async function readDump(lang: string) {
await pdb.init();
pdb.addLanguage("th", "thai");
let count = 0;
const langdb = new Database(
`/home/y/code/prosody/resources/wiktionary/${lang}.db`,
);
let langrows: any = langdb.query("SELECT data FROM langs");
// langrows = langrows.slice(10);
for (const langrow of langrows) {
count++;
console.log(count);
// if (count <= 10000) continue;
// if (count > 100) break;
const j = JSON.parse(langrow.data);
const word = j.word.trim();
if (!word) continue;
if (word.includes("ๆ")) {
const res = await handleWord(word, j);
if ("error" in res) {
if (res.error.includes("meh")) continue;
if (res.error.includes("wtf")) {
console.error(res.error);
console.error(j.sounds);
}
break;
}
} else {
const split = word.split(" ");
if (split.length > 1) {
const res = await handleIdiom(word);
if ("error" in res) {
console.error(res.error);
break;
}
} else {
const res = await handleWord(word, j);
if ("error" in res) {
if (res.error.includes("meh")) continue;
if (res.error.includes("wtf")) {
console.error(res.error);
console.error(j.sounds);
}
// break;
}
}
}
}
}
async function handleWord(word: string, j: any): AsyncRes<string> {
// TODO add categories but add a tag to see what classifying scheme we're using
//
const frequency = await getThaiFreq(word);
const analyzed = await analyzeTHWord(word);
const phonetics = await Promise.all(getIpa(j, analyzed));
pdb.superAdd({ word, lang: "th", frequency, wordNotes: null, phonetics });
return { ok: "" };
}
function getIpa(j: any, analyzed: ThaiNLPRes) {
const sounds = j.sounds || [];
const hasIpa = sounds.find((s: any) => "ipa" in s);
if (!hasIpa) return [];
const ipaData: Promise<IPAData>[] = sounds.reduce(
async (acc: Promise<IPAData>[], snd: any) => {
if ("ipa" in snd) {
const data = getIpaData(snd, analyzed);
return [...acc, data];
} else return acc;
},
[],
);
return ipaData;
}
type IPAData = {
ipa: string;
syllable_count: number;
syllable_sequence: string;
tone_sequence: string;
ipa_sequence: string;
tags: string | null;
notes: string | null;
wordRhyme: string | null;
syllables: SylData[];
};
async function getIpaData(snd: any, analyzed: ThaiNLPRes): Promise<IPAData> {
const tags = JSON.stringify(snd.tags) || null;
// console.log("handleipa", analyzed.syllables.length);
// console.log(analyzed);
const wikiIpa = cleanIpa(snd.ipa);
const nlpIpa = cleanIpa(analyzed.ipa);
const ipa = wikiIpa || nlpIpa;
// if (j.word === "และ") {
// console.log("wtf!!");
// return { error: "wtf is this" };
// }
const wikiIpaSplit = wikiIpa.split(".");
const nlpIpaSplit = nlpIpa.split(".");
if (wikiIpaSplit.length !== nlpIpaSplit.length) {
console.log("ipa mismatch");
console.log(wikiIpa);
console.log(nlpIpa);
}
if (analyzed.realSyls.length !== wikiIpaSplit.length) {
console.log("syllable analysis mismatch", analyzed.word);
console.log({ syls: analyzed.syllables, ipa: wikiIpaSplit });
throw new Error("syllable mismatch");
}
const writtenSyls = analyzed.syllables;
const pronouncedSyls = analyzed.realSyls.map((s) =>
s.replace(/\u{E3A}/u, ""),
);
const tone_sequence = wikiIpaSplit
.map((s) => parseTone(s, analyzed.word))
.map((t) => t.name)
.join(",");
const syllable_sequence = pronouncedSyls.join(",");
const ipa_sequence = wikiIpaSplit.join(",");
const syllables = await Promise.all(
getSyllables(writtenSyls, pronouncedSyls, wikiIpaSplit),
);
return {
ipa,
syllable_count: pronouncedSyls.length,
syllable_sequence,
tone_sequence,
ipa_sequence,
tags,
notes: null,
wordRhyme: null,
syllables,
};
}
function getSyllables(
writtenSyls: string[],
pronouncedSyls: string[],
ipaSyls: string[],
) {
let badSyls = false;
if (writtenSyls.length !== pronouncedSyls.length) badSyls = true;
let syls: Promise<SylData>[] = [];
for (let i = 0; i < pronouncedSyls.length; i++) {
const pronounced = pronouncedSyls[i]!;
const written = writtenSyls[i] || "";
const syllable = badSyls ? pronounced : written;
const ipa = ipaSyls[i]!;
// TODO insert both??
const notes = pronounced === written ? null : `Pronounced ${pronounced}`;
if (pronounced !== syllable) {
console.log("diff");
console.log(pronounced);
console.log(written);
}
const res = getSyllable(syllable, ipa, i, notes);
syls.push(res);
}
return syls;
}
const thaiTones: Record<string, string> = {
"˧": "mid",
"˨˩": "low",
"˥˩": "falling",
"˦˥": "high",
"˩˩˦": "rising",
};
const thaiToneNums: Record<string, number> = {
"˧": 33,
"˨˩": 21,
"˥˩": 41,
"˦˥": 45,
"˩˩˦": 214,
};
const toneRegex = new RegExp(Object.keys(thaiToneNums).join("|"));
function parseTone(ipa: string, spelling: string): Tone {
try {
const match = ipa.match(toneRegex)!;
const m = match[0]!;
const name = thaiTones[m]!;
const numbers = thaiToneNums[m]!;
return { letters: ipa, name, numbers };
} catch (e) {
console.error("meh wrong tones!!", { s: spelling, ipa });
throw new Error("");
}
}
function parseToneS(ipa: string, spelling: string): Tone {
try {
const name = thaiTones[ipa]!;
const numbers = thaiToneNums[ipa]!;
return { letters: ipa, name, numbers };
} catch (e) {
console.error("meh wrong tones!!", { s: spelling, ipa });
throw new Error("");
}
}
type SylData = {
idx: number;
stressed: boolean | null;
spelling: string;
ipa: string;
long: boolean;
onset: Phoneme;
medial: Phoneme;
nucleus: Phoneme;
coda: Phoneme;
rhyme: Phoneme;
tone: Tone;
notes: string | null;
};
async function getSyllable(
spelling: string,
ipa: string,
idx: number,
notes: string | null,
): Promise<SylData> {
const sorsyl = await sorSyl(spelling, "th", ipa);
if (sorsyl.syls.length !== 1) throw new Error("wtf sorsyl!");
const syl = sorsyl.syls[0]!.ipa;
const tone = parseToneS(syl.tone, spelling);
return {
idx: idx + 1,
stressed: null,
spelling,
ipa: syl.all,
long: syl.long,
onset: { spelling: syl.onset, ipa: syl.onset },
medial: { spelling: syl.medial, ipa: syl.medial },
nucleus: { spelling: syl.nucleus, ipa: syl.nucleus },
coda: { spelling: syl.coda, ipa: syl.coda },
rhyme: { spelling: syl.rhyme, ipa: syl.rhyme },
tone,
notes,
};
}
async function handleIdiom(idiom: string): AsyncRes<string> {
pdb.addIdiom(idiom, "th");
// TODO later set idiom_words once all words are populated
// console.log();
return { ok: "" };
}
readDump("th");
|