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-04-01 03:03:39 +00:00
|
|
|
this.terms = [];
|
|
|
|
this.termIndices = {};
|
2016-03-21 00:15:40 +00:00
|
|
|
|
2016-04-01 03:03:39 +00:00
|
|
|
this.kanji = [];
|
|
|
|
this.kanjiIndices = {};
|
2016-03-21 00:15:40 +00:00
|
|
|
}
|
|
|
|
|
2016-04-02 05:13:37 +00:00
|
|
|
addTermData(terms) {
|
2016-04-01 03:03:39 +00:00
|
|
|
let index = this.terms.length;
|
2016-04-02 05:30:30 +00:00
|
|
|
for (const [e, r, g, t] of terms) {
|
2016-04-01 03:03:39 +00:00
|
|
|
this.storeIndex(this.termIndices, e, index);
|
|
|
|
this.storeIndex(this.termIndices, r, index++);
|
|
|
|
this.terms.push([e, r, g, t]);
|
2016-03-21 00:15:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:13:37 +00:00
|
|
|
addKanjiData(kanji) {
|
2016-04-01 03:03:39 +00:00
|
|
|
let index = this.kanji.length;
|
2016-04-02 05:30:30 +00:00
|
|
|
for (const [c, k, o, g] of kanji) {
|
2016-04-01 03:03:39 +00:00
|
|
|
this.storeIndex(this.kanjiIndices, c, index++);
|
|
|
|
this.kanji.push([c, k, o, g]);
|
2016-03-21 00:15:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-01 03:03:39 +00:00
|
|
|
findTerm(term) {
|
|
|
|
return (this.termIndices[term] || []).map(index => {
|
|
|
|
const [e, r, g, t] = this.terms[index];
|
2016-04-02 05:13:37 +00:00
|
|
|
return {id: index, expression: e, reading: r, glossary: g, tags: t.split(' ')};
|
2016-03-21 00:15:40 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-04-01 03:03:39 +00:00
|
|
|
findKanji(kanji) {
|
|
|
|
return (this.kanjiIndices[kanji] || []).map(index => {
|
|
|
|
const [c, k, o, g] = def;
|
2016-04-02 05:13:37 +00:00
|
|
|
return {id: index, character: c, kunyomi: k, onyomi: o, glossary: g};
|
2016-04-01 03:03:39 +00:00
|
|
|
});
|
|
|
|
}
|
2016-03-20 02:32:35 +00:00
|
|
|
|
2016-04-01 03:03:39 +00:00
|
|
|
storeIndex(indices, term, index) {
|
|
|
|
if (term.length > 0) {
|
|
|
|
const indices = this.termIndices[term] || [];
|
2016-04-02 19:56:47 +00:00
|
|
|
indices.push(index);
|
2016-04-01 03:03:39 +00:00
|
|
|
this.termIndices[term] = indices;
|
|
|
|
}
|
2016-03-20 17:52:27 +00:00
|
|
|
}
|
2016-03-20 02:32:35 +00:00
|
|
|
}
|