2014-06-23 02:38:53 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2013-2014 Mnemosyne LLC
|
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2014-06-23 02:38:53 +00:00
|
|
|
|
2021-12-28 02:32:22 +00:00
|
|
|
#include <string_view>
|
|
|
|
|
2017-06-18 12:34:21 +00:00
|
|
|
#include "tr-macros.h"
|
|
|
|
|
2014-06-23 02:38:53 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup error Error reporting
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @brief Structure holding error information. */
|
2021-10-06 14:26:07 +00:00
|
|
|
struct tr_error
|
2014-06-23 02:38:53 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
/** @brief Error code, platform-specific */
|
|
|
|
int code;
|
|
|
|
/** @brief Error message */
|
|
|
|
char* message;
|
2021-10-06 14:26:07 +00:00
|
|
|
};
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Free memory used by error object.
|
|
|
|
*
|
|
|
|
* @param[in] error Error object to be freed.
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_error_free(tr_error* error);
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Create and set new error object using literal error message.
|
|
|
|
*
|
2021-10-06 16:32:17 +00:00
|
|
|
* If passed pointer to error object is `nullptr`, do nothing.
|
2014-06-23 02:38:53 +00:00
|
|
|
*
|
|
|
|
* @param[in,out] error Pointer to error object to be set.
|
|
|
|
* @param[in] code Error code (platform-specific).
|
|
|
|
* @param[in] message Error message.
|
|
|
|
*/
|
2021-12-28 02:32:22 +00:00
|
|
|
void tr_error_set(tr_error** error, int code, std::string_view message);
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Propagate existing error object upwards.
|
|
|
|
*
|
2021-10-06 16:32:17 +00:00
|
|
|
* If passed pointer to new error object is not `nullptr`, copy old error object
|
|
|
|
* to new error object and free old error object. Otherwise, just free old error
|
2014-06-23 02:38:53 +00:00
|
|
|
* object.
|
|
|
|
*
|
|
|
|
* @param[in,out] new_error Pointer to error object to be set.
|
|
|
|
* @param[in,out] old_error Error object to be propagated. Cleared on return.
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_error_propagate(tr_error** new_error, tr_error** old_error);
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Clear error object.
|
|
|
|
*
|
2021-10-06 16:32:17 +00:00
|
|
|
* Free error object being pointed and set pointer to `nullptr`. If passed
|
|
|
|
* pointer is `nullptr`, do nothing.
|
2014-06-23 02:38:53 +00:00
|
|
|
*
|
|
|
|
* @param[in,out] error Pointer to error object to be cleared.
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_error_clear(tr_error** error);
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Prefix message of exising error object.
|
|
|
|
*
|
2021-10-06 16:32:17 +00:00
|
|
|
* If passed pointer to error object is not `nullptr`, prefix its message with
|
2014-06-23 02:38:53 +00:00
|
|
|
* `printf`-style formatted text. Otherwise, do nothing.
|
|
|
|
*
|
|
|
|
* @param[in,out] error Pointer to error object to be set.
|
|
|
|
* @param[in] prefix_format Prefix format string.
|
|
|
|
* @param[in] ... Format arguments.
|
|
|
|
*/
|
2021-12-16 02:09:46 +00:00
|
|
|
void tr_error_prefix(tr_error** error, char const* prefix);
|
2014-06-23 02:38:53 +00:00
|
|
|
|
|
|
|
/** @} */
|