MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
glue_debug.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2011 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  *******************************************************************************/
25 #ifndef _GLUE_DEBUG_H
26 #define _GLUE_DEBUG_H
27 
28 #include "stb_debug.h"
29 #include "techtype.h"
30 #include "glue_assert.h"
31 
32 #ifdef TRACING
33  #ifndef F_IDENT
34  #define F_IDENT __FUNCTION__
35  #endif
36  #ifndef T_NL
37  #define T_NL "\n"
38  #endif
39 extern void trace_set_time(void);
40 extern unsigned long trace_time(void);
41 extern void trace_dump_chars(unsigned char *data, unsigned int len);
42 extern void trace_dump_uints(U32BIT *data, unsigned int len, unsigned int pitch);
43 extern void trace_unicode(U16BIT *data, unsigned int len);
44 
45 extern unsigned long mheg_trace_debug;
46 
47  #define TERROR 0
48  #define TALWAYS 0x00ffffff
49  #define TWARN (1 << 30)
50 
51  #define TKEYS (1 << 0)
52  #define TSTATE (1 << 0)
53  #define TPERFORM (1 << 0)
54  #define TTUNE (1 << 1)
55  #define TMEMORY (1 << 2)
56  #define TMHBOOT (1 << 3)
57  #define THBBTV (1 << 3)
58 
59  #define TSTRM (1 << 4)
60  #define TFILE (1 << 5)
61  #define TDSMCC (1 << 6)
62  #define TDSMFG (1 << 7)
63 
64  #define TQUERY (1 << 8)
65  #define TSERVICE (1 << 9)
66  #define TSSF (1 << 10)
67  #define TCACHE (1 << 11)
68 
69  #define TICS (1 << 12)
70  #define TQUEUE (1 << 13)
71  #define TBROWSER (1 << 14)
72  #define TVGRAPI (1 << 15)
73 
74  #define TGRAPHICS (1 << 16)
75  #define TFONT (1 << 17)
76  #define TTEXT (1 << 18)
77  #define TFONTCACHE (1 << 19)
78 
79  #define TEVNTS (1 << 20)
80  #define TACTIONS (1 << 21)
81  #define TTIME (1 << 22)
82  #define TAIT (1 << 23)
83 #if TRACE_TIMING == 2
84 extern unsigned long last_trace_time;
85  #define TRACETIME() if (last_trace_time + 100 < trace_time()) { last_trace_time = trace_time(); \
86  STB_SPDebugWrite("TRACE TIME= %d.%02d secs", last_trace_time / 100, last_trace_time % 100); }
87  #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
88  #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
89  #define TRACE_SET_TIME()
90 #elif TRACE_TIMING == 1
91  #define TRACETIME()
92  #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d (%ld) " s, F_IDENT, __LINE__, trace_time(), ##__VA_ARGS__)
93  #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d (%ld) " s, F_IDENT, __LINE__, trace_time(), ##__VA_ARGS__)
94  #define TRACE_SET_TIME() trace_set_time()
95 #else
96  #define TRACETIME()
97  #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
98  #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
99  #define TRACE_SET_TIME()
100 #endif
101 
102  #define TRACE(t, x) TRACETIME() if ((t) == TERROR) { TERPRINT x; } \
103  else if ((t) & mheg_trace_debug) { TRCPRINT x; }
104 
105  #define TPRINT(t, x) if ((t) & mheg_trace_debug) STB_SPDebugNoCnWrite x;
106  #define TRACE_BUFF(t, d, l) if ((t) & mheg_trace_debug) trace_dump_chars(d, l);
107  #define TRACE_UINT(t, d, l, p) if ((t) & mheg_trace_debug) trace_dump_uints(d, l, p);
108  #define TRACE_UNIC(t, d, l) if ((t) & mheg_trace_debug) trace_unicode(d, l);
109 
110  #undef ERROR_PRINT
111  #undef WARNING_PRINT
112  #define ERROR_PRINT(x) STB_SPDebugNoCnWrite x
113  #define WARNING_PRINT(x) if (mheg_trace_debug) STB_SPDebugNoCnWrite x
114  #define TRACER(x) x
115  #define TRACE_MEM() if (TMEMORY & mheg_trace_debug) MHG_DebugMemStats(__LINE__)
116 
117  #define DBGTRACE(t, x, ...) if ((t) == TERROR || ((t) & mheg_trace_debug)) { \
118  STB_SPDebugWrite( "T%05x-%s:%d " x, t, F_IDENT, __LINE__, ##__VA_ARGS__); }
119 
120  #define DBG_PRINTF STB_SPDebugNoCnWrite
121 
122 #else
124  #define TRACE(t, x)
125  #define TPRINT(t, x)
126  #define TRACE_BUFF(t, d, l)
127  #define TRACE_UINT(t, d, l, p)
128  #define TRACE_UNIC(t, d, l)
129  #define TRACER(x)
130  #define TRACE_MEM()
131  #define TRACE_SET_TIME()
132  #define DBGTRACE(t, x, ...)
133  #define DBG_PRINTF(x, ...)
134 
135 #endif /*TRACING*/
136 
137 #if !defined(NDEBUG) && defined(STACK_DEBUGGING)
138 void STB_OSTaskAddFunc(const char *func);
139 void STB_OSTaskRemFunc(const char *func);
140  #ifndef DBG_ID_FUNC
141  #define DECLARE_NAME(x) const char *func_name = F_IDENT;
142  #else
143  #define DECLARE_NAME(x) const char func_name[] = #x;
144  #endif
145  #define FUNCTION_START(x) DECLARE_NAME(x) STB_OSTaskAddFunc(func_name);
146  #define FUNCTION_FINISH(x) STB_OSTaskRemFunc(func_name);
147 #else
148  #define FUNCTION_START(name)
149  #define FUNCTION_FINISH(name)
150 #endif
151 
152 #if defined(NDEBUG) && !defined(OVERRIDE_DEBUG_PRINTS)
153 
154 /* Disable debug prints for retail build */
155  #define DPLEVEL 0
156 
157  #define DPL1(x)
158  #define DPL2(x)
159  #define DPL3(x)
160  #define DPL4(x)
161  #define DPL5(x)
162 
163 #else /* #if defined( NDEBUG ) && ! defined( OVERRIDE_DEBUG_PRINTS ) */
164 
165  #ifndef DPLEVEL
166 /* Default to show warnings and error messages */
167  #define DPLEVEL DBG_LEVEL
168  #endif
169 
170  #if (DPLEVEL >= 5)
171  #define DPL5(x) STB_SPDebugNoCnWrite x
172  #else
173  #define DPL5(x)
174  #endif
175 
176  #if (DPLEVEL >= 4)
177  #define DPL4(x) STB_SPDebugNoCnWrite x
178  #else
179  #define DPL4(x)
180  #endif
181 
182  #if (DPLEVEL >= 3)
183  #define DPL3(x) STB_SPDebugNoCnWrite x
184  #else
185  #define DPL3(x)
186  #endif
187 
188  #if (DPLEVEL >= 2)
189  #define DPL2(x) STB_SPDebugNoCnWrite x
190  #else
191  #define DPL2(x)
192  #endif
193 
194  #if (DPLEVEL >= 1)
195  #define DPL1(x) STB_SPDebugNoCnWrite x
196  #else
197  #define DPL1(x)
198  #endif
199 #endif /* #if defined( NDEBUG ) && ! defined( OVERRIDE_DEBUG_PRINTS ) #else */
200 
201 #if !defined(NDEBUG) && defined(DBGPRINT_ENABLED)
202  #define DBGPRINT(x, ...) STB_SPDebugWrite( "[%d] " x, __LINE__, ##__VA_ARGS__);
203 #else
204  #define DBGPRINT(x, ...)
205 #endif
206 
207 void MHG_DebugMemStats(int line);
208 void MHG_DebugSetState(unsigned long state);
209 unsigned long MHG_DebugGetState(void);
210 
211 
212 #endif /*_GLUE_DEBUG_H*/
Debug functions required by MHEG5 engine in debug builds.
const char * data
Definition: mh5gate.c:65
void MHG_DebugMemStats(int line)
Definition: glue_memory.c:708
void MHG_DebugSetState(unsigned long state)
Definition: glue_debug.c:54
int len
Definition: mh5gate.c:66
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
define asserts
unsigned long MHG_DebugGetState(void)
Definition: glue_debug.c:45
uint32_t U32BIT
Definition: techtype.h:97