-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry-point.go
326 lines (316 loc) · 8.34 KB
/
entry-point.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
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
package mydictionary
import (
"path/filepath"
"strings"
"sync"
"github.com/PuerkitoBio/goquery"
)
const (
// title in .xlsx file
wd = "Word"
def = "Definition"
sn = "SN"
qc = "QC"
qt = "QT"
nt = "Note"
)
var (
workPath string
documentPath string
cachePath string
// Setting : mydictionary setting
Setting settingStruct
initialized bool
collectionList collectionListSlice
dictionaryList dictionaryListSlice
onlineList []ServiceInterface
mutex sync.Mutex
)
func init() {
initialized = false
}
// Initialize : initialize the library
func Initialize(path []string) (success bool, information string) {
var (
err error
content string
)
// lock
mutex.Lock()
// path
if path != nil {
switch len(path) {
case 1:
workPath = filepath.Clean(path[0])
documentPath = workPath
cachePath = workPath
break
case 2:
workPath = filepath.Clean(path[0])
documentPath = filepath.Clean(path[1])
cachePath = workPath
break
case 3:
workPath = filepath.Clean(path[0])
documentPath = filepath.Clean(path[1])
cachePath = filepath.Clean(path[2])
break
default:
information = "the parameter should be a slice with 1-3 item(s)"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
} else {
information = "the parameter should not be nil"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
// read Setting
content, err = Setting.Read()
if err != nil {
information = err.Error() + "\n\n"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
// information Setting
information = content + "\n\n"
// read collection
err = collectionList.read(&Setting)
if err != nil {
information = err.Error() + "\n\n"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
// read dictionary
err = dictionaryList.read(&Setting)
if err != nil {
information = err.Error() + "\n\n"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
// cache
err = loadCache()
if err != nil {
information = err.Error() + "\n\n"
success = false
// set flag
initialized = false
// unlock
mutex.Unlock()
return
}
// success
success = true
// set flag
initialized = true
// unlock
mutex.Unlock()
return
}
// CheckNetwork : check network
func CheckNetwork() (success bool, information string) {
var err error
// lock
mutex.Lock()
// begin
if Setting.Online.Mode == 0 {
// offline mode
success = true
information = "network: offline mode\n\n"
} else {
_, err = goquery.NewDocument("https://www.baidu.com/")
if err != nil {
// network error
success = false
information = "network: " + err.Error() + "\n\n"
} else {
success = true
information = "network: OK\n\n"
}
}
// unlock
mutex.Unlock()
return
}
// Query : query
func Query(vocabularyAsk VocabularyAskStruct) (success bool, vocabularyResult VocabularyResultStruct) {
var (
vocabularyAnswerList []VocabularyAnswerStruct
vocabularyAnswerListPrepare []VocabularyAnswerStruct
localNoFound bool
enableOnline bool
)
// lock
mutex.Lock()
// return directly if the library has not been initialized
success = initialized
if success == false {
// unlock
mutex.Unlock()
return
}
// collection: query and update
for i := 0; i < len(collectionList); i++ {
vocabularyAnswerList = collectionList[i].queryAndUpdate(vocabularyAsk)
vocabularyAnswerListPrepare = append(vocabularyAnswerListPrepare, vocabularyAnswerList...)
}
// dictionary: query and update
for i := 0; i < len(dictionaryList); i++ {
vocabularyAnswerList = dictionaryList[i].queryAndUpdate(vocabularyAsk)
vocabularyAnswerListPrepare = append(vocabularyAnswerListPrepare, vocabularyAnswerList...)
}
// online: query
localNoFound = true
for i := 0; i < len(vocabularyAnswerListPrepare); i++ {
if vocabularyAnswerListPrepare[i].Status == Basic {
localNoFound = false
break
}
}
enableOnline = Setting.Online.modeContent.anyway ||
(Setting.Online.modeContent.noFound && localNoFound) ||
(Setting.Online.modeContent.userNeed && vocabularyAsk.Online)
if enableOnline {
vocabularyAnswerList = requestOnline(vocabularyAsk)
vocabularyAnswerListPrepare = append(vocabularyAnswerListPrepare, vocabularyAnswerList...)
}
// build result
for i := 0; i < len(vocabularyAnswerListPrepare); i++ {
if strings.Compare(vocabularyAnswerListPrepare[i].Status, Advance) == 0 {
vocabularyResult.Advance = append(vocabularyResult.Advance, vocabularyAnswerListPrepare[i])
} else {
vocabularyResult.Basic = append(vocabularyResult.Basic, vocabularyAnswerListPrepare[i])
}
}
if enableOnline {
// add online to collection
if vocabularyAsk.DoNotRecord == false {
for i := 0; i < len(collectionList); i++ {
collectionList[i].add(vocabularyResult.Basic)
}
}
}
// unlock
mutex.Unlock()
return
}
// Save : save to .xlsx file
func Save() (success bool, information string) {
var (
successCollection bool
informationCollection string
successDictionary bool
informationDictionary string
successCache bool
informationCache string
)
// lock
mutex.Lock()
// return directly if the library has not been initialized
if initialized == false {
success = false
information = "MYDICTIONARY has not been initialized.\n\n"
// unlock
mutex.Unlock()
return
}
// write
successCollection, informationCollection = collectionList.write()
successDictionary, informationDictionary = dictionaryList.write()
// cache
successCache, informationCache = saveCache()
// merge
success = successCollection && successDictionary && successCache
information = informationCollection + informationDictionary + informationCache
// unlock
mutex.Unlock()
return
}
// Edit : edit
func Edit(vocabularyEdit VocabularyEditStruct) (success bool, information string) {
// lock
mutex.Lock()
// return directly if the library has not been initialized
if initialized == false {
success = false
information = "MYDICTIONARY has not been initialized.\n\n"
// unlock
mutex.Unlock()
return
}
// check
// table type
if vocabularyEdit.Location.TableType != Collection &&
vocabularyEdit.Location.TableType != Dictionary {
success = false
information = "invalid variable \"TableType\"\n\n"
// unlock
mutex.Unlock()
return
}
// location
if vocabularyEdit.Location.TableType == Collection {
if vocabularyEdit.Location.TableIndex < 0 || vocabularyEdit.Location.TableIndex >= len(collectionList) {
success = false
information = "invalid variable \"Location.TableIndex\"\n\n"
// unlock
mutex.Unlock()
return
}
if vocabularyEdit.Location.ItemIndex < 0 || vocabularyEdit.Location.ItemIndex >= len(collectionList[vocabularyEdit.Location.TableIndex].content) {
success = false
information = "invalid variable \"Location.ItemIndex\"\n\n"
// unlock
mutex.Unlock()
return
}
} else { // vocabularyEdit.TableType == Dictionary
if vocabularyEdit.Location.TableIndex < 0 || vocabularyEdit.Location.TableIndex >= len(dictionaryList) {
success = false
information = "invalid variable \"Location.TableIndex\"\n\n"
// unlock
mutex.Unlock()
return
}
if vocabularyEdit.Location.ItemIndex < 0 || vocabularyEdit.Location.ItemIndex >= len(dictionaryList[vocabularyEdit.Location.TableIndex].content) {
success = false
information = "invalid variable \"Location.ItemIndex\"\n\n"
// unlock
mutex.Unlock()
return
}
}
// edit
if vocabularyEdit.Location.TableType == Collection {
collectionList[vocabularyEdit.Location.TableIndex].content[vocabularyEdit.Location.ItemIndex].Note = strings.Split(strings.TrimSpace(vocabularyEdit.Note), "\n")
collectionList[vocabularyEdit.Location.TableIndex].content[vocabularyEdit.Location.ItemIndex].Definition = strings.Split(strings.TrimSpace(vocabularyEdit.Definition), "\n")
} else { // vocabularyEdit.TableType == Dictionary
dictionaryList[vocabularyEdit.Location.TableIndex].content[vocabularyEdit.Location.ItemIndex].Note = strings.Split(strings.TrimSpace(vocabularyEdit.Note), "\n")
dictionaryList[vocabularyEdit.Location.TableIndex].content[vocabularyEdit.Location.ItemIndex].Definition = strings.Split(strings.TrimSpace(vocabularyEdit.Definition), "\n")
}
success = true
information = "edit: OK\n\n"
// unlock
mutex.Unlock()
return
}