error.h File Reference

This file contains the module for error handling. More...

#include <gwenhywfar/gwenhywfarapi.h>
#include <gwenhywfar/types.h>

Go to the source code of this file.

Defines

#define GWEN_ERROR_ABORTED   (-2)
#define GWEN_ERROR_ALREADY_REGISTERED   (-58)
#define GWEN_ERROR_BAD_ADDRESS   (-41)
#define GWEN_ERROR_BAD_ADDRESS_FAMILY   (-48)
#define GWEN_ERROR_BAD_DATA   (-101)
#define GWEN_ERROR_BAD_SIZE   (-60)
#define GWEN_ERROR_BAD_SOCKETTYPE   (-32)
#define GWEN_ERROR_BROKEN_PIPE   (-39)
#define GWEN_ERROR_BUFFER_OVERFLOW   (-42)
#define GWEN_ERROR_CLOSE   (-54)
#define GWEN_ERROR_COULD_NOT_LOAD   (-49)
#define GWEN_ERROR_COULD_NOT_REGISTER   2
#define GWEN_ERROR_COULD_NOT_RESOLVE   (-50)
#define GWEN_ERROR_COULD_NOT_UNREGISTER   3
#define GWEN_ERROR_CT_BAD_NAME   (-69)
#define GWEN_ERROR_CT_BAD_PIN   (-71)
#define GWEN_ERROR_CT_BAD_PIN_0_LEFT   (-72)
#define GWEN_ERROR_CT_BAD_PIN_1_LEFT   (-73)
#define GWEN_ERROR_CT_BAD_PIN_2_LEFT   (-74)
#define GWEN_ERROR_CT_DEFAULT_PIN   (-77)
#define GWEN_ERROR_CT_IO_ERROR   (-70)
#define GWEN_ERROR_CT_NO_KEY   (-75)
#define GWEN_ERROR_CT_NOT_IMPLEMENTED   (-67)
#define GWEN_ERROR_CT_NOT_SUPPORTED   (-68)
#define GWEN_ERROR_CT_REMOVED   (-76)
#define GWEN_ERROR_DECRYPT   (-63)
#define GWEN_ERROR_ENCRYPT   (-62)
#define GWEN_ERROR_EOF   (-57)
#define GWEN_ERROR_FOUND   (-102)
#define GWEN_ERROR_GENERIC   (-1)
#define GWEN_ERROR_HOST_NOT_FOUND   (-43)
#define GWEN_ERROR_IN_PROGRESS   (-35)
#define GWEN_ERROR_INTERRUPTED   (-37)
#define GWEN_ERROR_INVALID   (-6)
#define GWEN_ERROR_INVALID_BUFFERSIZE   4
#define GWEN_ERROR_IO   (-103)
#define GWEN_ERROR_MEMORY_FULL   (-40)
#define GWEN_ERROR_NO_ADDRESS   (-44)
#define GWEN_ERROR_NO_DATA   (-55)
#define GWEN_ERROR_NO_RECOVERY   (-45)
#define GWEN_ERROR_NOT_AVAILABLE   (-3)
#define GWEN_ERROR_NOT_CONNECTED   (-100)
#define GWEN_ERROR_NOT_FOUND   (-51)
#define GWEN_ERROR_NOT_OPEN   (-33)
#define GWEN_ERROR_NOT_REGISTERED   (-59)
#define GWEN_ERROR_OPEN   (-5)
#define GWEN_ERROR_PARTIAL   (-56)
#define GWEN_ERROR_READ   (-52)
#define GWEN_ERROR_SEVERITY_DEBUG   0
#define GWEN_ERROR_SEVERITY_ERR   3
#define GWEN_ERROR_SEVERITY_INFO   1
#define GWEN_ERROR_SEVERITY_WARN   2
#define GWEN_ERROR_SIGN   (-64)
#define GWEN_ERROR_SSL   (-66)
#define GWEN_ERROR_STARTUP   (-36)
#define GWEN_ERROR_TIMEOUT   (-34)
#define GWEN_ERROR_TRY_AGAIN   (-46)
#define GWEN_ERROR_TYPE_ERROR   0
#define GWEN_ERROR_UNKNOWN_DNS_ERROR   (-47)
#define GWEN_ERROR_UNSPECIFIED   1
#define GWEN_ERROR_UNSUPPORTED   (-38)
#define GWEN_ERROR_USER_ABORTED   (-4)
#define GWEN_ERROR_VERIFY   (-65)
#define GWEN_ERROR_WRITE   (-53)
#define GWEN_SUCCESS   0

Typedefs

typedef GWEN_TYPE_UINT32 GWEN_ERRORCODE
typedef const char *(*) GWEN_ERRORMESSAGEPTR (int c)
typedef GWEN_ERRORTYPEREGISTRATIONFORM GWEN_ERRORTYPEREGISTRATIONFORM

Functions

GWENHYWFAR_API int GWEN_ErrorType_GetType (GWEN_ERRORTYPEREGISTRATIONFORM *f)
Error Type Lookup
These functions lookup error types by name or by number.

GWENHYWFAR_API int GWEN_Error_FindType (const char *name)
GWENHYWFAR_API const char * GWEN_Error_GetTypename (int t)
Getters And Setters
These functions get and set parts of an ERRORCODE.

GWENHYWFAR_API int GWEN_Error_GetCode (GWEN_ERRORCODE c)
GWENHYWFAR_API int GWEN_Error_GetSeverity (GWEN_ERRORCODE c)
GWENHYWFAR_API int GWEN_Error_GetType (GWEN_ERRORCODE c)
GWENHYWFAR_API int GWEN_Error_IsCustom (GWEN_ERRORCODE c)
GWENHYWFAR_API int GWEN_Error_IsOk (GWEN_ERRORCODE c)
GWENHYWFAR_API GWEN_ERRORCODE GWEN_Error_new (int iscustom, int severity, int typ, int code)
GWENHYWFAR_API void GWEN_Error_SetCode (GWEN_ERRORCODE *c, int v)
GWENHYWFAR_API void GWEN_Error_SetIsCustom (GWEN_ERRORCODE *c, int iscustom)
GWENHYWFAR_API void GWEN_Error_SetSeverity (GWEN_ERRORCODE *c, int v)
GWENHYWFAR_API void GWEN_Error_SetType (GWEN_ERRORCODE *c, int v)
Simplified Error Codes
In most cases you only need a simplified error code (without severity information etc). For those cases the constructed error code can be turned into a simplified code.

GWENHYWFAR_API int GWEN_Error_GetSimpleCode (GWEN_ERRORCODE c)
Error Type Registration
These functions are used to allocate error types. Each module should allocate a type to allow descriptive error messages. Since function pointers are involved you should carefully register and unregister the error types.

GWENHYWFAR_API GWEN_ERRORCODE GWEN_Error_RegisterType (GWEN_ERRORTYPEREGISTRATIONFORM *tptr)
GWENHYWFAR_API GWEN_ERRORCODE GWEN_Error_UnregisterType (GWEN_ERRORTYPEREGISTRATIONFORM *tptr)
Verbosity
Composing error messages.

GWENHYWFAR_API int GWEN_Error_ToString (GWEN_ERRORCODE c, char *buffer, int bsize)
Error Type Registration Form
GWENHYWFAR_API void GWEN_ErrorType_free (GWEN_ERRORTYPEREGISTRATIONFORM *f)
GWENHYWFAR_API GWEN_ERRORMESSAGEPTR GWEN_ErrorType_GetMsgPtr (GWEN_ERRORTYPEREGISTRATIONFORM *f)
GWENHYWFAR_API GWEN_ERRORTYPEREGISTRATIONFORMGWEN_ErrorType_new ()
GWENHYWFAR_API void GWEN_ErrorType_SetMsgPtr (GWEN_ERRORTYPEREGISTRATIONFORM *f, GWEN_ERRORMESSAGEPTR msgptr)
GWENHYWFAR_API void GWEN_ErrorType_SetName (GWEN_ERRORTYPEREGISTRATIONFORM *f, const char *name)
GWENHYWFAR_API void GWEN_ErrorType_SetType (GWEN_ERRORTYPEREGISTRATIONFORM *f, int c)


Detailed Description

This file contains the module for error handling.

Definition in file error.h.


Generated on Thu Nov 9 22:06:49 2006 for gwenhywfar by  doxygen 1.5.1