foreach() semantic for arrays, improves configuration post-processing.
[apps/pfixtools.git] / common / array.h
1 /******************************************************************************/
2 /*          pfixtools: a collection of postfix related tools                  */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
6 /*  Redistribution and use in source and binary forms, with or without        */
7 /*  modification, are permitted provided that the following conditions        */
8 /*  are met:                                                                  */
9 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    */
23 /*  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    */
24 /*  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      */
25 /*  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  */
26 /*  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   */
27 /*  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   */
28 /*  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2008 Florent Bruneau
34  */
35
36 #ifndef PFIXTOOLS_ARRAY_H
37 #define PFIXTOOLS_ARRAY_H
38
39 #include "common.h"
40 #include "mem.h"
41 #include <sys/mman.h>
42
43 #define PRIV_ARRAY(Type)                                                       \
44     struct {                                                                   \
45         Type    *data;                                                         \
46         ssize_t len;                                                           \
47         ssize_t size;                                                          \
48     }
49 #define ARRAY(Type)                                                            \
50     typedef PRIV_ARRAY(Type) Type ## _array_t;                                 \
51                                                                                \
52     static inline Type ## _array_t *Type ## _array_new(void)                   \
53     {                                                                          \
54         return p_new(Type ## _array_t, 1);                                     \
55     }                                                                          \
56                                                                                \
57     static inline void Type ## _array_delete(Type ## _array_t **array)         \
58     {                                                                          \
59         if (*array) {                                                          \
60             array_wipe(**array);                                               \
61             p_delete(array);                                                   \
62         }                                                                      \
63     }
64 #define A(Type) Type ## _array_t
65
66 #define ARRAY_INIT { NULL, 0, 0 }
67
68 #define array_init(array) (array) = ARRAY_INIT
69 #define array_wipe(array)                                                      \
70     do {                                                                       \
71         p_delete(&(array).data);                                               \
72         (array).len  = 0;                                                      \
73         (array).size = 0;                                                      \
74     } while (0)
75 #define array_add(array, obj)                                                  \
76     do {                                                                       \
77         array_ensure_capacity_delta(array, 1);                                 \
78         (array).data[(array).len++] = (obj);                                   \
79     } while (0)
80 #define array_append(array, objs, len)                                         \
81     do {                                                                       \
82         const ssize_t __len = (len);                                           \
83         array_ensure_capacity_delta(array, __len);                             \
84         memcpy((array).data + (array).len, objs,                               \
85                __len * sizeof(*(array).data));                                 \
86         (array).len += __len;                                                  \
87     } while (0)
88 #define array_ensure_capacity(array, goal)                                     \
89     do {                                                                       \
90         if ((array).size < (goal)) {                                           \
91             const ssize_t required_size = (goal);                              \
92             ssize_t next_size = (array).size;                                  \
93             do {                                                               \
94                 next_size = p_alloc_nr(next_size);                             \
95             } while (next_size < required_size);                               \
96             p_allocgrow(&(array).data, next_size, &(array).size);              \
97         }                                                                      \
98     } while (0)
99 #define array_ensure_capacity_delta(array, delta)                              \
100     array_ensure_capacity(array, (array).len + (delta))
101 #define array_ensure_exact_capacity(array, goal)                               \
102     if (array_size(array) < (goal)) {                                          \
103         p_allocgrow(&(array).data, (goal), &(array).size);                     \
104     }
105 #define array_adjust(array)                                                    \
106     do {                                                                       \
107         p_shrink(&(array).data, (array).len, &(array).size);                   \
108     } while (0)
109 #define array_elt(array, n) (array).data[(n)]
110 #define array_ptr(array, n) (array).data + (n)
111
112 #define foreach(var, array)                                                    \
113     for (int __Ai = 0 ; __Ai < (array).len ; ++__Ai) {                         \
114         var = array_ptr(array, __Ai);
115
116 #define array_foreach(array, action)                                           \
117     for (int __Ai = 0 ; __Ai < (array).len ; ++__Ai) {                         \
118         action(array_ptr(array, __Ai));                                        \
119     }
120 #define array_deep_wipe(array, wipe)                                           \
121     do {                                                                       \
122         array_foreach(array, wipe);                                            \
123         array_wipe(array);                                                     \
124     } while (0)
125
126 #define array_lock(array)                                                      \
127     !(mlock((array).data, (array).len * sizeof(*(array).data)) != 0)
128 #define array_unlock(array)                                                    \
129     (void)munlock((array).data, (array).len * sizeof(*(array).data))
130
131 ARRAY(char)
132 ARRAY(int)
133 ARRAY(uint32_t)
134
135 #endif