merge glitch-free branch back into trunk
[profile/ivi/pulseaudio.git] / src / pulsecore / hook-list.h
1 #ifndef foohooklistfoo
2 #define foohooklistfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of PulseAudio.
8
9   Copyright 2006 Lennart Poettering
10
11   PulseAudio is free software; you can redistribute it and/or modify
12   it under the terms of the GNU Lesser General Public License as
13   published by the Free Software Foundation; either version 2 of the
14   License, or (at your option) any later version.
15
16   PulseAudio is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public
22   License along with PulseAudio; if not, write to the Free Software
23   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24   USA.
25 ***/
26
27 #include <pulse/xmalloc.h>
28 #include <pulse/gccmacro.h>
29
30 #include <pulsecore/llist.h>
31
32 typedef struct pa_hook_slot pa_hook_slot;
33 typedef struct pa_hook pa_hook;
34
35 typedef enum pa_hook_result {
36     PA_HOOK_OK = 0,
37     PA_HOOK_STOP = 1,
38     PA_HOOK_CANCEL = -1
39 } pa_hook_result_t;
40
41 typedef pa_hook_result_t (*pa_hook_cb_t)(
42         void *hook_data,
43         void *call_data,
44         void *slot_data);
45
46 struct pa_hook_slot {
47     int dead;
48     pa_hook *hook;
49     pa_hook_cb_t callback;
50     void *data;
51     PA_LLIST_FIELDS(pa_hook_slot);
52 };
53
54 struct pa_hook {
55     PA_LLIST_HEAD(pa_hook_slot, slots);
56     pa_hook_slot *last;
57     int firing, n_dead;
58
59     void *data;
60 };
61
62 void pa_hook_init(pa_hook *hook, void *data);
63 void pa_hook_free(pa_hook *hook);
64
65 pa_hook_slot* pa_hook_connect(pa_hook *hook, pa_hook_cb_t, void *data);
66 void pa_hook_slot_free(pa_hook_slot *slot);
67
68 pa_hook_result_t pa_hook_fire(pa_hook *hook, void *data);
69
70 #endif