X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=src%2Fgis-plugin.c;h=05e415a40c3df6d8b3bd7f30fc29cc2180bd38bb;hp=f87b09a6ba50d860558fecb126af919ca8e35118;hb=c2e39b9d64035038a19d753129cc2124b4ed1382;hpb=a2a902d978b6050289f7a92794fb1dc0aa2b5e26 diff --git a/src/gis-plugin.c b/src/gis-plugin.c index f87b09a..05e415a 100644 --- a/src/gis-plugin.c +++ b/src/gis-plugin.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009 Andy Spencer + * Copyright (C) 2009-2010 Andy Spencer * * 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 @@ -47,15 +47,10 @@ GType gis_plugin_get_type() return type; } -void gis_plugin_expose(GisPlugin *self) -{ - g_return_if_fail(GIS_IS_PLUGIN(self)); - GIS_PLUGIN_GET_INTERFACE(self)->expose(self); -} - GtkWidget *gis_plugin_get_config(GisPlugin *self) { - g_return_val_if_fail(GIS_IS_PLUGIN(self), NULL); + if (!GIS_IS_PLUGIN(self)) + return NULL; GisPluginInterface *iface = GIS_PLUGIN_GET_INTERFACE(self); return iface->get_config ? iface->get_config (self) : NULL; } @@ -75,21 +70,22 @@ GisPlugins *gis_plugins_new(gchar *dir) GisPlugins *plugins = g_new0(GisPlugins, 1); if (dir) plugins->dir = g_strdup(dir); - plugins->plugins = g_ptr_array_new(); return plugins; } void gis_plugins_free(GisPlugins *self) { g_debug("GisPlugins: free"); - for (int i = 0; i < self->plugins->len; i++) { - GisPluginStore *store = g_ptr_array_index(self->plugins, i); + for (GList *cur = self->plugins; cur; cur = cur->next) { + GisPluginStore *store = cur->data; + g_debug("GisPlugin: freeing %s refs=%d->%d", store->name, + G_OBJECT(store->plugin)->ref_count, + G_OBJECT(store->plugin)->ref_count-1); g_object_unref(store->plugin); g_free(store->name); g_free(store); - g_ptr_array_remove_index(self->plugins, i); } - g_ptr_array_free(self->plugins, TRUE); + g_list_free(self->plugins); if (self->dir) g_free(self->dir); g_free(self); @@ -119,7 +115,7 @@ GList *gis_plugins_available(GisPlugins *self) } GisPlugin *gis_plugins_load(GisPlugins *self, const char *name, - GisViewer *viewer, GisOpenGL *opengl, GisPrefs *prefs) + GisViewer *viewer, GisPrefs *prefs) { g_debug("GisPlugins: load %s", name); gchar *path = g_strdup_printf("%s/%s.%s", self->dir, name, G_MODULE_SUFFIX); @@ -155,21 +151,21 @@ GisPlugin *gis_plugins_load(GisPlugins *self, const char *name, GisPluginStore *store = g_new0(GisPluginStore, 1); store->name = g_strdup(name); - store->plugin = constructor(viewer, opengl, prefs); - g_ptr_array_add(self->plugins, store); + store->plugin = constructor(viewer, prefs); + self->plugins = g_list_prepend(self->plugins, store); return store->plugin; } gboolean gis_plugins_unload(GisPlugins *self, const char *name) { g_debug("GisPlugins: unload %s", name); - for (int i = 0; i < self->plugins->len; i++) { - GisPluginStore *store = g_ptr_array_index(self->plugins, i); + for (GList *cur = self->plugins; cur; cur = cur->next) { + GisPluginStore *store = cur->data; if (g_str_equal(store->name, name)) { g_object_unref(store->plugin); g_free(store->name); g_free(store); - g_ptr_array_remove_index(self->plugins, i); + self->plugins = g_list_delete_link(self->plugins, cur); } } return FALSE; @@ -177,10 +173,12 @@ gboolean gis_plugins_unload(GisPlugins *self, const char *name) void gis_plugins_foreach(GisPlugins *self, GCallback _callback, gpointer user_data) { g_debug("GisPlugins: foreach"); + if (self == NULL) + return; typedef void (*CBFunc)(GisPlugin *, const gchar *, gpointer); CBFunc callback = (CBFunc)_callback; - for (int i = 0; i < self->plugins->len; i++) { - GisPluginStore *store = g_ptr_array_index(self->plugins, i); + for (GList *cur = self->plugins; cur; cur = cur->next) { + GisPluginStore *store = cur->data; callback(store->plugin, store->name, user_data); } }