98 lines
2.8 KiB
C
98 lines
2.8 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
* File: ErrorMgr.h
|
|
*
|
|
* Release: Palm OS SDK 4.0 (63220)
|
|
*
|
|
* Description:
|
|
* Include file for Error Management that depend on ERROR_CHECK_LEVEL
|
|
* All the rest of the old ErrorMgr.h is in ErrorBase.h
|
|
*
|
|
* History:
|
|
* 10/25/94 RM - Created by Ron Marianetti
|
|
* 10/9/98 Bob - Fill in all macros, fix defns w/ do{}while(0)
|
|
* 7/21/99 Bob - split invariant stuff out into ErrorBase.h
|
|
* 12/23/99 jmp Fix <> vs. "" problem.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __ERRORMGR_H__
|
|
#define __ERRORMGR_H__
|
|
|
|
#include <ErrorBase.h> // Invariant error management stuff
|
|
|
|
#include <PalmOptErrorCheckLevel.h> // #define ERROR_CHECK_LEVEL
|
|
|
|
//------------------------------------------------------------
|
|
// Full Error Checking
|
|
//------------------------------------------------------------
|
|
#if ERROR_CHECK_LEVEL == ERROR_CHECK_FULL
|
|
|
|
#define ErrFatalDisplay(msg) \
|
|
ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg)
|
|
|
|
#define ErrFatalDisplayIf(condition, msg) \
|
|
do {if (condition) ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg);} while (0)
|
|
|
|
#define ErrNonFatalDisplayIf(condition, msg) \
|
|
do {if (condition) ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg);} while (0)
|
|
|
|
#define ErrNonFatalDisplay(msg) \
|
|
ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg)
|
|
|
|
#define ErrDisplay(msg) \
|
|
ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg)
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------
|
|
// Fatal Error Checking Only
|
|
//------------------------------------------------------------
|
|
#elif ERROR_CHECK_LEVEL == ERROR_CHECK_PARTIAL
|
|
|
|
#define ErrFatalDisplay(msg) \
|
|
ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg)
|
|
|
|
#define ErrFatalDisplayIf(condition, msg) \
|
|
do {if (condition) ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg);} while (0)
|
|
|
|
#define ErrNonFatalDisplayIf(condition, msg)
|
|
|
|
#define ErrNonFatalDisplay(msg)
|
|
|
|
#define ErrDisplay(msg) \
|
|
ErrDisplayFileLineMsg(__FILE__, (UInt16) __LINE__, msg)
|
|
|
|
|
|
|
|
//------------------------------------------------------------
|
|
// No Error Checking
|
|
//------------------------------------------------------------
|
|
#elif ERROR_CHECK_LEVEL == ERROR_CHECK_NONE
|
|
|
|
#define ErrFatalDisplay(msg)
|
|
|
|
#define ErrFatalDisplayIf(condition, msg)
|
|
|
|
#define ErrNonFatalDisplayIf(condition, msg)
|
|
|
|
#define ErrNonFatalDisplay(msg)
|
|
|
|
#define ErrDisplay(msg)
|
|
|
|
|
|
//------------------------------------------------------------
|
|
// Not Defined...
|
|
//------------------------------------------------------------
|
|
#else
|
|
#error ERROR: the compiler define 'ERROR_CHECK_LEVEL' must be defined!
|
|
|
|
#endif // ERROR_CHECK_LEVEL
|
|
|
|
|
|
#endif // __ERRORMGR_H__
|