Skip to content
This repository was archived by the owner on Jun 6, 2021. It is now read-only.

Commit 84b4412

Browse files
committed
libathemecore: add stop/continue functions
1 parent 60acce0 commit 84b4412

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

include/hook.h

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ E void hook_add_hook(const char *, hookfn_t);
2323
E void hook_add_hook_first(const char *, hookfn_t);
2424
E void hook_call_event(const char *, void *);
2525

26+
E void hook_stop(void);
27+
E void hook_continue(void *newptr);
28+
2629
#endif
2730

2831
/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs

libathemecore/hook.c

+41-1
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@ typedef struct {
3737
typedef struct {
3838
hookfn_t hookfn;
3939
mowgli_node_t node;
40+
unsigned int flags;
4041
} hook_privfn_ctx_t;
4142

43+
#define HF_RUN 0x1
44+
#define HF_STOP 0x2
45+
4246
static mowgli_list_t hook_run_stack = { NULL, NULL, 0 };
4347

4448
void hooks_init(void)
@@ -176,19 +180,55 @@ void hook_call_event(const char *event, void *dptr)
176180
if (ctx.hook == NULL)
177181
return;
178182

183+
ctx.dptr = dptr;
184+
ctx.flags = HF_RUN;
185+
179186
mowgli_node_add_head(&ctx, &ctx.node, &hook_run_stack);
180187

181188
MOWGLI_ITER_FOREACH_SAFE(n, tn, ctx.hook->hooks.head)
182189
{
183190
hook_privfn_ctx_t *priv = n->data;
184191

185-
priv->hookfn(dptr);
192+
priv->hookfn(ctx.dptr);
193+
if (ctx.flags & HF_STOP)
194+
goto out;
186195
}
187196

188197
out:
189198
mowgli_node_delete(&ctx.node, &hook_run_stack);
190199
}
191200

201+
static inline hook_run_ctx_t *hook_run_stack_highest(void)
202+
{
203+
if (hook_run_stack.head == NULL)
204+
return NULL;
205+
206+
return hook_run_stack.head->data;
207+
}
208+
209+
void hook_stop(void)
210+
{
211+
hook_run_ctx_t *ctx;
212+
213+
ctx = hook_run_stack_highest();
214+
if (ctx == NULL)
215+
return;
216+
217+
ctx->flags |= HF_STOP;
218+
}
219+
220+
void hook_continue(void *newptr)
221+
{
222+
hook_run_ctx_t *ctx;
223+
224+
ctx = hook_run_stack_highest();
225+
if (ctx == NULL)
226+
return;
227+
228+
ctx->dptr = newptr;
229+
ctx->flags &= ~HF_STOP;
230+
}
231+
192232
/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs
193233
* vim:ts=8
194234
* vim:sw=8

0 commit comments

Comments
 (0)