Totally rewritten registry handling.
[platform/upstream/gstreamer.git] / gst / gstpluginfeature.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstpluginfeature.c: Abstract base class for all plugin features
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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include "gst_private.h"
24 #include "gstpluginfeature.h"
25 #include "gstplugin.h"
26 #include "gstregistry.h"
27
28 static void             gst_plugin_feature_class_init           (GstPluginFeatureClass *klass);
29 static void             gst_plugin_feature_init                 (GstPluginFeature *feature);
30
31 static GstObjectClass *parent_class = NULL;
32 /* static guint gst_plugin_feature_signals[LAST_SIGNAL] = { 0 }; */
33
34 GType
35 gst_plugin_feature_get_type (void)
36 {
37   static GType plugin_feature_type = 0;
38
39   if (!plugin_feature_type) {
40     static const GTypeInfo plugin_feature_info = {
41       sizeof (GObjectClass),
42       NULL,
43       NULL,
44       (GClassInitFunc) gst_plugin_feature_class_init,
45       NULL,
46       NULL,
47       sizeof (GObject),
48       32,
49       (GInstanceInitFunc) gst_plugin_feature_init,
50       NULL
51     };
52     plugin_feature_type = g_type_register_static (G_TYPE_OBJECT, "GstPluginFeature", 
53                                                   &plugin_feature_info, G_TYPE_FLAG_ABSTRACT);
54   }
55   return plugin_feature_type;
56 }
57
58 static void
59 gst_plugin_feature_class_init (GstPluginFeatureClass *klass)
60 {
61   GObjectClass *gobject_class;
62
63   gobject_class = (GObjectClass*) klass;
64
65   parent_class = g_type_class_ref (G_TYPE_OBJECT);
66 }
67
68 static void
69 gst_plugin_feature_init (GstPluginFeature *feature)
70 {
71   feature->manager = NULL;
72 }
73
74 /**
75  * gst_plugin_feature_ensure_loaded:
76  * @feature: the plugin feature to check
77  *
78  * Check if the plugin containing the feature is loaded,
79  * if not, the plugin will be loaded.
80  *
81  * Returns: a boolean indicating the feature is loaded.
82  */
83 gboolean
84 gst_plugin_feature_ensure_loaded (GstPluginFeature *feature)
85 {
86   GstPlugin *plugin = (GstPlugin *) (feature->manager);
87
88   if (plugin && !gst_plugin_is_loaded (plugin)) {
89     if (GST_IS_REGISTRY (plugin->manager)) {
90       GST_DEBUG (GST_CAT_PLUGIN_LOADING, "loading plugin %s for feature", plugin->name);
91
92       if (gst_registry_load_plugin (GST_REGISTRY (plugin->manager), plugin) != GST_REGISTRY_OK)
93         return FALSE;
94     }
95     else
96       return FALSE;
97   }
98   return TRUE;
99 }
100
101 /**
102  * gst_plugin_feature_unload_thyself:
103  * @feature: the plugin feature to check
104  *
105  * Unload the given feature. This will decrease the refcount
106  * in the plugin and will eventually unload the plugin
107  */
108 void
109 gst_plugin_feature_unload_thyself (GstPluginFeature *feature)
110 {
111   GstPluginFeatureClass *oclass; 
112
113   g_return_if_fail (feature != NULL);
114   g_return_if_fail (GST_IS_PLUGIN_FEATURE (feature));
115   
116   oclass = (GstPluginFeatureClass *)G_OBJECT_GET_CLASS (feature);
117
118   if (oclass->unload_thyself)
119     oclass->unload_thyself (feature);
120 }
121
122
123