-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathres.go
234 lines (197 loc) · 5.48 KB
/
res.go
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
// neng -- Non-Extravagant Name Generator
// Copyright (C) 2024 Wojciech Głąb (github.com/Zedran)
//
// This file is part of neng.
//
// neng is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3 only.
//
// neng is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with neng. If not, see <https://www.gnu.org/licenses/>.
// Script res builds the resource files from WordNet database.
//
// go run internal/scripts/res/res.go
//
// Run in package's root directory.
package main
import (
"encoding/json"
"errors"
"fmt"
"log"
"os"
"path/filepath"
"slices"
"strings"
"sync"
"github.com/Zedran/neng/internal/scripts/common"
)
const (
RES_DIR string = "res"
FILTERS_DIR string = "res/filters"
REPL_FILE string = "res/misc/replacements.json"
WNET_DIR string = "res/wordnet"
)
// appendMissingIrr appends irregular verbs that are missing from lines.
func appendMissingIrr(lines []string, irr []string) []string {
for _, iw := range irr {
i := strings.Index(iw, ",")
if _, found := slices.BinarySearch(lines, iw[:i]); !found {
lines = append(lines, iw[:i])
}
}
return lines
}
// applyFilter removes lines that are present in filter.
func applyFilter(lines, filter []string) []string {
for _, f := range filter {
if i, found := slices.BinarySearch(lines, f); found {
lines[i] = ""
}
}
slices.Sort(lines)
return slices.Compact(lines)[1:]
}
// compile builds the main resource list from WordNet source file.
//
// Accepts the following arguments:
//
// - srcFname - name of the source file, without "data." prefix
// - replacements - word replacements for a given srcFname (replacements.json)
func compile(wg *sync.WaitGroup, chErr chan error, srcFname string, replacements map[string]string) {
const (
LICENSE_OFFSET int = 29
ERR_FMT string = "%s: %w"
)
defer wg.Done()
lines, err := common.ReadFile(filepath.Join(WNET_DIR, "data."+srcFname))
if err != nil {
chErr <- fmt.Errorf(ERR_FMT, srcFname, err)
return
}
filter, err := common.ReadFile(filepath.Join(FILTERS_DIR, srcFname+".filter"))
if err != nil {
if !errors.Is(err, os.ErrNotExist) {
chErr <- fmt.Errorf(ERR_FMT, srcFname, err)
return
}
log.Printf("%s: %s.filter file not found. Proceeding without it.\n", srcFname, srcFname)
}
// Strip license
lines = lines[LICENSE_OFFSET:]
discardMetadata(lines)
for i, ln := range lines {
if len(ln) == 1 || containsChars(ln) || isProperNoun(ln) {
lines[i] = ""
continue
}
stripParentheses(&lines[i])
}
if srcFname == "verb" {
irr, err := common.ReadFile(filepath.Join(RES_DIR, srcFname+".irr"))
if err != nil {
chErr <- fmt.Errorf(ERR_FMT, srcFname, err)
return
}
lines = appendMissingIrr(lines, irr)
}
// Remove duplicates
slices.Sort(lines)
lines = slices.Compact(lines)[1:] // remove empty line at index 0
lines = applyFilter(lines, filter)
replaceEntries(lines, replacements)
csum, err := common.WriteFile(filepath.Join(RES_DIR, srcFname), lines, true)
if err != nil {
chErr <- fmt.Errorf(ERR_FMT, srcFname, err)
return
}
fmt.Println(csum)
}
// containsChars returns true if line contains any of the following types
// of entries:
// - words containing apostrophes
// - compound words (separated with '-')
// - words containing numbers
// - multi-word entries (separated with '_')
func containsChars(line string) bool {
return strings.ContainsAny(line, "'-0123456789_")
}
// discardMetadata extracts words from the additional WordNet information.
func discardMetadata(lines []string) {
const WORD_COL int = 4
for i := range lines {
s := strings.Split(lines[i], " ")
if len(s) >= WORD_COL {
lines[i] = s[WORD_COL]
}
}
}
// isProperNoun returns true if line contains a proper noun or an adjective
// derived from a proper noun.
func isProperNoun(line string) bool {
for _, c := range line {
// Every letter must be checked - consider deVries
if c >= 'A' && c <= 'Z' {
return true
}
}
return false
}
// readJSON parses a JSON file into a container v.
func readJSON(fname string, v any) error {
stream, err := os.ReadFile(fname)
if err != nil {
return err
}
return json.Unmarshal(stream, v)
}
// replaceEntries modifies specific words in lines.
func replaceEntries(lines []string, replacements map[string]string) {
for old, new := range replacements {
if i, found := slices.BinarySearch(lines, old); found {
lines[i] = new
}
}
}
// stripParentheses removes parenthesized content from the end of the string.
func stripParentheses(s *string) {
i := strings.Index(*s, "(")
if i > -1 {
*s = (*s)[:i]
}
}
func main() {
log.SetFlags(0)
var (
chErr = make(chan error, 4)
wg sync.WaitGroup
src = []string{"adj", "adv", "noun", "verb"}
replacements = make(map[string]map[string]string)
)
err := readJSON(REPL_FILE, &replacements)
if err != nil {
if !errors.Is(err, os.ErrNotExist) {
log.Fatal(err)
}
err = nil
log.Printf("%s not found. Proceeding without it.\n", REPL_FILE)
}
wg.Add(4)
for _, fname := range src {
go compile(&wg, chErr, fname, replacements[fname])
}
wg.Wait()
close(chErr)
for e := range chErr {
err = errors.Join(err, e)
}
if err != nil {
log.Fatal(err)
}
}