Mercurial > pidgin
view src/plugins.c @ 646:83c773b5b6dc
[gaim-migrate @ 656]
stupid, stupid, stupid
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 09 Aug 2000 01:57:19 +0000 |
parents | d86cc11faab8 |
children | 732ee4f6f541 |
line wrap: on
line source
/* * gaim * * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> * * 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 * * ---------------- * The Plug-in plug * * Plugin support is currently being maintained by Mike Saraf * msaraf@dwc.edu * * Well, I didn't see any work done on it for a while, so I'm going to try * my hand at it. - Eric warmenhoven@yahoo.com * */ #ifdef HAVE_CONFIG_H #include "../config.h" #endif #ifdef GAIM_PLUGINS #include <string.h> #include <sys/time.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <gtk/gtk.h> #include "gaim.h" #include "pixmaps/gnome_add.xpm" #include "pixmaps/gnome_close.xpm" #include "pixmaps/gnome_preferences.xpm" #include "pixmaps/gnome_remove.xpm" #include "pixmaps/ok.xpm" #include <dlfcn.h> /* ------------------ Global Variables ----------------------- */ GList *plugins = NULL; GList *callbacks = NULL; /* ------------------ Local Variables ------------------------ */ static GtkWidget *plugin_dialog = NULL; static GtkWidget *pluglist; static GtkWidget *plugtext; static GtkWidget *plugwindow; static GtkWidget *config = NULL; static guint confighandle = 0; /* --------------- Function Declarations --------------------- */ void show_plugins (GtkWidget *, gpointer); void load_plugin (char *); void gaim_signal_connect (void *, enum gaim_event, void *, void *); void gaim_signal_disconnect(void *, enum gaim_event, void *); void gaim_plugin_unload (void *); static void destroy_plugins (GtkWidget *, gpointer); static void load_file (GtkWidget *, gpointer); static void load_which_plugin(GtkWidget *, gpointer); static void unload (GtkWidget *, gpointer); static void list_clicked (GtkWidget *, struct gaim_plugin *); static void update_show_plugins(); static void hide_plugins (GtkWidget *, gpointer); /* ------------------ Code Below ---------------------------- */ static void destroy_plugins(GtkWidget *w, gpointer data) { if (plugin_dialog) gtk_widget_destroy(plugin_dialog); plugin_dialog = NULL; } static void load_file(GtkWidget *w, gpointer data) { char *buf = g_malloc(BUF_LEN); FILE *fd; if (plugin_dialog) { g_free(buf); gtk_widget_show(plugin_dialog); gdk_window_raise(plugin_dialog->window); return; } plugin_dialog = gtk_file_selection_new(_("Gaim - Plugin List")); gtk_file_selection_hide_fileop_buttons( GTK_FILE_SELECTION(plugin_dialog)); g_snprintf(buf, BUF_LEN - 1, "%s/%s", getenv("HOME"), PLUGIN_DIR); fd = fopen(buf, "r"); if (!fd) mkdir(buf, S_IRUSR | S_IWUSR | S_IXUSR); else fclose(fd); gtk_file_selection_set_filename(GTK_FILE_SELECTION(plugin_dialog), buf); gtk_file_selection_complete(GTK_FILE_SELECTION(plugin_dialog), "*.so"); gtk_signal_connect(GTK_OBJECT(plugin_dialog), "destroy", GTK_SIGNAL_FUNC(destroy_plugins), plugin_dialog); gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(plugin_dialog)->ok_button), "clicked", GTK_SIGNAL_FUNC(load_which_plugin), NULL); gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(plugin_dialog)->cancel_button), "clicked", GTK_SIGNAL_FUNC(destroy_plugins), NULL); g_free(buf); gtk_widget_show(plugin_dialog); gdk_window_raise(plugin_dialog->window); } static void load_which_plugin(GtkWidget *w, gpointer data) { load_plugin(gtk_file_selection_get_filename( GTK_FILE_SELECTION(plugin_dialog))); if (plugin_dialog) gtk_widget_destroy(plugin_dialog); plugin_dialog = NULL; } void load_plugin(char *filename) { struct gaim_plugin *plug; GList *c = plugins; int (*gaim_plugin_init)(); char *(*gaim_plugin_error)(int); char *(*cfunc)(); char *error; int retval; char *plugin_error; if (filename == NULL) return; /* i shouldn't be checking based solely on path, but i'm lazy */ while (c) { plug = (struct gaim_plugin *)c->data; if (!strcmp(filename, plug->filename)) { sprintf(debug_buff, _("Already loaded %s, " "not reloading.\n"), filename); debug_print(debug_buff); return; } c = c->next; } plug = g_malloc(sizeof *plug); if (filename[0] != '/') { char *buf = g_malloc(BUF_LEN); g_snprintf(buf, BUF_LEN - 1, "%s/%s", getenv("HOME"), PLUGIN_DIR); plug->filename = g_malloc(strlen(buf) + strlen(filename) + 1); sprintf(plug->filename, "%s%s", buf, filename); } else plug->filename = g_strdup(filename); sprintf(debug_buff, "Loading %s\n", filename); debug_print(debug_buff); /* do NOT `OR' with RTLD_GLOBAL, otherwise plugins may conflict * (it's really just a way to work around other people's bad * programming, by not using RTLD_GLOBAL :P ) */ plug->handle = dlopen(plug->filename, RTLD_LAZY); if (!plug->handle) { error = (char *)dlerror(); do_error_dialog(error, _("Plugin Error")); g_free(plug); return; } gaim_plugin_init = dlsym(plug->handle, "gaim_plugin_init"); if ((error = (char *)dlerror()) != NULL) { do_error_dialog(error, _("Plugin Error")); dlclose(plug->handle); g_free(plug); return; } retval = (*gaim_plugin_init)(plug->handle); sprintf(debug_buff, "loaded plugin returned %d\n", retval); debug_print(debug_buff); if (retval < 0) { GList *c = callbacks; struct gaim_callback *g; while (c) { g = (struct gaim_callback *)c->data; if (g->handle == plug->handle) { callbacks = g_list_remove(callbacks, c->data); sprintf(debug_buff, "Removing callback, %d remain\n", g_list_length(callbacks)); debug_print(debug_buff); c = callbacks; if (c == NULL) { break; } } else { c = c->next; } } gaim_plugin_error = dlsym(plug->handle, "gaim_plugin_error"); if ((error = (char *)dlerror()) == NULL) { plugin_error = (*gaim_plugin_error)(retval); if (plugin_error) do_error_dialog(plugin_error, _("Plugin Error")); } dlclose(plug->handle); g_free(plug); return; } plugins = g_list_append(plugins, plug); cfunc = dlsym(plug->handle, "name"); if ((error = (char *)dlerror()) == NULL) plug->name = (*cfunc)(); else plug->name = NULL; cfunc = dlsym(plug->handle, "description"); if ((error = (char *)dlerror()) == NULL) plug->description = (*cfunc)(); else plug->description = NULL; update_show_plugins(); save_prefs(); } void show_plugins(GtkWidget *w, gpointer data) { /* most of this code was shamelessly stolen from prefs.c */ GtkWidget *page; GtkWidget *topbox; GtkWidget *botbox; GtkWidget *sw; GtkWidget *label; GtkWidget *list_item; GtkWidget *sw2; GtkWidget *add; GtkWidget *remove; GtkWidget *close; GList *plugs = plugins; struct gaim_plugin *p; gchar buffer[1024]; if (plugwindow) return; plugwindow = gtk_window_new(GTK_WINDOW_DIALOG); gtk_widget_realize(plugwindow); aol_icon(plugwindow->window); gtk_container_border_width(GTK_CONTAINER(plugwindow), 10); gtk_window_set_title(GTK_WINDOW(plugwindow), _("Gaim - Plugins")); gtk_widget_set_usize(plugwindow, -1, 250); gtk_signal_connect(GTK_OBJECT(plugwindow), "destroy", GTK_SIGNAL_FUNC(hide_plugins), NULL); page = gtk_vbox_new(FALSE, 0); topbox = gtk_hbox_new(FALSE, 0); botbox = gtk_hbox_new(FALSE, 0); sw2 = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw2), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); pluglist = gtk_list_new(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(sw2), pluglist); gtk_box_pack_start(GTK_BOX(topbox), sw2, TRUE, TRUE, 0); sw = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); plugtext = gtk_text_new(NULL, NULL); gtk_container_add(GTK_CONTAINER(sw), plugtext); gtk_box_pack_start(GTK_BOX(topbox), sw, TRUE, TRUE, 0); gtk_text_set_word_wrap(GTK_TEXT(plugtext), TRUE); gtk_text_set_editable(GTK_TEXT(plugtext), FALSE); add = picture_button(plugwindow, _("Add Plugin"), gnome_add_xpm); gtk_signal_connect(GTK_OBJECT(add), "clicked", GTK_SIGNAL_FUNC(load_file), NULL); gtk_box_pack_start(GTK_BOX(botbox), add, TRUE, FALSE, 5); config = picture_button(plugwindow, _("Configure Plugin"), gnome_preferences_xpm); gtk_widget_set_sensitive(config, 0); gtk_box_pack_start(GTK_BOX(botbox), config, TRUE, FALSE, 5); remove = picture_button(plugwindow, _("Remove Plugin"), gnome_remove_xpm); gtk_signal_connect(GTK_OBJECT(remove), "clicked", GTK_SIGNAL_FUNC(unload), pluglist); gtk_box_pack_start(GTK_BOX(botbox), remove, TRUE, FALSE, 5); close = picture_button(plugwindow, _("Close"), gnome_close_xpm); gtk_signal_connect(GTK_OBJECT(close), "clicked", GTK_SIGNAL_FUNC(hide_plugins), NULL); gtk_box_pack_start(GTK_BOX(botbox), close, TRUE, FALSE, 5); if (display_options & OPT_DISP_COOL_LOOK) { gtk_button_set_relief(GTK_BUTTON(add), GTK_RELIEF_NONE); gtk_button_set_relief(GTK_BUTTON(config), GTK_RELIEF_NONE); gtk_button_set_relief(GTK_BUTTON(remove), GTK_RELIEF_NONE); gtk_button_set_relief(GTK_BUTTON(close), GTK_RELIEF_NONE); } gtk_box_pack_start(GTK_BOX(page), topbox, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(page), botbox, FALSE, FALSE, 0); if (plugs != NULL) { p = (struct gaim_plugin *)plugs->data; g_snprintf(buffer, sizeof(buffer), "%s", p->filename); gtk_text_insert(GTK_TEXT(plugtext), NULL, NULL, NULL, buffer, -1); } while (plugs) { p = (struct gaim_plugin *)plugs->data; label = gtk_label_new(p->filename); list_item = gtk_list_item_new(); gtk_container_add(GTK_CONTAINER(list_item), label); gtk_signal_connect(GTK_OBJECT(list_item), "select", GTK_SIGNAL_FUNC(list_clicked), p); gtk_object_set_user_data(GTK_OBJECT(list_item), p); gtk_widget_show(label); gtk_container_add(GTK_CONTAINER(pluglist), list_item); gtk_widget_show(list_item); plugs = plugs->next; } if (plugins != NULL) gtk_list_select_item(GTK_LIST(pluglist), 0); gtk_widget_show(page); gtk_widget_show(topbox); gtk_widget_show(botbox); gtk_widget_show(sw); gtk_widget_show(sw2); gtk_widget_show(pluglist); gtk_widget_show(plugtext); gtk_widget_show(add); gtk_widget_show(config); gtk_widget_show(remove); gtk_widget_show(close); gtk_container_add(GTK_CONTAINER(plugwindow), page); gtk_widget_show(plugwindow); } void update_show_plugins() { GList *plugs = plugins; struct gaim_plugin *p; GtkWidget *label; GtkWidget *list_item; if (plugwindow == NULL) return; gtk_list_clear_items(GTK_LIST(pluglist), 0, -1); while (plugs) { p = (struct gaim_plugin *)plugs->data; label = gtk_label_new(p->filename); list_item = gtk_list_item_new(); gtk_container_add(GTK_CONTAINER(list_item), label); gtk_signal_connect(GTK_OBJECT(list_item), "select", GTK_SIGNAL_FUNC(list_clicked), p); gtk_object_set_user_data(GTK_OBJECT(list_item), p); gtk_widget_show(label); gtk_container_add(GTK_CONTAINER(pluglist), list_item); gtk_widget_show(list_item); plugs = plugs->next; } if (plugins != NULL) gtk_list_select_item(GTK_LIST(pluglist), 0); else { gtk_text_set_point(GTK_TEXT(plugtext), 0); gtk_text_forward_delete(GTK_TEXT(plugtext), gtk_text_get_length(GTK_TEXT(plugtext))); } } void unload(GtkWidget *w, gpointer data) { GList *i; struct gaim_plugin *p; void (*gaim_plugin_remove)(); char *error; i = GTK_LIST(pluglist)->selection; if (i == NULL) return; p = gtk_object_get_user_data(GTK_OBJECT(i->data)); gaim_plugin_remove = dlsym(p->handle, "gaim_plugin_remove"); if ((error = (char *)dlerror()) == NULL) (*gaim_plugin_remove)(); gaim_plugin_unload(p->handle); } static void remove_callback(struct gaim_plugin *p) { gtk_timeout_remove(p->remove); dlclose(p->handle); g_free(p); } /* gaim_plugin_unload serves 2 purposes: 1. so plugins can unload themselves * 2. to make my life easier */ void gaim_plugin_unload(void *handle) { GList *i; struct gaim_plugin *p = NULL; GList *c = callbacks; struct gaim_callback *g; i = plugins; while (i) { p = (struct gaim_plugin *)i->data; if (handle == p->handle) break; p = NULL; i = i->next; } if (!p) return; sprintf(debug_buff, "Unloading %s\n", p->filename); debug_print(debug_buff); sprintf(debug_buff, "%d callbacks to search\n", g_list_length(callbacks)); debug_print(debug_buff); while (c) { g = (struct gaim_callback *)c->data; if (g->handle == p->handle) { callbacks = g_list_remove(callbacks, c->data); g_free(g); sprintf(debug_buff, "Removing callback, %d remain\n", g_list_length(callbacks)); debug_print(debug_buff); c = callbacks; if (c == NULL) { break; } } else { c = c->next; } } p->remove = gtk_timeout_add(5000, (GtkFunction)remove_callback, p); plugins = g_list_remove(plugins, p); g_free(p->filename); if (config) gtk_widget_set_sensitive(config, 0); update_show_plugins(); save_prefs(); } void list_clicked(GtkWidget *w, struct gaim_plugin *p) { gchar buffer[2048]; guint text_len; void (*gaim_plugin_config)(); char *error; if (confighandle != 0) gtk_signal_disconnect(GTK_OBJECT(config), confighandle); text_len = gtk_text_get_length(GTK_TEXT(plugtext)); gtk_text_set_point(GTK_TEXT(plugtext), 0); gtk_text_forward_delete(GTK_TEXT(plugtext), text_len); g_snprintf(buffer, sizeof buffer, "%s\n%s", p->name, p->description); gtk_text_insert(GTK_TEXT(plugtext), NULL, NULL, NULL, buffer, -1); gaim_plugin_config = dlsym(p->handle, "gaim_plugin_config"); if ((error = (char *)dlerror()) == NULL) { confighandle = gtk_signal_connect(GTK_OBJECT(config), "clicked", GTK_SIGNAL_FUNC(gaim_plugin_config), NULL); gtk_widget_set_sensitive(config, 1); } else { confighandle = 0; gtk_widget_set_sensitive(config, 0); } } void hide_plugins(GtkWidget *w, gpointer data) { if (plugwindow) gtk_widget_destroy(plugwindow); plugwindow = NULL; config = NULL; confighandle = 0; } void gaim_signal_connect(void *handle, enum gaim_event which, void *func, void *data) { struct gaim_callback *call = g_malloc(sizeof *call); call->handle = handle; call->event = which; call->function = func; call->data = data; callbacks = g_list_append(callbacks, call); sprintf(debug_buff, "Adding callback %d\n", g_list_length(callbacks)); debug_print(debug_buff); } void gaim_signal_disconnect(void *handle, enum gaim_event which, void *func) { GList *c = callbacks; struct gaim_callback *g = NULL; while (c) { g = (struct gaim_callback *)c->data; if (handle == g->handle && func == g->function) { callbacks = g_list_remove(callbacks, c->data); g_free(g); c = callbacks; if (c == NULL) break; } c = c->next; } } #endif /* GAIM_PLUGINS */