1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "gtypeplugin.h"
25 * @short_description: An interface for dynamically loadable types
26 * @see_also: #GTypeModule and g_type_register_dynamic().
29 * The GObject type system supports dynamic loading of types.
30 * The #GTypePlugin interface is used to handle the lifecycle
31 * of dynamically loaded types. It goes as follows:
33 * 1. The type is initially introduced (usually upon loading the module
34 * the first time, or by your main application that knows what modules
35 * introduces what types), like this:
36 * |[<!-- language="C" -->
37 * new_type_id = g_type_register_dynamic (parent_type_id,
42 * where @new_type_plugin is an implementation of the
43 * #GTypePlugin interface.
45 * 2. The type's implementation is referenced, e.g. through
46 * g_type_class_ref() or through g_type_create_instance() (this is
47 * being called by g_object_new()) or through one of the above done on
48 * a type derived from @new_type_id.
50 * 3. This causes the type system to load the type's implementation by
51 * calling g_type_plugin_use() and g_type_plugin_complete_type_info()
52 * on @new_type_plugin.
54 * 4. At some point the type's implementation isn't required anymore,
55 * e.g. after g_type_class_unref() or g_type_free_instance() (called
56 * when the reference count of an instance drops to zero).
58 * 5. This causes the type system to throw away the information retrieved
59 * from g_type_plugin_complete_type_info() and then it calls
60 * g_type_plugin_unuse() on @new_type_plugin.
62 * 6. Things may repeat from the second step.
64 * So basically, you need to implement a #GTypePlugin type that
65 * carries a use_count, once use_count goes from zero to one, you need
66 * to load the implementation to successfully handle the upcoming
67 * g_type_plugin_complete_type_info() call. Later, maybe after
68 * succeeding use/unuse calls, once use_count drops to zero, you can
69 * unload the implementation again. The type system makes sure to call
70 * g_type_plugin_use() and g_type_plugin_complete_type_info() again
71 * when the type is needed again.
73 * #GTypeModule is an implementation of #GTypePlugin that already
74 * implements most of this except for the actual module loading and
75 * unloading. It even handles multiple registered types per module.
79 /* --- functions --- */
81 g_type_plugin_get_type (void)
83 static GType type_plugin_type
= 0;
85 if (!type_plugin_type
)
87 const GTypeInfo type_plugin_info
= {
88 sizeof (GTypePluginClass
),
90 NULL
, /* base_finalize */
93 type_plugin_type
= g_type_register_static (G_TYPE_INTERFACE
, g_intern_static_string ("GTypePlugin"), &type_plugin_info
, 0);
96 return type_plugin_type
;
101 * @plugin: a #GTypePlugin
103 * Calls the @use_plugin function from the #GTypePluginClass of
104 * @plugin. There should be no need to use this function outside of
105 * the GObject type system itself.
108 g_type_plugin_use (GTypePlugin
*plugin
)
110 GTypePluginClass
*iface
;
112 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin
));
114 iface
= G_TYPE_PLUGIN_GET_CLASS (plugin
);
115 iface
->use_plugin (plugin
);
119 * g_type_plugin_unuse:
120 * @plugin: a #GTypePlugin
122 * Calls the @unuse_plugin function from the #GTypePluginClass of
123 * @plugin. There should be no need to use this function outside of
124 * the GObject type system itself.
127 g_type_plugin_unuse (GTypePlugin
*plugin
)
129 GTypePluginClass
*iface
;
131 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin
));
133 iface
= G_TYPE_PLUGIN_GET_CLASS (plugin
);
134 iface
->unuse_plugin (plugin
);
138 * g_type_plugin_complete_type_info:
139 * @plugin: a #GTypePlugin
140 * @g_type: the #GType whose info is completed
141 * @info: the #GTypeInfo struct to fill in
142 * @value_table: the #GTypeValueTable to fill in
144 * Calls the @complete_type_info function from the #GTypePluginClass of @plugin.
145 * There should be no need to use this function outside of the GObject
146 * type system itself.
149 g_type_plugin_complete_type_info (GTypePlugin
*plugin
,
152 GTypeValueTable
*value_table
)
154 GTypePluginClass
*iface
;
156 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin
));
157 g_return_if_fail (info
!= NULL
);
158 g_return_if_fail (value_table
!= NULL
);
160 iface
= G_TYPE_PLUGIN_GET_CLASS (plugin
);
161 iface
->complete_type_info (plugin
,
168 * g_type_plugin_complete_interface_info:
169 * @plugin: the #GTypePlugin
170 * @instance_type: the #GType of an instantiable type to which the interface
172 * @interface_type: the #GType of the interface whose info is completed
173 * @info: the #GInterfaceInfo to fill in
175 * Calls the @complete_interface_info function from the
176 * #GTypePluginClass of @plugin. There should be no need to use this
177 * function outside of the GObject type system itself.
180 g_type_plugin_complete_interface_info (GTypePlugin
*plugin
,
182 GType interface_type
,
183 GInterfaceInfo
*info
)
185 GTypePluginClass
*iface
;
187 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin
));
188 g_return_if_fail (info
!= NULL
);
190 iface
= G_TYPE_PLUGIN_GET_CLASS (plugin
);
191 iface
->complete_interface_info (plugin
,