File: hooks.c

package info (click to toggle)
notion 4.0.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,656 kB
  • sloc: ansic: 47,365; sh: 2,093; makefile: 594; perl: 270
file content (422 lines) | stat: -rw-r--r-- 6,997 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
 * ion/mainloop/hooks.c
 *
 * Copyright (c) Tuomo Valkonen 1999-2007.
 *
 * See the included file LICENSE for details.
 */

#include <libtu/types.h>
#include <libtu/misc.h>
#include <libtu/dlist.h>
#include <libtu/output.h>
#include <libtu/rb.h>
#include <libtu/objp.h>
#include <libtu/locale.h>
#include <libextl/extl.h>
#include "hooks.h"


EXTL_EXPORT
IMPLCLASS(WHook, Obj, hook_deinit, NULL);

static Rb_node named_hooks=NULL;


/*{{{ Named hooks */


/* If hk==NULL to register, new is attempted to be created. */
WHook *mainloop_register_hook(const char *name, WHook *hk)
{
    char *nnm;

    if(hk==NULL)
        return NULL;

    if(named_hooks==NULL){
        named_hooks=make_rb();
        if(named_hooks==NULL)
            return NULL;
    }

    nnm=scopy(name);

    if(nnm==NULL)
        return NULL;

    if(!rb_insert(named_hooks, nnm, hk)){
        free(nnm);
        destroy_obj((Obj*)hk);
    }

    return hk;
}


WHook *mainloop_unregister_hook(const char *name, WHook *hk)
{
    bool found=FALSE;
    Rb_node node;

    if(named_hooks==NULL)
        return NULL;

    if(hk==NULL){
        assert(name!=NULL);
        node=rb_find_key_n(named_hooks, name, &found);
    }else{
        rb_traverse(node, named_hooks){
            if((WHook*)rb_val(node)==hk){
                found=TRUE;
                break;
            }
        }
    }

    if(found){
        hk=(WHook*)rb_val(node);
        free((char*)node->k.key);
        rb_delete_node(node);
    }

    return hk;
}


/*EXTL_DOC
 * Find named hook \var{name}.
 */
EXTL_SAFE
EXTL_EXPORT
WHook *mainloop_get_hook(const char *name)
{
    if(name==NULL)
        return NULL;

    if(named_hooks!=NULL){
        bool found=FALSE;
        Rb_node node=rb_find_key_n(named_hooks, name, &found);
        if(found)
            return (WHook*)rb_val(node);
    }

    return NULL;
}


/*}}}*/


/*{{{ Init/deinit */


static void destroy_item(WHook *hk, WHookItem *item)
{
    if(item->fn==NULL)
        extl_unref_fn(item->efn);
    UNLINK_ITEM(hk->items, item, next, prev);
    free(item);
}


static WHookItem *create_item(WHook *hk)
{
    WHookItem *item=ALLOC(WHookItem);
    if(item!=NULL){
        LINK_ITEM_FIRST(hk->items, item, next, prev);
        item->fn=NULL;
        item->efn=extl_fn_none();
    }

    return item;
}


bool hook_init(WHook *hk)
{
    hk->items=NULL;
    return TRUE;
}


WHook *create_hook()
{
    CREATEOBJ_IMPL(WHook, hook, (p));
}


void hook_deinit(WHook *hk)
{
    mainloop_unregister_hook(NULL, hk);
    while(hk->items!=NULL)
        destroy_item(hk, hk->items);
}


/*}}}*/


/*{{{ Find/add/remove */


WHookItem *hook_find(WHook *hk, WHookDummy *fn)
{
    WHookItem *hi;

    for(hi=hk->items; hi!=NULL; hi=hi->next){
        if(hi->fn==fn)
            return hi;
    }

    return NULL;
}


WHookItem *hook_find_extl(WHook *hk, ExtlFn efn)
{
    WHookItem *hi;

    for(hi=hk->items; hi!=NULL; hi=hi->next){
        if(extl_fn_eq(hi->efn, efn))
            return hi;
    }

    return NULL;
}


/*EXTL_DOC
 * Is \var{fn} hooked to hook \var{hk}?
 */
EXTL_SAFE
EXTL_EXPORT_MEMBER
bool hook_listed(WHook *hk, ExtlFn efn)
{
    return hook_find_extl(hk, efn)!=NULL;
}


bool hook_add(WHook *hk, WHookDummy *fn)
{
    WHookItem *item;

    if(hook_find(hk, fn))
        return FALSE;

    item=create_item(hk);
    if(item==NULL)
        return FALSE;
    item->fn=fn;
    return TRUE;
}


/*EXTL_DOC
 * Add \var{efn} to the list of functions to be called when the
 * hook \var{hk} is triggered.
 */
EXTL_EXPORT_AS(WHook, add)
bool hook_add_extl(WHook *hk, ExtlFn efn)
{
    WHookItem *item;

    if(efn==extl_fn_none()){
        warn(TR("No function given."));
        return FALSE;
    }

    if(hook_find_extl(hk, efn))
        return FALSE;

    item=create_item(hk);

    if(item==NULL)
        return FALSE;

    item->efn=extl_ref_fn(efn);

    return TRUE;
}


bool hook_remove(WHook *hk, WHookDummy *fn)
{
    WHookItem *item=hook_find(hk, fn);
    if(item!=NULL)
        destroy_item(hk, item);
    return (item!=NULL);
}


/*EXTL_DOC
 * Remove \var{efn} from the list of functions to be called when the
 * hook \var{hk} is triggered.
 */
EXTL_EXPORT_AS(WHook, remove)
bool hook_remove_extl(WHook *hk, ExtlFn efn)
{
    WHookItem *item=hook_find_extl(hk, efn);
    if(item!=NULL)
        destroy_item(hk, item);
    return (item!=NULL);
}


/*}}}*/


/*{{{ Basic marshallers */


static bool marshall_v(WHookDummy *fn, void *UNUSED(param))
{
    fn();
    return TRUE;
}


static bool marshall_extl_v(ExtlFn fn, void *UNUSED(param))
{
    extl_call(fn, NULL, NULL);
    return TRUE;
}


static bool marshall_o(WHookDummy *fn, void *param)
{
    fn((Obj*)param);
    return TRUE;
}


static bool marshall_extl_o(ExtlFn fn, void *param)
{
    return extl_call(fn, "o", NULL, (Obj*)param);
}


static bool marshall_p(WHookDummy *fn, void *param)
{
    fn(param);
    return TRUE;
}


static bool marshall_alt_v(bool (*fn)(), void *UNUSED(param))
{
    return fn();
}


static bool marshall_extl_alt_v(ExtlFn fn, void *UNUSED(param))
{
    bool ret=FALSE;
    extl_call(fn, NULL, "b", &ret);
    return ret;
}


static bool marshall_alt_o(bool (*fn)(), void *param)
{
    return fn((Obj*)param);
}


static bool marshall_extl_alt_o(ExtlFn fn, void *param)
{
    bool ret=FALSE;
    extl_call(fn, "o", "b", (Obj*)param, &ret);
    return ret;
}


static bool marshall_alt_p(bool (*fn)(), void *param)
{
    return fn(param);
}


/*}}}*/


/*{{{ Call */


void hook_call(const WHook *hk, void *p,
               WHookMarshall *m, WHookMarshallExtl *em)
{
    WHookItem *hi, *next;

    for(hi=hk->items; hi!=NULL; hi=next){
        next=hi->next;
        if(hi->fn!=NULL)
            m(hi->fn, p);
        else if(em!=NULL)
            em(hi->efn, p);
    }
}


bool hook_call_alt(const WHook *hk, void *p,
                   WHookMarshall *m, WHookMarshallExtl *em)
{
    WHookItem *hi, *next;
    bool ret=FALSE;

    for(hi=hk->items; hi!=NULL; hi=next){
        next=hi->next;
        if(hi->fn!=NULL)
            ret=m(hi->fn, p);
        else if(em!=NULL)
            ret=em(hi->efn, p);
        if(ret)
            break;
    }

    return ret;
}


void hook_call_v(const WHook *hk)
{
    hook_call(hk, NULL, marshall_v, marshall_extl_v);
}


void hook_call_o(const WHook *hk, Obj *o)
{
    hook_call(hk, o, marshall_o, marshall_extl_o);
}


void hook_call_p(const WHook *hk, void *p, WHookMarshallExtl *em)
{
    hook_call(hk, p, marshall_p, em);
}


bool hook_call_alt_v(const WHook *hk)
{
    return hook_call_alt(hk, NULL, (WHookMarshall*)marshall_alt_v,
                         (WHookMarshallExtl*)marshall_extl_alt_v);
}


bool hook_call_alt_o(const WHook *hk, Obj *o)
{
    return hook_call_alt(hk, o, (WHookMarshall*)marshall_alt_o,
                         (WHookMarshallExtl*)marshall_extl_alt_o);
}


bool hook_call_alt_p(const WHook *hk, void *p, WHookMarshallExtl *em)
{
    return hook_call_alt(hk, p, (WHookMarshall*)marshall_alt_p, em);
}


/*}}}*/