1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#ifndef __DEBUG_H__
#define __DEBUG_H__
#include "config.h"
#ifdef ENABLE_DEBUG
#include <glib.h>
#include <telepathy-glib/debug.h>
G_BEGIN_DECLS
/* Please keep this enum in sync with #keys, and the section gtkdoc,
* in debug.c */
typedef enum
{
TP_DEBUG_GROUPS = 1 << 1,
TP_DEBUG_PROPERTIES = 1 << 2,
TP_DEBUG_IM = 1 << 3,
TP_DEBUG_CONNECTION = 1 << 4,
TP_DEBUG_PERSIST = 1 << 5,
TP_DEBUG_PARAMS = 1 << 6,
TP_DEBUG_PRESENCE = 1 << 7
} TpDebugFlags;
gboolean _tp_debug_flag_is_set (TpDebugFlags flag);
void _tp_debug_set_flags (TpDebugFlags flags);
void _tp_debug (TpDebugFlags flag, const gchar *format, ...)
G_GNUC_PRINTF (2, 3);
G_END_DECLS
#endif /* ENABLE_DEBUG */
#endif /* __DEBUG_H__ */
/* ------------------------------------ */
/* Below this point is outside the __DEBUG_H__ guard - so it can take effect
* more than once. So you can do:
*
* #define DEBUG_FLAG TP_DEBUG_ONE_THING
* #include "internal-debug.h"
* ...
* DEBUG ("if we're debugging one thing");
* ...
* #undef DEBUG_FLAG
* #define DEBUG_FLAG TP_DEBUG_OTHER_THING
* #include "internal-debug.h"
* ...
* DEBUG ("if we're debugging the other thing");
* ...
*/
#ifdef DEBUG_FLAG
#ifdef ENABLE_DEBUG
#undef DEBUG
#define DEBUG(format, ...) \
_tp_debug (DEBUG_FLAG, "%s: " format, G_STRFUNC, ##__VA_ARGS__)
#undef DEBUGGING
#define DEBUGGING _tp_debug_flag_is_set (DEBUG_FLAG)
#else /* !defined (ENABLE_DEBUG) */
#undef DEBUG
#define DEBUG(format, ...) do {} while (0)
#undef DEBUGGING
#define DEBUGGING 0
#endif /* !defined (ENABLE_DEBUG) */
#endif /* defined (DEBUG_FLAG) */
|