Result Library 0.1
Elegant error handling in C
|
A header-only C library to handle errors elegantly. More...
Macros | |
#define | RESULT_VERSION 0 |
Returns the major version number of this library. | |
#define | RESULT_TAG(success_type_name, failure_type_name) |
Returns the struct tag for results with the supplied success and failure type names. | |
#define | RESULT_STRUCT_TAG(success_type, failure_type, struct_tag) |
Declares a result struct with the supplied success and failure types. | |
#define | RESULT_STRUCT(success_type, failure_type) |
Declares a result struct with a default tag and the supplied success and failure types. | |
#define | RESULT(success_type_name, failure_type_name) |
Returns the type specifier for results with the supplied success and failure type names. | |
#define | RESULT_SUCCESS(success) |
Initializes a new successful result containing the supplied value. | |
#define | RESULT_FAILURE(failure) |
Initializes a new failed result containing the supplied value. | |
#define | RESULT_HAS_SUCCESS(result) |
Checks if a result contains a success value. | |
#define | RESULT_HAS_FAILURE(result) |
Checks if a result contains a failure value. | |
#define | RESULT_USE_SUCCESS(result) |
Returns a result's success value. | |
#define | RESULT_USE_FAILURE(result) |
Returns a result's failure value. | |
#define | RESULT_GET_SUCCESS(result) |
Returns a result's success value as a possibly-null pointer. | |
#define | RESULT_GET_FAILURE(result) |
Returns a result's failure value as a possibly-null pointer. | |
#define | RESULT_OR_ELSE(result, other) |
Returns a result's success value, or the supplied one. | |
#define | RESULT_OR_ELSE_MAP(result, failure_mapper) |
Returns a result's success value, or maps its failure value. | |
#define | RESULT_IF_SUCCESS(result, action) |
Performs the supplied action with a successful result's value. | |
#define | RESULT_IF_FAILURE(result, action) |
Performs the supplied action with a failed result's value. | |
#define | RESULT_IF_SUCCESS_OR_ELSE(result, success_action, failure_action) |
Performs either of the supplied actions with a result's value. | |
#define | RESULT_FILTER(result, is_acceptable, failure) |
Conditionally transforms a successful result into a failed one. | |
#define | RESULT_FILTER_MAP(result, is_acceptable, success_mapper) |
Conditionally transforms a successful result into a failed one, mapping its success value. | |
#define | RESULT_RECOVER(result, is_recoverable, success) |
Conditionally transforms a failed result into a successful one. | |
#define | RESULT_RECOVER_MAP(result, is_recoverable, failure_mapper) |
Conditionally transforms a failed result into a successful one, mapping its failure value. | |
#define | RESULT_MAP_SUCCESS(result, success_mapper, result_type) |
Transforms the value of a successful result. | |
#define | RESULT_MAP_FAILURE(result, failure_mapper, result_type) |
Transforms the value of a failed result. | |
#define | RESULT_MAP(result, success_mapper, failure_mapper, result_type) |
Transforms either the success or the failure value of a result. | |
#define | RESULT_FLAT_MAP_SUCCESS(result, success_mapper) |
Transforms a successful result into a different one. | |
#define | RESULT_FLAT_MAP_FAILURE(result, failure_mapper) |
Transforms a failed result into a different one. | |
#define | RESULT_FLAT_MAP(result, success_mapper, failure_mapper) |
Transforms a result into a different one. | |
#define | RESULT_DEBUG_FUNC(result) |
Returns the function name where a result was created. | |
#define | RESULT_DEBUG_FILE(result) |
Returns the source file name where a result was created. | |
#define | RESULT_DEBUG_LINE(result) |
Returns the source line number where a result was created. | |
A header-only C library to handle errors elegantly.
This library consists of one header file only. All you need to do is copy result.h
into your project, and include it.
Since it's a header-only library, there is no library code to link against.
#define RESULT_VERSION 0 |
Returns the major version number of this library.
#define RESULT_TAG | ( | success_type_name, | |
failure_type_name ) |
Returns the struct tag for results with the supplied success and failure type names.
For example, a result that can hold either an int
success value, or a char
failure value, has a struct tag: result_of_int_and_char
.
success_type_name | the success type name. |
failure_type_name | the failure type name. |
#define RESULT_STRUCT_TAG | ( | success_type, | |
failure_type, | |||
struct_tag ) |
Declares a result struct with the supplied success and failure types.
success_type | the success type. |
failure_type | the failure type. |
struct_tag | the struct tag. |
#define RESULT_STRUCT | ( | success_type, | |
failure_type ) |
Declares a result struct with a default tag and the supplied success and failure types.
success_type | the success type. |
failure_type | the failure type. |
#define RESULT | ( | success_type_name, | |
failure_type_name ) |
Returns the type specifier for results with the supplied success and failure type names.
For example, a result that can hold either an int
success value, or a char
failure value, has a type specifier: struct result_of_int_and_char
.
success_type_name | the success type name. |
failure_type_name | the failure type name. |
#define RESULT_SUCCESS | ( | success | ) |
Initializes a new successful result containing the supplied value.
success | the success value. |
#define RESULT_FAILURE | ( | failure | ) |
Initializes a new failed result containing the supplied value.
failure | the failure value. |
#define RESULT_HAS_SUCCESS | ( | result | ) |
Checks if a result contains a success value.
result | the result to check for success. |
true
if result is successful; otherwise false
. #define RESULT_HAS_FAILURE | ( | result | ) |
Checks if a result contains a failure value.
result | the result to check for failure. |
true
if result is failed; otherwise false
. #define RESULT_USE_SUCCESS | ( | result | ) |
Returns a result's success value.
result | the result to retrieve the success value from. |
#define RESULT_USE_FAILURE | ( | result | ) |
Returns a result's failure value.
result | the result to retrieve the failure value from. |
#define RESULT_GET_SUCCESS | ( | result | ) |
Returns a result's success value as a possibly-null pointer.
result | the result to retrieve the success value from. |
NULL
. #define RESULT_GET_FAILURE | ( | result | ) |
Returns a result's failure value as a possibly-null pointer.
result | the result to retrieve the failure value from. |
NULL
. #define RESULT_OR_ELSE | ( | result, | |
other ) |
Returns a result's success value, or the supplied one.
result | the result to retrieve the success value from. |
other | the alternative success value. |
#define RESULT_OR_ELSE_MAP | ( | result, | |
failure_mapper ) |
Returns a result's success value, or maps its failure value.
result | the result to retrieve the success value from. |
failure_mapper | the mapping function or macro that produces the alternative success value. |
#define RESULT_IF_SUCCESS | ( | result, | |
action ) |
Performs the supplied action with a successful result's value.
result | the result whose success value will be used. |
action | the function or macro to be applied to result's success value. |
#define RESULT_IF_FAILURE | ( | result, | |
action ) |
Performs the supplied action with a failed result's value.
result | the result whose failure value will be used. |
action | the function or macro to be applied to result's failure value. |
#define RESULT_IF_SUCCESS_OR_ELSE | ( | result, | |
success_action, | |||
failure_action ) |
Performs either of the supplied actions with a result's value.
result | the result whose value will be used. |
success_action | the function or macro to be applied to result's success value. |
failure_action | the function or macro to be applied to result's failure value. |
#define RESULT_FILTER | ( | result, | |
is_acceptable, | |||
failure ) |
Conditionally transforms a successful result into a failed one.
result | the result to map the success value from. |
is_acceptable | the predicate function or macro to apply to the success value. |
failure | the failure value if not acceptable. |
#define RESULT_FILTER_MAP | ( | result, | |
is_acceptable, | |||
success_mapper ) |
Conditionally transforms a successful result into a failed one, mapping its success value.
result | the result to map the success value from. |
is_acceptable | the predicate function or macro to apply to the success value. |
success_mapper | the mapping function or macro that produces the failure value. |
#define RESULT_RECOVER | ( | result, | |
is_recoverable, | |||
success ) |
Conditionally transforms a failed result into a successful one.
result | the result to map the failure value from. |
is_recoverable | the predicate function or macro to apply to the failure value. |
success | the success value if recoverable. |
#define RESULT_RECOVER_MAP | ( | result, | |
is_recoverable, | |||
failure_mapper ) |
Conditionally transforms a failed result into a successful one, mapping its failure value.
result | the result to map the failure value from. |
is_recoverable | the predicate function or macro to apply to the failure value. |
failure_mapper | the mapping function or macro that produces the success value. |
#define RESULT_MAP_SUCCESS | ( | result, | |
success_mapper, | |||
result_type ) |
Transforms the value of a successful result.
result | the result whose success value will be transformed. |
success_mapper | the mapping function or macro that produces the new success value. |
result_type | the type of transformed result type. |
#define RESULT_MAP_FAILURE | ( | result, | |
failure_mapper, | |||
result_type ) |
Transforms the value of a failed result.
result | the result whose failure value will be transformed. |
failure_mapper | the mapping function or macro that produces the new failure value. |
result_type | the type of transformed result type. |
#define RESULT_MAP | ( | result, | |
success_mapper, | |||
failure_mapper, | |||
result_type ) |
Transforms either the success or the failure value of a result.
result | the result whose value will be transformed. |
success_mapper | the mapping function or macro that produces the new success value. |
failure_mapper | the mapping function or macro that produces the new failure value. |
result_type | the type of transformed result type. |
#define RESULT_FLAT_MAP_SUCCESS | ( | result, | |
success_mapper ) |
Transforms a successful result into a different one.
result | the result that will be transformed. |
success_mapper | the mapping function or macro that produces the new result if the given result is successful. |
#define RESULT_FLAT_MAP_FAILURE | ( | result, | |
failure_mapper ) |
Transforms a failed result into a different one.
result | the result that will be transformed. |
failure_mapper | the mapping function or macro that produces the new result if the given result is failed. |
#define RESULT_FLAT_MAP | ( | result, | |
success_mapper, | |||
failure_mapper ) |
Transforms a result into a different one.
result | the result that will be transformed. |
success_mapper | the mapping function or macro that produces the new result if the given result is successful. |
failure_mapper | the mapping function or macro that produces the new result if the given result is failed. |
#define RESULT_DEBUG_FUNC | ( | result | ) |
Returns the function name where a result was created.
NDEBUG
is not defined.result | the result to retrieve the debug information from. |
#define RESULT_DEBUG_FILE | ( | result | ) |
Returns the source file name where a result was created.
NDEBUG
is not defined.result | the result to retrieve the debug information from. |
#define RESULT_DEBUG_LINE | ( | result | ) |
Returns the source line number where a result was created.
NDEBUG
is not defined.result | the result to retrieve the debug information from. |