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 cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxListFree,
1)
67 CX_EXPORT CxList *cxKvListCreate(
const CxAllocator *allocator,
68 size_t elem_size);
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88 cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxMapFree,
1)
89 CX_EXPORT CxMap *cxKvListCreateAsMap(
const CxAllocator *allocator,
90 size_t elem_size);
91
92
93
94
95
96
97
98 cx_attr_nodiscard cx_attr_nonnull cx_attr_returns_nonnull
99 CX_EXPORT CxList *cxKvListAsList(CxMap *map);
100
101
102
103
104
105
106
107 cx_attr_nodiscard cx_attr_nonnull cx_attr_returns_nonnull
108 CX_EXPORT CxMap *cxKvListAsMap(CxList *list);
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123 cx_attr_nonnull
124 CX_EXPORT int cx_kv_list_set_key(CxList *list,
size_t index, CxHashKey key);
125
126
127
128
129
130
131
132
133
134
135
136
137 cx_attr_nonnull
138 CX_EXPORT int cx_kv_list_insert(CxList *list,
size_t index, CxHashKey key,
void *value);
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153 #define cxKvListSetKey(list, index, key) cx_kv_list_set_key(list, index,
CX_HASH_KEY(key))
154
155
156
157
158
159
160
161
162
163
164
165
166 #define cxKvListInsert(list, index, key, value) cx_kv_list_insert(list, index,
CX_HASH_KEY(key), value)
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181 cx_attr_nonnull
182 CX_EXPORT int cxKvListRemoveKey(CxList *list,
size_t index);
183
184
185
186
187
188
189
190
191 cx_attr_nonnull
192 CX_EXPORT const CxHashKey *cxKvListGetKey(CxList *list,
size_t index);
193
194
195
196
197
198
199
200
201
202
203 #define cxKvListAdd(list, key, value) cxKvListInsert(list, (list)->collection.size, key, value)
204
205 #ifdef __cplusplus
206 }
207 #endif
208
209 #endif
210