mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-02 17:26:17 +01:00
API: Add g_module_open_full()
g_module_open_full() is wrapper around g_module_open() function which returns a GError in case of failure. Closes #203
This commit is contained in:
parent
cd93c350a2
commit
ee589aaa32
@ -2490,9 +2490,12 @@ g_bookmark_file_error_quark
|
||||
<FILE>modules</FILE>
|
||||
<INCLUDE>gmodule.h</INCLUDE>
|
||||
GModule
|
||||
GModuleError
|
||||
G_MODULE_ERROR
|
||||
g_module_supported
|
||||
g_module_build_path
|
||||
g_module_open
|
||||
g_module_open_full
|
||||
GModuleFlags
|
||||
g_module_symbol
|
||||
g_module_name
|
||||
@ -2505,6 +2508,8 @@ GModuleUnload
|
||||
G_MODULE_SUFFIX
|
||||
G_MODULE_EXPORT
|
||||
G_MODULE_IMPORT
|
||||
<SUBSECTION Private>
|
||||
g_module_error_quark
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
@ -100,7 +100,8 @@ exit:
|
||||
static gpointer
|
||||
_g_module_open (const gchar *file_name,
|
||||
gboolean bind_lazy,
|
||||
gboolean bind_local)
|
||||
gboolean bind_local,
|
||||
GError **error)
|
||||
{
|
||||
gpointer handle;
|
||||
gchar* member;
|
||||
@ -123,7 +124,12 @@ _g_module_open (const gchar *file_name,
|
||||
g_free (full_name);
|
||||
|
||||
if (!handle)
|
||||
g_module_set_error (fetch_dlerror (TRUE));
|
||||
{
|
||||
const gchar *message = fetch_dlerror (TRUE);
|
||||
|
||||
g_module_set_error (message);
|
||||
g_set_error_literal (error, G_MODULE_ERROR, G_MODULE_ERROR_FAILED, message);
|
||||
}
|
||||
|
||||
return handle;
|
||||
}
|
||||
|
@ -127,7 +127,8 @@ fetch_dlerror (gboolean replace_null)
|
||||
static gpointer
|
||||
_g_module_open (const gchar *file_name,
|
||||
gboolean bind_lazy,
|
||||
gboolean bind_local)
|
||||
gboolean bind_local,
|
||||
GError **error)
|
||||
{
|
||||
gpointer handle;
|
||||
|
||||
@ -135,7 +136,13 @@ _g_module_open (const gchar *file_name,
|
||||
handle = dlopen (file_name,
|
||||
(bind_local ? 0 : RTLD_GLOBAL) | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
|
||||
if (!handle)
|
||||
g_module_set_error (fetch_dlerror (TRUE));
|
||||
{
|
||||
const gchar *message = fetch_dlerror (TRUE);
|
||||
|
||||
g_module_set_error (message);
|
||||
g_set_error_literal (error, G_MODULE_ERROR, G_MODULE_ERROR_FAILED, message);
|
||||
}
|
||||
|
||||
unlock_dlerror ();
|
||||
|
||||
return handle;
|
||||
|
@ -30,6 +30,7 @@
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <glib.h>
|
||||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
|
||||
@ -39,34 +40,38 @@
|
||||
#include <sys/cygwin.h>
|
||||
#endif
|
||||
|
||||
static void G_GNUC_PRINTF (1, 2)
|
||||
set_error (const gchar *format,
|
||||
static void G_GNUC_PRINTF (2, 3)
|
||||
set_error (GError **error,
|
||||
const gchar *format,
|
||||
...)
|
||||
{
|
||||
gchar *error;
|
||||
gchar *win32_error;
|
||||
gchar *detail;
|
||||
gchar *message;
|
||||
va_list args;
|
||||
|
||||
error = g_win32_error_message (GetLastError ());
|
||||
win32_error = g_win32_error_message (GetLastError ());
|
||||
|
||||
va_start (args, format);
|
||||
detail = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
|
||||
message = g_strconcat (detail, error, NULL);
|
||||
message = g_strconcat (detail, win32_error, NULL);
|
||||
|
||||
g_module_set_error (message);
|
||||
g_set_error_literal (error, G_MODULE_ERROR, G_MODULE_ERROR_FAILED, message);
|
||||
|
||||
g_free (message);
|
||||
g_free (detail);
|
||||
g_free (error);
|
||||
g_free (win32_error);
|
||||
}
|
||||
|
||||
/* --- functions --- */
|
||||
static gpointer
|
||||
_g_module_open (const gchar *file_name,
|
||||
gboolean bind_lazy,
|
||||
gboolean bind_local)
|
||||
gboolean bind_local,
|
||||
GError **error)
|
||||
{
|
||||
HINSTANCE handle;
|
||||
wchar_t *wfilename;
|
||||
@ -83,7 +88,7 @@ _g_module_open (const gchar *file_name,
|
||||
/* suppress error dialog */
|
||||
success = SetThreadErrorMode (SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS, &old_mode);
|
||||
if (!success)
|
||||
set_error ("");
|
||||
set_error (error, "");
|
||||
|
||||
/* When building for UWP, load app asset DLLs instead of filesystem DLLs.
|
||||
* Needs MSVC, Windows 8 and newer, and is only usable from apps. */
|
||||
@ -98,7 +103,7 @@ _g_module_open (const gchar *file_name,
|
||||
g_free (wfilename);
|
||||
|
||||
if (!handle)
|
||||
set_error ("'%s': ", file_name);
|
||||
set_error (error, "'%s': ", file_name);
|
||||
|
||||
return handle;
|
||||
}
|
||||
@ -117,7 +122,7 @@ _g_module_close (gpointer handle)
|
||||
{
|
||||
if (handle != null_module_handle)
|
||||
if (!FreeLibrary (handle))
|
||||
set_error ("");
|
||||
set_error (NULL, "");
|
||||
}
|
||||
|
||||
static gpointer
|
||||
@ -189,7 +194,7 @@ _g_module_symbol (gpointer handle,
|
||||
p = GetProcAddress (handle, symbol_name);
|
||||
|
||||
if (!p)
|
||||
set_error ("");
|
||||
set_error (NULL, "");
|
||||
|
||||
return p;
|
||||
}
|
||||
|
@ -206,7 +206,8 @@ struct _GModule
|
||||
/* --- prototypes --- */
|
||||
static gpointer _g_module_open (const gchar *file_name,
|
||||
gboolean bind_lazy,
|
||||
gboolean bind_local);
|
||||
gboolean bind_local,
|
||||
GError **error);
|
||||
static void _g_module_close (gpointer handle);
|
||||
static gpointer _g_module_self (void);
|
||||
static gpointer _g_module_symbol (gpointer handle,
|
||||
@ -291,8 +292,10 @@ g_module_set_error (const gchar *error)
|
||||
static gpointer
|
||||
_g_module_open (const gchar *file_name,
|
||||
gboolean bind_lazy,
|
||||
gboolean bind_local)
|
||||
gboolean bind_local,
|
||||
GError **error)
|
||||
{
|
||||
g_module_set_error (NULL);
|
||||
return NULL;
|
||||
}
|
||||
static void
|
||||
@ -318,6 +321,15 @@ _g_module_build_path (const gchar *directory,
|
||||
}
|
||||
#endif /* no implementation */
|
||||
|
||||
/**
|
||||
* G_MODULE_ERROR:
|
||||
*
|
||||
* The error domain of the #GModule API.
|
||||
*
|
||||
* Since: 2.70
|
||||
*/
|
||||
G_DEFINE_QUARK (g-module-error-quark, g_module_error)
|
||||
|
||||
/* --- functions --- */
|
||||
|
||||
/**
|
||||
@ -425,17 +437,6 @@ parse_libtool_archive (const gchar* libtool_name)
|
||||
return name;
|
||||
}
|
||||
|
||||
static inline gboolean
|
||||
str_check_suffix (const gchar* string,
|
||||
const gchar* suffix)
|
||||
{
|
||||
gsize string_len = strlen (string);
|
||||
gsize suffix_len = strlen (suffix);
|
||||
|
||||
return string_len >= suffix_len &&
|
||||
strcmp (string + string_len - suffix_len, suffix) == 0;
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
G_MODULE_DEBUG_RESIDENT_MODULES = 1 << 0,
|
||||
@ -462,30 +463,34 @@ _g_module_debug_init (void)
|
||||
static GRecMutex g_module_global_lock;
|
||||
|
||||
/**
|
||||
* g_module_open:
|
||||
* g_module_open_full:
|
||||
* @file_name: (nullable): the name of the file containing the module, or %NULL
|
||||
* to obtain a #GModule representing the main program itself
|
||||
* @flags: the flags used for opening the module. This can be the
|
||||
* logical OR of any of the #GModuleFlags
|
||||
* @error: #GError.
|
||||
*
|
||||
* Opens a module. If the module has already been opened,
|
||||
* its reference count is incremented.
|
||||
*
|
||||
* First of all g_module_open() tries to open @file_name as a module.
|
||||
* First of all g_module_open_full() tries to open @file_name as a module.
|
||||
* If 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 the platform
|
||||
* (#G_MODULE_SUFFIX), this suffix will be appended and the corresponding
|
||||
* module will be opened. If that fails and @file_name doesn't have the
|
||||
* ".la"-suffix, this suffix is appended and g_module_open() tries to open
|
||||
* ".la"-suffix, this suffix is appended and g_module_open_full() tries to open
|
||||
* the corresponding module. If eventually that fails as well, %NULL is
|
||||
* returned.
|
||||
*
|
||||
* Returns: a #GModule on success, or %NULL on failure
|
||||
*
|
||||
* Since: 2.70
|
||||
*/
|
||||
GModule*
|
||||
g_module_open (const gchar *file_name,
|
||||
GModuleFlags flags)
|
||||
g_module_open_full (const gchar *file_name,
|
||||
GModuleFlags flags,
|
||||
GError **error)
|
||||
{
|
||||
GModule *module;
|
||||
gpointer handle = NULL;
|
||||
@ -493,6 +498,8 @@ g_module_open (const gchar *file_name,
|
||||
|
||||
SUPPORT_OR_RETURN (NULL);
|
||||
|
||||
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
||||
|
||||
g_rec_mutex_lock (&g_module_global_lock);
|
||||
|
||||
if (G_UNLIKELY (!module_debug_initialized))
|
||||
@ -577,10 +584,10 @@ g_module_open (const gchar *file_name,
|
||||
}
|
||||
|
||||
/* ok, try loading the module */
|
||||
if (name)
|
||||
{
|
||||
g_assert (name != NULL);
|
||||
|
||||
/* if it's a libtool archive, figure library file to load */
|
||||
if (str_check_suffix (name, ".la")) /* libtool archive? */
|
||||
if (g_str_has_suffix (name, ".la")) /* libtool archive? */
|
||||
{
|
||||
gchar *real_name = parse_libtool_archive (name);
|
||||
|
||||
@ -591,16 +598,9 @@ g_module_open (const gchar *file_name,
|
||||
name = real_name;
|
||||
}
|
||||
}
|
||||
if (name)
|
||||
|
||||
handle = _g_module_open (name, (flags & G_MODULE_BIND_LAZY) != 0,
|
||||
(flags & G_MODULE_BIND_LOCAL) != 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
gchar *display_file_name = g_filename_display_name (file_name);
|
||||
g_module_set_error_unduped (g_strdup_printf ("unable to access file \"%s\"", display_file_name));
|
||||
g_free (display_file_name);
|
||||
}
|
||||
(flags & G_MODULE_BIND_LOCAL) != 0, error);
|
||||
g_free (name);
|
||||
|
||||
if (handle)
|
||||
@ -643,15 +643,16 @@ g_module_open (const gchar *file_name,
|
||||
|
||||
if (check_failed)
|
||||
{
|
||||
gchar *error;
|
||||
gchar *temp_error;
|
||||
|
||||
error = g_strconcat ("GModule (", file_name, ") ",
|
||||
temp_error = g_strconcat ("GModule (", file_name, ") ",
|
||||
"initialization check failed: ",
|
||||
check_failed, NULL);
|
||||
g_module_close (module);
|
||||
module = NULL;
|
||||
g_module_set_error (error);
|
||||
g_free (error);
|
||||
g_module_set_error (temp_error);
|
||||
g_set_error_literal (error, G_MODULE_ERROR, G_MODULE_ERROR_CHECK_FAILED, temp_error);
|
||||
g_free (temp_error);
|
||||
}
|
||||
else
|
||||
g_module_set_error (saved_error);
|
||||
@ -667,6 +668,24 @@ g_module_open (const gchar *file_name,
|
||||
return module;
|
||||
}
|
||||
|
||||
/**
|
||||
* g_module_open:
|
||||
* @file_name: (nullable): the name of the file containing the module, or %NULL
|
||||
* to obtain a #GModule representing the main program itself
|
||||
* @flags: the flags used for opening the module. This can be the
|
||||
* logical OR of any of the #GModuleFlags.
|
||||
*
|
||||
* A thin wrapper function around g_module_open_full()
|
||||
*
|
||||
* Returns: a #GModule on success, or %NULL on failure
|
||||
*/
|
||||
GModule *
|
||||
g_module_open (const gchar *file_name,
|
||||
GModuleFlags flags)
|
||||
{
|
||||
return g_module_open_full (file_name, flags, NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* g_module_close:
|
||||
* @module: a #GModule to close
|
||||
|
@ -66,6 +66,26 @@ typedef struct _GModule GModule;
|
||||
typedef const gchar* (*GModuleCheckInit) (GModule *module);
|
||||
typedef void (*GModuleUnload) (GModule *module);
|
||||
|
||||
#define G_MODULE_ERROR g_module_error_quark () GLIB_AVAILABLE_MACRO_IN_2_70
|
||||
GLIB_AVAILABLE_IN_2_70
|
||||
GQuark g_module_error_quark (void);
|
||||
|
||||
/**
|
||||
* GModuleError:
|
||||
* @G_MODULE_ERROR_FAILED: there was an error loading or opening a module file
|
||||
* @G_MODULE_ERROR_CHECK_FAILED: a module returned an error from its `g_module_check_init()` function
|
||||
*
|
||||
* Errors returned by g_module_open_full().
|
||||
*
|
||||
* Since: 2.70
|
||||
*/
|
||||
typedef enum
|
||||
{
|
||||
G_MODULE_ERROR_FAILED,
|
||||
G_MODULE_ERROR_CHECK_FAILED,
|
||||
} GModuleError
|
||||
GLIB_AVAILABLE_ENUMERATOR_IN_2_70;
|
||||
|
||||
/* return TRUE if dynamic module loading is supported */
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_module_supported (void) G_GNUC_CONST;
|
||||
@ -75,6 +95,11 @@ GLIB_AVAILABLE_IN_ALL
|
||||
GModule* g_module_open (const gchar *file_name,
|
||||
GModuleFlags flags);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_70
|
||||
GModule *g_module_open_full (const gchar *file_name,
|
||||
GModuleFlags flags,
|
||||
GError **error);
|
||||
|
||||
/* close a previously opened module, returns TRUE on success */
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_module_close (GModule *module);
|
||||
|
Loading…
Reference in New Issue
Block a user