Rename project -> pfixtools.
[apps/pfixtools.git] / mem.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 © 2006 Pierre Habouzit
34  */
35
36 #ifndef POSTLICYD_MEM_H
37 #define POSTLICYD_MEM_H
38
39 #include <assert.h>
40 #include <ctype.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #define MIN(a, b)               ((a) < (b) ? (a) : (b))
45 #define MAX(a, b)               ((a) > (b) ? (a) : (b))
46
47 #define ssizeof(foo)            (ssize_t)sizeof(foo)
48 #define countof(foo)            (ssizeof(foo) / ssizeof(foo[0]))
49
50 #define p_new(type, count)      ((type *)xmalloc(sizeof(type) * (count)))
51 #define p_clear(p, count)       ((void)memset((p), 0, sizeof(*(p)) * (count)))
52 #define p_dup(p, count)         xmemdup((p), sizeof(*(p)) * (count))
53 #define p_dupstr(p, len)        xmemdupstr((p), (len))
54 #define p_realloc(pp, count)    xrealloc((void*)(pp), sizeof(**(pp)) * (count))
55
56 #ifdef __GNUC__
57
58 #  define p_delete(mem_pp)                          \
59         do {                                        \
60             typeof(**(mem_pp)) **__ptr = (mem_pp);  \
61             free(*__ptr);                           \
62             *__ptr = NULL;                          \
63         } while(0)
64
65 #else
66
67 #  define p_delete(mem_p)                           \
68         do {                                        \
69             void *__ptr = (mem_p);                  \
70             free(*__ptr);                           \
71             *(void **)__ptr = NULL;                 \
72         } while (0)
73
74 #endif
75
76 static inline void *xmalloc(ssize_t size) {
77     void *mem;
78
79     if (size <= 0)
80         return NULL;
81
82     mem = calloc(size, 1);
83     if (!mem)
84         abort();
85     return mem;
86 }
87
88 static inline void xmemfree(void **ptr) {
89     p_delete(ptr);
90 }
91
92 static inline void xrealloc(void **ptr, ssize_t newsize) {
93     if (newsize <= 0) {
94         p_delete(ptr);
95     } else {
96         *ptr = realloc(*ptr, newsize);
97         if (!*ptr)
98             abort();
99     }
100 }
101
102 static inline void *xmemdup(const void *src, ssize_t size) {
103     return memcpy(xmalloc(size), src, size);
104 }
105
106 static inline void *xmemdupstr(const void *src, ssize_t len) {
107     char *res = memcpy(xmalloc(len + 1), src, len);
108     res[len] = '\0';
109     return res;
110 }
111
112
113 #define DO_INIT(type, prefix) \
114     static inline type * prefix##_init(type *var) {         \
115         p_clear(var, 1);                                    \
116         return var;                                         \
117     }
118 #define DO_WIPE(type, prefix) \
119     static inline void prefix##_wipe(type *var __attribute__((unused))) { }
120
121 #define DO_NEW(type, prefix) \
122     static inline type * prefix##_new(void) {               \
123         return prefix##_init(p_new(type, 1));               \
124     }
125 #define DO_DELETE(type, prefix) \
126     static inline void __attribute__((nonnull))             \
127     prefix##_delete(type **var) {                           \
128         if (*var) {                                         \
129             prefix##_wipe(*var);                            \
130             p_delete(var);                                  \
131         }                                                   \
132     }
133
134 #endif /* POSTLICYD_MEM_H */