summaryrefslogtreecommitdiff
path: root/src/core/hook/wee-hook-signal.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-04-24 21:37:38 +0200
committerSébastien Helleu <flashcode@flashtux.org>2022-04-24 22:09:15 +0200
commitb7f3127bf81d53ea51a4147bb6ae3b7edcff2acd (patch)
tree1abcf4b64fd9f6c73e75da4a4079a31a97b2812b /src/core/hook/wee-hook-signal.c
parentf69ef840e0baa40456eda6dcad43e2ec26c7a968 (diff)
downloadweechat-b7f3127bf81d53ea51a4147bb6ae3b7edcff2acd.zip
api: allow to catch multiple signals in functions hook_signal and hook_hsignal (closes #1780)
Diffstat (limited to 'src/core/hook/wee-hook-signal.c')
-rw-r--r--src/core/hook/wee-hook-signal.c66
1 files changed, 58 insertions, 8 deletions
diff --git a/src/core/hook/wee-hook-signal.c b/src/core/hook/wee-hook-signal.c
index 5be0fb81b..158fcbd47 100644
--- a/src/core/hook/wee-hook-signal.c
+++ b/src/core/hook/wee-hook-signal.c
@@ -43,7 +43,8 @@
char *
hook_signal_get_description (struct t_hook *hook)
{
- return strdup (HOOK_SIGNAL(hook, signal));
+ return string_build_with_split_string (
+ (const char **)(HOOK_SIGNAL(hook, signals)), ";");
}
/*
@@ -82,7 +83,14 @@ hook_signal (struct t_weechat_plugin *plugin, const char *signal,
new_hook->hook_data = new_hook_signal;
new_hook_signal->callback = callback;
- new_hook_signal->signal = strdup ((ptr_signal) ? ptr_signal : signal);
+ new_hook_signal->signals = string_split (
+ (ptr_signal) ? ptr_signal : signal,
+ ";",
+ NULL,
+ WEECHAT_STRING_SPLIT_STRIP_LEFT
+ | WEECHAT_STRING_SPLIT_STRIP_RIGHT
+ | WEECHAT_STRING_SPLIT_COLLAPSE_SEPS,
+ 0, &new_hook_signal->num_signals);
hook_add_to_list (new_hook);
@@ -90,6 +98,29 @@ hook_signal (struct t_weechat_plugin *plugin, const char *signal,
}
/*
+ * Checks if a hooked signal matches a signal sent: it matches if at least
+ * one of the signal masks are matching the signal sent.
+ *
+ * Returns:
+ * 1: hook matches signal sent
+ * 0: hook does not match signal sent
+ */
+
+int
+hook_signal_match (const char *signal, struct t_hook *hook)
+{
+ int i;
+
+ for (i = 0; i < HOOK_SIGNAL(hook, num_signals); i++)
+ {
+ if (string_match (signal, HOOK_SIGNAL(hook, signals)[i], 0))
+ return 1;
+ }
+
+ return 0;
+}
+
+/*
* Sends a signal.
*/
@@ -110,7 +141,7 @@ hook_signal_send (const char *signal, const char *type_data, void *signal_data)
if (!ptr_hook->deleted
&& !ptr_hook->running
- && (string_match (signal, HOOK_SIGNAL(ptr_hook, signal), 0)))
+ && hook_signal_match (signal, ptr_hook))
{
ptr_hook->running = 1;
rc = (HOOK_SIGNAL(ptr_hook, callback))
@@ -143,11 +174,12 @@ hook_signal_free_data (struct t_hook *hook)
if (!hook || !hook->hook_data)
return;
- if (HOOK_SIGNAL(hook, signal))
+ if (HOOK_SIGNAL(hook, signals))
{
- free (HOOK_SIGNAL(hook, signal));
- HOOK_SIGNAL(hook, signal) = NULL;
+ string_free_split (HOOK_SIGNAL(hook, signals));
+ HOOK_SIGNAL(hook, signals) = NULL;
}
+ HOOK_SIGNAL(hook, num_signals) = 0;
free (hook->hook_data);
hook->hook_data = NULL;
@@ -165,12 +197,24 @@ int
hook_signal_add_to_infolist (struct t_infolist_item *item,
struct t_hook *hook)
{
+ int i;
+ char option_name[64];
+
if (!item || !hook || !hook->hook_data)
return 0;
if (!infolist_new_var_pointer (item, "callback", HOOK_SIGNAL(hook, callback)))
return 0;
- if (!infolist_new_var_string (item, "signal", HOOK_SIGNAL(hook, signal)))
+ i = 0;
+ for (i = 0; i < HOOK_SIGNAL(hook, num_signals); i++)
+ {
+ snprintf (option_name, sizeof (option_name), "signal_%05d", i);
+ if (!infolist_new_var_string (item, option_name,
+ HOOK_SIGNAL(hook, signals)[i]))
+ return 0;
+ }
+ if (!infolist_new_var_integer (item, "num_signals",
+ HOOK_SIGNAL(hook, num_signals)))
return 0;
return 1;
@@ -183,10 +227,16 @@ hook_signal_add_to_infolist (struct t_infolist_item *item,
void
hook_signal_print_log (struct t_hook *hook)
{
+ int i;
+
if (!hook || !hook->hook_data)
return;
log_printf (" signal data:");
log_printf (" callback. . . . . . . : 0x%lx", HOOK_SIGNAL(hook, callback));
- log_printf (" signal. . . . . . . . : '%s'", HOOK_SIGNAL(hook, signal));
+ log_printf (" signals:");
+ for (i = 0; i < HOOK_SIGNAL(hook, num_signals); i++)
+ {
+ log_printf (" '%s'", HOOK_SIGNAL(hook, signals)[i]);
+ }
}