yomichan/ext/bg/js/dictionary.js

203 lines
5.7 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/>.
*/
class Dictionary {
2016-03-21 00:15:40 +00:00
constructor() {
2016-09-12 05:47:08 +00:00
this.db = null;
2016-11-06 00:30:00 +00:00
this.dbVer = 4;
2016-08-22 02:51:12 +00:00
this.entities = null;
2016-08-21 20:32:36 +00:00
}
2016-08-24 03:33:04 +00:00
initDb() {
2016-09-13 22:59:18 +00:00
if (this.db !== null) {
return Promise.reject('database already initialized');
}
2016-09-12 05:47:08 +00:00
this.db = new Dexie('dict');
2016-08-24 03:33:04 +00:00
this.db.version(1).stores({
2016-11-06 00:30:00 +00:00
terms: '++id, dictionary, expression, reading',
kanji: '++, dictionary, character',
entities: '++, dictionary, name',
meta: 'name, value',
2016-08-22 02:51:12 +00:00
});
2016-09-12 05:47:08 +00:00
}
2016-09-13 22:59:18 +00:00
prepareDb() {
this.initDb();
return this.db.meta.get('version').then(row => {
return row ? row.value : 0;
}).catch(() => {
return 0;
}).then(version => {
if (this.dbVer === version) {
return true;
}
const db = this.db;
this.db.close();
this.db = null;
return db.delete().then(() => {
this.initDb();
return false;
});
});
2016-09-12 05:47:08 +00:00
}
2016-09-13 22:59:18 +00:00
sealDb() {
if (this.db === null) {
return Promise.reject('database not initialized');
}
return this.db.meta.put({name: 'version', value: this.dbVer});
2016-03-21 00:15:40 +00:00
}
2016-08-24 03:33:04 +00:00
findTerm(term) {
2016-09-12 05:47:08 +00:00
if (this.db === null) {
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-08-22 02:51:12 +00:00
results.push({
2016-08-24 03:33:04 +00:00
expression: row.expression,
reading: row.reading,
2016-10-22 04:33:54 +00:00
tags: splitField(row.tags),
2016-08-24 03:33:04 +00:00
glossary: row.glossary,
id: row.id
2016-08-22 02:51:12 +00:00
});
}).then(() => {
2016-08-30 02:51:37 +00:00
return this.getEntities();
2016-09-11 02:40:56 +00:00
}).then(entities => {
2016-08-30 02:51:37 +00:00
for (const result of results) {
result.entities = entities;
}
return results;
2016-08-22 02:51:12 +00:00
});
}
2016-04-13 06:12:20 +00:00
2016-08-22 02:51:12 +00:00
findKanji(kanji) {
2016-09-12 05:47:08 +00:00
if (this.db === null) {
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-08-22 02:51:12 +00:00
results.push({
2016-09-11 19:29:18 +00:00
character: row.character,
2016-10-22 04:33:54 +00:00
onyomi: splitField(row.onyomi),
kunyomi: splitField(row.kunyomi),
tags: splitField(row.tags),
2016-09-11 19:29:18 +00:00
glossary: row.meanings
2016-08-22 02:51:12 +00:00
});
2016-09-11 19:29:18 +00:00
}).then(() => results);
}
2016-08-24 03:33:04 +00:00
2016-08-30 02:51:37 +00:00
getEntities(tags) {
2016-09-12 05:47:08 +00:00
if (this.db === null) {
return Promise.reject('database not initialized');
}
2016-08-24 05:22:09 +00:00
if (this.entities !== null) {
2016-09-12 05:47:08 +00:00
return Promise.resolve(this.entities);
2016-08-24 05:22:09 +00:00
}
2016-08-24 03:33:04 +00:00
2016-09-11 02:40:56 +00:00
return this.db.entities.toArray(rows => {
2016-08-24 05:22:09 +00:00
this.entities = {};
for (const row of rows) {
this.entities[row.name] = row.value;
}
2016-08-30 02:51:37 +00:00
return this.entities;
2016-08-24 05:22:09 +00:00
});
}
2016-08-24 03:33:04 +00:00
importTermDict(indexUrl, callback) {
2016-09-12 05:47:08 +00:00
if (this.db === null) {
return Promise.reject('database not initialized');
}
2016-08-24 05:22:09 +00:00
2016-11-06 00:30:00 +00:00
const indexLoaded = (dictionary, entities) => {
2016-11-05 23:44:29 +00:00
this.entities = entities || {};
const rows = [];
for (const name in entities || {}) {
2016-11-06 00:30:00 +00:00
rows.push({
dictionary,
name,
value: entities[name]
});
2016-08-24 03:33:04 +00:00
}
2016-11-05 23:44:29 +00:00
return this.db.entities.bulkAdd(rows);
};
2016-08-24 03:33:04 +00:00
2016-11-06 00:30:00 +00:00
const entriesLoaded = (dictionary, entries, total, current) => {
2016-11-05 23:44:29 +00:00
const rows = [];
for (const [expression, reading, tags, ...glossary] of entries) {
2016-11-06 00:30:00 +00:00
rows.push({
dictionary,
expression,
reading,
tags,
glossary
});
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) {
callback(current, total, indexUrl);
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-06 00:30:00 +00:00
return importJsonDb(indexUrl, indexLoaded, entriesLoaded);
2016-08-24 03:33:04 +00:00
}
importKanjiDict(indexUrl, callback) {
2016-09-12 05:47:08 +00:00
if (this.db === null) {
return Promise.reject('database not initialized');
}
2016-08-24 05:22:09 +00:00
2016-11-06 00:30:00 +00:00
const entriesLoaded = (dictionary, entries, total, current) => {
2016-11-05 23:44:29 +00:00
const rows = [];
for (const [character, onyomi, kunyomi, tags, ...meanings] of entries) {
2016-11-06 00:30:00 +00:00
rows.push({
dictionary,
character,
onyomi,
kunyomi,
tags,
meanings
});
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) {
callback(current, total, indexUrl);
}
});
};
2016-08-24 05:22:09 +00:00
2016-11-05 23:44:29 +00:00
return importJsonDb(indexUrl, null, entriesLoaded);
2016-08-24 05:22:09 +00:00
}
2016-03-20 02:32:35 +00:00
}