2014-12-19 23:29:16 +03:00
|
|
|
from libcpp.vector cimport vector
|
|
|
|
|
|
|
|
from cpython cimport Py_UNICODE_ISSPACE, Py_UNICODE_ISALPHA, Py_UNICODE_ISUPPER
|
|
|
|
|
|
|
|
from preshed.maps cimport PreshMap
|
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
|
|
|
|
from .typedefs cimport hash_t
|
2015-01-12 02:26:22 +03:00
|
|
|
from .structs cimport LexemeC, TokenC, Morphology, UniStr
|
2014-12-19 23:29:16 +03:00
|
|
|
from .strings cimport StringStore
|
2015-07-13 21:20:58 +03:00
|
|
|
from .tokens.doc cimport Doc
|
2014-12-19 23:29:16 +03:00
|
|
|
from .vocab cimport Vocab, _Cached
|
|
|
|
|
|
|
|
|
|
|
|
cdef union LexemesOrTokens:
|
2015-01-12 02:26:22 +03:00
|
|
|
const LexemeC* const* lexemes
|
2014-12-19 23:29:16 +03:00
|
|
|
TokenC* tokens
|
|
|
|
|
|
|
|
|
|
|
|
cdef class Tokenizer:
|
|
|
|
cdef Pool mem
|
|
|
|
cdef PreshMap _cache
|
|
|
|
cdef PreshMap _specials
|
|
|
|
cpdef readonly Vocab vocab
|
|
|
|
|
|
|
|
cdef object _prefix_re
|
|
|
|
cdef object _suffix_re
|
|
|
|
cdef object _infix_re
|
|
|
|
|
2015-07-08 19:53:00 +03:00
|
|
|
cpdef Doc tokens_from_list(self, list strings)
|
2014-12-19 23:29:16 +03:00
|
|
|
|
2015-07-13 22:46:02 +03:00
|
|
|
cdef int _try_cache(self, hash_t key, Doc tokens) except -1
|
2015-07-08 19:53:00 +03:00
|
|
|
cdef int _tokenize(self, Doc tokens, UniStr* span, int start, int end) except -1
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef UniStr* _split_affixes(self, UniStr* string, vector[LexemeC*] *prefixes,
|
|
|
|
vector[LexemeC*] *suffixes) except NULL
|
2015-07-08 19:53:00 +03:00
|
|
|
cdef int _attach_tokens(self, Doc tokens, int idx, UniStr* string,
|
2015-01-12 02:26:22 +03:00
|
|
|
vector[LexemeC*] *prefixes, vector[LexemeC*] *suffixes) except -1
|
2014-12-19 23:29:16 +03:00
|
|
|
cdef int _find_prefix(self, Py_UNICODE* characters, size_t length) except -1
|
|
|
|
cdef int _find_suffix(self, Py_UNICODE* characters, size_t length) except -1
|
|
|
|
cdef int _find_infix(self, Py_UNICODE* characters, size_t length) except -1
|
|
|
|
cdef int _save_cached(self, const TokenC* tokens, hash_t key, int n) except -1
|