libcosmos
Linux C++ System Programming Library
|
Base class for libcosmos exceptions. More...
#include <CosmosError.hxx>
Public Member Functions | |
CosmosError (const std::string_view error_class, const std::string_view fixed_text={}) | |
CosmosError & | setInfo (const char *file, const size_t line, const char *func) |
Set exception context information. | |
const char * | what () const override throw () |
Implementation of the std::exception interface. | |
std::string | shortWhat () const |
Returns a shorter description of the error without verbose context. | |
virtual void | raise ()=0 |
Throw the most specialized type of this object in the inheritance hierarchy. | |
Protected Member Functions | |
virtual void | generateMsg () const |
Append type specific error information to m_msg. | |
void | setErrorClass (const std::string_view error_class) |
Allows to override error class to allow simpler implementation of derived types. | |
Protected Attributes | |
std::string_view | m_error_class |
Descriptive, unique error class label. | |
std::string | m_msg |
Runtime generated error message. | |
bool | m_msg_generated = false |
Whether m_msg has been assembled yet. | |
const char * | m_file = nullptr |
const char * | m_func = nullptr |
size_t | m_line = 0 |
Base class for libcosmos exceptions.
This base class carries the file, line and function contextual information from where it was thrown. Furthermore it stores a dynamically allocated string with optional additional runtime information.
The cosmos_throw macro allows to transparently throw any type derived from this base class, all contextual information filled in.
Each derived type must override the raise() virtual function to allow to throw the correct specialized type even when only the base class type is known. The generateMsg() function can be overwritten to update the error message content at the time what() is called. This allows to defer expensive calculations until the time the actual exception message content is accessed.
Definition at line 74 of file CosmosError.hxx.
|
inlineexplicit |
Definition at line 78 of file CosmosError.hxx.
|
inlineprotectedvirtual |
Append type specific error information to m_msg.
This function is called by the implementation when error specific information needs to be appended to the m_msg
string.
At entry into this function m_msg
can already contain data that must not be discarded.
This function will be called at most once during the lifetime of an object, and only if the error message actually needs to be generated due to a call to what().
Reimplemented in cosmos::ApiError, cosmos::FileError, and cosmos::ResolveError.
Definition at line 125 of file CosmosError.hxx.
|
inlineprotected |
Allows to override error class to allow simpler implementation of derived types.
Definition at line 128 of file CosmosError.hxx.
|
inline |
Set exception context information.
This function is used by the cosmos_throw
macro to store information about the program location where the exception was thrown.
Definition at line 89 of file CosmosError.hxx.
std::string cosmos::CosmosError::shortWhat | ( | ) | const |
Returns a shorter description of the error without verbose context.
Definition at line 24 of file CosmosError.cxx.
|
override |
Implementation of the std::exception interface.
Returns a completely formatted message describing this error instance. The returned string is only valid for the lifetime of this object.
Definition at line 9 of file CosmosError.cxx.
|
protected |
Descriptive, unique error class label.
Definition at line 135 of file CosmosError.hxx.
|
protected |
Definition at line 140 of file CosmosError.hxx.
|
protected |
Definition at line 141 of file CosmosError.hxx.
|
protected |
Definition at line 142 of file CosmosError.hxx.
|
mutableprotected |
Runtime generated error message.
Definition at line 137 of file CosmosError.hxx.
|
mutableprotected |
Whether m_msg has been assembled yet.
Definition at line 139 of file CosmosError.hxx.