2 This file is part of PulseAudio.
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 2.1 of the License,
7 or (at your option) any later version.
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29 #include <pulse/rtclock.h>
30 #include <pulse/timeval.h>
32 #include <pulsecore/core-util.h>
33 #include <pulsecore/core-rtclock.h>
38 #include <pulse/glib-mainloop.h>
40 static GMainLoop
* glib_main_loop
= NULL
;
42 #else /* GLIB_MAIN_LOOP */
43 #include <pulse/mainloop.h>
44 #endif /* GLIB_MAIN_LOOP */
46 static pa_defer_event
*de
;
48 static void iocb(pa_mainloop_api
*a
, pa_io_event
*e
, int fd
, pa_io_event_flags_t f
, void *userdata
) {
50 pa_assert_se(read(fd
, &c
, sizeof(c
)) >= 0);
51 fprintf(stderr
, "IO EVENT: %c\n", c
< 32 ? '.' : c
);
52 a
->defer_enable(de
, 1);
55 static void dcb(pa_mainloop_api
*a
, pa_defer_event
*e
, void *userdata
) {
56 fprintf(stderr
, "DEFER EVENT\n");
57 a
->defer_enable(e
, 0);
60 static void tcb(pa_mainloop_api
*a
, pa_time_event
*e
, const struct timeval
*tv
, void *userdata
) {
61 fprintf(stderr
, "TIME EVENT\n");
63 #if defined(GLIB_MAIN_LOOP)
64 g_main_loop_quit(glib_main_loop
);
70 int main(int argc
, char *argv
[]) {
79 glib_main_loop
= g_main_loop_new(NULL
, FALSE
);
80 assert(glib_main_loop
);
82 g
= pa_glib_mainloop_new(NULL
);
85 a
= pa_glib_mainloop_get_api(g
);
87 #else /* GLIB_MAIN_LOOP */
90 m
= pa_mainloop_new();
93 a
= pa_mainloop_get_api(m
);
95 #endif /* GLIB_MAIN_LOOP */
97 ioe
= a
->io_new(a
, 0, PA_IO_EVENT_INPUT
, iocb
, NULL
);
100 de
= a
->defer_new(a
, dcb
, NULL
);
103 te
= a
->time_new(a
, pa_timeval_rtstore(&tv
, pa_rtclock_now() + 2 * PA_USEC_PER_SEC
, TRUE
), tcb
, NULL
);
105 #if defined(GLIB_MAIN_LOOP)
106 g_main_loop_run(glib_main_loop
);
108 pa_mainloop_run(m
, NULL
);
115 #ifdef GLIB_MAIN_LOOP
116 pa_glib_mainloop_free(g
);
117 g_main_loop_unref(glib_main_loop
);