1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
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.
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.
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.
20 * Author: Alexander Larsson <alexl@redhat.com>
27 #include "giomodule.h"
28 #include "giomodule-priv.h"
29 #include "glocalfilemonitor.h"
30 #include "glocaldirectorymonitor.h"
31 #include "gnativevolumemonitor.h"
34 #include "gdesktopappinfo.h"
37 #include <glib/gstdio.h>
41 * @short_description: Loadable GIO Modules
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.
51 * SECTION:extensionpoints
52 * @short_description: Extension Points
54 * @see_also: <link linkend="extending-gio">Extending GIO</link>
56 * #GIOExtensionPoint provides a mechanism for modules to extend the
57 * functionality of the library or application that loaded it in an
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.
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.
72 * GIOExtensionPoint *ep;
74 * /* Register an extension point */
75 * ep = g_io_extension_point_register ("my-extension-point");
76 * g_io_extension_point_set_required_type (ep, MY_TYPE_EXAMPLE);
80 * /* Implement an extension point */
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 (),
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
95 GTypeModule parent_instance;
99 gboolean initialized; /* The module was loaded at least once */
101 void (* load) (GIOModule *module);
102 void (* unload) (GIOModule *module);
105 struct _GIOModuleClass
107 GTypeModuleClass parent_class;
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);
115 struct _GIOExtension {
121 struct _GIOExtensionPoint {
125 GList *lazy_load_modules;
128 static GHashTable *extension_points = NULL;
129 G_LOCK_DEFINE_STATIC(extension_points);
131 G_DEFINE_TYPE (GIOModule, g_io_module, G_TYPE_TYPE_MODULE);
134 g_io_module_class_init (GIOModuleClass *class)
136 GObjectClass *object_class = G_OBJECT_CLASS (class);
137 GTypeModuleClass *type_module_class = G_TYPE_MODULE_CLASS (class);
139 object_class->finalize = g_io_module_finalize;
141 type_module_class->load = g_io_module_load_module;
142 type_module_class->unload = g_io_module_unload_module;
146 g_io_module_init (GIOModule *module)
151 g_io_module_finalize (GObject *object)
153 GIOModule *module = G_IO_MODULE (object);
155 g_free (module->filename);
157 G_OBJECT_CLASS (g_io_module_parent_class)->finalize (object);
161 g_io_module_load_module (GTypeModule *gmodule)
163 GIOModule *module = G_IO_MODULE (gmodule);
165 if (!module->filename)
167 g_warning ("GIOModule path not set");
171 module->library = g_module_open (module->filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
173 if (!module->library)
175 g_printerr ("%s\n", g_module_error ());
179 /* Make sure that the loaded library contains the required methods */
180 if (! g_module_symbol (module->library,
182 (gpointer) &module->load) ||
183 ! g_module_symbol (module->library,
184 "g_io_module_unload",
185 (gpointer) &module->unload))
187 g_printerr ("%s\n", g_module_error ());
188 g_module_close (module->library);
193 /* Initialize the loaded module */
194 module->load (module);
195 module->initialized = TRUE;
201 g_io_module_unload_module (GTypeModule *gmodule)
203 GIOModule *module = G_IO_MODULE (gmodule);
205 module->unload (module);
207 g_module_close (module->library);
208 module->library = NULL;
211 module->unload = NULL;
216 * @filename: filename of the shared library module.
218 * Creates a new GIOModule that will load the specific
219 * shared library when in use.
221 * Returns: a #GIOModule from given @filename,
225 g_io_module_new (const gchar *filename)
229 g_return_val_if_fail (filename != NULL, NULL);
231 module = g_object_new (G_IO_TYPE_MODULE, NULL);
232 module->filename = g_strdup (filename);
238 is_valid_module_name (const gchar *basename)
240 #if !defined(G_OS_WIN32) && !defined(G_WITH_CYGWIN)
242 g_str_has_prefix (basename, "lib") &&
243 g_str_has_suffix (basename, ".so");
245 return g_str_has_suffix (basename, ".dll");
250 * g_io_modules_scan_all_in_directory:
251 * @dirname: pathname for a directory containing modules to scan.
253 * Scans all the modules in the specified directory, ensuring that
254 * any extension point implemented by a module is registered.
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().
262 * If you need to guarantee that all types are loaded in all the modules,
263 * use g_io_modules_scan_all_in_directory().
268 g_io_modules_scan_all_in_directory (const char *dirname)
278 if (!g_module_supported ())
281 dir = g_dir_open (dirname, 0, NULL);
285 filename = g_build_filename (dirname, "giomodule.cache", NULL);
287 cache = g_hash_table_new_full (g_str_hash, g_str_equal,
288 g_free, (GDestroyNotify)g_strfreev);
291 if (g_stat (filename, &statbuf) == 0 &&
292 g_file_get_contents (filename, &data, NULL, NULL))
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.
304 cache_mtime = statbuf.st_mtime;
306 lines = g_strsplit (data, "\n", -1);
309 for (i = 0; lines[i] != NULL; i++)
311 char *line = lines[i];
314 char **extension_points;
319 colon = strchr (line, ':');
320 if (colon == NULL || line == colon)
321 continue; /* Invalid line, ignore */
323 *colon = 0; /* terminate filename */
324 file = strdup (line);
325 colon++; /* after colon */
327 while (g_ascii_isspace (*colon))
330 extension_points = g_strsplit (colon, ",", -1);
331 g_hash_table_insert (cache, g_strdup (file), extension_points);
336 while ((name = g_dir_read_name (dir)))
338 if (is_valid_module_name (name))
340 GIOExtensionPoint *extension_point;
343 char **extension_points;
346 path = g_build_filename (dirname, name, NULL);
347 module = g_io_module_new (path);
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)
354 /* Lazy load/init the library when first required */
355 for (i = 0; extension_points[i] != NULL; i++)
358 g_io_extension_point_register (extension_points[i]);
359 extension_point->lazy_load_modules =
360 g_list_prepend (extension_point->lazy_load_modules,
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 */
370 { /* Failure to load */
371 g_printerr ("Failed to load module: %s\n", path);
372 g_object_unref (module);
384 g_hash_table_destroy (cache);
391 * g_io_modules_load_all_in_directory:
392 * @dirname: pathname for a directory containing modules to load.
394 * Loads all the modules in the specified directory.
396 * If don't require all modules to be initialized (and thus registering
397 * all gtypes) then you can use g_io_modules_scan_all_in_directory()
398 * which allows delayed/lazy loading of modules.
400 * Returns: a list of #GIOModules loaded from the directory,
401 * All the modules are loaded into memory, if you want to
402 * unload them (enabling on-demand loading) you must call
403 * g_type_module_unuse() on all the modules. Free the list
404 * with g_list_free().
407 g_io_modules_load_all_in_directory (const char *dirname)
413 if (!g_module_supported ())
416 dir = g_dir_open (dirname, 0, NULL);
421 while ((name = g_dir_read_name (dir)))
423 if (is_valid_module_name (name))
428 path = g_build_filename (dirname, name, NULL);
429 module = g_io_module_new (path);
431 if (!g_type_module_use (G_TYPE_MODULE (module)))
433 g_printerr ("Failed to load module: %s\n", path);
434 g_object_unref (module);
441 modules = g_list_prepend (modules, module);
450 G_LOCK_DEFINE_STATIC (registered_extensions);
451 G_LOCK_DEFINE_STATIC (loaded_dirs);
453 extern GType _g_fen_directory_monitor_get_type (void);
454 extern GType _g_fen_file_monitor_get_type (void);
455 extern GType _g_inotify_directory_monitor_get_type (void);
456 extern GType _g_inotify_file_monitor_get_type (void);
457 extern GType _g_unix_volume_monitor_get_type (void);
458 extern GType _g_local_vfs_get_type (void);
460 extern GType _g_win32_volume_monitor_get_type (void);
461 extern GType g_win32_directory_monitor_get_type (void);
462 extern GType _g_winhttp_vfs_get_type (void);
464 #ifdef G_PLATFORM_WIN32
468 static HMODULE gio_dll = NULL;
473 DllMain (HINSTANCE hinstDLL,
477 if (fdwReason == DLL_PROCESS_ATTACH)
485 #undef GIO_MODULE_DIR
487 /* GIO_MODULE_DIR is used only in code called just once,
488 * so no problem leaking this
490 #define GIO_MODULE_DIR \
491 g_build_filename (g_win32_get_package_installation_directory_of_module (gio_dll), \
498 _g_io_modules_ensure_extension_points_registered (void)
500 static gboolean registered_extensions = FALSE;
501 GIOExtensionPoint *ep;
503 G_LOCK (registered_extensions);
505 if (!registered_extensions)
507 registered_extensions = TRUE;
510 ep = g_io_extension_point_register (G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME);
511 g_io_extension_point_set_required_type (ep, G_TYPE_DESKTOP_APP_INFO_LOOKUP);
514 ep = g_io_extension_point_register (G_LOCAL_DIRECTORY_MONITOR_EXTENSION_POINT_NAME);
515 g_io_extension_point_set_required_type (ep, G_TYPE_LOCAL_DIRECTORY_MONITOR);
517 ep = g_io_extension_point_register (G_LOCAL_FILE_MONITOR_EXTENSION_POINT_NAME);
518 g_io_extension_point_set_required_type (ep, G_TYPE_LOCAL_FILE_MONITOR);
520 ep = g_io_extension_point_register (G_VOLUME_MONITOR_EXTENSION_POINT_NAME);
521 g_io_extension_point_set_required_type (ep, G_TYPE_VOLUME_MONITOR);
523 ep = g_io_extension_point_register (G_NATIVE_VOLUME_MONITOR_EXTENSION_POINT_NAME);
524 g_io_extension_point_set_required_type (ep, G_TYPE_NATIVE_VOLUME_MONITOR);
526 ep = g_io_extension_point_register (G_VFS_EXTENSION_POINT_NAME);
527 g_io_extension_point_set_required_type (ep, G_TYPE_VFS);
529 ep = g_io_extension_point_register ("gsettings-backend");
530 g_io_extension_point_set_required_type (ep, G_TYPE_OBJECT);
533 G_UNLOCK (registered_extensions);
537 _g_io_modules_ensure_loaded (void)
539 static gboolean loaded_dirs = FALSE;
540 const char *module_path;
542 _g_io_modules_ensure_extension_points_registered ();
544 G_LOCK (loaded_dirs);
550 g_io_modules_scan_all_in_directory (GIO_MODULE_DIR);
552 module_path = g_getenv ("GIO_EXTRA_MODULES");
559 paths = g_strsplit (module_path, ":", 0);
561 for (i = 0; paths[i] != NULL; i++)
562 g_io_modules_scan_all_in_directory (paths[i]);
567 /* Initialize types from built-in "modules" */
568 #if defined(HAVE_SYS_INOTIFY_H) || defined(HAVE_LINUX_INOTIFY_H)
569 _g_inotify_directory_monitor_get_type ();
570 _g_inotify_file_monitor_get_type ();
572 #if defined(HAVE_FEN)
573 _g_fen_directory_monitor_get_type ();
574 _g_fen_file_monitor_get_type ();
577 _g_win32_volume_monitor_get_type ();
578 g_win32_directory_monitor_get_type ();
581 _g_unix_volume_monitor_get_type ();
584 _g_winhttp_vfs_get_type ();
586 _g_local_vfs_get_type ();
589 G_UNLOCK (loaded_dirs);
593 g_io_extension_point_free (GIOExtensionPoint *ep)
600 * g_io_extension_point_register:
601 * @name: The name of the extension point
603 * Registers an extension point.
605 * Returns: the new #GIOExtensionPoint. This object is owned by GIO
606 * and should not be freed
609 g_io_extension_point_register (const char *name)
611 GIOExtensionPoint *ep;
613 G_LOCK (extension_points);
614 if (extension_points == NULL)
615 extension_points = g_hash_table_new_full (g_str_hash,
618 (GDestroyNotify)g_io_extension_point_free);
620 ep = g_hash_table_lookup (extension_points, name);
623 G_UNLOCK (extension_points);
627 ep = g_new0 (GIOExtensionPoint, 1);
628 ep->name = g_strdup (name);
630 g_hash_table_insert (extension_points, ep->name, ep);
632 G_UNLOCK (extension_points);
638 * g_io_extension_point_lookup:
639 * @name: the name of the extension point
641 * Looks up an existing extension point.
643 * Returns: the #GIOExtensionPoint, or %NULL if there is no
644 * registered extension point with the given name
647 g_io_extension_point_lookup (const char *name)
649 GIOExtensionPoint *ep;
651 G_LOCK (extension_points);
653 if (extension_points != NULL)
654 ep = g_hash_table_lookup (extension_points, name);
656 G_UNLOCK (extension_points);
663 * g_io_extension_point_set_required_type:
664 * @extension_point: a #GIOExtensionPoint
665 * @type: the #GType to require
667 * Sets the required type for @extension_point to @type.
668 * All implementations must henceforth have this type.
671 g_io_extension_point_set_required_type (GIOExtensionPoint *extension_point,
674 extension_point->required_type = type;
678 * g_io_extension_point_get_required_type:
679 * @extension_point: a #GIOExtensionPoint
681 * Gets the required type for @extension_point.
683 * Returns: the #GType that all implementations must have,
684 * or #G_TYPE_INVALID if the extension point has no required type
687 g_io_extension_point_get_required_type (GIOExtensionPoint *extension_point)
689 return extension_point->required_type;
693 lazy_load_modules (GIOExtensionPoint *extension_point)
698 for (l = extension_point->lazy_load_modules; l != NULL; l = l->next)
702 if (!module->initialized)
704 if (g_type_module_use (G_TYPE_MODULE (module)))
705 g_type_module_unuse (G_TYPE_MODULE (module)); /* Unload */
707 g_printerr ("Failed to load module: %s\n",
714 * g_io_extension_point_get_extensions:
715 * @extension_point: a #GIOExtensionPoint
717 * Gets a list of all extensions that implement this extension point.
718 * The list is sorted by priority, beginning with the highest priority.
720 * Returns: a #GList of #GIOExtension<!-- -->s. The list is owned by
721 * GIO and should not be modified
724 g_io_extension_point_get_extensions (GIOExtensionPoint *extension_point)
726 lazy_load_modules (extension_point);
727 return extension_point->extensions;
731 * g_io_extension_point_get_extension_by_name:
732 * @extension_point: a #GIOExtensionPoint
733 * @name: the name of the extension to get
735 * Finds a #GIOExtension for an extension point by name.
737 * Returns: the #GIOExtension for @extension_point that has the
738 * given name, or %NULL if there is no extension with that name
741 g_io_extension_point_get_extension_by_name (GIOExtensionPoint *extension_point,
746 lazy_load_modules (extension_point);
747 for (l = extension_point->extensions; l != NULL; l = l->next)
749 GIOExtension *e = l->data;
751 if (e->name != NULL &&
752 strcmp (e->name, name) == 0)
760 extension_prio_compare (gconstpointer a,
763 const GIOExtension *extension_a = a, *extension_b = b;
765 return extension_b->priority - extension_a->priority;
769 * g_io_extension_point_implement:
770 * @extension_point_name: the name of the extension point
771 * @type: the #GType to register as extension
772 * @extension_name: the name for the extension
773 * @priority: the priority for the extension
775 * Registers @type as extension for the extension point with name
776 * @extension_point_name.
778 * If @type has already been registered as an extension for this
779 * extension point, the existing #GIOExtension object is returned.
781 * Returns: a #GIOExtension object for #GType
784 g_io_extension_point_implement (const char *extension_point_name,
786 const char *extension_name,
789 GIOExtensionPoint *extension_point;
790 GIOExtension *extension;
793 g_return_val_if_fail (extension_point_name != NULL, NULL);
795 extension_point = g_io_extension_point_lookup (extension_point_name);
796 if (extension_point == NULL)
798 g_warning ("Tried to implement non-registered extension point %s", extension_point_name);
802 if (extension_point->required_type != 0 &&
803 !g_type_is_a (type, extension_point->required_type))
805 g_warning ("Tried to register an extension of the type %s to extension point %s. "
806 "Expected type is %s.",
808 extension_point_name,
809 g_type_name (extension_point->required_type));
813 /* It's safe to register the same type multiple times */
814 for (l = extension_point->extensions; l != NULL; l = l->next)
817 if (extension->type == type)
821 extension = g_slice_new0 (GIOExtension);
822 extension->type = type;
823 extension->name = g_strdup (extension_name);
824 extension->priority = priority;
826 extension_point->extensions = g_list_insert_sorted (extension_point->extensions,
827 extension, extension_prio_compare);
833 * g_io_extension_ref_class:
834 * @extension: a #GIOExtension
836 * Gets a reference to the class for the type that is
837 * associated with @extension.
839 * Returns: the #GTypeClass for the type of @extension
842 g_io_extension_ref_class (GIOExtension *extension)
844 return g_type_class_ref (extension->type);
848 * g_io_extension_get_type:
849 * @extension: a #GIOExtension
851 * Gets the type associated with @extension.
853 * Returns: the type of @extension
856 g_io_extension_get_type (GIOExtension *extension)
858 return extension->type;
862 * g_io_extension_get_name:
863 * @extension: a #GIOExtension
865 * Gets the name under which @extension was registered.
867 * Note that the same type may be registered as extension
868 * for multiple extension points, under different names.
870 * Returns: the name of @extension.
873 g_io_extension_get_name (GIOExtension *extension)
875 return extension->name;
879 * g_io_extension_get_priority:
880 * @extension: a #GIOExtension
882 * Gets the priority with which @extension was registered.
884 * Returns: the priority of @extension
887 g_io_extension_get_priority (GIOExtension *extension)
889 return extension->priority;
892 #define __G_IO_MODULE_C__
893 #include "gioaliasdef.c"