-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.js
131 lines (123 loc) · 3.43 KB
/
parse.js
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
import lexicon from "./lexicon.json" assert { type: "json" };
import {
numbers,
genders,
cases,
persons,
verbTypes,
voices,
addInflection,
suffixes,
addSuffixes,
formationTypes,
} from "./inflection.js";
import { texts } from "./texts.js";
import { renderPIE } from "./langs/pie.js";
function parseLine(line) {
const tokens = line.split(" ");
let currentWord = null;
let prefix = [];
const result = [];
for (const token of tokens) {
if (token.trim() === "") continue;
if (lexicon[token]) {
if (currentWord) {
result.push(currentWord);
}
if (token.endsWith("-")) {
prefix.push({
word: token,
char: lexicon[token],
});
currentWord = null;
continue;
}
currentWord = {
word: token,
char: lexicon[token],
prefix: prefix,
};
prefix = [];
} else if (numbers.includes(token)) {
currentWord.number = token;
} else if (genders.includes(token)) {
currentWord.gender = token;
} else if (cases.includes(token)) {
currentWord.case = token;
} else if (persons.includes(token)) {
currentWord.person = token;
} else if (token in verbTypes) {
currentWord.verbType = token;
} else if (voices.includes(token)) {
currentWord.voice = token;
} else if (token in suffixes) {
currentWord.suffix = currentWord.suffix || [];
currentWord.suffix.push(token);
} else if (token in formationTypes) {
currentWord.formation = token;
} else {
console.error("Unknown token: " + token);
}
}
if (currentWord) {
result.push(currentWord);
}
for (const item of result) {
if (item.gender) {
item.pos = "adj";
} else if (item.case) {
item.pos = "noun";
} else if (item.person || item.voice || item.verbType) {
item.pos = "verb";
}
if (item.pos === "adj") {
if (!item.number) {
item.number = "sg";
}
if (!item.case) {
item.case = "nom";
}
}
if (item.pos === "noun") {
if (!item.number) {
item.number = "sg";
}
}
if (item.pos === "verb") {
if (!item.voice) {
item.voice = "active";
}
if (!item.number) {
item.number = "sg";
}
}
}
return result;
}
function parse(input) {
return input.trim().split("\n").map(parseLine);
}
function renderLine(words) {
return words
.map((word) => {
return (
renderLine(word.prefix || []) +
word.char +
addSuffixes(word) +
addInflection(word)
);
})
.join("");
}
function render(parsed, renderer) {
return parsed.map(renderer).join("\n");
}
for (const { title, text } of texts) {
console.log(title);
const parsed = parse(text);
const rendered = render(parsed, renderLine);
const renderedPIE = render(parsed, renderPIE);
console.log(parsed);
console.log(rendered);
console.log(renderedPIE);
}