2014-08-03 00:51:52 +04:00
|
|
|
from libc.stdint cimport uint32_t
|
2014-07-07 06:21:06 +04:00
|
|
|
from libc.stdint cimport uint64_t
|
2014-08-25 18:42:22 +04:00
|
|
|
from spacy.word cimport Lexeme
|
2014-09-10 20:11:13 +04:00
|
|
|
from spacy.tokens cimport Tokens
|
2014-09-12 05:30:50 +04:00
|
|
|
from spacy.lexeme cimport LexemeC
|
2014-09-26 20:40:03 +04:00
|
|
|
from preshed.maps cimport PreshMap
|
2014-09-10 20:11:13 +04:00
|
|
|
|
2014-09-18 01:09:24 +04:00
|
|
|
from cymem.cymem cimport Pool
|
2014-09-17 22:02:26 +04:00
|
|
|
|
2014-09-12 04:23:51 +04:00
|
|
|
from libcpp.utility cimport pair
|
|
|
|
from libcpp.vector cimport vector
|
|
|
|
from libc.stdint cimport uint64_t, int64_t
|
2014-09-10 20:11:13 +04:00
|
|
|
|
|
|
|
|
2014-09-12 20:00:42 +04:00
|
|
|
cdef extern from "Python.h":
|
|
|
|
cdef bint Py_UNICODE_ISSPACE(Py_UNICODE ch)
|
|
|
|
cdef bint Py_UNICODE_ISALNUM(Py_UNICODE ch)
|
|
|
|
|
|
|
|
|
2014-09-13 01:50:37 +04:00
|
|
|
cdef struct String:
|
|
|
|
Py_UNICODE* chars
|
|
|
|
size_t n
|
|
|
|
uint64_t key
|
|
|
|
|
|
|
|
|
2014-08-27 19:15:39 +04:00
|
|
|
cdef class Lexicon:
|
2014-09-17 22:02:26 +04:00
|
|
|
cdef Pool _mem
|
2014-09-10 20:11:13 +04:00
|
|
|
cpdef readonly size_t size
|
|
|
|
|
2014-10-09 06:50:05 +04:00
|
|
|
cdef vector[LexemeC*] lexemes
|
|
|
|
|
2014-08-27 19:15:39 +04:00
|
|
|
cpdef Lexeme lookup(self, unicode string)
|
2014-09-16 20:01:46 +04:00
|
|
|
cdef LexemeC* get(self, String* s) except NULL
|
2014-08-29 03:59:23 +04:00
|
|
|
|
2014-09-26 20:40:03 +04:00
|
|
|
cdef PreshMap _dict
|
2014-08-29 03:59:23 +04:00
|
|
|
|
|
|
|
cdef list _string_features
|
|
|
|
cdef list _flag_features
|
2014-08-27 19:15:39 +04:00
|
|
|
|
|
|
|
|
2014-07-07 14:47:21 +04:00
|
|
|
cdef class Language:
|
2014-09-17 22:02:26 +04:00
|
|
|
cdef Pool _mem
|
2014-08-29 03:59:23 +04:00
|
|
|
cdef unicode name
|
2014-09-26 20:40:03 +04:00
|
|
|
cdef PreshMap cache
|
|
|
|
cdef PreshMap specials
|
2014-08-27 19:15:39 +04:00
|
|
|
cpdef readonly Lexicon lexicon
|
2014-07-07 06:21:06 +04:00
|
|
|
|
2014-09-25 20:22:52 +04:00
|
|
|
cdef object prefix_re
|
|
|
|
cdef object suffix_re
|
|
|
|
|
2014-09-11 23:37:32 +04:00
|
|
|
cpdef Tokens tokenize(self, unicode text)
|
2014-08-29 03:59:23 +04:00
|
|
|
cpdef Lexeme lookup(self, unicode text)
|
2014-08-16 05:22:03 +04:00
|
|
|
|
2014-09-15 08:33:53 +04:00
|
|
|
cdef int _tokenize(self, vector[LexemeC*] *tokens_v, String* string) except -1
|
2014-10-10 13:23:23 +04:00
|
|
|
|
|
|
|
cdef int _split_body_token(self, vector[LexemeC*] *tokens, String* string) except -1
|
2014-09-16 15:16:02 +04:00
|
|
|
cdef int _find_prefix(self, Py_UNICODE* characters, size_t length)
|
|
|
|
cdef int _find_suffix(self, Py_UNICODE* characters, size_t length)
|
|
|
|
|
|
|
|
cdef int _attach_tokens(self, vector[LexemeC*] *tokens, String* string,
|
|
|
|
vector[LexemeC*] *prefixes,
|
|
|
|
vector[LexemeC*] *suffixes) except -1
|
|
|
|
|
|
|
|
cdef int _save_cached(self, vector[LexemeC*] *tokens, uint64_t key, size_t n) except -1
|
|
|
|
|