From ee625f6a8a4b8261fc5a2abf491d7ee490078134 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 4 May 2018 12:12:30 +0200 Subject: [PATCH] afb-hook: Factorize call to pattern matching MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The pattern matching actually use fnmatch but this could be changed in the futur to some lighter version. Change-Id: I4f3617cd4a5bdf95988428cb184cef9e9543771d Signed-off-by: José Bollo --- src/afb-hook.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/afb-hook.c b/src/afb-hook.c index 83ffb5f8..f5868b18 100644 --- a/src/afb-hook.c +++ b/src/afb-hook.c @@ -23,7 +23,6 @@ #include #include #include -#include #include #include @@ -41,6 +40,9 @@ #include "afb-api.h" #include "verbose.h" +#include +#define MATCH(pattern,string) (!fnmatch((pattern),(string),FNM_CASEFOLD|FNM_EXTMATCH)) + /** * Definition of a hook for xreq */ @@ -1307,7 +1309,7 @@ static struct afb_hook_evt_itf hook_evt_default_itf = { while (hook) { \ if (hook->itf->hook_evt_##what \ && (hook->flags & afb_hook_flag_evt_##what) != 0 \ - && (!hook->pattern || !fnmatch(hook->pattern, evt, FNM_CASEFOLD))) { \ + && (!hook->pattern || MATCH(hook->pattern, evt))) { \ hook->itf->hook_evt_##what(hook->closure, &hookid, __VA_ARGS__); \ } \ hook = hook->next; \ @@ -1370,7 +1372,7 @@ int afb_hook_flags_evt(const char *name) pthread_rwlock_rdlock(&rwlock); hook = list_of_evt_hooks; while (hook) { - if (!name || !hook->pattern || !fnmatch(hook->pattern, name, FNM_CASEFOLD)) + if (!name || !hook->pattern || MATCH(hook->pattern, name)) flags |= hook->flags; hook = hook->next; } @@ -1509,7 +1511,7 @@ static struct afb_hook_session_itf hook_session_default_itf = { while (hook) { \ if (hook->itf->hook_session_##what \ && (hook->flags & afb_hook_flag_session_##what) != 0 \ - && (!hook->pattern || !fnmatch(hook->pattern, (sessid?:(sessid=afb_session_uuid(session))), FNM_CASEFOLD))) { \ + && (!hook->pattern || MATCH(hook->pattern, (sessid?:(sessid=afb_session_uuid(session)))))) { \ hook->itf->hook_session_##what(hook->closure, &hookid, __VA_ARGS__); \ } \ hook = hook->next; \ -- 2.16.6