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