00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef CPL_ERROR_H_INCLUDED
00032 #define CPL_ERROR_H_INCLUDED
00033
00034 #include "cpl_port.h"
00035
00036
00037
00038
00039
00046 CPL_C_START
00047
00048 typedef enum
00049 {
00050 CE_None = 0,
00051 CE_Debug = 1,
00052 CE_Warning = 2,
00053 CE_Failure = 3,
00054 CE_Fatal = 4
00055 } CPLErr;
00056
00057 void CPL_DLL CPLError(CPLErr eErrClass, int err_no, const char *fmt, ...) CPL_PRINT_FUNC_FORMAT (3, 4);
00058 void CPL_DLL CPLErrorV(CPLErr, int, const char *, va_list );
00059 void CPL_DLL CPLEmergencyError( const char * );
00060 void CPL_DLL CPL_STDCALL CPLErrorReset( void );
00061 int CPL_DLL CPL_STDCALL CPLGetLastErrorNo( void );
00062 CPLErr CPL_DLL CPL_STDCALL CPLGetLastErrorType( void );
00063 const char CPL_DLL * CPL_STDCALL CPLGetLastErrorMsg( void );
00064 void CPL_DLL * CPL_STDCALL CPLGetErrorHandlerUserData(void);
00065 void CPL_DLL CPLCleanupErrorMutex();
00066
00067 typedef void (CPL_STDCALL *CPLErrorHandler)(CPLErr, int, const char*);
00068
00069 void CPL_DLL CPL_STDCALL CPLLoggingErrorHandler( CPLErr, int, const char * );
00070 void CPL_DLL CPL_STDCALL CPLDefaultErrorHandler( CPLErr, int, const char * );
00071 void CPL_DLL CPL_STDCALL CPLQuietErrorHandler( CPLErr, int, const char * );
00072 void CPLTurnFailureIntoWarning(int bOn );
00073
00074 CPLErrorHandler CPL_DLL CPL_STDCALL CPLSetErrorHandler(CPLErrorHandler);
00075 CPLErrorHandler CPL_DLL CPL_STDCALL CPLSetErrorHandlerEx(CPLErrorHandler, void*);
00076 void CPL_DLL CPL_STDCALL CPLPushErrorHandler( CPLErrorHandler );
00077 void CPL_DLL CPL_STDCALL CPLPushErrorHandlerEx( CPLErrorHandler, void* );
00078 void CPL_DLL CPL_STDCALL CPLPopErrorHandler(void);
00079
00080 void CPL_DLL CPL_STDCALL CPLDebug( const char *, const char *, ... ) CPL_PRINT_FUNC_FORMAT (2, 3);
00081 void CPL_DLL CPL_STDCALL _CPLAssert( const char *, const char *, int );
00082
00083 #ifdef DEBUG
00084 # define CPLAssert(expr) ((expr) ? (void)(0) : _CPLAssert(#expr,__FILE__,__LINE__))
00085 #else
00086 # define CPLAssert(expr)
00087 #endif
00088
00089 CPL_C_END
00090
00091
00092
00093
00094 #ifdef DEBUG
00095 # define VALIDATE_POINTER_ERR CE_Fatal
00096 #else
00097 # define VALIDATE_POINTER_ERR CE_Failure
00098 #endif
00099
00100 #define VALIDATE_POINTER0(ptr, func) \
00101 do { if( NULL == ptr ) \
00102 { \
00103 CPLErr const ret = VALIDATE_POINTER_ERR; \
00104 CPLError( ret, CPLE_ObjectNull, \
00105 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
00106 return; }} while(0)
00107
00108 #define VALIDATE_POINTER1(ptr, func, rc) \
00109 do { if( NULL == ptr ) \
00110 { \
00111 CPLErr const ret = VALIDATE_POINTER_ERR; \
00112 CPLError( ret, CPLE_ObjectNull, \
00113 "Pointer \'%s\' is NULL in \'%s\'.\n", #ptr, (func)); \
00114 return (rc); }} while(0)
00115
00116
00117
00118
00119
00120 #define CPLE_None 0
00121 #define CPLE_AppDefined 1
00122 #define CPLE_OutOfMemory 2
00123 #define CPLE_FileIO 3
00124 #define CPLE_OpenFailed 4
00125 #define CPLE_IllegalArg 5
00126 #define CPLE_NotSupported 6
00127 #define CPLE_AssertionFailed 7
00128 #define CPLE_NoWriteAccess 8
00129 #define CPLE_UserInterrupt 9
00130 #define CPLE_ObjectNull 10
00131
00132
00133
00134 #endif