1 /******************************************************************************/
2 /* pfixtools: a collection of postfix related tools */
4 /* ________________________________________________________________________ */
6 /* Redistribution and use in source and binary forms, with or without */
7 /* modification, are permitted provided that the following conditions */
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 */
19 /* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS */
20 /* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY */
23 /* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL */
24 /* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS */
25 /* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) */
26 /* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, */
27 /* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN */
28 /* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
29 /* POSSIBILITY OF SUCH DAMAGE. */
31 /* Copyright (c) 2006-2008 the Authors */
32 /* see AUTHORS and source files for details */
33 /******************************************************************************/
36 * Copyright © 2006 Pierre Habouzit
39 #ifndef PFIXTOOLS_MEM_H
40 #define PFIXTOOLS_MEM_H
47 #define MIN(a, b) ((a) < (b) ? (a) : (b))
48 #define MAX(a, b) ((a) > (b) ? (a) : (b))
50 #define ssizeof(foo) (ssize_t)sizeof(foo)
51 #define countof(foo) (ssizeof(foo) / ssizeof(foo[0]))
53 #define p_new(type, count) ((type *)xmalloc(sizeof(type) * (count)))
54 #define p_clear(p, count) ((void)memset((p), 0, sizeof(*(p)) * (count)))
55 #define p_dup(p, count) xmemdup((p), sizeof(*(p)) * (count))
56 #define p_dupstr(p, len) xmemdupstr((p), (len))
57 #define p_realloc(pp, count) xrealloc((void*)(pp), sizeof(**(pp)) * (count))
59 # define p_shrink(pp, goalnb, allocnb) \
61 if (*(allocnb) > (goalnb)) { \
62 p_realloc(pp, (goalnb)); \
63 *(allocnb) = (goalnb); \
67 # define p_alloc_nr(x) (((x) + 16) * 3 / 2)
68 # define p_allocgrow(pp, goalnb, allocnb) \
70 if ((goalnb) > *(allocnb)) { \
71 if (p_alloc_nr(goalnb) > *(allocnb)) { \
72 *(allocnb) = (goalnb); \
74 *(allocnb) = p_alloc_nr(goalnb); \
76 p_realloc(pp, *(allocnb)); \
82 # define p_delete(mem_pp) \
84 typeof(**(mem_pp)) **__ptr = (mem_pp); \
91 # define p_delete(mem_p) \
93 void *__ptr = (mem_p); \
95 *(void **)__ptr = NULL; \
100 static inline void *xmalloc(ssize_t size) {
106 mem = calloc(size, 1);
112 static inline void xmemfree(void **ptr) {
116 static inline void xrealloc(void **ptr, ssize_t newsize) {
120 *ptr = realloc(*ptr, newsize);
126 static inline void *xmemdup(const void *src, ssize_t size) {
127 return memcpy(xmalloc(size), src, size);
130 static inline void *xmemdupstr(const void *src, ssize_t len) {
131 char *res = memcpy(xmalloc(len + 1), src, len);
137 #define DO_INIT(type, prefix) \
138 static inline type * prefix##_init(type *var) { \
142 #define DO_WIPE(type, prefix) \
143 static inline void prefix##_wipe(type *var __attribute__((unused))) { }
145 #define DO_NEW(type, prefix) \
146 static inline type * prefix##_new(void) { \
147 return prefix##_init(p_new(type, 1)); \
149 #define DO_DELETE(type, prefix) \
150 static inline void __attribute__((nonnull)) \
151 prefix##_delete(type **var) { \
153 prefix##_wipe(*var); \
158 #endif /* PFIXTOOLS_MEM_H */