2018-10-29 10:29:51 +00:00
|
|
|
from xml.etree import ElementTree
|
|
|
|
import re
|
|
|
|
from enum import Enum
|
2019-05-29 18:22:22 +00:00
|
|
|
from collections import defaultdict, namedtuple, Counter
|
2019-01-08 20:13:36 +00:00
|
|
|
import sys
|
2019-01-19 21:42:51 +00:00
|
|
|
import logging
|
2019-02-06 14:28:39 +00:00
|
|
|
import argparse
|
2019-02-09 12:40:57 +00:00
|
|
|
import pickle
|
2019-02-06 14:29:37 +00:00
|
|
|
import time
|
2019-02-17 14:55:17 +00:00
|
|
|
import subprocess
|
|
|
|
import concurrent.futures
|
|
|
|
import tempfile
|
2019-06-09 22:25:36 +00:00
|
|
|
from math import log2
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
from msd_translate import MSD_TRANSLATE
|
2019-06-03 07:47:36 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from tqdm import tqdm
|
|
|
|
except ImportError:
|
|
|
|
tqdm = lambda x: x
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
|
2019-06-10 12:05:40 +00:00
|
|
|
MAX_NUM_COMPONENTS = -1
|
2019-01-25 10:58:40 +00:00
|
|
|
|
2018-10-29 10:29:51 +00:00
|
|
|
CODES = {
|
|
|
|
"Noun": "N",
|
|
|
|
"Verb": "V",
|
|
|
|
"Adjective": "A",
|
|
|
|
"Adverb": "R",
|
|
|
|
"Pronoun": "P",
|
|
|
|
"Numeral": "M",
|
|
|
|
"Preposition": "S",
|
|
|
|
"Conjunction": "C",
|
|
|
|
"Particle": "Q",
|
|
|
|
"Interjection": "I",
|
|
|
|
"Abbreviation": "Y",
|
|
|
|
"Residual": "X",
|
|
|
|
|
|
|
|
'common': 'c',
|
|
|
|
'proper': 'p',
|
|
|
|
'masculine': 'm',
|
|
|
|
'feminine': 'f',
|
|
|
|
'neuter': 'n',
|
|
|
|
"singular": "s",
|
|
|
|
"dual": "d",
|
|
|
|
"plural": "p",
|
|
|
|
"nominative": "n",
|
|
|
|
"genitive": "g",
|
|
|
|
"dative": "d",
|
|
|
|
"accusative": "a",
|
|
|
|
"locative": "l",
|
|
|
|
"instrumental": "i",
|
|
|
|
"no": "n",
|
|
|
|
"yes": "y",
|
|
|
|
"main": "m",
|
|
|
|
"auxiliary": "a",
|
|
|
|
"perfective": "e",
|
|
|
|
"progressive": "p",
|
|
|
|
"biaspectual": "b",
|
|
|
|
"infinitive": "n",
|
|
|
|
"supine": "u",
|
|
|
|
"participle": "p",
|
|
|
|
"present": "r",
|
|
|
|
"future": "f",
|
|
|
|
"conditional": "c",
|
|
|
|
"imperative": "m",
|
|
|
|
"first": "1",
|
|
|
|
"second": "2",
|
|
|
|
"third": "3",
|
|
|
|
"general": "g",
|
|
|
|
"possessive": "s",
|
|
|
|
"positive": "p",
|
|
|
|
"comparative": "c",
|
|
|
|
"superlative": "s",
|
|
|
|
"personal": "p",
|
|
|
|
"demonstrative": "d",
|
|
|
|
"relative": "r",
|
|
|
|
"reflexive": "x",
|
|
|
|
"interrogative": "q",
|
|
|
|
"indefinite": "i",
|
|
|
|
"negative": "z",
|
|
|
|
"bound": "b",
|
|
|
|
"digit": "d",
|
|
|
|
"roman": "r",
|
|
|
|
"letter": "l",
|
|
|
|
"cardinal": "c",
|
|
|
|
"ordinal": "o",
|
|
|
|
"pronominal": "p",
|
|
|
|
"special": "s",
|
|
|
|
"coordinating": "c",
|
|
|
|
"subordinating": "s",
|
|
|
|
"foreign": "f",
|
|
|
|
"typo": "t",
|
|
|
|
"program": "p",
|
|
|
|
}
|
|
|
|
|
|
|
|
TAGSET = {
|
|
|
|
"N": ['type', 'gender', 'number', 'case', 'animate'],
|
|
|
|
"V": ['type', 'aspect', 'vform', 'person', 'number', 'gender', 'negative'],
|
|
|
|
"A": ['type', 'degree', 'gender', 'number', 'case', 'definiteness'],
|
|
|
|
"R": ['type', 'degree'],
|
|
|
|
"P": ['type', 'person', 'gender', 'number', 'case', 'owner_number', 'owned_gender', 'clitic'],
|
|
|
|
"M": ['form', 'type', 'gender', 'number', 'case', 'definiteness'],
|
|
|
|
"S": ['case'],
|
|
|
|
"C": ['type'],
|
|
|
|
"Q": [],
|
|
|
|
"I": [],
|
|
|
|
"Y": [],
|
|
|
|
"X": ['type']
|
|
|
|
}
|
|
|
|
|
|
|
|
CATEGORY_BASES = {
|
2019-01-19 21:42:51 +00:00
|
|
|
"N": ['.'] * 5,
|
|
|
|
"V": ['.'] * 7,
|
|
|
|
"A": ['.'] * 6,
|
|
|
|
"R": ['.'] * 2,
|
|
|
|
"P": ['.'] * 6,
|
|
|
|
"M": ['.'] * 6,
|
|
|
|
"S": ['.'] * 1,
|
|
|
|
"C": ['.'] * 1,
|
2018-10-29 10:29:51 +00:00
|
|
|
"Q": [],
|
|
|
|
"I": [],
|
|
|
|
"Y": [],
|
2019-01-19 21:42:51 +00:00
|
|
|
"X": ['.'] * 1
|
2018-10-29 10:29:51 +00:00
|
|
|
}
|
|
|
|
|
2019-06-08 09:27:51 +00:00
|
|
|
class ComponentType(Enum):
|
|
|
|
Other = 0
|
|
|
|
Core = 2
|
|
|
|
Core2w = 3
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
class RestrictionType(Enum):
|
|
|
|
Morphology = 0
|
|
|
|
Lexis = 1
|
2019-01-19 21:42:51 +00:00
|
|
|
MatchAll = 2
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-02-04 10:01:30 +00:00
|
|
|
class Order(Enum):
|
|
|
|
FromTo = 0
|
|
|
|
ToFrom = 1
|
|
|
|
Any = 2
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def new(order):
|
2019-06-08 13:43:53 +00:00
|
|
|
if order is None:
|
2019-02-04 10:01:30 +00:00
|
|
|
return Order.Any
|
2019-06-08 13:43:53 +00:00
|
|
|
elif order == "to-from":
|
|
|
|
return Order.ToFrom
|
|
|
|
elif order == "from-to":
|
|
|
|
return Order.FromTo
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("What kind of ordering is: {}".format(order))
|
2019-02-04 10:01:30 +00:00
|
|
|
|
2019-02-12 16:38:32 +00:00
|
|
|
|
2019-02-04 10:01:30 +00:00
|
|
|
def match(self, from_w, to_w):
|
|
|
|
if self is Order.Any:
|
|
|
|
return True
|
|
|
|
|
2019-02-12 16:38:32 +00:00
|
|
|
fi = from_w.int_id
|
|
|
|
ti = to_w.int_id
|
2019-02-04 10:01:30 +00:00
|
|
|
|
|
|
|
if self is Order.FromTo:
|
|
|
|
return fi < ti
|
|
|
|
elif self is Order.ToFrom:
|
|
|
|
return ti < fi
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("Should not be here: Order match")
|
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
class ComponentRepresentation:
|
|
|
|
def __init__(self, data, word_renderer):
|
|
|
|
self.data = data
|
|
|
|
self.word_renderer = word_renderer
|
|
|
|
|
|
|
|
self.words = []
|
|
|
|
self.rendition_text = None
|
2019-06-01 08:36:28 +00:00
|
|
|
self.agreement = []
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def get_agreement(self):
|
2019-06-01 08:36:28 +00:00
|
|
|
return []
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
def add_word(self, word):
|
|
|
|
self.words.append(word)
|
|
|
|
|
|
|
|
def render(self):
|
|
|
|
if self.rendition_text is None:
|
|
|
|
self.rendition_text = self._render()
|
|
|
|
|
|
|
|
def _render(self):
|
|
|
|
raise NotImplementedError("Not implemented for class: {}".format(type(self)))
|
|
|
|
|
|
|
|
class LemmaCR(ComponentRepresentation):
|
|
|
|
def _render(self):
|
|
|
|
return self.words[0].lemma if len(self.words) > 0 else None
|
|
|
|
|
|
|
|
class LexisCR(ComponentRepresentation):
|
|
|
|
def _render(self):
|
2019-06-02 10:53:16 +00:00
|
|
|
return self.data['lexis']
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
class WordFormAllCR(ComponentRepresentation):
|
|
|
|
def _render(self):
|
2019-06-01 08:33:02 +00:00
|
|
|
if len(self.words) == 0:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
forms = [w.text.lower() for w in self.words]
|
|
|
|
return "/".join(set(forms))
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
class WordFormAnyCR(ComponentRepresentation):
|
|
|
|
def _render(self):
|
|
|
|
text_forms = {}
|
|
|
|
msd_lemma_txt_triplets = Counter([(w.msd, w.lemma, w.text) for w in self.words])
|
|
|
|
for (msd, lemma, text), _n in reversed(msd_lemma_txt_triplets.most_common()):
|
|
|
|
text_forms[(msd, lemma)] = text
|
|
|
|
|
|
|
|
words_counter = []
|
|
|
|
for word in self.words:
|
|
|
|
words_counter.append((word.msd, word.lemma))
|
2019-06-01 08:35:51 +00:00
|
|
|
sorted_words = sorted(set(words_counter), key=lambda x: -words_counter.count(x))
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
for word_msd, word_lemma in sorted_words:
|
2019-06-01 08:36:28 +00:00
|
|
|
for agr in self.agreement:
|
|
|
|
if not agr.match(word_msd):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
for agr in self.agreement:
|
|
|
|
agr.confirm_match()
|
|
|
|
|
|
|
|
if word_lemma is None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return text_forms[(word_msd, word_lemma)]
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
class WordFormMsdCR(WordFormAnyCR):
|
|
|
|
def __init__(self, *args):
|
|
|
|
super().__init__(*args)
|
2019-06-02 10:53:16 +00:00
|
|
|
self.lemma = None
|
|
|
|
self.msd = None
|
2019-05-30 09:34:31 +00:00
|
|
|
|
2019-06-03 13:09:22 +00:00
|
|
|
def check_msd(self, word_msd):
|
2019-06-02 10:53:16 +00:00
|
|
|
if 'msd' not in self.data:
|
|
|
|
return True
|
|
|
|
selectors = self.data['msd']
|
2019-06-02 11:51:32 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
for key, value in selectors.items():
|
2019-06-03 13:09:22 +00:00
|
|
|
t = word_msd[0]
|
2019-05-30 09:34:31 +00:00
|
|
|
v = TAGSET[t].index(key.lower())
|
2019-06-03 13:09:22 +00:00
|
|
|
f1 = word_msd[v + 1]
|
2019-05-30 09:34:31 +00:00
|
|
|
f2 = CODES[value]
|
|
|
|
|
|
|
|
if '-' not in [f1, f2] and f1 != f2:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def add_word(self, word):
|
2019-06-02 10:53:16 +00:00
|
|
|
if self.lemma is None:
|
|
|
|
self.lemma = word.lemma
|
|
|
|
self.msd = word.msd
|
2019-05-30 09:34:31 +00:00
|
|
|
|
2019-06-03 13:09:22 +00:00
|
|
|
if self.check_msd(word.msd):
|
2019-05-30 09:34:31 +00:00
|
|
|
super().add_word(word)
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def _render(self):
|
2019-06-02 10:53:16 +00:00
|
|
|
msd = self.word_renderer.get_lemma_msd(self.lemma, self.msd)
|
2019-06-11 08:26:10 +00:00
|
|
|
self.words.append(WordMsdOnly(msd))
|
2019-06-02 11:51:32 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
return super()._render()
|
|
|
|
|
2019-06-02 10:53:16 +00:00
|
|
|
class WordFormAgreementCR(WordFormMsdCR):
|
2019-05-30 09:34:31 +00:00
|
|
|
def __init__(self, data, word_renderer):
|
|
|
|
super().__init__(data, word_renderer)
|
2019-06-01 08:36:28 +00:00
|
|
|
self.rendition_candidate = None
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def get_agreement(self):
|
2019-06-02 10:53:16 +00:00
|
|
|
return self.data['other']
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def match(self, word_msd):
|
|
|
|
existing = [(w.msd, w.text) for w in self.words]
|
|
|
|
|
2019-06-08 09:54:47 +00:00
|
|
|
lemma_available_words = self.word_renderer.available_words(self.lemma, existing)
|
|
|
|
for candidate_msd, candidate_text in lemma_available_words:
|
2019-06-02 10:53:16 +00:00
|
|
|
if self.msd[0] != candidate_msd[0]:
|
2019-05-30 09:34:31 +00:00
|
|
|
continue
|
|
|
|
|
2019-06-02 10:53:16 +00:00
|
|
|
if WordFormAgreementCR.check_agreement(word_msd, candidate_msd, self.data['agreement']):
|
2019-06-03 13:09:22 +00:00
|
|
|
if self.check_msd(candidate_msd):
|
|
|
|
self.rendition_candidate = candidate_text
|
|
|
|
return True
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
return False
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-06-01 08:36:28 +00:00
|
|
|
def confirm_match(self):
|
|
|
|
self.rendition_text = self.rendition_candidate
|
2019-05-30 09:34:31 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def check_agreement(msd1, msd2, agreements):
|
|
|
|
for agr_case in agreements:
|
|
|
|
t1 = msd1[0]
|
|
|
|
# if not in msd, some strange msd was tries, skipping...
|
|
|
|
if agr_case not in TAGSET[t1]:
|
2019-06-08 09:54:47 +00:00
|
|
|
logging.warning("Cannot do agreement: {} for msd {} not found!"
|
|
|
|
.format(agr_case, msd1))
|
2019-05-30 09:34:31 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
v1 = TAGSET[t1].index(agr_case)
|
|
|
|
# if none specified: nedolocnik, always agrees
|
2019-06-08 09:42:57 +00:00
|
|
|
if v1 + 1 >= len(msd1):
|
|
|
|
continue
|
2019-05-30 09:34:31 +00:00
|
|
|
# first is uppercase, not in TAGSET
|
|
|
|
m1 = msd1[v1 + 1]
|
|
|
|
|
|
|
|
# REPEAT (not DRY!)
|
|
|
|
t2 = msd2[0]
|
|
|
|
if agr_case not in TAGSET[t2]:
|
2019-06-08 09:54:47 +00:00
|
|
|
logging.warning("Cannot do agreement: {} for msd {} not found!"
|
|
|
|
.format(agr_case, msd2))
|
2019-05-30 09:34:31 +00:00
|
|
|
return False
|
|
|
|
v2 = TAGSET[t2].index(agr_case)
|
2019-06-08 09:42:57 +00:00
|
|
|
if v2 + 1 >= len(msd2):
|
|
|
|
continue
|
2019-05-30 09:34:31 +00:00
|
|
|
m2 = msd2[v2 + 1]
|
|
|
|
|
|
|
|
# match!
|
|
|
|
if '-' not in [m1, m2] and m1 != m2:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def render(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
class ComponentRendition:
|
2019-05-13 07:52:29 +00:00
|
|
|
def __init__(self):
|
2019-06-02 10:53:16 +00:00
|
|
|
self.more = {}
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation_factory = ComponentRepresentation
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-13 07:52:29 +00:00
|
|
|
def add_feature(self, feature):
|
|
|
|
if 'rendition' in feature:
|
|
|
|
if feature['rendition'] == "lemma":
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation_factory = LemmaCR
|
2019-05-13 07:52:29 +00:00
|
|
|
elif feature['rendition'] == "word_form":
|
2019-05-30 09:34:31 +00:00
|
|
|
# just by default, changes with selection
|
|
|
|
self.representation_factory = WordFormAnyCR
|
2019-05-13 07:52:29 +00:00
|
|
|
elif feature['rendition'] == "lexis":
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation_factory = LexisCR
|
2019-06-02 10:53:16 +00:00
|
|
|
self.more['lexis'] = feature['string']
|
2019-05-13 07:52:29 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("Representation rendition: {}".format(feature))
|
|
|
|
|
|
|
|
elif 'selection' in feature:
|
|
|
|
if feature['selection'] == "msd":
|
2019-06-02 10:53:16 +00:00
|
|
|
# could already be agreement
|
|
|
|
if self.representation_factory != WordFormAgreementCR:
|
|
|
|
self.representation_factory = WordFormMsdCR
|
|
|
|
self.more['msd'] = {k: v for k, v in feature.items() if k != 'selection'}
|
2019-05-13 07:52:29 +00:00
|
|
|
elif feature['selection'] == "all":
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation_factory = WordFormAllCR
|
2019-05-20 16:14:11 +00:00
|
|
|
elif feature['selection'] == 'agreement':
|
2019-06-08 13:43:53 +00:00
|
|
|
assert feature['head'][:4] == 'cid_'
|
|
|
|
assert feature['msd'] is not None
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation_factory = WordFormAgreementCR
|
2019-06-02 10:53:16 +00:00
|
|
|
self.more['agreement'] = feature['msd'].split('+')
|
|
|
|
self.more['other'] = feature['head'][4:]
|
2019-05-13 07:52:29 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("Representation selection: {}".format(feature))
|
2019-01-19 21:42:51 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
def cr_instance(self, word_renderer):
|
|
|
|
return self.representation_factory(self.more, word_renderer)
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-13 08:48:21 +00:00
|
|
|
@staticmethod
|
2019-06-09 21:00:19 +00:00
|
|
|
def set_representations(match, word_renderer):
|
2019-05-30 09:34:31 +00:00
|
|
|
representations = {}
|
2019-06-09 21:00:19 +00:00
|
|
|
for c in match.structure.components:
|
2019-05-30 09:34:31 +00:00
|
|
|
representations[c.idx] = []
|
|
|
|
for rep in c.representation:
|
|
|
|
representations[c.idx].append(rep.cr_instance(word_renderer))
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
for cid, reps in representations.items():
|
|
|
|
for rep in reps:
|
2019-06-01 08:36:28 +00:00
|
|
|
for agr in rep.get_agreement():
|
|
|
|
if len(representations[agr]) != 1:
|
|
|
|
n = len(representations[agr])
|
|
|
|
raise NotImplementedError(
|
2019-06-09 21:00:19 +00:00
|
|
|
"Structure {}: ".format(match.structure.id) +
|
2019-06-01 08:36:28 +00:00
|
|
|
"component {} has agreement".format(cid) +
|
|
|
|
" with component {}".format(agr) +
|
|
|
|
", however there are {} (!= 1) representations".format(n) +
|
|
|
|
" of component {}!".format(agr))
|
|
|
|
|
|
|
|
representations[agr][0].agreement.append(rep)
|
2019-05-30 09:34:31 +00:00
|
|
|
|
2019-06-09 21:00:19 +00:00
|
|
|
for words in match.matches:
|
2019-05-22 09:22:07 +00:00
|
|
|
# first pass, check everything but agreements
|
2019-05-15 23:53:38 +00:00
|
|
|
for w_id, w in words.items():
|
2019-06-09 21:00:19 +00:00
|
|
|
component = match.structure.get_component(w_id)
|
2019-05-30 09:34:31 +00:00
|
|
|
component_representations = representations[component.idx]
|
|
|
|
for representation in component_representations:
|
|
|
|
representation.add_word(w)
|
2019-06-01 08:36:28 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
for cid, reps in representations.items():
|
|
|
|
for rep in reps:
|
|
|
|
rep.render()
|
2019-06-09 22:25:36 +00:00
|
|
|
|
2019-05-30 09:34:31 +00:00
|
|
|
for cid, reps in representations.items():
|
2019-06-01 08:35:23 +00:00
|
|
|
reps = [rep.rendition_text for rep in reps]
|
2019-06-09 08:13:46 +00:00
|
|
|
if reps == []:
|
2019-06-01 08:35:23 +00:00
|
|
|
pass
|
|
|
|
elif all(r is None for r in reps):
|
2019-06-09 21:00:19 +00:00
|
|
|
match.representations[cid] = None
|
2019-06-01 08:35:23 +00:00
|
|
|
else:
|
2019-06-09 21:00:19 +00:00
|
|
|
match.representations[cid] = " ".join(("" if r is None else r) for r in reps)
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ComponentStatus(Enum):
|
|
|
|
Optional = 0
|
|
|
|
Required = 1
|
|
|
|
Forbidden = 2
|
|
|
|
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
def get_level(restriction):
|
|
|
|
for feature in restriction:
|
|
|
|
if "level" in feature.keys():
|
|
|
|
lvl = feature.get("level")
|
2019-01-19 21:42:51 +00:00
|
|
|
else:
|
|
|
|
continue
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
raise RuntimeError("Unreachable!")
|
|
|
|
|
|
|
|
|
2019-06-08 09:31:52 +00:00
|
|
|
def determine_ppb(rgx):
|
|
|
|
if rgx[0] in ("A", "N", "R"):
|
|
|
|
return 0
|
|
|
|
elif rgx[0] == "V":
|
|
|
|
if 'a' in rgx[1]:
|
|
|
|
return 3
|
|
|
|
elif 'm' in rgx[1]:
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 2
|
|
|
|
else:
|
|
|
|
return 4
|
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
class MorphologyRegex:
|
|
|
|
def __init__(self, restriction):
|
|
|
|
self.min_msd_length = 1
|
2019-01-19 21:42:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
restr_dict = {}
|
|
|
|
for feature in restriction:
|
|
|
|
feature_dict = dict(feature.items())
|
2019-01-19 21:42:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
match_type = True
|
|
|
|
if "filter" in feature_dict:
|
|
|
|
assert feature_dict['filter'] == "negative"
|
|
|
|
match_type = False
|
|
|
|
del feature_dict['filter']
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
assert len(feature_dict) == 1
|
|
|
|
key, value = next(iter(feature_dict.items()))
|
|
|
|
restr_dict[key] = (value, match_type)
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
assert 'POS' in restr_dict
|
|
|
|
category = restr_dict['POS'][0].capitalize()
|
|
|
|
cat_code = CODES[category]
|
|
|
|
rgx = [cat_code] + CATEGORY_BASES[cat_code]
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
del restr_dict['POS']
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
for attribute, (value, typ) in restr_dict.items():
|
|
|
|
index = TAGSET[cat_code].index(attribute.lower())
|
|
|
|
assert index >= 0
|
|
|
|
|
|
|
|
if '|' in value:
|
|
|
|
match = "".join(CODES[val] for val in value.split('|'))
|
|
|
|
else:
|
|
|
|
match = CODES[value]
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
match = "[{}{}]".format("" if typ else "^", match)
|
|
|
|
rgx[index + 1] = match
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
if typ:
|
|
|
|
self.min_msd_length = max(index + 1, self.min_msd_length)
|
2019-01-25 10:58:40 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
self.re_objects = [re.compile(r) for r in rgx]
|
|
|
|
self.rgx = rgx
|
|
|
|
|
|
|
|
def __call__(self, text):
|
|
|
|
if len(text) <= self.min_msd_length:
|
2019-01-25 10:58:40 +00:00
|
|
|
return False
|
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
for c, r in zip(text, self.re_objects):
|
2019-06-02 10:50:04 +00:00
|
|
|
if not r.match(c):
|
2019-01-19 21:42:51 +00:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
class LexisRegex:
|
|
|
|
def __init__(self, restriction):
|
|
|
|
restr_dict = {}
|
|
|
|
for feature in restriction:
|
|
|
|
restr_dict.update(feature.items())
|
2019-01-19 21:42:51 +00:00
|
|
|
|
2019-06-11 08:02:24 +00:00
|
|
|
assert "lemma" in restr_dict
|
|
|
|
self.match_list = restr_dict['lemma'].split('|')
|
|
|
|
|
|
|
|
def __call__(self, text):
|
|
|
|
return text in self.match_list
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
|
2018-10-29 11:16:42 +00:00
|
|
|
class Restriction:
|
|
|
|
def __init__(self, restriction_tag):
|
2019-06-08 09:31:52 +00:00
|
|
|
self.ppb = 4 # polnopomenska beseda (0-4)
|
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
if restriction_tag is None:
|
|
|
|
self.type = RestrictionType.MatchAll
|
|
|
|
self.matcher = None
|
|
|
|
self.present = None
|
|
|
|
return
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2018-10-29 11:16:42 +00:00
|
|
|
restriction_type = restriction_tag.get('type')
|
|
|
|
if restriction_type == "morphology":
|
|
|
|
self.type = RestrictionType.Morphology
|
2019-06-11 08:02:24 +00:00
|
|
|
self.matcher = MorphologyRegex(list(restriction_tag))
|
|
|
|
self.ppb = determine_ppb(self.matcher.rgx)
|
2019-06-08 09:31:52 +00:00
|
|
|
|
2018-10-29 11:16:42 +00:00
|
|
|
elif restriction_type == "lexis":
|
|
|
|
self.type = RestrictionType.Lexis
|
2019-06-11 08:02:24 +00:00
|
|
|
self.matcher = LexisRegex(list(restriction_tag))
|
2018-10-29 11:16:42 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def match(self, word):
|
|
|
|
if self.type == RestrictionType.Morphology:
|
|
|
|
match_to = word.msd
|
|
|
|
elif self.type == RestrictionType.Lexis:
|
|
|
|
match_to = word.lemma
|
2019-01-19 21:42:51 +00:00
|
|
|
elif self.type == RestrictionType.MatchAll:
|
|
|
|
return True
|
2018-10-29 11:16:42 +00:00
|
|
|
else:
|
|
|
|
raise RuntimeError("Unreachable!")
|
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
return self.matcher(match_to)
|
2018-10-29 11:16:42 +00:00
|
|
|
|
|
|
|
|
2018-10-29 10:29:51 +00:00
|
|
|
class Component:
|
2019-01-19 21:42:51 +00:00
|
|
|
def __init__(self, info):
|
|
|
|
idx = info['cid']
|
|
|
|
name = info['name'] if 'name' in info else None
|
2019-06-08 09:27:51 +00:00
|
|
|
typ = ComponentType.Core if info['type'] == "core" else ComponentType.Other
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
if 'status' not in info:
|
|
|
|
status = ComponentStatus.Required
|
|
|
|
elif info['status'] == 'forbidden':
|
|
|
|
status = ComponentStatus.Forbidden
|
|
|
|
elif info['status'] == 'obligatory':
|
|
|
|
status = ComponentStatus.Required
|
|
|
|
elif info['status'] == 'optional':
|
|
|
|
status = ComponentStatus.Optional
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("strange status: {}".format(info['status']))
|
2018-10-30 12:33:08 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
self.status = status
|
|
|
|
self.name = name
|
2018-10-30 12:33:08 +00:00
|
|
|
self.idx = idx
|
2019-06-08 09:23:50 +00:00
|
|
|
self.restrictions = []
|
2018-10-30 12:33:08 +00:00
|
|
|
self.next_element = []
|
2019-05-30 09:34:31 +00:00
|
|
|
self.representation = []
|
2019-01-19 21:42:51 +00:00
|
|
|
self.selection = {}
|
2019-06-08 09:27:51 +00:00
|
|
|
self.type = typ
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2018-10-30 12:33:08 +00:00
|
|
|
self.iter_ctr = 0
|
|
|
|
|
2019-02-04 10:01:30 +00:00
|
|
|
def add_next(self, next_component, link_label, order):
|
|
|
|
self.next_element.append((next_component, link_label, Order.new(order)))
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2018-10-29 11:16:42 +00:00
|
|
|
def set_restriction(self, restrictions_tag):
|
2019-01-19 21:42:51 +00:00
|
|
|
if restrictions_tag is None:
|
2019-06-08 09:23:50 +00:00
|
|
|
self.restrictions = [Restriction(None)]
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
elif restrictions_tag.tag == "restriction":
|
2019-06-08 09:23:50 +00:00
|
|
|
self.restrictions = [Restriction(restrictions_tag)]
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2018-10-29 11:16:42 +00:00
|
|
|
elif restrictions_tag.tag == "restriction_or":
|
2019-06-08 09:23:50 +00:00
|
|
|
self.restrictions = [Restriction(el) for el in restrictions_tag]
|
2018-10-29 11:16:42 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
raise RuntimeError("Unreachable")
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
def set_representation(self, representation):
|
2019-05-30 09:34:31 +00:00
|
|
|
for rep in representation:
|
|
|
|
crend = ComponentRendition()
|
|
|
|
for feature in rep:
|
|
|
|
crend.add_feature(feature.attrib)
|
|
|
|
self.representation.append(crend)
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
def find_next(self, deps, comps, restrs, reprs):
|
|
|
|
to_ret = []
|
2018-10-30 12:33:08 +00:00
|
|
|
for d in deps:
|
|
|
|
if d[0] == self.idx:
|
2019-02-04 10:01:30 +00:00
|
|
|
_, idx, dep_label, order = d
|
2018-10-30 12:33:08 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
next_component = Component(comps[idx])
|
2018-10-30 12:33:08 +00:00
|
|
|
next_component.set_restriction(restrs[idx])
|
2019-05-13 07:52:29 +00:00
|
|
|
next_component.set_representation(reprs[idx])
|
2019-01-19 21:42:51 +00:00
|
|
|
to_ret.append(next_component)
|
2018-10-30 12:33:08 +00:00
|
|
|
|
2019-02-04 10:01:30 +00:00
|
|
|
self.add_next(next_component, dep_label, order)
|
2019-05-13 07:52:29 +00:00
|
|
|
others = next_component.find_next(deps, comps, restrs, reprs)
|
2019-01-19 21:42:51 +00:00
|
|
|
to_ret.extend(others)
|
|
|
|
|
2019-05-13 07:52:29 +00:00
|
|
|
return to_ret
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
def name_str(self):
|
|
|
|
return "_" if self.name is None else self.name
|
|
|
|
|
2018-10-29 10:29:51 +00:00
|
|
|
def match(self, word):
|
2019-01-19 21:42:51 +00:00
|
|
|
m1 = self._match_self(word)
|
|
|
|
if m1 is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
mn = self._match_next(word)
|
|
|
|
if mn is None:
|
|
|
|
return None
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
to_ret = [m1]
|
|
|
|
for cmatch in mn:
|
|
|
|
# if good match but nothing to add, just continue
|
|
|
|
if len(cmatch) == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# if more than one match found for particular component
|
|
|
|
elif len(cmatch) > 1:
|
|
|
|
# if more than one match in multiple components, NOPE!
|
|
|
|
if len(to_ret) > 1:
|
|
|
|
logging.warning("Strange multiple match: {}".format(
|
|
|
|
str([w.id for w in cmatch[0].values()])))
|
|
|
|
|
|
|
|
for tr in to_ret:
|
|
|
|
tr.update(cmatch[0])
|
|
|
|
continue
|
|
|
|
|
|
|
|
# yeah, so we have found more than one match, =>
|
|
|
|
# more than one element in to_ret
|
|
|
|
to_ret = [{**dict(to_ret[0]), **m} for m in cmatch]
|
|
|
|
|
|
|
|
else:
|
|
|
|
for tr in to_ret:
|
|
|
|
tr.update(cmatch[0])
|
|
|
|
|
|
|
|
return to_ret
|
|
|
|
|
|
|
|
def _match_self(self, word):
|
2018-10-29 11:16:42 +00:00
|
|
|
# matching
|
2019-06-08 09:23:50 +00:00
|
|
|
for restr in self.restrictions:
|
|
|
|
if restr.match(word): # match either
|
|
|
|
return {self.idx: word}
|
2019-01-19 21:42:51 +00:00
|
|
|
|
|
|
|
def _match_next(self, word):
|
|
|
|
# matches for every component in links from this component
|
|
|
|
to_ret = []
|
|
|
|
|
|
|
|
# need to get all links that match
|
2019-02-04 10:01:30 +00:00
|
|
|
for next, link, order in self.next_element:
|
2019-06-08 09:42:57 +00:00
|
|
|
next_links = word.get_links(link)
|
2019-01-19 21:42:51 +00:00
|
|
|
to_ret.append([])
|
|
|
|
|
|
|
|
# good flag
|
|
|
|
good = next.status != ComponentStatus.Required
|
2019-01-25 10:58:40 +00:00
|
|
|
for next_word in next_links:
|
2019-02-04 10:01:30 +00:00
|
|
|
if not order.match(word, next_word):
|
|
|
|
continue
|
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
match = next.match(next_word)
|
|
|
|
|
|
|
|
if match is not None:
|
|
|
|
# special treatement for forbidden
|
|
|
|
if next.status == ComponentStatus.Forbidden:
|
|
|
|
good = False
|
2018-10-30 12:33:08 +00:00
|
|
|
break
|
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
else:
|
2019-06-08 13:43:53 +00:00
|
|
|
assert type(match) is list
|
2019-01-19 21:42:51 +00:00
|
|
|
to_ret[-1].extend(match)
|
|
|
|
good = True
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
# if none matched, nothing found!
|
|
|
|
if not good:
|
|
|
|
return None
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-01-19 21:42:51 +00:00
|
|
|
return to_ret
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SyntacticStructure:
|
|
|
|
def __init__(self):
|
|
|
|
self.id = None
|
|
|
|
self.lbs = None
|
2019-01-19 21:42:51 +00:00
|
|
|
self.components = []
|
2018-10-29 10:29:51 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_xml(xml):
|
|
|
|
st = SyntacticStructure()
|
2018-10-29 11:16:42 +00:00
|
|
|
st.id = xml.get('id')
|
2018-10-29 10:29:51 +00:00
|
|
|
st.lbs = xml.get('LBS')
|
2019-06-08 09:42:57 +00:00
|
|
|
|
2019-06-08 13:43:53 +00:00
|
|
|
assert len(list(xml)) == 1
|
2019-01-19 21:42:51 +00:00
|
|
|
system = next(iter(xml))
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-08 13:43:53 +00:00
|
|
|
assert system.get('type') == 'JOS'
|
2019-01-19 21:42:51 +00:00
|
|
|
components, dependencies, definitions = list(system)
|
2018-10-29 10:29:51 +00:00
|
|
|
|
2019-06-08 09:54:47 +00:00
|
|
|
deps = [(dep.get('from'), dep.get('to'), dep.get('label'), dep.get('order'))
|
2019-06-09 08:13:46 +00:00
|
|
|
for dep in dependencies]
|
|
|
|
comps = {comp.get('cid'): dict(comp.items()) for comp in components}
|
2019-01-19 21:42:51 +00:00
|
|