yomichan/ext/bg/js/deinflector.js

121 lines
3.4 KiB
JavaScript
Raw Normal View History

2016-03-21 00:52:14 +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 Deinflection {
constructor(term, tags=[], rule='') {
this.children = [];
2016-08-07 20:01:27 +00:00
this.term = term;
this.tags = tags;
this.rule = rule;
2016-03-21 00:52:14 +00:00
}
validate(validator) {
2016-09-11 19:29:18 +00:00
return validator(this.term).then(sets => {
for (const tags of sets) {
2016-09-11 01:57:00 +00:00
if (this.tags.length === 0) {
2016-03-21 00:52:14 +00:00
return true;
}
2016-09-11 01:57:00 +00:00
for (const tag of this.tags) {
2016-09-11 19:29:18 +00:00
if (tags.includes(tag)) {
2016-09-11 01:57:00 +00:00
return true;
}
}
2016-03-21 00:52:14 +00:00
}
2016-09-11 01:57:00 +00:00
return false;
});
2016-03-21 00:52:14 +00:00
}
deinflect(validator, rules) {
2016-09-11 01:57:00 +00:00
const promises = [
this.validate(validator).then(valid => {
const child = new Deinflection(this.term, this.tags);
this.children.push(child);
})
];
2016-03-21 00:52:14 +00:00
for (const rule in rules) {
2016-08-21 02:15:30 +00:00
for (const variant of rules[rule]) {
2016-03-21 00:52:14 +00:00
let allowed = this.tags.length === 0;
for (const tag of this.tags) {
2016-09-11 19:29:18 +00:00
if (variant.ti.includes(tag)) {
2016-03-21 00:52:14 +00:00
allowed = true;
break;
}
}
2016-08-21 02:15:30 +00:00
if (!allowed || !this.term.endsWith(variant.ki)) {
2016-03-21 01:27:11 +00:00
continue;
}
2016-08-21 02:15:30 +00:00
const term = this.term.slice(0, -variant.ki.length) + variant.ko;
const child = new Deinflection(term, variant.to, rule);
2016-09-11 01:57:00 +00:00
promises.push(
child.deinflect(validator, rules).then(valid => {
if (valid) {
this.children.push(child);
}
}
));
2016-03-21 00:52:14 +00:00
}
}
2016-09-11 01:57:00 +00:00
return Promise.all(promises).then(() => {
return this.children.length > 0;
});
2016-03-21 00:52:14 +00:00
}
gather() {
if (this.children.length === 0) {
2016-04-17 03:11:27 +00:00
return [{root: this.term, tags: this.tags, rules: []}];
2016-03-21 00:52:14 +00:00
}
const paths = [];
for (const child of this.children) {
for (const path of child.gather()) {
2016-03-21 00:52:14 +00:00
if (this.rule.length > 0) {
2016-03-24 01:12:33 +00:00
path.rules.push(this.rule);
2016-03-21 00:52:14 +00:00
}
path.source = this.term;
paths.push(path);
}
}
return paths;
}
}
class Deinflector {
constructor() {
this.rules = {};
}
setRules(rules) {
this.rules = rules;
}
deinflect(term, validator) {
2016-03-21 01:27:11 +00:00
const node = new Deinflection(term);
2016-09-11 19:29:18 +00:00
return node.deinflect(validator, this.rules).then(success => success ? node.gather() : []);
2016-03-21 00:52:14 +00:00
}
}