ucx/cx/array_list.h

changeset 49
2f71f4ee247a
parent 2
fbdfaacc4182
equal deleted inserted replaced
48:ae61523bce20 49:2f71f4ee247a
48 * The maximum item size in an array list that fits into stack buffer when swapped. 48 * The maximum item size in an array list that fits into stack buffer when swapped.
49 */ 49 */
50 extern unsigned cx_array_swap_sbo_size; 50 extern unsigned cx_array_swap_sbo_size;
51 51
52 /** 52 /**
53 * Declares variables for an array that can be used with the convenience macros.
54 *
55 * @see cx_array_simple_add()
56 * @see cx_array_simple_copy()
57 * @see cx_array_initialize()
58 * @see cx_array_simple_add_sorted()
59 * @see cx_array_simple_insert_sorted()
60 */
61 #define CX_ARRAY_DECLARE(type, name) \
62 type * name; \
63 size_t name##_size; \
64 size_t name##_capacity
65
66 /**
67 * Initializes an array declared with CX_ARRAY_DECLARE().
68 *
69 * The memory for the array is allocated with stdlib malloc().
70 * @param array the array
71 * @param capacity the initial capacity
72 */
73 #define cx_array_initialize(array, capacity) \
74 array##_capacity = capacity; \
75 array##_size = 0; \
76 array = malloc(sizeof(array[0]) * capacity)
77
78 /**
53 * Defines a reallocation mechanism for arrays. 79 * Defines a reallocation mechanism for arrays.
54 */ 80 */
55 struct cx_array_reallocator_s { 81 struct cx_array_reallocator_s {
56 /** 82 /**
57 * Re-allocates space for the given array. 83 * Reallocates space for the given array.
58 * 84 *
59 * Implementations are not required to free the original array. 85 * Implementations are not required to free the original array.
60 * This allows re-allocation of static memory by allocating heap memory 86 * This allows reallocation of static memory by allocating heap memory
61 * and copying the array contents. The information in the custom fields of 87 * and copying the array contents. The information in the custom fields of
62 * the referenced allocator can be used to track the state of the memory 88 * the referenced allocator can be used to track the state of the memory
63 * or to transport other additional data. 89 * or to transport other additional data.
64 * 90 *
65 * @param array the array to reallocate 91 * @param array the array to reallocate
118 * 144 *
119 * If the capacity is insufficient to hold the new data, a reallocation 145 * If the capacity is insufficient to hold the new data, a reallocation
120 * attempt is made, unless the \p reallocator is set to \c NULL, in which case 146 * attempt is made, unless the \p reallocator is set to \c NULL, in which case
121 * this function ultimately returns a failure. 147 * this function ultimately returns a failure.
122 * 148 *
123 * @param target the target array 149 * @param target a pointer to the target array
124 * @param size a pointer to the size of the target array 150 * @param size a pointer to the size of the target array
125 * @param capacity a pointer to the target array's capacity - 151 * @param capacity a pointer to the target array's capacity -
126 * \c NULL if only the size shall be used to bound the array 152 * \c NULL if only the size shall be used to bound the array (reallocations
153 * will NOT be supported in that case)
127 * @param index the index where the copied elements shall be placed 154 * @param index the index where the copied elements shall be placed
128 * @param src the source array 155 * @param src the source array
129 * @param elem_size the size of one element 156 * @param elem_size the size of one element
130 * @param elem_count the number of elements to copy 157 * @param elem_count the number of elements to copy
131 * @param reallocator the array re-allocator to use, or \c NULL 158 * @param reallocator the array reallocator to use, or \c NULL
132 * if re-allocation shall not happen 159 * if reallocation shall not happen
133 * @return zero on success, non-zero error code on failure 160 * @return zero on success, non-zero error code on failure
134 */ 161 */
162 __attribute__((__nonnull__(1, 2, 5)))
135 enum cx_array_result cx_array_copy( 163 enum cx_array_result cx_array_copy(
136 void **target, 164 void **target,
137 size_t *size, 165 size_t *size,
138 size_t *capacity, 166 size_t *capacity,
139 size_t index, 167 size_t index,
140 void const *src, 168 const void *src,
141 size_t elem_size, 169 size_t elem_size,
142 size_t elem_count, 170 size_t elem_count,
143 struct cx_array_reallocator_s *reallocator 171 struct cx_array_reallocator_s *reallocator
144 ) __attribute__((__nonnull__(1, 2, 5))); 172 );
173
174 /**
175 * Convenience macro that uses cx_array_copy() with a default layout and the default reallocator.
176 *
177 * @param array the name of the array (NOT a pointer to the array)
178 * @param index the index where the copied elements shall be placed
179 * @param src the source array
180 * @param count the number of elements to copy
181 * @see CX_ARRAY_DECLARE()
182 */
183 #define cx_array_simple_copy(array, index, src, count) \
184 cx_array_copy((void**)&(array), &(array##_size), &(array##_capacity), \
185 index, src, sizeof((array)[0]), count, cx_array_default_reallocator)
145 186
146 /** 187 /**
147 * Adds an element to an array with the possibility of allocating more space. 188 * Adds an element to an array with the possibility of allocating more space.
148 * 189 *
149 * The element \p elem is added to the end of the \p target array which containing 190 * The element \p elem is added to the end of the \p target array which containing
152 * 193 *
153 * If the capacity is insufficient to hold the new element, and the optional 194 * If the capacity is insufficient to hold the new element, and the optional
154 * \p reallocator is not \c NULL, an attempt increase the \p capacity is made 195 * \p reallocator is not \c NULL, an attempt increase the \p capacity is made
155 * and the new capacity is written back. 196 * and the new capacity is written back.
156 * 197 *
157 * @param target the target array 198 * @param target a pointer to the target array
158 * @param size a pointer to the size of the target array 199 * @param size a pointer to the size of the target array
159 * @param capacity a pointer to the target array's capacity - must not be \c NULL 200 * @param capacity a pointer to the target array's capacity - must not be \c NULL
160 * @param elem_size the size of one element 201 * @param elem_size the size of one element
161 * @param elem the element to add 202 * @param elem a pointer to the element to add
162 * @param reallocator the array re-allocator to use, or \c NULL 203 * @param reallocator the array reallocator to use, or \c NULL if reallocation shall not happen
163 * if re-allocation shall not happen
164 * @return zero on success, non-zero error code on failure 204 * @return zero on success, non-zero error code on failure
165 */ 205 */
166 #define cx_array_add(target, size, capacity, elem_size, elem, reallocator) \ 206 #define cx_array_add(target, size, capacity, elem_size, elem, reallocator) \
167 cx_array_copy((void**)(target), size, capacity, *(size), elem, elem_size, 1, reallocator) 207 cx_array_copy((void**)(target), size, capacity, *(size), elem, elem_size, 1, reallocator)
208
209 /**
210 * Convenience macro that uses cx_array_add() with a default layout and
211 * the default reallocator.
212 *
213 * @param array the name of the array (NOT a pointer to the array)
214 * @param elem the element to add (NOT a pointer, address is automatically taken)
215 * @see CX_ARRAY_DECLARE()
216 */
217 #define cx_array_simple_add(array, elem) \
218 cx_array_simple_copy(array, array##_size, &(elem), 1)
219
220
221 /**
222 * Inserts a sorted array into another sorted array.
223 *
224 * If either the target or the source array is not already sorted with respect
225 * to the specified \p cmp_func, the behavior is undefined.
226 *
227 * If the capacity is insufficient to hold the new data, a reallocation
228 * attempt is made.
229 *
230 * @param target a pointer to the target array
231 * @param size a pointer to the size of the target array
232 * @param capacity a pointer to the target array's capacity
233 * @param cmp_func the compare function for the elements
234 * @param src the source array
235 * @param elem_size the size of one element
236 * @param elem_count the number of elements to insert
237 * @param reallocator the array reallocator to use
238 * @return zero on success, non-zero error code on failure
239 */
240 __attribute__((__nonnull__))
241 enum cx_array_result cx_array_insert_sorted(
242 void **target,
243 size_t *size,
244 size_t *capacity,
245 cx_compare_func cmp_func,
246 const void *src,
247 size_t elem_size,
248 size_t elem_count,
249 struct cx_array_reallocator_s *reallocator
250 );
251
252 /**
253 * Inserts an element into a sorted array.
254 *
255 * If the target array is not already sorted with respect
256 * to the specified \p cmp_func, the behavior is undefined.
257 *
258 * If the capacity is insufficient to hold the new data, a reallocation
259 * attempt is made.
260 *
261 * @param target a pointer to the target array
262 * @param size a pointer to the size of the target array
263 * @param capacity a pointer to the target array's capacity
264 * @param elem_size the size of one element
265 * @param elem a pointer to the element to add
266 * @param reallocator the array reallocator to use
267 * @return zero on success, non-zero error code on failure
268 */
269 #define cx_array_add_sorted(target, size, capacity, elem_size, elem, cmp_func, reallocator) \
270 cx_array_insert_sorted((void**)(target), size, capacity, cmp_func, elem, elem_size, 1, reallocator)
271
272 /**
273 * Convenience macro for cx_array_add_sorted() with a default
274 * layout and the default reallocator.
275 *
276 * @param array the name of the array (NOT a pointer to the array)
277 * @param elem the element to add (NOT a pointer, address is automatically taken)
278 * @param cmp_func the compare function for the elements
279 * @see CX_ARRAY_DECLARE()
280 */
281 #define cx_array_simple_add_sorted(array, elem, cmp_func) \
282 cx_array_add_sorted(&array, &(array##_size), &(array##_capacity), \
283 sizeof((array)[0]), &(elem), cmp_func, cx_array_default_reallocator)
284
285 /**
286 * Convenience macro for cx_array_insert_sorted() with a default
287 * layout and the default reallocator.
288 *
289 * @param array the name of the array (NOT a pointer to the array)
290 * @param src pointer to the source array
291 * @param n number of elements in the source array
292 * @param cmp_func the compare function for the elements
293 * @see CX_ARRAY_DECLARE()
294 */
295 #define cx_array_simple_insert_sorted(array, src, n, cmp_func) \
296 cx_array_insert_sorted((void**)(&array), &(array##_size), &(array##_capacity), \
297 cmp_func, src, sizeof((array)[0]), n, cx_array_default_reallocator)
298
299
300 /**
301 * Searches the largest lower bound in a sorted array.
302 *
303 * In other words, this function returns the index of the largest element
304 * in \p arr that is less or equal to \p elem with respect to \p cmp_func.
305 * When no such element exists, \p size is returned.
306 *
307 * If \p elem is contained in the array, this is identical to
308 * #cx_array_binary_search().
309 *
310 * If the array is not sorted with respect to the \p cmp_func, the behavior
311 * is undefined.
312 *
313 * @param arr the array to search
314 * @param size the size of the array
315 * @param elem_size the size of one element
316 * @param elem the element to find
317 * @param cmp_func the compare function
318 * @return the index of the largest lower bound, or \p size
319 */
320 __attribute__((__nonnull__))
321 size_t cx_array_binary_search_inf(
322 const void *arr,
323 size_t size,
324 size_t elem_size,
325 const void *elem,
326 cx_compare_func cmp_func
327 );
328
329 /**
330 * Searches an item in a sorted array.
331 *
332 * If the array is not sorted with respect to the \p cmp_func, the behavior
333 * is undefined.
334 *
335 * @param arr the array to search
336 * @param size the size of the array
337 * @param elem_size the size of one element
338 * @param elem the element to find
339 * @param cmp_func the compare function
340 * @return the index of the element in the array, or \p size if the element
341 * cannot be found
342 */
343 __attribute__((__nonnull__))
344 static inline size_t cx_array_binary_search(
345 const void *arr,
346 size_t size,
347 size_t elem_size,
348 const void *elem,
349 cx_compare_func cmp_func
350 ) {
351 size_t index = cx_array_binary_search_inf(
352 arr, size, elem_size, elem, cmp_func
353 );
354 if (index < size && cmp_func(((const char *) arr) + index * elem_size, elem) == 0) {
355 return index;
356 } else {
357 return size;
358 }
359 }
360
361 /**
362 * Searches the smallest upper bound in a sorted array.
363 *
364 * In other words, this function returns the index of the smallest element
365 * in \p arr that is greater or equal to \p elem with respect to \p cmp_func.
366 * When no such element exists, \p size is returned.
367 *
368 * If \p elem is contained in the array, this is identical to
369 * #cx_array_binary_search().
370 *
371 * If the array is not sorted with respect to the \p cmp_func, the behavior
372 * is undefined.
373 *
374 * @param arr the array to search
375 * @param size the size of the array
376 * @param elem_size the size of one element
377 * @param elem the element to find
378 * @param cmp_func the compare function
379 * @return the index of the smallest upper bound, or \p size
380 */
381 __attribute__((__nonnull__))
382 static inline size_t cx_array_binary_search_sup(
383 const void *arr,
384 size_t size,
385 size_t elem_size,
386 const void *elem,
387 cx_compare_func cmp_func
388 ) {
389 size_t inf = cx_array_binary_search_inf(arr, size, elem_size, elem, cmp_func);
390 if (inf == size) {
391 // no infimum means, first element is supremum
392 return 0;
393 } else if (cmp_func(((const char *) arr) + inf * elem_size, elem) == 0) {
394 return inf;
395 } else {
396 return inf + 1;
397 }
398 }
168 399
169 /** 400 /**
170 * Swaps two array elements. 401 * Swaps two array elements.
171 * 402 *
172 * @param arr the array 403 * @param arr the array
173 * @param elem_size the element size 404 * @param elem_size the element size
174 * @param idx1 index of first element 405 * @param idx1 index of first element
175 * @param idx2 index of second element 406 * @param idx2 index of second element
176 */ 407 */
408 __attribute__((__nonnull__))
177 void cx_array_swap( 409 void cx_array_swap(
178 void *arr, 410 void *arr,
179 size_t elem_size, 411 size_t elem_size,
180 size_t idx1, 412 size_t idx1,
181 size_t idx2 413 size_t idx2
182 ) __attribute__((__nonnull__)); 414 );
183 415
184 /** 416 /**
185 * Allocates an array list for storing elements with \p item_size bytes each. 417 * Allocates an array list for storing elements with \p elem_size bytes each.
186 * 418 *
187 * If \p item_size is CX_STORE_POINTERS, the created list will be created as if 419 * If \p elem_size is CX_STORE_POINTERS, the created list will be created as if
188 * cxListStorePointers() was called immediately after creation and the compare 420 * cxListStorePointers() was called immediately after creation and the compare
189 * function will be automatically set to cx_cmp_ptr(), if none is given. 421 * function will be automatically set to cx_cmp_ptr(), if none is given.
190 * 422 *
191 * @param allocator the allocator for allocating the list memory 423 * @param allocator the allocator for allocating the list memory
192 * (if \c NULL the cxDefaultAllocator will be used) 424 * (if \c NULL the cxDefaultAllocator will be used)
193 * @param comparator the comparator for the elements 425 * @param comparator the comparator for the elements
194 * (if \c NULL, and the list is not storing pointers, sort and find 426 * (if \c NULL, and the list is not storing pointers, sort and find
195 * functions will not work) 427 * functions will not work)
196 * @param item_size the size of each element in bytes 428 * @param elem_size the size of each element in bytes
197 * @param initial_capacity the initial number of elements the array can store 429 * @param initial_capacity the initial number of elements the array can store
198 * @return the created list 430 * @return the created list
199 */ 431 */
200 CxList *cxArrayListCreate( 432 CxList *cxArrayListCreate(
201 CxAllocator const *allocator, 433 const CxAllocator *allocator,
202 cx_compare_func comparator, 434 cx_compare_func comparator,
203 size_t item_size, 435 size_t elem_size,
204 size_t initial_capacity 436 size_t initial_capacity
205 ); 437 );
206 438
207 /** 439 /**
208 * Allocates an array list for storing elements with \p item_size bytes each. 440 * Allocates an array list for storing elements with \p elem_size bytes each.
209 * 441 *
210 * The list will use the cxDefaultAllocator and \em NO compare function. 442 * The list will use the cxDefaultAllocator and \em NO compare function.
211 * If you want to call functions that need a compare function, you have to 443 * If you want to call functions that need a compare function, you have to
212 * set it immediately after creation or use cxArrayListCreate(). 444 * set it immediately after creation or use cxArrayListCreate().
213 * 445 *
214 * If \p item_size is CX_STORE_POINTERS, the created list will be created as if 446 * If \p elem_size is CX_STORE_POINTERS, the created list will be created as if
215 * cxListStorePointers() was called immediately after creation and the compare 447 * cxListStorePointers() was called immediately after creation and the compare
216 * function will be automatically set to cx_cmp_ptr(). 448 * function will be automatically set to cx_cmp_ptr().
217 * 449 *
218 * @param item_size the size of each element in bytes 450 * @param elem_size the size of each element in bytes
219 * @param initial_capacity the initial number of elements the array can store 451 * @param initial_capacity the initial number of elements the array can store
220 * @return the created list 452 * @return the created list
221 */ 453 */
222 #define cxArrayListCreateSimple(item_size, initial_capacity) \ 454 #define cxArrayListCreateSimple(elem_size, initial_capacity) \
223 cxArrayListCreate(NULL, NULL, item_size, initial_capacity) 455 cxArrayListCreate(NULL, NULL, elem_size, initial_capacity)
224 456
225 #ifdef __cplusplus 457 #ifdef __cplusplus
226 } // extern "C" 458 } // extern "C"
227 #endif 459 #endif
228 460

mercurial