yomichan/ext/bg/js/deinflector.js

116 lines
3.1 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 = [];
this.term = term;
this.tags = tags;
this.rule = rule;
}
validate(validator) {
for (let tags of validator(this.term)) {
2016-03-21 00:52:14 +00:00
if (this.tags.length === 0) {
return true;
}
for (let tag of this.tags) {
2016-04-17 03:11:27 +00:00
if (tags.indexOf(tag) !== -1) {
2016-03-21 00:52:14 +00:00
return true;
}
}
}
return false;
}
deinflect(validator, rules) {
if (this.validate(validator)) {
2016-04-17 03:11:27 +00:00
const child = new Deinflection(this.term, this.tags);
2016-03-21 00:52:14 +00:00
this.children.push(child);
}
for (let rule in rules) {
2016-03-24 01:12:33 +00:00
const variants = rules[rule];
for (let v of variants) {
2016-03-21 00:52:14 +00:00
let allowed = this.tags.length === 0;
for (let tag of this.tags) {
2016-08-07 06:16:55 +00:00
if (v.ti.indexOf(tag) !== -1) {
2016-03-21 00:52:14 +00:00
allowed = true;
break;
}
}
2016-08-07 06:16:55 +00:00
if (!allowed || !this.term.endsWith(v.ki)) {
2016-03-21 01:27:11 +00:00
continue;
}
2016-08-07 06:16:55 +00:00
const term = this.term.slice(0, -v.ki.length) + v.ko;
const child = new Deinflection(term, v.to, rule);
2016-03-21 01:27:11 +00:00
if (child.deinflect(validator, rules)) {
2016-03-24 01:12:33 +00:00
this.children.push(child);
2016-03-21 01:27:11 +00:00
}
2016-03-21 00:52:14 +00:00
}
}
return this.children.length > 0;
}
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 (let child of this.children) {
for (let 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-03-21 00:52:14 +00:00
if (node.deinflect(validator, this.rules)) {
return node.gather();
}
return null;
}
}