ae832253b8a48412f8fbc88680ef4a5cfb5ce1c9
[platform/upstream/glib.git] / gio / giomodule.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include <string.h>
26
27 #include "giomodule.h"
28 #include "giomodule-priv.h"
29 #include "glocalfilemonitor.h"
30 #include "glocaldirectorymonitor.h"
31 #include "gnativevolumemonitor.h"
32 #include "gvfs.h"
33 #ifdef G_OS_UNIX
34 #include "gdesktopappinfo.h"
35 #endif
36 #include "gioalias.h"
37 #include <glib/gstdio.h>
38
39 /**
40  * SECTION:giomodule
41  * @short_description: Loadable GIO Modules
42  * @include: gio/gio.h
43  *
44  * Provides an interface and default functions for loading and unloading 
45  * modules. This is used internally to make GIO extensible, but can also
46  * be used by others to implement module loading.
47  * 
48  **/
49
50 /**
51  * SECTION:extensionpoints
52  * @short_description: Extension Points
53  * @include: gio.h
54  * @see_also: <link linkend="extending-gio">Extending GIO</link>
55  *
56  * #GIOExtensionPoint provides a mechanism for modules to extend the
57  * functionality of the library or application that loaded it in an 
58  * organized fashion.  
59  *
60  * An extension point is identified by a name, and it may optionally
61  * require that any implementation must by of a certain type (or derived
62  * thereof). Use g_io_extension_point_register() to register an
63  * extension point, and g_io_extension_point_set_required_type() to
64  * set a required type.
65  *
66  * A module can implement an extension point by specifying the #GType 
67  * that implements the functionality. Additionally, each implementation
68  * of an extension point has a name, and a priority. Use
69  * g_io_extension_point_implement() to implement an extension point.
70  * 
71  *  |[
72  *  GIOExtensionPoint *ep;
73  *
74  *  /&ast; Register an extension point &ast;/
75  *  ep = g_io_extension_point_register ("my-extension-point");
76  *  g_io_extension_point_set_required_type (ep, MY_TYPE_EXAMPLE);
77  *  ]|
78  *
79  *  |[
80  *  /&ast; Implement an extension point &ast;/
81  *  G_DEFINE_TYPE (MyExampleImpl, my_example_impl, MY_TYPE_EXAMPLE);
82  *  g_io_extension_point_implement ("my-extension-point",
83  *                                  my_example_impl_get_type (),
84  *                                  "my-example",
85  *                                  10);
86  *  ]|
87  *
88  *  It is up to the code that registered the extension point how
89  *  it uses the implementations that have been associated with it.
90  *  Depending on the use case, it may use all implementations, or
91  *  only the one with the highest priority, or pick a specific
92  *  one by name. 
93  */
94 struct _GIOModule {
95   GTypeModule parent_instance;
96
97   gchar       *filename;
98   GModule     *library;
99   gboolean     initialized; /* The module was loaded at least once */
100
101   void (* load)   (GIOModule *module);
102   void (* unload) (GIOModule *module);
103 };
104
105 struct _GIOModuleClass
106 {
107   GTypeModuleClass parent_class;
108
109 };
110
111 static void      g_io_module_finalize      (GObject      *object);
112 static gboolean  g_io_module_load_module   (GTypeModule  *gmodule);
113 static void      g_io_module_unload_module (GTypeModule  *gmodule);
114
115 struct _GIOExtension {
116   char *name;
117   GType type;
118   gint priority;
119 };
120
121 struct _GIOExtensionPoint {
122   GType required_type;
123   char *name;
124   GList *extensions;
125   GList *lazy_load_modules;
126 };
127
128 static GHashTable *extension_points = NULL;
129 G_LOCK_DEFINE_STATIC(extension_points);
130
131 G_DEFINE_TYPE (GIOModule, g_io_module, G_TYPE_TYPE_MODULE);
132
133 static void
134 g_io_module_class_init (GIOModuleClass *class)
135 {
136   GObjectClass     *object_class      = G_OBJECT_CLASS (class);
137   GTypeModuleClass *type_module_class = G_TYPE_MODULE_CLASS (class);
138
139   object_class->finalize     = g_io_module_finalize;
140
141   type_module_class->load    = g_io_module_load_module;
142   type_module_class->unload  = g_io_module_unload_module;
143 }
144
145 static void
146 g_io_module_init (GIOModule *module)
147 {
148 }
149
150 static void
151 g_io_module_finalize (GObject *object)
152 {
153   GIOModule *module = G_IO_MODULE (object);
154
155   g_free (module->filename);
156
157   G_OBJECT_CLASS (g_io_module_parent_class)->finalize (object);
158 }
159
160 static gboolean
161 g_io_module_load_module (GTypeModule *gmodule)
162 {
163   GIOModule *module = G_IO_MODULE (gmodule);
164
165   if (!module->filename)
166     {
167       g_warning ("GIOModule path not set");
168       return FALSE;
169     }
170
171   module->library = g_module_open (module->filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
172
173   if (!module->library)
174     {
175       g_printerr ("%s\n", g_module_error ());
176       return FALSE;
177     }
178
179   /* Make sure that the loaded library contains the required methods */
180   if (! g_module_symbol (module->library,
181                          "g_io_module_load",
182                          (gpointer) &module->load) ||
183       ! g_module_symbol (module->library,
184                          "g_io_module_unload",
185                          (gpointer) &module->unload))
186     {
187       g_printerr ("%s\n", g_module_error ());
188       g_module_close (module->library);
189
190       return FALSE;
191     }
192
193   /* Initialize the loaded module */
194   module->load (module);
195   module->initialized = TRUE;
196
197   return TRUE;
198 }
199
200 static void
201 g_io_module_unload_module (GTypeModule *gmodule)
202 {
203   GIOModule *module = G_IO_MODULE (gmodule);
204
205   module->unload (module);
206
207   g_module_close (module->library);
208   module->library = NULL;
209
210   module->load   = NULL;
211   module->unload = NULL;
212 }
213
214 /**
215  * g_io_module_new:
216  * @filename: filename of the shared library module.
217  * 
218  * Creates a new GIOModule that will load the specific
219  * shared library when in use.
220  * 
221  * Returns: a #GIOModule from given @filename, 
222  * or %NULL on error.
223  **/
224 GIOModule *
225 g_io_module_new (const gchar *filename)
226 {
227   GIOModule *module;
228
229   g_return_val_if_fail (filename != NULL, NULL);
230
231   module = g_object_new (G_IO_TYPE_MODULE, NULL);
232   module->filename = g_strdup (filename);
233
234   return module;
235 }
236
237 static gboolean
238 is_valid_module_name (const gchar *basename)
239 {
240 #if !defined(G_OS_WIN32) && !defined(G_WITH_CYGWIN)
241   return
242     g_str_has_prefix (basename, "lib") &&
243     g_str_has_suffix (basename, ".so");
244 #else
245   return g_str_has_suffix (basename, ".dll");
246 #endif
247 }
248
249 /**
250  * g_io_modules_scan_all_in_directory:
251  * @dirname: pathname for a directory containing modules to scan.
252  *
253  * Scans all the modules in the specified directory, ensuring that
254  * any extension point implemented by a module is registered.
255  *
256  * This may not actually load and initialize all the types in each
257  * module, some modules may be lazily loaded and initialized when
258  * an extension point it implementes is used with e.g.
259  * g_io_extension_point_get_extensions() or
260  * g_io_extension_point_get_extension_by_name().
261  *
262  * If you need to guarantee that all types are loaded in all the modules,
263  * use g_io_modules_scan_all_in_directory().
264  *
265  * Since: 2.24
266  **/
267 void
268 g_io_modules_scan_all_in_directory (const char *dirname)
269 {
270   const gchar *name;
271   char *filename;
272   GDir *dir;
273   struct stat statbuf;
274   char *data;
275   time_t cache_mtime;
276   GHashTable *cache;
277
278   if (!g_module_supported ())
279     return;
280
281   dir = g_dir_open (dirname, 0, NULL);
282   if (!dir)
283     return;
284
285   filename = g_build_filename (dirname, "giomodule.cache", NULL);
286
287   cache = g_hash_table_new_full (g_str_hash, g_str_equal,
288                                  g_free, (GDestroyNotify)g_strfreev);
289
290   cache_mtime = 0;
291   if (g_stat (filename, &statbuf) == 0 &&
292       g_file_get_contents (filename, &data, NULL, NULL))
293     {
294       char **lines;
295       int i;
296
297       /* Cache mtime is the time the cache file was created, any file
298        * that has a ctime before this was created then and not modified
299        * since then (userspace can't change ctime). Its possible to change
300        * the ctime forward without changing the file content, by e.g.
301        * chmoding the file, but this is uncommon and will only cause us
302        * to not use the cache so will not cause bugs.
303        */
304       cache_mtime = statbuf.st_mtime;
305
306       lines = g_strsplit (data, "\n", -1);
307       g_free (data);
308
309       for (i = 0;  lines[i] != NULL; i++)
310         {
311           char *line = lines[i];
312           char *file;
313           char *colon;
314           char **extension_points;
315
316           if (line[0] == '#')
317             continue;
318
319           colon = strchr (line, ':');
320           if (colon == NULL || line == colon)
321             continue; /* Invalid line, ignore */
322
323           *colon = 0; /* terminate filename */
324           file = strdup (line);
325           colon++; /* after colon */
326
327           while (g_ascii_isspace (*colon))
328             colon++;
329
330           extension_points = g_strsplit (colon, ",", -1);
331           g_hash_table_insert (cache, g_strdup (file), extension_points);
332         }
333       g_strfreev (lines);
334     }
335
336   while ((name = g_dir_read_name (dir)))
337     {
338       if (is_valid_module_name (name))
339         {
340           GIOExtensionPoint *extension_point;
341           GIOModule *module;
342           gchar *path;
343           char **extension_points;
344           int i;
345
346           path = g_build_filename (dirname, name, NULL);
347           module = g_io_module_new (path);
348
349           extension_points = g_hash_table_lookup (cache, name);
350           if (extension_points != NULL &&
351               g_stat (path, &statbuf) == 0 &&
352               statbuf.st_ctime <= cache_mtime)
353             {
354               /* Lazy load/init the library when first required */
355               for (i = 0; extension_points[i] != NULL; i++)
356                 {
357                   extension_point =
358                     g_io_extension_point_register (extension_points[i]);
359                   extension_point->lazy_load_modules =
360                     g_list_prepend (extension_point->lazy_load_modules,
361                                     module);
362                 }
363             }
364           else
365             {
366               /* Try to load and init types */
367               if (g_type_module_use (G_TYPE_MODULE (module)))
368                 g_type_module_unuse (G_TYPE_MODULE (module)); /* Unload */
369               else
370                 { /* Failure to load */
371                   g_printerr ("Failed to load module: %s\n", path);
372                   g_object_unref (module);
373                   g_free (path);
374                   continue;
375                 }
376             }
377
378           g_free (path);
379         }
380     }
381
382   g_dir_close (dir);
383
384   g_hash_table_destroy (cache);
385 }
386
387
388 /**
389  * g_io_modules_load_all_in_directory:
390  * @dirname: pathname for a directory containing modules to load.
391  *
392  * Loads all the modules in the specified directory.
393  *
394  * If don't require all modules to be initialized (and thus registering
395  * all gtypes) then you can use g_io_modules_scan_all_in_directory()
396  * which allows delayed/lazy loading of modules.
397  *
398  * Returns: a list of #GIOModules loaded from the directory,
399  *      All the modules are loaded into memory, if you want to
400  *      unload them (enabling on-demand loading) you must call
401  *      g_type_module_unuse() on all the modules. Free the list
402  *      with g_list_free().
403  **/
404 GList *
405 g_io_modules_load_all_in_directory (const char *dirname)
406 {
407   const gchar *name;
408   GDir        *dir;
409   GList *modules;
410
411   if (!g_module_supported ())
412     return NULL;
413
414   dir = g_dir_open (dirname, 0, NULL);
415   if (!dir)
416     return NULL;
417
418   modules = NULL;
419   while ((name = g_dir_read_name (dir)))
420     {
421       if (is_valid_module_name (name))
422         {
423           GIOModule *module;
424           gchar     *path;
425
426           path = g_build_filename (dirname, name, NULL);
427           module = g_io_module_new (path);
428
429           if (!g_type_module_use (G_TYPE_MODULE (module)))
430             {
431               g_printerr ("Failed to load module: %s\n", path);
432               g_object_unref (module);
433               g_free (path);
434               continue;
435             }
436           
437           g_free (path);
438
439           modules = g_list_prepend (modules, module);
440         }
441     }
442   
443   g_dir_close (dir);
444
445   return modules;
446 }
447
448 G_LOCK_DEFINE_STATIC (registered_extensions);
449 G_LOCK_DEFINE_STATIC (loaded_dirs);
450
451 extern GType _g_fen_directory_monitor_get_type (void);
452 extern GType _g_fen_file_monitor_get_type (void);
453 extern GType _g_inotify_directory_monitor_get_type (void);
454 extern GType _g_inotify_file_monitor_get_type (void);
455 extern GType _g_unix_volume_monitor_get_type (void);
456 extern GType _g_local_vfs_get_type (void);
457
458 extern GType _g_win32_volume_monitor_get_type (void);
459 extern GType g_win32_directory_monitor_get_type (void);
460 extern GType _g_winhttp_vfs_get_type (void);
461
462 #ifdef G_PLATFORM_WIN32
463
464 #include <windows.h>
465
466 static HMODULE gio_dll = NULL;
467
468 #ifdef DLL_EXPORT
469
470 BOOL WINAPI
471 DllMain (HINSTANCE hinstDLL,
472          DWORD     fdwReason,
473          LPVOID    lpvReserved)
474 {
475   if (fdwReason == DLL_PROCESS_ATTACH)
476       gio_dll = hinstDLL;
477
478   return TRUE;
479 }
480
481 #endif
482
483 #undef GIO_MODULE_DIR
484
485 /* GIO_MODULE_DIR is used only in code called just once,
486  * so no problem leaking this
487  */
488 #define GIO_MODULE_DIR \
489   g_build_filename (g_win32_get_package_installation_directory_of_module (gio_dll), \
490                     "lib/gio/modules", \
491                     NULL)
492
493 #endif
494
495 void
496 _g_io_modules_ensure_extension_points_registered (void)
497 {
498   static gboolean registered_extensions = FALSE;
499   GIOExtensionPoint *ep;
500
501   G_LOCK (registered_extensions);
502   
503   if (!registered_extensions)
504     {
505       registered_extensions = TRUE;
506       
507 #ifdef G_OS_UNIX
508       ep = g_io_extension_point_register (G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME);
509       g_io_extension_point_set_required_type (ep, G_TYPE_DESKTOP_APP_INFO_LOOKUP);
510 #endif
511       
512       ep = g_io_extension_point_register (G_LOCAL_DIRECTORY_MONITOR_EXTENSION_POINT_NAME);
513       g_io_extension_point_set_required_type (ep, G_TYPE_LOCAL_DIRECTORY_MONITOR);
514       
515       ep = g_io_extension_point_register (G_LOCAL_FILE_MONITOR_EXTENSION_POINT_NAME);
516       g_io_extension_point_set_required_type (ep, G_TYPE_LOCAL_FILE_MONITOR);
517       
518       ep = g_io_extension_point_register (G_VOLUME_MONITOR_EXTENSION_POINT_NAME);
519       g_io_extension_point_set_required_type (ep, G_TYPE_VOLUME_MONITOR);
520       
521       ep = g_io_extension_point_register (G_NATIVE_VOLUME_MONITOR_EXTENSION_POINT_NAME);
522       g_io_extension_point_set_required_type (ep, G_TYPE_NATIVE_VOLUME_MONITOR);
523       
524       ep = g_io_extension_point_register (G_VFS_EXTENSION_POINT_NAME);
525       g_io_extension_point_set_required_type (ep, G_TYPE_VFS);
526
527       ep = g_io_extension_point_register ("gsettings-backend");
528       g_io_extension_point_set_required_type (ep, G_TYPE_OBJECT);
529     }
530   
531   G_UNLOCK (registered_extensions);
532  }
533
534 void
535 _g_io_modules_ensure_loaded (void)
536 {
537   static gboolean loaded_dirs = FALSE;
538   const char *module_path;
539
540   _g_io_modules_ensure_extension_points_registered ();
541   
542   G_LOCK (loaded_dirs);
543
544   if (!loaded_dirs)
545     {
546       loaded_dirs = TRUE;
547
548       g_io_modules_scan_all_in_directory (GIO_MODULE_DIR);
549
550       module_path = g_getenv ("GIO_EXTRA_MODULES");
551
552       if (module_path)
553         {
554           gchar **paths;
555           int i;
556
557           paths = g_strsplit (module_path, ":", 0);
558
559           for (i = 0; paths[i] != NULL; i++)
560             g_io_modules_scan_all_in_directory (paths[i]);
561
562           g_strfreev (paths);
563         }
564
565       /* Initialize types from built-in "modules" */
566 #if defined(HAVE_SYS_INOTIFY_H) || defined(HAVE_LINUX_INOTIFY_H)
567       _g_inotify_directory_monitor_get_type ();
568       _g_inotify_file_monitor_get_type ();
569 #endif
570 #if defined(HAVE_FEN)
571       _g_fen_directory_monitor_get_type ();
572       _g_fen_file_monitor_get_type ();
573 #endif
574 #ifdef G_OS_WIN32
575       _g_win32_volume_monitor_get_type ();
576       g_win32_directory_monitor_get_type ();
577 #endif
578 #ifdef G_OS_UNIX
579       _g_unix_volume_monitor_get_type ();
580 #endif
581 #ifdef G_OS_WIN32
582       _g_winhttp_vfs_get_type ();
583 #endif
584       _g_local_vfs_get_type ();
585     }
586
587   G_UNLOCK (loaded_dirs);
588 }
589
590 static void
591 g_io_extension_point_free (GIOExtensionPoint *ep)
592 {
593   g_free (ep->name);
594   g_free (ep);
595 }
596
597 /**
598  * g_io_extension_point_register:
599  * @name: The name of the extension point
600  *
601  * Registers an extension point.
602  *
603  * Returns: the new #GIOExtensionPoint. This object is owned by GIO
604  *    and should not be freed
605  */
606 GIOExtensionPoint *
607 g_io_extension_point_register (const char *name)
608 {
609   GIOExtensionPoint *ep;
610   
611   G_LOCK (extension_points);
612   if (extension_points == NULL)
613     extension_points = g_hash_table_new_full (g_str_hash,
614                                               g_str_equal,
615                                               NULL,
616                                               (GDestroyNotify)g_io_extension_point_free);
617
618   ep = g_hash_table_lookup (extension_points, name);
619   if (ep != NULL)
620     {
621       G_UNLOCK (extension_points);
622       return ep;
623     }
624
625   ep = g_new0 (GIOExtensionPoint, 1);
626   ep->name = g_strdup (name);
627   
628   g_hash_table_insert (extension_points, ep->name, ep);
629   
630   G_UNLOCK (extension_points);
631
632   return ep;
633 }
634
635 /**
636  * g_io_extension_point_lookup:
637  * @name: the name of the extension point
638  *
639  * Looks up an existing extension point.
640  *
641  * Returns: the #GIOExtensionPoint, or %NULL if there is no
642  *    registered extension point with the given name
643  */
644 GIOExtensionPoint *
645 g_io_extension_point_lookup (const char *name)
646 {
647   GIOExtensionPoint *ep;
648
649   G_LOCK (extension_points);
650   ep = NULL;
651   if (extension_points != NULL)
652     ep = g_hash_table_lookup (extension_points, name);
653   
654   G_UNLOCK (extension_points);
655
656   return ep;
657   
658 }
659
660 /**
661  * g_io_extension_point_set_required_type:
662  * @extension_point: a #GIOExtensionPoint
663  * @type: the #GType to require
664  *
665  * Sets the required type for @extension_point to @type. 
666  * All implementations must henceforth have this type.
667  */
668 void
669 g_io_extension_point_set_required_type (GIOExtensionPoint *extension_point,
670                                         GType              type)
671 {
672   extension_point->required_type = type;
673 }
674
675 /**
676  * g_io_extension_point_get_required_type:
677  * @extension_point: a #GIOExtensionPoint
678  *
679  * Gets the required type for @extension_point.
680  *
681  * Returns: the #GType that all implementations must have, 
682  *     or #G_TYPE_INVALID if the extension point has no required type
683  */
684 GType
685 g_io_extension_point_get_required_type (GIOExtensionPoint *extension_point)
686 {
687   return extension_point->required_type;
688 }
689
690 void
691 lazy_load_modules (GIOExtensionPoint *extension_point)
692 {
693   GIOModule *module;
694   GList *l;
695
696   for (l = extension_point->lazy_load_modules; l != NULL; l = l->next)
697     {
698       module = l->data;
699
700       if (!module->initialized)
701         {
702           if (g_type_module_use (G_TYPE_MODULE (module)))
703             g_type_module_unuse (G_TYPE_MODULE (module)); /* Unload */
704           else
705             g_printerr ("Failed to load module: %s\n",
706                         module->filename);
707         }
708     }
709 }
710
711 /**
712  * g_io_extension_point_get_extensions:
713  * @extension_point: a #GIOExtensionPoint
714  *
715  * Gets a list of all extensions that implement this extension point.
716  * The list is sorted by priority, beginning with the highest priority.
717  * 
718  * Returns: a #GList of #GIOExtension<!-- -->s. The list is owned by
719  *   GIO and should not be modified
720  */
721 GList *
722 g_io_extension_point_get_extensions (GIOExtensionPoint *extension_point)
723 {
724   lazy_load_modules (extension_point);
725   return extension_point->extensions;
726 }
727
728 /**
729  * g_io_extension_point_get_extension_by_name:
730  * @extension_point: a #GIOExtensionPoint
731  * @name: the name of the extension to get
732  *
733  * Finds a #GIOExtension for an extension point by name.
734  *
735  * Returns: the #GIOExtension for @extension_point that has the
736  *    given name, or %NULL if there is no extension with that name
737  */
738 GIOExtension *
739 g_io_extension_point_get_extension_by_name (GIOExtensionPoint *extension_point,
740                                             const char        *name)
741 {
742   GList *l;
743
744   lazy_load_modules (extension_point);
745   for (l = extension_point->extensions; l != NULL; l = l->next)
746     {
747       GIOExtension *e = l->data;
748
749       if (e->name != NULL &&
750           strcmp (e->name, name) == 0)
751         return e;
752     }
753   
754   return NULL;
755 }
756
757 static gint
758 extension_prio_compare (gconstpointer  a,
759                         gconstpointer  b)
760 {
761   const GIOExtension *extension_a = a, *extension_b = b;
762
763   return extension_b->priority - extension_a->priority;
764 }
765
766 /**
767  * g_io_extension_point_implement:
768  * @extension_point_name: the name of the extension point
769  * @type: the #GType to register as extension 
770  * @extension_name: the name for the extension
771  * @priority: the priority for the extension
772  *
773  * Registers @type as extension for the extension point with name
774  * @extension_point_name. 
775  *
776  * If @type has already been registered as an extension for this 
777  * extension point, the existing #GIOExtension object is returned.
778  *
779  * Returns: a #GIOExtension object for #GType
780  */
781 GIOExtension *
782 g_io_extension_point_implement (const char *extension_point_name,
783                                 GType       type,
784                                 const char *extension_name,
785                                 gint        priority)
786 {
787   GIOExtensionPoint *extension_point;
788   GIOExtension *extension;
789   GList *l;
790
791   g_return_val_if_fail (extension_point_name != NULL, NULL);
792
793   extension_point = g_io_extension_point_lookup (extension_point_name);
794   if (extension_point == NULL)
795     {
796       g_warning ("Tried to implement non-registered extension point %s", extension_point_name);
797       return NULL;
798     }
799   
800   if (extension_point->required_type != 0 &&
801       !g_type_is_a (type, extension_point->required_type))
802     {
803       g_warning ("Tried to register an extension of the type %s to extension point %s. "
804                  "Expected type is %s.",
805                  g_type_name (type),
806                  extension_point_name, 
807                  g_type_name (extension_point->required_type));
808       return NULL;
809     }      
810
811   /* It's safe to register the same type multiple times */
812   for (l = extension_point->extensions; l != NULL; l = l->next)
813     {
814       extension = l->data;
815       if (extension->type == type)
816         return extension;
817     }
818   
819   extension = g_slice_new0 (GIOExtension);
820   extension->type = type;
821   extension->name = g_strdup (extension_name);
822   extension->priority = priority;
823   
824   extension_point->extensions = g_list_insert_sorted (extension_point->extensions,
825                                                       extension, extension_prio_compare);
826   
827   return extension;
828 }
829
830 /**
831  * g_io_extension_ref_class:
832  * @extension: a #GIOExtension
833  *
834  * Gets a reference to the class for the type that is 
835  * associated with @extension.
836  *
837  * Returns: the #GTypeClass for the type of @extension
838  */
839 GTypeClass *
840 g_io_extension_ref_class (GIOExtension *extension)
841 {
842   return g_type_class_ref (extension->type);
843 }
844
845 /**
846  * g_io_extension_get_type:
847  * @extension: a #GIOExtension
848  *
849  * Gets the type associated with @extension.
850  *
851  * Returns: the type of @extension
852  */
853 GType
854 g_io_extension_get_type (GIOExtension *extension)
855 {
856   return extension->type;
857 }
858
859 /**
860  * g_io_extension_get_name:
861  * @extension: a #GIOExtension
862  *
863  * Gets the name under which @extension was registered.
864  *
865  * Note that the same type may be registered as extension
866  * for multiple extension points, under different names.
867  *
868  * Returns: the name of @extension.
869  */
870 const char *
871 g_io_extension_get_name (GIOExtension *extension)
872 {
873   return extension->name;
874 }
875
876 /**
877  * g_io_extension_get_priority:
878  * @extension: a #GIOExtension
879  *
880  * Gets the priority with which @extension was registered.
881  *
882  * Returns: the priority of @extension
883  */
884 gint
885 g_io_extension_get_priority (GIOExtension *extension)
886 {
887   return extension->priority;
888 }
889
890 #define __G_IO_MODULE_C__
891 #include "gioaliasdef.c"