aboutsummaryrefslogtreecommitdiffstats
path: root/epan/funnel.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2015-08-11 14:08:08 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2015-08-11 12:09:07 +0000
commitecc4f756bdb6175cc0b3b11af2f90884db1c602c (patch)
tree99d8ca48a72752e1257d4b8b321f41d1767ee020 /epan/funnel.c
parent70d06deb2e31bd605e672200a7755764febe94ae (diff)
Added Reload Lua plugins.
This is initial support for reloading Lua plugins without restarting the application. Still todo: - Deregister FileHandlers - Support deregister ProtoField with existing abbrev (same_name_hfinfo) - Add a progress dialog when reloading many plugins - Search for memory leakages in wslua functions Change-Id: I48870d8741251705ca15ffe1068613fcb0cb18c1 Reviewed-on: https://code.wireshark.org/review/5028 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/funnel.c')
-rw-r--r--epan/funnel.c102
1 files changed, 90 insertions, 12 deletions
diff --git a/epan/funnel.c b/epan/funnel.c
index 02cd4f1171..fd1f8612bd 100644
--- a/epan/funnel.c
+++ b/epan/funnel.c
@@ -31,7 +31,7 @@
typedef struct _funnel_menu_t {
const char *name;
register_stat_group_t group;
- void (*callback)(gpointer);
+ funnel_menu_callback callback;
gpointer callback_data;
gboolean retap;
struct _funnel_menu_t* next;
@@ -39,16 +39,69 @@ typedef struct _funnel_menu_t {
/* XXX This assumes one main window and one capture file. */
static const funnel_ops_t* ops = NULL;
-static funnel_menu_t* menus = NULL;
+static funnel_menu_t* registered_menus = NULL;
+static funnel_menu_t* added_menus = NULL;
+static funnel_menu_t* removed_menus = NULL;
+static gboolean menus_registered = FALSE;
const funnel_ops_t* funnel_get_funnel_ops(void) { return ops; }
void funnel_set_funnel_ops(const funnel_ops_t* o) { ops = o; }
+static void funnel_insert_menu (funnel_menu_t** menu_list, funnel_menu_t *menu)
+{
+ if (!(*menu_list)) {
+ *menu_list = menu;
+ } else {
+ funnel_menu_t* c;
+ for (c = *menu_list; c->next; c = c->next);
+ c->next = menu;
+ }
+}
+
+static void funnel_remove_menu (funnel_menu_t ** menu_list, funnel_menu_t *menu)
+{
+ funnel_menu_t *m = *menu_list, *p = NULL;
+
+ while (m) {
+ if (m->callback == menu->callback) {
+ if (p) {
+ p->next = m->next;
+ } else {
+ *menu_list = m->next;
+ }
+ g_free((char *)m->name);
+ g_free(m);
+ if (p) {
+ m = p->next;
+ } else {
+ m = *menu_list ? (*menu_list)->next : NULL;
+ }
+ } else {
+ p = m;
+ m = m->next;
+ }
+ }
+}
+
+static void funnel_clear_menu (funnel_menu_t** menu_list)
+{
+ funnel_menu_t *m;
+
+ while (*menu_list) {
+ m = *menu_list;
+ *menu_list = m->next;
+ g_free((char *)m->name);
+ g_free(m);
+ }
+ *menu_list = NULL;
+}
+
void funnel_register_menu(const char *name,
register_stat_group_t group,
- void (*callback)(gpointer),
+ funnel_menu_callback callback,
gpointer callback_data,
- gboolean retap) {
+ gboolean retap)
+{
funnel_menu_t* m = (funnel_menu_t *)g_malloc(sizeof(funnel_menu_t));
m->name = g_strdup(name);
m->group = group;
@@ -57,20 +110,45 @@ void funnel_register_menu(const char *name,
m->retap = retap;
m->next = NULL;
- if (!menus) {
- menus = m;
- } else {
- funnel_menu_t* c;
- for (c = menus; c->next; c = c->next);
- c->next = m;
+ funnel_insert_menu(&registered_menus, m);
+ if (menus_registered) {
+ funnel_menu_t* m_r = (funnel_menu_t *)g_memdup(m, sizeof *m);
+ m_r->name = g_strdup(name);
+ funnel_insert_menu(&added_menus, m_r);
}
}
-void funnel_register_all_menus(funnel_registration_cb_t r_cb) {
+void funnel_deregister_menus(funnel_menu_callback callback)
+{
+ funnel_menu_t* m = (funnel_menu_t *)g_malloc0(sizeof(funnel_menu_t));
+ m->callback = callback;
+
+ funnel_remove_menu(&registered_menus, m);
+ funnel_insert_menu(&removed_menus, m);
+}
+
+void funnel_register_all_menus(funnel_registration_cb_t r_cb)
+{
funnel_menu_t* c;
- for (c = menus; c; c = c->next) {
+ for (c = registered_menus; c; c = c->next) {
r_cb(c->name,c->group,c->callback,c->callback_data,c->retap);
}
+ menus_registered = TRUE;
+}
+
+void funnel_reload_menus(funnel_deregistration_cb_t d_cb,
+ funnel_registration_cb_t r_cb)
+{
+ funnel_menu_t* c;
+ for (c = removed_menus; c; c = c->next) {
+ d_cb(c->callback);
+ }
+ for (c = added_menus; c; c = c->next) {
+ r_cb(c->name,c->group,c->callback,c->callback_data,c->retap);
+ }
+
+ funnel_clear_menu(&removed_menus);
+ funnel_clear_menu(&added_menus);
}
/*