Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / ntp / dist / lib / isc / include / isc / assertions.h
blob97fc933f296b05159a51f36116d2cff8465e9163
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1997-2001 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
21 * Id: assertions.h,v 1.26 2008/10/15 23:47:31 tbox Exp
23 /*! \file isc/assertions.h
26 #ifndef ISC_ASSERTIONS_H
27 #define ISC_ASSERTIONS_H 1
29 #include <isc/lang.h>
30 #include <isc/platform.h>
32 ISC_LANG_BEGINDECLS
34 /*% isc assertion type */
35 typedef enum {
36 isc_assertiontype_require,
37 isc_assertiontype_ensure,
38 isc_assertiontype_insist,
39 isc_assertiontype_invariant
40 } isc_assertiontype_t;
42 typedef void (*isc_assertioncallback_t)(const char *, int, isc_assertiontype_t,
43 const char *);
45 /* coverity[+kill] */
46 LIBISC_EXTERNAL_DATA extern isc_assertioncallback_t isc_assertion_failed;
48 void
49 isc_assertion_setcallback(isc_assertioncallback_t);
51 const char *
52 isc_assertion_typetotext(isc_assertiontype_t type);
54 #if defined(ISC_CHECK_ALL) || defined(__COVERITY__)
55 #define ISC_CHECK_REQUIRE 1
56 #define ISC_CHECK_ENSURE 1
57 #define ISC_CHECK_INSIST 1
58 #define ISC_CHECK_INVARIANT 1
59 #endif
61 #if defined(ISC_CHECK_NONE) && !defined(__COVERITY__)
62 #define ISC_CHECK_REQUIRE 0
63 #define ISC_CHECK_ENSURE 0
64 #define ISC_CHECK_INSIST 0
65 #define ISC_CHECK_INVARIANT 0
66 #endif
68 #ifndef ISC_CHECK_REQUIRE
69 #define ISC_CHECK_REQUIRE 1
70 #endif
72 #ifndef ISC_CHECK_ENSURE
73 #define ISC_CHECK_ENSURE 1
74 #endif
76 #ifndef ISC_CHECK_INSIST
77 #define ISC_CHECK_INSIST 1
78 #endif
80 #ifndef ISC_CHECK_INVARIANT
81 #define ISC_CHECK_INVARIANT 1
82 #endif
84 #if ISC_CHECK_REQUIRE != 0
85 #define ISC_REQUIRE(cond) \
86 ((void) ((cond) || \
87 ((isc_assertion_failed)(__FILE__, __LINE__, \
88 isc_assertiontype_require, \
89 #cond), 0)))
90 #else
91 #define ISC_REQUIRE(cond) ((void) 0)
92 #endif /* ISC_CHECK_REQUIRE */
94 #if ISC_CHECK_ENSURE != 0
95 #define ISC_ENSURE(cond) \
96 ((void) ((cond) || \
97 ((isc_assertion_failed)(__FILE__, __LINE__, \
98 isc_assertiontype_ensure, \
99 #cond), 0)))
100 #else
101 #define ISC_ENSURE(cond) ((void) 0)
102 #endif /* ISC_CHECK_ENSURE */
104 #if ISC_CHECK_INSIST != 0
105 #define ISC_INSIST(cond) \
106 ((void) ((cond) || \
107 ((isc_assertion_failed)(__FILE__, __LINE__, \
108 isc_assertiontype_insist, \
109 #cond), 0)))
110 #else
111 #define ISC_INSIST(cond) ((void) 0)
112 #endif /* ISC_CHECK_INSIST */
114 #if ISC_CHECK_INVARIANT != 0
115 #define ISC_INVARIANT(cond) \
116 ((void) ((cond) || \
117 ((isc_assertion_failed)(__FILE__, __LINE__, \
118 isc_assertiontype_invariant, \
119 #cond), 0)))
120 #else
121 #define ISC_INVARIANT(cond) ((void) 0)
122 #endif /* ISC_CHECK_INVARIANT */
124 ISC_LANG_ENDDECLS
126 #endif /* ISC_ASSERTIONS_H */