assert.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, Willow Garage, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 // Author: Josh Faust
31 
32 #ifndef ROSCONSOLE_ROSASSERT_H
33 #define ROSCONSOLE_ROSASSERT_H
34 
35 #include "ros/console.h"
36 #include "ros/static_assert.h"
37 
92 #include <ros/platform.h>
93 
94 #if defined(__MINGW32__)
95 # define ROS_ISSUE_BREAK() DebugBreak();
96 #elif defined(_MSC_VER)
97 # define ROS_ISSUE_BREAK() __debugbreak();
98 #elif defined(__powerpc64__)
99 # define ROS_ISSUE_BREAK() asm volatile ("tw 31,1,1");
100 #elif defined(__i386__) || defined(__ia64__) || defined(__x86_64__)
101 # define ROS_ISSUE_BREAK() asm("int $3");
102 #else
103 # include <stdlib.h>
104 # define ROS_ISSUE_BREAK() abort();
105 #endif
106 
107 #ifndef NDEBUG
108 #ifndef ROS_ASSERT_ENABLED
109 #define ROS_ASSERT_ENABLED
110 #endif
111 #endif
112 
113 #ifdef ROS_ASSERT_ENABLED
114 #define ROS_BREAK() \
115  do { \
116  ROS_FATAL("BREAKPOINT HIT\n\tfile = %s\n\tline=%d\n", __FILE__, __LINE__); \
117  ROS_ISSUE_BREAK() \
118  } while (false)
119 
120 #define ROS_ASSERT(cond) \
121  do { \
122  if (!(cond)) { \
123  ROS_FATAL("ASSERTION FAILED\n\tfile = %s\n\tline = %d\n\tcond = %s\n", __FILE__, __LINE__, #cond); \
124  ROS_ISSUE_BREAK() \
125  } \
126  } while (false)
127 
128 #define ROS_ASSERT_MSG(cond, ...) \
129  do { \
130  if (!(cond)) { \
131  ROS_FATAL("ASSERTION FAILED\n\tfile = %s\n\tline = %d\n\tcond = %s\n\tmessage = ", __FILE__, __LINE__, #cond); \
132  ROS_FATAL(__VA_ARGS__); \
133  ROS_FATAL("\n"); \
134  ROS_ISSUE_BREAK(); \
135  } \
136  } while (false)
137 
138 #define ROS_ASSERT_CMD(cond, cmd) \
139  do { \
140  if (!(cond)) { \
141  cmd; \
142  } \
143  } while (false)
144 
145 
146 #else
147 #define ROS_BREAK()
148 #define ROS_ASSERT(cond)
149 #define ROS_ASSERT_MSG(cond, ...)
150 #define ROS_ASSERT_CMD(cond, cmd)
151 #endif
152 
153 #endif // ROSCONSOLE_ROSASSERT_H
static_assert.h
console.h
platform.h


rosconsole
Author(s): Josh Faust
autogenerated on Wed Mar 2 2022 00:53:52