tracing: rename the global api to gst_tracing
[platform/upstream/gstreamer.git] / gst / gsttracerutils.c
1 /* GStreamer
2  * Copyright (C) 2013 Stefan Sauer <ensonic@users.sf.net>
3  *
4  * gsttracerutils.c: tracing subsystem
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 /**
23  * SECTION:gsttracerutils
24  * @short_description: Tracing subsystem
25  *
26  * The tracing subsystem provides hooks in the core library and API for modules
27  * to attach to them.
28  *
29  * The user can activate tracers by setting the environment variable GST_TRACE
30  * to a ';' separated list of tracers.
31  */
32
33 #define GST_USE_UNSTABLE_API
34
35 #include "gst_private.h"
36 #include "gsttracer.h"
37 #include "gsttracerfactory.h"
38 #include "gsttracerutils.h"
39
40 #ifndef GST_DISABLE_GST_DEBUG
41
42 /* tracer quarks */
43
44 /* These strings must match order and number declared in the GstTracerQuarkId
45  * enum in gsttracerutils.h! */
46 static const gchar *_quark_strings[] = {
47   "pad-push-pre", "pad-push-post", "pad-push-list-pre", "pad-push-list-post",
48   "pad-pull-range-pre", "pad-pull-range-post", "pad-push-event-pre",
49   "pad-push-event-post", "element-post-message-pre",
50   "element-post-message-post", "element-query-pre", "element-query-post"
51 };
52
53 GQuark _priv_gst_tracer_quark_table[GST_TRACER_QUARK_MAX];
54
55 /* tracing helpers */
56
57 gboolean _priv_tracer_enabled = FALSE;
58 GHashTable *_priv_tracers = NULL;
59
60 /* Initialize the tracing system */
61 void
62 _priv_gst_tracing_init (void)
63 {
64   const gchar *env = g_getenv ("GST_TRACE");
65
66   if (env != NULL && *env != '\0') {
67     GstRegistry *registry = gst_registry_get ();
68     GstPluginFeature *feature;
69     GstTracerFactory *factory;
70     gchar **t = g_strsplit_set (env, ";", 0);
71     gint i = 0;
72     gchar *params;
73
74     GST_INFO ("enabling tracers: '%s'", env);
75
76     if (G_N_ELEMENTS (_quark_strings) != GST_TRACER_QUARK_MAX)
77       g_warning ("the quark table is not consistent! %d != %d",
78           (gint) G_N_ELEMENTS (_quark_strings), GST_TRACER_QUARK_MAX);
79
80     for (i = 0; i < GST_TRACER_QUARK_MAX; i++) {
81       _priv_gst_tracer_quark_table[i] =
82           g_quark_from_static_string (_quark_strings[i]);
83     }
84
85     _priv_tracers = g_hash_table_new (NULL, NULL);
86
87     i = 0;
88     while (t[i]) {
89       // check t[i] for params
90       if ((params = strchr (t[i], '('))) {
91         gchar *end = strchr (&params[1], ')');
92         *params = '\0';
93         params++;
94         if (end)
95           *end = '\0';
96       } else {
97         params = NULL;
98       }
99
100       GST_INFO ("checking tracer: '%s'", t[i]);
101
102       if ((feature = gst_registry_lookup_feature (registry, t[i]))) {
103         factory = GST_TRACER_FACTORY (gst_plugin_feature_load (feature));
104         if (factory) {
105           GST_INFO_OBJECT (factory, "creating tracer: type-id=%u",
106               (guint) factory->type);
107
108           /* tracers register them self to the hooks */
109           gst_object_unref (g_object_new (factory->type, "params", params,
110                   NULL));
111         } else {
112           GST_WARNING_OBJECT (feature,
113               "loading plugin containing feature %s failed!", t[i]);
114         }
115       } else {
116         GST_WARNING ("no tracer named '%s'", t[i]);
117       }
118       i++;
119     }
120     g_strfreev (t);
121   }
122 }
123
124 void
125 _priv_gst_tracing_deinit (void)
126 {
127   GList *h_list, *h_node, *t_node;
128   GstTracerHook *hook;
129
130   _priv_tracer_enabled = FALSE;
131   if (!_priv_tracers)
132     return;
133
134   /* shutdown tracers for final reports */
135   h_list = g_hash_table_get_values (_priv_tracers);
136   for (h_node = h_list; h_node; h_node = g_list_next (h_node)) {
137     for (t_node = h_node->data; t_node; t_node = g_list_next (t_node)) {
138       hook = (GstTracerHook *) t_node->data;
139       gst_object_unref (hook->tracer);
140       g_slice_free (GstTracerHook, hook);
141     }
142     g_list_free (h_node->data);
143   }
144   g_list_free (h_list);
145   g_hash_table_destroy (_priv_tracers);
146   _priv_tracers = NULL;
147 }
148
149 /**
150  * gst_tracing_register_hook_id:
151  * @tracer: the tracer
152  * @detail: the detailed hook
153  * @func: (scope async): the callback
154  *
155  * Register @func to be called when the trace hook @detail is getting invoked.
156  */
157 void
158 gst_tracing_register_hook_id (GstTracer * tracer, GQuark detail, GCallback func)
159 {
160   gpointer key = GINT_TO_POINTER (detail);
161   GList *list = g_hash_table_lookup (_priv_tracers, key);
162   GstTracerHook *hook = g_slice_new0 (GstTracerHook);
163   hook->tracer = gst_object_ref (tracer);
164   hook->func = func;
165
166   list = g_list_prepend (list, hook);
167   g_hash_table_replace (_priv_tracers, key, list);
168   GST_DEBUG ("registering tracer for '%s', list.len=%d",
169       (detail ? g_quark_to_string (detail) : "*"), g_list_length (list));
170   _priv_tracer_enabled = TRUE;
171 }
172
173 /**
174  * gst_tracing_register_hook:
175  * @tracer: the tracer
176  * @detail: the detailed hook
177  * @func: (scope async): the callback
178  *
179  * Register @func to be called when the trace hook @detail is getting invoked.
180  */
181 void
182 gst_tracing_register_hook (GstTracer * tracer, const gchar * detail,
183     GCallback func)
184 {
185   gst_tracing_register_hook_id (tracer, g_quark_try_string (detail), func);
186 }
187
188 #endif /* GST_DISABLE_GST_DEBUG */