devicemonitor: don't fail when started without any filters
[platform/upstream/gstreamer.git] / gst / gstplugin.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstplugin.h: Header for plugin subsystem
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
24 #ifndef __GST_PLUGIN_H__
25 #define __GST_PLUGIN_H__
26
27 #include <gst/gstconfig.h>
28
29 #include <gst/gstobject.h>
30 #include <gst/gstmacros.h>
31 #include <gst/gststructure.h>
32
33 G_BEGIN_DECLS
34
35 /**
36  * GstPlugin:
37  *
38  * The opaque plugin object
39  */
40 typedef struct _GstPlugin GstPlugin;
41 typedef struct _GstPluginClass GstPluginClass;
42 typedef struct _GstPluginDesc GstPluginDesc;
43
44 /**
45  * gst_plugin_error_quark:
46  *
47  * Get the error quark.
48  *
49  * Returns: The error quark used in GError messages
50  */
51 GQuark gst_plugin_error_quark (void);
52 /**
53  * GST_PLUGIN_ERROR:
54  *
55  * The error message category quark
56  */
57 #define GST_PLUGIN_ERROR gst_plugin_error_quark ()
58
59 /**
60  * GstPluginError:
61  * @GST_PLUGIN_ERROR_MODULE: The plugin could not be loaded
62  * @GST_PLUGIN_ERROR_DEPENDENCIES: The plugin has unresolved dependencies
63  * @GST_PLUGIN_ERROR_NAME_MISMATCH: The plugin has already be loaded from a different file
64  *
65  * The plugin loading errors
66  */
67 typedef enum
68 {
69   GST_PLUGIN_ERROR_MODULE,
70   GST_PLUGIN_ERROR_DEPENDENCIES,
71   GST_PLUGIN_ERROR_NAME_MISMATCH
72 } GstPluginError;
73
74 /**
75  * GstPluginFlags:
76  * @GST_PLUGIN_FLAG_CACHED: Temporarily loaded plugins
77  * @GST_PLUGIN_FLAG_BLACKLISTED: The plugin won't be scanned (again)
78  *
79  * The plugin loading state
80  */
81 typedef enum
82 {
83   GST_PLUGIN_FLAG_CACHED      = (GST_OBJECT_FLAG_LAST << 0),
84   GST_PLUGIN_FLAG_BLACKLISTED = (GST_OBJECT_FLAG_LAST << 1)
85 } GstPluginFlags;
86
87 /**
88  * GstPluginDependencyFlags:
89  * @GST_PLUGIN_DEPENDENCY_FLAG_NONE : no special flags
90  * @GST_PLUGIN_DEPENDENCY_FLAG_RECURSE : recurse into subdirectories
91  * @GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY : use paths
92  *         argument only if none of the environment variables is set
93  * @GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX : interpret
94  *         filename argument as filter suffix and check all matching files in
95  *         the directory
96  *
97  * Flags used in connection with gst_plugin_add_dependency().
98  */
99 typedef enum {
100   GST_PLUGIN_DEPENDENCY_FLAG_NONE = 0,
101   GST_PLUGIN_DEPENDENCY_FLAG_RECURSE = (1 << 0),
102   GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY = (1 << 1),
103   GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX = (1 << 2)
104 } GstPluginDependencyFlags;
105
106 /**
107  * GstPluginInitFunc:
108  * @plugin: The plugin object
109  *
110  * A plugin should provide a pointer to a function of this type in the
111  * plugin_desc struct.
112  * This function will be called by the loader at startup. One would then
113  * register each #GstPluginFeature.
114  *
115  * Returns: %TRUE if plugin initialised successfully
116  */
117 /* FIXME 0.11: Make return void */
118 typedef gboolean (*GstPluginInitFunc) (GstPlugin *plugin);
119
120 /**
121  * GstPluginInitFullFunc:
122  * @plugin: The plugin object
123  * @user_data: extra data
124  *
125  * A plugin should provide a pointer to a function of either #GstPluginInitFunc
126  * or this type in the plugin_desc struct.
127  * The function will be called by the loader at startup. One would then
128  * register each #GstPluginFeature. This version allows
129  * user data to be passed to init function (useful for bindings).
130  *
131  * Returns: %TRUE if plugin initialised successfully
132  */
133 /* FIXME 0.11: Merge with GstPluginInitFunc */
134 typedef gboolean (*GstPluginInitFullFunc) (GstPlugin *plugin, gpointer user_data);
135
136 /**
137  * GstPluginDesc:
138  * @major_version: the major version number of core that plugin was compiled for
139  * @minor_version: the minor version number of core that plugin was compiled for
140  * @name: a unique name of the plugin
141  * @description: description of plugin
142  * @plugin_init: pointer to the init function of this plugin.
143  * @version: version of the plugin
144  * @license: effective license of plugin
145  * @source: source module plugin belongs to
146  * @package: shipped package plugin belongs to
147  * @origin: URL to provider of plugin
148  * @release_datetime: (allow-none): date time string in ISO 8601
149  *     format (or rather, a subset thereof), or %NULL. Allowed are the
150  *     following formats: "YYYY-MM-DD" and "YYY-MM-DDTHH:MMZ" (with
151  *     'T' a separator and 'Z' indicating UTC/Zulu time). This field
152  *     should be set via the %GST_PACKAGE_RELEASE_DATETIME
153  *     preprocessor macro.
154  *
155  * A plugin should export a variable of this type called plugin_desc. The plugin
156  * loader will use the data provided there to initialize the plugin.
157  *
158  * The @licence parameter must be one of: LGPL, GPL, QPL, GPL/QPL, MPL,
159  * BSD, MIT/X11, Proprietary, unknown.
160  */
161 struct _GstPluginDesc {
162   gint major_version;
163   gint minor_version;
164   const gchar *name;
165   const gchar *description;
166   GstPluginInitFunc plugin_init;
167   const gchar *version;
168   const gchar *license;
169   const gchar *source;
170   const gchar *package;
171   const gchar *origin;
172   const gchar *release_datetime;
173   /*< private >*/
174   gpointer _gst_reserved[GST_PADDING];
175 };
176
177
178 #define GST_TYPE_PLUGIN   (gst_plugin_get_type())
179 #define GST_IS_PLUGIN(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_PLUGIN))
180 #define GST_IS_PLUGIN_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_PLUGIN))
181 #define GST_PLUGIN_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PLUGIN, GstPluginClass))
182 #define GST_PLUGIN(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PLUGIN, GstPlugin))
183 #define GST_PLUGIN_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_PLUGIN, GstPluginClass))
184 #define GST_PLUGIN_CAST(obj)           ((GstPlugin*)(obj))
185
186 #ifdef GST_PACKAGE_RELEASE_DATETIME
187 #define __GST_PACKAGE_RELEASE_DATETIME GST_PACKAGE_RELEASE_DATETIME
188 #else
189 #define __GST_PACKAGE_RELEASE_DATETIME NULL
190 #endif
191
192 /**
193  * GST_PLUGIN_STATIC_DECLARE:
194  * @name: short, but unique name of the plugin
195  *
196  * This macro can be used to initialize statically linked plugins. It is
197  * necessary to call this macro before the plugin can be used.
198  * It has to be used in combination with GST_PLUGIN_STATIC_REGISTER
199  * and must be placed outside any block to declare the plugin initialization
200  * function.
201  *
202  * Since: 1.2
203  */
204 #define GST_PLUGIN_STATIC_DECLARE(name) \
205   extern void G_PASTE(gst_plugin_, G_PASTE(name, _register)) (void)
206
207 /**
208  * GST_PLUGIN_STATIC_REGISTER:
209  * @name: short, but unique name of the plugin
210  *
211  * This macro can be used to initialize statically linked plugins. It is
212  * necessary to call this macro before the plugin can be used.
213  * It has to be used in combination with GST_PLUGIN_STATIC_DECLARE and
214  * calls the plugin initialization function.
215  *
216  * Since: 1.2
217  */
218 #define GST_PLUGIN_STATIC_REGISTER(name) G_PASTE(gst_plugin_, G_PASTE(name, _register)) ()
219
220 /**
221  * GST_PLUGIN_DEFINE:
222  * @major: major version number of the gstreamer-core that plugin was compiled for
223  * @minor: minor version number of the gstreamer-core that plugin was compiled for
224  * @name: short, but unique name of the plugin
225  * @description: information about the purpose of the plugin
226  * @init: function pointer to the plugin_init method with the signature of <code>static gboolean plugin_init (GstPlugin * plugin)</code>.
227  * @version: full version string (e.g. VERSION from config.h)
228  * @license: under which licence the package has been released, e.g. GPL, LGPL.
229  * @package: the package-name (e.g. PACKAGE_NAME from config.h)
230  * @origin: a description from where the package comes from (e.g. the homepage URL)
231  *
232  * This macro needs to be used to define the entry point and meta data of a
233  * plugin. One would use this macro to export a plugin, so that it can be used
234  * by other applications.
235  *
236  * The macro uses a define named PACKAGE for the #GstPluginDesc,source field.
237  * When using autoconf, this is usually set automatically via the AC_INIT
238  * macro, and set in config.h. If you are not using autoconf, you will need to
239  * define PACKAGE yourself and set it to a short mnemonic string identifying
240  * your application/package, e.g. 'someapp' or 'my-plugins-foo.
241  *
242  * If defined, the GST_PACKAGE_RELEASE_DATETIME will also be used for the
243  * #GstPluginDesc,release_datetime field.
244  */
245 #ifdef GST_PLUGIN_BUILD_STATIC
246 #define GST_PLUGIN_DEFINE(major,minor,name,description,init,version,license,package,origin)     \
247 G_BEGIN_DECLS                                           \
248 GST_PLUGIN_EXPORT void G_PASTE(gst_plugin_, G_PASTE(name, _register)) (void);                   \
249                                                         \
250 void                                                    \
251 G_PASTE(gst_plugin_, G_PASTE(name, _register)) (void)   \
252 {                                                       \
253   gst_plugin_register_static (major, minor, G_STRINGIFY(name),  \
254       description, init, version, license,              \
255       PACKAGE, package, origin);                        \
256 }                                                       \
257 G_END_DECLS
258 #else /* !GST_PLUGIN_BUILD_STATIC */
259 #define GST_PLUGIN_DEFINE(major,minor,name,description,init,version,license,package,origin)     \
260 G_BEGIN_DECLS \
261 GST_PLUGIN_EXPORT GstPluginDesc gst_plugin_desc = {     \
262   major,                                                \
263   minor,                                                \
264   G_STRINGIFY(name),                                    \
265   (gchar *) description,                                \
266   init,                                                 \
267   version,                                              \
268   license,                                              \
269   PACKAGE,                                              \
270   package,                                              \
271   origin,                                               \
272   __GST_PACKAGE_RELEASE_DATETIME,                       \
273   GST_PADDING_INIT                                      \
274 }; \
275 G_END_DECLS
276 #endif /* GST_PLUGIN_BUILD_STATIC */
277
278 /**
279  * GST_LICENSE_UNKNOWN:
280  *
281  * To be used in GST_PLUGIN_DEFINE if unsure about the licence.
282  */
283 #define GST_LICENSE_UNKNOWN "unknown"
284
285
286 /* function for filters */
287 /**
288  * GstPluginFilter:
289  * @plugin: the plugin to check
290  * @user_data: the user_data that has been passed on e.g. gst_registry_plugin_filter()
291  *
292  * A function that can be used with e.g. gst_registry_plugin_filter()
293  * to get a list of plugins that match certain criteria.
294  *
295  * Returns: %TRUE for a positive match, %FALSE otherwise
296  */
297 typedef gboolean        (*GstPluginFilter)              (GstPlugin *plugin,
298                                                          gpointer user_data);
299
300 GType                   gst_plugin_get_type             (void);
301
302 gboolean                gst_plugin_register_static      (gint major_version,
303                                                          gint minor_version,
304                                                          const gchar *name,
305                                                          const gchar *description,
306                                                          GstPluginInitFunc init_func,
307                                                          const gchar *version,
308                                                          const gchar *license,
309                                                          const gchar *source,
310                                                          const gchar *package,
311                                                          const gchar *origin);
312
313 gboolean                gst_plugin_register_static_full (gint major_version,
314                                                          gint minor_version,
315                                                          const gchar *name,
316                                                          const gchar *description,
317                                                          GstPluginInitFullFunc init_full_func,
318                                                          const gchar *version,
319                                                          const gchar *license,
320                                                          const gchar *source,
321                                                          const gchar *package,
322                                                          const gchar *origin,
323                                                          gpointer user_data);
324
325 const gchar*            gst_plugin_get_name             (GstPlugin *plugin);
326 const gchar*            gst_plugin_get_description      (GstPlugin *plugin);
327 const gchar*            gst_plugin_get_filename         (GstPlugin *plugin);
328 const gchar*            gst_plugin_get_version          (GstPlugin *plugin);
329 const gchar*            gst_plugin_get_license          (GstPlugin *plugin);
330 const gchar*            gst_plugin_get_source           (GstPlugin *plugin);
331 const gchar*            gst_plugin_get_package          (GstPlugin *plugin);
332 const gchar*            gst_plugin_get_origin           (GstPlugin *plugin);
333 const gchar*            gst_plugin_get_release_date_string (GstPlugin *plugin);
334 const GstStructure*     gst_plugin_get_cache_data       (GstPlugin * plugin);
335 void                    gst_plugin_set_cache_data       (GstPlugin * plugin, GstStructure *cache_data);
336
337 gboolean                gst_plugin_is_loaded            (GstPlugin *plugin);
338
339 GstPlugin *             gst_plugin_load_file            (const gchar *filename, GError** error);
340
341 GstPlugin *             gst_plugin_load                 (GstPlugin *plugin);
342 GstPlugin *             gst_plugin_load_by_name         (const gchar *name);
343
344 void                    gst_plugin_add_dependency        (GstPlugin    * plugin,
345                                                           const gchar ** env_vars,
346                                                           const gchar ** paths,
347                                                           const gchar ** names,
348                                                           GstPluginDependencyFlags flags);
349 void                    gst_plugin_add_dependency_simple (GstPlugin   * plugin,
350                                                           const gchar * env_vars,
351                                                           const gchar * paths,
352                                                           const gchar * names,
353                                                           GstPluginDependencyFlags flags);
354
355 void gst_plugin_list_free (GList *list);
356
357 G_END_DECLS
358
359 #endif /* __GST_PLUGIN_H__ */