-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgen.py
executable file
·393 lines (297 loc) · 11.6 KB
/
gen.py
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
#!/usr/bin/env python3
"""
Ensk.is - Free and open English-Icelandic dictionary
Copyright (c) 2021-2025, Sveinbjorn Thordarson <sveinbjorn@sveinbjorn.org>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Generate SQLite database + other files from raw dictionary text files.
"""
import os
import sys
import csv
import shutil
import datetime
import subprocess
import json as std_json
import sqlite_utils
from dict import read_pages, parse_line, page_for_word
from db import EnskDatabase, DB_FILENAME
from util import zip_file, read_json, silently_remove
from info import PROJECT
EntryType = tuple[str, str, str, str, int]
EntryList = list[EntryType]
ENWORD_TO_IPA_UK = read_json("data/ipa/uk/en2ipa.json")
ENWORD_TO_IPA_US = read_json("data/ipa/us/en2ipa.json")
def ipa4entry(s: str, lang: str = "uk") -> str | None:
"""Look up International Phonetic Alphabet spelling for word."""
assert lang in ["uk", "us"]
if lang == "uk":
word2ipa = ENWORD_TO_IPA_UK
else:
word2ipa = ENWORD_TO_IPA_US
ipa = word2ipa.get(s)
if not ipa and " " in s:
# It's a multi-word entry
wipa = s.split()
ipa4words = []
# Look up each individual word and assemble
for wp in wipa:
lookup = word2ipa.get(wp)
if not lookup:
lookup = word2ipa.get(wp.lower())
if not lookup:
lookup = word2ipa.get(wp.capitalize())
if not lookup:
break
else:
lookup = lookup.lstrip("/").rstrip("/")
ipa4words.append(lookup)
if len(ipa4words) == len(wipa):
ipa = " ".join(ipa4words)
ipa = f"/{ipa}/"
return ipa
def read_all_entries() -> EntryList:
"""Read all entries from dictionary text files and parse them."""
r = read_pages()
entries = []
for line in r:
wd = parse_line(line)
w = wd[0]
definition = wd[1]
ipa_uk = ipa4entry(w, lang="uk") or ""
ipa_us = ipa4entry(w, lang="us") or ""
pn = page_for_word(w)
entries.append(tuple([w, definition, ipa_uk, ipa_us, pn]))
entries.sort(key=lambda d: d[0].lower()) # Sort alphabetically by word
return entries
def generate_database(entries: EntryList) -> str:
"""Generate SQLite database and create a corresponding zip archive.
Returns path to zip file."""
# Remove pre-existing database file
delete_db()
# Create new db and add data
add_metadata_to_db()
add_entries_to_db(entries)
optimize_db()
# Zip it
zipfn = f"{PROJECT.STATIC_FILES_PATH}{PROJECT.BASE_DATA_FILENAME}.db.zip"
zip_file(DB_FILENAME, zipfn)
return zipfn
def delete_db() -> None:
"""Delete any pre-existing SQLite database file."""
silently_remove(DB_FILENAME)
def add_metadata_to_db() -> None:
"""Add metadata to database."""
db = EnskDatabase()
db.add_metadata("name", PROJECT.NAME)
db.add_metadata("description", PROJECT.DESCRIPTION)
db.add_metadata("license", PROJECT.LICENSE)
db.add_metadata("website", PROJECT.BASE_URL)
db.add_metadata("source", PROJECT.REPO_URL)
db.add_metadata("editor", PROJECT.EDITOR)
db.add_metadata("editor_email", PROJECT.EMAIL)
db.add_metadata("generation_date", datetime.datetime.now(datetime.UTC).isoformat())
def add_entries_to_db(entries: EntryList) -> None:
"""Insert all entries into database."""
db = EnskDatabase()
for e in entries:
db.add_entry(*e)
db.conn().commit()
def optimize_db() -> None:
"""Optimize database."""
conn = EnskDatabase().conn()
# Enable full-text search indexing
sqlite_utils.Database(conn).table("dictionary").enable_fts(("word", "definition"))
# Create index on word column
conn.cursor().execute("CREATE INDEX idx_word ON dictionary(word COLLATE NOCASE)")
# Analyze and vacuum
conn.cursor().execute("ANALYZE;")
conn.cursor().execute("VACUUM;")
conn.commit()
def generate_csv(entries: EntryList, unlink_csv: bool = False) -> str:
"""Generate zipped CSV file. Return file path."""
fields = ["word", "definition", "ipa_uk", "ipa_us", "page_num"]
# Change to static files dir
old_cwd = os.getcwd()
os.chdir(PROJECT.STATIC_FILES_PATH)
# Write the CSV and zip it
filename = f"{PROJECT.BASE_DATA_FILENAME}.csv"
with open(filename, "w") as csvfile:
csvwriter = csv.writer(csvfile)
csvwriter.writerow(fields)
csvwriter.writerows(entries)
zipfn = f"{filename}.zip"
zip_file(filename, zipfn)
if unlink_csv:
silently_remove(filename)
# Restore previous CWD
os.chdir(old_cwd)
return f"{PROJECT.STATIC_FILES_PATH}{zipfn}"
def generate_text(entries: EntryList) -> str:
"""Generate zipped text file w. all entries. Return file path."""
# Change to static files dir
old_cwd = os.getcwd()
os.chdir(PROJECT.STATIC_FILES_PATH)
# Generate full dictionary text
txt = "\n".join([f"{e[0]} {e[1]}" for e in entries]).strip()
# Write to file and zip it
filename = f"{PROJECT.BASE_DATA_FILENAME}.txt"
with open(filename, "w") as file:
file.write(txt)
zipfn = f"{filename}.zip"
zip_file(filename, zipfn)
# Restore previous CWD
silently_remove(filename)
os.chdir(old_cwd)
return f"{PROJECT.STATIC_FILES_PATH}{zipfn}"
def generate_json(entries: EntryList) -> str:
"""Generate JSON dictionary in standard format. Return file path."""
# Change to static files dir
old_cwd = os.getcwd()
os.chdir(PROJECT.STATIC_FILES_PATH)
# Format the entries according to a standard dictionary format
dictionary_data = {
"metadata": {
"title": PROJECT.NAME,
"description": PROJECT.DESCRIPTION,
"license": PROJECT.LICENSE,
"author": PROJECT.EDITOR,
"email": PROJECT.EMAIL,
"website": PROJECT.BASE_URL,
"source": PROJECT.REPO_URL,
"version": PROJECT.VERSION,
"date": datetime.datetime.now(datetime.UTC).isoformat(),
"language": {"source": "en", "target": "is"},
},
"entries": [],
}
# Add each entry to the dictionary
for entry in entries:
word, definition, ipa_uk, ipa_us, page_num = entry
entry_data = {
"headword": word,
"definition": definition,
"pronunciation": {"ipa_uk": ipa_uk, "ipa_us": ipa_us},
"metadata": {"original_page": page_num if page_num > 0 else None},
}
dictionary_data["entries"].append(entry_data)
# Write to file and zip it
filename = f"{PROJECT.BASE_DATA_FILENAME}.json"
with open(filename, "w", encoding="utf-8") as file:
std_json.dump(dictionary_data, file, ensure_ascii=False, indent=2)
zipfn = f"{filename}.zip"
zip_file(filename, zipfn)
# Restore previous CWD
silently_remove(filename)
os.chdir(old_cwd)
return f"{PROJECT.STATIC_FILES_PATH}{zipfn}"
def generate_pdf(entries: EntryList) -> str:
"""Generate PDF. Return file path."""
raise NotImplementedError
def generate_apple_dictionary(
entries: EntryList, unlink_intermediates: bool = True
) -> str:
"""Generate Apple Dictionary file. Return file path."""
# Delete any pre-existing Apple Dictionary files
silently_remove(f"{PROJECT.STATIC_FILES_PATH}{PROJECT.BASE_DATA_FILENAME}.apple")
silently_remove(
f"{PROJECT.STATIC_FILES_PATH}{PROJECT.BASE_DATA_FILENAME}.dictionary"
)
print("Running pyglossary conversion to Apple Dictionary...")
process = subprocess.Popen(
[
"pyglossary",
f"{PROJECT.STATIC_FILES_PATH}/{PROJECT.BASE_DATA_FILENAME}.csv",
"--read-format=Csv",
f"{PROJECT.STATIC_FILES_PATH}/{PROJECT.BASE_DATA_FILENAME}.apple",
],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
)
# Print output as it comes
for line in process.stdout: # type: ignore
print(line, end="")
process.wait()
if process.returncode != 0:
print(f"pyglossary command failed with return code {process.returncode}")
sys.exit(process.returncode)
old_cwd = os.getcwd()
# Change to the apple dictionary directory
apple_dict_dir = f"{PROJECT.STATIC_FILES_PATH}{PROJECT.BASE_DATA_FILENAME}.apple"
os.chdir(apple_dict_dir)
print(f"Changed directory to: {os.getcwd()}")
# Run make and stream output
print("Running make...")
process = subprocess.Popen(
["make"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, bufsize=1
)
# Print output as it comes
for line in process.stdout: # type: ignore
print(line, end="")
process.wait()
if process.returncode != 0:
print(f"make command failed with return code {process.returncode}")
sys.exit(process.returncode)
os.chdir("..") # Back to STATIC_FILES_PATH
# Move the resulting dictionary bundle to the static files root
shutil.copytree(
f"{PROJECT.BASE_DATA_FILENAME}.apple/objects/ensk_is_apple.dictionary",
f"{PROJECT.BASE_DATA_FILENAME}.dictionary",
)
# Zip it
zip_file(
f"{PROJECT.BASE_DATA_FILENAME}.dictionary",
f"{PROJECT.BASE_DATA_FILENAME}.dictionary.zip",
)
if unlink_intermediates:
silently_remove(f"{PROJECT.BASE_DATA_FILENAME}.apple")
silently_remove(f"{PROJECT.BASE_DATA_FILENAME}.dictionary")
os.chdir(old_cwd)
return f"{PROJECT.STATIC_FILES_PATH}{PROJECT.BASE_DATA_FILENAME}.dictionary.zip"
def main() -> None:
print("Reading entries...")
entries = read_all_entries()
print(f"{len(entries)} entries read")
# print("Generating PDF")
# dictionary = {
# e[0]: e[1]
# for e in entries # if e[0].startswith("a")
# }
# from pdf import generate_pdf
# generate_pdf(dictionary, "static/files/ensk.is.pdf")
# exit(0)
print("Generating text")
generate_text(entries)
print("Generating CSV")
generate_csv(entries, unlink_csv=True)
print("Generating JSON")
generate_json(entries)
# print("Generating Apple Dictionary")
# generate_apple_dictionary(entries)
# exit(0)
print("Generating SQLite3 database")
generate_database(entries)
if __name__ == "__main__":
"""Command line invocation."""
main()