build-sys: bump soname
[pulseaudio-mirror.git] / src / pulsecore / hook-list.c
blobd9b9917d40f9916efa674dd21a688da30792caa3
1 /***
2 This file is part of PulseAudio.
4 Copyright 2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <pulsecore/macro.h>
28 #include "hook-list.h"
30 void pa_hook_init(pa_hook *hook, void *data) {
31 pa_assert(hook);
33 PA_LLIST_HEAD_INIT(pa_hook_slot, hook->slots);
34 hook->n_dead = hook->n_firing = 0;
35 hook->data = data;
38 static void slot_free(pa_hook *hook, pa_hook_slot *slot) {
39 pa_assert(hook);
40 pa_assert(slot);
42 PA_LLIST_REMOVE(pa_hook_slot, hook->slots, slot);
44 pa_xfree(slot);
47 void pa_hook_done(pa_hook *hook) {
48 pa_assert(hook);
49 pa_assert(hook->n_firing == 0);
51 while (hook->slots)
52 slot_free(hook, hook->slots);
54 pa_hook_init(hook, NULL);
57 pa_hook_slot* pa_hook_connect(pa_hook *hook, pa_hook_priority_t prio, pa_hook_cb_t cb, void *data) {
58 pa_hook_slot *slot, *where, *prev;
60 pa_assert(cb);
62 slot = pa_xnew(pa_hook_slot, 1);
63 slot->hook = hook;
64 slot->dead = FALSE;
65 slot->callback = cb;
66 slot->data = data;
67 slot->priority = prio;
69 prev = NULL;
70 for (where = hook->slots; where; where = where->next) {
71 if (prio < where->priority)
72 break;
73 prev = where;
76 PA_LLIST_INSERT_AFTER(pa_hook_slot, hook->slots, prev, slot);
78 return slot;
81 void pa_hook_slot_free(pa_hook_slot *slot) {
82 pa_assert(slot);
83 pa_assert(!slot->dead);
85 if (slot->hook->n_firing > 0) {
86 slot->dead = TRUE;
87 slot->hook->n_dead++;
88 } else
89 slot_free(slot->hook, slot);
92 pa_hook_result_t pa_hook_fire(pa_hook *hook, void *data) {
93 pa_hook_slot *slot, *next;
94 pa_hook_result_t result = PA_HOOK_OK;
96 pa_assert(hook);
98 hook->n_firing ++;
100 PA_LLIST_FOREACH(slot, hook->slots) {
101 if (slot->dead)
102 continue;
104 if ((result = slot->callback(hook->data, data, slot->data)) != PA_HOOK_OK)
105 break;
108 hook->n_firing --;
109 pa_assert(hook->n_firing >= 0);
111 for (slot = hook->slots; hook->n_dead > 0 && slot; slot = next) {
112 next = slot->next;
114 if (slot->dead) {
115 slot_free(hook, slot);
116 hook->n_dead--;
120 pa_assert(hook->n_dead == 0);
122 return result;
125 pa_bool_t pa_hook_is_firing(pa_hook *hook) {
126 pa_assert(hook);
128 return hook->n_firing > 0;