blob: b6086b143405d7b44a0152a7b195a0f6dfade064 [file] [log] [blame]
Benny Prijono5dcb38d2005-11-21 01:55:47 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono5dcb38d2005-11-21 01:55:47 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJ_ASSERT_H__
21#define __PJ_ASSERT_H__
22
23/**
24 * @file assert.h
25 * @brief Assertion macro pj_assert().
26 */
27
28#include <pj/config.h>
29#include <pj/compat/assert.h>
30
31/**
32 * @defgroup pj_assert Assertion Macro
33 * @ingroup PJ_MISC
34 * @{
35 *
36 * Assertion and other helper macros for sanity checking.
37 */
38
39/**
40 * @hideinitializer
41 * Check during debug build that an expression is true. If the expression
42 * computes to false during run-time, then the program will stop at the
43 * offending statements.
44 * For release build, this macro will not do anything.
45 *
46 * @param expr The expression to be evaluated.
47 */
Benny Prijonoaae2b1c2007-06-01 09:58:57 +000048#ifndef pj_assert
49# define pj_assert(expr) assert(expr)
50#endif
Benny Prijono5dcb38d2005-11-21 01:55:47 +000051
52
53/**
54 * @hideinitializer
Benny Prijono40f2f642006-01-30 18:40:05 +000055 * If #PJ_ENABLE_EXTRA_CHECK is declared and the value is non-zero, then
Benny Prijono5dcb38d2005-11-21 01:55:47 +000056 * #PJ_ASSERT_RETURN macro will evaluate the expression in @a expr during
57 * run-time. If the expression yields false, assertion will be triggered
58 * and the current function will return with the specified return value.
59 *
60 * If #PJ_ENABLE_EXTRA_CHECK is not declared or is zero, then no run-time
61 * checking will be performed. The macro simply evaluates to pj_assert(expr).
62 */
63#if defined(PJ_ENABLE_EXTRA_CHECK) && PJ_ENABLE_EXTRA_CHECK != 0
64# define PJ_ASSERT_RETURN(expr,retval) \
65 do { \
Benny Prijonocdf3c112006-05-19 15:54:09 +000066 if (!(expr)) { pj_assert(expr); return retval; } \
Benny Prijono5dcb38d2005-11-21 01:55:47 +000067 } while (0)
68#else
69# define PJ_ASSERT_RETURN(expr,retval) pj_assert(expr)
70#endif
71
Benny Prijono0ca04b62005-12-30 23:50:15 +000072/**
73 * @hideinitializer
74 * If #PJ_ENABLE_EXTRA_CHECK is declared and non-zero, then
75 * #PJ_ASSERT_ON_FAIL macro will evaluate the expression in @a expr during
76 * run-time. If the expression yields false, assertion will be triggered
77 * and @a exec_on_fail will be executed.
78 *
79 * If #PJ_ENABLE_EXTRA_CHECK is not declared or is zero, then no run-time
80 * checking will be performed. The macro simply evaluates to pj_assert(expr).
81 */
82#if defined(PJ_ENABLE_EXTRA_CHECK) && PJ_ENABLE_EXTRA_CHECK != 0
83# define PJ_ASSERT_ON_FAIL(expr,exec_on_fail) \
84 do { \
85 pj_assert(expr); \
86 if (!(expr)) exec_on_fail; \
87 } while (0)
88#else
89# define PJ_ASSERT_ON_FAIL(expr,exec_on_fail) pj_assert(expr)
90#endif
91
Benny Prijono5dcb38d2005-11-21 01:55:47 +000092/** @} */
93
94#endif /* __PJ_ASSERT_H__ */
95