2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstpluginfeature.c: Abstract base class for all plugin features
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.
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.
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., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 * SECTION:gstpluginfeature
25 * @short_description: Base class for contents of a GstPlugin
26 * @see_also: #GstPlugin
28 * This is a base class for anything that can be added to a #GstPlugin.
31 #include "gst_private.h"
33 #include "gstpluginfeature.h"
34 #include "gstplugin.h"
35 #include "gstregistry.h"
41 #define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
43 static void gst_plugin_feature_finalize (GObject * object);
45 /* static guint gst_plugin_feature_signals[LAST_SIGNAL] = { 0 }; */
47 G_DEFINE_ABSTRACT_TYPE (GstPluginFeature, gst_plugin_feature, GST_TYPE_OBJECT);
48 static GstObjectClass *parent_class = NULL;
51 gst_plugin_feature_class_init (GstPluginFeatureClass * klass)
53 parent_class = g_type_class_peek_parent (klass);
55 G_OBJECT_CLASS (klass)->finalize =
56 GST_DEBUG_FUNCPTR (gst_plugin_feature_finalize);
60 gst_plugin_feature_init (GstPluginFeature * feature)
62 /* do nothing, needed because of G_DEFINE_TYPE */
66 gst_plugin_feature_finalize (GObject * object)
68 GstPluginFeature *feature = GST_PLUGIN_FEATURE_CAST (object);
70 GST_DEBUG ("finalizing feature %p: '%s'", feature,
71 GST_PLUGIN_FEATURE_NAME (feature));
72 g_free (feature->name);
74 G_OBJECT_CLASS (parent_class)->finalize (object);
78 * gst_plugin_feature_load:
79 * @feature: the plugin feature to check
81 * Loads the plugin containing @feature if it's not already loaded. @feature is
82 * unaffected; use the return value instead.
84 * Normally this function is used like this:
86 * GstPluginFeature *loaded_feature;
88 * loaded_feature = gst_plugin_feature_load (feature);
89 * // presumably, we're no longer interested in the potentially-unloaded feature
90 * gst_object_unref (feature);
91 * feature = loaded_feature;
94 * Returns: A reference to the loaded feature, or NULL on error.
97 gst_plugin_feature_load (GstPluginFeature * feature)
100 GstPluginFeature *real_feature;
102 g_return_val_if_fail (feature != NULL, FALSE);
103 g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
105 GST_DEBUG ("loading plugin for feature %p; '%s'", feature,
106 GST_PLUGIN_FEATURE_NAME (feature));
108 return gst_object_ref (feature);
110 GST_DEBUG ("loading plugin %s", feature->plugin_name);
111 plugin = gst_plugin_load_by_name (feature->plugin_name);
115 GST_DEBUG ("loaded plugin %s", feature->plugin_name);
116 gst_object_unref (plugin);
119 gst_registry_lookup_feature (gst_registry_get_default (), feature->name);
121 if (real_feature == NULL)
123 else if (!real_feature->loaded)
131 GST_WARNING ("Failed to load plugin containing feature '%s'.",
132 GST_PLUGIN_FEATURE_NAME (feature));
138 ("Loaded plugin containing feature '%s', but feature disappeared.",
144 GST_INFO ("Tried to load plugin containing feature '%s', but feature was "
145 "not found.", real_feature->name);
151 * gst_plugin_feature_type_name_filter:
152 * @feature: the #GstPluginFeature
153 * @data: the type and name to check against
155 * Compares type and name of plugin feature. Can be used with gst_filter_run().
157 * Returns: TRUE if equal.
160 gst_plugin_feature_type_name_filter (GstPluginFeature * feature,
161 GstTypeNameData * data)
163 g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
165 return ((data->type == 0 || data->type == G_OBJECT_TYPE (feature)) &&
167 || !strcmp (data->name, GST_PLUGIN_FEATURE_NAME (feature))));
171 * gst_plugin_feature_set_name:
172 * @feature: a feature
173 * @name: the name to set
175 * Sets the name of a plugin feature. The name uniquely identifies a feature
176 * within all features of the same type. Renaming a plugin feature is not
177 * allowed. A copy is made of the name so you should free the supplied @name
178 * after calling this function.
181 gst_plugin_feature_set_name (GstPluginFeature * feature, const gchar * name)
183 g_return_if_fail (GST_IS_PLUGIN_FEATURE (feature));
184 g_return_if_fail (name != NULL);
187 g_return_if_fail (strcmp (feature->name, name) == 0);
189 feature->name = g_strdup (name);
191 gst_object_set_name (GST_OBJECT_CAST (feature), feature->name);
195 * gst_plugin_feature_get_name:
196 * @feature: a feature
198 * Gets the name of a plugin feature.
202 G_CONST_RETURN gchar *
203 gst_plugin_feature_get_name (GstPluginFeature * feature)
205 g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), NULL);
207 return feature->name;
211 * gst_plugin_feature_set_rank:
212 * @feature: feature to rank
213 * @rank: rank value - higher number means more priority rank
215 * Specifies a rank for a plugin feature, so that autoplugging uses
216 * the most appropriate feature.
219 gst_plugin_feature_set_rank (GstPluginFeature * feature, guint rank)
221 g_return_if_fail (feature != NULL);
222 g_return_if_fail (GST_IS_PLUGIN_FEATURE (feature));
224 feature->rank = rank;
228 * gst_plugin_feature_get_rank:
229 * @feature: a feature
231 * Gets the rank of a plugin feature.
233 * Returns: The rank of the feature
236 gst_plugin_feature_get_rank (GstPluginFeature * feature)
238 g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), GST_RANK_NONE);
240 return feature->rank;
244 * gst_plugin_feature_list_free:
245 * @list: list of #GstPluginFeature
247 * Unrefs each member of @list, then frees the list.
250 gst_plugin_feature_list_free (GList * list)
254 for (g = list; g; g = g->next) {
255 GstPluginFeature *feature = GST_PLUGIN_FEATURE_CAST (g->data);
257 gst_object_unref (feature);
263 * gst_plugin_feature_list_copy:
264 * @list: list of #GstPluginFeature
266 * Copies the list of features. Caller should call @gst_plugin_feature_list_free
267 * when done with the list.
269 * Returns: a copy of @list, with each feature's reference count incremented.
272 gst_plugin_feature_list_copy (GList * list)
274 GList *new_list = NULL;
276 if (G_LIKELY (list)) {
279 new_list = g_list_alloc ();
280 new_list->data = g_object_ref ((GObject *) list->data);
281 new_list->prev = NULL;
285 last->next = g_list_alloc ();
286 last->next->prev = last;
288 last->data = g_object_ref ((GObject *) list->data);
298 * gst_plugin_feature_check_version:
299 * @feature: a feature
300 * @min_major: minimum required major version
301 * @min_minor: minimum required minor version
302 * @min_micro: minimum required micro version
304 * Checks whether the given plugin feature is at least
305 * the required version
307 * Returns: #TRUE if the plugin feature has at least
308 * the required version, otherwise #FALSE.
311 gst_plugin_feature_check_version (GstPluginFeature * feature,
312 guint min_major, guint min_minor, guint min_micro)
314 GstRegistry *registry;
316 gboolean ret = FALSE;
318 g_return_val_if_fail (feature != NULL, FALSE);
319 g_return_val_if_fail (GST_IS_PLUGIN_FEATURE (feature), FALSE);
321 GST_DEBUG ("Looking up plugin '%s' containing plugin feature '%s'",
322 feature->plugin_name, feature->name);
324 registry = gst_registry_get_default ();
325 plugin = gst_registry_find_plugin (registry, feature->plugin_name);
328 const gchar *ver_str;
329 guint major, minor, micro, nano;
332 ver_str = gst_plugin_get_version (plugin);
333 g_return_val_if_fail (ver_str != NULL, FALSE);
335 nscan = sscanf (ver_str, "%u.%u.%u.%u", &major, &minor, µ, &nano);
336 GST_DEBUG ("version string '%s' parsed to %d values", ver_str, nscan);
339 if (major > min_major)
341 else if (major < min_major)
343 else if (minor > min_minor)
345 else if (minor < min_minor)
347 else if (micro > min_micro)
349 /* micro is 1 smaller but we have a nano version, this is the upcomming
350 * release of the requested version and we're ok then */
351 else if (nscan == 4 && nano > 0 && (micro + 1 == min_micro))
354 ret = (micro == min_micro);
356 GST_DEBUG ("Checking whether %u.%u.%u >= %u.%u.%u? %s", major, minor,
357 micro, min_major, min_minor, min_micro, (ret) ? "yes" : "no");
359 GST_WARNING ("Could not parse version string '%s' of plugin '%s'",
360 ver_str, feature->plugin_name);
363 gst_object_unref (plugin);
365 GST_DEBUG ("Could not find plugin '%s'", feature->plugin_name);