2014-12-19 19:42:01 +00:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from preshed.maps cimport PreshMap
|
2014-12-19 20:41:08 +00:00
|
|
|
from murmurhash.mrmr cimport hash64
|
2014-12-19 19:42:01 +00:00
|
|
|
|
2014-12-19 20:41:08 +00:00
|
|
|
from .structs cimport Utf8Str, UniStr
|
2015-01-11 23:26:22 +00:00
|
|
|
from .typedefs cimport hash_t
|
|
|
|
|
|
|
|
cpdef hash_t hash_string(unicode string) except 0
|
2014-12-19 20:41:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
cdef inline void slice_unicode(UniStr* s, Py_UNICODE* chars, int start, int end) nogil:
|
|
|
|
s.chars = &chars[start]
|
|
|
|
s.n = end - start
|
2014-12-20 18:36:29 +00:00
|
|
|
s.key = hash64(s.chars, <int>(s.n * sizeof(Py_UNICODE)), 0)
|
2014-12-19 19:42:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
cdef class StringStore:
|
|
|
|
cdef Pool mem
|
|
|
|
cdef Utf8Str* strings
|
|
|
|
cdef size_t size
|
|
|
|
|
|
|
|
cdef PreshMap _map
|
|
|
|
cdef size_t _resize_at
|
|
|
|
|
2015-07-16 17:29:02 +00:00
|
|
|
cdef const Utf8Str* intern(self, char* chars, int length, int* id_) except NULL
|