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