chiark / gitweb /
service: add StartLimitInterval/StartLimitBurst/StartLimitAction
[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 _printf_attr_(a,b) __attribute__ ((format (printf, a, b)))
31 #define _sentinel_ __attribute__ ((sentinel))
32 #define _noreturn_ __attribute__((noreturn))
33 #define _unused_ __attribute__ ((unused))
34 #define _destructor_ __attribute__ ((destructor))
35 #define _pure_ __attribute__ ((pure))
36 #define _const_ __attribute__ ((const))
37 #define _deprecated_ __attribute__ ((deprecated))
38 #define _packed_ __attribute__ ((packed))
39 #define _malloc_ __attribute__ ((malloc))
40 #define _weak_ __attribute__ ((weak))
41 #define _likely_(x) (__builtin_expect(!!(x),1))
42 #define _unlikely_(x) (__builtin_expect(!!(x),0))
43 #define _public_ __attribute__ ((visibility("default")))
44 #define _hidden_ __attribute__ ((visibility("hidden")))
45 #define _weakref_(x) __attribute__((weakref(#x)))
46 #define _introspect_(x) __attribute__((section("introspect." x)))
47
48 #define XSTRINGIFY(x) #x
49 #define STRINGIFY(x) XSTRINGIFY(x)
50
51 /* Rounds up */
52 #define ALIGN(l) ALIGN_TO((l), sizeof(void*))
53 static inline size_t ALIGN_TO(size_t l, size_t ali) {
54         return ((l + ali - 1) & ~(ali - 1));
55 }
56
57 #define ELEMENTSOF(x) (sizeof(x)/sizeof((x)[0]))
58
59 #ifndef MAX
60 #define MAX(a,b)                                \
61         __extension__ ({                        \
62                         typeof(a) _a = (a);     \
63                         typeof(b) _b = (b);     \
64                         _a > _b ? _a : _b;      \
65                 })
66 #endif
67
68 #define MAX3(a,b,c)                             \
69         MAX(MAX(a,b),c)
70
71 #ifndef MIN
72 #define MIN(a,b)                                \
73         __extension__ ({                        \
74                         typeof(a) _a = (a);     \
75                         typeof(b) _b = (b);     \
76                         _a < _b ? _a : _b;      \
77                 })
78 #endif
79
80 #define MIN3(a,b,c)                             \
81         MIN(MIN(a,b),c)
82
83 #define CLAMP(x, low, high)                                             \
84         __extension__ ({                                                \
85                         typeof(x) _x = (x);                             \
86                         typeof(low) _low = (low);                       \
87                         typeof(high) _high = (high);                    \
88                         ((_x > _high) ? _high : ((_x < _low) ? _low : _x)); \
89                 })
90
91 #define assert_se(expr)                                                 \
92         do {                                                            \
93                 if (_unlikely_(!(expr)))                                \
94                         log_assert_failed(#expr, __FILE__, __LINE__, __PRETTY_FUNCTION__); \
95         } while (false)                                                 \
96
97 /* We override the glibc assert() here. */
98 #undef assert
99 #ifdef NDEBUG
100 #define assert(expr) do {} while(false)
101 #else
102 #define assert(expr) assert_se(expr)
103 #endif
104
105 #define assert_not_reached(t)                                           \
106         do {                                                            \
107                 log_assert_failed_unreachable(t, __FILE__, __LINE__, __PRETTY_FUNCTION__); \
108         } while (false)
109
110 #define assert_cc(expr)                            \
111         do {                                       \
112                 switch (0) {                       \
113                         case 0:                    \
114                         case !!(expr):             \
115                                 ;                  \
116                 }                                  \
117         } while (false)
118
119 #define PTR_TO_UINT(p) ((unsigned int) ((uintptr_t) (p)))
120 #define UINT_TO_PTR(u) ((void*) ((uintptr_t) (u)))
121
122 #define PTR_TO_UINT32(p) ((uint32_t) ((uintptr_t) (p)))
123 #define UINT32_TO_PTR(u) ((void*) ((uintptr_t) (u)))
124
125 #define PTR_TO_ULONG(p) ((unsigned long) ((uintptr_t) (p)))
126 #define ULONG_TO_PTR(u) ((void*) ((uintptr_t) (u)))
127
128 #define PTR_TO_INT(p) ((int) ((intptr_t) (p)))
129 #define INT_TO_PTR(u) ((void*) ((intptr_t) (u)))
130
131 #define TO_INT32(p) ((int32_t) ((intptr_t) (p)))
132 #define INT32_TO_PTR(u) ((void*) ((intptr_t) (u)))
133
134 #define PTR_TO_LONG(p) ((long) ((intptr_t) (p)))
135 #define LONG_TO_PTR(u) ((void*) ((intptr_t) (u)))
136
137 #define memzero(x,l) (memset((x), 0, (l)))
138 #define zero(x) (memzero(&(x), sizeof(x)))
139
140 #define char_array_0(x) x[sizeof(x)-1] = 0;
141
142 #define IOVEC_SET_STRING(i, s)                  \
143         do {                                    \
144                 struct iovec *_i = &(i);        \
145                 char *_s = (char *)(s);         \
146                 _i->iov_base = _s;              \
147                 _i->iov_len = strlen(_s);       \
148         } while(false)
149
150 static inline size_t IOVEC_TOTAL_SIZE(const struct iovec *i, unsigned n) {
151         unsigned j;
152         size_t r = 0;
153
154         for (j = 0; j < n; j++)
155                 r += i[j].iov_len;
156
157         return r;
158 }
159
160 static inline size_t IOVEC_INCREMENT(struct iovec *i, unsigned n, size_t k) {
161         unsigned j;
162
163         for (j = 0; j < n; j++) {
164                 size_t sub;
165
166                 if (_unlikely_(k <= 0))
167                         break;
168
169                 sub = MIN(i[j].iov_len, k);
170                 i[j].iov_len -= sub;
171                 i[j].iov_base = (uint8_t*) i[j].iov_base + sub;
172                 k -= sub;
173         }
174
175         return k;
176 }
177
178 #include "log.h"
179
180 #endif