1999-01-19 08:03:00 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* module_db.c (C) 1999 Austin Donnelly <austin@gimp.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
1999-02-21 07:20:54 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1999-04-30 23:04:38 +08:00
|
|
|
#include <sys/types.h>
|
1999-01-24 05:07:57 +08:00
|
|
|
#include <sys/stat.h>
|
1999-02-21 07:20:54 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
1999-01-24 05:07:57 +08:00
|
|
|
#include <unistd.h>
|
1999-02-21 07:20:54 +08:00
|
|
|
#endif
|
|
|
|
#include <time.h>
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
#include "appenv.h"
|
|
|
|
#include "module_db.h"
|
1999-02-06 23:15:38 +08:00
|
|
|
#include "gimpsignal.h"
|
1999-01-19 08:03:00 +08:00
|
|
|
#include "gimprc.h"
|
|
|
|
#include "datafiles.h"
|
|
|
|
#include "actionarea.h"
|
1999-01-24 05:07:57 +08:00
|
|
|
#include "gimpset.h"
|
1999-01-19 08:03:00 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
|
|
|
#include "libgimp/gimpmodule.h"
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ST_MODULE_ERROR, /* missing module_load function or other error */
|
|
|
|
ST_LOADED_OK, /* happy and running (normal state of affairs) */
|
|
|
|
ST_LOAD_FAILED, /* module_load returned GIMP_MODULE_UNLOAD */
|
|
|
|
ST_UNLOAD_REQUESTED, /* sent unload request, waiting for callback */
|
|
|
|
ST_UNLOADED_OK /* callback arrived, module not in memory anymore */
|
|
|
|
} module_state;
|
|
|
|
|
|
|
|
static const char * const statename[] = {
|
|
|
|
"ST_MODULE_ERROR",
|
|
|
|
"ST_LOADED_OK",
|
|
|
|
"ST_LOAD_FAILED",
|
|
|
|
"ST_UNLOAD_REQUESTED",
|
|
|
|
"ST_UNLOADED_OK"
|
|
|
|
};
|
|
|
|
|
1999-04-30 23:04:38 +08:00
|
|
|
#ifdef __EMX__
|
|
|
|
extern void gimp_color_selector_register();
|
|
|
|
extern void gimp_color_selector_unregister();
|
|
|
|
static struct main_funcs_struc {
|
|
|
|
gchar *name;
|
|
|
|
void (*func)();
|
|
|
|
} gimp_main_funcs[] = {
|
|
|
|
{ "gimp_color_selector_register", gimp_color_selector_register },
|
|
|
|
{ "gimp_color_selector_unregister", gimp_color_selector_unregister },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
/* one of these objects is kept per-module */
|
1999-01-19 08:03:00 +08:00
|
|
|
typedef struct {
|
1999-02-06 23:15:38 +08:00
|
|
|
GtkObject object;
|
1999-01-19 08:03:00 +08:00
|
|
|
gchar *fullpath; /* path to the module */
|
|
|
|
module_state state; /* what's happened to the module */
|
1999-01-24 05:07:57 +08:00
|
|
|
gboolean ondisk; /* TRUE if file still exists */
|
1999-01-19 08:03:00 +08:00
|
|
|
/* stuff from now on may be NULL depending on the state the module is in */
|
|
|
|
GimpModuleInfo *info; /* returned values from module_init */
|
1999-02-14 09:53:23 +08:00
|
|
|
gint refs; /* how many time we're running in the module */
|
1999-01-19 08:03:00 +08:00
|
|
|
GModule *module; /* handle on the module */
|
|
|
|
gchar *last_module_error;
|
|
|
|
GimpModuleInitFunc *init;
|
|
|
|
GimpModuleUnloadFunc *unload;
|
|
|
|
} module_info;
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
|
|
|
|
static guint module_info_get_type (void);
|
|
|
|
#define MODULE_INFO_TYPE module_info_get_type()
|
|
|
|
#define MODULE_INFO(obj) GTK_CHECK_CAST (obj, MODULE_INFO_TYPE, module_info)
|
|
|
|
#define IS_MODULE_INFO(obj) GTK_CHECK_TYPE (obj, MODULE_INFO_TYPE)
|
|
|
|
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
#define NUM_INFO_LINES 7
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkWidget *table;
|
|
|
|
GtkWidget *label[NUM_INFO_LINES];
|
|
|
|
GtkWidget *button_label;
|
|
|
|
module_info *last_update;
|
|
|
|
GtkWidget *button;
|
1999-01-24 05:07:57 +08:00
|
|
|
GtkWidget *list;
|
1999-01-19 08:03:00 +08:00
|
|
|
} browser_st;
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
/* global set of module_info pointers */
|
|
|
|
static GimpSet *modules;
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
/* debug control: */
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
/*#define DUMP_DB*/
|
1999-05-17 01:22:58 +08:00
|
|
|
/*#define DEBUG*/
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#undef DUMP_DB
|
|
|
|
#define DUMP_DB
|
|
|
|
#define TRC(x) printf x
|
|
|
|
#else
|
|
|
|
#define TRC(x)
|
|
|
|
#endif
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* prototypes */
|
|
|
|
static void module_initialize (char *filename);
|
|
|
|
static void mod_load (module_info *mod, gboolean verbose);
|
|
|
|
static void mod_unload (module_info *mod, gboolean verbose);
|
1999-01-24 05:07:57 +08:00
|
|
|
static module_info *module_find_by_path (const char *fullpath);
|
1999-01-19 08:03:00 +08:00
|
|
|
#ifdef DUMP_DB
|
|
|
|
static void print_module_info (gpointer data, gpointer user_data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void browser_popdown_callback (GtkWidget *w, gpointer client_data);
|
1999-01-24 05:07:57 +08:00
|
|
|
static void browser_destroy_callback (GtkWidget *w, gpointer client_data);
|
1999-02-06 23:15:38 +08:00
|
|
|
static void browser_info_update (module_info *, browser_st *);
|
1999-01-24 05:07:57 +08:00
|
|
|
static void browser_info_add (GimpSet *, module_info *, browser_st *);
|
|
|
|
static void browser_info_remove (GimpSet *, module_info *, browser_st *);
|
|
|
|
static void browser_info_init (browser_st *st, GtkWidget *table);
|
1999-01-19 08:03:00 +08:00
|
|
|
static void browser_select_callback (GtkWidget *widget, GtkWidget *child);
|
|
|
|
static void browser_load_unload_callback (GtkWidget *widget, gpointer data);
|
1999-01-24 05:07:57 +08:00
|
|
|
static void browser_refresh_callback (GtkWidget *widget, gpointer data);
|
|
|
|
static void make_list_item (gpointer data, gpointer user_data);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-02-14 09:53:23 +08:00
|
|
|
static void gimp_module_ref (module_info *mod);
|
|
|
|
static void gimp_module_unref (module_info *mod);
|
|
|
|
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
/* Exported functions */
|
|
|
|
|
|
|
|
void
|
|
|
|
module_db_init (void)
|
|
|
|
{
|
|
|
|
/* Load and initialize gimp modules */
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
modules = gimp_set_new (MODULE_INFO_TYPE, FALSE);
|
1999-01-24 05:07:57 +08:00
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
if (g_module_supported ())
|
|
|
|
datafiles_read_directories (module_path,
|
|
|
|
module_initialize, 0 /* no flags */);
|
|
|
|
#ifdef DUMP_DB
|
1999-01-24 05:07:57 +08:00
|
|
|
gimp_set_foreach (modules, print_module_info, NULL);
|
1999-01-19 08:03:00 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-04-15 03:51:49 +08:00
|
|
|
/* not closing the module at exit time is safer and faster. */
|
|
|
|
static void
|
|
|
|
free_a_single_module_cb (void *data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
|
|
|
|
|
|
|
g_return_if_fail (mod->state == ST_UNLOAD_REQUESTED);
|
|
|
|
|
|
|
|
mod->info = NULL;
|
|
|
|
mod->state = ST_UNLOADED_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_a_single_module (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-04-15 03:51:49 +08:00
|
|
|
if (mod->module && mod->unload && mod->state == ST_LOADED_OK)
|
|
|
|
{
|
1999-05-17 01:22:58 +08:00
|
|
|
mod_unload (mod, FALSE);
|
1999-04-15 03:51:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
module_db_free (void)
|
|
|
|
{
|
|
|
|
gimp_set_foreach (modules, free_a_single_module, NULL);
|
|
|
|
}
|
1999-01-24 05:07:57 +08:00
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
GtkWidget *
|
|
|
|
module_db_browser_new (void)
|
|
|
|
{
|
|
|
|
GtkWidget *shell;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *listbox;
|
1999-01-24 05:07:57 +08:00
|
|
|
GtkWidget *button;
|
1999-01-19 08:03:00 +08:00
|
|
|
browser_st *st;
|
|
|
|
ActionAreaItem action_items[] =
|
|
|
|
{
|
|
|
|
{ N_("OK"), browser_popdown_callback, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
shell = gtk_dialog_new ();
|
|
|
|
gtk_window_set_wmclass (GTK_WINDOW (shell), "module_db_dialog", "Gimp");
|
|
|
|
gtk_window_set_title (GTK_WINDOW (shell), _("Module DB"));
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 5);
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 5);
|
1999-01-19 08:03:00 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (shell)->vbox), hbox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
|
|
|
listbox = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (listbox),
|
|
|
|
GTK_POLICY_AUTOMATIC,
|
|
|
|
GTK_POLICY_AUTOMATIC);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), listbox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_set_usize (listbox, 125, 100);
|
|
|
|
gtk_widget_show (listbox);
|
|
|
|
|
|
|
|
st = g_new0 (browser_st, 1);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
st->list = gtk_list_new ();
|
|
|
|
gtk_list_set_selection_mode (GTK_LIST (st->list), GTK_SELECTION_BROWSE);
|
|
|
|
gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (listbox),
|
|
|
|
st->list);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gimp_set_foreach (modules, make_list_item, st);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_widget_show (st->list);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
vbox = gtk_vbox_new (FALSE, 10);
|
1999-01-19 08:03:00 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
st->table = gtk_table_new (5, NUM_INFO_LINES, FALSE);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), st->table, FALSE, FALSE, 0);
|
1999-01-19 08:03:00 +08:00
|
|
|
gtk_widget_show (st->table);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
hbox = gtk_hbox_new (FALSE, 10);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 5);
|
|
|
|
|
|
|
|
button = gtk_button_new_with_label (_("Refresh"));
|
|
|
|
gtk_widget_show (button);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
|
|
|
browser_refresh_callback, st);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
st->button = gtk_button_new_with_label ("");
|
|
|
|
st->button_label = GTK_BIN (st->button)->child;
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), st->button, TRUE, TRUE, 0);
|
1999-01-19 08:03:00 +08:00
|
|
|
gtk_widget_show (st->button);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (st->button), "clicked",
|
|
|
|
browser_load_unload_callback, st);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
browser_info_init (st, st->table);
|
1999-02-06 23:15:38 +08:00
|
|
|
browser_info_update (st->last_update, st);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_object_set_user_data (GTK_OBJECT (st->list), st);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (st->list), "select_child",
|
1999-01-19 08:03:00 +08:00
|
|
|
browser_select_callback, NULL);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
/* hook the gimpset signals so we can refresh the display
|
|
|
|
* appropriately. */
|
1999-02-06 23:15:38 +08:00
|
|
|
gimp_set_add_handler (modules, "modified", browser_info_update, st);
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (modules), "add",
|
|
|
|
browser_info_add, st);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (modules), "remove",
|
|
|
|
browser_info_remove, st);
|
|
|
|
|
|
|
|
gtk_signal_connect (GTK_OBJECT (shell), "destroy",
|
|
|
|
browser_destroy_callback, st);
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
action_items[0].user_data = shell;
|
|
|
|
build_action_area (GTK_DIALOG (shell),
|
|
|
|
action_items,
|
|
|
|
sizeof( action_items)/sizeof( ActionAreaItem),
|
|
|
|
0);
|
|
|
|
|
|
|
|
return shell;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
/**************************************************************/
|
|
|
|
/* module_info object glue */
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkObjectClass parent_class;
|
|
|
|
} module_infoClass;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MODIFIED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
static guint module_info_signals[LAST_SIGNAL];
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_info_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
module_info *mod = MODULE_INFO (object);
|
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
/* if this trips, then we're onto some serious lossage in a moment */
|
|
|
|
g_return_if_fail (mod->refs == 0);
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
if (mod->last_module_error)
|
|
|
|
g_free (mod->last_module_error);
|
|
|
|
g_free (mod->fullpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_info_class_init (module_infoClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkType type;
|
|
|
|
|
|
|
|
object_class = GTK_OBJECT_CLASS(klass);
|
|
|
|
|
|
|
|
type = object_class->type;
|
|
|
|
|
|
|
|
object_class->destroy = module_info_destroy;
|
|
|
|
|
|
|
|
module_info_signals[MODIFIED] =
|
|
|
|
gimp_signal_new ("modified", 0, type, 0, gimp_sigtype_void);
|
|
|
|
|
|
|
|
gtk_object_class_add_signals(object_class, module_info_signals, LAST_SIGNAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_info_init (module_info *mod)
|
|
|
|
{
|
|
|
|
/* don't need to do anything */
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
module_info_get_type (void)
|
|
|
|
{
|
|
|
|
static guint module_info_type = 0;
|
|
|
|
|
|
|
|
if (!module_info_type)
|
|
|
|
{
|
|
|
|
static const GtkTypeInfo module_info_info =
|
|
|
|
{
|
|
|
|
"module_info",
|
|
|
|
sizeof (module_info),
|
|
|
|
sizeof (module_infoClass),
|
|
|
|
(GtkClassInitFunc) module_info_class_init,
|
|
|
|
(GtkObjectInitFunc) module_info_init,
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
(GtkClassInitFunc) NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_info_type = gtk_type_unique (gtk_object_get_type(),
|
|
|
|
&module_info_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return module_info_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exported API: */
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_info_modified (module_info *mod)
|
|
|
|
{
|
|
|
|
gtk_signal_emit (GTK_OBJECT (mod), module_info_signals[MODIFIED]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static module_info *
|
|
|
|
module_info_new (void)
|
|
|
|
{
|
|
|
|
return MODULE_INFO (gtk_type_new (module_info_get_type ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_info_free (module_info *mod)
|
|
|
|
{
|
|
|
|
gtk_object_unref (GTK_OBJECT (mod));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
/**************************************************************/
|
|
|
|
/* helper functions */
|
|
|
|
|
|
|
|
|
1999-02-21 07:20:54 +08:00
|
|
|
/* name must be of the form lib*.so (Unix) or *.dll (Win32) */
|
1999-01-19 08:03:00 +08:00
|
|
|
static gboolean
|
|
|
|
valid_module_name (const char *filename)
|
|
|
|
{
|
|
|
|
const char *basename;
|
|
|
|
int len;
|
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
basename = g_basename (filename);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
len = strlen (basename);
|
|
|
|
|
1999-04-30 23:04:38 +08:00
|
|
|
#if !defined(WIN32) && !defined(__EMX__)
|
1999-01-19 08:03:00 +08:00
|
|
|
if (len < 3 + 1 + 3)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (strncmp (basename, "lib", 3))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (strcmp (basename + len - 3, ".so"))
|
|
|
|
return FALSE;
|
1999-02-21 07:20:54 +08:00
|
|
|
#else
|
1999-05-17 01:22:58 +08:00
|
|
|
if (len < 1 + 4)
|
|
|
|
return FALSE;
|
|
|
|
|
1999-02-21 07:20:54 +08:00
|
|
|
if (g_strcasecmp (basename + len - 4, ".dll"))
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_initialize (char *filename)
|
|
|
|
{
|
|
|
|
module_info *mod;
|
|
|
|
|
|
|
|
if (!valid_module_name (filename))
|
|
|
|
return;
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
/* don't load if we already know about it */
|
|
|
|
if (module_find_by_path (filename))
|
|
|
|
return;
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
mod = module_info_new ();
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
mod->fullpath = g_strdup (filename);
|
1999-01-24 05:07:57 +08:00
|
|
|
mod->ondisk = TRUE;
|
1999-01-19 08:03:00 +08:00
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
/* Count of times main gimp is within the module. Normally, this
|
|
|
|
* will be 1, and we assume that the module won't call its
|
|
|
|
* unload callback until it is satisfied that it's not in use any
|
|
|
|
* more. refs can be 2 temporarily while we're running the module's
|
|
|
|
* unload function, to stop the module attempting to unload
|
|
|
|
* itself. */
|
|
|
|
mod->refs = 0;
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
if ((be_verbose == TRUE) || (no_splash == TRUE))
|
|
|
|
g_print (_("load module: \"%s\"\n"), filename);
|
|
|
|
|
|
|
|
mod_load (mod, TRUE);
|
1999-01-24 05:07:57 +08:00
|
|
|
|
|
|
|
gimp_set_add (modules, mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mod_load (module_info *mod, gboolean verbose)
|
|
|
|
{
|
|
|
|
gpointer symbol;
|
|
|
|
|
|
|
|
g_return_if_fail (mod->module == NULL);
|
|
|
|
|
|
|
|
mod->module = g_module_open (mod->fullpath, G_MODULE_BIND_LAZY);
|
|
|
|
if (!mod->module)
|
|
|
|
{
|
|
|
|
mod->state = ST_MODULE_ERROR;
|
|
|
|
|
|
|
|
if (mod->last_module_error)
|
|
|
|
g_free (mod->last_module_error);
|
|
|
|
mod->last_module_error = g_strdup (g_module_error ());
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
g_warning (_("module load error: %s: %s"),
|
|
|
|
mod->fullpath, mod->last_module_error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-04-30 23:04:38 +08:00
|
|
|
#ifdef __EMX__
|
|
|
|
if (g_module_symbol (mod->module, "gimp_main_funcs", &symbol))
|
|
|
|
{
|
|
|
|
*(struct main_funcs_struc **)symbol = gimp_main_funcs;
|
|
|
|
}
|
|
|
|
#endif
|
1999-01-19 08:03:00 +08:00
|
|
|
/* find the module_init symbol */
|
|
|
|
if (!g_module_symbol (mod->module, "module_init", &symbol))
|
|
|
|
{
|
|
|
|
mod->state = ST_MODULE_ERROR;
|
|
|
|
|
|
|
|
if (mod->last_module_error)
|
|
|
|
g_free (mod->last_module_error);
|
|
|
|
mod->last_module_error = g_strdup (_("missing module_init() symbol"));
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
g_warning (_("%s: module_init() symbol not found"), mod->fullpath);
|
|
|
|
|
|
|
|
g_module_close (mod->module);
|
|
|
|
mod->module = NULL;
|
|
|
|
mod->info = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* run module's initialisation */
|
|
|
|
mod->init = symbol;
|
|
|
|
mod->info = NULL;
|
1999-05-17 01:22:58 +08:00
|
|
|
gimp_module_ref (mod); /* loaded modules are assumed to have a ref of 1 */
|
1999-01-19 08:03:00 +08:00
|
|
|
if (mod->init (&mod->info) == GIMP_MODULE_UNLOAD)
|
|
|
|
{
|
|
|
|
mod->state = ST_LOAD_FAILED;
|
1999-05-17 01:22:58 +08:00
|
|
|
gimp_module_unref (mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
mod->info = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* module is now happy */
|
|
|
|
mod->state = ST_LOADED_OK;
|
1999-05-17 01:22:58 +08:00
|
|
|
TRC (("loaded module %s, state at %p\n", mod->fullpath, mod));
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
/* do we have an unload function? */
|
|
|
|
if (g_module_symbol (mod->module, "module_unload", &symbol))
|
|
|
|
mod->unload = symbol;
|
|
|
|
else
|
|
|
|
mod->unload = NULL;
|
1999-01-24 05:07:57 +08:00
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
mod_unload_completed_callback (void *data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
|
|
|
|
|
|
|
g_return_if_fail (mod->state == ST_UNLOAD_REQUESTED);
|
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
/* lose the ref we gave this module when we loaded it,
|
|
|
|
* since the module's now happy to be unloaded. */
|
|
|
|
gimp_module_unref (mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
mod->info = NULL;
|
|
|
|
|
|
|
|
mod->state = ST_UNLOADED_OK;
|
1999-01-24 05:07:57 +08:00
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
TRC (("module unload completed callback for %p\n", mod));
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
module_info_modified (mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mod_unload (module_info *mod, gboolean verbose)
|
|
|
|
{
|
|
|
|
g_return_if_fail (mod->module != NULL);
|
|
|
|
g_return_if_fail (mod->unload != NULL);
|
|
|
|
|
|
|
|
if (mod->state == ST_UNLOAD_REQUESTED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mod->state = ST_UNLOAD_REQUESTED;
|
|
|
|
|
1999-05-17 01:22:58 +08:00
|
|
|
TRC (("module unload requested for %p\n", mod));
|
|
|
|
|
|
|
|
/* Send the unload request. Need to ref the module so we don't
|
1999-02-14 09:53:23 +08:00
|
|
|
* accidentally unload it while this call is in progress (eg if the
|
|
|
|
* callback is called before the unload function returns). */
|
|
|
|
gimp_module_ref (mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
mod->unload (mod->info->shutdown_data, mod_unload_completed_callback, mod);
|
1999-02-14 09:53:23 +08:00
|
|
|
gimp_module_unref (mod);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DUMP_DB
|
|
|
|
static void
|
|
|
|
print_module_info (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *i = data;
|
|
|
|
|
|
|
|
printf ("\n%s: %s\n",
|
|
|
|
i->fullpath, statename[i->state]);
|
|
|
|
printf (" module:%p lasterr:%s init:%p unload:%p\n",
|
|
|
|
i->module, i->last_module_error? i->last_module_error : "NONE",
|
|
|
|
i->init, i->unload);
|
|
|
|
if (i->info)
|
|
|
|
{
|
|
|
|
printf (" shutdown_data: %p\n"
|
|
|
|
" purpose: %s\n"
|
|
|
|
" author: %s\n"
|
|
|
|
" version: %s\n"
|
|
|
|
" copyright: %s\n"
|
|
|
|
" date: %s\n",
|
|
|
|
i->info->shutdown_data,
|
|
|
|
i->info->purpose, i->info->author, i->info->version,
|
|
|
|
i->info->copyright, i->info->date);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
/* UI functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_popdown_callback (GtkWidget *w, gpointer client_data)
|
|
|
|
{
|
|
|
|
gtk_widget_destroy (GTK_WIDGET (client_data));
|
|
|
|
}
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
static void
|
|
|
|
browser_destroy_callback (GtkWidget *w, gpointer client_data)
|
|
|
|
{
|
|
|
|
gtk_signal_disconnect_by_data (GTK_OBJECT (modules), client_data);
|
|
|
|
g_free (client_data);
|
|
|
|
}
|
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
static void
|
1999-02-06 23:15:38 +08:00
|
|
|
browser_info_update (module_info *mod, browser_st *st)
|
1999-01-19 08:03:00 +08:00
|
|
|
{
|
|
|
|
int i;
|
1999-01-24 05:07:57 +08:00
|
|
|
const char *text[NUM_INFO_LINES - 1];
|
|
|
|
char *status;
|
|
|
|
|
|
|
|
/* only update the info if we're actually showing it */
|
|
|
|
if (mod != st->last_update)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!mod)
|
|
|
|
{
|
|
|
|
for (i=0; i < NUM_INFO_LINES; i++)
|
|
|
|
gtk_label_set_text (GTK_LABEL (st->label[i]), "");
|
|
|
|
gtk_label_set_text (GTK_LABEL(st->button_label), _("<No modules>"));
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (st->button), FALSE);
|
|
|
|
return;
|
|
|
|
}
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
if (mod->info)
|
|
|
|
{
|
|
|
|
text[0] = mod->info->purpose;
|
|
|
|
text[1] = mod->info->author;
|
|
|
|
text[2] = mod->info->version;
|
|
|
|
text[3] = mod->info->copyright;
|
|
|
|
text[4] = mod->info->date;
|
1999-01-24 05:07:57 +08:00
|
|
|
text[5] = mod->ondisk? _("on disk") : _("only in memory");
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
text[0] = "--";
|
|
|
|
text[1] = "--";
|
|
|
|
text[2] = "--";
|
|
|
|
text[3] = "--";
|
|
|
|
text[4] = "--";
|
1999-01-24 05:07:57 +08:00
|
|
|
text[5] = mod->ondisk? _("on disk") : _("nowhere (click 'refresh')");
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
|
1999-01-19 08:03:00 +08:00
|
|
|
if (mod->state == ST_MODULE_ERROR && mod->last_module_error)
|
|
|
|
{
|
1999-02-06 23:15:38 +08:00
|
|
|
gulong len = strlen (statename[mod->state]) + 2 +
|
|
|
|
strlen (mod->last_module_error) + 2;
|
|
|
|
|
|
|
|
status = g_malloc (len);
|
|
|
|
g_snprintf (status, len,
|
|
|
|
"%s (%s)", statename[mod->state], mod->last_module_error);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-01-24 05:07:57 +08:00
|
|
|
status = g_strdup (statename[mod->state]);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
for (i=0; i < NUM_INFO_LINES - 1; i++)
|
1999-01-19 08:03:00 +08:00
|
|
|
{
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL (st->label[i]), text[i]);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL (st->label[NUM_INFO_LINES-1]), status);
|
|
|
|
|
|
|
|
g_free (status);
|
1999-01-19 08:03:00 +08:00
|
|
|
|
|
|
|
/* work out what the button should do (if anything) */
|
|
|
|
switch (mod->state) {
|
|
|
|
case ST_MODULE_ERROR:
|
|
|
|
case ST_LOAD_FAILED:
|
|
|
|
case ST_UNLOADED_OK:
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL(st->button_label), _("Load"));
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (st->button), mod->ondisk);
|
1999-01-19 08:03:00 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ST_UNLOAD_REQUESTED:
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (st->button), FALSE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ST_LOADED_OK:
|
1999-01-24 05:07:57 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL(st->button_label), _("Unload"));
|
1999-01-19 08:03:00 +08:00
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (st->button),
|
|
|
|
mod->unload? TRUE : FALSE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-01-24 05:07:57 +08:00
|
|
|
browser_info_init (browser_st *st, GtkWidget *table)
|
1999-01-19 08:03:00 +08:00
|
|
|
{
|
|
|
|
GtkWidget *label;
|
|
|
|
int i;
|
|
|
|
char *text[] = {
|
|
|
|
N_("Purpose: "),
|
|
|
|
N_("Author: "),
|
1999-01-24 05:07:57 +08:00
|
|
|
N_("Version: "),
|
1999-01-19 08:03:00 +08:00
|
|
|
N_("Copyright: "),
|
|
|
|
N_("Date: "),
|
1999-01-24 05:07:57 +08:00
|
|
|
N_("Location: "),
|
1999-01-19 08:03:00 +08:00
|
|
|
N_("State: ")
|
|
|
|
};
|
|
|
|
|
|
|
|
for (i=0; i < sizeof(text) / sizeof(char *); i++)
|
|
|
|
{
|
|
|
|
label = gtk_label_new (gettext (text[i]));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, i, i+1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 2);
|
|
|
|
gtk_widget_show (label);
|
1999-01-24 05:07:57 +08:00
|
|
|
|
|
|
|
st->label[i] = gtk_label_new ("");
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (st->label[i]), 0.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (st->table), st->label[i], 1, 2, i, i+1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 2);
|
|
|
|
gtk_widget_show (st->label[i]);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_select_callback (GtkWidget *widget, GtkWidget *child)
|
|
|
|
{
|
|
|
|
module_info *i;
|
|
|
|
browser_st *st;
|
|
|
|
|
|
|
|
i = gtk_object_get_user_data (GTK_OBJECT (child));
|
|
|
|
st = gtk_object_get_user_data (GTK_OBJECT (widget));
|
|
|
|
|
|
|
|
if (st->last_update == i)
|
|
|
|
return;
|
|
|
|
|
|
|
|
st->last_update = i;
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
browser_info_update (st->last_update, st);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_load_unload_callback (GtkWidget *widget, gpointer data)
|
|
|
|
{
|
|
|
|
browser_st *st = data;
|
|
|
|
|
|
|
|
if (st->last_update->state == ST_LOADED_OK)
|
|
|
|
mod_unload (st->last_update, FALSE);
|
|
|
|
else
|
|
|
|
mod_load (st->last_update, FALSE);
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
module_info_modified (st->last_update);
|
1999-01-24 05:07:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
make_list_item (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *info = data;
|
|
|
|
browser_st *st = user_data;
|
|
|
|
GtkWidget *list_item;
|
|
|
|
|
|
|
|
if (!st->last_update)
|
|
|
|
st->last_update = info;
|
|
|
|
|
|
|
|
list_item = gtk_list_item_new_with_label (info->fullpath);
|
|
|
|
|
|
|
|
gtk_widget_show (list_item);
|
|
|
|
gtk_object_set_user_data (GTK_OBJECT (list_item), info);
|
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (st->list), list_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_info_add (GimpSet *set, module_info *mod, browser_st *st)
|
|
|
|
{
|
|
|
|
make_list_item (mod, st);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_info_remove (GimpSet *set, module_info *mod, browser_st *st)
|
|
|
|
{
|
|
|
|
GList *dlist, *free_list;
|
|
|
|
GtkWidget *list_item;
|
|
|
|
module_info *i;
|
|
|
|
|
|
|
|
dlist = gtk_container_children (GTK_CONTAINER (st->list));
|
|
|
|
free_list = dlist;
|
|
|
|
|
|
|
|
while (dlist)
|
|
|
|
{
|
|
|
|
list_item = dlist->data;
|
|
|
|
|
|
|
|
i = gtk_object_get_user_data (GTK_OBJECT (list_item));
|
|
|
|
g_return_if_fail (i != NULL);
|
|
|
|
|
|
|
|
if (i == mod)
|
|
|
|
{
|
|
|
|
gtk_container_remove (GTK_CONTAINER (st->list), list_item);
|
|
|
|
g_list_free(free_list);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dlist = dlist->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_warning ("tried to remove module that wasn't in brower's list");
|
|
|
|
g_list_free(free_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_db_module_ondisk (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
|
|
|
struct stat statbuf;
|
|
|
|
int ret;
|
|
|
|
int old_ondisk = mod->ondisk;
|
|
|
|
GSList **kill_list = user_data;
|
|
|
|
|
|
|
|
ret = stat (mod->fullpath, &statbuf);
|
|
|
|
if (ret != 0)
|
|
|
|
mod->ondisk = FALSE;
|
|
|
|
else
|
|
|
|
mod->ondisk = TRUE;
|
|
|
|
|
|
|
|
/* if it's not on the disk, and it isn't in memory, mark it to be
|
|
|
|
* removed later. */
|
|
|
|
if (!mod->ondisk && !mod->module)
|
|
|
|
{
|
|
|
|
*kill_list = g_slist_append (*kill_list, mod);
|
|
|
|
mod = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mod && mod->ondisk != old_ondisk)
|
1999-02-06 23:15:38 +08:00
|
|
|
module_info_modified (mod);
|
1999-01-24 05:07:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_db_module_remove (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
|
|
|
|
|
|
|
gimp_set_remove (modules, mod);
|
|
|
|
|
1999-02-06 23:15:38 +08:00
|
|
|
module_info_free (mod);
|
1999-01-24 05:07:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char *search_key;
|
|
|
|
module_info *found;
|
|
|
|
} find_by_path_closure;
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_db_path_cmp (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
module_info *mod = data;
|
|
|
|
find_by_path_closure *cl = user_data;
|
|
|
|
|
|
|
|
if (!strcmp (mod->fullpath, cl->search_key))
|
|
|
|
cl->found = mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
static module_info *
|
|
|
|
module_find_by_path (const char *fullpath)
|
|
|
|
{
|
|
|
|
find_by_path_closure cl;
|
|
|
|
|
|
|
|
cl.found = NULL;
|
|
|
|
cl.search_key = fullpath;
|
|
|
|
|
|
|
|
gimp_set_foreach (modules, module_db_path_cmp, &cl);
|
|
|
|
|
|
|
|
return cl.found;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
browser_refresh_callback (GtkWidget *widget, gpointer data)
|
|
|
|
{
|
|
|
|
GSList *kill_list = NULL;
|
|
|
|
|
|
|
|
/* remove modules we don't have on disk anymore */
|
|
|
|
gimp_set_foreach (modules, module_db_module_ondisk, &kill_list);
|
|
|
|
g_slist_foreach (kill_list, module_db_module_remove, NULL);
|
|
|
|
g_slist_free (kill_list);
|
|
|
|
kill_list = NULL;
|
|
|
|
|
|
|
|
/* walk filesystem and add new things we find */
|
|
|
|
datafiles_read_directories (module_path,
|
|
|
|
module_initialize, 0 /* no flags */);
|
1999-01-19 08:03:00 +08:00
|
|
|
}
|
1999-02-14 09:53:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_module_ref (module_info *mod)
|
|
|
|
{
|
|
|
|
g_return_if_fail (mod->refs >= 0);
|
|
|
|
g_return_if_fail (mod->module != NULL);
|
|
|
|
mod->refs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_module_unref (module_info *mod)
|
|
|
|
{
|
|
|
|
g_return_if_fail (mod->refs > 0);
|
|
|
|
g_return_if_fail (mod->module != NULL);
|
|
|
|
|
|
|
|
mod->refs--;
|
|
|
|
|
|
|
|
if (mod->refs == 0)
|
|
|
|
{
|
1999-05-17 01:22:58 +08:00
|
|
|
TRC (("module %p refs hit 0, g_module_closing it\n", mod));
|
1999-02-14 09:53:23 +08:00
|
|
|
g_module_close (mod->module);
|
|
|
|
mod->module = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* End of module_db.c */
|