rcutils  master
C API providing common utilities and data structures.
error_handling.h
Go to the documentation of this file.
1 // Copyright 2014 Open Source Robotics Foundation, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 // Note: migrated from rmw/error_handling.h in 2017-04
16 
17 #ifndef RCUTILS__ERROR_HANDLING_H_
18 #define RCUTILS__ERROR_HANDLING_H_
19 
20 #if __cplusplus
21 extern "C"
22 {
23 #endif
24 
25 #include <stdbool.h>
26 #include <stddef.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 
31 #include "rcutils/allocator.h"
32 #include "rcutils/macros.h"
35 
37 typedef struct rcutils_error_state_t
38 {
39  const char * message;
40  const char * file;
41  size_t line_number;
44 
45 // TODO(dhood): use __STDC_LIB_EXT1__ if/when supported in other implementations.
46 #if defined(_WIN32)
47 // Limit the buffer size in the `fwrite` call to give an upper bound to buffer overrun in the case
48 // of non-null terminated `msg`.
49 #define RCUTILS_SAFE_FWRITE_TO_STDERR(msg) fwrite(msg, sizeof(char), strnlen_s(msg, 4096), stderr)
50 #else
51 #define RCUTILS_SAFE_FWRITE_TO_STDERR(msg) fwrite(msg, sizeof(char), strlen(msg), stderr)
52 #endif
53 
55 
71 
74 void
76 
78 
100 void
102  const char * error_msg, const char * file, size_t line_number, rcutils_allocator_t allocator);
103 
105 
113 #define RCUTILS_CHECK_ARGUMENT_FOR_NULL(argument, error_return_type, allocator) \
114  RCUTILS_CHECK_FOR_NULL_WITH_MSG(argument, #argument " argument is null", \
115  return error_return_type, allocator)
116 
118 
127 #define RCUTILS_CHECK_FOR_NULL_WITH_MSG(value, msg, error_statement, allocator) \
128  if (!(value)) { \
129  RCUTILS_SET_ERROR_MSG(msg, allocator); \
130  error_statement; \
131  }
132 
134 
144 #define RCUTILS_SET_ERROR_MSG(msg, allocator) \
145  rcutils_set_error_state(msg, __FILE__, __LINE__, allocator);
146 
148 
156 #define RCUTILS_SET_ERROR_MSG_WITH_FORMAT_STRING(allocator, format_string, ...) \
157  do { \
158  char * output_msg = NULL; \
159  output_msg = rcutils_format_string(allocator, format_string, __VA_ARGS__); \
160  if (output_msg) { \
161  RCUTILS_SET_ERROR_MSG(output_msg, allocator); \
162  allocator.deallocate(output_msg, allocator.state); \
163  } else { \
164  RCUTILS_SAFE_FWRITE_TO_STDERR("Failed to allocate memory for error message\n"); \
165  } \
166  } while (false)
167 
170 bool
172 
174 
183 const rcutils_error_state_t *
185 
187 
194 const char *
196 
198 
207 const char *
209 
212 void
213 rcutils_reset_error(void);
214 
215 #if __cplusplus
216 }
217 #endif
218 
219 #endif // RCUTILS__ERROR_HANDLING_H_
const char * file
Definition: error_handling.h:40
struct rcutils_error_state_t rcutils_error_state_t
Struct which encapsulates the error state set by RCUTILS_SET_ERROR_MSG().
const char * rcutils_get_error_string_safe(void)
Return the error message followed by , at <file>:<line> if set, else "error not set".
void rcutils_reset_error(void)
Reset the error state by clearing any previously set error state.
int rcutils_ret_t
Definition: rcutils_ret.h:23
Encapsulation of an allocator.
Definition: allocator.h:43
rcutils_ret_t rcutils_error_state_copy(const rcutils_error_state_t *src, rcutils_error_state_t *dst)
Copy an error state into a destination error state.
const char * message
Definition: error_handling.h:39
#define RCUTILS_WARN_UNUSED
Definition: macros.h:24
const char * rcutils_get_error_string(void)
Return the error message followed by , at <file>:<line>, or NULL.
void rcutils_error_state_fini(rcutils_error_state_t *error_state)
Finalizes a copied error state.
size_t line_number
Definition: error_handling.h:41
#define RCUTILS_PUBLIC
Definition: visibility_control.h:48
const rcutils_error_state_t * rcutils_get_error_state(void)
Return an rcutils_error_state_t which was set with rcutils_set_error_state().
rcutils_allocator_t allocator
Definition: error_handling.h:42
Struct which encapsulates the error state set by RCUTILS_SET_ERROR_MSG().
Definition: error_handling.h:37
void rcutils_set_error_state(const char *error_msg, const char *file, size_t line_number, rcutils_allocator_t allocator)
Set the error message, as well as the file and line on which it occurred.
bool rcutils_error_is_set(void)
Return true if the error is set, otherwise false.