Git init
[framework/multimedia/pulseaudio.git] / src / pulse / mainloop-api.c
1 /***
2   This file is part of PulseAudio.
3
4   Copyright 2004-2006 Lennart Poettering
5
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.
10
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   Lesser General Public License for more details.
15
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 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27
28 #include <pulse/xmalloc.h>
29 #include <pulse/gccmacro.h>
30 #include <pulse/i18n.h>
31
32 #include <pulsecore/macro.h>
33
34 #include "mainloop-api.h"
35
36 struct once_info {
37     void (*callback)(pa_mainloop_api*m, void *userdata);
38     void *userdata;
39 };
40
41 static void once_callback(pa_mainloop_api *m, pa_defer_event *e, void *userdata) {
42     struct once_info *i = userdata;
43
44     pa_assert(m);
45     pa_assert(i);
46
47     pa_assert(i->callback);
48     i->callback(m, i->userdata);
49
50     pa_assert(m->defer_free);
51     m->defer_free(e);
52 }
53
54 static void free_callback(pa_mainloop_api *m, pa_defer_event *e, void *userdata) {
55     struct once_info *i = userdata;
56
57     pa_assert(m);
58     pa_assert(i);
59     pa_xfree(i);
60 }
61
62 void pa_mainloop_api_once(pa_mainloop_api* m, void (*callback)(pa_mainloop_api *m, void *userdata), void *userdata) {
63     struct once_info *i;
64     pa_defer_event *e;
65
66     pa_assert(m);
67     pa_assert(callback);
68
69     pa_init_i18n();
70
71     i = pa_xnew(struct once_info, 1);
72     i->callback = callback;
73     i->userdata = userdata;
74
75     pa_assert(m->defer_new);
76     pa_assert_se(e = m->defer_new(m, once_callback, i));
77     m->defer_set_destroy(e, free_callback);
78 }