]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/debug-private.h
Merge changes from CUPS 1.5svn-r9313.
[thirdparty/cups.git] / cups / debug-private.h
1 /*
2 * "$Id$"
3 *
4 * Private debugging macros for CUPS.
5 *
6 * Copyright 2007-2010 by Apple Inc.
7 * Copyright 1997-2005 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
18 #ifndef _CUPS_DEBUG_PRIVATE_H_
19 # define _CUPS_DEBUG_PRIVATE_H_
20
21 /*
22 * C++ magic...
23 */
24
25 # ifdef __cplusplus
26 extern "C" {
27 # endif /* __cplusplus */
28
29
30 /*
31 * The debug macros are used if you compile with DEBUG defined.
32 *
33 * Usage:
34 *
35 * DEBUG_puts("string")
36 * DEBUG_printf(("format string", arg, arg, ...));
37 *
38 * Note the extra parenthesis around the DEBUG_printf macro...
39 *
40 * Newlines are not required on the end of messages, as both add one when
41 * writing the output.
42 *
43 * If the first character is a digit, then it represents the "log level" of the
44 * message from 0 to 9. The default level is 1. The following defines the
45 * current levels we use:
46 *
47 * 0 = public APIs, other than value accessor functions
48 * 1 = return values for public APIs
49 * 2 = public value accessor APIs, progress for public APIs
50 * 3 = return values for value accessor APIs
51 * 4 = private APIs, progress for value accessor APIs
52 * 5 = return values for private APIs
53 * 6 = progress for private APIs
54 * 7 = static functions
55 * 8 = return values for static functions
56 * 9 = progress for static functions
57 *
58 * The DEBUG_set macro allows an application to programmatically enable (or
59 * disable) debug logging. The arguments correspond to the CUPS_DEBUG_LOG,
60 * CUPS_DEBUG_LEVEL, and CUPS_DEBUG_FILTER environment variables.
61 */
62
63 # ifdef DEBUG
64 # ifdef WIN32
65 # ifdef LIBCUPS2_EXPORTS
66 # define DLLExport __declspec(dllexport)
67 # else
68 # define DLLExport
69 # endif /* LIBCUPS2_EXPORTS */
70 # else
71 # define DLLExport
72 # endif /* WIN32 */
73 # define DEBUG_puts(x) _cups_debug_puts(x)
74 # define DEBUG_printf(x) _cups_debug_printf x
75 # define DEBUG_set(logfile,level,filter) _cups_debug_set(logfile,level,filter,1)
76 # else
77 # define DLLExport
78 # define DEBUG_puts(x)
79 # define DEBUG_printf(x)
80 # define DEBUG_set(logfile,level,filter)
81 # endif /* DEBUG */
82
83
84 /*
85 * Prototypes...
86 */
87
88 extern int _cups_debug_fd;
89 extern int _cups_debug_level;
90 extern void DLLExport _cups_debug_printf(const char *format, ...)
91 #ifdef __GNUC__
92 __attribute__ ((__format__ (__printf__, 1, 2)))
93 #endif /* __GNUC__ */
94 ;
95 extern void DLLExport _cups_debug_puts(const char *s);
96 extern void DLLExport _cups_debug_set(const char *logfile,
97 const char *level, const char *filter,
98 int force);
99
100 # ifdef __cplusplus
101 }
102 # endif /* __cplusplus */
103
104 #endif /* !_CUPS_DEBUG_PRIVATE_H_ */
105
106 /*
107 * End of "$Id$".
108 */