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>
7 * gstinfo.c: debugging functions
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.
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.
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.
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.
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.
35 * The debugging subsystem works only after GStreamer has been initialized
36 * - for example by calling gst_init().
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
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,
52 * the variables and set the default category.
54 * GST_DEBUG_CATEGORY_STATIC (my_category); // define category (statically)
55 * #define GST_CAT_DEFAULT my_category // set as default
57 * After that you only need to initialize the category.
59 * GST_DEBUG_CATEGORY_INIT (my_category, "my category",
60 * 0, "This is my very own");
62 * Initialization must be done before the category is used first.
64 * in their plugin_init function, libraries and applications should do that
65 * during their initialization.
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
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.
74 * subsystem was compiled out, #GST_DISABLE_GST_DEBUG is defined in
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.
81 * Please note that there are naming conventions for the names of debugging
82 * categories. These are explained at GST_DEBUG_CATEGORY_INIT().
86 #include "gst_private.h"
89 #undef gst_debug_remove_log_function
90 #undef gst_debug_add_log_function
92 #ifndef GST_DISABLE_GST_DEBUG
97 #include <stdio.h> /* fprintf */
98 #include <glib/gstdio.h>
101 # include <unistd.h> /* getpid on UNIX */
103 #ifdef HAVE_PROCESS_H
104 # include <process.h> /* getpid on win32 */
106 #include <string.h> /* G_VA_COPY */
108 # define WIN32_LEAN_AND_MEAN /* prevents from including too many things */
109 # include <windows.h> /* GetStdHandle, windows console */
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"
119 #ifdef HAVE_VALGRIND_VALGRIND_H
120 # include <valgrind/valgrind.h>
122 #include <glib/gprintf.h> /* g_sprintf */
124 /* our own printf implementation with custom extensions to %p for caps etc. */
125 #include "printf/printf.h"
126 #include "printf/printf-extension.h"
128 static char *gst_info_printf_pointer_extension_func (const char *format,
131 #endif /* !GST_DISABLE_GST_DEBUG */
133 extern gboolean gst_is_initialized (void);
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)
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;
144 GstDebugCategory *GST_CAT_DEFAULT = NULL;
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;
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;
181 #endif /* !defined(GST_DISABLE_GST_DEBUG) || !defined(GST_REMOVE_DISABLED) */
183 #ifndef GST_DISABLE_GST_DEBUG
185 /* underscore is to prevent conflict with GST_CAT_DEBUG define */
186 GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
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
192 GstClockTime _priv_gst_info_start_time;
196 #include <rld_interface.h>
197 typedef struct DL_INFO
199 const char *dli_fname;
201 const char *dli_sname;
205 long dli_reserved[4];
209 #define _RLD_DLADDR 14
210 int dladdr (void *address, Dl_info * dl);
213 dladdr (void *address, Dl_info * dl)
217 v = _rld_new_interface (_RLD_DLADDR, address, dl);
223 static void gst_debug_reset_threshold (gpointer category, gpointer unused);
224 static void gst_debug_reset_all_thresholds (void);
226 struct _GstDebugMessage
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;
243 /* list of all categories */
244 static GMutex __cat_mutex;
245 static GSList *__categories = NULL;
247 static GstDebugCategory *_gst_debug_get_category_locked (const gchar * name);
250 /* all registered debug handlers */
255 GDestroyNotify notify;
258 static GMutex __log_func_mutex;
259 static GSList *__log_functions = NULL;
261 #define PRETTY_TAGS_DEFAULT TRUE
262 static gboolean pretty_tags = PRETTY_TAGS_DEFAULT;
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;
267 /* FIXME: export this? */
269 _priv_gst_in_valgrind (void)
277 in_valgrind = GST_VG_UNCHECKED;
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;
285 GST_CAT_LOG (GST_CAT_GST_INIT, "not doing extra valgrind stuff");
286 in_valgrind = GST_VG_NO_VALGRIND;
289 in_valgrind = GST_VG_NO_VALGRIND;
291 g_assert (in_valgrind == GST_VG_NO_VALGRIND ||
292 in_valgrind == GST_VG_INSIDE);
294 return (in_valgrind == GST_VG_INSIDE);
297 /* Initialize the debugging system */
299 _priv_gst_debug_init (void)
304 env = g_getenv ("GST_DEBUG_FILE");
305 if (env != NULL && *env != '\0') {
306 if (strcmp (env, "-") == 0) {
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,
320 /* get time we started for debugging messages */
321 _priv_gst_info_start_time = gst_util_get_timestamp ();
323 __gst_printf_pointer_extension_set_func
324 (gst_info_printf_pointer_extension_func);
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");
332 gst_debug_add_log_function (gst_debug_log_default, log_file, NULL);
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);
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);
394 /* print out the valgrind message if we're in valgrind */
395 _priv_gst_in_valgrind ();
397 env = g_getenv ("GST_DEBUG_OPTIONS");
399 if (strstr (env, "full_tags") || strstr (env, "full-tags"))
401 else if (strstr (env, "pretty_tags") || strstr (env, "pretty-tags"))
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");
409 gst_debug_set_color_mode_from_string (env);
411 env = g_getenv ("GST_DEBUG");
413 gst_debug_set_threshold_from_string (env, FALSE);
417 /* we can't do this further above, because we initialize the GST_CAT_DEFAULT struct */
418 #define GST_CAT_DEFAULT _GST_CAT_DEBUG
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,
429 * @format: a printf style format string
430 * @...: optional arguments for the format
432 * Logs the given message using the currently registered debugging handlers.
435 gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
436 const gchar * file, const gchar * function, gint line,
437 GObject * object, const gchar * format, ...)
441 va_start (var_args, format);
442 gst_debug_log_valist (category, level, file, function, line, object, format,
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)
451 register const gchar *base;
453 base = strrchr (file_name, G_DIR_SEPARATOR);
456 const gchar *q = strrchr (file_name, '/');
457 if (base == NULL || (q != NULL && q > base))
464 if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
465 return file_name + 2;
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,
479 * @format: a printf style format string
480 * @args: optional arguments for the format
482 * Logs the given message using the currently registered debugging handlers.
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)
489 GstDebugMessage message;
493 g_return_if_fail (category != NULL);
495 if (level > gst_debug_category_get_threshold (category))
498 g_return_if_fail (file != NULL);
499 g_return_if_fail (function != NULL);
500 g_return_if_fail (format != NULL);
502 message.message = NULL;
503 message.format = format;
504 G_VA_COPY (message.arguments, args);
506 handler = __log_functions;
508 entry = handler->data;
509 handler = g_slist_next (handler);
510 entry->func (category, level, file, function, line, object, &message,
513 g_free (message.message);
514 va_end (message.arguments);
518 * gst_debug_message_get:
519 * @message: a debug message
521 * Gets the string representation of a #GstDebugMessage. This function is used
522 * in debug handlers to extract the message.
524 * Returns: the string representation of a #GstDebugMessage.
527 gst_debug_message_get (GstDebugMessage * message)
529 if (message->message == NULL) {
532 len = __gst_vasprintf (&message->message, message->format,
536 message->message = NULL;
538 return message->message;
541 #define MAX_BUFFER_DUMP_STRING_LEN 100
543 /* structure_to_pretty_string:
544 * @str: a serialized #GstStructure
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
550 * Returns: the filtered string
553 prettify_structure_string (gchar * str)
555 gchar *pos = str, *end;
557 while ((pos = strstr (pos, "(buffer)"))) {
560 pos += strlen ("(buffer)");
561 for (end = pos; *end != '\0' && *end != ';' && *end != ' '; ++end)
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;
575 static inline gchar *
576 gst_info_structure_to_string (const GstStructure * 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);
588 static inline gchar *
589 gst_info_describe_buffer (GstBuffer * buffer)
591 const gchar *offset_str = "none";
592 const gchar *offset_end_str = "none";
593 gchar offset_buf[32], offset_end_buf[32];
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;
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;
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));
616 static inline gchar *
617 gst_info_describe_event (GstEvent * event)
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),
630 static inline gchar *
631 gst_info_describe_message (GstMessage * message)
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)"),
646 static inline gchar *
647 gst_info_describe_query (GstQuery * query)
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)"));
659 gst_debug_print_object (gpointer ptr)
661 GObject *object = (GObject *) ptr;
664 /* This is a cute trick to detect unmapped memory, but is unportable,
665 * slow, screws around with madvise, and not actually that useful. */
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);
676 /* nicely printed object */
677 if (object == NULL) {
678 return g_strdup ("(NULL)");
680 if (GST_IS_CAPS (ptr)) {
681 return gst_caps_to_string ((const GstCaps *) ptr);
683 if (GST_IS_STRUCTURE (ptr)) {
684 return gst_info_structure_to_string ((const GstStructure *) ptr);
686 if (*(GType *) ptr == GST_TYPE_CAPS_FEATURES) {
687 return gst_caps_features_to_string ((const GstCapsFeatures *) ptr);
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);
696 if (*(GType *) ptr == GST_TYPE_DATE_TIME) {
697 return __gst_date_time_serialize ((GstDateTime *) ptr, TRUE);
699 if (GST_IS_BUFFER (ptr)) {
700 return gst_info_describe_buffer (GST_BUFFER_CAST (ptr));
703 if (*(guint32 *) ptr == 0xffffffff) {
704 return g_strdup_printf ("<poisoned@%p>", ptr);
707 if (GST_IS_MESSAGE (object)) {
708 return gst_info_describe_message (GST_MESSAGE_CAST (object));
710 if (GST_IS_QUERY (object)) {
711 return gst_info_describe_query (GST_QUERY_CAST (object));
713 if (GST_IS_EVENT (object)) {
714 return gst_info_describe_event (GST_EVENT_CAST (object));
716 if (GST_IS_CONTEXT (object)) {
717 GstContext *context = GST_CONTEXT_CAST (object);
720 const GstStructure *structure;
722 type = gst_context_get_context_type (context);
723 structure = gst_context_get_structure (context);
725 s = gst_info_structure_to_string (structure);
727 ret = g_strdup_printf ("context '%s'='%s'", type, s);
731 if (GST_IS_PAD (object) && GST_OBJECT_NAME (object)) {
732 return g_strdup_printf ("<%s:%s>", GST_DEBUG_PAD_NAME (object));
734 if (GST_IS_OBJECT (object) && GST_OBJECT_NAME (object)) {
735 return g_strdup_printf ("<%s>", GST_OBJECT_NAME (object));
737 if (G_IS_OBJECT (object)) {
738 return g_strdup_printf ("<%s@%p>", G_OBJECT_TYPE_NAME (object), object);
741 return g_strdup_printf ("%p", ptr);
745 gst_debug_print_segment (gpointer ptr)
747 GstSegment *segment = (GstSegment *) ptr;
749 /* nicely printed segment */
750 if (segment == NULL) {
751 return g_strdup ("(NULL)");
754 switch (segment->format) {
755 case GST_FORMAT_UNDEFINED:{
756 return g_strdup_printf ("UNDEFINED segment");
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));
770 const gchar *format_name;
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);
788 gst_info_printf_pointer_extension_func (const char *format, void *ptr)
792 if (format[0] == 'p' && format[1] == '\a') {
794 case 'A': /* GST_PTR_FORMAT */
795 s = gst_debug_print_object (ptr);
797 case 'B': /* GST_SEGMENT_FORMAT */
798 s = gst_debug_print_segment (ptr);
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 */
807 s = g_strdup_printf ("%p", ptr);
813 * gst_debug_construct_term_color:
814 * @colorinfo: the color info
816 * Constructs a string that can be used for getting the desired color in color
818 * You need to free the string after use.
820 * Returns: (transfer full) (type gchar*): a string containing the color
824 gst_debug_construct_term_color (guint colorinfo)
828 color = g_string_new ("\033[00");
830 if (colorinfo & GST_DEBUG_BOLD) {
831 g_string_append_len (color, ";01", 3);
833 if (colorinfo & GST_DEBUG_UNDERLINE) {
834 g_string_append_len (color, ";04", 3);
836 if (colorinfo & GST_DEBUG_FG_MASK) {
837 g_string_append_printf (color, ";3%1d", colorinfo & GST_DEBUG_FG_MASK);
839 if (colorinfo & GST_DEBUG_BG_MASK) {
840 g_string_append_printf (color, ";4%1d",
841 (colorinfo & GST_DEBUG_BG_MASK) >> 4);
843 g_string_append_c (color, 'm');
845 return g_string_free (color, FALSE);
849 * gst_debug_construct_win_color:
850 * @colorinfo: the color info
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.
856 * This function returns 0 on non-windows machines.
858 * Returns: an integer containing the color definition
861 gst_debug_construct_win_color (guint colorinfo)
865 static const guchar ansi_to_win_fg[8] = {
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 */
875 static const guchar ansi_to_win_bg[8] = {
879 BACKGROUND_RED | BACKGROUND_GREEN,
881 BACKGROUND_RED | BACKGROUND_BLUE,
882 BACKGROUND_GREEN | FOREGROUND_BLUE,
883 BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE
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];
890 if (colorinfo & GST_DEBUG_UNDERLINE) {
891 color |= BACKGROUND_INTENSITY;
893 if (colorinfo & GST_DEBUG_BOLD) {
894 color |= FOREGROUND_INTENSITY;
896 if (colorinfo & GST_DEBUG_FG_MASK) {
897 color |= ansi_to_win_fg[colorinfo & GST_DEBUG_FG_MASK];
899 if (colorinfo & GST_DEBUG_BG_MASK) {
900 color |= ansi_to_win_bg[(colorinfo & GST_DEBUG_BG_MASK) >> 4];
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"
913 #define PTR_FMT "%10p"
915 #define PID_FMT "%5d"
916 #define CAT_FMT "%20s %s:%d:%s:%s"
919 static const guchar levelcolormap_w32[GST_LEVEL_COUNT] = {
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,
927 FOREGROUND_GREEN | FOREGROUND_INTENSITY,
928 /* GST_LEVEL_DEBUG */
929 FOREGROUND_GREEN | FOREGROUND_BLUE,
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 */
938 /* GST_LEVEL_MEMDUMP */
939 FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE
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,
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 */
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,
971 * @user_data: the FILE* to log to
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
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);
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)
989 GstClockTime elapsed;
991 GstDebugColorMode color_mode;
992 FILE *log_file = user_data ? user_data : stderr;
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
1000 if (c == '.' || c == '/' || c == '\\' || (c != '\0' && file[1] == ':')) {
1001 file = gst_path_basename (file);
1005 color_mode = gst_debug_get_color_mode ();
1008 obj = gst_debug_print_object (object);
1013 elapsed = GST_CLOCK_DIFF (_priv_gst_info_start_time,
1014 gst_util_get_timestamp ());
1016 if (color_mode != GST_DEBUG_COLOR_MODE_OFF) {
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
1021 static GMutex win_print_mutex;
1022 g_mutex_lock (&win_print_mutex);
1023 if (color_mode == GST_DEBUG_COLOR_MODE_UNIX) {
1025 /* colors, non-windows */
1026 gchar *color = NULL;
1029 const gchar *levelcolor;
1031 color = gst_debug_construct_term_color (gst_debug_category_get_color
1034 g_sprintf (pidcolor, "\033[3%1dm", pid % 6 + 31);
1035 levelcolor = levelcolormap[level];
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));
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)); \
1055 fprintf (log_file, "%" GST_TIME_FORMAT " ", GST_TIME_ARGS (elapsed));
1058 SET_COLOR (available_colors[pid % G_N_ELEMENTS (available_colors)]);
1059 fprintf (log_file, PID_FMT, pid);
1063 fprintf (log_file, " " PTR_FMT " ", g_thread_self ());
1066 SET_COLOR (levelcolormap_w32[level]);
1067 fprintf (log_file, "%s ", gst_debug_level_get_name (level));
1070 SET_COLOR (gst_debug_construct_win_color (gst_debug_category_get_color
1072 fprintf (log_file, CAT_FMT, gst_debug_category_get_name (category),
1073 file, line, function, obj);
1077 fprintf (log_file, " %s\n", gst_debug_message_get (message));
1080 g_mutex_unlock (&win_print_mutex);
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));
1098 * gst_debug_level_get_name:
1099 * @level: the level to get the name for
1101 * Get the string representation of a debugging level
1106 gst_debug_level_get_name (GstDebugLevel level)
1109 case GST_LEVEL_NONE:
1111 case GST_LEVEL_ERROR:
1113 case GST_LEVEL_WARNING:
1115 case GST_LEVEL_INFO:
1117 case GST_LEVEL_DEBUG:
1121 case GST_LEVEL_FIXME:
1123 case GST_LEVEL_TRACE:
1125 case GST_LEVEL_MEMDUMP:
1128 g_warning ("invalid level specified for gst_debug_level_get_name");
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
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.
1143 gst_debug_add_log_function (GstLogFunction func, gpointer user_data,
1144 GDestroyNotify notify)
1146 LogFuncEntry *entry;
1150 func = gst_debug_log_default;
1152 entry = g_slice_new (LogFuncEntry);
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.
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);
1167 if (gst_is_initialized ())
1168 GST_DEBUG ("prepended log function %p (user data %p) to log functions",
1173 gst_debug_compare_log_function_by_func (gconstpointer entry, gconstpointer func)
1175 gpointer entryfunc = (gpointer) (((LogFuncEntry *) entry)->func);
1177 return (entryfunc < func) ? -1 : (entryfunc > func) ? 1 : 0;
1181 gst_debug_compare_log_function_by_data (gconstpointer entry, gconstpointer data)
1183 gpointer entrydata = ((LogFuncEntry *) entry)->user_data;
1185 return (entrydata < data) ? -1 : (entrydata > data) ? 1 : 0;
1189 gst_debug_remove_with_compare_func (GCompareFunc func, gpointer data)
1192 GSList *new, *cleanup = NULL;
1195 g_mutex_lock (&__log_func_mutex);
1196 new = __log_functions;
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);
1205 cleanup = g_slist_prepend (cleanup, found->data);
1206 new = g_slist_delete_link (new, found);
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);
1214 LogFuncEntry *entry = cleanup->data;
1217 entry->notify (entry->user_data);
1219 g_slice_free (LogFuncEntry, entry);
1220 cleanup = g_slist_delete_link (cleanup, cleanup);
1226 * gst_debug_remove_log_function:
1227 * @func: (scope call): the log function to remove
1229 * Removes all registered instances of the given logging functions.
1231 * Returns: How many instances of the function were removed
1234 gst_debug_remove_log_function (GstLogFunction func)
1239 func = gst_debug_log_default;
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,
1252 * gst_debug_remove_log_function_by_data:
1253 * @data: user data of the log function to remove
1255 * Removes all registered instances of log functions with the given user data.
1257 * Returns: How many instances of the function were removed
1260 gst_debug_remove_log_function_by_data (gpointer data)
1265 gst_debug_remove_with_compare_func
1266 (gst_debug_compare_log_function_by_data, data);
1268 if (gst_is_initialized ())
1270 ("removed %d log functions with user data %p from log function list",
1277 * gst_debug_set_colored:
1278 * @colored: Whether to use colored output or not
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.
1284 * This function may be called before gst_init().
1287 gst_debug_set_colored (gboolean colored)
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);
1295 * gst_debug_set_color_mode:
1296 * @mode: The coloring mode for debug output. See @GstDebugColorMode.
1298 * Changes the coloring mode for debug output.
1300 * This function may be called before gst_init().
1305 gst_debug_set_color_mode (GstDebugColorMode mode)
1307 g_atomic_int_set (&__use_color, mode);
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".
1315 * Changes the coloring mode for debug output.
1317 * This function may be called before gst_init().
1322 gst_debug_set_color_mode_from_string (const gchar * mode)
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);
1333 * gst_debug_is_colored:
1335 * Checks if the debugging output should be colored.
1337 * Returns: %TRUE, if the debug output should be colored.
1340 gst_debug_is_colored (void)
1342 GstDebugColorMode mode = g_atomic_int_get (&__use_color);
1343 return (mode == GST_DEBUG_COLOR_MODE_UNIX || mode == GST_DEBUG_COLOR_MODE_ON);
1347 * gst_debug_get_color_mode:
1349 * Changes the coloring mode for debug output.
1351 * Returns: see @GstDebugColorMode for possible values.
1356 gst_debug_get_color_mode (void)
1358 return g_atomic_int_get (&__use_color);
1362 * gst_debug_set_active:
1363 * @active: Whether to use debugging output or not
1365 * If activated, debugging messages are sent to the debugging
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>
1372 gst_debug_set_active (gboolean active)
1374 _gst_debug_enabled = active;
1376 _gst_debug_min = GST_LEVEL_COUNT;
1378 _gst_debug_min = GST_LEVEL_NONE;
1382 * gst_debug_is_active:
1384 * Checks if debugging output is activated.
1386 * Returns: %TRUE, if debugging is activated
1389 gst_debug_is_active (void)
1391 return _gst_debug_enabled;
1395 * gst_debug_set_default_threshold:
1396 * @level: level to set
1398 * Sets the default threshold to the given level and updates all categories to
1399 * use this threshold.
1401 * This function may be called before gst_init().
1404 gst_debug_set_default_threshold (GstDebugLevel level)
1406 g_atomic_int_set (&__default_level, level);
1407 gst_debug_reset_all_thresholds ();
1411 * gst_debug_get_default_threshold:
1413 * Returns the default threshold that is used for new categories.
1415 * Returns: the default threshold level
1418 gst_debug_get_default_threshold (void)
1420 return (GstDebugLevel) g_atomic_int_get (&__default_level);
1424 gst_debug_reset_threshold (gpointer category, gpointer unused)
1426 GstDebugCategory *cat = (GstDebugCategory *) category;
1429 g_mutex_lock (&__level_name_mutex);
1430 walk = __level_name;
1432 LevelNameEntry *entry = walk->data;
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);
1443 gst_debug_category_set_threshold (cat, gst_debug_get_default_threshold ());
1446 g_mutex_unlock (&__level_name_mutex);
1450 gst_debug_reset_all_thresholds (void)
1452 g_mutex_lock (&__cat_mutex);
1453 g_slist_foreach (__categories, gst_debug_reset_threshold, NULL);
1454 g_mutex_unlock (&__cat_mutex);
1458 for_each_threshold_by_entry (gpointer data, gpointer user_data)
1460 GstDebugCategory *cat = (GstDebugCategory *) data;
1461 LevelNameEntry *entry = (LevelNameEntry *) user_data;
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);
1472 * gst_debug_set_threshold_for_name:
1473 * @name: name of the categories to set
1474 * @level: level to set them to
1476 * Sets all categories which match the given glob style pattern to the given
1480 gst_debug_set_threshold_for_name (const gchar * name, GstDebugLevel level)
1483 LevelNameEntry *entry;
1485 g_return_if_fail (name != NULL);
1487 pat = g_pattern_spec_new (name);
1488 entry = g_slice_new (LevelNameEntry);
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);
1500 * gst_debug_unset_threshold_for_name:
1501 * @name: name of the categories to set
1503 * Resets all categories with the given name back to the default level.
1506 gst_debug_unset_threshold_for_name (const gchar * name)
1511 g_return_if_fail (name != NULL);
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 */
1518 LevelNameEntry *entry = walk->data;
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;
1528 g_mutex_unlock (&__level_name_mutex);
1529 g_pattern_spec_free (pat);
1530 gst_debug_reset_all_thresholds ();
1534 _gst_debug_category_new (const gchar * name, guint color,
1535 const gchar * description)
1537 GstDebugCategory *cat, *catfound;
1539 g_return_val_if_fail (name != NULL, NULL);
1541 cat = g_slice_new (GstDebugCategory);
1542 cat->name = g_strdup (name);
1544 if (description != NULL) {
1545 cat->description = g_strdup (description);
1547 cat->description = g_strdup ("no description");
1549 g_atomic_int_set (&cat->threshold, 0);
1550 gst_debug_reset_threshold (cat, NULL);
1552 /* add to category list */
1553 g_mutex_lock (&__cat_mutex);
1554 catfound = _gst_debug_get_category_locked (name);
1556 g_free ((gpointer) cat->name);
1557 g_free ((gpointer) cat->description);
1558 g_slice_free (GstDebugCategory, cat);
1561 __categories = g_slist_prepend (__categories, cat);
1563 g_mutex_unlock (&__cat_mutex);
1569 * gst_debug_category_free:
1570 * @category: #GstDebugCategory to free.
1572 * Removes and frees the category and all associated resources.
1575 gst_debug_category_free (GstDebugCategory * category)
1577 if (category == NULL)
1580 /* remove from category list */
1581 g_mutex_lock (&__cat_mutex);
1582 __categories = g_slist_remove (__categories, category);
1583 g_mutex_unlock (&__cat_mutex);
1585 g_free ((gpointer) category->name);
1586 g_free ((gpointer) category->description);
1587 g_slice_free (GstDebugCategory, category);
1591 * gst_debug_category_set_threshold:
1592 * @category: a #GstDebugCategory to set threshold of.
1593 * @level: the #GstDebugLevel threshold to set.
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.
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).
1605 gst_debug_category_set_threshold (GstDebugCategory * category,
1606 GstDebugLevel level)
1608 g_return_if_fail (category != NULL);
1610 if (level > _gst_debug_min) {
1611 _gst_debug_enabled = TRUE;
1612 _gst_debug_min = level;
1615 g_atomic_int_set (&category->threshold, level);
1619 * gst_debug_category_reset_threshold:
1620 * @category: a #GstDebugCategory to reset threshold of.
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().
1629 gst_debug_category_reset_threshold (GstDebugCategory * category)
1631 gst_debug_reset_threshold (category, NULL);
1635 * gst_debug_category_get_threshold:
1636 * @category: a #GstDebugCategory to get threshold of.
1638 * Returns the threshold of a #GstDebugCategory.
1640 * Returns: the #GstDebugLevel that is used as threshold.
1643 gst_debug_category_get_threshold (GstDebugCategory * category)
1645 return (GstDebugLevel) g_atomic_int_get (&category->threshold);
1649 * gst_debug_category_get_name:
1650 * @category: a #GstDebugCategory to get name of.
1652 * Returns the name of a debug category.
1654 * Returns: the name of the category.
1657 gst_debug_category_get_name (GstDebugCategory * category)
1659 return category->name;
1663 * gst_debug_category_get_color:
1664 * @category: a #GstDebugCategory to get the color of.
1666 * Returns the color of a debug category used when printing output in this
1669 * Returns: the color of the category.
1672 gst_debug_category_get_color (GstDebugCategory * category)
1674 return category->color;
1678 * gst_debug_category_get_description:
1679 * @category: a #GstDebugCategory to get the description of.
1681 * Returns the description of a debug category.
1683 * Returns: the description of the category.
1686 gst_debug_category_get_description (GstDebugCategory * category)
1688 return category->description;
1692 * gst_debug_get_all_categories:
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.
1698 * Returns: (transfer container) (element-type Gst.DebugCategory): the list of
1702 gst_debug_get_all_categories (void)
1706 g_mutex_lock (&__cat_mutex);
1707 ret = g_slist_copy (__categories);
1708 g_mutex_unlock (&__cat_mutex);
1713 static GstDebugCategory *
1714 _gst_debug_get_category_locked (const gchar * name)
1716 GstDebugCategory *ret = NULL;
1719 for (node = __categories; node; node = g_slist_next (node)) {
1720 ret = (GstDebugCategory *) node->data;
1721 if (!strcmp (name, ret->name)) {
1729 _gst_debug_get_category (const gchar * name)
1731 GstDebugCategory *ret;
1733 g_mutex_lock (&__cat_mutex);
1734 ret = _gst_debug_get_category_locked (name);
1735 g_mutex_unlock (&__cat_mutex);
1741 parse_debug_category (gchar * str, const gchar ** category)
1746 /* works in place */
1749 if (str[0] != '\0') {
1758 parse_debug_level (gchar * str, GstDebugLevel * level)
1763 /* works in place */
1766 if (g_ascii_isdigit (str[0])) {
1769 l = strtoul (str, &endptr, 10);
1770 if (endptr > str && endptr[0] == 0) {
1771 *level = (GstDebugLevel) l;
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;
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
1803 * %FALSE if adding the threshold described by @list to the one already set.
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.
1813 gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
1821 gst_debug_set_default_threshold (0);
1823 split = g_strsplit (list, ",", 0);
1825 for (walk = split; *walk; walk++) {
1826 if (strchr (*walk, ':')) {
1827 gchar **values = g_strsplit (*walk, ":", 2);
1829 if (values[0] && values[1]) {
1830 GstDebugLevel level;
1831 const gchar *category;
1833 if (parse_debug_category (values[0], &category)
1834 && parse_debug_level (values[1], &level))
1835 gst_debug_set_threshold_for_name (category, level);
1838 g_strfreev (values);
1840 GstDebugLevel level;
1842 if (parse_debug_level (*walk, &level))
1843 gst_debug_set_default_threshold (level);
1850 /*** FUNCTION POINTERS ********************************************************/
1852 static GHashTable *__gst_function_pointers; /* NULL */
1853 static GMutex __dbg_functions_mutex;
1855 /* This function MUST NOT return NULL */
1857 _gst_debug_nameof_funcptr (GstDebugFuncPtr func)
1865 if (G_UNLIKELY (func == NULL))
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))
1875 g_mutex_unlock (&__dbg_functions_mutex);
1877 /* we need to create an entry in the hash table for this one so we don't leak
1880 if (dladdr ((gpointer) func, &dl_info) && dl_info.dli_sname) {
1881 gchar *name = g_strdup (dl_info.dli_sname);
1883 _gst_debug_register_funcptr (func, name);
1888 gchar *name = g_strdup_printf ("%p", (gpointer) func);
1890 _gst_debug_register_funcptr (func, name);
1896 _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
1898 gpointer ptr = (gpointer) func;
1900 g_mutex_lock (&__dbg_functions_mutex);
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);
1907 g_mutex_unlock (&__dbg_functions_mutex);
1911 gst_info_dump_mem_line (gchar * linebuf, gsize linebuf_size,
1912 const guint8 * mem, gsize mem_offset, gsize mem_size)
1914 gchar hexstr[50], ascstr[18], digitstr[4];
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));
1935 g_snprintf (linebuf, linebuf_size, "%08x: %-48.48s %-16.16s",
1936 (guint) mem_offset, hexstr, ascstr);
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)
1946 gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
1947 "-------------------------------------------------------------------");
1949 if (msg != NULL && *msg != '\0') {
1950 gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", msg);
1953 while (off < length) {
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);
1962 gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
1963 "-------------------------------------------------------------------");
1966 #else /* !GST_DISABLE_GST_DEBUG */
1967 #ifndef GST_REMOVE_DISABLED
1970 _gst_debug_category_new (const gchar * name, guint color,
1971 const gchar * description)
1977 _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
1981 /* This function MUST NOT return NULL */
1983 _gst_debug_nameof_funcptr (GstDebugFuncPtr func)
1989 gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
1990 const gchar * file, const gchar * function, gint line,
1991 GObject * object, const gchar * format, ...)
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)
2003 gst_debug_message_get (GstDebugMessage * message)
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)
2016 gst_debug_level_get_name (GstDebugLevel level)
2022 gst_debug_add_log_function (GstLogFunction func, gpointer user_data,
2023 GDestroyNotify notify)
2028 gst_debug_remove_log_function (GstLogFunction func)
2034 gst_debug_remove_log_function_by_data (gpointer data)
2040 gst_debug_set_active (gboolean active)
2045 gst_debug_is_active (void)
2051 gst_debug_set_colored (gboolean colored)
2056 gst_debug_set_color_mode (GstDebugColorMode mode)
2061 gst_debug_set_color_mode_from_string (const gchar * str)
2066 gst_debug_is_colored (void)
2072 gst_debug_get_color_mode (void)
2074 return GST_DEBUG_COLOR_MODE_OFF;
2078 gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
2083 gst_debug_set_default_threshold (GstDebugLevel level)
2088 gst_debug_get_default_threshold (void)
2090 return GST_LEVEL_NONE;
2094 gst_debug_set_threshold_for_name (const gchar * name, GstDebugLevel level)
2099 gst_debug_unset_threshold_for_name (const gchar * name)
2104 gst_debug_category_free (GstDebugCategory * category)
2109 gst_debug_category_set_threshold (GstDebugCategory * category,
2110 GstDebugLevel level)
2115 gst_debug_category_reset_threshold (GstDebugCategory * category)
2120 gst_debug_category_get_threshold (GstDebugCategory * category)
2122 return GST_LEVEL_NONE;
2126 gst_debug_category_get_name (GstDebugCategory * category)
2132 gst_debug_category_get_color (GstDebugCategory * category)
2138 gst_debug_category_get_description (GstDebugCategory * category)
2144 gst_debug_get_all_categories (void)
2150 _gst_debug_get_category (const gchar * name)
2156 gst_debug_construct_term_color (guint colorinfo)
2158 return g_strdup ("00");
2162 gst_debug_construct_win_color (guint colorinfo)
2168 _priv_gst_in_valgrind (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)
2179 #endif /* GST_REMOVE_DISABLED */
2180 #endif /* GST_DISABLE_GST_DEBUG */
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>
2188 __gst_info_fallback_vasprintf (char **result, char const *format, va_list args)
2190 gchar *clean_format, *c;
2196 clean_format = g_strdup (format);
2198 while ((c = strstr (c, "%p\a"))) {
2199 if (c[3] < 'A' || c[3] > 'Z') {
2203 len = strlen (c + 4);
2204 memmove (c + 2, c + 4, len + 1);
2207 while ((c = strstr (clean_format, "%P"))) /* old GST_PTR_FORMAT */
2209 while ((c = strstr (clean_format, "%Q"))) /* old GST_SEGMENT_FORMAT */
2212 len = g_vasprintf (result, clean_format, args);
2214 g_free (clean_format);
2216 if (*result == NULL)
2223 #ifdef GST_ENABLE_FUNC_INSTRUMENTATION
2224 /* FIXME make this thread specific */
2225 static GSList *stack_trace = NULL;
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)
2232 gchar *name = _gst_debug_nameof_funcptr (this_fn);
2233 gchar *site = _gst_debug_nameof_funcptr (call_site);
2235 GST_CAT_DEBUG (GST_CAT_CALL_TRACE, "entering function %s from %s", name,
2238 g_slist_prepend (stack_trace, g_strdup_printf ("%8p in %s from %p (%s)",
2239 this_fn, name, call_site, site));
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)
2250 gchar *name = _gst_debug_nameof_funcptr (this_fn);
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);
2260 * gst_debug_print_stack_trace:
2262 * If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktrace is available for
2263 * gstreamer code, which can be printed with this function.
2266 gst_debug_print_stack_trace (void)
2268 GSList *walk = stack_trace;
2272 walk = g_slist_next (walk);
2275 gchar *name = (gchar *) walk->data;
2277 g_print ("#%-2d %s\n", count++, name);
2279 walk = g_slist_next (walk);
2284 gst_debug_print_stack_trace (void)
2286 /* nothing because it's compiled out */
2289 #endif /* GST_ENABLE_FUNC_INSTRUMENTATION */