]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - gst/gstinfo.c
info: simply some more
[glsdk/gstreamer0-10.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  *
6  * gstinfo.c: debugging functions
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
24 /**
25  * SECTION:gstinfo
26  * @short_description: Debugging and logging facilities
27  * @see_also: #GstConfig, #Gst for command line parameters
28  * and environment variables that affect the debugging output.
29  *
30  * GStreamer's debugging subsystem is an easy way to get information about what
31  * the application is doing.  It is not meant for programming errors. Use GLib
32  * methods (g_warning and friends) for that.
33  *
34  * The debugging subsystem works only after GStreamer has been initialized
35  * - for example by calling gst_init().
36  *
37  * The debugging subsystem is used to log informational messages while the
38  * application runs.  Each messages has some properties attached to it. Among
39  * these properties are the debugging category, the severity (called "level"
40  * here) and an optional #GObject it belongs to. Each of these messages is sent
41  * to all registered debugging handlers, which then handle the messages.
42  * GStreamer attaches a default handler on startup, which outputs requested
43  * messages to stderr.
44  *
45  * Messages are output by using shortcut macros like #GST_DEBUG,
46  * #GST_CAT_ERROR_OBJECT or similar. These all expand to calling gst_debug_log()
47  * with the right parameters.
48  * The only thing a developer will probably want to do is define his own
49  * categories. This is easily done with 3 lines. At the top of your code,
50  * declare
51  * the variables and set the default category.
52  * <informalexample>
53  * <programlisting>
54  * GST_DEBUG_CATEGORY_STATIC (my_category);     // define category (statically)
55  * &hash;define GST_CAT_DEFAULT my_category     // set as default
56  * </programlisting>
57  * </informalexample>
58  * After that you only need to initialize the category.
59  * <informalexample>
60  * <programlisting>
61  * GST_DEBUG_CATEGORY_INIT (my_category, "my category",
62  *                          0, "This is my very own");
63  * </programlisting>
64  * </informalexample>
65  * Initialization must be done before the category is used first.
66  * Plugins do this
67  * in their plugin_init function, libraries and applications should do that
68  * during their initialization.
69  *
70  * The whole debugging subsystem can be disabled at build time with passing the
71  * --disable-gst-debug switch to configure. If this is done, every function,
72  * macro and even structs described in this file evaluate to default values or
73  * nothing at all.
74  * So don't take addresses of these functions or use other tricks.
75  * If you must do that for some reason, there is still an option.
76  * If the debugging
77  * subsystem was compiled out, #GST_DISABLE_GST_DEBUG is defined in
78  * &lt;gst/gst.h&gt;,
79  * so you can check that before doing your trick.
80  * Disabling the debugging subsystem will give you a slight (read: unnoticeable)
81  * speed increase and will reduce the size of your compiled code. The GStreamer
82  * library itself becomes around 10% smaller.
83  *
84  * Please note that there are naming conventions for the names of debugging
85  * categories. These are explained at GST_DEBUG_CATEGORY_INIT().
86  */
88 #include "gst_private.h"
89 #include "gstinfo.h"
91 #ifndef GST_DISABLE_GST_DEBUG
93 #ifdef HAVE_DLFCN_H
94 #  include <dlfcn.h>
95 #endif
96 #ifdef HAVE_PRINTF_EXTENSION
97 #  include <printf.h>
98 #endif
99 #include <stdio.h>              /* fprintf */
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
112 #include "gst_private.h"
113 #include "gstutils.h"
114 #include "gstsegment.h"
115 #ifdef HAVE_VALGRIND_H
116 #  include <valgrind/valgrind.h>
117 #endif
118 #include <glib/gprintf.h>       /* g_sprintf */
120 /* underscore is to prevent conflict with GST_CAT_DEBUG define */
121 GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
123 /* time of initialization, so we get useful debugging output times
124  * FIXME: we use this in gstdebugutils.c, what about a function + macro to
125  * get the running time: GST_DEBUG_RUNNING_TIME
126  */
127 GstClockTime _priv_gst_info_start_time;
129 #if 0
130 #if defined __sgi__
131 #include <rld_interface.h>
132 typedef struct DL_INFO
134   const char *dli_fname;
135   void *dli_fbase;
136   const char *dli_sname;
137   void *dli_saddr;
138   int dli_version;
139   int dli_reserved1;
140   long dli_reserved[4];
142 Dl_info;
144 #define _RLD_DLADDR             14
145 int dladdr (void *address, Dl_info * dl);
147 int
148 dladdr (void *address, Dl_info * dl)
150   void *v;
152   v = _rld_new_interface (_RLD_DLADDR, address, dl);
153   return (int) v;
155 #endif /* __sgi__ */
156 #endif
158 static void gst_debug_reset_threshold (gpointer category, gpointer unused);
159 static void gst_debug_reset_all_thresholds (void);
161 #ifdef HAVE_PRINTF_EXTENSION
162 static int _gst_info_printf_extension_ptr (FILE * stream,
163     const struct printf_info *info, const void *const *args);
164 static int _gst_info_printf_extension_segment (FILE * stream,
165     const struct printf_info *info, const void *const *args);
166 static int _gst_info_printf_extension_arginfo (const struct printf_info *info,
167     size_t n, int *argtypes);
168 #endif
170 struct _GstDebugMessage
172   gchar *message;
173   const gchar *format;
174   va_list arguments;
175 };
177 /* list of all name/level pairs from --gst-debug and GST_DEBUG */
178 static GStaticMutex __level_name_mutex = G_STATIC_MUTEX_INIT;
179 static GSList *__level_name = NULL;
180 typedef struct
182   GPatternSpec *pat;
183   GstDebugLevel level;
185 LevelNameEntry;
187 /* list of all categories */
188 static GStaticMutex __cat_mutex = G_STATIC_MUTEX_INIT;
189 static GSList *__categories = NULL;
191 /* all registered debug handlers */
192 typedef struct
194   GstLogFunction func;
195   gpointer user_data;
197 LogFuncEntry;
198 static GStaticMutex __log_func_mutex = G_STATIC_MUTEX_INIT;
199 static GSList *__log_functions = NULL;
201 static gint __default_level;
202 static gint __use_color;
204 /* disabled by default, as soon as some threshold is set > NONE,
205  * it becomes enabled. */
206 gboolean __gst_debug_enabled = FALSE;
207 GstDebugLevel __gst_debug_min = GST_LEVEL_NONE;
209 GstDebugCategory *GST_CAT_DEFAULT = NULL;
211 GstDebugCategory *GST_CAT_GST_INIT = NULL;
212 GstDebugCategory *GST_CAT_AUTOPLUG = NULL;
213 GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT = NULL;
214 GstDebugCategory *GST_CAT_PARENTAGE = NULL;
215 GstDebugCategory *GST_CAT_STATES = NULL;
216 GstDebugCategory *GST_CAT_SCHEDULING = NULL;
218 GstDebugCategory *GST_CAT_BUFFER = NULL;
219 GstDebugCategory *GST_CAT_BUS = NULL;
220 GstDebugCategory *GST_CAT_CAPS = NULL;
221 GstDebugCategory *GST_CAT_CLOCK = NULL;
222 GstDebugCategory *GST_CAT_ELEMENT_PADS = NULL;
223 GstDebugCategory *GST_CAT_PADS = NULL;
224 GstDebugCategory *GST_CAT_PIPELINE = NULL;
225 GstDebugCategory *GST_CAT_PLUGIN_LOADING = NULL;
226 GstDebugCategory *GST_CAT_PLUGIN_INFO = NULL;
227 GstDebugCategory *GST_CAT_PROPERTIES = NULL;
228 GstDebugCategory *GST_CAT_TYPES = NULL;
229 GstDebugCategory *GST_CAT_XML = NULL;
230 GstDebugCategory *GST_CAT_NEGOTIATION = NULL;
231 GstDebugCategory *GST_CAT_REFCOUNTING = NULL;
232 GstDebugCategory *GST_CAT_ERROR_SYSTEM = NULL;
233 GstDebugCategory *GST_CAT_EVENT = NULL;
234 GstDebugCategory *GST_CAT_MESSAGE = NULL;
235 GstDebugCategory *GST_CAT_PARAMS = NULL;
236 GstDebugCategory *GST_CAT_CALL_TRACE = NULL;
237 GstDebugCategory *GST_CAT_SIGNAL = NULL;
238 GstDebugCategory *GST_CAT_PROBE = NULL;
239 GstDebugCategory *GST_CAT_REGISTRY = NULL;
240 GstDebugCategory *GST_CAT_QOS = NULL;
242 /* FIXME: export this? */
243 gboolean
244 _priv_gst_in_valgrind (void)
246   static enum
247   {
248     GST_VG_UNCHECKED,
249     GST_VG_NO_VALGRIND,
250     GST_VG_INSIDE
251   }
252   in_valgrind = GST_VG_UNCHECKED;
254   if (in_valgrind == GST_VG_UNCHECKED) {
255 #ifdef HAVE_VALGRIND_H
256     if (RUNNING_ON_VALGRIND) {
257       GST_CAT_INFO (GST_CAT_GST_INIT, "we're running inside valgrind");
258       printf ("GStreamer has detected that it is running inside valgrind.\n");
259       printf ("It might now take different code paths to ease debugging.\n");
260       printf ("Of course, this may also lead to different bugs.\n");
261       in_valgrind = GST_VG_INSIDE;
262     } else {
263       GST_CAT_LOG (GST_CAT_GST_INIT, "not doing extra valgrind stuff");
264       in_valgrind = GST_VG_NO_VALGRIND;
265     }
266 #else
267     in_valgrind = GST_VG_NO_VALGRIND;
268 #endif
269     g_assert (in_valgrind == GST_VG_NO_VALGRIND ||
270         in_valgrind == GST_VG_INSIDE);
271   }
272   return (in_valgrind == GST_VG_INSIDE) ? TRUE : FALSE;
275 /**
276  * _gst_debug_init:
277  *
278  * Initializes the debugging system.
279  * Normally you don't want to call this, because gst_init() does it for you.
280  */
281 void
282 _gst_debug_init (void)
284   g_atomic_int_set (&__default_level, GST_LEVEL_DEFAULT);
285   g_atomic_int_set (&__use_color, 1);
287   /* get time we started for debugging messages */
288   _priv_gst_info_start_time = gst_util_get_timestamp ();
290 #ifdef HAVE_PRINTF_EXTENSION
291   register_printf_function (GST_PTR_FORMAT[0], _gst_info_printf_extension_ptr,
292       _gst_info_printf_extension_arginfo);
293   register_printf_function (GST_SEGMENT_FORMAT[0],
294       _gst_info_printf_extension_segment, _gst_info_printf_extension_arginfo);
295 #endif
297   /* do NOT use a single debug function before this line has been run */
298   GST_CAT_DEFAULT = _gst_debug_category_new ("default",
299       GST_DEBUG_UNDERLINE, NULL);
300   _GST_CAT_DEBUG = _gst_debug_category_new ("GST_DEBUG",
301       GST_DEBUG_BOLD | GST_DEBUG_FG_YELLOW, "debugging subsystem");
303   gst_debug_add_log_function (gst_debug_log_default, NULL);
305   /* FIXME: add descriptions here */
306   GST_CAT_GST_INIT = _gst_debug_category_new ("GST_INIT",
307       GST_DEBUG_BOLD | GST_DEBUG_FG_RED, NULL);
308   GST_CAT_AUTOPLUG = _gst_debug_category_new ("GST_AUTOPLUG",
309       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
310   GST_CAT_AUTOPLUG_ATTEMPT = _gst_debug_category_new ("GST_AUTOPLUG_ATTEMPT",
311       GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN | GST_DEBUG_BG_BLUE, NULL);
312   GST_CAT_PARENTAGE = _gst_debug_category_new ("GST_PARENTAGE",
313       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
314   GST_CAT_STATES = _gst_debug_category_new ("GST_STATES",
315       GST_DEBUG_BOLD | GST_DEBUG_FG_RED, NULL);
316   GST_CAT_SCHEDULING = _gst_debug_category_new ("GST_SCHEDULING",
317       GST_DEBUG_BOLD | GST_DEBUG_FG_MAGENTA, NULL);
318   GST_CAT_BUFFER = _gst_debug_category_new ("GST_BUFFER",
319       GST_DEBUG_BOLD | GST_DEBUG_BG_GREEN, NULL);
320   GST_CAT_BUS = _gst_debug_category_new ("GST_BUS", GST_DEBUG_BG_YELLOW, NULL);
321   GST_CAT_CAPS = _gst_debug_category_new ("GST_CAPS",
322       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
323   GST_CAT_CLOCK = _gst_debug_category_new ("GST_CLOCK",
324       GST_DEBUG_BOLD | GST_DEBUG_FG_YELLOW, NULL);
325   GST_CAT_ELEMENT_PADS = _gst_debug_category_new ("GST_ELEMENT_PADS",
326       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
327   GST_CAT_PADS = _gst_debug_category_new ("GST_PADS",
328       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
329   GST_CAT_PIPELINE = _gst_debug_category_new ("GST_PIPELINE",
330       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
331   GST_CAT_PLUGIN_LOADING = _gst_debug_category_new ("GST_PLUGIN_LOADING",
332       GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN, NULL);
333   GST_CAT_PLUGIN_INFO = _gst_debug_category_new ("GST_PLUGIN_INFO",
334       GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN, NULL);
335   GST_CAT_PROPERTIES = _gst_debug_category_new ("GST_PROPERTIES",
336       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_BLUE, NULL);
337   GST_CAT_TYPES = _gst_debug_category_new ("GST_TYPES",
338       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
339   GST_CAT_XML = _gst_debug_category_new ("GST_XML",
340       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
341   GST_CAT_NEGOTIATION = _gst_debug_category_new ("GST_NEGOTIATION",
342       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
343   GST_CAT_REFCOUNTING = _gst_debug_category_new ("GST_REFCOUNTING",
344       GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_BLUE, NULL);
345   GST_CAT_ERROR_SYSTEM = _gst_debug_category_new ("GST_ERROR_SYSTEM",
346       GST_DEBUG_BOLD | GST_DEBUG_FG_RED | GST_DEBUG_BG_WHITE, NULL);
348   GST_CAT_EVENT = _gst_debug_category_new ("GST_EVENT",
349       GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
350   GST_CAT_MESSAGE = _gst_debug_category_new ("GST_MESSAGE",
351       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
352   GST_CAT_PARAMS = _gst_debug_category_new ("GST_PARAMS",
353       GST_DEBUG_BOLD | GST_DEBUG_FG_BLACK | GST_DEBUG_BG_YELLOW, NULL);
354   GST_CAT_CALL_TRACE = _gst_debug_category_new ("GST_CALL_TRACE",
355       GST_DEBUG_BOLD, NULL);
356   GST_CAT_SIGNAL = _gst_debug_category_new ("GST_SIGNAL",
357       GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
358   GST_CAT_PROBE = _gst_debug_category_new ("GST_PROBE",
359       GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, "pad probes");
360   GST_CAT_REGISTRY = _gst_debug_category_new ("GST_REGISTRY", 0, "registry");
361   GST_CAT_QOS = _gst_debug_category_new ("GST_QOS", 0, "QoS");
364   /* print out the valgrind message if we're in valgrind */
365   _priv_gst_in_valgrind ();
368 /* we can't do this further above, because we initialize the GST_CAT_DEFAULT struct */
369 #define GST_CAT_DEFAULT _GST_CAT_DEBUG
371 /**
372  * gst_debug_log:
373  * @category: category to log
374  * @level: level of the message is in
375  * @file: the file that emitted the message, usually the __FILE__ identifier
376  * @function: the function that emitted the message
377  * @line: the line from that the message was emitted, usually __LINE__
378  * @object: the object this message relates to or NULL if none
379  * @format: a printf style format string
380  * @...: optional arguments for the format
381  *
382  * Logs the given message using the currently registered debugging handlers.
383  */
384 void
385 gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
386     const gchar * file, const gchar * function, gint line,
387     GObject * object, const gchar * format, ...)
389   va_list var_args;
391   va_start (var_args, format);
392   gst_debug_log_valist (category, level, file, function, line, object, format,
393       var_args);
394   va_end (var_args);
397 /**
398  * gst_debug_log_valist:
399  * @category: category to log
400  * @level: level of the message is in
401  * @file: the file that emitted the message, usually the __FILE__ identifier
402  * @function: the function that emitted the message
403  * @line: the line from that the message was emitted, usually __LINE__
404  * @object: the object this message relates to or NULL if none
405  * @format: a printf style format string
406  * @args: optional arguments for the format
407  *
408  * Logs the given message using the currently registered debugging handlers.
409  */
410 void
411 gst_debug_log_valist (GstDebugCategory * category, GstDebugLevel level,
412     const gchar * file, const gchar * function, gint line,
413     GObject * object, const gchar * format, va_list args)
415   GstDebugMessage message;
416   LogFuncEntry *entry;
417   GSList *handler;
419 #ifdef _MSC_VER
420   gchar *file_basename;
421 #endif
423   g_return_if_fail (category != NULL);
424   g_return_if_fail (file != NULL);
425   g_return_if_fail (function != NULL);
426   g_return_if_fail (format != NULL);
428 #ifdef _MSC_VER
429   /*
430    * The predefined macro __FILE__ is always the exact path given to the
431    * compiler with MSVC, which may or may not be the basename.  We work
432    * around it at runtime to improve the readability.
433    */
434   file = file_basename = g_path_get_basename (file);
435 #endif
437   message.message = NULL;
438   message.format = format;
439   G_VA_COPY (message.arguments, args);
441   handler = __log_functions;
442   while (handler) {
443     entry = handler->data;
444     handler = g_slist_next (handler);
445     entry->func (category, level, file, function, line, object, &message,
446         entry->user_data);
447   }
448   g_free (message.message);
449   va_end (message.arguments);
451 #ifdef _MSC_VER
452   g_free (file_basename);
453 #endif
456 /**
457  * gst_debug_message_get:
458  * @message: a debug message
459  *
460  * Gets the string representation of a #GstDebugMessage. This function is used
461  * in debug handlers to extract the message.
462  *
463  * Returns: the string representation of a #GstDebugMessage.
464  */
465 const gchar *
466 gst_debug_message_get (GstDebugMessage * message)
468   if (message->message == NULL) {
469     message->message = g_strdup_vprintf (message->format, message->arguments);
470   }
471   return message->message;
475 static gchar *
476 gst_debug_print_object (gpointer ptr)
478   GObject *object = (GObject *) ptr;
480 #ifdef unused
481   /* This is a cute trick to detect unmapped memory, but is unportable,
482    * slow, screws around with madvise, and not actually that useful. */
483   {
484     int ret;
486     ret = madvise ((void *) ((unsigned long) ptr & (~0xfff)), 4096, 0);
487     if (ret == -1 && errno == ENOMEM) {
488       buffer = g_strdup_printf ("%p (unmapped memory)", ptr);
489     }
490   }
491 #endif
493   /* nicely printed object */
494   if (object == NULL) {
495     return g_strdup ("(NULL)");
496   }
497   if (*(GType *) ptr == GST_TYPE_CAPS) {
498     return gst_caps_to_string ((GstCaps *) ptr);
499   }
500   if (*(GType *) ptr == GST_TYPE_STRUCTURE) {
501     return gst_structure_to_string ((GstStructure *) ptr);
502   }
503 #ifdef USE_POISONING
504   if (*(guint32 *) ptr == 0xffffffff) {
505     return g_strdup_printf ("<poisoned@%p>", ptr);
506   }
507 #endif
508   if (GST_IS_PAD (object) && GST_OBJECT_NAME (object)) {
509     return g_strdup_printf ("<%s:%s>", GST_DEBUG_PAD_NAME (object));
510   }
511   if (GST_IS_OBJECT (object) && GST_OBJECT_NAME (object)) {
512     return g_strdup_printf ("<%s>", GST_OBJECT_NAME (object));
513   }
514   if (G_IS_OBJECT (object)) {
515     return g_strdup_printf ("<%s@%p>", G_OBJECT_TYPE_NAME (object), object);
516   }
517   if (GST_IS_MESSAGE (object)) {
518     GstMessage *msg = GST_MESSAGE_CAST (object);
519     gchar *s, *ret;
521     if (msg->structure) {
522       s = gst_structure_to_string (msg->structure);
523     } else {
524       s = g_strdup ("(NULL)");
525     }
527     ret = g_strdup_printf ("%s message from element '%s': %s",
528         GST_MESSAGE_TYPE_NAME (msg), (msg->src != NULL) ?
529         GST_ELEMENT_NAME (msg->src) : "(NULL)", s);
530     g_free (s);
531     return ret;
532   }
534   return g_strdup_printf ("%p", ptr);
537 #ifdef HAVE_PRINTF_EXTENSION
539 static gchar *
540 gst_debug_print_segment (gpointer ptr)
542   GstSegment *segment = (GstSegment *) ptr;
544   /* nicely printed segment */
545   if (segment == NULL) {
546     return g_strdup ("(NULL)");
547   }
549   switch (segment->format) {
550     case GST_FORMAT_UNDEFINED:{
551       return g_strdup_printf ("UNDEFINED segment");
552     }
553     case GST_FORMAT_TIME:{
554       return g_strdup_printf ("time segment start=%" GST_TIME_FORMAT
555           ", stop=%" GST_TIME_FORMAT ", last_stop=%" GST_TIME_FORMAT
556           ", duration=%" GST_TIME_FORMAT ", rate=%f, applied_rate=%f"
557           ", flags=0x%02x, time=%" GST_TIME_FORMAT ", accum=%" GST_TIME_FORMAT,
558           GST_TIME_ARGS (segment->start), GST_TIME_ARGS (segment->stop),
559           GST_TIME_ARGS (segment->last_stop), GST_TIME_ARGS (segment->duration),
560           segment->rate, segment->applied_rate, (guint) segment->flags,
561           GST_TIME_ARGS (segment->time), GST_TIME_ARGS (segment->accum));
562     }
563     default:{
564       const gchar *format_name;
566       format_name = gst_format_get_name (segment->format);
567       if (G_UNLIKELY (format_name == NULL))
568         format_name = "(UNKNOWN FORMAT)";
569       return g_strdup_printf ("%s segment start=%" G_GINT64_FORMAT
570           ", stop=%" G_GINT64_FORMAT ", last_stop=%" G_GINT64_FORMAT
571           ", duration=%" G_GINT64_FORMAT ", rate=%f, applied_rate=%f"
572           ", flags=0x%02x, time=%" GST_TIME_FORMAT ", accum=%" GST_TIME_FORMAT,
573           format_name, segment->start, segment->stop, segment->last_stop,
574           segment->duration, segment->rate, segment->applied_rate,
575           (guint) segment->flags, GST_TIME_ARGS (segment->time),
576           GST_TIME_ARGS (segment->accum));
577     }
578   }
581 #endif /* HAVE_PRINTF_EXTENSION */
583 /**
584  * gst_debug_construct_term_color:
585  * @colorinfo: the color info
586  *
587  * Constructs a string that can be used for getting the desired color in color
588  * terminals.
589  * You need to free the string after use.
590  *
591  * Returns: a string containing the color definition
592  */
593 gchar *
594 gst_debug_construct_term_color (guint colorinfo)
596   GString *color;
598   color = g_string_new ("\033[00");
600   if (colorinfo & GST_DEBUG_BOLD) {
601     g_string_append_len (color, ";01", 3);
602   }
603   if (colorinfo & GST_DEBUG_UNDERLINE) {
604     g_string_append_len (color, ";04", 3);
605   }
606   if (colorinfo & GST_DEBUG_FG_MASK) {
607     g_string_append_printf (color, ";3%1d", colorinfo & GST_DEBUG_FG_MASK);
608   }
609   if (colorinfo & GST_DEBUG_BG_MASK) {
610     g_string_append_printf (color, ";4%1d",
611         (colorinfo & GST_DEBUG_BG_MASK) >> 4);
612   }
613   g_string_append_c (color, 'm');
615   return g_string_free (color, FALSE);
618 /**
619  * gst_debug_construct_win_color:
620  * @colorinfo: the color info
621  *
622  * Constructs an integer that can be used for getting the desired color in
623  * windows' terminals (cmd.exe). As there is no mean to underline, we simply
624  * ignore this attribute.
625  *
626  * This function returns 0 on non-windows machines.
627  *
628  * Returns: an integer containing the color definition
629  *
630  * Since: 0.10.23
631  */
632 gint
633 gst_debug_construct_win_color (guint colorinfo)
635   gint color = 0;
636 #ifdef G_OS_WIN32
637   static const guchar ansi_to_win_fg[8] = {
638     0,                          /* black   */
639     FOREGROUND_RED,             /* red     */
640     FOREGROUND_GREEN,           /* green   */
641     FOREGROUND_RED | FOREGROUND_GREEN,  /* yellow  */
642     FOREGROUND_BLUE,            /* blue    */
643     FOREGROUND_RED | FOREGROUND_BLUE,   /* magenta */
644     FOREGROUND_GREEN | FOREGROUND_BLUE, /* cyan    */
645     FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE /* white   */
646   };
647   static const guchar ansi_to_win_bg[8] = {
648     0,
649     BACKGROUND_RED,
650     BACKGROUND_GREEN,
651     BACKGROUND_RED | BACKGROUND_GREEN,
652     BACKGROUND_BLUE,
653     BACKGROUND_RED | BACKGROUND_BLUE,
654     BACKGROUND_GREEN | FOREGROUND_BLUE,
655     BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE
656   };
658   /* we draw black as white, as cmd.exe can only have black bg */
659   if (colorinfo == 0) {
660     return ansi_to_win_fg[7];
661   }
663   if (colorinfo & GST_DEBUG_BOLD) {
664     color |= FOREGROUND_INTENSITY;
665   }
666   if (colorinfo & GST_DEBUG_FG_MASK) {
667     color |= ansi_to_win_fg[colorinfo & GST_DEBUG_FG_MASK];
668   }
669   if (colorinfo & GST_DEBUG_BG_MASK) {
670     color |= ansi_to_win_bg[(colorinfo & GST_DEBUG_BG_MASK) >> 4];
671   }
672 #endif
673   return color;
676 /* width of %p varies depending on actual value of pointer, which can make
677  * output unevenly aligned if multiple threads are involved, hence the %14p
678  * (should really be %18p, but %14p seems a good compromise between too many
679  * white spaces and likely unalignment on my system) */
680 #if defined (GLIB_SIZEOF_VOID_P) && GLIB_SIZEOF_VOID_P == 8
681 #define PTR_FMT "%14p"
682 #else
683 #define PTR_FMT "%10p"
684 #endif
685 #define PID_FMT "%5d"
686 #define CAT_FMT "%20s %s:%d:%s:%s"
688 #ifdef G_OS_WIN32
689 static const guchar levelcolormap[] = {
690   /* GST_LEVEL_NONE */
691   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE,
692   /* GST_LEVEL_ERROR */
693   FOREGROUND_RED | FOREGROUND_INTENSITY,
694   /* GST_LEVEL_WARNING */
695   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY,
696   /* GST_LEVEL_INFO */
697   FOREGROUND_GREEN | FOREGROUND_INTENSITY,
698   /* GST_LEVEL_DEBUG */
699   FOREGROUND_GREEN | FOREGROUND_BLUE,
700   /* GST_LEVEL_LOG */
701   FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE
702 };
704 static const guchar available_colors[6] = {
705   FOREGROUND_RED, FOREGROUND_GREEN, FOREGROUND_RED | FOREGROUND_GREEN,
706   FOREGROUND_BLUE, FOREGROUND_RED | FOREGROUND_BLUE,
707   FOREGROUND_GREEN | FOREGROUND_BLUE,
708 };
709 #else
710 static const gchar *levelcolormap[] = {
711   "\033[37m",                   /* GST_LEVEL_NONE */
712   "\033[31;01m",                /* GST_LEVEL_ERROR */
713   "\033[33;01m",                /* GST_LEVEL_WARNING */
714   "\033[32;01m",                /* GST_LEVEL_INFO */
715   "\033[36m",                   /* GST_LEVEL_DEBUG */
716   "\033[37m"                    /* GST_LEVEL_LOG */
717 };
718 #endif
720 /**
721  * gst_debug_log_default:
722  * @category: category to log
723  * @level: level of the message
724  * @file: the file that emitted the message, usually the __FILE__ identifier
725  * @function: the function that emitted the message
726  * @line: the line from that the message was emitted, usually __LINE__
727  * @message: the actual message
728  * @object: the object this message relates to or NULL if none
729  * @unused: an unused variable, reserved for some user_data.
730  *
731  * The default logging handler used by GStreamer. Logging functions get called
732  * whenever a macro like GST_DEBUG or similar is used. This function outputs the
733  * message and additional info using the glib error handler.
734  * You can add other handlers by using gst_debug_add_log_function().
735  * And you can remove this handler by calling
736  * gst_debug_remove_log_function(gst_debug_log_default);
737  */
738 void
739 gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
740     const gchar * file, const gchar * function, gint line,
741     GObject * object, GstDebugMessage * message, gpointer unused)
743   gint pid;
744   GstClockTime elapsed;
745   gchar *obj = NULL;
746   gboolean free_obj = TRUE;
747   gboolean is_colored;
749   if (level > gst_debug_category_get_threshold (category))
750     return;
752   pid = getpid ();
753   is_colored = gst_debug_is_colored ();
755   elapsed = GST_CLOCK_DIFF (_priv_gst_info_start_time,
756       gst_util_get_timestamp ());
758   if (object) {
759     obj = gst_debug_print_object (object);
760   } else {
761     obj = "\0";
762     free_obj = FALSE;
763   }
765   if (is_colored) {
766 #ifndef G_OS_WIN32
767     gchar *color = NULL;
768     gchar *clear;
769     gchar pidcolor[10];
770     const gchar *levelcolor;
772     color = gst_debug_construct_term_color (gst_debug_category_get_color
773         (category));
774     clear = "\033[00m";
775     g_sprintf (pidcolor, "\033[3%1dm", pid % 6 + 31);
776     levelcolor = levelcolormap[level];
778 #define PRINT_FMT " %s"PID_FMT"%s "PTR_FMT" %s%s%s %s"CAT_FMT"%s %s\n"
779     g_printerr ("%" GST_TIME_FORMAT PRINT_FMT, GST_TIME_ARGS (elapsed),
780         pidcolor, pid, clear, g_thread_self (), levelcolor,
781         gst_debug_level_get_name (level), clear, color,
782         gst_debug_category_get_name (category), file, line, function, obj,
783         clear, gst_debug_message_get (message));
784 #undef PRINT_FMT
785     g_free (color);
786 #else
787     const gint clear = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE;
788 #define SET_COLOR(c) \
789   SetConsoleTextAttribute (GetStdHandle (STD_ERROR_HANDLE), (c));
790     /* timestamp */
791     g_printerr ("%" GST_TIME_FORMAT " ", GST_TIME_ARGS (elapsed));
792     /* pid */
793     SET_COLOR (available_colors[pid % 6]);
794     g_printerr (PID_FMT, pid);
795     /* thread */
796     SET_COLOR (clear);
797     g_printerr (" " PTR_FMT " ", g_thread_self ());
798     /* level */
799     SET_COLOR (levelcolormap[level]);
800     g_printerr ("%s ", gst_debug_level_get_name (level));
801     /* category */
802     SET_COLOR (gst_debug_construct_win_color (gst_debug_category_get_color
803             (category)));
804     g_printerr (CAT_FMT, gst_debug_category_get_name (category),
805         file, line, function, obj);
806     /* message */
807     SET_COLOR (clear);
808     g_printerr (" %s\n", gst_debug_message_get (message));
809 #endif
810   } else {
811 #define PRINT_FMT " "PID_FMT" "PTR_FMT" %s "CAT_FMT" %s\n"
812     g_printerr ("%" GST_TIME_FORMAT PRINT_FMT, GST_TIME_ARGS (elapsed), pid,
813         g_thread_self (), gst_debug_level_get_name (level),
814         gst_debug_category_get_name (category), file, line, function, obj,
815         gst_debug_message_get (message));
816 #undef PRINT_FMT
817   }
819   if (free_obj)
820     g_free (obj);
823 /**
824  * gst_debug_level_get_name:
825  * @level: the level to get the name for
826  *
827  * Get the string representation of a debugging level
828  *
829  * Returns: the name
830  */
831 const gchar *
832 gst_debug_level_get_name (GstDebugLevel level)
834   switch (level) {
835     case GST_LEVEL_NONE:
836       return "";
837     case GST_LEVEL_ERROR:
838       return "ERROR";
839     case GST_LEVEL_WARNING:
840       return "WARN ";
841     case GST_LEVEL_INFO:
842       return "INFO ";
843     case GST_LEVEL_DEBUG:
844       return "DEBUG";
845     case GST_LEVEL_LOG:
846       return "LOG  ";
847     default:
848       g_warning ("invalid level specified for gst_debug_level_get_name");
849       return "";
850   }
853 /**
854  * gst_debug_add_log_function:
855  * @func: the function to use
856  * @data: user data
857  *
858  * Adds the logging function to the list of logging functions.
859  * Be sure to use G_GNUC_NO_INSTRUMENT on that function, it is needed.
860  */
861 void
862 gst_debug_add_log_function (GstLogFunction func, gpointer data)
864   LogFuncEntry *entry;
865   GSList *list;
867   g_return_if_fail (func != NULL);
869   entry = g_new (LogFuncEntry, 1);
870   entry->func = func;
871   entry->user_data = data;
872   /* FIXME: we leak the old list here - other threads might access it right now
873    * in gst_debug_logv. Another solution is to lock the mutex in gst_debug_logv,
874    * but that is waaay costly.
875    * It'd probably be clever to use some kind of RCU here, but I don't know
876    * anything about that.
877    */
878   g_static_mutex_lock (&__log_func_mutex);
879   list = g_slist_copy (__log_functions);
880   __log_functions = g_slist_prepend (list, entry);
881   g_static_mutex_unlock (&__log_func_mutex);
883   GST_DEBUG ("prepended log function %p (user data %p) to log functions",
884       func, data);
887 static gint
888 gst_debug_compare_log_function_by_func (gconstpointer entry, gconstpointer func)
890   gpointer entryfunc = (gpointer) (((LogFuncEntry *) entry)->func);
892   return (entryfunc < func) ? -1 : (entryfunc > func) ? 1 : 0;
895 static gint
896 gst_debug_compare_log_function_by_data (gconstpointer entry, gconstpointer data)
898   gpointer entrydata = ((LogFuncEntry *) entry)->user_data;
900   return (entrydata < data) ? -1 : (entrydata > data) ? 1 : 0;
903 static guint
904 gst_debug_remove_with_compare_func (GCompareFunc func, gpointer data)
906   GSList *found;
907   GSList *new;
908   guint removals = 0;
910   g_static_mutex_lock (&__log_func_mutex);
911   new = __log_functions;
912   while ((found = g_slist_find_custom (new, data, func))) {
913     if (new == __log_functions) {
914       /* make a copy when we have the first hit, so that we modify the copy and
915        * make that the new list later */
916       new = g_slist_copy (new);
917       continue;
918     }
919     g_free (found->data);
920     new = g_slist_delete_link (new, found);
921     removals++;
922   }
923   /* FIXME: We leak the old list here. See _add_log_function for why. */
924   __log_functions = new;
925   g_static_mutex_unlock (&__log_func_mutex);
927   return removals;
930 /**
931  * gst_debug_remove_log_function:
932  * @func: the log function to remove
933  *
934  * Removes all registered instances of the given logging functions.
935  *
936  * Returns: How many instances of the function were removed
937  */
938 guint
939 gst_debug_remove_log_function (GstLogFunction func)
941   guint removals;
943   g_return_val_if_fail (func != NULL, 0);
945   removals =
946       gst_debug_remove_with_compare_func
947       (gst_debug_compare_log_function_by_func, (gpointer) func);
948   GST_DEBUG ("removed log function %p %d times from log function list", func,
949       removals);
951   return removals;
954 /**
955  * gst_debug_remove_log_function_by_data:
956  * @data: user data of the log function to remove
957  *
958  * Removes all registered instances of log functions with the given user data.
959  *
960  * Returns: How many instances of the function were removed
961  */
962 guint
963 gst_debug_remove_log_function_by_data (gpointer data)
965   guint removals;
967   removals =
968       gst_debug_remove_with_compare_func
969       (gst_debug_compare_log_function_by_data, data);
970   GST_DEBUG
971       ("removed %d log functions with user data %p from log function list",
972       removals, data);
974   return removals;
977 /**
978  * gst_debug_set_colored:
979  * @colored: Whether to use colored output or not
980  *
981  * Sets or unsets the use of coloured debugging output.
982  */
983 void
984 gst_debug_set_colored (gboolean colored)
986   g_atomic_int_set (&__use_color, colored ? 1 : 0);
989 /**
990  * gst_debug_is_colored:
991  *
992  * Checks if the debugging output should be colored.
993  *
994  * Returns: TRUE, if the debug output should be colored.
995  */
996 gboolean
997 gst_debug_is_colored (void)
999   return g_atomic_int_get (&__use_color) == 0 ? FALSE : TRUE;
1002 /**
1003  * gst_debug_set_active:
1004  * @active: Whether to use debugging output or not
1005  *
1006  * If activated, debugging messages are sent to the debugging
1007  * handlers.
1008  * It makes sense to deactivate it for speed issues.
1009  * <note><para>This function is not threadsafe. It makes sense to only call it
1010  * during initialization.</para></note>
1011  */
1012 void
1013 gst_debug_set_active (gboolean active)
1015   __gst_debug_enabled = active;
1016   if (active)
1017     __gst_debug_min = GST_LEVEL_COUNT;
1018   else
1019     __gst_debug_min = GST_LEVEL_NONE;
1022 /**
1023  * gst_debug_is_active:
1024  *
1025  * Checks if debugging output is activated.
1026  *
1027  * Returns: TRUE, if debugging is activated
1028  */
1029 gboolean
1030 gst_debug_is_active (void)
1032   return __gst_debug_enabled;
1035 /**
1036  * gst_debug_set_default_threshold:
1037  * @level: level to set
1038  *
1039  * Sets the default threshold to the given level and updates all categories to
1040  * use this threshold.
1041  */
1042 void
1043 gst_debug_set_default_threshold (GstDebugLevel level)
1045   g_atomic_int_set (&__default_level, level);
1046   gst_debug_reset_all_thresholds ();
1049 /**
1050  * gst_debug_get_default_threshold:
1051  *
1052  * Returns the default threshold that is used for new categories.
1053  *
1054  * Returns: the default threshold level
1055  */
1056 GstDebugLevel
1057 gst_debug_get_default_threshold (void)
1059   return (GstDebugLevel) g_atomic_int_get (&__default_level);
1062 static void
1063 gst_debug_reset_threshold (gpointer category, gpointer unused)
1065   GstDebugCategory *cat = (GstDebugCategory *) category;
1066   GSList *walk;
1068   g_static_mutex_lock (&__level_name_mutex);
1069   walk = __level_name;
1070   while (walk) {
1071     LevelNameEntry *entry = walk->data;
1073     walk = g_slist_next (walk);
1074     if (g_pattern_match_string (entry->pat, cat->name)) {
1075       GST_LOG ("category %s matches pattern %p - gets set to level %d",
1076           cat->name, entry->pat, entry->level);
1077       gst_debug_category_set_threshold (cat, entry->level);
1078       goto exit;
1079     }
1080   }
1081   gst_debug_category_set_threshold (cat, gst_debug_get_default_threshold ());
1083 exit:
1084   g_static_mutex_unlock (&__level_name_mutex);
1087 static void
1088 gst_debug_reset_all_thresholds (void)
1090   g_static_mutex_lock (&__cat_mutex);
1091   g_slist_foreach (__categories, gst_debug_reset_threshold, NULL);
1092   g_static_mutex_unlock (&__cat_mutex);
1095 static void
1096 for_each_threshold_by_entry (gpointer data, gpointer user_data)
1098   GstDebugCategory *cat = (GstDebugCategory *) data;
1099   LevelNameEntry *entry = (LevelNameEntry *) user_data;
1101   if (g_pattern_match_string (entry->pat, cat->name)) {
1102     GST_LOG ("category %s matches pattern %p - gets set to level %d",
1103         cat->name, entry->pat, entry->level);
1104     gst_debug_category_set_threshold (cat, entry->level);
1105   }
1108 /**
1109  * gst_debug_set_threshold_for_name:
1110  * @name: name of the categories to set
1111  * @level: level to set them to
1112  *
1113  * Sets all categories which match the given glob style pattern to the given
1114  * level.
1115  */
1116 void
1117 gst_debug_set_threshold_for_name (const gchar * name, GstDebugLevel level)
1119   GPatternSpec *pat;
1120   LevelNameEntry *entry;
1122   g_return_if_fail (name != NULL);
1124   pat = g_pattern_spec_new (name);
1125   entry = g_new (LevelNameEntry, 1);
1126   entry->pat = pat;
1127   entry->level = level;
1128   g_static_mutex_lock (&__level_name_mutex);
1129   __level_name = g_slist_prepend (__level_name, entry);
1130   g_static_mutex_unlock (&__level_name_mutex);
1131   g_static_mutex_lock (&__cat_mutex);
1132   g_slist_foreach (__categories, for_each_threshold_by_entry, entry);
1133   g_static_mutex_unlock (&__cat_mutex);
1136 /**
1137  * gst_debug_unset_threshold_for_name:
1138  * @name: name of the categories to set
1139  *
1140  * Resets all categories with the given name back to the default level.
1141  */
1142 void
1143 gst_debug_unset_threshold_for_name (const gchar * name)
1145   GSList *walk;
1146   GPatternSpec *pat;
1148   g_return_if_fail (name != NULL);
1150   pat = g_pattern_spec_new (name);
1151   g_static_mutex_lock (&__level_name_mutex);
1152   walk = __level_name;
1153   /* improve this if you want, it's mighty slow */
1154   while (walk) {
1155     LevelNameEntry *entry = walk->data;
1157     if (g_pattern_spec_equal (entry->pat, pat)) {
1158       __level_name = g_slist_remove_link (__level_name, walk);
1159       g_pattern_spec_free (entry->pat);
1160       g_free (entry);
1161       g_slist_free_1 (walk);
1162       walk = __level_name;
1163     }
1164   }
1165   g_static_mutex_unlock (&__level_name_mutex);
1166   g_pattern_spec_free (pat);
1167   gst_debug_reset_all_thresholds ();
1170 GstDebugCategory *
1171 _gst_debug_category_new (const gchar * name, guint color,
1172     const gchar * description)
1174   GstDebugCategory *cat;
1176   g_return_val_if_fail (name != NULL, NULL);
1178   cat = g_new (GstDebugCategory, 1);
1179   cat->name = g_strdup (name);
1180   cat->color = color;
1181   if (description != NULL) {
1182     cat->description = g_strdup (description);
1183   } else {
1184     cat->description = g_strdup ("no description");
1185   }
1186   g_atomic_int_set (&cat->threshold, 0);
1187   gst_debug_reset_threshold (cat, NULL);
1189   /* add to category list */
1190   g_static_mutex_lock (&__cat_mutex);
1191   __categories = g_slist_prepend (__categories, cat);
1192   g_static_mutex_unlock (&__cat_mutex);
1194   return cat;
1197 /**
1198  * gst_debug_category_free:
1199  * @category: #GstDebugCategory to free.
1200  *
1201  * Removes and frees the category and all associated resources.
1202  */
1203 void
1204 gst_debug_category_free (GstDebugCategory * category)
1206   if (category == NULL)
1207     return;
1209   /* remove from category list */
1210   g_static_mutex_lock (&__cat_mutex);
1211   __categories = g_slist_remove (__categories, category);
1212   g_static_mutex_unlock (&__cat_mutex);
1214   g_free ((gpointer) category->name);
1215   g_free ((gpointer) category->description);
1216   g_free (category);
1219 /**
1220  * gst_debug_category_set_threshold:
1221  * @category: a #GstDebugCategory to set threshold of.
1222  * @level: the #GstDebugLevel threshold to set.
1223  *
1224  * Sets the threshold of the category to the given level. Debug information will
1225  * only be output if the threshold is lower or equal to the level of the
1226  * debugging message.
1227  * <note><para>
1228  * Do not use this function in production code, because other functions may
1229  * change the threshold of categories as side effect. It is however a nice
1230  * function to use when debugging (even from gdb).
1231  * </para></note>
1232  */
1233 void
1234 gst_debug_category_set_threshold (GstDebugCategory * category,
1235     GstDebugLevel level)
1237   g_return_if_fail (category != NULL);
1239   if (level > __gst_debug_min) {
1240     __gst_debug_enabled = TRUE;
1241     __gst_debug_min = level;
1242   }
1244   g_atomic_int_set (&category->threshold, level);
1247 /**
1248  * gst_debug_category_reset_threshold:
1249  * @category: a #GstDebugCategory to reset threshold of.
1250  *
1251  * Resets the threshold of the category to the default level. Debug information
1252  * will only be output if the threshold is lower or equal to the level of the
1253  * debugging message.
1254  * Use this function to set the threshold back to where it was after using
1255  * gst_debug_category_set_threshold().
1256  */
1257 void
1258 gst_debug_category_reset_threshold (GstDebugCategory * category)
1260   gst_debug_reset_threshold (category, NULL);
1263 /**
1264  * gst_debug_category_get_threshold:
1265  * @category: a #GstDebugCategory to get threshold of.
1266  *
1267  * Returns the threshold of a #GstDebugCategory.
1268  *
1269  * Returns: the #GstDebugLevel that is used as threshold.
1270  */
1271 GstDebugLevel
1272 gst_debug_category_get_threshold (GstDebugCategory * category)
1274   return g_atomic_int_get (&category->threshold);
1277 /**
1278  * gst_debug_category_get_name:
1279  * @category: a #GstDebugCategory to get name of.
1280  *
1281  * Returns the name of a debug category.
1282  *
1283  * Returns: the name of the category.
1284  */
1285 const gchar *
1286 gst_debug_category_get_name (GstDebugCategory * category)
1288   return category->name;
1291 /**
1292  * gst_debug_category_get_color:
1293  * @category: a #GstDebugCategory to get the color of.
1294  *
1295  * Returns the color of a debug category used when printing output in this
1296  * category.
1297  *
1298  * Returns: the color of the category.
1299  */
1300 guint
1301 gst_debug_category_get_color (GstDebugCategory * category)
1303   return category->color;
1306 /**
1307  * gst_debug_category_get_description:
1308  * @category: a #GstDebugCategory to get the description of.
1309  *
1310  * Returns the description of a debug category.
1311  *
1312  * Returns: the description of the category.
1313  */
1314 const gchar *
1315 gst_debug_category_get_description (GstDebugCategory * category)
1317   return category->description;
1320 /**
1321  * gst_debug_get_all_categories:
1322  *
1323  * Returns a snapshot of a all categories that are currently in use . This list
1324  * may change anytime.
1325  * The caller has to free the list after use.
1326  *
1327  * Returns: the list of categories
1328  */
1329 GSList *
1330 gst_debug_get_all_categories (void)
1332   GSList *ret;
1334   g_static_mutex_lock (&__cat_mutex);
1335   ret = g_slist_copy (__categories);
1336   g_static_mutex_unlock (&__cat_mutex);
1338   return ret;
1341 /*** FUNCTION POINTERS ********************************************************/
1343 static GHashTable *__gst_function_pointers;     /* NULL */
1344 static GStaticMutex __dbg_functions_mutex = G_STATIC_MUTEX_INIT;
1346 const gchar *
1347 _gst_debug_nameof_funcptr (GstDebugFuncPtr ptr)
1348     G_GNUC_NO_INSTRUMENT;
1350 /* This function MUST NOT return NULL */
1351      const gchar *_gst_debug_nameof_funcptr (GstDebugFuncPtr func)
1353   gchar *ptrname;
1355 #ifdef HAVE_DLADDR
1356   Dl_info dl_info;
1357 #endif
1359   if (G_UNLIKELY (func == NULL))
1360     return "(NULL)";
1362   g_static_mutex_lock (&__dbg_functions_mutex);
1363   if (G_LIKELY (__gst_function_pointers)) {
1364     ptrname = g_hash_table_lookup (__gst_function_pointers, (gpointer) func);
1365     g_static_mutex_unlock (&__dbg_functions_mutex);
1366     if (G_LIKELY (ptrname))
1367       return ptrname;
1368   } else {
1369     g_static_mutex_unlock (&__dbg_functions_mutex);
1370   }
1371   /* we need to create an entry in the hash table for this one so we don't leak
1372    * the name */
1373 #ifdef HAVE_DLADDR
1374   if (dladdr ((gpointer) func, &dl_info) && dl_info.dli_sname) {
1375     gchar *name = g_strdup (dl_info.dli_sname);
1377     _gst_debug_register_funcptr (func, name);
1378     return name;
1379   } else
1380 #endif
1381   {
1382     gchar *name = g_strdup_printf ("%p", (gpointer) func);
1384     _gst_debug_register_funcptr (func, name);
1385     return name;
1386   }
1389 void
1390 _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
1392   gpointer ptr = (gpointer) func;
1394   g_static_mutex_lock (&__dbg_functions_mutex);
1396   if (!__gst_function_pointers)
1397     __gst_function_pointers = g_hash_table_new (g_direct_hash, g_direct_equal);
1398   if (!g_hash_table_lookup (__gst_function_pointers, ptr))
1399     g_hash_table_insert (__gst_function_pointers, ptr, (gpointer) ptrname);
1401   g_static_mutex_unlock (&__dbg_functions_mutex);
1404 /*** PRINTF EXTENSIONS ********************************************************/
1406 #ifdef HAVE_PRINTF_EXTENSION
1407 static int
1408 _gst_info_printf_extension_ptr (FILE * stream, const struct printf_info *info,
1409     const void *const *args)
1411   char *buffer;
1412   int len;
1413   void *ptr;
1415   buffer = NULL;
1416   ptr = *(void **) args[0];
1418   buffer = gst_debug_print_object (ptr);
1419   len = fprintf (stream, "%*s", (info->left ? -info->width : info->width),
1420       buffer);
1422   g_free (buffer);
1423   return len;
1426 static int
1427 _gst_info_printf_extension_segment (FILE * stream,
1428     const struct printf_info *info, const void *const *args)
1430   char *buffer;
1431   int len;
1432   void *ptr;
1434   buffer = NULL;
1435   ptr = *(void **) args[0];
1437   buffer = gst_debug_print_segment (ptr);
1438   len = fprintf (stream, "%*s", (info->left ? -info->width : info->width),
1439       buffer);
1441   g_free (buffer);
1442   return len;
1445 static int
1446 _gst_info_printf_extension_arginfo (const struct printf_info *info, size_t n,
1447     int *argtypes)
1449   if (n > 0)
1450     argtypes[0] = PA_POINTER;
1451   return 1;
1453 #endif /* HAVE_PRINTF_EXTENSION */
1455 #else /* !GST_DISABLE_GST_DEBUG */
1456 guint
1457 gst_debug_remove_log_function (GstLogFunction func)
1459   return 0;
1462 guint
1463 gst_debug_remove_log_function_by_data (gpointer data)
1465   return 0;
1468 gboolean
1469 _priv_gst_in_valgrind (void)
1471   return FALSE;
1474 #endif /* GST_DISABLE_GST_DEBUG */
1477 #ifdef GST_ENABLE_FUNC_INSTRUMENTATION
1478 /* FIXME make this thread specific */
1479 static GSList *stack_trace = NULL;
1481 void
1482 __cyg_profile_func_enter (void *this_fn, void *call_site)
1483     G_GNUC_NO_INSTRUMENT;
1484      void __cyg_profile_func_enter (void *this_fn, void *call_site)
1486   gchar *name = _gst_debug_nameof_funcptr (this_fn);
1487   gchar *site = _gst_debug_nameof_funcptr (call_site);
1489   GST_CAT_DEBUG (GST_CAT_CALL_TRACE, "entering function %s from %s", name,
1490       site);
1491   stack_trace =
1492       g_slist_prepend (stack_trace, g_strdup_printf ("%8p in %s from %p (%s)",
1493           this_fn, name, call_site, site));
1495   g_free (name);
1496   g_free (site);
1499 void
1500 __cyg_profile_func_exit (void *this_fn, void *call_site)
1501     G_GNUC_NO_INSTRUMENT;
1502      void __cyg_profile_func_exit (void *this_fn, void *call_site)
1504   gchar *name = _gst_debug_nameof_funcptr (this_fn);
1506   GST_CAT_DEBUG (GST_CAT_CALL_TRACE, "leaving function %s", name);
1507   g_free (stack_trace->data);
1508   stack_trace = g_slist_delete_link (stack_trace, stack_trace);
1510   g_free (name);
1513 /**
1514  * gst_debug_print_stack_trace:
1515  *
1516  * If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktrace is available for
1517  * gstreamer code, which can be printed with this function.
1518  */
1519 void
1520 gst_debug_print_stack_trace (void)
1522   GSList *walk = stack_trace;
1523   gint count = 0;
1525   if (walk)
1526     walk = g_slist_next (walk);
1528   while (walk) {
1529     gchar *name = (gchar *) walk->data;
1531     g_print ("#%-2d %s\n", count++, name);
1533     walk = g_slist_next (walk);
1534   }
1536 #else
1537 void
1538 gst_debug_print_stack_trace (void)
1540   /* nothing because it's compiled out */
1543 #endif /* GST_ENABLE_FUNC_INSTRUMENTATION */