:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / drivers / net / tcpip / include / debug.h
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS TCP/IP protocol driver
4  * FILE:        include/debug.h
5  * PURPOSE:     Debugging support macros
6  * DEFINES:     DBG     - Enable debug output
7  *              NASSERT - Disable assertions
8  */
9 #ifndef __DEBUG_H
10 #define __DEBUG_H
11
12 #define NORMAL_MASK    0x000000FF
13 #define SPECIAL_MASK   0xFFFFFF00
14 #define MIN_TRACE      0x00000001
15 #define MID_TRACE      0x00000002
16 #define MAX_TRACE      0x00000003
17
18 #define DEBUG_CHECK    0x00000100
19 #define DEBUG_MEMORY   0x00000200
20 #define DEBUG_BUFFER   0x00000400
21 #define DEBUG_IRP      0x00000800
22 #define DEBUG_REFCOUNT 0x00001000
23 #define DEBUG_ADDRFILE 0x00002000
24 #define DEBUG_DATALINK 0x00004000
25 #define DEBUG_ARP      0x00008000
26 #define DEBUG_IP       0x00010000
27 #define DEBUG_ICMP     0x00020000
28 #define DEBUG_ROUTER   0x00040000
29 #define DEBUG_RCACHE   0x00080000
30 #define DEBUG_NCACHE   0x00100000
31 #define DEBUG_CPOINT   0x00200000
32 #define DEBUG_ULTRA    0xFFFFFFFF
33
34 #ifdef DBG
35
36 extern DWORD DebugTraceLevel;
37
38 #ifdef _MSC_VER
39
40 #define TI_DbgPrint(_t_, _x_) \
41     if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
42         ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
43         DbgPrint("(%s:%d) ", __FILE__, __LINE__); \
44         DbgPrint _x_ ; \
45     }
46
47 #else /* _MSC_VER */
48
49 #define TI_DbgPrint(_t_, _x_) \
50     if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
51         ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
52         DbgPrint("(%s:%d)(%s) ", __FILE__, __LINE__, __FUNCTION__); \
53         DbgPrint _x_ ; \
54     }
55
56 #endif /* _MSC_VER */
57
58 #ifdef ASSERT
59 #undef ASSERT
60 #endif
61
62 #ifdef NASSERT
63 #define ASSERT(x)
64 #else /* NASSERT */
65 #define ASSERT(x) if (!(x)) { TI_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
66 #endif /* NASSERT */
67
68 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
69
70 #else /* DBG */
71
72 #define TI_DbgPrint(_t_, _x_)
73
74 #define ASSERT_IRQL(x)
75 #define ASSERT(x)
76
77 #endif /* DBG */
78
79
80 #define assert(x) ASSERT(x)
81 #define assert_irql(x) ASSERT_IRQL(x)
82
83
84 #ifdef _MSC_VER
85
86 #define UNIMPLEMENTED \
87     TI_DbgPrint(MIN_TRACE, ("The function at %s:%d is unimplemented, \
88         but come back another day.\n", __FILE__, __LINE__));
89
90 #else /* _MSC_VER */
91
92 #define UNIMPLEMENTED \
93     TI_DbgPrint(MIN_TRACE, ("(%s:%d)(%s) is unimplemented, \
94         but come back another day.\n", __FILE__, __LINE__, __FUNCTION__));
95
96 #endif /* _MSC_VER */
97
98
99 #define CHECKPOINT \
100     do { TI_DbgPrint(DEBUG_CHECK, ("(%s:%d)\n", __FILE__, __LINE__)); } while(0);
101
102 #define CP CHECKPOINT
103
104 #endif /* __DEBUG_H */
105
106 /* EOF */