DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dsmDbg.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
24 #ifndef _DSMDBG_H_
25 #define _DSMDBG_H_
26 
27 /*-------------------------------- Includes ----------------------------------*/
28 #include <assert.h>
29 #include "cldsmdbg.h"
30 
31 /*-------------------------------- Defines -----------------------------------*/
32 /* -- DEBUG PRINT DEFINITIONS */
33 
34 /* -- All debug output goes to stdout (printf) only
35 ***** Because currently we don't know how to use memory based DPs in DVP/MIPS!
36 */
37 
38 #if (defined(NDEBUG) || defined(NO_DP)) /* -- ie. retail and/or assert build */
39  #define dsmAssert( assertion )
40  #define ASSERT(condition)
41  #ifdef DSM_DP_LEVEL
42  #undef DSM_DP_LEVEL
43  #endif
44  #define DSM_DP_LEVEL 0
45 #else
46  #define dsmAssert( assertion ) assert assertion
47  #define ASSERT(condition) assert(condition);
48  #ifndef DSM_DP_LEVEL
49  #define DSM_DP_LEVEL ( 1 ) /* -- default */
50  #endif
51 #endif
52 
53 /* -- Level 1 Debug Print
54 *
55 * For fatal errors and conditions that should not occur frequently.
56 *
57 * eg.
58 * - Internal and API errors (optional since also assert)
59 * - Runtime errors
60 * - Fatal data errors
61 * - Critical debug info
62 *
63 * NB. Directed to a both debug print ports for high visibility.
64 *
65 */
66 #if DSM_DP_LEVEL >= 1
67  #define dsmDP1( x ) if (DBG_ErrorPrintfFunc) DBG_ErrorPrintfFunc x
68  #define ERRPRINT(x, ...) \
69  if (DBG_ErrorPrintfFunc) DBG_ErrorPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
70  #define DBGERROR(f,x, ...) \
71  if (DBG_ErrorPrintfFunc && (f & dsmDbgState)) DBG_ErrorPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
72 #else
73  #define dsmDP1( x )
74  #define ERRPRINT(x, ...)
75  #define DBGERROR(f,x, ...)
76 #endif
77 
78 /* -- Level 2 Debug Print
79 *
80 * For warnings, conditions etc. that may occur more frequently.
81 *
82 * eg.
83 * - Non-fatal data errors (ie. warnings)
84 * - API Function entry/exit print
85 *
86 */
87 #if DSM_DP_LEVEL >= 2
88  #define dsmDP2( x ) if (DBG_WarnPrintfFunc) DBG_WarnPrintfFunc x
89  #define DBGWARN(f,x, ...) \
90  if (DBG_WarnPrintfFunc && (f & dsmDbgState)) DBG_WarnPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
91 #else
92  #define dsmDP2( x )
93  #define DBGWARN(f,x, ...)
94 #endif
95 
96 
97 /* -- Level 3 Debug Print
98 *
99 * For general debug info and conditions that occur fairly frequently
100 * but only print limited output.
101 *
102 * eg. - Lower level function entry/exit points
103 *
104 */
105 #if DSM_DP_LEVEL >= 3
106  #define dsmDP3( x ) if (DBG_DebugPrintfFunc) DBG_DebugPrintfFunc x
107  #define DBGPRINT(f,x, ...) \
108  if (DBG_DebugPrintfFunc && (f & dsmDbgState)) DBG_DebugPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
109 #else
110  #define dsmDP3( x )
111  #define DBGPRINT(f,x, ...)
112 #endif
113 
114 
115 /* -- Level 4 Debug Print
116 *
117 * For detailed debug info and conditions that occur VERY frequently
118 * and/or print large amounts of output.
119 *
120 * eg. - Very low level function entry/exit points
121 * - Data array values printed from loop
122 *
123 */
124 #if DSM_DP_LEVEL >= 4
125  #define dsmDP4( x ) if (DBG_InfoPrintfFunc) DBG_InfoPrintfFunc x
126  #define DBGINFO(f,x, ...) \
127  if (DBG_InfoPrintfFunc && (f & dsmDbgState)) DBG_InfoPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
128 
129 #else
130  #define dsmDP4( x )
131  #define DBGINFO(f,x, ...)
132 #endif
133 
134 
135 
136 /*-------------------------------- Types -------------------------------------*/
137 
138 
139 /*------------------------------ Exported Data -----------------------------*/
140 
141 #if (!defined(NDEBUG) && !defined(NO_DP))
142 extern clDsmPrintFunc_t DBG_ErrorPrintfFunc;
143 extern clDsmPrintFunc_t DBG_WarnPrintfFunc;
144 extern clDsmPrintFunc_t DBG_DebugPrintfFunc;
145 extern clDsmPrintFunc_t DBG_InfoPrintffunc;
146 extern U32BIT dsmDbgState;
147 #endif
148 
149 /*------------------------------ Prototypes ----------------------------------*/
150 
151 
152 /*----------------------------------------------------------------------------*/
153 
154 #endif /* _DSMDBG_H_ */
155 
DSM Debug API header.