|
| Error () |
| Construct a null error.
|
|
template<typename T > |
| Error (const T &error, const QString &text, Level level, const QString &fileName, int fileLine, const QString &className, const QString &functionName) |
| Construct a error with error and source set. More...
|
|
template<typename T > |
| Error (const T &error, const QString &text, Level level, const QString &fileName, int fileLine, const QObject *const obj, const QString &functionName) |
| Construct a error with error and source set. More...
|
|
| Error (const Error &)=default |
| Construct a copy of other error.
|
|
bool | isNull () const |
| Check if error is null. More...
|
|
void | clear () |
| Clear error. More...
|
|
void | setError (const QString &text, Level level) |
| Set error.
|
|
template<typename T > |
void | setError (const T &error, const QString &text, Level level) |
| Set user defined error. More...
|
|
template<typename T > |
T | error () const |
| Get user defined error. More...
|
|
void | updateText (const QString &text) |
| Update error text. More...
|
|
void | setInformativeText (const QString &text) |
| Set informative text. More...
|
|
QString | informativeText () const |
| Get informative text. More...
|
|
Level | level () const |
| Get error level. More...
|
|
QString | text () const |
| Get error text. More...
|
|
void | stackError (const Error &error) |
| Stack given error. More...
|
|
std::vector< Error > | getErrorStack () const |
| Get error stack. More...
|
|
void | setSource (const QString &fileName, int fileLine, const QString &className, const QString &functionName) |
| Add the source of error. More...
|
|
void | setSource (const QString &fileName, int fileLine, const QObject *const obj, const QString &functionName) |
| Add the source of error. More...
|
|
void | commit () |
| Commit error. More...
|
|
QString | functionName () const |
| Ger error source function. More...
|
|
QString | fileName () const |
| Get error source file (name only) More...
|
|
int | fileLine () const |
| Get error source line.
|
|
Value class that contains a error.
Error contains only a pointer to (implicitly) shared data (also known as copy-on-write). As long as no error was set, no more memory is allocated. This allows to store a Error object with a few overhead.
Concept of error stack
Imagine a case of a application that provides document editing functionnality, and the user wants to save a document. The application will probably call a helper function from its own library, which also calls a other system function from a onther part of the library, which finally calls a (maybe system dependant) low level function. The low level function fails (for some reason). How could the application provide the most usefull error message to the user ? Lets illustrate a possible call stack:
Function | Error | Error message |
write() | EDQUOT (int) | Disk quota exhausted |
writeToFile() | DiskQuotaExhausted (enum) | Could not write to file 'document.txt' because disk quota exhausted |
saveDocument() | | Could not save your work to 'document.txt'. This is because you reached the disk quota. Please try to save the document to a other place and contact your administrator to solve the problem. |
In above scenario, the application can build appropriate message because it knows what DiskQuotaExhausted means. For some other errors (that the application currently not handles), it could also simply display the error returned from saveDocument(). To implement such error stack, simply, at each level, stack a error that a function returns to current error. For example, in writeToFile(), if write() fails, we create a new Error, and return it. Then, saveDocument() will fail, create its own Error object, and stack the one returned by writeToFile(). To stack a error, use stackError() , and use getErrorStack() to get stacked errors back.
If you need to send Error object across threads with Qt signal/slot (queued), Error must be registered with qRegisterMetaType(). This is allready done in Mdt::Application::init(). If you don't use Mdt::Application, don't forget to call qRegisterMetaType<Mdt::Error>() in, f.ex., your main() function.
Definition at line 260 of file Error.h.