chiark / gitweb /
readahead-replay: use posix_fadvise instead of readahead
[elogind.git] / src / macro.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foomacrohfoo
4 #define foomacrohfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <assert.h>
26 #include <sys/types.h>
27 #include <sys/uio.h>
28 #include <inttypes.h>
29
30 #define PAGE_SIZE 4096
31
32 #define _printf_attr_(a,b) __attribute__ ((format (printf, a, b)))
33 #define _sentinel_ __attribute__ ((sentinel))
34 #define _noreturn_ __attribute__((noreturn))
35 #define _unused_ __attribute__ ((unused))
36 #define _destructor_ __attribute__ ((destructor))
37 #define _pure_ __attribute__ ((pure))
38 #define _const_ __attribute__ ((const))
39 #define _deprecated_ __attribute__ ((deprecated))
40 #define _packed_ __attribute__ ((packed))
41 #define _malloc_ __attribute__ ((malloc))
42 #define _weak_ __attribute__ ((weak))
43 #define _likely_(x) (__builtin_expect(!!(x),1))
44 #define _unlikely_(x) (__builtin_expect(!!(x),0))
45 #define _public_ __attribute__ ((visibility("default")))
46 #define _hidden_ __attribute__ ((visibility("hidden")))
47 #define _weakref_(x) __attribute__((weakref(#x)))
48
49 /* Rounds up */
50 static inline size_t ALIGN(size_t l) {
51         return ((l + sizeof(void*) - 1) & ~(sizeof(void*) - 1));
52 }
53
54 static inline size_t PAGE_ALIGN(size_t l) {
55         return ((l + PAGE_SIZE - 1) & ~(PAGE_SIZE -1));
56 }
57
58 #define ELEMENTSOF(x) (sizeof(x)/sizeof((x)[0]))
59
60 #define MAX(a,b)                                \
61         __extension__ ({                        \
62                         typeof(a) _a = (a);     \
63                         typeof(b) _b = (b);     \
64                         _a > _b ? _a : _b;      \
65                 })
66
67 #define MIN(a,b)                                \
68         __extension__ ({                        \
69                         typeof(a) _a = (a);     \
70                         typeof(b) _b = (b);     \
71                         _a < _b ? _a : _b;      \
72                 })
73
74 #define CLAMP(x, low, high)                                             \
75         __extension__ ({                                                \
76                         typeof(x) _x = (x);                             \
77                         typeof(low) _low = (low);                       \
78                         typeof(high) _high = (high);                    \
79                         ((_x > _high) ? _high : ((_x < _low) ? _low : _x)); \
80                 })
81
82 #define assert_se(expr)                                                 \
83         do {                                                            \
84                 if (_unlikely_(!(expr)))                                \
85                         log_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
86                                    "Assertion '%s' failed at %s:%u, function %s(). Aborting.", \
87                                    #expr , __FILE__, __LINE__, __PRETTY_FUNCTION__); \
88         } while (false)                                                 \
89
90 /* We override the glibc assert() here. */
91 #undef assert
92 #ifdef NDEBUG
93 #define assert(expr) do {} while(false)
94 #else
95 #define assert(expr) assert_se(expr)
96 #endif
97
98 #define assert_not_reached(t)                                           \
99         do {                                                            \
100                 log_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__,     \
101                            "Code should not be reached '%s' at %s:%u, function %s(). Aborting.", \
102                            t, __FILE__, __LINE__, __PRETTY_FUNCTION__); \
103         } while (false)
104
105 #define assert_cc(expr)                            \
106         do {                                       \
107                 switch (0) {                       \
108                         case 0:                    \
109                         case !!(expr):             \
110                                 ;                  \
111                 }                                  \
112         } while (false)
113
114 #define PTR_TO_UINT(p) ((unsigned int) ((uintptr_t) (p)))
115 #define UINT_TO_PTR(u) ((void*) ((uintptr_t) (u)))
116
117 #define PTR_TO_UINT32(p) ((uint32_t) ((uintptr_t) (p)))
118 #define UINT32_TO_PTR(u) ((void*) ((uintptr_t) (u)))
119
120 #define PTR_TO_ULONG(p) ((unsigned long) ((uintptr_t) (p)))
121 #define ULONG_TO_PTR(u) ((void*) ((uintptr_t) (u)))
122
123 #define PTR_TO_INT(p) ((int) ((intptr_t) (p)))
124 #define INT_TO_PTR(u) ((void*) ((intptr_t) (u)))
125
126 #define TO_INT32(p) ((int32_t) ((intptr_t) (p)))
127 #define INT32_TO_PTR(u) ((void*) ((intptr_t) (u)))
128
129 #define PTR_TO_LONG(p) ((long) ((intptr_t) (p)))
130 #define LONG_TO_PTR(u) ((void*) ((intptr_t) (u)))
131
132 #define memzero(x,l) (memset((x), 0, (l)))
133 #define zero(x) (memzero(&(x), sizeof(x)))
134
135 #define char_array_0(x) x[sizeof(x)-1] = 0;
136
137 #define IOVEC_SET_STRING(i, s)                  \
138         do {                                    \
139                 struct iovec *_i = &(i);        \
140                 char *_s = (char *)(s);         \
141                 _i->iov_base = _s;              \
142                 _i->iov_len = strlen(_s);       \
143         } while(false);
144
145 static inline size_t IOVEC_TOTAL_SIZE(const struct iovec *i, unsigned n) {
146         unsigned j;
147         size_t r = 0;
148
149         for (j = 0; j < n; j++)
150                 r += i[j].iov_len;
151
152         return r;
153 }
154
155 static inline size_t IOVEC_INCREMENT(struct iovec *i, unsigned n, size_t k) {
156         unsigned j;
157
158         for (j = 0; j < n; j++) {
159                 size_t sub;
160
161                 if (_unlikely_(k <= 0))
162                         break;
163
164                 sub = MIN(i[j].iov_len, k);
165                 i[j].iov_len -= sub;
166                 i[j].iov_base = (uint8_t*) i[j].iov_base + sub;
167                 k -= sub;
168         }
169
170         return k;
171 }
172
173 #include "log.h"
174
175 #endif