private: remove left-over comment
[platform/upstream/gstreamer.git] / gst / gst_private.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gst_private.h: Private header for within libgst
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef __GST_PRIVATE_H__
24 #define __GST_PRIVATE_H__
25
26 #ifdef HAVE_CONFIG_H
27 # ifndef GST_LICENSE   /* don't include config.h twice, it has no guards */
28 #  include "config.h"
29 # endif
30 #endif
31
32 /* This needs to be before glib.h, since it might be used in inline
33  * functions */
34 extern const char             g_log_domain_gstreamer[];
35
36 #include <glib.h>
37
38 #include <stdlib.h>
39 #include <string.h>
40
41 /* Needed for GstRegistry * */
42 #include "gstregistry.h"
43 #include "gststructure.h"
44
45 /* we need this in pretty much all files */
46 #include "gstinfo.h"
47
48 /* for the flags in the GstPluginDep structure below */
49 #include "gstplugin.h"
50
51 /* for the pad cache */
52 #include "gstpad.h"
53
54 /* for GstElement */
55 #include "gstelement.h"
56
57 /* for GstToc */
58 #include "gsttoc.h"
59
60 #include "gstdatetime.h"
61
62 G_BEGIN_DECLS
63
64 /* used by gstparse.c and grammar.y */
65 struct _GstParseContext {
66   GList * missing_elements;
67 };
68
69 /* used by gstplugin.c and gstregistrybinary.c */
70 typedef struct {
71   /* details registered via gst_plugin_add_dependency() */
72   GstPluginDependencyFlags  flags;
73   gchar **env_vars;
74   gchar **paths;
75   gchar **names;
76
77   /* information saved from the last time the plugin was loaded (-1 = unset) */
78   guint   env_hash;  /* hash of content of environment variables in env_vars */
79   guint   stat_hash; /* hash of stat() on all relevant files and directories */
80 } GstPluginDep;
81
82 struct _GstPluginPrivate {
83   GList *deps;    /* list of GstPluginDep structures */
84   GstStructure *cache_data;
85 };
86
87 /* FIXME: could rename all priv_gst_* functions to __gst_* now */
88 G_GNUC_INTERNAL  gboolean priv_gst_plugin_loading_have_whitelist (void);
89
90 G_GNUC_INTERNAL  guint32  priv_gst_plugin_loading_get_whitelist_hash (void);
91
92 G_GNUC_INTERNAL  gboolean priv_gst_plugin_desc_is_whitelisted (GstPluginDesc * desc,
93                                                                const gchar   * filename);
94
95 G_GNUC_INTERNAL  gboolean _priv_plugin_deps_env_vars_changed (GstPlugin * plugin);
96
97 G_GNUC_INTERNAL  gboolean _priv_plugin_deps_files_changed (GstPlugin * plugin);
98
99 G_GNUC_INTERNAL  gboolean _priv_gst_in_valgrind (void);
100
101 /* init functions called from gst_init(). */
102 G_GNUC_INTERNAL  void  _priv_gst_quarks_initialize (void);
103 G_GNUC_INTERNAL  void  _priv_gst_mini_object_initialize (void);
104 G_GNUC_INTERNAL  void  _priv_gst_buffer_initialize (void);
105 G_GNUC_INTERNAL  void  _priv_gst_buffer_list_initialize (void);
106 G_GNUC_INTERNAL  void  _priv_gst_structure_initialize (void);
107 G_GNUC_INTERNAL  void  _priv_gst_caps_initialize (void);
108 G_GNUC_INTERNAL  void  _priv_gst_caps_features_initialize (void);
109 G_GNUC_INTERNAL  void  _priv_gst_event_initialize (void);
110 G_GNUC_INTERNAL  void  _priv_gst_format_initialize (void);
111 G_GNUC_INTERNAL  void  _priv_gst_message_initialize (void);
112 G_GNUC_INTERNAL  void  _priv_gst_memory_initialize (void);
113 G_GNUC_INTERNAL  void  _priv_gst_meta_initialize (void);
114 G_GNUC_INTERNAL  void  _priv_gst_plugin_initialize (void);
115 G_GNUC_INTERNAL  void  _priv_gst_query_initialize (void);
116 G_GNUC_INTERNAL  void  _priv_gst_sample_initialize (void);
117 G_GNUC_INTERNAL  void  _priv_gst_tag_initialize (void);
118 G_GNUC_INTERNAL  void  _priv_gst_value_initialize (void);
119 G_GNUC_INTERNAL  void  _priv_gst_debug_init (void);
120 G_GNUC_INTERNAL  void  _priv_gst_context_initialize (void);
121
122 /* Private registry functions */
123 G_GNUC_INTERNAL
124 gboolean _priv_gst_registry_remove_cache_plugins (GstRegistry *registry);
125
126 G_GNUC_INTERNAL  void _priv_gst_registry_cleanup (void);
127
128 gboolean _gst_plugin_loader_client_run (void);
129
130 /* Used in GstBin for manual state handling */
131 G_GNUC_INTERNAL  void _priv_gst_element_state_changed (GstElement *element,
132                       GstState oldstate, GstState newstate, GstState pending);
133
134 /* used in both gststructure.c and gstcaps.c; numbers are completely made up */
135 #define STRUCTURE_ESTIMATED_STRING_LEN(s) (16 + gst_structure_n_fields(s) * 22)
136 #define FEATURES_ESTIMATED_STRING_LEN(s) (16 + gst_caps_features_get_size(s) * 14)
137
138 G_GNUC_INTERNAL
139 gboolean  priv_gst_structure_append_to_gstring (const GstStructure * structure,
140                                                 GString            * s);
141 G_GNUC_INTERNAL
142 void priv_gst_caps_features_append_to_gstring (const GstCapsFeatures * features, GString *s);
143
144 G_GNUC_INTERNAL
145 gboolean priv_gst_structure_parse_name (gchar * str, gchar **start, gchar ** end, gchar ** next);
146 G_GNUC_INTERNAL
147 gboolean priv_gst_structure_parse_fields (gchar *str, gchar ** end, GstStructure *structure);
148
149 /* registry cache backends */
150 G_GNUC_INTERNAL
151 gboolean                priv_gst_registry_binary_read_cache     (GstRegistry * registry, const char *location);
152
153 G_GNUC_INTERNAL
154 gboolean                priv_gst_registry_binary_write_cache    (GstRegistry * registry, GList * plugins, const char *location);
155
156
157 G_GNUC_INTERNAL
158 void      __gst_element_factory_add_static_pad_template (GstElementFactory    * elementfactory,
159                                                          GstStaticPadTemplate * templ);
160
161 G_GNUC_INTERNAL
162 void      __gst_element_factory_add_interface           (GstElementFactory    * elementfactory,
163                                                          const gchar          * interfacename);
164
165 /* used in gstvalue.c and gststructure.c */
166 #define GST_ASCII_IS_STRING(c) (g_ascii_isalnum((c)) || ((c) == '_') || \
167     ((c) == '-') || ((c) == '+') || ((c) == '/') || ((c) == ':') || \
168     ((c) == '.'))
169
170 /* This is only meant for internal uses */
171 G_GNUC_INTERNAL
172 gint __gst_date_time_compare (const GstDateTime * dt1, const GstDateTime * dt2);
173
174 G_GNUC_INTERNAL
175 gchar * __gst_date_time_serialize (GstDateTime * datetime, gboolean with_usecs);
176
177 #ifndef GST_DISABLE_REGISTRY
178 /* Secret variable to initialise gst without registry cache */
179 GST_EXPORT gboolean _gst_disable_registry_cache;
180 #endif
181
182 /* provide inline gst_g_value_get_foo_unchecked(), used in gststructure.c */
183 #define DEFINE_INLINE_G_VALUE_GET_UNCHECKED(ret_type,name_type,v_field) \
184 static inline ret_type                                                  \
185 gst_g_value_get_##name_type##_unchecked (const GValue *value)           \
186 {                                                                       \
187   return value->data[0].v_field;                                        \
188 }
189
190 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(gboolean,boolean,v_int)
191 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(gint,int,v_int)
192 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(guint,uint,v_uint)
193 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(gint64,int64,v_int64)
194 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(guint64,uint64,v_uint64)
195 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(gfloat,float,v_float)
196 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(gdouble,double,v_double)
197 DEFINE_INLINE_G_VALUE_GET_UNCHECKED(const gchar *,string,v_pointer)
198
199
200 /*** debugging categories *****************************************************/
201
202 #ifndef GST_REMOVE_GST_DEBUG
203
204 GST_EXPORT GstDebugCategory *GST_CAT_GST_INIT;
205 GST_EXPORT GstDebugCategory *GST_CAT_MEMORY;
206 GST_EXPORT GstDebugCategory *GST_CAT_PARENTAGE;
207 GST_EXPORT GstDebugCategory *GST_CAT_STATES;
208 GST_EXPORT GstDebugCategory *GST_CAT_SCHEDULING;
209 GST_EXPORT GstDebugCategory *GST_CAT_BUFFER;
210 GST_EXPORT GstDebugCategory *GST_CAT_BUFFER_LIST;
211 GST_EXPORT GstDebugCategory *GST_CAT_BUS;
212 GST_EXPORT GstDebugCategory *GST_CAT_CAPS;
213 GST_EXPORT GstDebugCategory *GST_CAT_CLOCK;
214 GST_EXPORT GstDebugCategory *GST_CAT_ELEMENT_PADS;
215 GST_EXPORT GstDebugCategory *GST_CAT_PADS;
216 GST_EXPORT GstDebugCategory *GST_CAT_PERFORMANCE;
217 GST_EXPORT GstDebugCategory *GST_CAT_PIPELINE;
218 GST_EXPORT GstDebugCategory *GST_CAT_PLUGIN_LOADING;
219 GST_EXPORT GstDebugCategory *GST_CAT_PLUGIN_INFO;
220 GST_EXPORT GstDebugCategory *GST_CAT_PROPERTIES;
221 GST_EXPORT GstDebugCategory *GST_CAT_NEGOTIATION;
222 GST_EXPORT GstDebugCategory *GST_CAT_REFCOUNTING;
223 GST_EXPORT GstDebugCategory *GST_CAT_ERROR_SYSTEM;
224 GST_EXPORT GstDebugCategory *GST_CAT_EVENT;
225 GST_EXPORT GstDebugCategory *GST_CAT_MESSAGE;
226 GST_EXPORT GstDebugCategory *GST_CAT_PARAMS;
227 GST_EXPORT GstDebugCategory *GST_CAT_CALL_TRACE;
228 GST_EXPORT GstDebugCategory *GST_CAT_SIGNAL;
229 GST_EXPORT GstDebugCategory *GST_CAT_PROBE;
230 GST_EXPORT GstDebugCategory *GST_CAT_REGISTRY;
231 GST_EXPORT GstDebugCategory *GST_CAT_QOS;
232 GST_EXPORT GstDebugCategory *GST_CAT_META;
233 GST_EXPORT GstDebugCategory *GST_CAT_LOCKING;
234 GST_EXPORT GstDebugCategory *GST_CAT_CONTEXT;
235
236 /* Categories that should be completely private to
237  * libgstreamer should be done like this: */
238 #define GST_CAT_POLL _priv_GST_CAT_POLL
239 extern GstDebugCategory *_priv_GST_CAT_POLL;
240
241 #else
242
243 #define GST_CAT_GST_INIT         NULL
244 #define GST_CAT_AUTOPLUG         NULL
245 #define GST_CAT_AUTOPLUG_ATTEMPT NULL
246 #define GST_CAT_PARENTAGE        NULL
247 #define GST_CAT_STATES           NULL
248 #define GST_CAT_SCHEDULING       NULL
249 #define GST_CAT_DATAFLOW         NULL
250 #define GST_CAT_BUFFER           NULL
251 #define GST_CAT_BUFFER_LIST      NULL
252 #define GST_CAT_BUS              NULL
253 #define GST_CAT_CAPS             NULL
254 #define GST_CAT_CLOCK            NULL
255 #define GST_CAT_ELEMENT_PADS     NULL
256 #define GST_CAT_PADS             NULL
257 #define GST_CAT_PERFORMANCE      NULL
258 #define GST_CAT_PIPELINE         NULL
259 #define GST_CAT_PLUGIN_LOADING   NULL
260 #define GST_CAT_PLUGIN_INFO      NULL
261 #define GST_CAT_PROPERTIES       NULL
262 #define GST_CAT_NEGOTIATION      NULL
263 #define GST_CAT_REFCOUNTING      NULL
264 #define GST_CAT_ERROR_SYSTEM     NULL
265 #define GST_CAT_EVENT            NULL
266 #define GST_CAT_MESSAGE          NULL
267 #define GST_CAT_PARAMS           NULL
268 #define GST_CAT_CALL_TRACE       NULL
269 #define GST_CAT_SIGNAL           NULL
270 #define GST_CAT_PROBE            NULL
271 #define GST_CAT_REGISTRY         NULL
272 #define GST_CAT_QOS              NULL
273 #define GST_CAT_TYPES            NULL
274 #define GST_CAT_POLL             NULL
275 #define GST_CAT_META             NULL
276 #define GST_CAT_LOCKING          NULL
277 #define GST_CAT_CONTEXT          NULL
278
279 #endif
280
281 #ifdef GST_DISABLE_GST_DEBUG
282 /* for _gst_element_error_printf */
283 #define __gst_vasprintf __gst_info_fallback_vasprintf
284 int __gst_vasprintf (char **result, char const *format, va_list args);
285 #endif
286
287 /**** objects made opaque until the private bits have been made private ****/
288
289 #include <gmodule.h>
290 #include <time.h> /* time_t */
291 #include <sys/types.h> /* off_t */
292 #include <sys/stat.h> /* off_t */
293
294 typedef struct _GstPluginPrivate GstPluginPrivate;
295
296 struct _GstPlugin {
297   GstObject       object;
298
299   /*< private >*/
300   GstPluginDesc desc;
301
302   GstPluginDesc *orig_desc;
303
304   gchar *       filename;
305   gchar *       basename;       /* base name (non-dir part) of plugin path */
306
307   GModule *     module;         /* contains the module if plugin is loaded */
308
309   off_t         file_size;
310   time_t        file_mtime;
311   gboolean      registered;     /* TRUE when the registry has seen a filename
312                                  * that matches the plugin's basename */
313
314   GstPluginPrivate *priv;
315
316   gpointer _gst_reserved[GST_PADDING];
317 };
318
319 struct _GstPluginClass {
320   GstObjectClass  object_class;
321
322   /*< private >*/
323   gpointer _gst_reserved[GST_PADDING];
324 };
325
326 struct _GstPluginFeature {
327   GstObject      object;
328
329   /*< private >*/
330   gboolean       loaded;
331   guint          rank;
332
333   const gchar   *plugin_name;
334   GstPlugin     *plugin;      /* weak ref */
335
336   /*< private >*/
337   gpointer _gst_reserved[GST_PADDING];
338 };
339
340 struct _GstPluginFeatureClass {
341   GstObjectClass        parent_class;
342
343   /*< private >*/
344   gpointer _gst_reserved[GST_PADDING];
345 };
346
347 #include "gsttypefind.h"
348
349 struct _GstTypeFindFactory {
350   GstPluginFeature              feature;
351   /* <private> */
352
353   GstTypeFindFunction           function;
354   gchar **                      extensions;
355   GstCaps *                     caps;
356
357   gpointer                      user_data;
358   GDestroyNotify                user_data_notify;
359
360   gpointer _gst_reserved[GST_PADDING];
361 };
362
363 struct _GstTypeFindFactoryClass {
364   GstPluginFeatureClass         parent;
365   /* <private> */
366
367   gpointer _gst_reserved[GST_PADDING];
368 };
369
370 struct _GstElementFactory {
371   GstPluginFeature      parent;
372
373   GType                 type;                   /* unique GType of element or 0 if not loaded */
374
375   gpointer              metadata;
376
377   GList *               staticpadtemplates;     /* GstStaticPadTemplate list */
378   guint                 numpadtemplates;
379
380   /* URI interface stuff */
381   GstURIType            uri_type;
382   gchar **              uri_protocols;
383
384   GList *               interfaces;             /* interface type names this element implements */
385
386   /*< private >*/
387   gpointer _gst_reserved[GST_PADDING];
388 };
389
390 struct _GstElementFactoryClass {
391   GstPluginFeatureClass parent_class;
392
393   gpointer _gst_reserved[GST_PADDING];
394 };
395
396 G_END_DECLS
397 #endif /* __GST_PRIVATE_H__ */