Dynamic Loading of Modules

Name

Dynamic Loading of Modules — portable method for dynamically loading 'plug-ins'.

Synopsis


#include <glib.h>


struct      GModule;
gboolean    g_module_supported              (void);
gchar*      g_module_build_path             (const gchar *directory,
                                             const gchar *module_name);
GModule*    g_module_open                   (const gchar *file_name,
                                             GModuleFlags flags);
enum        GModuleFlags;
gboolean    g_module_symbol                 (GModule *module,
                                             const gchar *symbol_name,
                                             gpointer *symbol);
gchar*      g_module_name                   (GModule *module);
void        g_module_make_resident          (GModule *module);
gboolean    g_module_close                  (GModule *module);
gchar*      g_module_error                  (void);

const gchar* (*GModuleCheckInit)            (GModule *module);
void        (*GModuleUnload)                (GModule *module);
#define     G_MODULE_EXPORT
#define     G_MODULE_IMPORT

Description

These functions provide a portable way to dynamically load object files (commonly known as 'plug-ins'). The current implementation supports all systems that provide an implementation of dlopen() (e.g. Linux/Sun), as well as HP-UX via its shl_load() mechanism, and Windows platforms via DLLs.

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.

If any of the above functions fail, the error status can be found with g_module_error().

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).

If your module introduces static data to common subsystems in the running program, e.g. through calling g_quark_from_static_string ("my-module-stuff"), it must ensure that it is never unloaded, by calling g_module_make_resident().

Details

struct GModule

The GModule struct is an opaque data structure to represent a Dynamically-Loaded Module. It should only be accessed via the following functions.


g_module_supported ()

gboolean    g_module_supported              (void);

Checks if modules are supported on the current platform.

Returns :TRUE if modules are supported.


g_module_build_path ()

gchar*      g_module_build_path             (const gchar *directory,
                                             const gchar *module_name);

directory : 
module_name : 
Returns : 


g_module_open ()

GModule*    g_module_open                   (const gchar *file_name,
                                             GModuleFlags flags);

Opens a module. If the module has already been opened, its reference count is incremented.

file_name :the name of the file containing the module.
flags :the flags used for opening the module. Currently this can be 0 or G_MODULE_BIND_LAZY for lazy binding, where symbols are only bound when needed.
Returns :a GModule on success, or NULL on failure.


enum GModuleFlags

typedef enum
{
  G_MODULE_BIND_LAZY	= 1 << 0,
  G_MODULE_BIND_MASK	= 0x01
} GModuleFlags;

Flags passed to g_module_open(). G_MODULE_BIND_LAZY specifies that symbols are only resolved when needed. The default action is to bind all symbols when the module is loaded. (G_MODULE_BIND_LAZY is not supported on all platforms.)


g_module_symbol ()

gboolean    g_module_symbol                 (GModule *module,
                                             const gchar *symbol_name,
                                             gpointer *symbol);

Gets a symbol pointer from a module.

module :the module.
symbol_name :the name of the symbol to find.
symbol :returns the pointer to the symbol value.
Returns :TRUE on success.


g_module_name ()

gchar*      g_module_name                   (GModule *module);

Gets the file name from a GModule.

module :the module.
Returns :the file name of the module, or "main" if the module is the main program itself.


g_module_make_resident ()

void        g_module_make_resident          (GModule *module);

Ensures that a module will never be unloaded. Any future g_module_close() calls on the module will be ignored.

module :a module to make permanently resident.


g_module_close ()

gboolean    g_module_close                  (GModule *module);

Closes a module.

module :the module to close.
Returns :TRUE on success.


g_module_error ()

gchar*      g_module_error                  (void);

Gets a string describing the last module error.

Returns :a string describing the last module error.


GModuleCheckInit ()

const gchar* (*GModuleCheckInit)            (GModule *module);

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 and should return NULL on success or a string describing the initialization error.

module :the GModule corresponding to the module which has just been loaded.
Returns :NULL on success, or a string describing the initialization error.


GModuleUnload ()

void        (*GModuleUnload)                (GModule *module);

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.

module :the module about to be unloaded.


G_MODULE_EXPORT

#define     G_MODULE_EXPORT

Used to declare functions exported by modules.


G_MODULE_IMPORT

#define	G_MODULE_IMPORT		extern

Used to declare functions imported from modules.