2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail Team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include <glib/gi18n.h>
45 const gchar *(*name) (void);
46 const gchar *(*desc) (void);
47 const gchar *(*version) (void);
48 const gchar *(*type) (void);
49 const gchar *(*licence) (void);
50 struct PluginFeature *(*provides) (void);
54 gboolean unloaded_hidden;
57 const gchar *plugin_feature_names[] =
63 N_("a privacy interface"),
70 * List of all loaded plugins
72 GSList *plugins = NULL;
73 GSList *plugin_types = NULL;
76 * List of plugins unloaded for some fixable reason
78 static GSList *unloaded_plugins = NULL;
80 static gint list_find_by_string(gconstpointer data, gconstpointer str)
82 return strcmp((gchar *)data, (gchar *)str) ? TRUE : FALSE;
85 static gint list_find_by_plugin_filename(const Plugin *plugin, const gchar *filename)
87 /* FIXME: There is a problem in case of symlinks or when a
88 user tries to load a plugin with the same name from a
89 different directory. I think it would be better to compare
90 only the basename of the filename here (case-insensitive on
92 g_return_val_if_fail(plugin, 1);
93 g_return_val_if_fail(plugin->filename, 1);
94 g_return_val_if_fail(filename, 1);
95 return strcmp(filename, plugin->filename);
98 void plugin_save_list(void)
100 gchar *rcpath, *block;
102 GSList *type_cur, *plugin_cur;
105 for (type_cur = plugin_types; type_cur != NULL; type_cur = g_slist_next(type_cur)) {
106 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
108 block = g_strconcat("PluginsWin32_", type_cur->data, NULL);
110 block = g_strconcat("Plugins_", type_cur->data, NULL);
112 if ((pfile = prefs_write_open(rcpath)) == NULL ||
113 (prefs_set_block_label(pfile, block) < 0)) {
114 g_warning("failed to write plugin list\n");
120 for (plugin_cur = plugins; plugin_cur != NULL; plugin_cur = g_slist_next(plugin_cur)) {
121 plugin = (Plugin *) plugin_cur->data;
123 if (plugin->unloaded_hidden)
126 if (!strcmp(plugin->type(), type_cur->data))
127 fprintf(pfile->fp, "%s\n", plugin->filename);
129 for (plugin_cur = unloaded_plugins; plugin_cur != NULL; plugin_cur = g_slist_next(plugin_cur)) {
130 plugin = (Plugin *) plugin_cur->data;
132 if (plugin->unloaded_hidden)
135 if (!strcmp(plugin->type(), type_cur->data))
136 fprintf(pfile->fp, "%s\n", plugin->filename);
138 fprintf(pfile->fp, "\n");
140 if (prefs_file_close(pfile) < 0)
141 g_warning("failed to write plugin list\n");
147 static gboolean plugin_is_loaded(const gchar *filename)
149 return (g_slist_find_custom(plugins, filename,
150 (GCompareFunc)list_find_by_plugin_filename) != NULL);
153 static Plugin *plugin_get_by_filename(const gchar *filename)
155 GSList *cur = plugins;
156 for(; cur; cur = cur->next) {
157 Plugin *p = (Plugin *)cur->data;
158 if (!strcmp(p->filename, filename)) {
166 * Loads a plugin dependancies
168 * Plugin dependancies are, optionnaly, listed in a file in
169 * get_plugin_dir()/$pluginname.deps.
170 * \param filename The filename of the plugin for which we have to load deps
171 * \param error The location where an error string can be stored
172 * \return 0 on success, -1 otherwise
174 static gint plugin_load_deps(const gchar *filename, gchar **error)
177 gchar *deps_file = NULL;
182 tmp = g_strdup(filename);
183 if( (p = strrchr(tmp, '.')) )
185 deps_file = g_strconcat(tmp, ".deps", NULL);
188 fp = g_fopen(deps_file, "rb");
194 while (fgets(buf, sizeof(buf), fp) != NULL) {
195 Plugin *dep_plugin = NULL;
197 buf[strlen(buf)-1]='\0'; /* chop off \n */
198 path = g_strconcat(get_plugin_dir(), buf,
199 ".", G_MODULE_SUFFIX, NULL);
200 if ((dep_plugin = plugin_get_by_filename(path)) == NULL) {
201 debug_print("trying to load %s\n", path);
202 dep_plugin = plugin_load(path, error);
203 if (dep_plugin == NULL) {
209 if (!g_slist_find_custom(dep_plugin->rdeps,
210 (gpointer) filename, list_find_by_string)) {
211 debug_print("adding %s to %s rdeps\n",
213 dep_plugin->filename);
215 g_slist_append(dep_plugin->rdeps,
223 static void plugin_unload_rdeps(Plugin *plugin)
225 GSList *cur = plugin->rdeps;
226 debug_print("removing %s rdeps\n", plugin->filename);
228 gchar *file = (gchar *)cur->data;
229 Plugin *rdep_plugin = file?plugin_get_by_filename(file):NULL;
230 debug_print(" rdep %s: %p\n", file, rdep_plugin);
232 plugin_unload(rdep_plugin);
237 g_slist_free(plugin->rdeps);
238 plugin->rdeps = NULL;
241 static void plugin_remove_from_unloaded_list (const gchar *filename)
243 GSList *item = g_slist_find_custom(unloaded_plugins,
244 (gpointer) filename, (GCompareFunc)list_find_by_plugin_filename);
245 Plugin *unloaded_plugin = item ? ((Plugin *)item->data):NULL;
246 if (unloaded_plugin != NULL) {
247 debug_print("removing %s from unloaded list\n", unloaded_plugin->filename);
248 unloaded_plugins = g_slist_remove(unloaded_plugins, unloaded_plugin);
249 g_module_close(unloaded_plugin->module);
250 g_free(unloaded_plugin->filename);
251 g_free(unloaded_plugin->error);
252 g_free(unloaded_plugin);
256 static gchar *plugin_check_features(struct PluginFeature *features) {
258 GSList *cur = plugins;
260 if (features == NULL)
262 for(; cur; cur = cur->next) {
263 Plugin *p = (Plugin *)cur->data;
264 struct PluginFeature *cur_features = p->provides();
265 if (p->unloaded_hidden)
267 for (j = 0; cur_features[j].type != PLUGIN_NOTHING; j++) {
268 for (i = 0; features[i].type != PLUGIN_NOTHING; i++) {
269 if (cur_features[j].type == features[i].type &&
270 !strcmp(cur_features[j].subtype, features[i].subtype)) {
271 return g_strdup_printf(_(
272 "This plugin provides %s (%s), which is "
273 "already provided by the %s plugin."),
274 _(plugin_feature_names[features[i].type]),
275 _(features[i].subtype),
287 * \param filename The filename of the plugin to load
288 * \param error The location where an error string can be stored
289 * \return the plugin on success, NULL otherwise
291 Plugin *plugin_load(const gchar *filename, gchar **error)
294 gint (*plugin_init) (gchar **error);
295 gpointer plugin_name, plugin_desc, plugin_version;
296 const gchar *(*plugin_type)(void);
297 const gchar *(*plugin_licence)(void);
298 struct PluginFeature *(*plugin_provides)(void);
300 START_TIMING((filename?filename:"NULL plugin"));
301 g_return_val_if_fail(filename != NULL, NULL);
302 g_return_val_if_fail(error != NULL, NULL);
304 /* check duplicate plugin path name */
305 if (plugin_is_loaded(filename)) {
306 plugin = plugin_get_by_filename(filename);
307 if (plugin->unloaded_hidden) {
311 *error = g_strdup(_("Plugin already loaded"));
316 plugin_remove_from_unloaded_list(filename);
318 if (plugin_load_deps(filename, error) < 0)
320 plugin = g_new0(Plugin, 1);
321 if (plugin == NULL) {
322 *error = g_strdup(_("Failed to allocate memory for Plugin"));
326 debug_print("trying to load `%s'\n", filename);
327 plugin->module = g_module_open(filename, 0);
328 if (plugin->module == NULL) {
329 *error = g_strdup(g_module_error());
335 if (!g_module_symbol(plugin->module, "plugin_name", &plugin_name) ||
336 !g_module_symbol(plugin->module, "plugin_desc", &plugin_desc) ||
337 !g_module_symbol(plugin->module, "plugin_version", &plugin_version) ||
338 !g_module_symbol(plugin->module, "plugin_type", (gpointer)&plugin_type) ||
339 !g_module_symbol(plugin->module, "plugin_licence", (gpointer)&plugin_licence) ||
340 !g_module_symbol(plugin->module, "plugin_provides", (gpointer)&plugin_provides) ||
341 !g_module_symbol(plugin->module, "plugin_init", (gpointer)&plugin_init)) {
342 *error = g_strdup(g_module_error());
343 if (plugin->unloaded_hidden)
345 g_module_close(plugin->module);
350 if (strcmp(plugin_licence(), "GPL2+") && strncmp(plugin_licence(), "GPL3", strlen("GPL3"))
351 && strncmp(plugin_licence(), "GPL2+-compatible", strlen("GPL2+-compatible"))) {
352 *error = g_strdup(_("This module is not licenced under a GPL v2 or later compatible licence."));
353 if (plugin->unloaded_hidden)
355 g_module_close(plugin->module);
360 if (!strcmp(plugin_type(), "GTK")) {
361 *error = g_strdup(_("This module is for Claws Mail GTK1."));
362 if (plugin->unloaded_hidden)
364 g_module_close(plugin->module);
369 if ((*error = plugin_check_features(plugin_provides())) != NULL) {
370 if (plugin->unloaded_hidden)
372 g_module_close(plugin->module);
376 plugin->name = plugin_name;
377 plugin->desc = plugin_desc;
378 plugin->version = plugin_version;
379 plugin->type = plugin_type;
380 plugin->licence = plugin_licence;
381 plugin->provides = plugin_provides;
382 plugin->filename = g_strdup(filename);
383 plugin->error = NULL;
385 if ((ok = plugin_init(error)) < 0) {
387 plugin->error = g_strdup(*error);
388 unloaded_plugins = g_slist_append(unloaded_plugins, plugin);
392 if (!plugin->unloaded_hidden)
393 plugins = g_slist_append(plugins, plugin);
394 plugin->unloaded_hidden = FALSE;
396 debug_print("Plugin %s (from file %s) loaded\n", plugin->name(), filename);
401 void plugin_unload(Plugin *plugin)
403 gboolean (*plugin_done) (void);
404 gboolean can_unload = TRUE;
406 plugin_unload_rdeps(plugin);
408 if (plugin->unloaded_hidden)
412 plugin_remove_from_unloaded_list(plugin->filename);
415 if (g_module_symbol(plugin->module, "plugin_done", (gpointer) &plugin_done)) {
416 can_unload = plugin_done();
421 if (!RUNNING_ON_VALGRIND) {
422 g_module_close(plugin->module);
425 g_module_close(plugin->module);
427 plugins = g_slist_remove(plugins, plugin);
428 g_free(plugin->filename);
431 plugin->unloaded_hidden = TRUE;
436 void plugin_load_all(const gchar *type)
441 gchar *error = NULL, *block;
443 plugin_types = g_slist_append(plugin_types, g_strdup(type));
445 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
447 block = g_strconcat("PluginsWin32_", type, NULL);
449 block = g_strconcat("Plugins_", type, NULL);
451 if ((pfile = prefs_read_open(rcpath)) == NULL ||
452 (prefs_set_block_label(pfile, block) < 0)) {
458 while (fgets(buf, sizeof(buf), pfile->fp) != NULL) {
463 if ((buf[0] != '\0') && (plugin_load(buf, &error) == NULL)) {
464 g_warning("plugin loading error: %s\n", error);
468 prefs_file_close(pfile);
473 void plugin_unload_all(const gchar *type)
477 list = g_slist_copy(plugins);
478 list = g_slist_reverse(list);
480 for(cur = list; cur != NULL; cur = g_slist_next(cur)) {
481 Plugin *plugin = (Plugin *) cur->data;
483 if (!strcmp(type, plugin->type()))
484 plugin_unload(plugin);
488 cur = g_slist_find_custom(plugin_types, (gpointer) type, list_find_by_string);
491 plugin_types = g_slist_remove(plugin_types, cur);
496 /* Load those plugins we always want to use. No error output; just
498 void plugin_load_standard_plugins (void)
500 static const char *names[] = {
511 gchar *error, *filename;
513 for (i=0; names[i]; i++) {
514 /* Simple hack to check whether the plugin has already
515 * been loaded but checking only for the basename. */
516 GSList *cur = plugins;
517 for(; cur; cur = cur->next) {
518 Plugin *p = (Plugin *)cur->data;
519 if (strstr(p->filename, names[i]))
522 if (!cur) { /* Not yet loaded. */
523 /* FIXME: get_plugin_dir () returns with a trailing
524 * (back)slash; this should be fixed so that we can use
525 * g_module_build_path here. */
527 filename = g_strconcat (get_plugin_dir(),
530 filename = g_strconcat (get_plugin_dir(),
531 names[i], ".", G_MODULE_SUFFIX, NULL);
534 plugin_load(filename, &error);
541 GSList *plugin_get_list(void)
544 GSList *cur = plugins;
545 for (; cur; cur = cur->next) {
546 Plugin *p = (Plugin *)cur->data;
547 if (!p->unloaded_hidden)
548 new = g_slist_prepend(new, p);
550 new = g_slist_reverse(new);
554 GSList *plugin_get_unloaded_list(void)
556 return g_slist_copy(unloaded_plugins);
559 const gchar *plugin_get_name(Plugin *plugin)
561 return plugin->name();
564 const gchar *plugin_get_desc(Plugin *plugin)
566 return plugin->desc();
569 const gchar *plugin_get_version(Plugin *plugin)
571 return plugin->version();
574 const gchar *plugin_get_error(Plugin *plugin)
576 return plugin->error;
579 /* Generally called in plugin_init() function of each plugin. It check the
580 * minimal and compiled version of claws binary required by the plugin.
581 * If (@minimum_claws_version == 0 || @compiled_claws_version == 0), don't
582 * check the corresponding version.
584 * If an error occurs {
585 * If @error == NULL { don't allocate error string. }
586 * If @error != NULL { error string is allocated and must be freed after
589 * Returns: FALSE if an error occurs, TRUE if all is OK.
591 gint check_plugin_version(guint32 minimum_claws_version,
592 guint32 compiled_claws_version,
593 const gchar *plugin_name,
596 guint32 claws_version = claws_get_version();
598 if (compiled_claws_version != 0 && claws_version > compiled_claws_version) {
600 *error = (plugin_name && *plugin_name)
601 ? g_strdup_printf(_("Your version of Claws Mail is newer than the "
602 "version the '%s' plugin was built with."),
604 : g_strdup(_("Your version of Claws Mail is newer than the "
605 "version the plugin was built with."));
610 if (minimum_claws_version != 0 && claws_version < minimum_claws_version) {
612 *error = (plugin_name && *plugin_name)
613 ? g_strdup_printf(_("Your version of Claws Mail is too old for "
614 "the '%s' plugin."), plugin_name)
615 : g_strdup(_("Your version of Claws Mail is too old for the plugin."));