2015-08-05 02:05:54 +03:00
|
|
|
from .typedefs cimport attr_t
|
|
|
|
from .attrs cimport attr_id_t
|
|
|
|
from .structs cimport TokenC
|
2015-08-04 16:55:28 +03:00
|
|
|
|
2015-08-05 02:05:54 +03:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from libcpp.vector cimport vector
|
2015-08-04 16:55:28 +03:00
|
|
|
|
2015-08-05 02:05:54 +03:00
|
|
|
from .attrs cimport LENGTH, ENT_TYPE
|
|
|
|
from .tokens.doc cimport get_token_attr
|
|
|
|
from .tokens.doc cimport Doc
|
|
|
|
from .vocab cimport Vocab
|
2015-08-04 16:55:28 +03:00
|
|
|
|
|
|
|
|
2015-08-05 02:05:54 +03:00
|
|
|
cdef struct AttrValue:
|
|
|
|
attr_id_t attr
|
|
|
|
attr_t value
|
2015-08-04 16:55:28 +03:00
|
|
|
|
|
|
|
|
2015-08-05 02:05:54 +03:00
|
|
|
cdef struct Pattern:
|
|
|
|
AttrValue* spec
|
|
|
|
int length
|
2015-08-04 16:55:28 +03:00
|
|
|
|
|
|
|
|
2015-08-05 02:05:54 +03:00
|
|
|
cdef Pattern* init_pattern(Pool mem, object token_specs, attr_t entity_type) except NULL:
|
|
|
|
pattern = <Pattern*>mem.alloc(len(token_specs) + 1, sizeof(Pattern))
|
|
|
|
cdef int i
|
|
|
|
for i, spec in enumerate(token_specs):
|
|
|
|
pattern[i].spec = <AttrValue*>mem.alloc(len(spec), sizeof(AttrValue))
|
|
|
|
pattern[i].length = len(spec)
|
|
|
|
for j, (attr, value) in enumerate(spec):
|
|
|
|
pattern[i].spec[j].attr = attr
|
|
|
|
pattern[i].spec[j].value = value
|
|
|
|
i = len(token_specs)
|
|
|
|
pattern[i].spec = <AttrValue*>mem.alloc(1, sizeof(AttrValue))
|
|
|
|
pattern[i].spec[0].attr = ENT_TYPE
|
|
|
|
pattern[i].spec[0].value = entity_type
|
|
|
|
pattern[i].spec[1].attr = LENGTH
|
|
|
|
pattern[i].spec[1].value = len(token_specs)
|
|
|
|
pattern[i].length = 0
|
|
|
|
return pattern
|
|
|
|
|
|
|
|
|
|
|
|
cdef int match(const Pattern* pattern, const TokenC* token) except -1:
|
|
|
|
cdef int i
|
|
|
|
for i in range(pattern.length):
|
|
|
|
if get_token_attr(token, pattern.spec[i].attr) != pattern.spec[i].value:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
cdef int is_final(const Pattern* pattern) except -1:
|
|
|
|
return (pattern + 1).length == 0
|
|
|
|
|
|
|
|
|
|
|
|
cdef object get_entity(const Pattern* pattern, const TokenC* tokens, int i):
|
|
|
|
pattern += 1
|
|
|
|
i += 1
|
|
|
|
return (pattern.spec[0].value, i - pattern.spec[1].value, i)
|
|
|
|
|
|
|
|
|
|
|
|
cdef class Matcher:
|
|
|
|
cdef Pool mem
|
|
|
|
cdef Pattern** patterns
|
|
|
|
cdef readonly int n_patterns
|
|
|
|
|
2015-08-04 16:55:28 +03:00
|
|
|
def __init__(self, patterns):
|
2015-08-05 02:05:54 +03:00
|
|
|
self.mem = Pool()
|
|
|
|
self.patterns = <Pattern**>self.mem.alloc(len(patterns), sizeof(Pattern*))
|
|
|
|
for i, (token_specs, entity_type) in enumerate(patterns):
|
|
|
|
self.patterns[i] = init_pattern(self.mem, token_specs, entity_type)
|
|
|
|
self.n_patterns = len(patterns)
|
|
|
|
|
|
|
|
def __call__(self, Doc doc):
|
|
|
|
cdef vector[Pattern*] partials
|
|
|
|
cdef int n_partials = 0
|
|
|
|
cdef int q = 0
|
|
|
|
cdef int i, token_i
|
|
|
|
cdef const TokenC* token
|
|
|
|
cdef Pattern* state
|
2015-08-04 16:55:28 +03:00
|
|
|
matches = []
|
2015-08-05 02:05:54 +03:00
|
|
|
for token_i in range(doc.length):
|
|
|
|
token = &doc.data[token_i]
|
|
|
|
q = 0
|
|
|
|
for i in range(partials.size()):
|
|
|
|
state = partials.at(i)
|
|
|
|
if match(state, token):
|
|
|
|
if is_final(state):
|
|
|
|
matches.append(get_entity(state, token, token_i))
|
|
|
|
else:
|
|
|
|
partials[q] = state + 1
|
|
|
|
q += 1
|
|
|
|
partials.resize(q)
|
|
|
|
for i in range(self.n_patterns):
|
|
|
|
state = self.patterns[i]
|
|
|
|
if match(state, token):
|
|
|
|
if is_final(state):
|
|
|
|
matches.append(get_entity(state, token, token_i))
|
2015-08-04 16:55:28 +03:00
|
|
|
else:
|
2015-08-05 02:05:54 +03:00
|
|
|
partials.push_back(state + 1)
|
2015-08-06 01:35:40 +03:00
|
|
|
doc.ents = list(sorted(list(doc.ents) + matches))
|
2015-08-04 16:55:28 +03:00
|
|
|
return matches
|