1999-08-16 17:58:30 +00:00
|
|
|
<!-- ##### SECTION Title ##### -->
|
|
|
|
Dynamic Loading of Modules
|
|
|
|
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
2000-09-07 16:36:56 +00:00
|
|
|
portable method for dynamically loading 'plug-ins'.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
These functions provide a portable way to dynamically load object files
|
|
|
|
(commonly known as 'plug-ins').
|
|
|
|
The current implementation supports all systems that provide
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
an implementation of <function>dlopen()</function> (e.g. Linux/Sun), as well as HP-UX via its
|
|
|
|
<function>shl_load()</function> mechanism, and Windows platforms via DLLs.
|
2000-09-07 16:36:56 +00:00
|
|
|
</para>
|
2000-10-05 15:56:41 +00:00
|
|
|
|
|
|
|
<para>
|
|
|
|
A program, which wants to use these functions must be linked to the
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
libraries output by the command <command>glib-config --libs gmodule</command>.
|
2000-10-05 15:56:41 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
<para>
|
|
|
|
To use them you must first determine whether dynamic loading
|
|
|
|
is supported on the platform by calling g_module_supported().
|
|
|
|
If it is, you can open a module with g_module_open(),
|
|
|
|
find the module's symbols (e.g. function names) with g_module_symbol(),
|
|
|
|
and later close the module with g_module_close().
|
|
|
|
g_module_name() will return the file name of a currently opened module.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If any of the above functions fail, the error status can be found with
|
|
|
|
g_module_error().
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The gmodule implementation features reference counting for opened modules,
|
|
|
|
and supports hook functions within a module which are called when the
|
|
|
|
module is loaded and unloaded (see #GModuleCheckInit and #GModuleUnload).
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If your module introduces static data to common subsystems in the running
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
program, e.g. through calling <literal>g_quark_from_static_string ("my-module-stuff")</literal>,
|
2000-09-07 16:36:56 +00:00
|
|
|
it must ensure that it is never unloaded, by calling g_module_make_resident().
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### STRUCT GModule ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
The #GModule struct is an opaque data structure to represent a
|
|
|
|
<link linkend="glib-Dynamic-Loading-of-Modules">Dynamically-Loaded Module</link>.
|
|
|
|
It should only be accessed via the following functions.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_supported ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Checks if modules are supported on the current platform.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
@Returns: %TRUE if modules are supported.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_build_path ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
A portable way to build the filename of a module. The platform-specific
|
|
|
|
prefix and suffix are added to the filename, if needed, and the result is
|
|
|
|
added to the directory, using the correct separator character.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The directory should specify the directory where the module can be found.
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
It can be %NULL or an empty string to indicate that the module is in a standard
|
2000-09-07 16:36:56 +00:00
|
|
|
operating-system specific directory, though this is not recommended since the
|
|
|
|
wrong module may be found.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
For example, calling g_module_build_path() on a Linux system with a directory
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
of <filename>/lib</filename> and a module_name of "mylibrary" will return <filename>/lib/libmylibrary.so</filename>.
|
|
|
|
On a Windows system, using <filename>\Windows</filename> as the directory it will return
|
|
|
|
<filename>\Windows\mylibrary.dll</filename>.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
@directory: the directory where the module is. This can be %NULL or the empty
|
2000-09-07 16:36:56 +00:00
|
|
|
string to indicate that the standard operating system-specific directories
|
|
|
|
will be used, though that is not recommended.
|
|
|
|
@module_name: the name of the module.
|
|
|
|
@Returns: the complete path of the module, including the standard library
|
|
|
|
prefix and suffix. This should be freed when no longer needed.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_open ##### -->
|
|
|
|
<para>
|
Determine the suffix of the shared librarries for this system. This is
2000-12-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Determine the suffix of the shared librarries for
this system. This is done analogous to
ltconfig.sh. G_MODULE_SUFFIX in glibconfig.h is set to either
"sl", "dll", or (most often) "so".
* tests/Makefile.am, tests/module-test.c,
tests/libmoduletestplugin_a.c, tests/libmoduletestplugin_b.c:
Added new testcase for gmodule. This is mostly copied from
gmodule/testgmodule.c, but unlike that is is quiet. (Why BTW are
some tests that verbose, not to say loquacious...)
* gmodule.c: Make g_module_open more tolerant wrt to the module
name. First it tries to open the module as named, if that fails,
it checks, whether it is a libtool archive and parses it, if that
fails it appends the systems shared library suffix
(i.e. ".so") (if not already found) and tries again and if that
fails it tries to append the ".la" libtool suffix (if not already
found) and parses it.
* gmodule.c: Lock recursive mutex during most module functions for
safety.
* gmodule-dl.c: Return an error from _g_module_symbol only, if
dlerror says so. All other functions return an error as well, if
dlerror returns NULL.
* testgmodule.c: Thanks to the above change the #ifdefs have
vanished.
* glib/glib-sections.txt: Added G_MODULE_SUFFIX.
* glib/tmpl/modules.sgml: Updated.
2000-12-22 13:44:25 +00:00
|
|
|
Opens a module. If the module has already been opened, its reference
|
|
|
|
count is incremented.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
First of all g_module_open() tries to open @file_name as a module. If
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
that fails and @file_name has the ".la"-suffix (and is a libtool archive)
|
|
|
|
it tries to open the corresponding module. If that fails and it doesn't
|
|
|
|
have the proper module suffix for that platform (#G_MODULE_SUFFIX), this
|
|
|
|
suffix will be appended and the corresponding module will be opended. If
|
|
|
|
that fails and @file_name doesn't have the ".la"-suffix, this suffix is
|
|
|
|
appended and g_module_open() tries to open the corresponding module. If
|
|
|
|
eventually that fails as well, %NULL is returned.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@file_name: the name of the file containing the module.
|
|
|
|
@flags: the flags used for opening the module. Currently this can be 0 or
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
#G_MODULE_BIND_LAZY for lazy binding, where symbols are only bound when needed.
|
|
|
|
@Returns: a #GModule on success, or %NULL on failure.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### ENUM GModuleFlags ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Flags passed to g_module_open().
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
#G_MODULE_BIND_LAZY specifies that symbols are only resolved when needed.
|
2000-09-07 16:36:56 +00:00
|
|
|
The default action is to bind all symbols when the module is loaded.
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
(#G_MODULE_BIND_LAZY is not supported on all platforms.)
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
@G_MODULE_BIND_LAZY:
|
|
|
|
@G_MODULE_BIND_MASK:
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_symbol ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Gets a symbol pointer from a module.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: the module.
|
|
|
|
@symbol_name: the name of the symbol to find.
|
|
|
|
@symbol: returns the pointer to the symbol value.
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
@Returns: %TRUE on success.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_name ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Gets the file name from a #GModule.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: the module.
|
|
|
|
@Returns: the file name of the module, or "main" if the module is the main
|
|
|
|
program itself.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_make_resident ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Ensures that a module will never be unloaded.
|
|
|
|
Any future g_module_close() calls on the module will be ignored.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: a module to make permanently resident.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_close ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Closes a module.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: the module to close.
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
@Returns: %TRUE on success.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION g_module_error ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Gets a string describing the last module error.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@Returns: a string describing the last module error.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### USER_FUNCTION GModuleCheckInit ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Specifies the type of the module initialization function.
|
|
|
|
If a module contains a function named g_module_check_init() it is called
|
|
|
|
automatically when the module is loaded. It is passed the #GModule structure
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
and should return %NULL on success or a string describing the initialization
|
2000-09-07 16:36:56 +00:00
|
|
|
error.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: the #GModule corresponding to the module which has just been loaded.
|
consistently refer to GTK+.
* glib/tmpl/caches.sgml, glib/tmpl/datalist.sgml,
glib/tmpl/hash_tables.sgml, glib/tmpl/messages.sgml,
glib/tmpl/misc_utils.sgml: consistently refer to GTK+.
* glib/tmpl/error_reporting.sgml, glib/tmpl/fileutils.sgml,
glib/tmpl/windows.sgml, glib/tmpl/modules.sgml,
glib/tmpl/linked_lists_single.sgml, glib/tmpl/trees-nary.sgml,
glib/tmpl/trees-binary.sgml, glib/tmpl/timers.sgml: Markup fixes.
2001-10-01 18:11:58 +00:00
|
|
|
@Returns: %NULL on success, or a string describing the initialization error.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### USER_FUNCTION GModuleUnload ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Specifies the type of the module function called when it is unloaded.
|
|
|
|
If a module contains a function named g_module_unload() it is called
|
|
|
|
automatically when the module is unloaded.
|
|
|
|
It is passed the #GModule structure.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
2000-09-07 16:36:56 +00:00
|
|
|
@module: the module about to be unloaded.
|
1999-08-16 17:58:30 +00:00
|
|
|
|
|
|
|
|
2000-12-29 15:11:03 +00:00
|
|
|
<!-- ##### MACRO G_MODULE_SUFFIX ##### -->
|
|
|
|
<para>
|
|
|
|
Expands to the proper shared library suffix for the current platform
|
|
|
|
without the leading dot. For the most Unices and Linux this is "so",
|
|
|
|
for some HPUX versions this is "sl" and for Windows this is "dll".
|
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-08-16 17:58:30 +00:00
|
|
|
<!-- ##### MACRO G_MODULE_EXPORT ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Used to declare functions exported by modules.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### MACRO G_MODULE_IMPORT ##### -->
|
|
|
|
<para>
|
2000-09-07 16:36:56 +00:00
|
|
|
Used to declare functions imported from modules.
|
1999-08-16 17:58:30 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
|
|
|