1 /**************************************************************************
3 * Copyright 2010 Luca Barbieri
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 **************************************************************************/
39 /* A zero-initialized version of this is guaranteed to represent an
42 * Also, size <= capacity and data != 0 if and only if capacity != 0
43 * capacity will always be the allocation size of data
54 util_dynarray_init(struct util_dynarray
*buf
, void *mem_ctx
)
56 memset(buf
, 0, sizeof(*buf
));
57 buf
->mem_ctx
= mem_ctx
;
61 util_dynarray_fini(struct util_dynarray
*buf
)
65 ralloc_free(buf
->data
);
69 util_dynarray_init(buf
, buf
->mem_ctx
);
74 util_dynarray_clear(struct util_dynarray
*buf
)
79 #define DYN_ARRAY_INITIAL_SIZE 64
81 MUST_CHECK
static inline void *
82 util_dynarray_ensure_cap(struct util_dynarray
*buf
, unsigned newcap
)
84 if (newcap
> buf
->capacity
) {
85 unsigned capacity
= MAX3(DYN_ARRAY_INITIAL_SIZE
, buf
->capacity
* 2, newcap
);
89 data
= reralloc_size(buf
->mem_ctx
, buf
->data
, capacity
);
91 data
= realloc(buf
->data
, capacity
);
97 buf
->capacity
= capacity
;
100 return (void *)((char *)buf
->data
+ buf
->size
);
103 /* use util_dynarray_trim to reduce the allocated storage */
104 MUST_CHECK
static inline void *
105 util_dynarray_resize_bytes(struct util_dynarray
*buf
, unsigned nelts
, size_t eltsize
)
107 if (unlikely(nelts
> UINT_MAX
/ eltsize
))
110 unsigned newsize
= nelts
* eltsize
;
111 void *p
= util_dynarray_ensure_cap(buf
, newsize
);
121 util_dynarray_clone(struct util_dynarray
*buf
, void *mem_ctx
,
122 struct util_dynarray
*from_buf
)
124 util_dynarray_init(buf
, mem_ctx
);
125 if (util_dynarray_resize_bytes(buf
, from_buf
->size
, 1))
126 memcpy(buf
->data
, from_buf
->data
, from_buf
->size
);
129 MUST_CHECK
static inline void *
130 util_dynarray_grow_bytes(struct util_dynarray
*buf
, unsigned ngrow
, size_t eltsize
)
132 unsigned growbytes
= ngrow
* eltsize
;
134 if (unlikely(ngrow
> (UINT_MAX
/ eltsize
) ||
135 growbytes
> UINT_MAX
- buf
->size
))
138 unsigned newsize
= buf
->size
+ growbytes
;
139 void *p
= util_dynarray_ensure_cap(buf
, newsize
);
149 util_dynarray_trim(struct util_dynarray
*buf
)
151 if (buf
->size
!= buf
->capacity
) {
154 buf
->data
= reralloc_size(buf
->mem_ctx
, buf
->data
, buf
->size
);
156 buf
->data
= realloc(buf
->data
, buf
->size
);
158 buf
->capacity
= buf
->size
;
161 ralloc_free(buf
->data
);
171 #define util_dynarray_append(buf, type, v) do {type __v = (v); memcpy(util_dynarray_grow_bytes((buf), 1, sizeof(type)), &__v, sizeof(type));} while(0)
172 /* Returns a pointer to the space of the first new element (in case of growth) or NULL on failure. */
173 #define util_dynarray_resize(buf, type, nelts) util_dynarray_resize_bytes(buf, (nelts), sizeof(type))
174 #define util_dynarray_grow(buf, type, ngrow) util_dynarray_grow_bytes(buf, (ngrow), sizeof(type))
175 #define util_dynarray_top_ptr(buf, type) (type*)((char*)(buf)->data + (buf)->size - sizeof(type))
176 #define util_dynarray_top(buf, type) *util_dynarray_top_ptr(buf, type)
177 #define util_dynarray_pop_ptr(buf, type) (type*)((char*)(buf)->data + ((buf)->size -= sizeof(type)))
178 #define util_dynarray_pop(buf, type) *util_dynarray_pop_ptr(buf, type)
179 #define util_dynarray_contains(buf, type) ((buf)->size >= sizeof(type))
180 #define util_dynarray_element(buf, type, idx) ((type*)(buf)->data + (idx))
181 #define util_dynarray_begin(buf) ((buf)->data)
182 #define util_dynarray_end(buf) ((void*)util_dynarray_element((buf), char, (buf)->size))
183 #define util_dynarray_num_elements(buf, type) ((buf)->size / sizeof(type))
185 #define util_dynarray_foreach(buf, type, elem) \
186 for (type *elem = (type *)(buf)->data; \
187 elem < (type *)((char *)(buf)->data + (buf)->size); elem++)
189 #define util_dynarray_foreach_reverse(buf, type, elem) \
190 if ((buf)->size > 0) \
191 for (type *elem = util_dynarray_top_ptr(buf, type); \
193 elem = elem > (type *)(buf)->data ? elem - 1 : NULL)
195 #define util_dynarray_delete_unordered(buf, type, v) \
197 unsigned num_elements = (buf)->size / sizeof(type); \
199 for (i = 0; i < num_elements; i++) { \
200 type __v = *util_dynarray_element((buf), type, (i)); \
202 memcpy(util_dynarray_element((buf), type, (i)), \
203 util_dynarray_pop_ptr((buf), type), sizeof(type)); \
213 #endif /* U_DYNARRAY_H */