rmw  master
C API providing a middleware abstraction layer which is used to implement the rest of ROS.
Macros | Typedefs
error_handling.h File Reference

Functions and macros to interact with error handling mechanisms. More...

#include <rcutils/error_handling.h>
Include dependency graph for error_handling.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define RMW_SAFE_FWRITE_TO_STDERR   RCUTILS_SAFE_FWRITE_TO_STDERR
 
#define rmw_initialize_error_handling_thread_local_storage   rcutils_initialize_error_handling_thread_local_storage
 Forces initialization of thread-local storage if called in a newly created thread. More...
 
#define rmw_set_error_state   rcutils_set_error_state
 Set the error message, as well as the file and line on which it occurred. More...
 
#define RMW_CHECK_ARGUMENT_FOR_NULL(argument, error_return_type)   RCUTILS_CHECK_ARGUMENT_FOR_NULL(argument, error_return_type)
 Check an argument for a null value. More...
 
#define RMW_CHECK_FOR_NULL_WITH_MSG(value, msg, error_statement)   RCUTILS_CHECK_FOR_NULL_WITH_MSG(value, msg, error_statement)
 Check a value for null, with an error message and error statement. More...
 
#define RMW_SET_ERROR_MSG(msg)   RCUTILS_SET_ERROR_MSG(msg)
 Set the error message, as well as append the current file and line number. More...
 
#define RMW_SET_ERROR_MSG_WITH_FORMAT_STRING(format_string, ...)   RCUTILS_SET_ERROR_MSG_WITH_FORMAT_STRING(format_string, __VA_ARGS__)
 Set the error message using a format string and format arguments. More...
 
#define rmw_error_is_set   rcutils_error_is_set
 Return true if the error is set, otherwise false. More...
 
#define rmw_get_error_state   rcutils_get_error_state
 Return an rcutils_error_state_t which was set with rcutils_set_error_state(). More...
 
#define rmw_get_error_string   rcutils_get_error_string
 Return the error message followed by , at <file>:<line> if set, else "error not set". More...
 
#define rmw_reset_error   rcutils_reset_error
 Reset the error state by clearing any previously set error state. More...
 

Typedefs

typedef rcutils_error_string_t rmw_error_string_t
 Struct wrapping a fixed-size c string used for returning the formatted error string. More...
 
typedef rcutils_error_state_t rmw_error_state_t
 Struct which encapsulates the error state set by RMW_SET_ERROR_MSG(). More...
 

Detailed Description

Functions and macros to interact with error handling mechanisms.

This logic pretty much renames many rcutils functions and macros. Also check out that package's documentation for more information.

Macro Definition Documentation

◆ RMW_SAFE_FWRITE_TO_STDERR

#define RMW_SAFE_FWRITE_TO_STDERR   RCUTILS_SAFE_FWRITE_TO_STDERR

Limit the buffer size in the fwrite call to give an upper bound to buffer overrun in the case of non-null terminated msg.

◆ rmw_initialize_error_handling_thread_local_storage

#define rmw_initialize_error_handling_thread_local_storage   rcutils_initialize_error_handling_thread_local_storage

Forces initialization of thread-local storage if called in a newly created thread.

If this function is not called beforehand, then the first time the error state is set or the first time the error message is retrieved, the default allocator will be used to allocate thread-local storage.

This function may or may not allocate memory. The system's thread-local storage implementation may need to allocate memory, since it usually has no way of knowing how much storage is needed without knowing how many threads will be created. Most implementations (e.g. C11, C++11, and pthread) do not have ways to specify how this memory is allocated, but if the implementation allows, the given allocator to this function will be used, but is otherwise unused. This only occurs when creating and destroying threads, which can be avoided in the "steady" state by reusing pools of threads.

It is worth considering that repeated thread creation and destruction will result in repeated memory allocations and could result in memory fragmentation. This is typically avoided anyways by using pools of threads.

In case an error is indicated by the return code, no error message will have been set.

If called more than once in a thread, or after implicitly initialized by setting the error state, it will still return RCUTILS_RET_OK, even if the given allocator is invalid. Essentially this function does nothing if thread-local storage has already been called. If already initialized, the given allocator is ignored, even if it does not match the allocator used originally to initialize the thread-local storage.

Returns
RCUTILS_RET_OK if successful, or
RCUTILS_RET_INVALID_ARGUMENT if the allocator is invalid, or
RCUTILS_RET_BAD_ALLOC if allocating memory fails, or
RCUTILS_RET_ERROR if an unspecified error occurs.

◆ rmw_set_error_state

#define rmw_set_error_state   rcutils_set_error_state

Set the error message, as well as the file and line on which it occurred.

This is not meant to be used directly, but instead via the RMW_SET_ERROR_MSG(msg) macro.

The error_msg parameter is copied into the internal error storage and must be null terminated. The file parameter is copied into the internal error storage and must be null terminated.

Parameters
[in]error_stringThe error message to set.
[in]fileThe path to the file in which the error occurred.
[in]line_numberThe line number on which the error occurred.

◆ RMW_CHECK_ARGUMENT_FOR_NULL

#define RMW_CHECK_ARGUMENT_FOR_NULL (   argument,
  error_return_type 
)    RCUTILS_CHECK_ARGUMENT_FOR_NULL(argument, error_return_type)

Check an argument for a null value.

If the argument's value is NULL, set the error message saying so and return the error_return_type.

Parameters
[in]argumentThe argument to test.
[in]error_return_typeThe type to return if the argument is NULL.

◆ RMW_CHECK_FOR_NULL_WITH_MSG

#define RMW_CHECK_FOR_NULL_WITH_MSG (   value,
  msg,
  error_statement 
)    RCUTILS_CHECK_FOR_NULL_WITH_MSG(value, msg, error_statement)

Check a value for null, with an error message and error statement.

If value is NULL, the error statement will be evaluated after setting the error message.

Parameters
[in]valueThe value to test.
[in]msgThe error message if value is NULL.
[in]error_statementThe statement to evaluate if value is NULL.

◆ RMW_SET_ERROR_MSG

#define RMW_SET_ERROR_MSG (   msg)    RCUTILS_SET_ERROR_MSG(msg)

Set the error message, as well as append the current file and line number.

If an error message was previously set, and rmw_reset_error() was not called afterwards, and this library was built with RCUTILS_REPORT_ERROR_HANDLING_ERRORS turned on, then the previously set error message will be printed to stderr. Error state storage is thread local and so all error related functions are also thread local.

Parameters
[in]msgThe error message to be set.

◆ RMW_SET_ERROR_MSG_WITH_FORMAT_STRING

#define RMW_SET_ERROR_MSG_WITH_FORMAT_STRING (   format_string,
  ... 
)    RCUTILS_SET_ERROR_MSG_WITH_FORMAT_STRING(format_string, __VA_ARGS__)

Set the error message using a format string and format arguments.

This function sets the error message using the given format string. The resulting formatted string is silently truncated at RCUTILS_ERROR_MESSAGE_MAX_LENGTH.

Parameters
[in]format_stringThe string to be used as the format of the error message.
[in]...Arguments for the format string.

◆ rmw_error_is_set

#define rmw_error_is_set   rcutils_error_is_set

Return true if the error is set, otherwise false.

This is currently defines as rcutils_error_is_set

◆ rmw_get_error_state

#define rmw_get_error_state   rcutils_get_error_state

Return an rcutils_error_state_t which was set with rcutils_set_error_state().

The returned pointer will be NULL if no error has been set in this thread.

The returned pointer is valid until RCUTILS_SET_ERROR_MSG, rcutils_set_error_state, or rcutils_reset_error are called in the same thread.

Returns
A pointer to the current error state struct.

◆ rmw_get_error_string

#define rmw_get_error_string   rcutils_get_error_string

Return the error message followed by , at <file>:<line> if set, else "error not set".

This function is "safe" because it returns a copy of the current error string or one containing the string "error not set" if no error was set. This ensures that the copy is owned by the calling thread and is therefore never invalidated by other error handling calls, and that the C string inside is always valid and null terminated.

Returns
The current error string, with file and line number, or "error not set" if not set.

◆ rmw_reset_error

#define rmw_reset_error   rcutils_reset_error

Reset the error state by clearing any previously set error state.

Typedef Documentation

◆ rmw_error_string_t

Struct wrapping a fixed-size c string used for returning the formatted error string.

◆ rmw_error_state_t

Struct which encapsulates the error state set by RMW_SET_ERROR_MSG().