info: Cut down src file names for MinGW too
[platform/upstream/gstreamer.git] / gst / gstinfo.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
5  * Copyright (C) 2008-2009 Tim-Philipp Müller <tim centricular net>
6  *
7  * gstinfo.c: debugging functions
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301, USA.
23  */
24
25 /**
26  * SECTION:gstinfo
27  * @short_description: Debugging and logging facilities
28  * @see_also: #gstreamer-gstconfig, #gstreamer-Gst for command line parameters
29  * and environment variables that affect the debugging output.
30  *
31  * GStreamer's debugging subsystem is an easy way to get information about what
32  * the application is doing.  It is not meant for programming errors. Use GLib
33  * methods (g_warning and friends) for that.
34  *
35  * The debugging subsystem works only after GStreamer has been initialized
36  * - for example by calling gst_init().
37  *
38  * The debugging subsystem is used to log informational messages while the
39  * application runs.  Each messages has some properties attached to it. Among
40  * these properties are the debugging category, the severity (called "level"
41  * here) and an optional #GObject it belongs to. Each of these messages is sent
42  * to all registered debugging handlers, which then handle the messages.
43  * GStreamer attaches a default handler on startup, which outputs requested
44  * messages to stderr.
45  *
46  * Messages are output by using shortcut macros like #GST_DEBUG,
47  * #GST_CAT_ERROR_OBJECT or similar. These all expand to calling gst_debug_log()
48  * with the right parameters.
49  * The only thing a developer will probably want to do is define his own
50  * categories. This is easily done with 3 lines. At the top of your code,
51  * declare
52  * the variables and set the default category.
53  * <informalexample>
54  * <programlisting>
55  * GST_DEBUG_CATEGORY_STATIC (my_category);     // define category (statically)
56  * &hash;define GST_CAT_DEFAULT my_category     // set as default
57  * </programlisting>
58  * </informalexample>
59  * After that you only need to initialize the category.
60  * <informalexample>
61  * <programlisting>
62  * GST_DEBUG_CATEGORY_INIT (my_category, "my category",
63  *                          0, "This is my very own");
64  * </programlisting>
65  * </informalexample>
66  * Initialization must be done before the category is used first.
67  * Plugins do this
68  * in their plugin_init function, libraries and applications should do that
69  * during their initialization.
70  *
71  * The whole debugging subsystem can be disabled at build time with passing the
72  * --disable-gst-debug switch to configure. If this is done, every function,
73  * macro and even structs described in this file evaluate to default values or
74  * nothing at all.
75  * So don't take addresses of these functions or use other tricks.
76  * If you must do that for some reason, there is still an option.
77  * If the debugging
78  * subsystem was compiled out, #GST_DISABLE_GST_DEBUG is defined in
79  * &lt;gst/gst.h&gt;,
80  * so you can check that before doing your trick.
81  * Disabling the debugging subsystem will give you a slight (read: unnoticeable)
82  * speed increase and will reduce the size of your compiled code. The GStreamer
83  * library itself becomes around 10% smaller.
84  *
85  * Please note that there are naming conventions for the names of debugging
86  * categories. These are explained at GST_DEBUG_CATEGORY_INIT().
87  */
88
89 #define GST_INFO_C
90 #include "gst_private.h"
91 #include "gstinfo.h"
92
93 #undef gst_debug_remove_log_function
94 #undef gst_debug_add_log_function
95
96 #ifndef GST_DISABLE_GST_DEBUG
97
98 #ifdef HAVE_DLFCN_H
99 #  include <dlfcn.h>
100 #endif
101 #include <stdio.h>              /* fprintf */
102 #include <glib/gstdio.h>
103 #include <errno.h>
104 #ifdef HAVE_UNISTD_H
105 #  include <unistd.h>           /* getpid on UNIX */
106 #endif
107 #ifdef HAVE_PROCESS_H
108 #  include <process.h>          /* getpid on win32 */
109 #endif
110 #include <string.h>             /* G_VA_COPY */
111 #ifdef G_OS_WIN32
112 #  define WIN32_LEAN_AND_MEAN   /* prevents from including too many things */
113 #  include <windows.h>          /* GetStdHandle, windows console */
114 #endif
115
116 #include "gst_private.h"
117 #include "gstutils.h"
118 #include "gstquark.h"
119 #include "gstsegment.h"
120 #include "gstvalue.h"
121 #include "gstcapsfeatures.h"
122
123 #ifdef HAVE_VALGRIND_VALGRIND_H
124 #  include <valgrind/valgrind.h>
125 #endif
126 #include <glib/gprintf.h>       /* g_sprintf */
127
128 /* our own printf implementation with custom extensions to %p for caps etc. */
129 #include "printf/printf.h"
130 #include "printf/printf-extension.h"
131
132 static char *gst_info_printf_pointer_extension_func (const char *format,
133     void *ptr);
134
135 #endif /* !GST_DISABLE_GST_DEBUG */
136
137 extern gboolean gst_is_initialized (void);
138
139 /* we want these symbols exported even if debug is disabled, to maintain
140  * ABI compatibility. Unless GST_REMOVE_DISABLED is defined. */
141 #if !defined(GST_DISABLE_GST_DEBUG) || !defined(GST_REMOVE_DISABLED)
142
143 /* disabled by default, as soon as some threshold is set > NONE,
144  * it becomes enabled. */
145 gboolean _gst_debug_enabled = FALSE;
146 GstDebugLevel _gst_debug_min = GST_LEVEL_NONE;
147
148 GstDebugCategory *GST_CAT_DEFAULT = NULL;
149
150 GstDebugCategory *GST_CAT_GST_INIT = NULL;
151 GstDebugCategory *GST_CAT_MEMORY = NULL;
152 GstDebugCategory *GST_CAT_PARENTAGE = NULL;
153 GstDebugCategory *GST_CAT_STATES = NULL;
154 GstDebugCategory *GST_CAT_SCHEDULING = NULL;
155
156 GstDebugCategory *GST_CAT_BUFFER = NULL;
157 GstDebugCategory *GST_CAT_BUFFER_LIST = NULL;
158 GstDebugCategory *GST_CAT_BUS = NULL;
159 GstDebugCategory *GST_CAT_CAPS = NULL;
160 GstDebugCategory *GST_CAT_CLOCK = NULL;
161 GstDebugCategory *GST_CAT_ELEMENT_PADS = NULL;
162 GstDebugCategory *GST_CAT_PADS = NULL;
163 GstDebugCategory *GST_CAT_PERFORMANCE = NULL;
164 GstDebugCategory *GST_CAT_PIPELINE = NULL;
165 GstDebugCategory *GST_CAT_PLUGIN_LOADING = NULL;
166 GstDebugCategory *GST_CAT_PLUGIN_INFO = NULL;
167 GstDebugCategory *GST_CAT_PROPERTIES = NULL;
168 GstDebugCategory *GST_CAT_NEGOTIATION = NULL;
169 GstDebugCategory *GST_CAT_REFCOUNTING = NULL;
170 GstDebugCategory *GST_CAT_ERROR_SYSTEM = NULL;
171 GstDebugCategory *GST_CAT_EVENT = NULL;
172 GstDebugCategory *GST_CAT_MESSAGE = NULL;
173 GstDebugCategory *GST_CAT_PARAMS = NULL;
174 GstDebugCategory *GST_CAT_CALL_TRACE = NULL;
175 GstDebugCategory *GST_CAT_SIGNAL = NULL;
176 GstDebugCategory *GST_CAT_PROBE = NULL;
177 GstDebugCategory *GST_CAT_REGISTRY = NULL;
178 GstDebugCategory *GST_CAT_QOS = NULL;
179 GstDebugCategory *_priv_GST_CAT_POLL = NULL;
180 GstDebugCategory *GST_CAT_META = NULL;
181 GstDebugCategory *GST_CAT_LOCKING = NULL;
182 GstDebugCategory *GST_CAT_CONTEXT = NULL;
183
184
185 #endif /* !defined(GST_DISABLE_GST_DEBUG) || !defined(GST_REMOVE_DISABLED) */
186
187 #ifndef GST_DISABLE_GST_DEBUG
188
189 /* underscore is to prevent conflict with GST_CAT_DEBUG define */
190 GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
191
192 /* time of initialization, so we get useful debugging output times
193  * FIXME: we use this in gstdebugutils.c, what about a function + macro to
194  * get the running time: GST_DEBUG_RUNNING_TIME
195  */
196 GstClockTime _priv_gst_info_start_time;
197
198 #if 0
199 #if defined __sgi__
200 #include <rld_interface.h>
201 typedef struct DL_INFO
202 {
203   const char *dli_fname;
204   void *dli_fbase;
205   const char *dli_sname;
206   void *dli_saddr;
207   int dli_version;
208   int dli_reserved1;
209   long dli_reserved[4];
210 }
211 Dl_info;
212
213 #define _RLD_DLADDR             14
214 int dladdr (void *address, Dl_info * dl);
215
216 int
217 dladdr (void *address, Dl_info * dl)
218 {
219   void *v;
220
221   v = _rld_new_interface (_RLD_DLADDR, address, dl);
222   return (int) v;
223 }
224 #endif /* __sgi__ */
225 #endif
226
227 static void gst_debug_reset_threshold (gpointer category, gpointer unused);
228 static void gst_debug_reset_all_thresholds (void);
229
230 struct _GstDebugMessage
231 {
232   gchar *message;
233   const gchar *format;
234   va_list arguments;
235 };
236
237 /* list of all name/level pairs from --gst-debug and GST_DEBUG */
238 static GMutex __level_name_mutex;
239 static GSList *__level_name = NULL;
240 typedef struct
241 {
242   GPatternSpec *pat;
243   GstDebugLevel level;
244 }
245 LevelNameEntry;
246
247 /* list of all categories */
248 static GMutex __cat_mutex;
249 static GSList *__categories = NULL;
250
251 /* all registered debug handlers */
252 typedef struct
253 {
254   GstLogFunction func;
255   gpointer user_data;
256   GDestroyNotify notify;
257 }
258 LogFuncEntry;
259 static GMutex __log_func_mutex;
260 static GSList *__log_functions = NULL;
261
262 #define PRETTY_TAGS_DEFAULT  TRUE
263 static gboolean pretty_tags = PRETTY_TAGS_DEFAULT;
264
265 static volatile gint G_GNUC_MAY_ALIAS __default_level = GST_LEVEL_DEFAULT;
266 static volatile gint G_GNUC_MAY_ALIAS __use_color = 1;
267
268 static FILE *log_file;
269
270 /* FIXME: export this? */
271 gboolean
272 _priv_gst_in_valgrind (void)
273 {
274   static enum
275   {
276     GST_VG_UNCHECKED,
277     GST_VG_NO_VALGRIND,
278     GST_VG_INSIDE
279   }
280   in_valgrind = GST_VG_UNCHECKED;
281
282   if (in_valgrind == GST_VG_UNCHECKED) {
283 #ifdef HAVE_VALGRIND_VALGRIND_H
284     if (RUNNING_ON_VALGRIND) {
285       GST_CAT_INFO (GST_CAT_GST_INIT, "we're running inside valgrind");
286       printf ("GStreamer has detected that it is running inside valgrind.\n");
287       printf ("It might now take different code paths to ease debugging.\n");
288       printf ("Of course, this may also lead to different bugs.\n");
289       in_valgrind = GST_VG_INSIDE;
290     } else {
291       GST_CAT_LOG (GST_CAT_GST_INIT, "not doing extra valgrind stuff");
292       in_valgrind = GST_VG_NO_VALGRIND;
293     }
294 #else
295     in_valgrind = GST_VG_NO_VALGRIND;
296 #endif
297     g_assert (in_valgrind == GST_VG_NO_VALGRIND ||
298         in_valgrind == GST_VG_INSIDE);
299   }
300   return (in_valgrind == GST_VG_INSIDE);
301 }
302
303 /* Initialize the debugging system */
304 void
305 _priv_gst_debug_init (void)
306 {
307   const gchar *env;
308
309   env = g_getenv ("GST_DEBUG_FILE");
310   if (env != NULL && *env != '\0') {
311     if (strcmp (env, "-") == 0) {
312       log_file = stdout;
313     } else {
314       log_file = g_fopen (env, "w");
315       if (log_file == NULL) {
316         g_printerr ("Could not open log file '%s' for writing: %s\n", env,
317             g_strerror (errno));
318         log_file = stderr;
319       }
320     }
321   } else {
322     log_file = stderr;
323   }
324
325   /* get time we started for debugging messages */
326   _priv_gst_info_start_time = gst_util_get_timestamp ();
327
328   __gst_printf_pointer_extension_set_func
329       (gst_info_printf_pointer_extension_func);
330
331   /* do NOT use a single debug function before this line has been run */
332   GST_CAT_DEFAULT = _gst_debug_category_new ("default",
333       GST_DEBUG_UNDERLINE, NULL);
334   _GST_CAT_DEBUG = _gst_debug_category_new ("GST_DEBUG",
335       GST_DEBUG_BOLD | GST_DEBUG_FG_YELLOW, "debugging subsystem");
336
337   gst_debug_add_log_function (gst_debug_log_default, NULL, NULL);
338
339   /* FIXME: add descriptions here */
340   GST_CAT_GST_INIT = _gst_debug_category_new ("GST_INIT",
341       GST_DEBUG_BOLD | GST_DEBUG_FG_RED, NULL);
342   GST_CAT_MEMORY = _gst_debug_category_new ("GST_MEMORY",
343       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, "memory");
344   GST_CAT_PARENTAGE = _gst_debug_category_new ("GST_PARENTAGE",
345       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
346   GST_CAT_STATES = _gst_debug_category_new ("GST_STATES",
347       GST_DEBUG_BOLD | GST_DEBUG_FG_RED, NULL);
348   GST_CAT_SCHEDULING = _gst_debug_category_new ("GST_SCHEDULING",
349       GST_DEBUG_BOLD | GST_DEBUG_FG_MAGENTA, NULL);
350   GST_CAT_BUFFER = _gst_debug_category_new ("GST_BUFFER",
351       GST_DEBUG_BOLD | GST_DEBUG_BG_GREEN, NULL);
352   GST_CAT_BUFFER_LIST = _gst_debug_category_new ("GST_BUFFER_LIST",
353       GST_DEBUG_BOLD | GST_DEBUG_BG_GREEN, NULL);
354   GST_CAT_BUS = _gst_debug_category_new ("GST_BUS", GST_DEBUG_BG_YELLOW, NULL);
355   GST_CAT_CAPS = _gst_debug_category_new ("GST_CAPS",
356       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
357   GST_CAT_CLOCK = _gst_debug_category_new ("GST_CLOCK",
358       GST_DEBUG_BOLD | GST_DEBUG_FG_YELLOW, NULL);
359   GST_CAT_ELEMENT_PADS = _gst_debug_category_new ("GST_ELEMENT_PADS",
360       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
361   GST_CAT_PADS = _gst_debug_category_new ("GST_PADS",
362       GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_RED, NULL);
363   GST_CAT_PERFORMANCE = _gst_debug_category_new ("GST_PERFORMANCE",
364       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
365   GST_CAT_PIPELINE = _gst_debug_category_new ("GST_PIPELINE",
366       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
367   GST_CAT_PLUGIN_LOADING = _gst_debug_category_new ("GST_PLUGIN_LOADING",
368       GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN, NULL);
369   GST_CAT_PLUGIN_INFO = _gst_debug_category_new ("GST_PLUGIN_INFO",
370       GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN, NULL);
371   GST_CAT_PROPERTIES = _gst_debug_category_new ("GST_PROPERTIES",
372       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_BLUE, NULL);
373   GST_CAT_NEGOTIATION = _gst_debug_category_new ("GST_NEGOTIATION",
374       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
375   GST_CAT_REFCOUNTING = _gst_debug_category_new ("GST_REFCOUNTING",
376       GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_BLUE, NULL);
377   GST_CAT_ERROR_SYSTEM = _gst_debug_category_new ("GST_ERROR_SYSTEM",
378       GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_WHITE, NULL);
379
380   GST_CAT_EVENT = _gst_debug_category_new ("GST_EVENT",
381       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
382   GST_CAT_MESSAGE = _gst_debug_category_new ("GST_MESSAGE",
383       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
384   GST_CAT_PARAMS = _gst_debug_category_new ("GST_PARAMS",
385       GST_DEBUG_BOLD | GST_DEBUG_FG_BLACK | GST_DEBUG_BG_YELLOW, NULL);
386   GST_CAT_CALL_TRACE = _gst_debug_category_new ("GST_CALL_TRACE",
387       GST_DEBUG_BOLD, NULL);
388   GST_CAT_SIGNAL = _gst_debug_category_new ("GST_SIGNAL",
389       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
390   GST_CAT_PROBE = _gst_debug_category_new ("GST_PROBE",
391       GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "pad probes");
392   GST_CAT_REGISTRY = _gst_debug_category_new ("GST_REGISTRY", 0, "registry");
393   GST_CAT_QOS = _gst_debug_category_new ("GST_QOS", 0, "QoS");
394   _priv_GST_CAT_POLL = _gst_debug_category_new ("GST_POLL", 0, "poll");
395   GST_CAT_META = _gst_debug_category_new ("GST_META", 0, "meta");
396   GST_CAT_LOCKING = _gst_debug_category_new ("GST_LOCKING", 0, "locking");
397   GST_CAT_CONTEXT = _gst_debug_category_new ("GST_CONTEXT", 0, NULL);
398
399   /* print out the valgrind message if we're in valgrind */
400   _priv_gst_in_valgrind ();
401
402   env = g_getenv ("GST_DEBUG_OPTIONS");
403   if (env != NULL) {
404     if (strstr (env, "full_tags") || strstr (env, "full-tags"))
405       pretty_tags = FALSE;
406     else if (strstr (env, "pretty_tags") || strstr (env, "pretty-tags"))
407       pretty_tags = TRUE;
408   }
409 }
410
411 /* we can't do this further above, because we initialize the GST_CAT_DEFAULT struct */
412 #define GST_CAT_DEFAULT _GST_CAT_DEBUG
413
414 /**
415  * gst_debug_log:
416  * @category: category to log
417  * @level: level of the message is in
418  * @file: the file that emitted the message, usually the __FILE__ identifier
419  * @function: the function that emitted the message
420  * @line: the line from that the message was emitted, usually __LINE__
421  * @object: (transfer none) (allow-none): the object this message relates to,
422  *     or NULL if none
423  * @format: a printf style format string
424  * @...: optional arguments for the format
425  *
426  * Logs the given message using the currently registered debugging handlers.
427  */
428 void
429 gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
430     const gchar * file, const gchar * function, gint line,
431     GObject * object, const gchar * format, ...)
432 {
433   va_list var_args;
434
435   va_start (var_args, format);
436   gst_debug_log_valist (category, level, file, function, line, object, format,
437       var_args);
438   va_end (var_args);
439 }
440
441 #ifdef G_OS_WIN32
442 /* based on g_basename(), which we can't use because it was deprecated */
443 static inline const gchar *
444 gst_path_basename (const gchar * file_name)
445 {
446   register const gchar *base;
447
448   base = strrchr (file_name, G_DIR_SEPARATOR);
449
450   {
451     const gchar *q = strrchr (file_name, '/');
452     if (base == NULL || (q != NULL && q > base))
453       base = q;
454   }
455
456   if (base)
457     return base + 1;
458
459   if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
460     return file_name + 2;
461
462   return file_name;
463 }
464 #endif
465
466 /**
467  * gst_debug_log_valist:
468  * @category: category to log
469  * @level: level of the message is in
470  * @file: the file that emitted the message, usually the __FILE__ identifier
471  * @function: the function that emitted the message
472  * @line: the line from that the message was emitted, usually __LINE__
473  * @object: (transfer none) (allow-none): the object this message relates to,
474  *     or NULL if none
475  * @format: a printf style format string
476  * @args: optional arguments for the format
477  *
478  * Logs the given message using the currently registered debugging handlers.
479  */
480 void
481 gst_debug_log_valist (GstDebugCategory * category, GstDebugLevel level,
482     const gchar * file, const gchar * function, gint line,
483     GObject * object, const gchar * format, va_list args)
484 {
485   GstDebugMessage message;
486   LogFuncEntry *entry;
487   GSList *handler;
488
489   g_return_if_fail (category != NULL);
490   g_return_if_fail (file != NULL);
491   g_return_if_fail (function != NULL);
492   g_return_if_fail (format != NULL);
493
494   /* The predefined macro __FILE__ is always the exact path given to the
495    * compiler with MSVC, which may or may not be the basename.  We work
496    * around it at runtime to improve the readability. */
497 #ifdef G_OS_WIN32
498   file = gst_path_basename (file);
499 #endif
500
501   message.message = NULL;
502   message.format = format;
503   G_VA_COPY (message.arguments, args);
504
505   handler = __log_functions;
506   while (handler) {
507     entry = handler->data;
508     handler = g_slist_next (handler);
509     entry->func (category, level, file, function, line, object, &message,
510         entry->user_data);
511   }
512   g_free (message.message);
513   va_end (message.arguments);
514 }
515
516 /**
517  * gst_debug_message_get:
518  * @message: a debug message
519  *
520  * Gets the string representation of a #GstDebugMessage. This function is used
521  * in debug handlers to extract the message.
522  *
523  * Returns: the string representation of a #GstDebugMessage.
524  */
525 const gchar *
526 gst_debug_message_get (GstDebugMessage * message)
527 {
528   if (message->message == NULL) {
529     int len;
530
531     len = __gst_vasprintf (&message->message, message->format,
532         message->arguments);
533
534     if (len < 0)
535       message->message = NULL;
536   }
537   return message->message;
538 }
539
540 #define MAX_BUFFER_DUMP_STRING_LEN  100
541
542 /* structure_to_pretty_string:
543  * @str: a serialized #GstStructure
544  *
545  * If the serialized structure contains large buffers such as images the hex
546  * representation of those buffers will be shortened so that the string remains
547  * readable.
548  *
549  * Returns: the filtered string
550  */
551 static gchar *
552 prettify_structure_string (gchar * str)
553 {
554   gchar *pos = str, *end;
555
556   while ((pos = strstr (pos, "(buffer)"))) {
557     guint count = 0;
558
559     pos += strlen ("(buffer)");
560     for (end = pos; *end != '\0' && *end != ';' && *end != ' '; ++end)
561       ++count;
562     if (count > MAX_BUFFER_DUMP_STRING_LEN) {
563       memcpy (pos + MAX_BUFFER_DUMP_STRING_LEN - 6, "..", 2);
564       memcpy (pos + MAX_BUFFER_DUMP_STRING_LEN - 4, pos + count - 4, 4);
565       g_memmove (pos + MAX_BUFFER_DUMP_STRING_LEN, pos + count,
566           strlen (pos + count) + 1);
567       pos += MAX_BUFFER_DUMP_STRING_LEN;
568     }
569   }
570
571   return str;
572 }
573
574 static inline gchar *
575 gst_info_structure_to_string (const GstStructure * s)
576 {
577   if (G_LIKELY (s)) {
578     gchar *str = gst_structure_to_string (s);;
579     if (G_UNLIKELY (pretty_tags && s->name == GST_QUARK (TAGLIST)))
580       return prettify_structure_string (str);
581     else
582       return str;
583   }
584   return NULL;
585 }
586
587 static inline gchar *
588 gst_info_describe_buffer (GstBuffer * buffer)
589 {
590   return g_strdup_printf ("buffer: %p, pts %" GST_TIME_FORMAT ", dts %"
591       GST_TIME_FORMAT ", dur %" GST_TIME_FORMAT ", size %" G_GSIZE_FORMAT
592       ", offset %" G_GUINT64_FORMAT ", offset_end %" G_GUINT64_FORMAT
593       ", flags 0x%x", buffer, GST_TIME_ARGS (GST_BUFFER_PTS (buffer)),
594       GST_TIME_ARGS (GST_BUFFER_DTS (buffer)),
595       GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)),
596       gst_buffer_get_size (buffer), GST_BUFFER_OFFSET (buffer),
597       GST_BUFFER_OFFSET_END (buffer), GST_BUFFER_FLAGS (buffer));
598 }
599
600 static inline gchar *
601 gst_info_describe_event (GstEvent * event)
602 {
603   gchar *s, *ret;
604
605   s = gst_info_structure_to_string (gst_event_get_structure (event));
606   ret = g_strdup_printf ("%s event: %p, time %" GST_TIME_FORMAT
607       ", seq-num %d, %s", GST_EVENT_TYPE_NAME (event), event,
608       GST_TIME_ARGS (GST_EVENT_TIMESTAMP (event)), GST_EVENT_SEQNUM (event),
609       (s ? s : "(NULL)"));
610   g_free (s);
611   return ret;
612 }
613
614 static inline gchar *
615 gst_info_describe_message (GstMessage * message)
616 {
617   gchar *s, *ret;
618
619   s = gst_info_structure_to_string (gst_message_get_structure (message));
620   ret = g_strdup_printf ("%s message: %p, time %" GST_TIME_FORMAT
621       ", seq-num %d, element '%s', %s", GST_MESSAGE_TYPE_NAME (message),
622       message, GST_TIME_ARGS (GST_MESSAGE_TIMESTAMP (message)),
623       GST_MESSAGE_SEQNUM (message),
624       ((message->src) ? GST_ELEMENT_NAME (message->src) : "(NULL)"),
625       (s ? s : "(NULL)"));
626   g_free (s);
627   return ret;
628 }
629
630 static inline gchar *
631 gst_info_describe_query (GstQuery * query)
632 {
633   gchar *s, *ret;
634
635   s = gst_info_structure_to_string (gst_query_get_structure (query));
636   ret = g_strdup_printf ("%s query: %p, %s", GST_QUERY_TYPE_NAME (query),
637       query, (s ? s : "(NULL)"));
638   g_free (s);
639   return ret;
640 }
641
642 static gchar *
643 gst_debug_print_object (gpointer ptr)
644 {
645   GObject *object = (GObject *) ptr;
646
647 #ifdef unused
648   /* This is a cute trick to detect unmapped memory, but is unportable,
649    * slow, screws around with madvise, and not actually that useful. */
650   {
651     int ret;
652
653     ret = madvise ((void *) ((unsigned long) ptr & (~0xfff)), 4096, 0);
654     if (ret == -1 && errno == ENOMEM) {
655       buffer = g_strdup_printf ("%p (unmapped memory)", ptr);
656     }
657   }
658 #endif
659
660   /* nicely printed object */
661   if (object == NULL) {
662     return g_strdup ("(NULL)");
663   }
664   if (*(GType *) ptr == GST_TYPE_CAPS) {
665     return gst_caps_to_string ((const GstCaps *) ptr);
666   }
667   if (*(GType *) ptr == GST_TYPE_STRUCTURE) {
668     return gst_info_structure_to_string ((const GstStructure *) ptr);
669   }
670   if (*(GType *) ptr == GST_TYPE_CAPS_FEATURES) {
671     return gst_caps_features_to_string ((const GstCapsFeatures *) ptr);
672   }
673   if (*(GType *) ptr == GST_TYPE_TAG_LIST) {
674     gchar *str = gst_tag_list_to_string ((GstTagList *) ptr);
675     if (G_UNLIKELY (pretty_tags))
676       return prettify_structure_string (str);
677     else
678       return str;
679   }
680   if (*(GType *) ptr == GST_TYPE_DATE_TIME) {
681     return __gst_date_time_serialize ((GstDateTime *) ptr, TRUE);
682   }
683   if (GST_IS_BUFFER (ptr)) {
684     return gst_info_describe_buffer (GST_BUFFER_CAST (ptr));
685   }
686 #ifdef USE_POISONING
687   if (*(guint32 *) ptr == 0xffffffff) {
688     return g_strdup_printf ("<poisoned@%p>", ptr);
689   }
690 #endif
691   if (GST_IS_PAD (object) && GST_OBJECT_NAME (object)) {
692     return g_strdup_printf ("<%s:%s>", GST_DEBUG_PAD_NAME (object));
693   }
694   if (GST_IS_OBJECT (object) && GST_OBJECT_NAME (object)) {
695     return g_strdup_printf ("<%s>", GST_OBJECT_NAME (object));
696   }
697   if (G_IS_OBJECT (object)) {
698     return g_strdup_printf ("<%s@%p>", G_OBJECT_TYPE_NAME (object), object);
699   }
700   if (GST_IS_MESSAGE (object)) {
701     return gst_info_describe_message (GST_MESSAGE_CAST (object));
702   }
703   if (GST_IS_QUERY (object)) {
704     return gst_info_describe_query (GST_QUERY_CAST (object));
705   }
706   if (GST_IS_EVENT (object)) {
707     return gst_info_describe_event (GST_EVENT_CAST (object));
708   }
709   if (GST_IS_CONTEXT (object)) {
710     GstContext *context = GST_CONTEXT_CAST (object);
711     gchar *s, *ret;
712     const GstStructure *structure;
713
714     structure = gst_context_get_structure (context);
715
716     if (structure) {
717       s = gst_info_structure_to_string (structure);
718     } else {
719       s = g_strdup ("(NULL)");
720     }
721
722     ret = g_strdup_printf ("context '%s'", s);
723     g_free (s);
724     return ret;
725   }
726
727   return g_strdup_printf ("%p", ptr);
728 }
729
730 static gchar *
731 gst_debug_print_segment (gpointer ptr)
732 {
733   GstSegment *segment = (GstSegment *) ptr;
734
735   /* nicely printed segment */
736   if (segment == NULL) {
737     return g_strdup ("(NULL)");
738   }
739
740   switch (segment->format) {
741     case GST_FORMAT_UNDEFINED:{
742       return g_strdup_printf ("UNDEFINED segment");
743     }
744     case GST_FORMAT_TIME:{
745       return g_strdup_printf ("time segment start=%" GST_TIME_FORMAT
746           ", stop=%" GST_TIME_FORMAT ", rate=%f, applied_rate=%f"
747           ", flags=0x%02x, time=%" GST_TIME_FORMAT ", base=%" GST_TIME_FORMAT
748           ", position %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT,
749           GST_TIME_ARGS (segment->start), GST_TIME_ARGS (segment->stop),
750           segment->rate, segment->applied_rate, (guint) segment->flags,
751           GST_TIME_ARGS (segment->time), GST_TIME_ARGS (segment->base),
752           GST_TIME_ARGS (segment->position), GST_TIME_ARGS (segment->duration));
753     }
754     default:{
755       const gchar *format_name;
756
757       format_name = gst_format_get_name (segment->format);
758       if (G_UNLIKELY (format_name == NULL))
759         format_name = "(UNKNOWN FORMAT)";
760       return g_strdup_printf ("%s segment start=%" G_GINT64_FORMAT
761           ", stop=%" G_GINT64_FORMAT ", rate=%f, applied_rate=%f"
762           ", flags=0x%02x, time=%" G_GINT64_FORMAT ", base=%" G_GINT64_FORMAT
763           ", position %" G_GINT64_FORMAT ", duration %" G_GINT64_FORMAT,
764           format_name, segment->start, segment->stop, segment->rate,
765           segment->applied_rate, (guint) segment->flags,
766           segment->time, segment->base, segment->position, segment->duration);
767     }
768   }
769 }
770
771 static char *
772 gst_info_printf_pointer_extension_func (const char *format, void *ptr)
773 {
774   char *s = NULL;
775
776   if (format[0] == 'p' && format[1] == '\a') {
777     switch (format[2]) {
778       case 'A':                /* GST_PTR_FORMAT     */
779         s = gst_debug_print_object (ptr);
780         break;
781       case 'B':                /* GST_SEGMENT_FORMAT */
782         s = gst_debug_print_segment (ptr);
783         break;
784       default:
785         /* must have been compiled against a newer version with an extension
786          * we don't known about yet - just ignore and fallback to %p below */
787         break;
788     }
789   }
790   if (s == NULL)
791     s = g_strdup_printf ("%p", ptr);
792
793   return s;
794 }
795
796 /**
797  * gst_debug_construct_term_color:
798  * @colorinfo: the color info
799  *
800  * Constructs a string that can be used for getting the desired color in color
801  * terminals.
802  * You need to free the string after use.
803  *
804  * Returns: (transfer full) (type gchar*): a string containing the color
805  *     definition
806  */
807 gchar *
808 gst_debug_construct_term_color (guint colorinfo)
809 {
810   GString *color;
811
812   color = g_string_new ("\033[00");
813
814   if (colorinfo & GST_DEBUG_BOLD) {
815     g_string_append_len (color, ";01", 3);
816   }
817   if (colorinfo & GST_DEBUG_UNDERLINE) {
818     g_string_append_len (color, ";04", 3);
819   }
820   if (colorinfo & GST_DEBUG_FG_MASK) {
821     g_string_append_printf (color, ";3%1d", colorinfo & GST_DEBUG_FG_MASK);
822   }
823   if (colorinfo & GST_DEBUG_BG_MASK) {
824     g_string_append_printf (color, ";4%1d",
825         (colorinfo & GST_DEBUG_BG_MASK) >> 4);
826   }
827   g_string_append_c (color, 'm');
828
829   return g_string_free (color, FALSE);
830 }
831
832 /**
833  * gst_debug_construct_win_color:
834  * @colorinfo: the color info
835  *
836  * Constructs an integer that can be used for getting the desired color in
837  * windows' terminals (cmd.exe). As there is no mean to underline, we simply
838  * ignore this attribute.
839  *
840  * This function returns 0 on non-windows machines.
841  *
842  * Returns: an integer containing the color definition
843  */
844 gint
845 gst_debug_construct_win_color (guint colorinfo)
846 {
847   gint color = 0;
848 #ifdef G_OS_WIN32
849   static const guchar ansi_to_win_fg[8] = {
850     0,                          /* black   */
851     FOREGROUND_RED,             /* red     */
852     FOREGROUND_GREEN,           /* green   */
853     FOREGROUND_RED | FOREGROUND_GREEN,  /* yellow  */
854     FOREGROUND_BLUE,            /* blue    */
855     FOREGROUND_RED | FOREGROUND_BLUE,   /* magenta */
856     FOREGROUND_GREEN | FOREGROUND_BLUE, /* cyan    */
857     FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE /* white   */
858   };
859   static const guchar ansi_to_win_bg[8] = {
860     0,
861     BACKGROUND_RED,
862     BACKGROUND_GREEN,
863     BACKGROUND_RED | BACKGROUND_GREEN,
864     BACKGROUND_BLUE,
865     BACKGROUND_RED | BACKGROUND_BLUE,
866     BACKGROUND_GREEN | FOREGROUND_BLUE,
867     BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE
868   };
869
870   /* we draw black as white, as cmd.exe can only have black bg */
871   if (colorinfo == 0) {
872     return ansi_to_win_fg[7];
873   }
874
875   if (colorinfo & GST_DEBUG_BOLD) {
876     color |= FOREGROUND_INTENSITY;
877   }
878   if (colorinfo & GST_DEBUG_FG_MASK) {
879     color |= ansi_to_win_fg[colorinfo & GST_DEBUG_FG_MASK];
880   }
881   if (colorinfo & GST_DEBUG_BG_MASK) {
882     color |= ansi_to_win_bg[(colorinfo & GST_DEBUG_BG_MASK) >> 4];
883   }
884 #endif
885   return color;
886 }
887
888 /* width of %p varies depending on actual value of pointer, which can make
889  * output unevenly aligned if multiple threads are involved, hence the %14p
890  * (should really be %18p, but %14p seems a good compromise between too many
891  * white spaces and likely unalignment on my system) */
892 #if defined (GLIB_SIZEOF_VOID_P) && GLIB_SIZEOF_VOID_P == 8
893 #define PTR_FMT "%14p"
894 #else
895 #define PTR_FMT "%10p"
896 #endif
897 #define PID_FMT "%5d"
898 #define CAT_FMT "%20s %s:%d:%s:%s"
899
900 #ifdef G_OS_WIN32
901 static const guchar levelcolormap[GST_LEVEL_COUNT] = {
902   /* GST_LEVEL_NONE */
903   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE,
904   /* GST_LEVEL_ERROR */
905   FOREGROUND_RED | FOREGROUND_INTENSITY,
906   /* GST_LEVEL_WARNING */
907   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY,
908   /* GST_LEVEL_INFO */
909   FOREGROUND_GREEN | FOREGROUND_INTENSITY,
910   /* GST_LEVEL_DEBUG */
911   FOREGROUND_GREEN | FOREGROUND_BLUE,
912   /* GST_LEVEL_LOG */
913   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE,
914   /* GST_LEVEL_FIXME */
915   FOREGROUND_RED | FOREGROUND_GREEN,
916   /* GST_LEVEL_TRACE */
917   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE,
918   /* placeholder for log level 8 */
919   0,
920   /* GST_LEVEL_MEMDUMP */
921   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE
922 };
923
924 static const guchar available_colors[] = {
925   FOREGROUND_RED, FOREGROUND_GREEN, FOREGROUND_RED | FOREGROUND_GREEN,
926   FOREGROUND_BLUE, FOREGROUND_RED | FOREGROUND_BLUE,
927   FOREGROUND_GREEN | FOREGROUND_BLUE,
928 };
929 #else
930 static const gchar *levelcolormap[GST_LEVEL_COUNT] = {
931   "\033[37m",                   /* GST_LEVEL_NONE */
932   "\033[31;01m",                /* GST_LEVEL_ERROR */
933   "\033[33;01m",                /* GST_LEVEL_WARNING */
934   "\033[32;01m",                /* GST_LEVEL_INFO */
935   "\033[36m",                   /* GST_LEVEL_DEBUG */
936   "\033[37m",                   /* GST_LEVEL_LOG */
937   "\033[33;01m",                /* GST_LEVEL_FIXME */
938   "\033[37m",                   /* GST_LEVEL_TRACE */
939   "\033[37m",                   /* placeholder for log level 8 */
940   "\033[37m"                    /* GST_LEVEL_MEMDUMP */
941 };
942 #endif
943
944 /**
945  * gst_debug_log_default:
946  * @category: category to log
947  * @level: level of the message
948  * @file: the file that emitted the message, usually the __FILE__ identifier
949  * @function: the function that emitted the message
950  * @line: the line from that the message was emitted, usually __LINE__
951  * @message: the actual message
952  * @object: (transfer none) (allow-none): the object this message relates to,
953  *     or NULL if none
954  * @unused: an unused variable, reserved for some user_data.
955  *
956  * The default logging handler used by GStreamer. Logging functions get called
957  * whenever a macro like GST_DEBUG or similar is used. This function outputs the
958  * message and additional info to stderr (or the log file specified via the
959  * GST_DEBUG_FILE environment variable).
960  *
961  * You can add other handlers by using gst_debug_add_log_function().
962  * And you can remove this handler by calling
963  * gst_debug_remove_log_function(gst_debug_log_default);
964  */
965 void
966 gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
967     const gchar * file, const gchar * function, gint line,
968     GObject * object, GstDebugMessage * message, gpointer unused)
969 {
970   gint pid;
971   GstClockTime elapsed;
972   gchar *obj = NULL;
973   gboolean is_colored;
974
975   if (level > gst_debug_category_get_threshold (category))
976     return;
977
978   pid = getpid ();
979   is_colored = gst_debug_is_colored ();
980
981   if (object) {
982     obj = gst_debug_print_object (object);
983   } else {
984     obj = g_strdup ("");
985   }
986
987   elapsed = GST_CLOCK_DIFF (_priv_gst_info_start_time,
988       gst_util_get_timestamp ());
989
990   if (is_colored) {
991 #ifndef G_OS_WIN32
992     /* colors, non-windows */
993     gchar *color = NULL;
994     const gchar *clear;
995     gchar pidcolor[10];
996     const gchar *levelcolor;
997
998     color = gst_debug_construct_term_color (gst_debug_category_get_color
999         (category));
1000     clear = "\033[00m";
1001     g_sprintf (pidcolor, "\033[3%1dm", pid % 6 + 31);
1002     levelcolor = levelcolormap[level];
1003
1004 #define PRINT_FMT " %s"PID_FMT"%s "PTR_FMT" %s%s%s %s"CAT_FMT"%s %s\n"
1005     fprintf (log_file, "%" GST_TIME_FORMAT PRINT_FMT, GST_TIME_ARGS (elapsed),
1006         pidcolor, pid, clear, g_thread_self (), levelcolor,
1007         gst_debug_level_get_name (level), clear, color,
1008         gst_debug_category_get_name (category), file, line, function, obj,
1009         clear, gst_debug_message_get (message));
1010     fflush (log_file);
1011 #undef PRINT_FMT
1012     g_free (color);
1013 #else
1014     /* colors, windows. We take a lock to keep colors and content together.
1015      * Maybe there is a better way but for now this will do the right
1016      * thing. */
1017     static GMutex win_print_mutex;
1018     const gint clear = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE;
1019 #define SET_COLOR(c) G_STMT_START { \
1020   if (log_file == stderr) \
1021     SetConsoleTextAttribute (GetStdHandle (STD_ERROR_HANDLE), (c)); \
1022   } G_STMT_END
1023     g_mutex_lock (&win_print_mutex);
1024     /* timestamp */
1025     fprintf (log_file, "%" GST_TIME_FORMAT " ", GST_TIME_ARGS (elapsed));
1026     fflush (log_file);
1027     /* pid */
1028     SET_COLOR (available_colors[pid % G_N_ELEMENTS (available_colors)]);
1029     fprintf (log_file, PID_FMT, pid);
1030     fflush (log_file);
1031     /* thread */
1032     SET_COLOR (clear);
1033     fprintf (log_file, " " PTR_FMT " ", g_thread_self ());
1034     fflush (log_file);
1035     /* level */
1036     SET_COLOR (levelcolormap[level]);
1037     fprintf (log_file, "%s ", gst_debug_level_get_name (level));
1038     fflush (log_file);
1039     /* category */
1040     SET_COLOR (gst_debug_construct_win_color (gst_debug_category_get_color
1041             (category)));
1042     fprintf (log_file, CAT_FMT, gst_debug_category_get_name (category),
1043         file, line, function, obj);
1044     fflush (log_file);
1045     /* message */
1046     SET_COLOR (clear);
1047     fprintf (log_file, " %s\n", gst_debug_message_get (message));
1048     fflush (log_file);
1049     g_mutex_unlock (&win_print_mutex);
1050 #endif
1051   } else {
1052     /* no color, all platforms */
1053 #define PRINT_FMT " "PID_FMT" "PTR_FMT" %s "CAT_FMT" %s\n"
1054     fprintf (log_file, "%" GST_TIME_FORMAT PRINT_FMT, GST_TIME_ARGS (elapsed),
1055         pid, g_thread_self (), gst_debug_level_get_name (level),
1056         gst_debug_category_get_name (category), file, line, function, obj,
1057         gst_debug_message_get (message));
1058     fflush (log_file);
1059 #undef PRINT_FMT
1060   }
1061
1062   g_free (obj);
1063 }
1064
1065 /**
1066  * gst_debug_level_get_name:
1067  * @level: the level to get the name for
1068  *
1069  * Get the string representation of a debugging level
1070  *
1071  * Returns: the name
1072  */
1073 const gchar *
1074 gst_debug_level_get_name (GstDebugLevel level)
1075 {
1076   switch (level) {
1077     case GST_LEVEL_NONE:
1078       return "";
1079     case GST_LEVEL_ERROR:
1080       return "ERROR  ";
1081     case GST_LEVEL_WARNING:
1082       return "WARN   ";
1083     case GST_LEVEL_INFO:
1084       return "INFO   ";
1085     case GST_LEVEL_DEBUG:
1086       return "DEBUG  ";
1087     case GST_LEVEL_LOG:
1088       return "LOG    ";
1089     case GST_LEVEL_FIXME:
1090       return "FIXME  ";
1091     case GST_LEVEL_TRACE:
1092       return "TRACE  ";
1093     case GST_LEVEL_MEMDUMP:
1094       return "MEMDUMP";
1095     default:
1096       g_warning ("invalid level specified for gst_debug_level_get_name");
1097       return "";
1098   }
1099 }
1100
1101 /**
1102  * gst_debug_add_log_function:
1103  * @func: the function to use
1104  * @user_data: user data
1105  * @notify: called when @user_data is not used anymore
1106  *
1107  * Adds the logging function to the list of logging functions.
1108  * Be sure to use #G_GNUC_NO_INSTRUMENT on that function, it is needed.
1109  */
1110 void
1111 gst_debug_add_log_function (GstLogFunction func, gpointer user_data,
1112     GDestroyNotify notify)
1113 {
1114   LogFuncEntry *entry;
1115   GSList *list;
1116
1117   if (func == NULL)
1118     func = gst_debug_log_default;
1119
1120   entry = g_slice_new (LogFuncEntry);
1121   entry->func = func;
1122   entry->user_data = user_data;
1123   entry->notify = notify;
1124   /* FIXME: we leak the old list here - other threads might access it right now
1125    * in gst_debug_logv. Another solution is to lock the mutex in gst_debug_logv,
1126    * but that is waaay costly.
1127    * It'd probably be clever to use some kind of RCU here, but I don't know
1128    * anything about that.
1129    */
1130   g_mutex_lock (&__log_func_mutex);
1131   list = g_slist_copy (__log_functions);
1132   __log_functions = g_slist_prepend (list, entry);
1133   g_mutex_unlock (&__log_func_mutex);
1134
1135   if (gst_is_initialized ())
1136     GST_DEBUG ("prepended log function %p (user data %p) to log functions",
1137         func, user_data);
1138 }
1139
1140 static gint
1141 gst_debug_compare_log_function_by_func (gconstpointer entry, gconstpointer func)
1142 {
1143   gpointer entryfunc = (gpointer) (((LogFuncEntry *) entry)->func);
1144
1145   return (entryfunc < func) ? -1 : (entryfunc > func) ? 1 : 0;
1146 }
1147
1148 static gint
1149 gst_debug_compare_log_function_by_data (gconstpointer entry, gconstpointer data)
1150 {
1151   gpointer entrydata = ((LogFuncEntry *) entry)->user_data;
1152
1153   return (entrydata < data) ? -1 : (entrydata > data) ? 1 : 0;
1154 }
1155
1156 static guint
1157 gst_debug_remove_with_compare_func (GCompareFunc func, gpointer data)
1158 {
1159   GSList *found;
1160   GSList *new, *cleanup = NULL;
1161   guint removals = 0;
1162
1163   g_mutex_lock (&__log_func_mutex);
1164   new = __log_functions;
1165   cleanup = NULL;
1166   while ((found = g_slist_find_custom (new, data, func))) {
1167     if (new == __log_functions) {
1168       /* make a copy when we have the first hit, so that we modify the copy and
1169        * make that the new list later */
1170       new = g_slist_copy (new);
1171       continue;
1172     }
1173     cleanup = g_slist_prepend (cleanup, found->data);
1174     new = g_slist_delete_link (new, found);
1175     removals++;
1176   }
1177   /* FIXME: We leak the old list here. See _add_log_function for why. */
1178   __log_functions = new;
1179   g_mutex_unlock (&__log_func_mutex);
1180
1181   while (cleanup) {
1182     LogFuncEntry *entry = cleanup->data;
1183
1184     if (entry->notify)
1185       entry->notify (entry->user_data);
1186
1187     g_slice_free (LogFuncEntry, entry);
1188     cleanup = g_slist_delete_link (cleanup, cleanup);
1189   }
1190   return removals;
1191 }
1192
1193 /**
1194  * gst_debug_remove_log_function:
1195  * @func: (scope call): the log function to remove
1196  *
1197  * Removes all registered instances of the given logging functions.
1198  *
1199  * Returns: How many instances of the function were removed
1200  */
1201 guint
1202 gst_debug_remove_log_function (GstLogFunction func)
1203 {
1204   guint removals;
1205
1206   if (func == NULL)
1207     func = gst_debug_log_default;
1208
1209   removals =
1210       gst_debug_remove_with_compare_func
1211       (gst_debug_compare_log_function_by_func, (gpointer) func);
1212   if (gst_is_initialized ())
1213     GST_DEBUG ("removed log function %p %d times from log function list", func,
1214         removals);
1215
1216   return removals;
1217 }
1218
1219 /**
1220  * gst_debug_remove_log_function_by_data:
1221  * @data: user data of the log function to remove
1222  *
1223  * Removes all registered instances of log functions with the given user data.
1224  *
1225  * Returns: How many instances of the function were removed
1226  */
1227 guint
1228 gst_debug_remove_log_function_by_data (gpointer data)
1229 {
1230   guint removals;
1231
1232   removals =
1233       gst_debug_remove_with_compare_func
1234       (gst_debug_compare_log_function_by_data, data);
1235
1236   if (gst_is_initialized ())
1237     GST_DEBUG
1238         ("removed %d log functions with user data %p from log function list",
1239         removals, data);
1240
1241   return removals;
1242 }
1243
1244 /**
1245  * gst_debug_set_colored:
1246  * @colored: Whether to use colored output or not
1247  *
1248  * Sets or unsets the use of coloured debugging output.
1249  *
1250  * This function may be called before gst_init().
1251  */
1252 void
1253 gst_debug_set_colored (gboolean colored)
1254 {
1255   g_atomic_int_set (&__use_color, (gint) colored);
1256 }
1257
1258 /**
1259  * gst_debug_is_colored:
1260  *
1261  * Checks if the debugging output should be colored.
1262  *
1263  * Returns: TRUE, if the debug output should be colored.
1264  */
1265 gboolean
1266 gst_debug_is_colored (void)
1267 {
1268   return (gboolean) g_atomic_int_get (&__use_color);
1269 }
1270
1271 /**
1272  * gst_debug_set_active:
1273  * @active: Whether to use debugging output or not
1274  *
1275  * If activated, debugging messages are sent to the debugging
1276  * handlers.
1277  * It makes sense to deactivate it for speed issues.
1278  * <note><para>This function is not threadsafe. It makes sense to only call it
1279  * during initialization.</para></note>
1280  */
1281 void
1282 gst_debug_set_active (gboolean active)
1283 {
1284   _gst_debug_enabled = active;
1285   if (active)
1286     _gst_debug_min = GST_LEVEL_COUNT;
1287   else
1288     _gst_debug_min = GST_LEVEL_NONE;
1289 }
1290
1291 /**
1292  * gst_debug_is_active:
1293  *
1294  * Checks if debugging output is activated.
1295  *
1296  * Returns: TRUE, if debugging is activated
1297  */
1298 gboolean
1299 gst_debug_is_active (void)
1300 {
1301   return _gst_debug_enabled;
1302 }
1303
1304 /**
1305  * gst_debug_set_default_threshold:
1306  * @level: level to set
1307  *
1308  * Sets the default threshold to the given level and updates all categories to
1309  * use this threshold.
1310  *
1311  * This function may be called before gst_init().
1312  */
1313 void
1314 gst_debug_set_default_threshold (GstDebugLevel level)
1315 {
1316   g_atomic_int_set (&__default_level, level);
1317   gst_debug_reset_all_thresholds ();
1318 }
1319
1320 /**
1321  * gst_debug_get_default_threshold:
1322  *
1323  * Returns the default threshold that is used for new categories.
1324  *
1325  * Returns: the default threshold level
1326  */
1327 GstDebugLevel
1328 gst_debug_get_default_threshold (void)
1329 {
1330   return (GstDebugLevel) g_atomic_int_get (&__default_level);
1331 }
1332
1333 static void
1334 gst_debug_reset_threshold (gpointer category, gpointer unused)
1335 {
1336   GstDebugCategory *cat = (GstDebugCategory *) category;
1337   GSList *walk;
1338
1339   g_mutex_lock (&__level_name_mutex);
1340   walk = __level_name;
1341   while (walk) {
1342     LevelNameEntry *entry = walk->data;
1343
1344     walk = g_slist_next (walk);
1345     if (g_pattern_match_string (entry->pat, cat->name)) {
1346       if (gst_is_initialized ())
1347         GST_LOG ("category %s matches pattern %p - gets set to level %d",
1348             cat->name, entry->pat, entry->level);
1349       gst_debug_category_set_threshold (cat, entry->level);
1350       goto exit;
1351     }
1352   }
1353   gst_debug_category_set_threshold (cat, gst_debug_get_default_threshold ());
1354
1355 exit:
1356   g_mutex_unlock (&__level_name_mutex);
1357 }
1358
1359 static void
1360 gst_debug_reset_all_thresholds (void)
1361 {
1362   g_mutex_lock (&__cat_mutex);
1363   g_slist_foreach (__categories, gst_debug_reset_threshold, NULL);
1364   g_mutex_unlock (&__cat_mutex);
1365 }
1366
1367 static void
1368 for_each_threshold_by_entry (gpointer data, gpointer user_data)
1369 {
1370   GstDebugCategory *cat = (GstDebugCategory *) data;
1371   LevelNameEntry *entry = (LevelNameEntry *) user_data;
1372
1373   if (g_pattern_match_string (entry->pat, cat->name)) {
1374     if (gst_is_initialized ())
1375       GST_LOG ("category %s matches pattern %p - gets set to level %d",
1376           cat->name, entry->pat, entry->level);
1377     gst_debug_category_set_threshold (cat, entry->level);
1378   }
1379 }
1380
1381 /**
1382  * gst_debug_set_threshold_for_name:
1383  * @name: name of the categories to set
1384  * @level: level to set them to
1385  *
1386  * Sets all categories which match the given glob style pattern to the given
1387  * level.
1388  */
1389 void
1390 gst_debug_set_threshold_for_name (const gchar * name, GstDebugLevel level)
1391 {
1392   GPatternSpec *pat;
1393   LevelNameEntry *entry;
1394
1395   g_return_if_fail (name != NULL);
1396
1397   pat = g_pattern_spec_new (name);
1398   entry = g_slice_new (LevelNameEntry);
1399   entry->pat = pat;
1400   entry->level = level;
1401   g_mutex_lock (&__level_name_mutex);
1402   __level_name = g_slist_prepend (__level_name, entry);
1403   g_mutex_unlock (&__level_name_mutex);
1404   g_mutex_lock (&__cat_mutex);
1405   g_slist_foreach (__categories, for_each_threshold_by_entry, entry);
1406   g_mutex_unlock (&__cat_mutex);
1407 }
1408
1409 /**
1410  * gst_debug_unset_threshold_for_name:
1411  * @name: name of the categories to set
1412  *
1413  * Resets all categories with the given name back to the default level.
1414  */
1415 void
1416 gst_debug_unset_threshold_for_name (const gchar * name)
1417 {
1418   GSList *walk;
1419   GPatternSpec *pat;
1420
1421   g_return_if_fail (name != NULL);
1422
1423   pat = g_pattern_spec_new (name);
1424   g_mutex_lock (&__level_name_mutex);
1425   walk = __level_name;
1426   /* improve this if you want, it's mighty slow */
1427   while (walk) {
1428     LevelNameEntry *entry = walk->data;
1429
1430     if (g_pattern_spec_equal (entry->pat, pat)) {
1431       __level_name = g_slist_remove_link (__level_name, walk);
1432       g_pattern_spec_free (entry->pat);
1433       g_slice_free (LevelNameEntry, entry);
1434       g_slist_free_1 (walk);
1435       walk = __level_name;
1436     }
1437   }
1438   g_mutex_unlock (&__level_name_mutex);
1439   g_pattern_spec_free (pat);
1440   gst_debug_reset_all_thresholds ();
1441 }
1442
1443 GstDebugCategory *
1444 _gst_debug_category_new (const gchar * name, guint color,
1445     const gchar * description)
1446 {
1447   GstDebugCategory *cat;
1448
1449   g_return_val_if_fail (name != NULL, NULL);
1450
1451   cat = g_slice_new (GstDebugCategory);
1452   cat->name = g_strdup (name);
1453   cat->color = color;
1454   if (description != NULL) {
1455     cat->description = g_strdup (description);
1456   } else {
1457     cat->description = g_strdup ("no description");
1458   }
1459   g_atomic_int_set (&cat->threshold, 0);
1460   gst_debug_reset_threshold (cat, NULL);
1461
1462   /* add to category list */
1463   g_mutex_lock (&__cat_mutex);
1464   __categories = g_slist_prepend (__categories, cat);
1465   g_mutex_unlock (&__cat_mutex);
1466
1467   return cat;
1468 }
1469
1470 /**
1471  * gst_debug_category_free:
1472  * @category: #GstDebugCategory to free.
1473  *
1474  * Removes and frees the category and all associated resources.
1475  */
1476 void
1477 gst_debug_category_free (GstDebugCategory * category)
1478 {
1479   if (category == NULL)
1480     return;
1481
1482   /* remove from category list */
1483   g_mutex_lock (&__cat_mutex);
1484   __categories = g_slist_remove (__categories, category);
1485   g_mutex_unlock (&__cat_mutex);
1486
1487   g_free ((gpointer) category->name);
1488   g_free ((gpointer) category->description);
1489   g_slice_free (GstDebugCategory, category);
1490 }
1491
1492 /**
1493  * gst_debug_category_set_threshold:
1494  * @category: a #GstDebugCategory to set threshold of.
1495  * @level: the #GstDebugLevel threshold to set.
1496  *
1497  * Sets the threshold of the category to the given level. Debug information will
1498  * only be output if the threshold is lower or equal to the level of the
1499  * debugging message.
1500  * <note><para>
1501  * Do not use this function in production code, because other functions may
1502  * change the threshold of categories as side effect. It is however a nice
1503  * function to use when debugging (even from gdb).
1504  * </para></note>
1505  */
1506 void
1507 gst_debug_category_set_threshold (GstDebugCategory * category,
1508     GstDebugLevel level)
1509 {
1510   g_return_if_fail (category != NULL);
1511
1512   if (level > _gst_debug_min) {
1513     _gst_debug_enabled = TRUE;
1514     _gst_debug_min = level;
1515   }
1516
1517   g_atomic_int_set (&category->threshold, level);
1518 }
1519
1520 /**
1521  * gst_debug_category_reset_threshold:
1522  * @category: a #GstDebugCategory to reset threshold of.
1523  *
1524  * Resets the threshold of the category to the default level. Debug information
1525  * will only be output if the threshold is lower or equal to the level of the
1526  * debugging message.
1527  * Use this function to set the threshold back to where it was after using
1528  * gst_debug_category_set_threshold().
1529  */
1530 void
1531 gst_debug_category_reset_threshold (GstDebugCategory * category)
1532 {
1533   gst_debug_reset_threshold (category, NULL);
1534 }
1535
1536 /**
1537  * gst_debug_category_get_threshold:
1538  * @category: a #GstDebugCategory to get threshold of.
1539  *
1540  * Returns the threshold of a #GstDebugCategory.
1541  *
1542  * Returns: the #GstDebugLevel that is used as threshold.
1543  */
1544 GstDebugLevel
1545 gst_debug_category_get_threshold (GstDebugCategory * category)
1546 {
1547   return (GstDebugLevel) g_atomic_int_get (&category->threshold);
1548 }
1549
1550 /**
1551  * gst_debug_category_get_name:
1552  * @category: a #GstDebugCategory to get name of.
1553  *
1554  * Returns the name of a debug category.
1555  *
1556  * Returns: the name of the category.
1557  */
1558 const gchar *
1559 gst_debug_category_get_name (GstDebugCategory * category)
1560 {
1561   return category->name;
1562 }
1563
1564 /**
1565  * gst_debug_category_get_color:
1566  * @category: a #GstDebugCategory to get the color of.
1567  *
1568  * Returns the color of a debug category used when printing output in this
1569  * category.
1570  *
1571  * Returns: the color of the category.
1572  */
1573 guint
1574 gst_debug_category_get_color (GstDebugCategory * category)
1575 {
1576   return category->color;
1577 }
1578
1579 /**
1580  * gst_debug_category_get_description:
1581  * @category: a #GstDebugCategory to get the description of.
1582  *
1583  * Returns the description of a debug category.
1584  *
1585  * Returns: the description of the category.
1586  */
1587 const gchar *
1588 gst_debug_category_get_description (GstDebugCategory * category)
1589 {
1590   return category->description;
1591 }
1592
1593 /**
1594  * gst_debug_get_all_categories:
1595  *
1596  * Returns a snapshot of a all categories that are currently in use . This list
1597  * may change anytime.
1598  * The caller has to free the list after use.
1599  *
1600  * Returns: (transfer container) (element-type Gst.DebugCategory): the list of
1601  *     debug categories
1602  */
1603 GSList *
1604 gst_debug_get_all_categories (void)
1605 {
1606   GSList *ret;
1607
1608   g_mutex_lock (&__cat_mutex);
1609   ret = g_slist_copy (__categories);
1610   g_mutex_unlock (&__cat_mutex);
1611
1612   return ret;
1613 }
1614
1615 GstDebugCategory *
1616 _gst_debug_get_category (const gchar * name)
1617 {
1618   GstDebugCategory *ret = NULL;
1619   GSList *node;
1620
1621   for (node = __categories; node; node = g_slist_next (node)) {
1622     ret = (GstDebugCategory *) node->data;
1623     if (!strcmp (name, ret->name)) {
1624       return ret;
1625     }
1626   }
1627   return NULL;
1628 }
1629
1630 static gboolean
1631 parse_debug_category (gchar * str, const gchar ** category)
1632 {
1633   if (!str)
1634     return FALSE;
1635
1636   /* works in place */
1637   g_strstrip (str);
1638
1639   if (str[0] != '\0') {
1640     *category = str;
1641     return TRUE;
1642   }
1643
1644   return FALSE;
1645 }
1646
1647 static gboolean
1648 parse_debug_level (gchar * str, GstDebugLevel * level)
1649 {
1650   if (!str)
1651     return FALSE;
1652
1653   /* works in place */
1654   g_strstrip (str);
1655
1656   if (str[0] != '\0' && str[1] == '\0'
1657       && str[0] >= '0' && str[0] < '0' + GST_LEVEL_COUNT) {
1658     *level = (GstDebugLevel) (str[0] - '0');
1659   } else if (strcmp (str, "ERROR") == 0) {
1660     *level = GST_LEVEL_ERROR;
1661   } else if (strncmp (str, "WARN", 4) == 0) {
1662     *level = GST_LEVEL_WARNING;
1663   } else if (strcmp (str, "FIXME") == 0) {
1664     *level = GST_LEVEL_FIXME;
1665   } else if (strcmp (str, "INFO") == 0) {
1666     *level = GST_LEVEL_INFO;
1667   } else if (strcmp (str, "DEBUG") == 0) {
1668     *level = GST_LEVEL_DEBUG;
1669   } else if (strcmp (str, "LOG") == 0) {
1670     *level = GST_LEVEL_LOG;
1671   } else if (strcmp (str, "TRACE") == 0) {
1672     *level = GST_LEVEL_TRACE;
1673   } else if (strcmp (str, "MEMDUMP") == 0) {
1674     *level = GST_LEVEL_MEMDUMP;
1675   } else
1676     return FALSE;
1677
1678   return TRUE;
1679 }
1680
1681 /**
1682  * gst_debug_set_threshold_from_string:
1683  * @list: comma-separated list of "category:level" pairs to be used
1684  *     as debug logging levels
1685  * @reset: %TRUE to clear all previously-set debug levels before setting
1686  *     new thresholds
1687  * %FALSE if adding the threshold described by @list to the one already set.
1688  *
1689  * Sets the debug logging wanted in the same form as with the GST_DEBUG
1690  * environment variable. You can use wildcards such as '*', but note that
1691  * the order matters when you use wild cards, e.g. "foosrc:6,*src:3,*:2" sets
1692  * everything to log level 2.
1693  *
1694  * Since: 1.2.0
1695  */
1696 void
1697 gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
1698 {
1699   gchar **split;
1700   gchar **walk;
1701
1702   g_assert (list);
1703
1704   if (reset == TRUE)
1705     gst_debug_set_default_threshold (0);
1706
1707   split = g_strsplit (list, ",", 0);
1708
1709   for (walk = split; *walk; walk++) {
1710     if (strchr (*walk, ':')) {
1711       gchar **values = g_strsplit (*walk, ":", 2);
1712
1713       if (values[0] && values[1]) {
1714         GstDebugLevel level;
1715         const gchar *category;
1716
1717         if (parse_debug_category (values[0], &category)
1718             && parse_debug_level (values[1], &level))
1719           gst_debug_set_threshold_for_name (category, level);
1720       }
1721
1722       g_strfreev (values);
1723     } else {
1724       GstDebugLevel level;
1725
1726       if (parse_debug_level (*walk, &level))
1727         gst_debug_set_default_threshold (level);
1728     }
1729   }
1730
1731   g_strfreev (split);
1732 }
1733
1734 /*** FUNCTION POINTERS ********************************************************/
1735
1736 static GHashTable *__gst_function_pointers;     /* NULL */
1737 static GMutex __dbg_functions_mutex;
1738
1739 /* This function MUST NOT return NULL */
1740 const gchar *
1741 _gst_debug_nameof_funcptr (GstDebugFuncPtr func)
1742 {
1743   gchar *ptrname;
1744
1745 #ifdef HAVE_DLADDR
1746   Dl_info dl_info;
1747 #endif
1748
1749   if (G_UNLIKELY (func == NULL))
1750     return "(NULL)";
1751
1752   g_mutex_lock (&__dbg_functions_mutex);
1753   if (G_LIKELY (__gst_function_pointers)) {
1754     ptrname = g_hash_table_lookup (__gst_function_pointers, (gpointer) func);
1755     g_mutex_unlock (&__dbg_functions_mutex);
1756     if (G_LIKELY (ptrname))
1757       return ptrname;
1758   } else {
1759     g_mutex_unlock (&__dbg_functions_mutex);
1760   }
1761   /* we need to create an entry in the hash table for this one so we don't leak
1762    * the name */
1763 #ifdef HAVE_DLADDR
1764   if (dladdr ((gpointer) func, &dl_info) && dl_info.dli_sname) {
1765     gchar *name = g_strdup (dl_info.dli_sname);
1766
1767     _gst_debug_register_funcptr (func, name);
1768     return name;
1769   } else
1770 #endif
1771   {
1772     gchar *name = g_strdup_printf ("%p", (gpointer) func);
1773
1774     _gst_debug_register_funcptr (func, name);
1775     return name;
1776   }
1777 }
1778
1779 void
1780 _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
1781 {
1782   gpointer ptr = (gpointer) func;
1783
1784   g_mutex_lock (&__dbg_functions_mutex);
1785
1786   if (!__gst_function_pointers)
1787     __gst_function_pointers = g_hash_table_new (g_direct_hash, g_direct_equal);
1788   if (!g_hash_table_lookup (__gst_function_pointers, ptr))
1789     g_hash_table_insert (__gst_function_pointers, ptr, (gpointer) ptrname);
1790
1791   g_mutex_unlock (&__dbg_functions_mutex);
1792 }
1793
1794 static void
1795 gst_info_dump_mem_line (gchar * linebuf, gsize linebuf_size,
1796     const guint8 * mem, gsize mem_offset, gsize mem_size)
1797 {
1798   gchar hexstr[50], ascstr[18], digitstr[4];
1799
1800   if (mem_size > 16)
1801     mem_size = 16;
1802
1803   hexstr[0] = '\0';
1804   ascstr[0] = '\0';
1805
1806   if (mem != NULL) {
1807     guint i = 0;
1808
1809     mem += mem_offset;
1810     while (i < mem_size) {
1811       ascstr[i] = (g_ascii_isprint (mem[i])) ? mem[i] : '.';
1812       g_snprintf (digitstr, sizeof (digitstr), "%02x ", mem[i]);
1813       g_strlcat (hexstr, digitstr, sizeof (hexstr));
1814       ++i;
1815     }
1816     ascstr[i] = '\0';
1817   }
1818
1819   g_snprintf (linebuf, linebuf_size, "%08x: %-48.48s %-16.16s",
1820       (guint) mem_offset, hexstr, ascstr);
1821 }
1822
1823 void
1824 _gst_debug_dump_mem (GstDebugCategory * cat, const gchar * file,
1825     const gchar * func, gint line, GObject * obj, const gchar * msg,
1826     const guint8 * data, guint length)
1827 {
1828   guint off = 0;
1829
1830   gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
1831       "-------------------------------------------------------------------");
1832
1833   if (msg != NULL && *msg != '\0') {
1834     gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", msg);
1835   }
1836
1837   while (off < length) {
1838     gchar buf[128];
1839
1840     /* gst_info_dump_mem_line will process 16 bytes at most */
1841     gst_info_dump_mem_line (buf, sizeof (buf), data, off, length - off);
1842     gst_debug_log (cat, GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", buf);
1843     off += 16;
1844   }
1845
1846   gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
1847       "-------------------------------------------------------------------");
1848 }
1849
1850 #else /* !GST_DISABLE_GST_DEBUG */
1851 #ifndef GST_REMOVE_DISABLED
1852
1853 GstDebugCategory *
1854 _gst_debug_category_new (const gchar * name, guint color,
1855     const gchar * description)
1856 {
1857   return NULL;
1858 }
1859
1860 void
1861 _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
1862 {
1863 }
1864
1865 /* This function MUST NOT return NULL */
1866 const gchar *
1867 _gst_debug_nameof_funcptr (GstDebugFuncPtr func)
1868 {
1869   return "(NULL)";
1870 }
1871
1872 void
1873 gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
1874     const gchar * file, const gchar * function, gint line,
1875     GObject * object, const gchar * format, ...)
1876 {
1877 }
1878
1879 void
1880 gst_debug_log_valist (GstDebugCategory * category, GstDebugLevel level,
1881     const gchar * file, const gchar * function, gint line,
1882     GObject * object, const gchar * format, va_list args)
1883 {
1884 }
1885
1886 const gchar *
1887 gst_debug_message_get (GstDebugMessage * message)
1888 {
1889   return "";
1890 }
1891
1892 void
1893 gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
1894     const gchar * file, const gchar * function, gint line,
1895     GObject * object, GstDebugMessage * message, gpointer unused)
1896 {
1897 }
1898
1899 const gchar *
1900 gst_debug_level_get_name (GstDebugLevel level)
1901 {
1902   return "NONE";
1903 }
1904
1905 void
1906 gst_debug_add_log_function (GstLogFunction func, gpointer user_data,
1907     GDestroyNotify notify)
1908 {
1909 }
1910
1911 guint
1912 gst_debug_remove_log_function (GstLogFunction func)
1913 {
1914   return 0;
1915 }
1916
1917 guint
1918 gst_debug_remove_log_function_by_data (gpointer data)
1919 {
1920   return 0;
1921 }
1922
1923 void
1924 gst_debug_set_active (gboolean active)
1925 {
1926 }
1927
1928 gboolean
1929 gst_debug_is_active (void)
1930 {
1931   return FALSE;
1932 }
1933
1934 void
1935 gst_debug_set_colored (gboolean colored)
1936 {
1937 }
1938
1939 gboolean
1940 gst_debug_is_colored (void)
1941 {
1942   return FALSE;
1943 }
1944
1945 void
1946 gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
1947 {
1948 }
1949
1950 void
1951 gst_debug_set_default_threshold (GstDebugLevel level)
1952 {
1953 }
1954
1955 GstDebugLevel
1956 gst_debug_get_default_threshold (void)
1957 {
1958   return GST_LEVEL_NONE;
1959 }
1960
1961 void
1962 gst_debug_set_threshold_for_name (const gchar * name, GstDebugLevel level)
1963 {
1964 }
1965
1966 void
1967 gst_debug_unset_threshold_for_name (const gchar * name)
1968 {
1969 }
1970
1971 void
1972 gst_debug_category_free (GstDebugCategory * category)
1973 {
1974 }
1975
1976 void
1977 gst_debug_category_set_threshold (GstDebugCategory * category,
1978     GstDebugLevel level)
1979 {
1980 }
1981
1982 void
1983 gst_debug_category_reset_threshold (GstDebugCategory * category)
1984 {
1985 }
1986
1987 GstDebugLevel
1988 gst_debug_category_get_threshold (GstDebugCategory * category)
1989 {
1990   return GST_LEVEL_NONE;
1991 }
1992
1993 const gchar *
1994 gst_debug_category_get_name (GstDebugCategory * category)
1995 {
1996   return "";
1997 }
1998
1999 guint
2000 gst_debug_category_get_color (GstDebugCategory * category)
2001 {
2002   return 0;
2003 }
2004
2005 const gchar *
2006 gst_debug_category_get_description (GstDebugCategory * category)
2007 {
2008   return "";
2009 }
2010
2011 GSList *
2012 gst_debug_get_all_categories (void)
2013 {
2014   return NULL;
2015 }
2016
2017 GstDebugCategory *
2018 _gst_debug_get_category (const gchar * name)
2019 {
2020   return NULL;
2021 }
2022
2023 gchar *
2024 gst_debug_construct_term_color (guint colorinfo)
2025 {
2026   return g_strdup ("00");
2027 }
2028
2029 gint
2030 gst_debug_construct_win_color (guint colorinfo)
2031 {
2032   return 0;
2033 }
2034
2035 gboolean
2036 _priv_gst_in_valgrind (void)
2037 {
2038   return FALSE;
2039 }
2040
2041 void
2042 _gst_debug_dump_mem (GstDebugCategory * cat, const gchar * file,
2043     const gchar * func, gint line, GObject * obj, const gchar * msg,
2044     const guint8 * data, guint length)
2045 {
2046 }
2047 #endif /* GST_REMOVE_DISABLED */
2048 #endif /* GST_DISABLE_GST_DEBUG */
2049
2050 /* Need this for _gst_element_error_printf even if GST_REMOVE_DISABLED is set:
2051  * fallback function that cleans up the format string and replaces all pointer
2052  * extension formats with plain %p. */
2053 #ifdef GST_DISABLE_GST_DEBUG
2054 #include <glib/gprintf.h>
2055 int
2056 __gst_info_fallback_vasprintf (char **result, char const *format, va_list args)
2057 {
2058   gchar *clean_format, *c;
2059   gsize len;
2060
2061   if (format == NULL)
2062     return -1;
2063
2064   clean_format = g_strdup (format);
2065   c = clean_format;
2066   while ((c = strstr (c, "%p\a"))) {
2067     if (c[3] < 'A' || c[3] > 'Z') {
2068       c += 3;
2069       continue;
2070     }
2071     len = strlen (c + 4);
2072     g_memmove (c + 2, c + 4, len + 1);
2073     c += 2;
2074   }
2075   while ((c = strstr (clean_format, "%P")))     /* old GST_PTR_FORMAT */
2076     c[1] = 'p';
2077   while ((c = strstr (clean_format, "%Q")))     /* old GST_SEGMENT_FORMAT */
2078     c[1] = 'p';
2079
2080   len = g_vasprintf (result, clean_format, args);
2081
2082   g_free (clean_format);
2083
2084   if (*result == NULL)
2085     return -1;
2086
2087   return len;
2088 }
2089 #endif
2090
2091 #ifdef GST_ENABLE_FUNC_INSTRUMENTATION
2092 /* FIXME make this thread specific */
2093 static GSList *stack_trace = NULL;
2094
2095 void
2096 __cyg_profile_func_enter (void *this_fn, void *call_site)
2097     G_GNUC_NO_INSTRUMENT;
2098      void __cyg_profile_func_enter (void *this_fn, void *call_site)
2099 {
2100   gchar *name = _gst_debug_nameof_funcptr (this_fn);
2101   gchar *site = _gst_debug_nameof_funcptr (call_site);
2102
2103   GST_CAT_DEBUG (GST_CAT_CALL_TRACE, "entering function %s from %s", name,
2104       site);
2105   stack_trace =
2106       g_slist_prepend (stack_trace, g_strdup_printf ("%8p in %s from %p (%s)",
2107           this_fn, name, call_site, site));
2108
2109   g_free (name);
2110   g_free (site);
2111 }
2112
2113 void
2114 __cyg_profile_func_exit (void *this_fn, void *call_site)
2115     G_GNUC_NO_INSTRUMENT;
2116      void __cyg_profile_func_exit (void *this_fn, void *call_site)
2117 {
2118   gchar *name = _gst_debug_nameof_funcptr (this_fn);
2119
2120   GST_CAT_DEBUG (GST_CAT_CALL_TRACE, "leaving function %s", name);
2121   g_free (stack_trace->data);
2122   stack_trace = g_slist_delete_link (stack_trace, stack_trace);
2123
2124   g_free (name);
2125 }
2126
2127 /**
2128  * gst_debug_print_stack_trace:
2129  *
2130  * If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktrace is available for
2131  * gstreamer code, which can be printed with this function.
2132  */
2133 void
2134 gst_debug_print_stack_trace (void)
2135 {
2136   GSList *walk = stack_trace;
2137   gint count = 0;
2138
2139   if (walk)
2140     walk = g_slist_next (walk);
2141
2142   while (walk) {
2143     gchar *name = (gchar *) walk->data;
2144
2145     g_print ("#%-2d %s\n", count++, name);
2146
2147     walk = g_slist_next (walk);
2148   }
2149 }
2150 #else
2151 void
2152 gst_debug_print_stack_trace (void)
2153 {
2154   /* nothing because it's compiled out */
2155 }
2156
2157 #endif /* GST_ENABLE_FUNC_INSTRUMENTATION */