/usr/include/gegl-0.3/gegl-debug.h is in libgegl-dev 0.3.8-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | #ifndef __GEGL_DEBUG_H__
#define __GEGL_DEBUG_H__
#include <glib.h>
G_BEGIN_DECLS
typedef enum {
GEGL_DEBUG_PROCESS = 1 << 0,
GEGL_DEBUG_BUFFER_LOAD = 1 << 1,
GEGL_DEBUG_BUFFER_SAVE = 1 << 2,
GEGL_DEBUG_TILE_BACKEND = 1 << 3,
GEGL_DEBUG_PROCESSOR = 1 << 4,
GEGL_DEBUG_CACHE = 1 << 5,
GEGL_DEBUG_MISC = 1 << 6,
GEGL_DEBUG_INVALIDATION = 1 << 7,
GEGL_DEBUG_OPENCL = 1 << 8,
GEGL_DEBUG_BUFFER_ALLOC = 1 << 9,
GEGL_DEBUG_LICENSE = 1 << 10
} GeglDebugFlag;
/* only compiled in from gegl-init.c but kept here to
* make it easier to update and keep in sync with the
* flags
*/
#ifdef __GEGL_INIT_C
static const GDebugKey gegl_debug_keys[] = {
{ "process", GEGL_DEBUG_PROCESS},
{ "cache", GEGL_DEBUG_CACHE},
{ "buffer-load", GEGL_DEBUG_BUFFER_LOAD},
{ "buffer-save", GEGL_DEBUG_BUFFER_SAVE},
{ "tile-backend", GEGL_DEBUG_TILE_BACKEND},
{ "processor", GEGL_DEBUG_PROCESSOR},
{ "invalidation", GEGL_DEBUG_INVALIDATION},
{ "opencl", GEGL_DEBUG_OPENCL},
{ "buffer-alloc", GEGL_DEBUG_BUFFER_ALLOC},
{ "license", GEGL_DEBUG_LICENSE},
{ "all", GEGL_DEBUG_PROCESS|
GEGL_DEBUG_BUFFER_LOAD|
GEGL_DEBUG_BUFFER_SAVE|
GEGL_DEBUG_TILE_BACKEND|
GEGL_DEBUG_PROCESSOR|
GEGL_DEBUG_CACHE|
GEGL_DEBUG_OPENCL|
GEGL_DEBUG_BUFFER_ALLOC|
GEGL_DEBUG_LICENSE},
};
#endif /* __GEGL_INIT_C */
#if defined(__cplusplus) && defined(GEGL_ISO_CXX_VARIADIC_MACROS)
# define GEGL_ISO_VARIADIC_MACROS 1
#endif
#ifdef GEGL_ENABLE_DEBUG
#if defined(GEGL_ISO_VARIADIC_MACROS)
/* Use the C99 version; unfortunately, this does not allow us to pass
* empty arguments to the macro, which means we have to
* do an intemediate printf.
*/
#define GEGL_NOTE(type,...) G_STMT_START { \
if (gegl_debug_flags & type) \
{ \
gchar * _fmt = g_strdup_printf (__VA_ARGS__); \
g_message ("[" #type "] " G_STRLOC ": %s",_fmt); \
g_free (_fmt); \
} \
} G_STMT_END
#define GEGL_TIMESTAMP(type,...) G_STMT_START { \
if (gegl_debug_flags & type) \
{ \
gchar * _fmt = g_strdup_printf (__VA_ARGS__); \
g_message ("[" #type "]" " %li:" G_STRLOC ": %s", \
gegl_get_timestamp(), _fmt); \
g_free (_fmt); \
} \
} G_STMT_END
#elif defined(GEGL_GNUC_VARIADIC_MACROS)
#define GEGL_NOTE(type,format,a...) G_STMT_START { \
if (gegl_debug_flags & type) \
{ g_message ("[" #type "] " G_STRLOC ": " \
format, ##a); } \
} G_STMT_END
#define GEGL_TIMESTAMP(type,format,a...) G_STMT_START { \
if (gegl_debug_flags & type) \
{ g_message ("[" #type "]" " %li:" G_STRLOC ": " \
format, gegl_get_timestamp(), ##a); } \
} G_STMT_END
#else
#include <stdarg.h>
static const gchar *
gegl_lookup_debug_string (guint type)
{
const gchar *key = "!INVALID!";
guint i = 0;
if (type == GEGL_DEBUG_MISC)
{
key = "misc";
}
else
{
while (g_strcmp0 (gegl_debug_keys[i].key, "all") != 0)
{
if (gegl_debug_keys[i].value == type)
{
key = gegl_debug_keys[i].key;
break;
}
i++;
}
}
return key;
}
static inline void
GEGL_NOTE (guint type, const char *format, ...)
{
va_alist args;
if (gegl_debug_flags & type)
{
gchar *formatted;
va_start (args, format);
formatted = g_strdup_printf (format, args);
g_message ("[ %s ] " G_STRLOC ": %s",
gegl_lookup_debug_string (type), formatted);
g_free (formatted);
va_end (args);
}
}
static inline void
GEGL_TIMESTAMP (guint type, const char *format, ...)
{
va_alist args;
if (gegl_debug_flags & type)
{
gchar *formatted;
va_start (args, format);
formatted = g_strdup_printf (format, args);
g_message ("[ %s ] %li: " G_STRLOC ": %s",
gegl_lookup_debug_string (type), gegl_get_timestamp(),
formatted);
g_free (formatted);
va_end (args);
}
}
#endif
#define GEGL_MARK() GEGL_NOTE(GEGL_DEBUG_MISC, "== mark ==")
#define GEGL_DBG(x) { a }
#else /* !GEGL_ENABLE_DEBUG */
#if defined(GEGL_ISO_VARIADIC_MACROS)
#define GEGL_NOTE(type,...)
#define GEGL_TIMESTAMP(type,...)
#elif defined(GEGL_GNUC_VARIADIC_MACROS)
#define GEGL_NOTE(type,format,a...)
#define GEGL_TIMESTAMP(type,format,a...)
#else
static inline void
GEGL_NOTE (guint type, const char *format, ...)
{
return;
}
static inline void
GEGL_TIMESTAMP (guint type, const char *format, ...)
{
return;
}
#endif
#define GEGL_MARK()
#define GEGL_DBG(x)
#endif /* GEGL_ENABLE_DEBUG */
extern guint gegl_debug_flags;
G_END_DECLS
#endif /* __GEGL_DEBUG_H__ */
|