31 #ifndef CPL_ERROR_H_INCLUDED
32 #define CPL_ERROR_H_INCLUDED
65 #ifdef STRICT_CPLERRORNUM_TYPE
100 #define CPLE_AppDefined 1
102 #define CPLE_OutOfMemory 2
104 #define CPLE_FileIO 3
106 #define CPLE_OpenFailed 4
108 #define CPLE_IllegalArg 5
110 #define CPLE_NotSupported 6
112 #define CPLE_AssertionFailed 7
114 #define CPLE_NoWriteAccess 8
116 #define CPLE_UserInterrupt 9
118 #define CPLE_ObjectNull 10
124 #define CPLE_HttpResponse 11
126 #define CPLE_AWSBucketNotFound 12
128 #define CPLE_AWSObjectNotFound 13
130 #define CPLE_AWSAccessDenied 14
132 #define CPLE_AWSInvalidCredentials 15
134 #define CPLE_AWSSignatureDoesNotMatch 16
136 #define CPLE_AWSError 17
158 void CPL_DLL CPLCleanupErrorMutex(
void);
182 #ifdef WITHOUT_CPLDEBUG
183 #define CPLDebug(...) \
187 #define CPLDebugProgress(...) \
202 #define CPLDebugOnly(...) CPLDebug(__VA_ARGS__)
207 #define CPLDebugOnly(...) \
213 void CPL_DLL CPL_STDCALL
_CPLAssert(
const char *,
const char *,
216 #if defined(DEBUG) && !defined(CPPCHECK)
218 #define CPLAssert(expr) \
219 ((expr) ? (void)(0) : _CPLAssert(#expr, __FILE__, __LINE__))
222 #define CPLAssertAlwaysEval(expr) CPLAssert(expr)
225 #define CPLAssert(expr) \
232 #define CPLAssertAlwaysEval(expr) CPL_IGNORE_RET_VAL(expr)
236 #define CPLAssertAlwaysEval(expr) (void)(expr)
247 #define VALIDATE_POINTER_ERR CE_Fatal
249 #define VALIDATE_POINTER_ERR CE_Failure
254 #if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
261 template <
class T> T *CPLAssertNotNull(T *x)
308 std::string m_osLastErrorMsg;
310 std::unique_ptr<CPLErrorHandlerPusher> m_poErrorHandlerPusher;
325 #ifdef GDAL_COMPILATION
328 bool CPLIsDefaultErrorHandlerAndCatchDebug();
335 #define VALIDATE_POINTER0(ptr, func) \
338 if (CPL_NULLPTR == ptr) \
340 CPLErr const ret = VALIDATE_POINTER_ERR; \
341 CPLError(ret, CPLE_ObjectNull, \
342 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
348 #define VALIDATE_POINTER1(ptr, func, rc) \
351 if (CPL_NULLPTR == ptr) \
353 CPLErr const ret = VALIDATE_POINTER_ERR; \
354 CPLError(ret, CPLE_ObjectNull, \
355 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
Class that installs a (thread-local) error handler on construction, and restore the initial one on de...
Definition: cpl_error.h:276
CPLErrorHandlerPusher(CPLErrorHandler hHandler)
Constructor that installs a thread-local temporary error handler (typically CPLQuietErrorHandler)
Definition: cpl_error.h:281
CPLErrorHandlerPusher(CPLErrorHandler hHandler, void *user_data)
Constructor that installs a thread-local temporary error handler, and its user data.
Definition: cpl_error.h:289
~CPLErrorHandlerPusher()
Destructor that restores the initial error handler.
Definition: cpl_error.h:295
Class that saves the error state on construction, and restores it on destruction.
Definition: cpl_error.h:305
#define CPLE_IllegalArg
Illegal argument.
Definition: cpl_error.h:108
void CPLErrorSetState(CPLErr eErrClass, CPLErrorNum err_no, const char *pszMsg)
Restore an error state, without emitting an error.
Definition: cpl_error.cpp:898
GUInt32 CPLGetErrorCounter(void)
Get the error counter.
Definition: cpl_error.cpp:990
#define CPLE_AWSObjectNotFound
AWSObjectNotFound.
Definition: cpl_error.h:128
#define CPLE_AssertionFailed
Assertion failed.
Definition: cpl_error.h:112
void * CPLGetErrorHandlerUserData(void)
Fetch the user data for the error context.
Definition: cpl_error.cpp:167
void CPLPushErrorHandlerEx(CPLErrorHandler, void *)
Push a new CPLError handler with user data on the error context.
Definition: cpl_error.cpp:1356
#define CPLE_AWSSignatureDoesNotMatch
AWSSignatureDoesNotMatch.
Definition: cpl_error.h:134
#define CPLE_None
No error.
Definition: cpl_error.h:98
void CPLErrorReset(void)
Erase any traces of previous errors.
Definition: cpl_error.cpp:822
void CPLLoggingErrorHandler(CPLErr, CPLErrorNum, const char *)
Error handler that logs into the file defined by the CPL_LOG configuration option,...
Definition: cpl_error.cpp:1134
#define CPLE_NotSupported
Not supported.
Definition: cpl_error.h:110
#define CPLE_AWSInvalidCredentials
AWSInvalidCredentials.
Definition: cpl_error.h:132
#define CPLAssert(expr)
Assert on an expression.
Definition: cpl_error.h:225
CPLErr
Error category.
Definition: cpl_error.h:53
#define CPLE_FileIO
File I/O error.
Definition: cpl_error.h:104
CPLErrorNum CPLGetLastErrorNo(void)
Fetch the last error number.
Definition: cpl_error.cpp:919
void CPLDebugProgress(const char *, const char *,...)
Display a debugging message indicating a progression.
Definition: cpl_error.cpp:792
#define CPLE_AppDefined
Application defined error.
Definition: cpl_error.h:100
#define CPLE_OpenFailed
Open failed.
Definition: cpl_error.h:106
CPLErrorHandler CPLGetErrorHandler(void **ppUserData)
Fetch the current error handler for the current error context.
Definition: cpl_error.cpp:195
CPLErrorHandler CPLSetErrorHandler(CPLErrorHandler)
Install custom error handler.
Definition: cpl_error.cpp:1312
const char * CPLGetLastErrorMsg(void)
Get the last error message.
Definition: cpl_error.cpp:967
#define CPLE_AWSAccessDenied
AWSAccessDenied.
Definition: cpl_error.h:130
#define CPLE_ObjectNull
NULL object.
Definition: cpl_error.h:118
void CPLDefaultErrorHandler(CPLErr, CPLErrorNum, const char *)
Default error handler.
Definition: cpl_error.cpp:1024
CPLErr CPLGetLastErrorType(void)
Fetch the last error type.
Definition: cpl_error.cpp:943
int CPLErrorNum
Error number.
Definition: cpl_error.h:95
void CPLTurnFailureIntoWarning(int bOn)
Whether failures should be turned into warnings.
Definition: cpl_error.cpp:1207
void CPLCallPreviousHandler(CPLErr eErrClass, CPLErrorNum err_no, const char *pszMsg)
Call the previously installed error handler in the error handler stack.
Definition: cpl_error.cpp:1423
void CPLEmergencyError(const char *)
Fatal error when things are bad.
Definition: cpl_error.cpp:510
void(* CPLErrorHandler)(CPLErr, CPLErrorNum, const char *)
Callback for a custom error handler.
Definition: cpl_error.h:162
void _CPLAssert(const char *, const char *, int)
Report failure of a logical assertion.
Definition: cpl_error.cpp:1512
#define CPLE_HttpResponse
HTTP response.
Definition: cpl_error.h:124
#define CPLE_AWSBucketNotFound
AWSBucketNotFound.
Definition: cpl_error.h:126
void CPLPopErrorHandler(void)
Pop error handler off stack.
Definition: cpl_error.cpp:1390
void CPLDebug(const char *, const char *,...)
Display a debugging message.
Definition: cpl_error.cpp:747
void CPLPushErrorHandler(CPLErrorHandler)
Push a new CPLError handler.
Definition: cpl_error.cpp:1333
#define CPLE_NoWriteAccess
No write access.
Definition: cpl_error.h:114
#define CPLE_UserInterrupt
User interrupted.
Definition: cpl_error.h:116
void CPLErrorV(CPLErr, CPLErrorNum, const char *, va_list)
Same as CPLError() but with a va_list.
Definition: cpl_error.cpp:346
void CPLQuietErrorHandler(CPLErr, CPLErrorNum, const char *)
Error handler that does not do anything, except for debug messages.
Definition: cpl_error.cpp:1119
#define CPLE_OutOfMemory
Out of memory error.
Definition: cpl_error.h:102
CPLErrorHandler CPLSetErrorHandlerEx(CPLErrorHandler, void *)
Install custom error handle with user's data.
Definition: cpl_error.cpp:1239
void CPLSetCurrentErrorHandlerCatchDebug(int bCatchDebug)
Set if the current error handler should intercept debug messages, or if they should be processed by t...
Definition: cpl_error.cpp:1478
void CPLError(CPLErr eErrClass, CPLErrorNum err_no, const char *fmt,...)
Report an error.
Definition: cpl_error.cpp:330
Core portability definitions for CPL.
#define CPL_NO_RETURN
Qualifier for a function that does not return at all (terminates the process)
Definition: cpl_port.h:995
#define CPL_C_END
Macro to end a block of C symbols.
Definition: cpl_port.h:299
#define CPL_C_START
Macro to start a block of C symbols.
Definition: cpl_port.h:295
#define CPL_FORMAT_STRING(arg)
Macro into which to wrap the format argument of a printf-like function.
Definition: cpl_port.h:966
#define CPL_RETURNS_NONNULL
Qualifier for a function that does not return NULL.
Definition: cpl_port.h:1014
unsigned int GUInt32
Unsigned int32 type.
Definition: cpl_port.h:177
#define CPL_PRINT_FUNC_FORMAT(format_idx, arg_idx)
Tag a function to have printf() formatting.
Definition: cpl_port.h:950