forked from FooSoft/yomichan
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathdictionary-importer.js
More file actions
1191 lines (1075 loc) · 47.8 KB
/
Copy pathdictionary-importer.js
File metadata and controls
1191 lines (1075 loc) · 47.8 KB
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2023-2025 Yomitan Authors
* Copyright (C) 2020-2022 Yomichan Authors
*
* This program 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, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as ajvSchemas0 from '../../lib/validate-schemas.js';
import {
BlobWriter as BlobWriter0,
TextWriter as TextWriter0,
Uint8ArrayReader as Uint8ArrayReader0,
ZipReader as ZipReader0,
configure,
} from '../../lib/zip.js';
import {ExtensionError} from '../core/extension-error.js';
import {parseJson} from '../core/json.js';
import {log} from '../core/log.js';
import {safePerformance} from '../core/safe-performance.js';
import {toError} from '../core/to-error.js';
import {stringReverse} from '../core/utilities.js';
import {getFileExtensionFromImageMediaType, getImageMediaTypeFromFileName} from '../media/media-util.js';
import {compareRevisions} from './dictionary-data-util.js';
const ajvSchemas = /** @type {import('dictionary-importer').CompiledSchemaValidators} */ (/** @type {unknown} */ (ajvSchemas0));
const BlobWriter = /** @type {typeof import('@zip.js/zip.js').BlobWriter} */ (/** @type {unknown} */ (BlobWriter0));
const TextWriter = /** @type {typeof import('@zip.js/zip.js').TextWriter} */ (/** @type {unknown} */ (TextWriter0));
const Uint8ArrayReader = /** @type {typeof import('@zip.js/zip.js').Uint8ArrayReader} */ (/** @type {unknown} */ (Uint8ArrayReader0));
const ZipReader = /** @type {typeof import('@zip.js/zip.js').ZipReader} */ (/** @type {unknown} */ (ZipReader0));
const INDEX_FILE_NAME = 'index.json';
export class DictionaryImporter {
/**
* @param {import('dictionary-importer-media-loader').GenericMediaLoader} mediaLoader
* @param {import('dictionary-importer').OnProgressCallback} [onProgress]
*/
constructor(mediaLoader, onProgress) {
/** @type {import('dictionary-importer-media-loader').GenericMediaLoader} */
this._mediaLoader = mediaLoader;
/** @type {import('dictionary-importer').OnProgressCallback} */
this._onProgress = typeof onProgress === 'function' ? onProgress : () => {};
/** @type {import('dictionary-importer').ProgressData} */
this._progressData = this._createProgressData();
}
/**
* @param {import('./dictionary-database.js').DictionaryDatabase} dictionaryDatabase
* @param {ArrayBuffer} archiveContent
* @param {import('dictionary-importer').ImportDetails} details
* @returns {Promise<import('dictionary-importer').ImportResult>}
*/
async importDictionary(dictionaryDatabase, archiveContent, details) {
if (!dictionaryDatabase) {
throw new Error('Invalid database');
}
if (!dictionaryDatabase.isPrepared()) {
throw new Error('Database is not ready');
}
const importStartTime = safePerformance.now();
/** @type {Error[]} */
const errors = [];
const maxTransactionLength = 1000;
const bulkAddProgressAllowance = 1000;
/**
* @template {import('dictionary-database').ObjectStoreName} T
* @param {T} objectStoreName
* @param {import('dictionary-database').ObjectStoreData<T>[]} entries
*/
const bulkAdd = async (objectStoreName, entries) => {
try {
await dictionaryDatabase.bulkAdd(objectStoreName, entries, 0, entries.length);
} catch (e) {
errors.push(toError(e));
}
};
this._progressReset();
configure({
workerScripts: {
deflate: ['../../lib/z-worker.js'],
inflate: ['../../lib/z-worker.js'],
},
});
// Read archive
const fileMap = await this._getFilesFromArchive(archiveContent);
const index = await this._readAndValidateIndex(fileMap);
const dictionaryTitle = index.title;
const version = /** @type {import('dictionary-data').IndexVersion} */ (index.version);
// Verify database is not already imported
if (await dictionaryDatabase.dictionaryExists(dictionaryTitle)) {
return {
errors: [new Error(`Dictionary ${dictionaryTitle} is already imported, skipped it.`)],
result: null,
};
}
// Load schemas
this._progressNextStep(0);
const dataBankSchemas = this._getDataBankSchemas(version);
// Files
/** @type {import('dictionary-importer').QueryDetails} */
const queryDetails = [
['termFiles', /^term_bank_(\d+)\.json$/],
['termMetaFiles', /^term_meta_bank_(\d+)\.json$/],
['kanjiFiles', /^kanji_bank_(\d+)\.json$/],
['kanjiMetaFiles', /^kanji_meta_bank_(\d+)\.json$/],
['tagFiles', /^tag_bank_(\d+)\.json$/],
];
const {termFiles, termMetaFiles, kanjiFiles, kanjiMetaFiles, tagFiles} = Object.fromEntries(this._getArchiveFiles(fileMap, queryDetails));
// Load data
const prefixWildcardsSupported = !!details.prefixWildcardsSupported;
const validationFileCount = termFiles.length + termMetaFiles.length + kanjiFiles.length + kanjiMetaFiles.length + tagFiles.length;
this._progressNextStep(validationFileCount * bulkAddProgressAllowance);
for (const termFile of termFiles) { await this._validateFile(termFile, dataBankSchemas[0], maxTransactionLength, bulkAddProgressAllowance); }
for (const termMetaFile of termMetaFiles) { await this._validateFile(termMetaFile, dataBankSchemas[1], maxTransactionLength, bulkAddProgressAllowance); }
for (const kanjiFile of kanjiFiles) { await this._validateFile(kanjiFile, dataBankSchemas[2], maxTransactionLength, bulkAddProgressAllowance); }
for (const kanjiMetaFile of kanjiMetaFiles) { await this._validateFile(kanjiMetaFile, dataBankSchemas[3], maxTransactionLength, bulkAddProgressAllowance); }
for (const tagFile of tagFiles) { await this._validateFile(tagFile, dataBankSchemas[4], maxTransactionLength, bulkAddProgressAllowance); }
// termFiles is doubled due to media importing
this._progressNextStep((termFiles.length * 2 + termMetaFiles.length + kanjiFiles.length + kanjiMetaFiles.length + tagFiles.length) * bulkAddProgressAllowance);
let importSuccess = false;
/** @type {import('dictionary-importer').SummaryCounts} */
const counts = {
terms: {total: 0},
termMeta: {total: 0},
kanji: {total: 0},
kanjiMeta: {total: 0},
tagMeta: {total: 0},
media: {total: 0},
};
const yomitanVersion = details.yomitanVersion;
/** @type {import('dictionary-importer').SummaryDetails} */
let summaryDetails = {prefixWildcardsSupported, counts, styles: '', yomitanVersion, importSuccess};
let summary = this._createSummary(dictionaryTitle, version, index, summaryDetails);
const dictionarySummaryAdd = await dictionaryDatabase.addWithResult('dictionaries', summary);
/** @type {Promise<IDBValidKey>} */
const dictionarySummaryResult = new Promise((resolve, reject) => {
dictionarySummaryAdd.onerror = () => reject(void 0);
dictionarySummaryAdd.onsuccess = () => resolve(dictionarySummaryAdd.result);
});
try {
const uniqueMediaPaths = new Set();
for (const termFile of termFiles) {
/** @type {(batch: import('dictionary-database').DatabaseTermEntry[]) => Promise<void>} */
const onTermBatch = async (batch) => {
/** @type {import('dictionary-importer').ImportRequirement[]} */
const requirements = [];
for (const entry of batch) {
if (prefixWildcardsSupported) {
entry.expressionReverse = stringReverse(entry.expression);
entry.readingReverse = stringReverse(entry.reading);
}
const glossaryList = entry.glossary;
for (let j = 0, jj = glossaryList.length; j < jj; ++j) {
const glossary = glossaryList[j];
if (typeof glossary !== 'object' || glossary === null || Array.isArray(glossary)) { continue; }
glossaryList[j] = this._formatDictionaryTermGlossaryObject(glossary, entry, requirements);
}
}
const alreadyAddedRequirements = requirements.filter((x) => { return uniqueMediaPaths.has(x.source.path); });
const notAddedRequirements = requirements.filter((x) => { return !uniqueMediaPaths.has(x.source.path); });
for (const requirement of requirements) { uniqueMediaPaths.add(requirement.source.path); }
await this._resolveAsyncRequirements(alreadyAddedRequirements, fileMap);
const {media} = await this._resolveAsyncRequirements(notAddedRequirements, fileMap);
await bulkAdd('media', media);
counts.media.total += media.length;
await bulkAdd('terms', batch);
counts.terms.total += batch.length;
};
await (version === 1 ?
this._readFileSequenceStreaming(termFile, this._convertTermBankEntryV1.bind(this), dictionaryTitle, onTermBatch, maxTransactionLength, 2 * bulkAddProgressAllowance) :
this._readFileSequenceStreaming(termFile, this._convertTermBankEntryV3.bind(this), dictionaryTitle, onTermBatch, maxTransactionLength, 2 * bulkAddProgressAllowance)
);
}
for (const termMetaFile of termMetaFiles) {
/** @type {(batch: import('dictionary-database').DatabaseTermMeta[]) => Promise<void>} */
const onTermMetaBatch = async (batch) => {
await bulkAdd('termMeta', batch);
for (const [key, value] of Object.entries(this._getMetaCounts(batch))) {
if (key in counts.termMeta) {
counts.termMeta[key] += value;
} else {
counts.termMeta[key] = value;
}
}
};
await this._readFileSequenceStreaming(termMetaFile, this._convertTermMetaBankEntry.bind(this), dictionaryTitle, onTermMetaBatch, maxTransactionLength, bulkAddProgressAllowance);
}
for (const kanjiFile of kanjiFiles) {
/** @type {(batch: import('dictionary-database').DatabaseKanjiEntry[]) => Promise<void>} */
const onKanjiBatch = async (batch) => {
await bulkAdd('kanji', batch);
counts.kanji.total += batch.length;
};
await (version === 1 ?
this._readFileSequenceStreaming(kanjiFile, this._convertKanjiBankEntryV1.bind(this), dictionaryTitle, onKanjiBatch, maxTransactionLength, bulkAddProgressAllowance) :
this._readFileSequenceStreaming(kanjiFile, this._convertKanjiBankEntryV3.bind(this), dictionaryTitle, onKanjiBatch, maxTransactionLength, bulkAddProgressAllowance)
);
}
for (const kanjiMetaFile of kanjiMetaFiles) {
/** @type {(batch: import('dictionary-database').DatabaseKanjiMeta[]) => Promise<void>} */
const onKanjiMetaBatch = async (batch) => {
await bulkAdd('kanjiMeta', batch);
for (const [key, value] of Object.entries(this._getMetaCounts(batch))) {
if (key in counts.kanjiMeta) {
counts.kanjiMeta[key] += value;
} else {
counts.kanjiMeta[key] = value;
}
}
};
await this._readFileSequenceStreaming(kanjiMetaFile, this._convertKanjiMetaBankEntry.bind(this), dictionaryTitle, onKanjiMetaBatch, maxTransactionLength, bulkAddProgressAllowance);
}
for (const tagFile of tagFiles) {
/** @type {(batch: import('dictionary-database').Tag[]) => Promise<void>} */
const onTagBatch = async (batch) => {
this._addOldIndexTags(index, batch, dictionaryTitle);
await bulkAdd('tagMeta', batch);
counts.tagMeta.total += batch.length;
};
await this._readFileSequenceStreaming(tagFile, this._convertTagBankEntry.bind(this), dictionaryTitle, onTagBatch, maxTransactionLength, bulkAddProgressAllowance);
}
importSuccess = true;
} catch (e) {
errors.push(toError(e));
}
// Update dictionary descriptor
this._progressNextStep(0);
const stylesFileName = 'styles.css';
const stylesFile = fileMap.get(stylesFileName);
let styles = '';
if (typeof stylesFile !== 'undefined') {
styles = await this._getData(stylesFile, new TextWriter());
const cssErrors = this._validateCss(styles);
if (cssErrors.length > 0) {
return {
errors: cssErrors,
result: null,
};
}
}
summaryDetails = {prefixWildcardsSupported, counts, styles, yomitanVersion, importSuccess};
summary = this._createSummary(dictionaryTitle, version, index, summaryDetails);
const primaryKey = await dictionarySummaryResult;
await dictionaryDatabase.bulkUpdate('dictionaries', [{data: summary, primaryKey}], 0, 1);
this._progress();
log.log(`Dictionary import took ${((safePerformance.now() - importStartTime) / 1000).toFixed(2)}s`);
return {result: summary, errors};
}
/**
* @param {ArrayBuffer} archiveContent
* @returns {Promise<import('dictionary-importer').ArchiveFileMap>}
*/
async _getFilesFromArchive(archiveContent) {
const zipFileReader = new Uint8ArrayReader(new Uint8Array(archiveContent));
const zipReader = new ZipReader(zipFileReader);
const zipEntries = await zipReader.getEntries();
/** @type {import('dictionary-importer').ArchiveFileMap} */
const fileMap = new Map();
for (const entry of zipEntries) {
fileMap.set(entry.filename, entry);
}
return fileMap;
}
/**
* @param {import('dictionary-importer').ArchiveFileMap} fileMap
* @returns {?string}
*/
_findRedundantDirectories(fileMap) {
let indexPath = '';
for (const file of fileMap) {
if (file[0].replace(/.*\//, '') === INDEX_FILE_NAME) {
indexPath = file[0];
}
}
const redundantDirectoriesRegex = new RegExp(`.*(?=${INDEX_FILE_NAME.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')})`);
const redundantDirectories = indexPath.match(redundantDirectoriesRegex);
return redundantDirectories ? redundantDirectories[0] : null;
}
/**
* @param {import('dictionary-importer').ArchiveFileMap} fileMap
* @returns {Promise<import('dictionary-data').Index>}
* @throws {Error}
*/
async _readAndValidateIndex(fileMap) {
const indexFile = fileMap.get(INDEX_FILE_NAME);
if (typeof indexFile === 'undefined') {
const redundantDirectories = this._findRedundantDirectories(fileMap);
if (redundantDirectories) {
throw new Error('Dictionary index found nested in redundant directories: "' + redundantDirectories + '" when it must be in the archive\'s root directory');
}
throw new Error('No dictionary index found in archive');
}
const indexFile2 = /** @type {import('@zip.js/zip.js').Entry} */ (indexFile);
const indexContent = await this._getData(indexFile2, new TextWriter());
const index = /** @type {unknown} */ (parseJson(indexContent));
if (!ajvSchemas.dictionaryIndex(index)) {
throw this._formatAjvSchemaError(ajvSchemas.dictionaryIndex, INDEX_FILE_NAME);
}
const validIndex = /** @type {import('dictionary-data').Index} */ (index);
const version = typeof validIndex.format === 'number' ? validIndex.format : validIndex.version;
validIndex.version = version;
const {title, revision} = validIndex;
if (typeof version !== 'number' || !title || !revision) {
throw new Error('Unrecognized dictionary format');
}
return validIndex;
}
/**
* @returns {import('dictionary-importer').ProgressData}
*/
_createProgressData() {
return {
index: 0,
count: 0,
};
}
/** */
_progressReset() {
this._progressData = this._createProgressData();
this._progress(true);
}
/**
* @param {number} count
*/
_progressNextStep(count) {
this._progressData.index = 0;
this._progressData.count = count;
this._progress(true);
}
/**
* @param {boolean} nextStep
*/
_progress(nextStep = false) {
this._onProgress({...this._progressData, nextStep});
}
/**
* @param {string} dictionaryTitle
* @param {number} version
* @param {import('dictionary-data').Index} index
* @param {import('dictionary-importer').SummaryDetails} details
* @returns {import('dictionary-importer').Summary}
* @throws {Error}
*/
_createSummary(dictionaryTitle, version, index, details) {
const indexSequenced = index.sequenced;
const {prefixWildcardsSupported, counts, styles, importSuccess} = details;
/** @type {import('dictionary-importer').Summary} */
const summary = {
title: dictionaryTitle,
revision: index.revision,
sequenced: typeof indexSequenced === 'boolean' && indexSequenced,
version,
importDate: Date.now(),
prefixWildcardsSupported,
counts,
styles,
importSuccess,
};
const {minimumYomitanVersion, author, url, description, attribution, frequencyMode, isUpdatable, sourceLanguage, targetLanguage} = index;
if (typeof minimumYomitanVersion === 'string') {
if (details.yomitanVersion === '0.0.0.0') {
// Running a development version of Yomitan
} else if (compareRevisions(details.yomitanVersion, minimumYomitanVersion)) {
throw new Error(`Dictionary is incompatible with this version of Yomitan (${details.yomitanVersion}; minimum required: ${minimumYomitanVersion})`);
}
summary.minimumYomitanVersion = minimumYomitanVersion;
}
if (typeof author === 'string') { summary.author = author; }
if (typeof url === 'string') { summary.url = url; }
if (typeof description === 'string') { summary.description = description; }
if (typeof attribution === 'string') { summary.attribution = attribution; }
if (typeof frequencyMode === 'string') { summary.frequencyMode = frequencyMode; }
if (typeof sourceLanguage === 'string') { summary.sourceLanguage = sourceLanguage; }
if (typeof targetLanguage === 'string') { summary.targetLanguage = targetLanguage; }
if (typeof isUpdatable === 'boolean') {
const {indexUrl, downloadUrl} = index;
if (!isUpdatable || !this._validateUrl(indexUrl) || !this._validateUrl(downloadUrl)) {
throw new Error('Invalid index data for updatable dictionary');
}
summary.isUpdatable = isUpdatable;
summary.indexUrl = indexUrl;
summary.downloadUrl = downloadUrl;
}
return summary;
}
/**
* @param {string|undefined} string
* @returns {boolean}
*/
_validateUrl(string) {
if (typeof string !== 'string') {
return false;
}
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === 'http:' || url.protocol === 'https:';
}
/**
* @param {import('ajv').ValidateFunction} schema
* @param {string} fileName
* @returns {ExtensionError}
*/
_formatAjvSchemaError(schema, fileName) {
const e = new ExtensionError(`Dictionary has invalid data in '${fileName}' '${JSON.stringify(schema.errors)}'`);
e.data = schema.errors;
return e;
}
/**
* @param {number} version
* @returns {import('dictionary-importer').CompiledSchemaNameArray}
*/
_getDataBankSchemas(version) {
const termBank = (
version === 1 ?
'dictionaryTermBankV1' :
'dictionaryTermBankV3'
);
const termMetaBank = 'dictionaryTermMetaBankV3';
const kanjiBank = (
version === 1 ?
'dictionaryKanjiBankV1' :
'dictionaryKanjiBankV3'
);
const kanjiMetaBank = 'dictionaryKanjiMetaBankV3';
const tagBank = 'dictionaryTagBankV3';
return [termBank, termMetaBank, kanjiBank, kanjiMetaBank, tagBank];
}
/**
* @param {string} css
* @returns {Error[]}
*/
_validateCss(css) {
return css ? [] : [new Error('No styles found')];
}
/**
* @param {import('dictionary-data').TermGlossaryText|import('dictionary-data').TermGlossaryImage|import('dictionary-data').TermGlossaryStructuredContent} data
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @returns {import('dictionary-data').TermGlossary}
* @throws {Error}
*/
_formatDictionaryTermGlossaryObject(data, entry, requirements) {
switch (data.type) {
case 'text':
return data.text;
case 'image':
return this._formatDictionaryTermGlossaryImage(data, entry, requirements);
case 'structured-content':
return this._formatStructuredContent(data, entry, requirements);
default:
throw new Error(`Unhandled data type: ${/** @type {import('core').SerializableObject} */ (data).type}`);
}
}
/**
* @param {import('dictionary-data').TermGlossaryImage} data
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @returns {import('dictionary-data').TermGlossaryImage}
*/
_formatDictionaryTermGlossaryImage(data, entry, requirements) {
/** @type {import('dictionary-data').TermGlossaryImage} */
const target = {
type: 'image',
path: '', // Will be populated during requirement resolution
};
requirements.push({type: 'image', target, source: data, entry});
return target;
}
/**
* @param {import('dictionary-data').TermGlossaryStructuredContent} data
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @returns {import('dictionary-data').TermGlossaryStructuredContent}
*/
_formatStructuredContent(data, entry, requirements) {
const content = this._prepareStructuredContent(data.content, entry, requirements);
return {
type: 'structured-content',
content,
};
}
/**
* @param {import('structured-content').Content} content
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @returns {import('structured-content').Content}
*/
_prepareStructuredContent(content, entry, requirements) {
if (typeof content === 'string' || !(typeof content === 'object' && content !== null)) {
return content;
}
if (Array.isArray(content)) {
for (let i = 0, ii = content.length; i < ii; ++i) {
content[i] = this._prepareStructuredContent(content[i], entry, requirements);
}
return content;
}
const {tag} = content;
switch (tag) {
case 'img':
return this._prepareStructuredContentImage(content, entry, requirements);
}
const childContent = content.content;
if (typeof childContent !== 'undefined') {
content.content = this._prepareStructuredContent(childContent, entry, requirements);
}
return content;
}
/**
* @param {import('structured-content').ImageElement} content
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @returns {import('structured-content').ImageElement}
*/
_prepareStructuredContentImage(content, entry, requirements) {
/** @type {import('structured-content').ImageElement} */
const target = {
tag: 'img',
path: '', // Will be populated during requirement resolution
};
requirements.push({type: 'structured-content-image', target, source: content, entry});
return target;
}
/**
* @param {import('dictionary-importer').ImportRequirement[]} requirements
* @param {import('dictionary-importer').ArchiveFileMap} fileMap
* @returns {Promise<{media: import('dictionary-database').MediaDataArrayBufferContent[]}>}
*/
async _resolveAsyncRequirements(requirements, fileMap) {
/** @type {Map<string, import('dictionary-database').MediaDataArrayBufferContent>} */
const media = new Map();
/** @type {import('dictionary-importer').ImportRequirementContext} */
const context = {fileMap, media};
for (const requirement of requirements) {
await this._resolveAsyncRequirement(context, requirement);
}
return {
media: [...media.values()],
};
}
/**
* @param {import('dictionary-importer').ImportRequirementContext} context
* @param {import('dictionary-importer').ImportRequirement} requirement
*/
async _resolveAsyncRequirement(context, requirement) {
switch (requirement.type) {
case 'image':
await this._resolveDictionaryTermGlossaryImage(
context,
requirement.target,
requirement.source,
requirement.entry,
);
break;
case 'structured-content-image':
await this._resolveStructuredContentImage(
context,
requirement.target,
requirement.source,
requirement.entry,
);
break;
default:
return;
}
}
/**
* @param {import('dictionary-importer').ImportRequirementContext} context
* @param {import('dictionary-data').TermGlossaryImage} target
* @param {import('dictionary-data').TermGlossaryImage} source
* @param {import('dictionary-database').DatabaseTermEntry} entry
*/
async _resolveDictionaryTermGlossaryImage(context, target, source, entry) {
await this._createImageData(context, target, source, entry);
}
/**
* @param {import('dictionary-importer').ImportRequirementContext} context
* @param {import('structured-content').ImageElement} target
* @param {import('structured-content').ImageElement} source
* @param {import('dictionary-database').DatabaseTermEntry} entry
*/
async _resolveStructuredContentImage(context, target, source, entry) {
const {
verticalAlign,
border,
borderRadius,
sizeUnits,
} = source;
await this._createImageData(context, target, source, entry);
if (typeof verticalAlign === 'string') { target.verticalAlign = verticalAlign; }
if (typeof border === 'string') { target.border = border; }
if (typeof borderRadius === 'string') { target.borderRadius = borderRadius; }
if (typeof sizeUnits === 'string') { target.sizeUnits = sizeUnits; }
}
/**
* @param {import('dictionary-importer').ImportRequirementContext} context
* @param {import('structured-content').ImageElementBase} target
* @param {import('structured-content').ImageElementBase} source
* @param {import('dictionary-database').DatabaseTermEntry} entry
*/
async _createImageData(context, target, source, entry) {
const {
path,
width: preferredWidth,
height: preferredHeight,
title,
alt,
description,
pixelated,
imageRendering,
appearance,
background,
collapsed,
collapsible,
} = source;
const {width, height} = await this._getImageMedia(context, path, entry);
target.path = path;
target.width = width;
target.height = height;
if (typeof preferredWidth === 'number') { target.preferredWidth = preferredWidth; }
if (typeof preferredHeight === 'number') { target.preferredHeight = preferredHeight; }
if (typeof title === 'string') { target.title = title; }
if (typeof alt === 'string') { target.alt = alt; }
if (typeof description === 'string') { target.description = description; }
if (typeof pixelated === 'boolean') { target.pixelated = pixelated; }
if (typeof imageRendering === 'string') { target.imageRendering = imageRendering; }
if (typeof appearance === 'string') { target.appearance = appearance; }
if (typeof background === 'boolean') { target.background = background; }
if (typeof collapsed === 'boolean') { target.collapsed = collapsed; }
if (typeof collapsible === 'boolean') { target.collapsible = collapsible; }
}
/**
* @param {import('dictionary-importer').ImportRequirementContext} context
* @param {string} path
* @param {import('dictionary-database').DatabaseTermEntry} entry
* @returns {Promise<import('dictionary-database').MediaDataArrayBufferContent>}
*/
async _getImageMedia(context, path, entry) {
const {media} = context;
const {dictionary} = entry;
/**
* @param {string} message
* @returns {Error}
*/
const createError = (message) => {
const {expression, reading} = entry;
const readingSource = reading.length > 0 ? ` (${reading})` : '';
return new Error(`${message} at path ${JSON.stringify(path)} for ${expression}${readingSource} in ${dictionary}`);
};
// Check if already added
let mediaData = media.get(path);
if (typeof mediaData !== 'undefined') {
if (getFileExtensionFromImageMediaType(mediaData.mediaType) === null) {
throw createError('Media file is not a valid image');
}
return mediaData;
}
// Find file in archive
const file = context.fileMap.get(path);
if (typeof file === 'undefined') {
throw createError('Could not find image');
}
// Load file content
let content = await (await this._getData(file, new BlobWriter())).arrayBuffer();
const mediaType = getImageMediaTypeFromFileName(path);
if (mediaType === null) {
throw createError('Could not determine media type for image');
}
// Load image data
let width;
let height;
try {
({content, width, height} = await this._mediaLoader.getImageDetails(content, mediaType));
} catch (e) {
throw createError('Could not load image');
}
// Create image data
mediaData = {
dictionary,
path,
mediaType,
width,
height,
content,
};
media.set(path, mediaData);
return mediaData;
}
/**
* @param {import('dictionary-data').TermV1} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseTermEntry}
*/
_convertTermBankEntryV1(entry, dictionary) {
let [expression, reading, definitionTags, rules, score, ...glossary] = entry;
reading = reading.length > 0 ? reading : expression;
return {expression, reading, definitionTags, rules, score, glossary, dictionary};
}
/**
* @param {import('dictionary-data').TermV3} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseTermEntry}
*/
_convertTermBankEntryV3(entry, dictionary) {
let [expression, reading, definitionTags, rules, score, glossary, sequence, termTags] = entry;
reading = reading.length > 0 ? reading : expression;
return {expression, reading, definitionTags, rules, score, glossary, sequence, termTags, dictionary};
}
/**
* @param {import('dictionary-data').TermMeta} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseTermMeta}
*/
_convertTermMetaBankEntry(entry, dictionary) {
const [expression, mode, data] = entry;
return /** @type {import('dictionary-database').DatabaseTermMeta} */ ({expression, mode, data, dictionary});
}
/**
* @param {import('dictionary-data').KanjiV1} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseKanjiEntry}
*/
_convertKanjiBankEntryV1(entry, dictionary) {
const [character, onyomi, kunyomi, tags, ...meanings] = entry;
return {character, onyomi, kunyomi, tags, meanings, dictionary};
}
/**
* @param {import('dictionary-data').KanjiV3} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseKanjiEntry}
*/
_convertKanjiBankEntryV3(entry, dictionary) {
const [character, onyomi, kunyomi, tags, meanings, stats] = entry;
return {character, onyomi, kunyomi, tags, meanings, stats, dictionary};
}
/**
* @param {import('dictionary-data').KanjiMeta} entry
* @param {string} dictionary
* @returns {import('dictionary-database').DatabaseKanjiMeta}
*/
_convertKanjiMetaBankEntry(entry, dictionary) {
const [character, mode, data] = entry;
return {character, mode, data, dictionary};
}
/**
* @param {import('dictionary-data').Tag} entry
* @param {string} dictionary
* @returns {import('dictionary-database').Tag}
*/
_convertTagBankEntry(entry, dictionary) {
const [name, category, order, notes, score] = entry;
return {name, category, order, notes, score, dictionary};
}
/**
* @param {import('dictionary-data').Index} index
* @param {import('dictionary-database').Tag[]} results
* @param {string} dictionary
*/
_addOldIndexTags(index, results, dictionary) {
const {tagMeta} = index;
if (typeof tagMeta !== 'object' || tagMeta === null) { return; }
for (const [name, value] of Object.entries(tagMeta)) {
const {category, order, notes, score} = value;
results.push({name, category, order, notes, score, dictionary});
}
}
/**
* @param {import('dictionary-importer').ArchiveFileMap} fileMap
* @param {import('dictionary-importer').QueryDetails} queryDetails
* @returns {import('dictionary-importer').QueryResult}
*/
_getArchiveFiles(fileMap, queryDetails) {
/** @type {import('dictionary-importer').QueryResult} */
const results = new Map();
for (const [fileType] of queryDetails) {
results.set(fileType, []);
}
for (const [fileName, fileEntry] of fileMap.entries()) {
for (const [fileType, fileNameFormat] of queryDetails) {
if (!fileNameFormat.test(fileName)) { continue; }
const entries = results.get(fileType);
if (typeof entries !== 'undefined') {
entries.push(fileEntry);
break;
}
}
}
return results;
}
/**
* @template [TEntry=unknown]
* @template [TResult=unknown]
* @param {import('@zip.js/zip.js').Entry[]} files
* @param {(entry: TEntry, dictionaryTitle: string) => TResult} convertEntry
* @param {string} dictionaryTitle
* @returns {Promise<TResult[]>}
*/
async _readFileSequence(files, convertEntry, dictionaryTitle) {
const results = [];
for (const file of files) {
const content = await this._getData(file, new TextWriter());
let entries;
try {
/** @type {unknown} */
entries = parseJson(content);
} catch (error) {
if (error instanceof Error) {
throw new Error(error.message + ` in '${file.filename}'`);
}
}
if (Array.isArray(entries)) {
for (const entry of /** @type {TEntry[]} */ (entries)) {
results.push(convertEntry(entry, dictionaryTitle));
}
}
}
return results;
}
/**
* Streams a file from the archive using streaming decompression and a
* bracket-depth JSON scanner, calling onEntry for each parsed top-level
* array element. Never holds the full decompressed string or parsed array
* in memory.
* @param {import('@zip.js/zip.js').Entry} file
* @param {(entry: unknown) => void | Promise<void>} onEntry
* @param {((fraction: number) => void) | null} [onProgress]
* @returns {Promise<void>}
*/
async _forEachStreamedEntry(file, onEntry, onProgress = null) {
if (typeof file.getData === 'undefined') {
throw new Error(`Cannot read ${file.filename}`);
}
const {readable, writable} = new TransformStream();
const dataPromise = file.getData(writable);
const totalBytes = file.uncompressedSize;
let bytesRead = 0;
const countingStream = new TransformStream({
transform(/** @type {Uint8Array} */ chunk, /** @type {TransformStreamDefaultController} */ controller) {
bytesRead += chunk.byteLength;
controller.enqueue(chunk);
},
});
const textStream = readable.pipeThrough(countingStream).pipeThrough(new TextDecoderStream());
const reader = textStream.getReader();
// Bracket-depth scanner state
let depth = 0;
let inString = false;
let escape = false;
let entryStart = -1;
let accumulated = '';
let hasTopLevelArray = false;
let needsComma = false;
for (;;) {
const {done, value} = await reader.read();
if (done) { break; }
const text = /** @type {string} */ (value);
for (let i = 0, ii = text.length; i < ii; i++) {
const ch = text.charCodeAt(i);
if (escape) {
escape = false;
continue;
}
if (inString) {
if (ch === 0x5C) { // backslash
escape = true;
} else if (ch === 0x22) { // double quote
inString = false;
}
continue;
}
// At depth 0, only whitespace and the opening [ are valid
if (depth === 0 && ch !== 0x20 && ch !== 0x09 && ch !== 0x0A && ch !== 0x0D && (hasTopLevelArray || ch !== 0x5B)) {
throw new Error(`Dictionary has invalid data in '${file.filename}'`);
}
switch (ch) {
case 0x22: // "
if (depth === 1) {
throw new Error(`Dictionary has invalid data in '${file.filename}'`);
}
inString = true;
break;
case 0x5B: // [