collections.pxd 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. from libc.stdint cimport uint32_t
  2. ctypedef void* (*mem_alloc_ft)(size_t size)
  3. ctypedef void* (*mem_calloc_ft)(size_t blocks, size_t size)
  4. ctypedef void (*mem_free_ft)(void* block)
  5. ctypedef size_t (*hash_ft)(const void* key, int l, uint32_t seed)
  6. ctypedef int (*key_compare_ft)(const void* key1, const void* key2)
  7. cdef extern from "common.h":
  8. cdef enum cc_stat:
  9. CC_OK
  10. CC_ERR_ALLOC
  11. CC_ERR_INVALID_CAPACITY
  12. CC_ERR_INVALID_RANGE
  13. CC_ERR_MAX_CAPACITY
  14. CC_ERR_KEY_NOT_FOUND
  15. CC_ERR_VALUE_NOT_FOUND
  16. CC_ERR_OUT_OF_RANGE
  17. CC_ITER_END
  18. #
  19. # int cc_common_cmp_str(const void* key1, const void* key2)
  20. #
  21. # int cc_common_cmp_ptr(const void* key1, const void* key2)
  22. #cdef extern from "array.h":
  23. # ctypedef struct Array:
  24. # pass
  25. #
  26. # ctypedef struct ArrayConf:
  27. # size_t capacity
  28. # float exp_factor
  29. # mem_alloc_ft mem_alloc
  30. # mem_calloc_ft mem_calloc
  31. # mem_free_ft mem_free
  32. #
  33. # ctypedef struct ArrayIter:
  34. # Array* ar
  35. # size_t index
  36. # bint last_removed
  37. #
  38. # ctypedef struct ArrayZipIter:
  39. # Array* ar1
  40. # Array* ar2
  41. # size_t index
  42. # bint last_removed
  43. #
  44. # cc_stat array_new(Array** out)
  45. #
  46. # cc_stat array_new_conf(ArrayConf* conf, Array** out)
  47. #
  48. # void array_conf_init(ArrayConf* conf)
  49. #
  50. # void array_destroy(Array* ar)
  51. #
  52. # ctypedef void (*_array_destroy_cb_cb_ft)(void*)
  53. #
  54. # void array_destroy_cb(Array* ar, _array_destroy_cb_cb_ft cb)
  55. #
  56. # #cc_stat array_add(Array* ar, void* element)
  57. #
  58. # #cc_stat array_add_at(Array* ar, void* element, size_t index)
  59. #
  60. # cc_stat array_replace_at(Array* ar, void* element, size_t index, void** out)
  61. #
  62. # cc_stat array_swap_at(Array* ar, size_t index1, size_t index2)
  63. #
  64. # cc_stat array_remove(Array* ar, void* element, void** out)
  65. #
  66. # cc_stat array_remove_at(Array* ar, size_t index, void** out)
  67. #
  68. # cc_stat array_remove_last(Array* ar, void** out)
  69. #
  70. # void array_remove_all(Array* ar)
  71. #
  72. # void array_remove_all_free(Array* ar)
  73. #
  74. # cc_stat array_get_at(Array* ar, size_t index, void** out)
  75. #
  76. # cc_stat array_get_last(Array* ar, void** out)
  77. #
  78. # cc_stat array_subarray(Array* ar, size_t from_, size_t to, Array** out)
  79. #
  80. # cc_stat array_copy_shallow(Array* ar, Array** out)
  81. #
  82. # ctypedef void* (*_array_copy_deep_cp_ft)(void*)
  83. #
  84. # cc_stat array_copy_deep(Array* ar, _array_copy_deep_cp_ft cp, Array** out)
  85. #
  86. # void array_reverse(Array* ar)
  87. #
  88. # cc_stat array_trim_capacity(Array* ar)
  89. #
  90. # size_t array_contains(Array* ar, void* element)
  91. #
  92. # ctypedef int (*_array_contains_value_cmp_ft)(void*, void*)
  93. #
  94. # size_t array_contains_value(Array* ar, void* element, _array_contains_value_cmp_ft cmp)
  95. #
  96. # size_t array_size(Array* ar)
  97. #
  98. # size_t array_capacity(Array* ar)
  99. #
  100. # cc_stat array_index_of(Array* ar, void* element, size_t* index)
  101. #
  102. # ctypedef int (*_array_sort_cmp_ft)(void*, void*)
  103. #
  104. # void array_sort(Array* ar, _array_sort_cmp_ft cmp)
  105. #
  106. # ctypedef void (*_array_map_fn_ft)(void*)
  107. #
  108. # void array_map(Array* ar, _array_map_fn_ft fn)
  109. #
  110. # ctypedef void (*_array_reduce_fn_ft)(void*, void*, void*)
  111. #
  112. # void array_reduce(Array* ar, _array_reduce_fn_ft fn, void* result)
  113. #
  114. # ctypedef bint (*_array_filter_mut_predicate_ft)(void*)
  115. #
  116. # cc_stat array_filter_mut(Array* ar, _array_filter_mut_predicate_ft predicate)
  117. #
  118. # ctypedef bint (*_array_filter_predicate_ft)(void*)
  119. #
  120. # cc_stat array_filter(Array* ar, _array_filter_predicate_ft predicate, Array** out)
  121. #
  122. # void array_iter_init(ArrayIter* iter, Array* ar)
  123. #
  124. # cc_stat array_iter_next(ArrayIter* iter, void** out)
  125. #
  126. # cc_stat array_iter_remove(ArrayIter* iter, void** out)
  127. #
  128. # cc_stat array_iter_add(ArrayIter* iter, void* element)
  129. #
  130. # cc_stat array_iter_replace(ArrayIter* iter, void* element, void** out)
  131. #
  132. # size_t array_iter_index(ArrayIter* iter)
  133. #
  134. # void array_zip_iter_init(ArrayZipIter* iter, Array* a1, Array* a2)
  135. #
  136. # cc_stat array_zip_iter_next(ArrayZipIter* iter, void** out1, void** out2)
  137. #
  138. # cc_stat array_zip_iter_add(ArrayZipIter* iter, void* e1, void* e2)
  139. #
  140. # cc_stat array_zip_iter_remove(ArrayZipIter* iter, void** out1, void** out2)
  141. #
  142. # cc_stat array_zip_iter_replace(ArrayZipIter* iter, void* e1, void* e2, void** out1, void** out2)
  143. #
  144. # size_t array_zip_iter_index(ArrayZipIter* iter)
  145. #
  146. # void** array_get_buffer(Array* ar)
  147. cdef extern from "hashtable.h":
  148. ctypedef struct TableEntry:
  149. void* key
  150. void* value
  151. size_t hash
  152. TableEntry* next
  153. ctypedef struct HashTable:
  154. pass
  155. ctypedef struct HashTableConf:
  156. float load_factor
  157. size_t initial_capacity
  158. int key_length
  159. uint32_t hash_seed
  160. hash_ft hash
  161. key_compare_ft key_compare
  162. mem_alloc_ft mem_alloc
  163. mem_calloc_ft mem_calloc
  164. mem_free_ft mem_free
  165. ctypedef struct HashTableIter:
  166. HashTable* table
  167. size_t bucket_index
  168. TableEntry* prev_entry
  169. TableEntry* next_entry
  170. # size_t get_table_index(HashTable *table, void *key)
  171. #
  172. # void hashtable_conf_init(HashTableConf* conf)
  173. #
  174. # cc_stat hashtable_new(HashTable** out)
  175. #
  176. # cc_stat hashtable_new_conf(HashTableConf* conf, HashTable** out)
  177. #
  178. # void hashtable_destroy(HashTable* table)
  179. #
  180. # cc_stat hashtable_add(HashTable* table, void* key, void* val)
  181. #
  182. # cc_stat hashtable_get(HashTable* table, void* key, void** out)
  183. #
  184. # cc_stat hashtable_remove(HashTable* table, void* key, void** out)
  185. #
  186. # void hashtable_remove_all(HashTable* table)
  187. #
  188. # bint hashtable_contains_key(HashTable* table, void* key)
  189. #
  190. # size_t hashtable_size(HashTable* table)
  191. #
  192. # size_t hashtable_capacity(HashTable* table)
  193. #
  194. # cc_stat hashtable_get_keys(HashTable* table, Array** out)
  195. #
  196. # cc_stat hashtable_get_values(HashTable* table, Array** out)
  197. #
  198. # size_t hashtable_hash_string(void* key, int len, uint32_t seed)
  199. #
  200. # size_t hashtable_hash(void* key, int len, uint32_t seed)
  201. #
  202. size_t hashtable_hash_ptr(void* key, int len, uint32_t seed)
  203. #
  204. # ctypedef void (*_hashtable_foreach_key_op_ft)(void*)
  205. #
  206. # void hashtable_foreach_key(HashTable* table, _hashtable_foreach_key_op_ft op)
  207. #
  208. # ctypedef void (*_hashtable_foreach_value_op_ft)(void*)
  209. #
  210. # void hashtable_foreach_value(HashTable* table, _hashtable_foreach_value_op_ft op)
  211. #
  212. # void hashtable_iter_init(HashTableIter* iter, HashTable* table)
  213. #
  214. # cc_stat hashtable_iter_next(HashTableIter* iter, TableEntry** out)
  215. #
  216. # cc_stat hashtable_iter_remove(HashTableIter* iter, void** out)
  217. cdef extern from "hashset.h":
  218. ctypedef struct HashSet:
  219. pass
  220. ctypedef HashTableConf HashSetConf
  221. ctypedef struct HashSetIter:
  222. HashTableIter iter
  223. void hashset_conf_init(HashSetConf* conf)
  224. cc_stat hashset_new(HashSet** hs)
  225. cc_stat hashset_new_conf(HashSetConf* conf, HashSet** hs)
  226. void hashset_destroy(HashSet* set)
  227. cc_stat hashset_add(HashSet* set, void* element)
  228. cc_stat hashset_add_or_get(HashSet* set, void** element)
  229. cc_stat hashset_remove(HashSet* set, void* element, void** out)
  230. void hashset_remove_all(HashSet* set)
  231. bint hashset_contains(HashSet* set, void* element)
  232. cc_stat hashset_get(HashSet *set, void **element)
  233. size_t hashset_size(HashSet* set)
  234. size_t hashset_capacity(HashSet* set)
  235. ctypedef void (*_hashset_foreach_op_ft)(void*)
  236. void hashset_foreach(HashSet* set, _hashset_foreach_op_ft op)
  237. void hashset_iter_init(HashSetIter* iter, HashSet* set)
  238. cc_stat hashset_iter_next(HashSetIter* iter, void** out)
  239. cc_stat hashset_iter_remove(HashSetIter* iter, void** out)