Fix build. Forgot a file.
[reactos.git] / reactos / include / reactos / debug.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: include/reactos/debug.h
5 * PURPOSE: Useful debugging macros
6 * PROGRAMMERS: David Welch (welch@mcmail.com)
7 * Hermes Belusca-Maito (hermes.belusca@sfr.fr)
8 */
9
10 /*
11 * NOTE: Define NDEBUG before including this header
12 * to disable debugging macros.
13 */
14
15 #pragma once
16
17 #include <builddir.h>
18
19 #if !defined(__RELFILE__)
20 #define __RELFILE__ __FILE__
21 #endif
22
23 /* Define DbgPrint/DbgPrintEx/RtlAssert unless the NDK is used */
24 #if !defined(_RTLFUNCS_H) && !defined(_NTDDK_)
25
26 /* Make sure we have basic types (some people include us *before* SDK)... */
27 #if !defined(_NTDEF_) && !defined(_NTDEF_H) && !defined(_WINDEF_) && !defined(_WINDEF_H)
28 #error Please include SDK first.
29 #endif
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 ULONG
36 __cdecl
37 DbgPrint(
38 _In_z_ _Printf_format_string_ PCSTR Format,
39 ...
40 );
41
42 NTSYSAPI
43 ULONG
44 __cdecl
45 DbgPrintEx(
46 _In_ ULONG ComponentId,
47 _In_ ULONG Level,
48 _In_z_ _Printf_format_string_ PCSTR Format,
49 ...
50 );
51
52 __analysis_noreturn
53 NTSYSAPI
54 VOID
55 NTAPI
56 RtlAssert(
57 _In_ PVOID FailedAssertion,
58 _In_ PVOID FileName,
59 _In_ ULONG LineNumber,
60 _In_opt_z_ PCHAR Message
61 );
62
63 #ifdef __cplusplus
64 } /* extern "C" */
65 #endif
66
67 #endif /* !defined(_RTLFUNCS_H) && !defined(_NTDDK_) */
68
69 #ifndef assert
70 #if DBG && !defined(NASSERT)
71 #define assert(x) if (!(x)) { RtlAssert((PVOID)#x, (PVOID)__RELFILE__, __LINE__, ""); }
72 #else
73 #define assert(x) ((VOID) 0)
74 #endif
75 #endif
76
77 #ifndef ASSERT
78 #if DBG && !defined(NASSERT)
79 #define ASSERT(x) if (!(x)) { RtlAssert((PVOID)#x, (PVOID)__RELFILE__, __LINE__, ""); }
80 #else
81 #define ASSERT(x) ((VOID) 0)
82 #endif
83 #endif
84
85 #ifndef ASSERTMSG
86 #if DBG && !defined(NASSERT)
87 #define ASSERTMSG(m, x) if (!(x)) { RtlAssert((PVOID)#x, __RELFILE__, __LINE__, m); }
88 #else
89 #define ASSERTMSG(m, x) ((VOID) 0)
90 #endif
91 #endif
92
93 /* For internal purposes only */
94 #define __NOTICE(level, fmt, ...) DbgPrint(#level ": %s at %s:%d " fmt, __FUNCTION__, __RELFILE__, __LINE__, ##__VA_ARGS__)
95
96 /* Print stuff only on Debug Builds*/
97 #define DPFLTR_DEFAULT_ID -1
98 #if DBG
99
100 /* These are always printed */
101 #define DPRINT1(fmt, ...) do { \
102 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
103 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
104 } while (0)
105
106 /* These are printed only if NDEBUG is NOT defined */
107 #ifndef NDEBUG
108
109 #define DPRINT(fmt, ...) do { \
110 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
111 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
112 } while (0)
113
114 #else
115
116 #define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
117
118 #endif
119
120 #define UNIMPLEMENTED __NOTICE(WARNING, "is UNIMPLEMENTED!\n");
121
122 #define ERR_(ch, fmt, ...) DbgPrintEx(DPFLTR_##ch##_ID, DPFLTR_ERROR_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
123 #define WARN_(ch, fmt, ...) DbgPrintEx(DPFLTR_##ch##_ID, DPFLTR_WARNING_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
124 #define TRACE_(ch, fmt, ...) DbgPrintEx(DPFLTR_##ch##_ID, DPFLTR_TRACE_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
125 #define INFO_(ch, fmt, ...) DbgPrintEx(DPFLTR_##ch##_ID, DPFLTR_INFO_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
126
127 #define ERR__(ch, fmt, ...) DbgPrintEx(ch, DPFLTR_ERROR_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
128 #define WARN__(ch, fmt, ...) DbgPrintEx(ch, DPFLTR_WARNING_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
129 #define TRACE__(ch, fmt, ...) DbgPrintEx(ch, DPFLTR_TRACE_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
130 #define INFO__(ch, fmt, ...) DbgPrintEx(ch, DPFLTR_INFO_LEVEL, "(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)
131
132 #else /* not DBG */
133
134 /* On non-debug builds, we never show these */
135 #define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
136 #define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
137
138 #define UNIMPLEMENTED
139
140 #define ERR_(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
141 #define WARN_(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
142 #define TRACE_(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
143 #define INFO_(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
144
145 #define ERR__(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
146 #define WARN__(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
147 #define TRACE__(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
148 #define INFO__(ch, ...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
149
150 #endif /* not DBG */
151
152 /******************************************************************************/
153 /*
154 * Declare a target-dependent process termination procedure.
155 */
156 #ifndef _NTDDK_ /* User-Mode */
157 #ifndef NTOS_MODE_USER /* Should be Win32 */
158 #ifndef _WIN32
159 #error "Unsupported target."
160 #else
161 #define TerminateCurrentProcess(Status) TerminateProcess(GetCurrentProcess(), (Status))
162 #endif
163 #else /* Native */
164 #ifndef _PSFUNCS_H
165 NTSYSCALLAPI
166 NTSTATUS
167 NTAPI
168 NtTerminateProcess(
169 IN HANDLE ProcessHandle,
170 IN NTSTATUS ExitStatus
171 );
172 #endif
173 #ifndef NtCurrentProcess
174 #define NtCurrentProcess() ((HANDLE)(LONG_PTR)-1)
175 #endif
176 #define TerminateCurrentProcess(Status) NtTerminateProcess(NtCurrentProcess(), (Status))
177 #endif
178 #else /* Kernel-Mode */
179 #include <bugcodes.h>
180 #define TerminateCurrentProcess(Status) KeBugCheckEx(CRITICAL_SERVICE_FAILED, (Status), 0, 0, 0)
181 #endif
182
183
184 /* For internal purposes only */
185 #define __ERROR_DBGBREAK(...) \
186 do { \
187 DbgPrint("" __VA_ARGS__); \
188 DbgBreakPoint(); \
189 } while (0)
190
191 /* For internal purposes only */
192 #define __ERROR_FATAL(Status, ...) \
193 do { \
194 DbgPrint("" __VA_ARGS__); \
195 DbgBreakPoint(); \
196 TerminateCurrentProcess(Status); \
197 } while (0)
198
199 /*
200 * These macros are designed to display an optional printf-like
201 * user-defined message and to break into the debugger.
202 * After that they allow to continue the program execution.
203 */
204 #define ERROR_DBGBREAK(...) \
205 do { \
206 __NOTICE(ERROR, "\n"); \
207 __ERROR_DBGBREAK(__VA_ARGS__); \
208 } while (0)
209
210 #define UNIMPLEMENTED_DBGBREAK(...) \
211 do { \
212 __NOTICE(ERROR, "is UNIMPLEMENTED!\n"); \
213 __ERROR_DBGBREAK(__VA_ARGS__); \
214 } while (0)
215
216 /*
217 * These macros are designed to display an optional printf-like
218 * user-defined message and to break into the debugger.
219 * After that they halt the execution of the current thread.
220 */
221 #define ERROR_FATAL(...) \
222 do { \
223 __NOTICE(UNRECOVERABLE ERROR, "\n"); \
224 __ERROR_FATAL(STATUS_ASSERTION_FAILURE, __VA_ARGS__); \
225 } while (0)
226
227 #define UNIMPLEMENTED_FATAL(...) \
228 do { \
229 __NOTICE(UNRECOVERABLE ERROR, "is UNIMPLEMENTED!\n"); \
230 __ERROR_FATAL(STATUS_NOT_IMPLEMENTED, __VA_ARGS__); \
231 } while (0)
232 /******************************************************************************/
233
234 #define ASSERT_IRQL_LESS_OR_EQUAL(x) ASSERT(KeGetCurrentIrql()<=(x))
235 #define ASSERT_IRQL_EQUAL(x) ASSERT(KeGetCurrentIrql()==(x))
236 #define ASSERT_IRQL_LESS(x) ASSERT(KeGetCurrentIrql()<(x))
237
238 #define __STRING2__(x) #x
239 #define __STRING__(x) __STRING2__(x)
240 #define __STRLINE__ __STRING__(__LINE__)
241
242 #if !defined(_MSC_VER) && !defined(__pragma)
243 #define __pragma(x) _Pragma(#x)
244 #endif
245
246 #define _WARN(msg) __pragma(message("WARNING! Line " __STRLINE__ ": " msg))
247
248 /* EOF */