]> Pileus Git - grits/blobdiff - src/gis-plugin.c
Update copyright and email address
[grits] / src / gis-plugin.c
index 8c3ba3674a39847ff10f6eb0b886e8ffbe45e68b..05e415a40c3df6d8b3bd7f30fc29cc2180bd38bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
+ * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
  *
  * 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,16 +47,6 @@ GType gis_plugin_get_type()
        return type;
 }
 
-void gis_plugin_expose(GisPlugin *self)
-{
-       if (!GIS_IS_PLUGIN(self))
-               return;
-       GisPluginInterface *iface = GIS_PLUGIN_GET_INTERFACE(self);
-       if (iface->expose)
-               return
-       GIS_PLUGIN_GET_INTERFACE(self)->expose(self);
-}
-
 GtkWidget *gis_plugin_get_config(GisPlugin *self)
 {
        if (!GIS_IS_PLUGIN(self))
@@ -80,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);
@@ -161,20 +152,20 @@ GisPlugin *gis_plugins_load(GisPlugins *self, const char *name,
        GisPluginStore *store = g_new0(GisPluginStore, 1);
        store->name = g_strdup(name);
        store->plugin = constructor(viewer, prefs);
-       g_ptr_array_add(self->plugins, store);
+       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;
@@ -186,8 +177,8 @@ void gis_plugins_foreach(GisPlugins *self, GCallback _callback, gpointer user_da
                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);
        }
 }