2013-11-09 21:04:36 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2013-11-09 23:42:02 +00:00
|
|
|
|
# Copyright (C) 2013 Alex Yatskov
|
2013-11-09 21:04:36 +00:00
|
|
|
|
# This module is based on Rikaichan code written by Jonathan Zarate
|
|
|
|
|
#
|
|
|
|
|
# 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-05-29 23:18:07 +00:00
|
|
|
|
import re
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Translator:
|
|
|
|
|
def __init__(self, deinflector, dictionary):
|
|
|
|
|
self.deinflector = deinflector
|
2016-05-08 03:24:59 +00:00
|
|
|
|
self.dictionary = dictionary
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
|
|
|
|
|
2013-11-16 19:21:35 +00:00
|
|
|
|
def findTerm(self, text, wildcards=False):
|
2016-05-29 23:18:07 +00:00
|
|
|
|
if wildcards:
|
|
|
|
|
text = re.sub(u'[\**]', u'%', text)
|
|
|
|
|
text = re.sub(u'[\??]', u'_', text)
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
2016-05-09 21:33:52 +00:00
|
|
|
|
groups = {}
|
2013-11-11 04:27:25 +00:00
|
|
|
|
for i in xrange(len(text), 0, -1):
|
|
|
|
|
term = text[:i]
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
2016-05-09 21:33:52 +00:00
|
|
|
|
dfs = self.deinflector.deinflect(term, lambda term: [d['tags'] for d in self.dictionary.findTerm(term)])
|
|
|
|
|
if dfs is None:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
for df in dfs:
|
|
|
|
|
self.processTerm(groups, **df)
|
|
|
|
|
|
|
|
|
|
definitions = groups.values()
|
2016-05-18 03:31:40 +00:00
|
|
|
|
definitions = sorted(
|
|
|
|
|
definitions,
|
|
|
|
|
reverse=True,
|
|
|
|
|
key=lambda d: (
|
|
|
|
|
len(d['source']),
|
|
|
|
|
'P' in d['tags'],
|
|
|
|
|
-len(d['rules']),
|
|
|
|
|
d['expression']
|
|
|
|
|
)
|
|
|
|
|
)
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
|
|
|
|
length = 0
|
2016-05-09 21:33:52 +00:00
|
|
|
|
for result in definitions:
|
2013-11-09 23:42:02 +00:00
|
|
|
|
length = max(length, len(result['source']))
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
2016-05-09 21:33:52 +00:00
|
|
|
|
return definitions, length
|
2013-11-09 21:04:36 +00:00
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
2016-05-18 05:12:05 +00:00
|
|
|
|
def findKanji(self, text):
|
2016-05-08 03:24:59 +00:00
|
|
|
|
processed = {}
|
|
|
|
|
results = []
|
2013-11-14 17:22:20 +00:00
|
|
|
|
for c in text:
|
2013-11-16 03:53:05 +00:00
|
|
|
|
if c not in processed:
|
2016-05-09 21:33:52 +00:00
|
|
|
|
match = self.dictionary.findKanji(c)
|
2013-11-16 03:53:05 +00:00
|
|
|
|
if match is not None:
|
|
|
|
|
results.append(match)
|
|
|
|
|
processed[c] = match
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
2013-11-16 03:53:05 +00:00
|
|
|
|
return results
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
|
|
|
|
|
2016-05-09 21:33:52 +00:00
|
|
|
|
def processTerm(self, groups, source, tags, rules=[], root='', wildcards=False):
|
2013-11-16 19:21:35 +00:00
|
|
|
|
for entry in self.dictionary.findTerm(root, wildcards):
|
2016-05-09 21:33:52 +00:00
|
|
|
|
if entry['id'] in groups:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
matched = len(tags) == 0
|
|
|
|
|
for tag in tags:
|
|
|
|
|
if tag in entry['tags']:
|
|
|
|
|
matched = True
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
if matched:
|
|
|
|
|
groups[entry['id']] = {
|
|
|
|
|
'expression': entry['expression'],
|
|
|
|
|
'reading': entry['reading'],
|
|
|
|
|
'glossary': entry['glossary'],
|
|
|
|
|
'tags': entry['tags'],
|
|
|
|
|
'source': source,
|
|
|
|
|
'rules': rules
|
|
|
|
|
}
|