plugins: generic load_data instead of module pointer in Plugin struct
[geany-mirror.git] / src / pluginutils.c
blob36856572e98a92c8e52f27e1e2601146e989aa53
1 /*
2 * pluginutils.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2009-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
5 * Copyright 2009-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /** @file pluginutils.h
23 * Plugin utility functions.
24 * These functions all take the @ref geany_plugin symbol as their first argument. */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #ifdef HAVE_PLUGINS
32 #include "pluginutils.h"
34 #include "app.h"
35 #include "geanyobject.h"
36 #include "plugindata.h"
37 #include "pluginprivate.h"
38 #include "plugins.h"
39 #include "support.h"
40 #include "toolbar.h"
41 #include "ui_utils.h"
42 #include "utils.h"
45 /** Inserts a toolbar item before the Quit button, or after the previous plugin toolbar item.
46 * A separator is added on the first call to this function, and will be shown when @a item is
47 * shown; hidden when @a item is hidden.
48 * @note You should still destroy @a item yourself, usually in @ref plugin_cleanup().
49 * @param plugin Must be @ref geany_plugin.
50 * @param item The item to add. */
51 GEANY_API_SYMBOL
52 void plugin_add_toolbar_item(GeanyPlugin *plugin, GtkToolItem *item)
54 GtkToolbar *toolbar = GTK_TOOLBAR(main_widgets.toolbar);
55 gint pos;
56 GeanyAutoSeparator *autosep;
58 g_return_if_fail(plugin);
59 autosep = &plugin->priv->toolbar_separator;
61 if (!autosep->widget)
63 GtkToolItem *sep;
65 pos = toolbar_get_insert_position();
67 sep = gtk_separator_tool_item_new();
68 gtk_toolbar_insert(toolbar, sep, pos);
69 autosep->widget = GTK_WIDGET(sep);
71 toolbar_item_ref(sep);
73 else
75 pos = gtk_toolbar_get_item_index(toolbar, GTK_TOOL_ITEM(autosep->widget));
76 g_return_if_fail(pos >= 0);
79 gtk_toolbar_insert(toolbar, item, pos + autosep->item_count + 1);
80 toolbar_item_ref(item);
82 /* hide the separator widget if there are no toolbar items showing for the plugin */
83 ui_auto_separator_add_ref(autosep, GTK_WIDGET(item));
87 /** Ensures that a plugin's module (*.so) will never be unloaded.
88 * This is necessary if you register new GTypes in your plugin, e.g. when using own classes
89 * using the GObject system.
91 * @param plugin Must be @ref geany_plugin.
93 * @since 0.16
95 GEANY_API_SYMBOL
96 void plugin_module_make_resident(GeanyPlugin *plugin)
98 g_return_if_fail(plugin);
99 plugin_make_resident(plugin->priv);
103 /** Connects a signal which will be disconnected on unloading the plugin, to prevent a possible segfault.
104 * @param plugin Must be @ref geany_plugin.
105 * @param object Object to connect to, or @c NULL when using @link pluginsignals.c Geany signals @endlink.
106 * @param signal_name The name of the signal. For a list of available
107 * signals, please see the @link pluginsignals.c Signal documentation @endlink.
108 * @param after Set to @c TRUE to call your handler after the main signal handlers have been called
109 * (if supported by @a signal_name).
110 * @param callback The function to call when the signal is emitted.
111 * @param user_data The user data passed to the signal handler.
112 * @see plugin_callbacks.
114 * @warning Before version 1.25 (API < 218),
115 * this should only be used on objects that outlive the plugin, never on
116 * objects that will get destroyed before the plugin is unloaded. For objects
117 * created and destroyed by the plugin, you can simply use @c g_signal_connect(),
118 * since all handlers are disconnected when the object is destroyed anyway.
119 * For objects that may or may not outlive the plugin (like @link GeanyEditor.sci
120 * a document's @c ScintillaObject @endlink, which is destroyed when the document
121 * is closed), you currently have to manually handle both situations, when the
122 * plugin is unloaded before the object is destroyed (and then, you have to
123 * disconnect the signal on @c plugin_cleanup()), and when the object is destroyed
124 * during the plugin's lifetime (in which case you cannot and should not disconnect
125 * manually in @c plugin_cleanup() since it already has been disconnected and the
126 * object has been destroyed), and disconnect yourself or not as appropriate.
127 * @note Since version 1.25 (API >= 218), the object lifetime is watched and so the above
128 * restriction does not apply. However, for objects destroyed by the plugin,
129 * @c g_signal_connect() is safe and has lower overhead. */
130 GEANY_API_SYMBOL
131 void plugin_signal_connect(GeanyPlugin *plugin,
132 GObject *object, const gchar *signal_name, gboolean after,
133 GCallback callback, gpointer user_data)
135 gulong id;
136 SignalConnection sc;
138 g_return_if_fail(plugin != NULL);
139 g_return_if_fail(object == NULL || G_IS_OBJECT(object));
141 if (!object)
142 object = geany_object;
144 id = after ?
145 g_signal_connect_after(object, signal_name, callback, user_data) :
146 g_signal_connect(object, signal_name, callback, user_data);
148 if (!plugin->priv->signal_ids)
149 plugin->priv->signal_ids = g_array_new(FALSE, FALSE, sizeof(SignalConnection));
151 sc.object = object;
152 sc.handler_id = id;
153 g_array_append_val(plugin->priv->signal_ids, sc);
155 /* watch the object lifetime to nuke our pointers to it */
156 plugin_watch_object(plugin->priv, object);
160 typedef struct PluginSourceData
162 Plugin *plugin;
163 GList list_link; /* element of plugin->sources cointaining this GSource */
164 GSourceFunc function;
165 gpointer user_data;
166 } PluginSourceData;
169 /* prepend psd->list_link to psd->plugin->sources */
170 static void psd_register(PluginSourceData *psd, GSource *source)
172 psd->list_link.data = source;
173 psd->list_link.prev = NULL;
174 psd->list_link.next = psd->plugin->sources;
175 if (psd->list_link.next)
176 psd->list_link.next->prev = &psd->list_link;
177 psd->plugin->sources = &psd->list_link;
181 /* removes psd->list_link from psd->plugin->sources */
182 static void psd_unregister(PluginSourceData *psd)
184 if (psd->list_link.next)
185 psd->list_link.next->prev = psd->list_link.prev;
186 if (psd->list_link.prev)
187 psd->list_link.prev->next = psd->list_link.next;
188 else /* we were the first of the list, update the plugin->sources pointer */
189 psd->plugin->sources = psd->list_link.next;
193 static void on_plugin_source_destroy(gpointer data)
195 PluginSourceData *psd = data;
197 psd_unregister(psd);
198 g_slice_free1(sizeof *psd, psd);
202 static gboolean on_plugin_source_callback(gpointer data)
204 PluginSourceData *psd = data;
206 return psd->function(psd->user_data);
210 /* adds the given source to the default GMainContext and to the list of sources to remove at plugin
211 * unloading time */
212 static guint plugin_source_add(GeanyPlugin *plugin, GSource *source, GSourceFunc func, gpointer data)
214 guint id;
215 PluginSourceData *psd = g_slice_alloc(sizeof *psd);
217 psd->plugin = plugin->priv;
218 psd->function = func;
219 psd->user_data = data;
221 g_source_set_callback(source, on_plugin_source_callback, psd, on_plugin_source_destroy);
222 psd_register(psd, source);
223 id = g_source_attach(source, NULL);
224 g_source_unref(source);
226 return id;
230 /** Adds a GLib main loop timeout callback that will be removed when unloading the plugin,
231 * preventing it to run after the plugin has been unloaded (which may lead to a segfault).
233 * @param plugin Must be @ref geany_plugin.
234 * @param interval The time between calls to the function, in milliseconds.
235 * @param function The function to call after the given timeout.
236 * @param data The user data passed to the function.
237 * @return the ID of the event source (you generally won't need it, or better use g_timeout_add()
238 * directly if you want to manage this event source manually).
240 * @see g_timeout_add()
241 * @since 0.21, plugin API 205.
243 GEANY_API_SYMBOL
244 guint plugin_timeout_add(GeanyPlugin *plugin, guint interval, GSourceFunc function, gpointer data)
246 return plugin_source_add(plugin, g_timeout_source_new(interval), function, data);
250 /** Adds a GLib main loop timeout callback that will be removed when unloading the plugin,
251 * preventing it to run after the plugin has been unloaded (which may lead to a segfault).
253 * @param plugin Must be @ref geany_plugin.
254 * @param interval The time between calls to the function, in seconds.
255 * @param function The function to call after the given timeout.
256 * @param data The user data passed to the function.
257 * @return the ID of the event source (you generally won't need it, or better use
258 * g_timeout_add_seconds() directly if you want to manage this event source manually).
260 * @see g_timeout_add_seconds()
261 * @since 0.21, plugin API 205.
263 GEANY_API_SYMBOL
264 guint plugin_timeout_add_seconds(GeanyPlugin *plugin, guint interval, GSourceFunc function,
265 gpointer data)
267 return plugin_source_add(plugin, g_timeout_source_new_seconds(interval), function, data);
271 /** Adds a GLib main loop IDLE callback that will be removed when unloading the plugin, preventing
272 * it to run after the plugin has been unloaded (which may lead to a segfault).
274 * @param plugin Must be @ref geany_plugin.
275 * @param function The function to call in IDLE time.
276 * @param data The user data passed to the function.
277 * @return the ID of the event source (you generally won't need it, or better use g_idle_add()
278 * directly if you want to manage this event source manually).
280 * @see g_idle_add()
281 * @since 0.21, plugin API 205.
283 GEANY_API_SYMBOL
284 guint plugin_idle_add(GeanyPlugin *plugin, GSourceFunc function, gpointer data)
286 return plugin_source_add(plugin, g_idle_source_new(), function, data);
290 /** Sets up or resizes a keybinding group for the plugin.
291 * You should then call keybindings_set_item() for each keybinding in the group.
292 * @param plugin Must be @ref geany_plugin.
293 * @param section_name Name used in the configuration file, such as @c "html_chars".
294 * @param count Number of keybindings for the group.
295 * @param callback Group callback, or @c NULL if you only want individual keybinding callbacks.
296 * @return The plugin's keybinding group.
297 * @since 0.19. */
298 GEANY_API_SYMBOL
299 GeanyKeyGroup *plugin_set_key_group(GeanyPlugin *plugin,
300 const gchar *section_name, gsize count, GeanyKeyGroupCallback callback)
302 Plugin *priv = plugin->priv;
304 priv->key_group = keybindings_set_group(priv->key_group, section_name,
305 priv->info.name, count, callback);
306 return priv->key_group;
310 static void on_pref_btn_clicked(gpointer btn, Plugin *p)
312 p->configure_single(main_widgets.window);
316 static GtkWidget *create_pref_page(Plugin *p, GtkWidget *dialog)
318 GtkWidget *page = NULL; /* some plugins don't have prefs */
320 if (p->cbs.configure)
322 page = p->cbs.configure(&p->public, GTK_DIALOG(dialog), p->cb_data);
323 if (! GTK_IS_WIDGET(page))
325 geany_debug("Invalid widget returned from plugin_configure() in plugin \"%s\"!",
326 p->info.name);
327 return NULL;
329 else
331 GtkWidget *align = gtk_alignment_new(0.5, 0.5, 1, 1);
333 gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
334 gtk_container_add(GTK_CONTAINER(align), page);
335 page = gtk_vbox_new(FALSE, 0);
336 gtk_box_pack_start(GTK_BOX(page), align, TRUE, TRUE, 0);
339 else if (p->configure_single)
341 GtkWidget *align = gtk_alignment_new(0.5, 0.5, 0, 0);
342 GtkWidget *btn;
344 gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
346 btn = gtk_button_new_from_stock(GTK_STOCK_PREFERENCES);
347 g_signal_connect(btn, "clicked", G_CALLBACK(on_pref_btn_clicked), p);
348 gtk_container_add(GTK_CONTAINER(align), btn);
349 page = align;
351 return page;
355 /* multiple plugin configure dialog
356 * current_plugin can be NULL */
357 static void configure_plugins(Plugin *current_plugin)
359 GtkWidget *dialog, *vbox, *nb;
360 GList *node;
361 gint cur_page = -1;
363 dialog = gtk_dialog_new_with_buttons(_("Configure Plugins"),
364 GTK_WINDOW(main_widgets.window), GTK_DIALOG_DESTROY_WITH_PARENT,
365 GTK_STOCK_APPLY, GTK_RESPONSE_APPLY,
366 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
367 GTK_STOCK_OK, GTK_RESPONSE_OK, NULL);
368 gtk_widget_set_name(dialog, "GeanyDialog");
370 vbox = ui_dialog_vbox_new(GTK_DIALOG(dialog));
371 nb = gtk_notebook_new();
372 gtk_notebook_set_scrollable(GTK_NOTEBOOK(nb), TRUE);
373 gtk_box_pack_start(GTK_BOX(vbox), nb, TRUE, TRUE, 0);
375 foreach_list(node, active_plugin_list)
377 Plugin *p = node->data;
378 GtkWidget *page = create_pref_page(p, dialog);
380 if (page)
382 GtkWidget *label = gtk_label_new(p->info.name);
383 gint n = gtk_notebook_append_page(GTK_NOTEBOOK(nb), page, label);
385 if (p == current_plugin)
386 cur_page = n;
389 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(nb)))
391 gtk_widget_show_all(vbox);
392 if (cur_page >= 0)
393 gtk_notebook_set_current_page(GTK_NOTEBOOK(nb), cur_page);
395 /* run the dialog */
396 while (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_APPLY);
398 else
399 utils_beep();
401 gtk_widget_destroy(dialog);
405 /** Shows the plugin's configure dialog.
406 * The plugin must implement one of the plugin_configure() or plugin_configure_single() symbols.
407 * @param plugin Must be @ref geany_plugin.
408 * @since 0.19. */
409 /* if NULL, show all plugins */
410 GEANY_API_SYMBOL
411 void plugin_show_configure(GeanyPlugin *plugin)
413 Plugin *p;
415 if (!plugin)
417 configure_plugins(NULL);
418 return;
420 p = plugin->priv;
422 if (p->cbs.configure)
423 configure_plugins(p);
424 else
426 g_return_if_fail(p->configure_single);
427 p->configure_single(main_widgets.window);
432 struct BuilderConnectData
434 gpointer user_data;
435 GeanyPlugin *plugin;
439 static void connect_plugin_signals(GtkBuilder *builder, GObject *object,
440 const gchar *signal_name, const gchar *handler_name,
441 GObject *connect_object, GConnectFlags flags, gpointer user_data)
443 gpointer symbol = NULL;
444 struct BuilderConnectData *data = user_data;
446 symbol = plugin_get_module_symbol(data->plugin->priv, handler_name);
448 plugin_signal_connect(data->plugin, object, signal_name, FALSE,
449 G_CALLBACK(symbol) /*ub?*/, data->user_data);
454 * Allows auto-connecting Glade/GtkBuilder signals in plugins.
456 * When a plugin uses GtkBuilder to load some UI from file/string,
457 * the gtk_builder_connect_signals() function is unable to automatically
458 * connect to the plugin's signal handlers. A plugin could itself use
459 * the gtk_builder_connect_signals_full() function to automatically
460 * connect to the signal handler functions by loading it's GModule
461 * and retrieving pointers to the handler functions, but rather than
462 * each plugin having to do that, this function handles it automatically.
464 * @code
465 * ...
466 * GeanyPlugin *geany_plugin;
468 * G_MODULE_EXPORT void
469 * myplugin_button_clicked(GtkButton *button, gpointer user_data)
471 * g_print("Button pressed\n");
474 * void plugin_init(GeanyData *data)
476 * GtkBuilder *builder = gtk_builder_new();
477 * gtk_builder_add_from_file(builder, "gui.glade", NULL);
478 * plugin_builder_connect_signals(geany_plugin, builder, NULL);
479 * ...
481 * @endcode
483 * @note It's important that you prefix your callback handlers with
484 * a plugin-specific prefix to avoid clashing with other plugins since
485 * the function symbols will be exported process-wide.
487 * @param plugin Must be @ref geany_plugin.
488 * @param builder The GtkBuilder to connect signals with.
489 * @param user_data User data to pass to the connected signal handlers.
491 * @since 1.24, plugin API 217.
493 GEANY_API_SYMBOL
494 void plugin_builder_connect_signals(GeanyPlugin *plugin,
495 GtkBuilder *builder, gpointer user_data)
497 struct BuilderConnectData data = { NULL };
499 g_return_if_fail(plugin != NULL && plugin->priv != NULL);
500 g_return_if_fail(GTK_IS_BUILDER(builder));
502 data.user_data = user_data;
503 data.plugin = plugin;
505 gtk_builder_connect_signals_full(builder, connect_plugin_signals, &data);
509 /** Add additional data that corresponds to the plugin.
511 * @p pdata is the pointer going to be passed to the individual plugin callbacks
512 * of GeanyPlugin::funcs. When the plugin is cleaned up, @p free_func is invoked for the data,
513 * which connects the data to the time the plugin is enabled.
515 * One intended use case is to set GObjects as data and have them destroyed automatically
516 * by passing g_object_unref() as @a free_func, so that member functions can be used
517 * for the @ref GeanyPluginFuncs (via wrappers) but you can set completely custom data.
519 * Be aware that this can only be called once and only by plugins registered via
520 * @ref geany_plugin_register(). So-called legacy plugins cannot use this function.
522 * @note This function must not be called if the plugin was registered with
523 * geany_plugin_register_full().
525 * @param plugin The plugin provided by Geany
526 * @param pdata The plugin's data to associate, must not be @c NULL
527 * @param free_func The destroy notify
529 * @since 1.26 (API 225)
531 GEANY_API_SYMBOL
532 void geany_plugin_set_data(GeanyPlugin *plugin, gpointer pdata, GDestroyNotify free_func)
534 Plugin *p = plugin->priv;
536 g_return_if_fail(PLUGIN_LOADED_OK(p));
537 /* Do not allow calling this only to set a notify. */
538 g_return_if_fail(pdata != NULL);
539 /* The rationale to allow only setting the data once is the following:
540 * In the future we want to support proxy plugins (which bind non-C plugins to
541 * Geany's plugin api). These proxy plugins might need to own the data pointer
542 * on behalf of the proxied plugin. However, if not, then the plugin should be
543 * free to use it. This way we can make sure the plugin doesn't accidently trash
544 * its proxy.
546 * Better a more limited API now that can be opened up later than a potentially
547 * wrong one that can only be replaced by another one. */
548 if (p->cb_data != NULL || p->cb_data_destroy != NULL)
550 if (PLUGIN_HAS_LOAD_DATA(p))
551 g_warning("Invalid call to %s(), geany_plugin_register_full() was used. Ignored!\n", G_STRFUNC);
552 else
553 g_warning("Double call to %s(), ignored!", G_STRFUNC);
554 return;
557 p->cb_data = pdata;
558 p->cb_data_destroy = free_func;
562 #endif