d361d354d1d99da84cd1b6683364355d117e77e9
2 * SPDX-License-Identifier: MIT
4 * Copyright (c) 2018 EfficiOS Inc. and Linux Foundation
5 * Copyright (c) 2018 Philippe Proulx <pproulx@efficios.com>
8 #ifndef BABELTRACE_ASSERT_PRE_INTERNAL_H
9 #define BABELTRACE_ASSERT_PRE_INTERNAL_H
12 * The macros in this header use macros defined in "lib/logging.h".
13 * We don't want this header to automatically include
14 * "lib/logging.h" because you need to manually define BT_LOG_TAG
15 * before including "lib/logging.h" and it is unexpected that you
16 * also need to define it before including this header.
18 * This is a reminder that in order to use "lib/assert-pre.h", you also
19 * need to use logging explicitly.
22 #ifndef BT_LIB_LOG_SUPPORTED
23 # error Include "lib/logging.h" before this header.
29 #include "common/common.h"
30 #include "common/macros.h"
33 * Prints the details of an unsatisfied precondition without immediately
34 * aborting. You should use this within a function which checks
35 * preconditions, but which is called from a BT_ASSERT_PRE() context, so
36 * that the function can still return its result for BT_ASSERT_PRE() to
41 * static inline bool check_complex_precond(...)
46 * BT_ASSERT_PRE_MSG("Invalid object: ...", ...);
55 * BT_ASSERT_PRE(check_complex_precond(...),
56 * "Precondition is not satisfied: ...", ...);
58 #define BT_ASSERT_PRE_MSG(_fmt, ...) \
60 bt_lib_log(_BT_LOG_SRCLOC_FUNCTION, __FILE__, \
61 __LINE__, BT_LOG_FATAL, BT_LOG_TAG, \
62 (_fmt), ##__VA_ARGS__); \
66 * Asserts that the library precondition `_cond` is satisfied.
68 * If `_cond` is false, log a fatal statement using `_fmt` and the
69 * optional arguments (same usage as BT_LIB_LOGF()), and abort.
71 * To assert that a library postcondition is satisfied (return from user
72 * code), use BT_ASSERT_POST().
74 * To assert that an internal postcondition is satisfied, use
75 * BT_ASSERT() or BT_ASSERT_DBG().
77 #define BT_ASSERT_PRE(_cond, _fmt, ...) \
80 BT_ASSERT_PRE_MSG("Babeltrace 2 library precondition not satisfied; error is:"); \
81 BT_ASSERT_PRE_MSG(_fmt, ##__VA_ARGS__); \
82 BT_ASSERT_PRE_MSG("Aborting..."); \
88 * Asserts that a given variable `_obj` named `_obj_name` (capitalized)
91 #define BT_ASSERT_PRE_NON_NULL(_obj, _obj_name) \
92 BT_ASSERT_PRE((_obj), "%s is NULL: ", _obj_name)
95 * Asserts that a given index `_index` is less than a given length
98 #define BT_ASSERT_PRE_VALID_INDEX(_index, _length) \
99 BT_ASSERT_PRE((_index) < (_length), \
100 "Index is out of bounds: index=%" PRIu64 ", " \
101 "count=%" PRIu64, (uint64_t) (_index), (uint64_t) (_length))
104 * Asserts that the current thread has no error set.
106 #define BT_ASSERT_PRE_NO_ERROR() \
108 const struct bt_error *err = bt_current_thread_take_error(); \
110 bt_current_thread_move_error(err); \
112 BT_ASSERT_PRE(!err, \
113 "API function called while current thread has an " \
114 "error: function=%s", __func__); \
118 /* Developer mode version of BT_ASSERT_PRE_MSG(). */
119 # define BT_ASSERT_PRE_DEV_MSG(_fmt, ...) \
120 BT_ASSERT_PRE_MSG(_fmt, ##__VA_ARGS__)
122 /* Developer mode version of BT_ASSERT_PRE(). */
123 # define BT_ASSERT_PRE_DEV(_cond, _fmt, ...) \
124 BT_ASSERT_PRE((_cond), _fmt, ##__VA_ARGS__)
126 /* Developer mode version of BT_ASSERT_PRE_NON_NULL() */
127 # define BT_ASSERT_PRE_DEV_NON_NULL(_obj, _obj_name) \
128 BT_ASSERT_PRE_NON_NULL((_obj), (_obj_name))
131 * Developer mode: asserts that a given object `_obj` named `_obj_name`
132 * (capitalized) is NOT frozen. This macro checks the `frozen` field of
135 * This currently only exists in developer mode because some freezing
136 * functions can be called on the fast path, so they too are only
137 * enabled in developer mode.
139 # define BT_ASSERT_PRE_DEV_HOT(_obj, _obj_name, _fmt, ...) \
140 BT_ASSERT_PRE(!(_obj)->frozen, "%s is frozen" _fmt, _obj_name, \
143 /* Developer mode version of BT_ASSERT_PRE_VALID_INDEX() */
144 # define BT_ASSERT_PRE_DEV_VALID_INDEX(_index, _length) \
145 BT_ASSERT_PRE_VALID_INDEX((_index), (_length))
147 /* Developer mode version of BT_ASSERT_PRE_NO_ERROR(). */
148 # define BT_ASSERT_PRE_DEV_NO_ERROR() \
149 BT_ASSERT_PRE_NO_ERROR()
152 * Marks a function as being only used within a BT_ASSERT_PRE_DEV()
155 # define BT_ASSERT_PRE_DEV_FUNC
157 # define BT_ASSERT_PRE_DEV_MSG(_fmt, ...)
158 # define BT_ASSERT_PRE_DEV(_cond, _fmt, ...) ((void) sizeof((void) (_cond), 0))
159 # define BT_ASSERT_PRE_DEV_NON_NULL(_obj, _obj_name) \
160 ((void) sizeof((void) (_obj), (void) (_obj_name), 0))
161 # define BT_ASSERT_PRE_DEV_HOT(_obj, _obj_name, _fmt, ...) \
162 ((void) sizeof((void) (_obj), (void) (_obj_name), 0))
163 # define BT_ASSERT_PRE_DEV_VALID_INDEX(_index, _length) \
164 ((void) sizeof((void) (_index), (void) (_length), 0))
165 # define BT_ASSERT_PRE_DEV_NO_ERROR()
166 # define BT_ASSERT_PRE_DEV_FUNC __attribute__((unused))
167 #endif /* BT_DEV_MODE */
169 #define BT_ASSERT_PRE_SUPPORTED
171 #endif /* BABELTRACE_ASSERT_PRE_INTERNAL_H */
This page took 0.043479 seconds and 3 git commands to generate.