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
|
2015-07-18 20:39:57 +00:00
|
|
|
from .typedefs cimport attr_t
|
|
|
|
|
|
|
|
from libc.stdint cimport int64_t
|
2014-12-19 19:42:01 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
2015-07-20 10:06:10 +00:00
|
|
|
ctypedef union Utf8Str:
|
|
|
|
unsigned char[8] s
|
|
|
|
unsigned char* p
|
|
|
|
|
|
|
|
|
2014-12-19 19:42:01 +00:00
|
|
|
cdef class StringStore:
|
|
|
|
cdef Pool mem
|
2015-07-20 10:06:10 +00:00
|
|
|
cdef Utf8Str* c
|
2015-07-18 20:39:57 +00:00
|
|
|
cdef int64_t size
|
2014-12-19 19:42:01 +00:00
|
|
|
|
|
|
|
cdef PreshMap _map
|
|
|
|
cdef size_t _resize_at
|
|
|
|
|
2015-07-20 10:06:10 +00:00
|
|
|
cdef const Utf8Str* intern(self, unsigned char* chars, int length) except NULL
|