1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 #ifndef UCX_KV_LIST_H
37 #define UCX_KV_LIST_H
38
39 #include "common.h"
40 #include "list.h"
41 #include "map.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69 cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxListFree,
1)
70 CX_EXPORT CxList *cxKvListCreate(
const CxAllocator *allocator,
71 cx_compare_func comparator,
size_t elem_size);
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94 cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxMapFree,
1)
95 CX_EXPORT CxMap *cxKvListCreateAsMap(
const CxAllocator *allocator,
96 cx_compare_func comparator,
size_t elem_size);
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119 #define cxKvListCreateSimple(elem_size) cxKvListCreate(
NULL,
NULL, elem_size)
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141 #define cxKvListCreateAsMapSimple(elem_size) cxKvListCreateAsMap(
NULL,
NULL, elem_size)
142
143
144
145
146
147
148
149 cx_attr_nodiscard cx_attr_nonnull cx_attr_returns_nonnull
150 CX_EXPORT CxList *cxKvListAsList(CxMap *map);
151
152
153
154
155
156
157
158 cx_attr_nodiscard cx_attr_nonnull cx_attr_returns_nonnull
159 CX_EXPORT CxMap *cxKvListAsMap(CxList *list);
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174 cx_attr_nonnull
175 CX_EXPORT int cx_kv_list_set_key(CxList *list,
size_t index, CxHashKey key);
176
177
178
179
180
181
182
183
184
185
186
187
188 cx_attr_nonnull
189 CX_EXPORT int cx_kv_list_insert(CxList *list,
size_t index, CxHashKey key,
void *value);
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204 #define cxKvListSetKey(list, index, key) cx_kv_list_set_key(list, index,
CX_HASH_KEY(key))
205
206
207
208
209
210
211
212
213
214
215
216
217 #define cxKvListInsert(list, index, key, value) cx_kv_list_insert(list, index,
CX_HASH_KEY(key), value)
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232 cx_attr_nonnull
233 CX_EXPORT int cxKvListRemoveKey(CxList *list,
size_t index);
234
235
236
237
238
239
240
241
242 cx_attr_nonnull
243 CX_EXPORT const CxHashKey *cxKvListGetKey(CxList *list,
size_t index);
244
245
246
247
248
249
250
251
252
253
254 #define cxKvListAdd(list, key, value) cxKvListInsert(list, (list)->collection.size, key, value)
255
256 #ifdef __cplusplus
257 }
258 #endif
259
260 #endif
261