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 
28 #include "rcutils/allocator.h"
29 #include "rcutils/macros.h"
32 
34 typedef struct rcutils_error_state_t
35 {
36  const char * message;
37  const char * file;
38  size_t line_number;
41 
43 
59 
62 void
64 
66 
88 void
90  const char * error_msg, const char * file, size_t line_number, rcutils_allocator_t allocator);
91 
93 
103 #define RCUTILS_SET_ERROR_MSG(msg, allocator) \
104  rcutils_set_error_state(msg, __FILE__, __LINE__, allocator);
105 
108 bool
110 
112 
121 const rcutils_error_state_t *
123 
125 
132 const char *
134 
136 
145 const char *
147 
150 void
151 rcutils_reset_error(void);
152 
153 #if __cplusplus
154 }
155 #endif
156 
157 #endif // RCUTILS__ERROR_HANDLING_H_
const char * file
Definition: error_handling.h:37
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:36
#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:38
#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:39
Struct which encapsulates the error state set by RCUTILS_SET_ERROR_MSG().
Definition: error_handling.h:34
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.