DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00026 // pre-processor mechanism so multiple inclusions don't cause compilation error 00027 #ifndef _DBGFUNCS_H 00028 #define _DBGFUNCS_H 00029 00030 // uncomment this for assert prints 00031 //#define DEBUG_ASSERT 00032 00033 // uncomment this for standard ANSI C assertions 00034 //#define DEBUG_ASSERT_STANDARD 00035 00036 // uncomment this for func start/end messages 00037 //#define DEBUG_FUNCTION 00038 00039 #ifdef DEBUG_ASSERT_STANDARD 00040 #undef assert 00041 #include <assert.h> 00042 #endif 00043 00044 // function profiling macros 00045 #ifdef DEBUG_FUNCTIONS 00046 #include "stbhwc.h" 00047 #define FUNCTION_START(x) STB_SPDebugWrite("START: " # x) 00048 #define FUNCTION_FINISH(x) STB_SPDebugWrite("END : " # x) 00049 #else 00050 #define FUNCTION_START(x) 00051 #define FUNCTION_FINISH(x) 00052 #endif 00053 00054 // assertion macros 00055 #ifdef DEBUG_ASSERT 00056 #include "stbhwc.h" 00057 #define ASSERT(assertion) if (!(assertion)) { STB_SPDebugAssertFail(__FILE__,__LINE__,#assertion); } 00058 #else // DEBUG_ASSERT 00059 #ifdef DEBUG_ASSERT_STANDARD 00060 #define ASSERT(assertion) assert(assertion) 00061 #else // DEBUG_ASSERT_STANDARD 00062 #define ASSERT(assertion) 00063 #endif // DEBUG_ASSERT_STANDARD 00064 #endif // DEBUG_ASSERT 00065 00066 #if defined(DEBUG_PRINTING_ENABLED) 00067 #if !defined(NO_FUNC_ID) 00068 #define DBGPRINT(x, ...) STB_SPDebugWrite( "%s:%d " x, __FUNCTION__, __LINE__, ##__VA_ARGS__); 00069 #else 00070 /* compile does not support __FUNCTION__ */ 00071 #define DBGPRINT(x, ...) STB_SPDebugWrite( "%s:%d " x, __FILE__, __LINE__, ##__VA_ARGS__); 00072 #endif 00073 #else 00074 #define DBGPRINT(x, ...) 00075 #endif /*DEBUG_PRINTING_ENABLED*/ 00076 00077 #endif // _DBGFUNCS_H 00078