14#ifndef CPL_ERROR_H_INCLUDED
15#define CPL_ERROR_H_INCLUDED
49#ifdef STRICT_CPLERRORNUM_TYPE
85#define CPLE_AppDefined 1
87#define CPLE_OutOfMemory 2
91#define CPLE_OpenFailed 4
93#define CPLE_IllegalArg 5
95#define CPLE_NotSupported 6
97#define CPLE_AssertionFailed 7
99#define CPLE_NoWriteAccess 8
101#define CPLE_UserInterrupt 9
103#define CPLE_ObjectNull 10
109#define CPLE_HttpResponse 11
111#define CPLE_BucketNotFound 12
113#define CPLE_ObjectNotFound 13
115#define CPLE_AccessDenied 14
117#define CPLE_InvalidCredentials 15
119#define CPLE_SignatureDoesNotMatch 16
121#define CPLE_ObjectStorageGenericError 17
131#define CPLE_AWSBucketNotFound CPLE_BucketNotFound
137#define CPLE_AWSObjectNotFound CPLE_ObjectNotFound
143#define CPLE_AWSAccessDenied CPLE_AccessDenied
149#define CPLE_AWSInvalidCredentials CPLE_InvalidCredentials
155#define CPLE_AWSSignatureDoesNotMatch CPLE_SignatureDoesNotMatch
161#define CPLE_AWSError CPLE_ObjectStorageGenericError
167#ifdef GDAL_COMPILATION
177#define CPLErrorOnce(eErrClass, err_no, ...) \
180 static bool lbCPLErrorOnce = false; \
181 if (!lbCPLErrorOnce) \
183 lbCPLErrorOnce = true; \
184 const char *lCPLErrorMsg = CPLSPrintf(__VA_ARGS__); \
185 const size_t lCPLErrorMsgLen = strlen(lCPLErrorMsg); \
186 const char *lCPLErrorMsgSuffix = \
187 " Further messages of this type will be suppressed."; \
188 if (lCPLErrorMsgLen && lCPLErrorMsg[lCPLErrorMsgLen - 1] == '.') \
189 CPLError((eErrClass), (err_no), "%s%s", lCPLErrorMsg, \
190 lCPLErrorMsgSuffix); \
192 CPLError((eErrClass), (err_no), "%s.%s", lCPLErrorMsg, \
193 lCPLErrorMsgSuffix); \
208#if defined(GDAL_COMPILATION) && defined(__cplusplus)
213 const GUInt32 *pnErrorCounter);
220void CPL_DLL CPLCleanupErrorMutex(
void);
246#ifdef WITHOUT_CPLDEBUG
247#define CPLDebug(...) \
251#define CPLDebugProgress(...) \
256#ifdef GDAL_COMPILATION
262#define CPLDebugOnce(...) \
274#ifdef GDAL_COMPILATION
280#define CPLDebugOnce(category, ...) \
283 static bool lbCPLDebugOnce = false; \
284 if (!lbCPLDebugOnce) \
286 lbCPLDebugOnce = true; \
287 const char *lCPLDebugMsg = CPLSPrintf(__VA_ARGS__); \
288 const size_t lCPLErrorMsgLen = strlen(lCPLDebugMsg); \
289 const char *lCPLDebugMsgSuffix = \
290 " Further messages of this type will be suppressed."; \
291 if (lCPLErrorMsgLen && lCPLDebugMsg[lCPLErrorMsgLen - 1] == '.') \
292 CPLDebug((category), "%s%s", lCPLDebugMsg, \
293 lCPLDebugMsgSuffix); \
295 CPLDebug((category), "%s.%s", lCPLDebugMsg, \
296 lCPLDebugMsgSuffix); \
303#if defined(DEBUG) || defined(GDAL_DEBUG)
307#define CPLDebugOnly(...) CPLDebug(__VA_ARGS__)
312#define CPLDebugOnly(...) \
318void CPL_DLL CPL_STDCALL
_CPLAssert(
const char *,
const char *,
321#if defined(DEBUG) && !defined(CPPCHECK)
323#define CPLAssert(expr) \
324 ((expr) ? (void)(0) : _CPLAssert(#expr, __FILE__, __LINE__))
327#define CPLAssertAlwaysEval(expr) CPLAssert(expr)
330#define CPLAssert(expr) \
337#define CPLAssertAlwaysEval(expr) CPL_IGNORE_RET_VAL(expr)
341#define CPLAssertAlwaysEval(expr) (void)(expr)
352#define VALIDATE_POINTER_ERR CE_Fatal
354#define VALIDATE_POINTER_ERR CE_Failure
359#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
366 template <
class T> T *CPLAssertNotNull(T *x)
413 std::string m_osLastErrorMsg;
415 std::unique_ptr<CPLErrorHandlerPusher> m_poErrorHandlerPusher;
432 class CPL_DLL CPLTurnFailureIntoWarningBackuper
435 CPLTurnFailureIntoWarningBackuper()
440 ~CPLTurnFailureIntoWarningBackuper()
447#ifdef GDAL_COMPILATION
450bool CPLIsDefaultErrorHandlerAndCatchDebug();
457#define VALIDATE_POINTER0(ptr, func) \
460 if (CPL_NULLPTR == ptr) \
462 CPLErr const ret = VALIDATE_POINTER_ERR; \
463 CPLError(ret, CPLE_ObjectNull, \
464 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
470#define VALIDATE_POINTER1(ptr, func, rc) \
473 if (CPL_NULLPTR == ptr) \
475 CPLErr const ret = VALIDATE_POINTER_ERR; \
476 CPLError(ret, CPLE_ObjectNull, \
477 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
CPLErrorHandlerPusher(CPLErrorHandler hHandler)
Constructor that installs a thread-local temporary error handler (typically CPLQuietErrorHandler).
Definition cpl_error.h:386
CPLErrorHandlerPusher(CPLErrorHandler hHandler, void *user_data)
Constructor that installs a thread-local temporary error handler, and its user data.
Definition cpl_error.h:394
~CPLErrorHandlerPusher()
Destructor that restores the initial error handler.
Definition cpl_error.h:400
CPLErrorStateBackuper(CPLErrorHandler hHandler=nullptr)
Constructor that backs up the error state, and optionally installs a thread-local temporary error han...
Definition cpl_error.cpp:1562
void CPLQuietWarningsErrorHandler(CPLErr, CPLErrorNum, const char *)
Error handler that ignores CE_Warning messages.
Definition cpl_error.cpp:1126
#define CPLE_IllegalArg
Illegal argument.
Definition cpl_error.h:93
void CPLErrorSetState(CPLErr eErrClass, CPLErrorNum err_no, const char *pszMsg)
Restore an error state, without emitting an error.
Definition cpl_error.cpp:890
GUInt32 CPLGetErrorCounter(void)
Get the error counter.
Definition cpl_error.cpp:981
#define CPLE_AssertionFailed
Assertion failed.
Definition cpl_error.h:97
void CPLPushErrorHandlerEx(CPLErrorHandler, void *)
Push a new CPLError handler with user data on the error context.
Definition cpl_error.cpp:1364
#define CPLE_None
No error.
Definition cpl_error.h:83
#define CPLE_ObjectNotFound
VSIE_ObjectNotFound.
Definition cpl_error.h:113
void CPLErrorReset(void)
Erase any traces of previous errors.
Definition cpl_error.cpp:815
void CPLLoggingErrorHandler(CPLErr, CPLErrorNum, const char *)
Error handler that logs into the file defined by the CPL_LOG configuration option,...
Definition cpl_error.cpp:1142
#define CPLE_NotSupported
Not supported.
Definition cpl_error.h:95
#define CPLAssert(expr)
Assert on an expression.
Definition cpl_error.h:330
CPLErr
Error category.
Definition cpl_error.h:37
#define CPLE_FileIO
File I/O error.
Definition cpl_error.h:89
CPLErrorNum CPLGetLastErrorNo(void)
Fetch the last error number.
Definition cpl_error.cpp:911
#define CPLE_AppDefined
Application defined error.
Definition cpl_error.h:85
#define CPLE_OpenFailed
Open failed.
Definition cpl_error.h:91
const char * CPLGetLastErrorMsg(void)
Get the last error message.
Definition cpl_error.cpp:959
CPLErrorHandler CPLGetErrorHandler(void **ppUserData)
Fetch the current error handler for the current error context.
Definition cpl_error.cpp:175
CPLErrorHandler CPLSetErrorHandler(CPLErrorHandler)
Install custom error handler.
Definition cpl_error.cpp:1320
#define CPLE_AccessDenied
VSIE_AccessDenied.
Definition cpl_error.h:115
#define CPLE_ObjectNull
NULL object.
Definition cpl_error.h:103
void CPLDefaultErrorHandler(CPLErr, CPLErrorNum, const char *)
Default error handler.
Definition cpl_error.cpp:1015
CPLErr CPLGetLastErrorType(void)
Fetch the last error type.
Definition cpl_error.cpp:935
int CPLErrorNum
Error number.
Definition cpl_error.h:80
void * CPLGetErrorHandlerUserData(void)
Fetch the user data for the error context.
Definition cpl_error.cpp:147
void(* CPLErrorHandler)(CPLErr, CPLErrorNum, const char *)
Callback for a custom error handler.
Definition cpl_error.h:224
void CPLTurnFailureIntoWarning(int bOn)
Whether failures should be turned into warnings.
Definition cpl_error.cpp:1215
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:1431
#define CPLE_InvalidCredentials
VSIE_InvalidCredentials.
Definition cpl_error.h:117
void CPLEmergencyError(const char *)
Fatal error when things are bad.
Definition cpl_error.cpp:496
#define CPLE_SignatureDoesNotMatch
VSIE_SignatureDoesNotMatch.
Definition cpl_error.h:119
void _CPLAssert(const char *, const char *, int)
Report failure of a logical assertion.
Definition cpl_error.cpp:1519
#define CPLE_HttpResponse
HTTP response.
Definition cpl_error.h:109
void CPLPopErrorHandler(void)
Pop error handler off stack.
Definition cpl_error.cpp:1398
#define CPLE_BucketNotFound
VSIE_BucketNotFound.
Definition cpl_error.h:111
void CPLDebug(const char *, const char *,...)
Display a debugging message.
Definition cpl_error.cpp:740
void CPLPushErrorHandler(CPLErrorHandler)
Push a new CPLError handler.
Definition cpl_error.cpp:1341
#define CPLE_NoWriteAccess
No write access.
Definition cpl_error.h:99
#define CPLE_ObjectStorageGenericError
VSIE_ObjectStorageGenericError.
Definition cpl_error.h:121
#define CPLE_UserInterrupt
User interrupted.
Definition cpl_error.h:101
void CPLErrorV(CPLErr, CPLErrorNum, const char *, va_list)
Same as CPLError() but with a va_list.
Definition cpl_error.cpp:332
void CPLQuietErrorHandler(CPLErr, CPLErrorNum, const char *)
Error handler that does not do anything, except for debug messages.
Definition cpl_error.cpp:1113
#define CPLE_OutOfMemory
Out of memory error.
Definition cpl_error.h:87
CPLErrorHandler CPLSetErrorHandlerEx(CPLErrorHandler, void *)
Install custom error handle with user's data.
Definition cpl_error.cpp:1247
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:1485
void CPLError(CPLErr eErrClass, CPLErrorNum err_no, const char *fmt,...)
Report an error.
Definition cpl_error.cpp:316
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:889
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:289
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:285
#define CPL_FORMAT_STRING(arg)
Macro into which to wrap the format argument of a printf-like function.
Definition cpl_port.h:860
#define CPL_RETURNS_NONNULL
Qualifier for a function that does not return NULL.
Definition cpl_port.h:908
unsigned int GUInt32
Unsigned int32 type.
Definition cpl_port.h:167
#define CPL_PRINT_FUNC_FORMAT(format_idx, arg_idx)
Tag a function to have printf() formatting.
Definition cpl_port.h:844
#define CPL_WARN_UNUSED_RESULT
Qualifier to warn when the return value of a function is not used.
Definition cpl_port.h:870