yomichan/ext/bg/js/database.js

235 lines
7.3 KiB
JavaScript
Raw Normal View History

2016-03-20 02:32:35 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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 <http://www.gnu.org/licenses/>.
*/
2016-11-07 16:29:21 +00:00
class Database {
2016-03-21 00:15:40 +00:00
constructor() {
2016-09-12 05:47:08 +00:00
this.db = null;
2016-12-30 18:53:21 +00:00
this.dbVersion = 2;
2016-12-18 01:42:41 +00:00
this.tagMetaCache = {};
2016-08-21 20:32:36 +00:00
}
2016-12-30 18:47:27 +00:00
sanitize() {
const db = new Dexie('dict');
return db.open().then(() => {
db.close();
if (db.verno !== this.dbVersion) {
return db.delete();
}
}).catch(() => {});
}
2016-11-13 20:49:28 +00:00
prepare() {
2017-07-09 23:29:52 +00:00
if (this.db) {
2016-09-13 22:59:18 +00:00
return Promise.reject('database already initialized');
}
2016-12-30 18:47:27 +00:00
return this.sanitize().then(() => {
this.db = new Dexie('dict');
this.db.version(this.dbVersion).stores({
terms: '++id,dictionary,expression,reading',
kanji: '++,dictionary,character',
tagMeta: '++,dictionary',
2017-02-26 18:11:23 +00:00
dictionaries: '++,title,version'
2016-12-30 18:47:27 +00:00
});
2016-11-08 04:55:06 +00:00
2016-12-30 18:47:27 +00:00
return this.db.open();
});
2016-03-21 00:15:40 +00:00
}
2016-11-14 03:10:28 +00:00
purge() {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-11-14 03:10:28 +00:00
return Promise.reject('database not initialized');
}
this.db.close();
return this.db.delete().then(() => {
this.db = null;
2016-12-18 07:38:14 +00:00
this.tagMetaCache = {};
2016-12-19 06:24:34 +00:00
return this.prepare();
2016-11-14 03:10:28 +00:00
});
}
2017-01-16 06:17:49 +00:00
findTerms(term, dictionaries) {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-09-12 05:47:08 +00:00
return Promise.reject('database not initialized');
}
const results = [];
2016-09-11 02:40:56 +00:00
return this.db.terms.where('expression').equals(term).or('reading').equals(term).each(row => {
2016-11-13 03:29:30 +00:00
if (dictionaries.includes(row.dictionary)) {
results.push({
expression: row.expression,
reading: row.reading,
2017-03-03 05:01:49 +00:00
tags: dictFieldSplit(row.tags),
rules: dictFieldSplit(row.rules),
2017-01-10 03:51:21 +00:00
glossary: row.glossary,
2016-12-18 05:42:53 +00:00
score: row.score,
2016-12-18 05:26:46 +00:00
dictionary: row.dictionary,
2016-11-13 03:29:30 +00:00
id: row.id
});
}
2016-08-22 02:51:12 +00:00
}).then(() => {
2016-12-18 05:26:46 +00:00
return this.cacheTagMeta(dictionaries);
}).then(() => {
2017-02-26 19:12:54 +00:00
for (const result of results) {
2016-12-18 05:26:46 +00:00
result.tagMeta = this.tagMetaCache[result.dictionary] || {};
2016-08-30 02:51:37 +00:00
}
return results;
2016-08-22 02:51:12 +00:00
});
}
2016-04-13 06:12:20 +00:00
2016-11-13 03:29:30 +00:00
findKanji(kanji, dictionaries) {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-09-12 05:47:08 +00:00
return Promise.reject('database not initialized');
}
2016-08-22 02:51:12 +00:00
const results = [];
2016-09-11 19:29:18 +00:00
return this.db.kanji.where('character').equals(kanji).each(row => {
2016-11-13 03:29:30 +00:00
if (dictionaries.includes(row.dictionary)) {
results.push({
character: row.character,
2017-03-03 05:01:49 +00:00
onyomi: dictFieldSplit(row.onyomi),
kunyomi: dictFieldSplit(row.kunyomi),
tags: dictFieldSplit(row.tags),
2017-01-10 03:51:21 +00:00
glossary: row.meanings,
2016-12-18 20:07:01 +00:00
dictionary: row.dictionary
2016-11-13 03:29:30 +00:00
});
}
}).then(() => {
2016-12-18 05:26:46 +00:00
return this.cacheTagMeta(dictionaries);
}).then(() => {
2017-02-26 19:12:54 +00:00
for (const result of results) {
2016-12-18 05:26:46 +00:00
result.tagMeta = this.tagMetaCache[result.dictionary] || {};
2016-11-13 03:29:30 +00:00
}
return results;
});
}
2016-08-24 03:33:04 +00:00
2016-12-18 05:26:46 +00:00
cacheTagMeta(dictionaries) {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-09-12 05:47:08 +00:00
return Promise.reject('database not initialized');
}
2016-11-13 04:20:23 +00:00
const promises = [];
2017-02-26 19:12:54 +00:00
for (const dictionary of dictionaries) {
2016-12-18 01:42:41 +00:00
if (this.tagMetaCache[dictionary]) {
continue;
2016-11-13 04:20:23 +00:00
}
2016-12-18 05:42:53 +00:00
const tagMeta = {};
2016-12-18 02:45:19 +00:00
promises.push(
this.db.tagMeta.where('dictionary').equals(dictionary).each(row => {
2016-12-19 06:24:34 +00:00
tagMeta[row.name] = {category: row.category, notes: row.notes, order: row.order};
2016-12-18 05:42:53 +00:00
}).then(() => {
this.tagMetaCache[dictionary] = tagMeta;
2016-12-18 02:45:19 +00:00
})
);
2016-12-18 01:42:41 +00:00
}
2016-12-18 05:26:46 +00:00
return Promise.all(promises);
2016-08-24 05:22:09 +00:00
}
2016-08-24 03:33:04 +00:00
2016-11-07 06:19:48 +00:00
getDictionaries() {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-11-06 01:24:45 +00:00
return Promise.reject('database not initialized');
}
return this.db.dictionaries.toArray();
}
2017-06-25 22:36:28 +00:00
importDictionary(archive, callback) {
2017-07-09 22:23:11 +00:00
if (!this.db) {
2016-09-12 05:47:08 +00:00
return Promise.reject('database not initialized');
}
2016-08-24 05:22:09 +00:00
2016-11-13 19:37:54 +00:00
let summary = null;
2016-12-24 05:59:19 +00:00
const indexLoaded = (title, version, revision, tagMeta, hasTerms, hasKanji) => {
summary = {title, version, revision, hasTerms, hasKanji};
2016-11-08 06:12:18 +00:00
return this.db.dictionaries.where('title').equals(title).count().then(count => {
if (count > 0) {
return Promise.reject(`dictionary "${title}" is already imported`);
2016-11-06 00:51:01 +00:00
}
2016-08-24 03:33:04 +00:00
2016-12-24 05:59:19 +00:00
return this.db.dictionaries.add({title, version, revision, hasTerms, hasKanji}).then(() => {
2016-11-08 06:12:18 +00:00
const rows = [];
2017-02-26 19:12:54 +00:00
for (const tag in tagMeta || {}) {
2016-12-18 01:42:41 +00:00
const meta = tagMeta[tag];
2017-03-03 05:01:49 +00:00
const row = dictTagSanitize({
2016-12-18 03:30:26 +00:00
name: tag,
2016-12-18 19:52:11 +00:00
category: meta.category,
notes: meta.notes,
order: meta.order,
2016-12-18 01:42:41 +00:00
dictionary: title
});
2016-12-18 19:52:11 +00:00
rows.push(row);
2016-11-08 06:12:18 +00:00
}
2016-12-18 01:42:41 +00:00
return this.db.tagMeta.bulkAdd(rows);
2016-11-08 06:12:18 +00:00
});
2016-11-06 00:51:01 +00:00
});
2016-11-05 23:44:29 +00:00
};
2016-08-24 03:33:04 +00:00
2016-11-07 03:14:43 +00:00
const termsLoaded = (title, entries, total, current) => {
2016-11-05 23:44:29 +00:00
const rows = [];
2017-02-26 19:12:54 +00:00
for (const [expression, reading, tags, rules, score, ...glossary] of entries) {
2016-11-06 00:30:00 +00:00
rows.push({
expression,
reading,
tags,
2016-12-18 01:42:41 +00:00
rules,
2016-12-18 03:30:26 +00:00
score,
2016-11-07 03:14:43 +00:00
glossary,
dictionary: title
2016-11-06 00:30:00 +00:00
});
2016-11-05 23:44:29 +00:00
}
2016-08-24 03:33:04 +00:00
2016-11-05 23:44:29 +00:00
return this.db.terms.bulkAdd(rows).then(() => {
if (callback) {
2017-06-25 22:36:28 +00:00
callback(total, current);
2016-08-24 03:53:11 +00:00
}
2016-08-24 03:33:04 +00:00
});
2016-11-05 23:44:29 +00:00
};
2016-11-07 03:14:43 +00:00
const kanjiLoaded = (title, entries, total, current) => {
2016-11-05 23:44:29 +00:00
const rows = [];
2017-02-26 19:12:54 +00:00
for (const [character, onyomi, kunyomi, tags, ...meanings] of entries) {
2016-11-06 00:30:00 +00:00
rows.push({
character,
onyomi,
kunyomi,
tags,
2016-11-07 03:14:43 +00:00
meanings,
dictionary: title
2016-11-06 00:30:00 +00:00
});
2016-08-24 05:22:09 +00:00
}
2016-11-05 23:44:29 +00:00
return this.db.kanji.bulkAdd(rows).then(() => {
if (callback) {
2017-06-25 22:36:28 +00:00
callback(total, current);
2016-11-05 23:44:29 +00:00
}
});
};
2016-08-24 05:22:09 +00:00
2017-06-25 22:36:28 +00:00
return zipLoadDb(archive, indexLoaded, termsLoaded, kanjiLoaded).then(() => summary);
2016-08-24 05:22:09 +00:00
}
2016-03-20 02:32:35 +00:00
}