1 /* GMODULE - GLIB wrapper code for dynamic module loading
2 * Copyright (C) 1998 Tim Janik
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
25 #include "gmoduleconf.h"
30 /* We maintain a list of modules, so we can reference count them.
31 * That's needed because some platforms don't support refernce counts on
32 * modules e.g. the shl_* implementation of HP-UX
33 * (http://www.stat.umn.edu/~luke/xls/projects/dlbasics/dlbasics.html).
34 * Also, the module for the program itself is kept seperatedly for
35 * faster access and because it has special semantics.
39 /* --- structures --- */
45 guint is_resident : 1;
51 /* --- prototypes --- */
52 static gpointer _g_module_open (const gchar *file_name,
54 static void _g_module_close (gpointer handle,
56 static gpointer _g_module_self (void);
57 static gpointer _g_module_symbol (gpointer handle,
58 const gchar *symbol_name);
59 static gchar* _g_module_build_path (const gchar *directory,
60 const gchar *module_name);
61 static inline void g_module_set_error (const gchar *error);
62 static inline GModule* g_module_find_by_handle (gpointer handle);
63 static inline GModule* g_module_find_by_name (const gchar *name);
66 /* --- variables --- */
67 static G_LOCK_DEFINE (g_module_global);
68 const char *g_log_domain_gmodule = "GModule";
69 static GModule *modules = NULL;
70 static GModule *main_module = NULL;
71 static GStaticPrivate module_error_private = G_STATIC_PRIVATE_INIT;
74 /* --- inline functions --- */
75 static inline GModule*
76 g_module_find_by_handle (gpointer handle)
79 GModule *retval = NULL;
81 g_lock (g_module_global);
82 if (main_module && main_module->handle == handle)
85 for (module = modules; module; module = module->next)
86 if (handle == module->handle)
91 g_unlock (g_module_global);
96 static inline GModule*
97 g_module_find_by_name (const gchar *name)
100 GModule *retval = NULL;
102 g_lock (g_module_global);
103 for (module = modules; module; module = module->next)
104 if (strcmp (name, module->file_name) == 0)
109 g_unlock (g_module_global);
115 g_module_set_error (const gchar *error)
117 gchar* module_error = g_static_private_get (&module_error_private);
119 g_free (module_error);
121 module_error = g_strdup (error);
125 g_static_private_set (&module_error_private, module_error, g_free);
129 /* --- include platform specifc code --- */
130 #define CHECK_ERROR(rv) { g_module_set_error (NULL); }
131 #if (G_MODULE_IMPL == G_MODULE_IMPL_DL)
132 #include "gmodule-dl.c"
133 #elif (G_MODULE_IMPL == G_MODULE_IMPL_DLD)
134 #include "gmodule-dld.c"
135 #elif (G_MODULE_IMPL == G_MODULE_IMPL_WIN32)
136 #include "gmodule-win32.c"
139 #define CHECK_ERROR(rv) { g_module_set_error ("unsupported"); return rv; }
141 _g_module_open (const gchar *file_name,
147 _g_module_close (gpointer handle,
152 _g_module_self (void)
157 _g_module_symbol (gpointer handle,
158 const gchar *symbol_name)
163 _g_module_build_path (const gchar *directory,
164 const gchar *module_name)
168 #endif /* no implementation */
170 #if defined (NATIVE_WIN32) && defined (__LCC__)
172 LibMain (void *hinstDll,
173 unsigned long dwReason,
178 #endif /* NATIVE_WIN32 && __LCC__ */
181 /* --- functions --- */
183 g_module_supported (void)
191 g_module_open (const gchar *file_name,
201 g_lock (g_module_global);
204 handle = _g_module_self ();
207 main_module = g_new (GModule, 1);
208 main_module->file_name = NULL;
209 main_module->handle = handle;
210 main_module->ref_count = 1;
211 main_module->is_resident = TRUE;
212 main_module->unload = NULL;
213 main_module->next = NULL;
216 g_unlock (g_module_global);
221 /* we first search the module list by name */
222 module = g_module_find_by_name (file_name);
230 /* open the module */
231 handle = _g_module_open (file_name, (flags & G_MODULE_BIND_LAZY) != 0);
235 GModuleCheckInit check_init;
236 const gchar *check_failed = NULL;
238 /* search the module list by handle, since file names are not unique */
239 module = g_module_find_by_handle (handle);
242 _g_module_close (module->handle, TRUE);
244 g_module_set_error (NULL);
249 saved_error = g_module_error();
250 g_static_private_set (&module_error_private, NULL, NULL);
251 g_module_set_error (NULL);
253 module = g_new (GModule, 1);
254 module->file_name = g_strdup (file_name);
255 module->handle = handle;
256 module->ref_count = 1;
257 module->is_resident = FALSE;
258 module->unload = NULL;
259 g_lock (g_module_global);
260 module->next = modules;
262 g_unlock (g_module_global);
264 /* check initialization */
265 if (g_module_symbol (module, "g_module_check_init", (gpointer) &check_init))
266 check_failed = check_init (module);
268 /* we don't call unload() if the initialization check failed. */
270 g_module_symbol (module, "g_module_unload", (gpointer) &module->unload);
276 error = g_strconcat ("GModule initialization check failed: ", check_failed, NULL);
277 g_module_close (module);
279 g_module_set_error (error);
283 g_module_set_error (saved_error);
284 g_free (saved_error);
291 g_module_close (GModule *module)
295 g_return_val_if_fail (module != NULL, FALSE);
296 g_return_val_if_fail (module->ref_count > 0, FALSE);
300 if (!module->ref_count && !module->is_resident && module->unload)
302 GModuleUnload unload;
304 unload = module->unload;
305 module->unload = NULL;
309 if (!module->ref_count && !module->is_resident)
316 g_lock (g_module_global);
323 last->next = node->next;
325 modules = node->next;
332 g_unlock (g_module_global);
334 _g_module_close (module->handle, FALSE);
335 g_free (module->file_name);
340 return g_module_error() == NULL;
344 g_module_make_resident (GModule *module)
346 g_return_if_fail (module != NULL);
348 module->is_resident = TRUE;
352 g_module_error (void)
354 return g_static_private_get (&module_error_private);
358 g_module_symbol (GModule *module,
359 const gchar *symbol_name,
367 g_return_val_if_fail (module != NULL, FALSE);
368 g_return_val_if_fail (symbol_name != NULL, FALSE);
369 g_return_val_if_fail (symbol != NULL, FALSE);
371 #ifdef G_MODULE_NEED_USCORE
375 name = g_strconcat ("_", symbol_name, NULL);
376 *symbol = _g_module_symbol (module->handle, name);
379 #else /* !G_MODULE_NEED_USCORE */
380 *symbol = _g_module_symbol (module->handle, symbol_name);
381 #endif /* !G_MODULE_NEED_USCORE */
383 if ((module_error = g_module_error()))
387 error = g_strconcat ("`", symbol_name, "': ", module_error, NULL);
388 g_module_set_error (error);
398 g_module_name (GModule *module)
400 g_return_val_if_fail (module != NULL, NULL);
402 if (module == main_module)
405 return module->file_name;
409 g_module_build_path (const gchar *directory,
410 const gchar *module_name)
412 g_return_val_if_fail (module_name != NULL, NULL);
414 return _g_module_build_path (directory, module_name);