Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / debug.h
1 /*****************************************************************************\
2   debug.h : Interface for debuging support
3
4   Copyright (c) 1996 - 2001, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31
32 #ifndef DEBUG_H
33 #define DEBUG_H
34
35 #include <assert.h>
36
37 #define NO_DEBUG    0x00
38 #define DBG_ASSERT  0x01                    // 0001
39 #define DBG_LVL1    0x02                    // 0010
40 #define DBG_DFLT    (DBG_ASSERT | DBG_LVL1) // 0011
41 #define PUMP        0x04                    // 0100
42 #define HARNESS     0x08                    // 1000
43
44 #ifndef ASSERT  // System may already have ASSERT handling
45     // ANSI C/C++ defines assert(...) as a macro that will check the expression in the
46     // debugging version and compile to (void)0 in the release version so we will just
47     // define the ALL CAPS version of ASSERT for ourselves.
48     #define ASSERT(EXP) assert(EXP)
49 #endif
50
51 #ifndef DBG1 // this allows for a different implementation elsewhere (ie platform.h)
52     #if defined(DEBUG) && (DBG_MASK & DBG_LVL1)
53         #define DBG1(STUFF) printf(STUFF)
54     #else
55         #define DBG1(_STUFF) (void(0))
56     #endif
57 #endif
58
59 #ifndef TRACE
60     #if defined(DEBUG) && (DBG_MASK & DBF_LVL1)
61         #define TRACE       printf
62     #else
63                 #if defined(__GNUC__)
64                                  #define TRACE(args...)    ((void)0)
65                 #else
66                                  #define TRACE       1 ? 0 : printf
67                 #endif
68     #endif
69 #endif
70
71 #if defined(DEBUG) && (DBG_MASK & PUMP)
72     #define USAGE_LOG
73     #define NULL_IO
74 #endif
75
76 #if defined(DEBUG) && (DBG_MASK & HARNESS)
77     #define APDK_CAPTURE
78 #endif
79
80 #endif //DEBUG_H
81
82