-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
gen.py
executable file
·239 lines (175 loc) · 6.89 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
#!/usr/bin/env python3
"""
Ensk.is - Free and open English-Icelandic dictionary
Copyright (c) 2021-2024, Sveinbjorn Thordarson <[email protected]>
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.
"""
from typing import Optional
import os
import csv
import datetime
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
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")
STATIC_FILES_PATH = "static/files/"
def ipa4entry(s: str, lang="uk") -> Optional[str]:
"""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 delete_db() -> None:
"""Delete any pre-existing SQLite database file."""
try:
os.remove(DB_FILENAME)
except Exception:
pass
def add_entries_to_db(entries: EntryList) -> EnskDatabase:
"""Insert all entries into database."""
db = EnskDatabase()
for e in entries:
db.add_entry(*e)
db.conn().commit()
return db
def add_metadata_to_db() -> EnskDatabase:
"""Add metadata to database."""
db = EnskDatabase()
db.add_metadata("name", "ensk.is")
db.add_metadata("description", "Free and open English-Icelandic dictionary")
db.add_metadata("license", "Public domain")
db.add_metadata("website", "https://ensk.is")
db.add_metadata("source", "https://github.com/sveinbjornt/ensk.is")
db.add_metadata("editor", "Sveinbjorn Thordarson")
db.add_metadata("editor_email", "[email protected]")
db.add_metadata("generation_date", datetime.datetime.now(datetime.UTC).isoformat())
return db
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
db = add_metadata_to_db()
db = add_entries_to_db(entries)
sqlite_utils.Database(db.db_conn).table("dictionary").enable_fts(
("word", "definition")
)
# Zip it
zipfn = f"{STATIC_FILES_PATH}ensk_dict.db.zip"
zip_file(DB_FILENAME, zipfn)
return zipfn
def generate_csv(entries: EntryList) -> str:
"""Generate zipped CSV file. Return file path."""
fields = ["word", "definition", "ipa", "page_num"]
# Change to static files dir
old_cwd = os.getcwd()
os.chdir(STATIC_FILES_PATH)
# Write the CSV and zip it
filename = "ensk_dict.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)
# Restore previous CWD
os.remove(filename)
os.chdir(old_cwd)
return f"{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(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 = "ensk_dict.txt"
with open(filename, "w") as file:
file.write(txt)
zipfn = f"{filename}.zip"
zip_file(filename, zipfn)
# Restore previous CWD
os.remove(filename)
os.chdir(old_cwd)
return f"{STATIC_FILES_PATH}{zipfn}"
def generate_pdf(entries: EntryList) -> str:
"""Generate PDF. Return file path."""
raise NotImplementedError
def main() -> None:
print("Reading entries...")
entries = read_all_entries()
print(f"{len(entries)} entries read")
print("Generating SQLite3 database")
generate_database(entries)
print("Generating CSV")
generate_csv(entries)
print("Generating text")
generate_text(entries)
# print("Generating PDF")
# generate_pdf(entries)
if __name__ == "__main__":
"""Command line invocation."""
main()