darray: remove unused darray_foreach_reverse()
[platform/upstream/libxkbcommon.git] / src / darray.h
1 /*
2  * Copyright (C) 2011 Joseph Adams <joeyadams3.14159@gmail.com>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22
23 #ifndef CCAN_DARRAY_H
24 #define CCAN_DARRAY_H
25
26 /* Originally taken from: http://ccodearchive.net/info/darray.html
27  * But modified for libxkbcommon. */
28
29 #include <stdlib.h>
30 #include <string.h>
31 #include <assert.h>
32 #include <limits.h>
33
34 #define darray(type) struct { type *item; unsigned size; unsigned alloc; }
35
36 #define darray_new() { 0, 0, 0 }
37
38 #define darray_init(arr) do { \
39     (arr).item = 0; (arr).size = 0; (arr).alloc = 0; \
40 } while (0)
41
42 #define darray_free(arr) do { \
43     free((arr).item); \
44     darray_init(arr); \
45 } while (0)
46
47 /*
48  * Typedefs for darrays of common types.  These are useful
49  * when you want to pass a pointer to an darray(T) around.
50  *
51  * The following will produce an incompatible pointer warning:
52  *
53  *     void foo(darray(int) *arr);
54  *     darray(int) arr = darray_new();
55  *     foo(&arr);
56  *
57  * The workaround:
58  *
59  *     void foo(darray_int *arr);
60  *     darray_int arr = darray_new();
61  *     foo(&arr);
62  */
63
64 typedef darray (char)           darray_char;
65 typedef darray (signed char)    darray_schar;
66 typedef darray (unsigned char)  darray_uchar;
67
68 typedef darray (short)          darray_short;
69 typedef darray (int)            darray_int;
70 typedef darray (long)           darray_long;
71
72 typedef darray (unsigned short) darray_ushort;
73 typedef darray (unsigned int)   darray_uint;
74 typedef darray (unsigned long)  darray_ulong;
75
76 /*** Access ***/
77
78 #define darray_item(arr, i)     ((arr).item[i])
79 #define darray_size(arr)        ((arr).size)
80 #define darray_empty(arr)       ((arr).size == 0)
81 #define darray_mem(arr, offset) ((arr).item + (offset))
82
83 /*** Insertion (single item) ***/
84
85 #define darray_append(arr, ...)  do { \
86     darray_resize(arr, (arr).size + 1); \
87     (arr).item[(arr).size - 1] = (__VA_ARGS__); \
88 } while (0)
89
90 /*** Insertion (multiple items) ***/
91
92 #define darray_append_items(arr, items, count) do { \
93     unsigned __count = (count), __oldSize = (arr).size; \
94     darray_resize(arr, __oldSize + __count); \
95     memcpy((arr).item + __oldSize, items, __count * sizeof(*(arr).item)); \
96 } while (0)
97
98 #define darray_from_items(arr, items, count) do { \
99     unsigned __count = (count); \
100     darray_resize(arr, __count); \
101     memcpy((arr).item, items, __count * sizeof(*(arr).item)); \
102 } while (0)
103
104 #define darray_copy(arr_to, arr_from) \
105     darray_from_items((arr_to), (arr_from).item, (arr_from).size)
106
107 /*** String buffer ***/
108
109 #define darray_append_string(arr, str) do { \
110     const char *__str = (str); \
111     darray_append_items(arr, __str, strlen(__str) + 1); \
112     (arr).size--; \
113 } while (0)
114
115 #define darray_append_lit(arr, stringLiteral) do { \
116     darray_append_items(arr, stringLiteral, sizeof(stringLiteral)); \
117     (arr).size--; \
118 } while (0)
119
120 #define darray_appends_nullterminate(arr, items, count) do { \
121     unsigned __count = (count), __oldSize = (arr).size; \
122     darray_resize(arr, __oldSize + __count + 1); \
123     memcpy((arr).item + __oldSize, items, __count * sizeof(*(arr).item)); \
124     (arr).item[--(arr).size] = 0; \
125 } while (0)
126
127 #define darray_prepends_nullterminate(arr, items, count) do { \
128     unsigned __count = (count), __oldSize = (arr).size; \
129     darray_resize(arr, __count + __oldSize + 1); \
130     memmove((arr).item + __count, (arr).item, \
131             __oldSize * sizeof(*(arr).item)); \
132     memcpy((arr).item, items, __count * sizeof(*(arr).item)); \
133     (arr).item[--(arr).size] = 0; \
134 } while (0)
135
136 /*** Size management ***/
137
138 #define darray_resize(arr, newSize) \
139     darray_growalloc(arr, (arr).size = (newSize))
140
141 #define darray_resize0(arr, newSize) do { \
142     unsigned __oldSize = (arr).size, __newSize = (newSize); \
143     (arr).size = __newSize; \
144     if (__newSize > __oldSize) { \
145         darray_growalloc(arr, __newSize); \
146         memset(&(arr).item[__oldSize], 0, \
147                (__newSize - __oldSize) * sizeof(*(arr).item)); \
148     } \
149 } while (0)
150
151 #define darray_realloc(arr, newAlloc) do { \
152     (arr).item = realloc((arr).item, \
153                          ((arr).alloc = (newAlloc)) * sizeof(*(arr).item)); \
154 } while (0)
155
156 #define darray_growalloc(arr, need)   do { \
157     unsigned __need = (need); \
158     if (__need > (arr).alloc) \
159         darray_realloc(arr, darray_next_alloc((arr).alloc, __need, \
160                                               sizeof(*(arr).item))); \
161 } while (0)
162
163 static inline unsigned
164 darray_next_alloc(unsigned alloc, unsigned need, unsigned itemSize)
165 {
166     assert(need < UINT_MAX / itemSize / 2); /* Overflow. */
167     if (alloc == 0)
168         alloc = 4;
169     while (alloc < need)
170         alloc *= 2;
171     return alloc;
172 }
173
174 /*** Traversal ***/
175
176 #define darray_foreach(i, arr) \
177     for ((i) = &(arr).item[0]; (i) < &(arr).item[(arr).size]; (i)++)
178
179 #define darray_foreach_from(i, arr, from) \
180     for ((i) = &(arr).item[from]; (i) < &(arr).item[(arr).size]; (i)++)
181
182 /* Iterate on index and value at the same time, like Python's enumerate. */
183 #define darray_enumerate(idx, val, arr) \
184     for ((idx) = 0, (val) = &(arr).item[0]; \
185          (idx) < (arr).size; \
186          (idx)++, (val)++)
187
188 #define darray_enumerate_from(idx, val, arr, from) \
189     for ((idx) = (from), (val) = &(arr).item[0]; \
190          (idx) < (arr).size; \
191          (idx)++, (val)++)
192
193 #endif /* CCAN_DARRAY_H */